
    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_0a512c421070b84449ea1722.woff2')format("woff");}.ff1_c00000{font-family:ff1_c00000;line-height:1.106934;font-style:normal;font-weight:normal;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_797d419b4259d713c8394b74.woff2')format("woff");}.ff2_c00000{font-family:ff2_c00000;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00000{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00000{vertical-align:0.000000px;}
.ls9_c00000{letter-spacing:-0.161046px;}
.ls7_c00000{letter-spacing:-0.122359px;}
.ls5_c00000{letter-spacing:-0.063018px;}
.lsa_c00000{letter-spacing:-0.049014px;}
.ls6_c00000{letter-spacing:0.000000px;}
.ls2_c00000{letter-spacing:0.008157px;}
.ls8_c00000{letter-spacing:0.016314px;}
.ls0_c00000{letter-spacing:0.065258px;}
.ls3_c00000{letter-spacing:0.098028px;}
.ls1_c00000{letter-spacing:0.119034px;}
.ls4_c00000{letter-spacing:0.147042px;}
.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;}
}
.ws3_c00000{word-spacing:-0.490140px;}
.ws1_c00000{word-spacing:-0.228403px;}
.ws0_c00000{word-spacing:0.000000px;}
.ws4_c00000{word-spacing:0.008157px;}
.ws2_c00000{word-spacing:0.024472px;}
.ws5_c00000{word-spacing:0.147042px;}
.ws6_c00000{word-spacing:0.196056px;}
.ws7_c00000{word-spacing:0.392112px;}
._1_c00000{margin-left:-1.085310px;}
._0_c00000{width:1.451989px;}
.fc1_c00000{color:rgb(51,51,51);}
.fc0_c00000{color:rgb(0,0,0);}
.fs0_c00000{font-size:70.020000px;}
.fs1_c00000{font-size:81.572400px;}
.y0_c00000{bottom:0.000000px;}
.y2_c00000{bottom:109.740968px;}
.y1_c00000{bottom:129.810450px;}
.y18_c00000{bottom:224.486841px;}
.y17_c00000{bottom:254.726728px;}
.y16_c00000{bottom:284.877341px;}
.y15_c00000{bottom:315.117228px;}
.y14_c00000{bottom:345.267840px;}
.y13_c00000{bottom:375.507727px;}
.y12_c00000{bottom:405.747615px;}
.y11_c00000{bottom:435.898227px;}
.y10_c00000{bottom:466.138114px;}
.yf_c00000{bottom:496.288726px;}
.ye_c00000{bottom:526.439338px;}
.yd_c00000{bottom:556.589950px;}
.yc_c00000{bottom:586.829838px;}
.yb_c00000{bottom:616.980450px;}
.ya_c00000{bottom:649.470117px;}
.y9_c00000{bottom:684.660450px;}
.y8_c00000{bottom:713.910450px;}
.y7_c00000{bottom:979.589950px;}
.y6_c00000{bottom:1009.829838px;}
.y5_c00000{bottom:1039.980450px;}
.y4_c00000{bottom:1072.470117px;}
.y3_c00000{bottom:1107.660450px;}
.h1_c00000{height:62.771836px;}
.h3_c00000{height:63.216299px;}
.h2_c00000{height:73.646176px;}
.h0_c00000{height:1263.000000px;}
.w0_c00000{width:892.500000px;}
.x0_c00000{left:0.000000px;}
.x2_c00000{left:82.709532px;}
.x8_c00000{left:95.309217px;}
.x3_c00000{left:189.900000px;}
.x5_c00000{left:257.130000px;}
.xb_c00000{left:268.920306px;}
.xa_c00000{left:310.230356px;}
.x7_c00000{left:356.129943px;}
.x9_c00000{left:396.269181px;}
.x1_c00000{left:441.450000px;}
.x4_c00000{left:446.400333px;}
.x6_c00000{left:589.680000px;}
@media print{
.v0_c00000{vertical-align:0.000000pt;}
.ls9_c00000{letter-spacing:-0.143152pt;}
.ls7_c00000{letter-spacing:-0.108763pt;}
.ls5_c00000{letter-spacing:-0.056016pt;}
.lsa_c00000{letter-spacing:-0.043568pt;}
.ls6_c00000{letter-spacing:0.000000pt;}
.ls2_c00000{letter-spacing:0.007251pt;}
.ls8_c00000{letter-spacing:0.014502pt;}
.ls0_c00000{letter-spacing:0.058007pt;}
.ls3_c00000{letter-spacing:0.087136pt;}
.ls1_c00000{letter-spacing:0.105808pt;}
.ls4_c00000{letter-spacing:0.130704pt;}
.ws3_c00000{word-spacing:-0.435680pt;}
.ws1_c00000{word-spacing:-0.203025pt;}
.ws0_c00000{word-spacing:0.000000pt;}
.ws4_c00000{word-spacing:0.007251pt;}
.ws2_c00000{word-spacing:0.021753pt;}
.ws5_c00000{word-spacing:0.130704pt;}
.ws6_c00000{word-spacing:0.174272pt;}
.ws7_c00000{word-spacing:0.348544pt;}
._1_c00000{margin-left:-0.964720pt;}
._0_c00000{width:1.290657pt;}
.fs0_c00000{font-size:62.240000pt;}
.fs1_c00000{font-size:72.508800pt;}
.y0_c00000{bottom:0.000000pt;}
.y2_c00000{bottom:97.547527pt;}
.y1_c00000{bottom:115.387067pt;}
.y18_c00000{bottom:199.543859pt;}
.y17_c00000{bottom:226.423759pt;}
.y16_c00000{bottom:253.224303pt;}
.y15_c00000{bottom:280.104203pt;}
.y14_c00000{bottom:306.904747pt;}
.y13_c00000{bottom:333.784647pt;}
.y12_c00000{bottom:360.664547pt;}
.y11_c00000{bottom:387.465091pt;}
.y10_c00000{bottom:414.344991pt;}
.yf_c00000{bottom:441.145535pt;}
.ye_c00000{bottom:467.946079pt;}
.yd_c00000{bottom:494.746623pt;}
.yc_c00000{bottom:521.626523pt;}
.yb_c00000{bottom:548.427067pt;}
.ya_c00000{bottom:577.306770pt;}
.y9_c00000{bottom:608.587067pt;}
.y8_c00000{bottom:634.587067pt;}
.y7_c00000{bottom:870.746623pt;}
.y6_c00000{bottom:897.626523pt;}
.y5_c00000{bottom:924.427067pt;}
.y4_c00000{bottom:953.306770pt;}
.y3_c00000{bottom:984.587067pt;}
.h1_c00000{height:55.797187pt;}
.h3_c00000{height:56.192266pt;}
.h2_c00000{height:65.463267pt;}
.h0_c00000{height:1122.666667pt;}
.w0_c00000{width:793.333333pt;}
.x0_c00000{left:0.000000pt;}
.x2_c00000{left:73.519584pt;}
.x8_c00000{left:84.719304pt;}
.x3_c00000{left:168.800000pt;}
.x5_c00000{left:228.560000pt;}
.xb_c00000{left:239.040272pt;}
.xa_c00000{left:275.760316pt;}
.x7_c00000{left:316.559949pt;}
.x9_c00000{left:352.239272pt;}
.x1_c00000{left:392.400000pt;}
.x4_c00000{left:396.800296pt;}
.x6_c00000{left:524.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4f5036871561cf6995f41b2a.woff2')format("woff");}.ff1_c00001{font-family:ff1_c00001;line-height:1.106934;font-style:normal;font-weight:normal;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_b225110a9e9bb46a602fffb1.woff2')format("woff");}.ff2_c00001{font-family:ff2_c00001;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00001;src:url('chunks/assets/font_08062bdcbb006ef78c311158.woff2')format("woff");}.ff3_c00001{font-family:ff3_c00001;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00001{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00001{vertical-align:0.000000px;}
.ls4_c00001{letter-spacing:-0.161046px;}
.ls1_c00001{letter-spacing:-0.063018px;}
.ls3_c00001{letter-spacing:-0.042012px;}
.ls2_c00001{letter-spacing:0.000000px;}
.ls0_c00001{letter-spacing:0.098028px;}
.sc__c00001{text-shadow:none;}
.sc0_c00001{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00001{-webkit-text-stroke:0px transparent;}
.sc0_c00001{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00001{word-spacing:0.000000px;}
.ws1_c00001{word-spacing:0.028008px;}
.ws2_c00001{word-spacing:0.147042px;}
._1_c00001{margin-left:-1.001286px;}
._0_c00001{width:1.344384px;}
.fc1_c00001{color:rgb(51,51,51);}
.fc0_c00001{color:rgb(0,0,0);}
.fs0_c00001{font-size:70.020000px;}
.y0_c00001{bottom:0.000000px;}
.y2_c00001{bottom:109.740968px;}
.y1_c00001{bottom:129.810450px;}
.ya_c00001{bottom:899.039667px;}
.y9_c00001{bottom:929.190279px;}
.y8_c00001{bottom:959.430167px;}
.y7_c00001{bottom:989.580779px;}
.y6_c00001{bottom:1019.909942px;}
.y5_c00001{bottom:1050.060553px;}
.y4_c00001{bottom:1080.300441px;}
.y3_c00001{bottom:1110.451053px;}
.h1_c00001{height:62.771836px;}
.h2_c00001{height:63.216299px;}
.h3_c00001{height:73.028672px;}
.h0_c00001{height:1263.000000px;}
.w0_c00001{width:892.500000px;}
.x0_c00001{left:0.000000px;}
.x2_c00001{left:82.709532px;}
.x4_c00001{left:95.309631px;}
.x5_c00001{left:396.269595px;}
.x1_c00001{left:441.450000px;}
.x3_c00001{left:446.400414px;}
@media print{
.v0_c00001{vertical-align:0.000000pt;}
.ls4_c00001{letter-spacing:-0.143152pt;}
.ls1_c00001{letter-spacing:-0.056016pt;}
.ls3_c00001{letter-spacing:-0.037344pt;}
.ls2_c00001{letter-spacing:0.000000pt;}
.ls0_c00001{letter-spacing:0.087136pt;}
.ws0_c00001{word-spacing:0.000000pt;}
.ws1_c00001{word-spacing:0.024896pt;}
.ws2_c00001{word-spacing:0.130704pt;}
._1_c00001{margin-left:-0.890032pt;}
._0_c00001{width:1.195008pt;}
.fs0_c00001{font-size:62.240000pt;}
.y0_c00001{bottom:0.000000pt;}
.y2_c00001{bottom:97.547527pt;}
.y1_c00001{bottom:115.387067pt;}
.ya_c00001{bottom:799.146371pt;}
.y9_c00001{bottom:825.946915pt;}
.y8_c00001{bottom:852.826815pt;}
.y7_c00001{bottom:879.627359pt;}
.y6_c00001{bottom:906.586615pt;}
.y5_c00001{bottom:933.387159pt;}
.y4_c00001{bottom:960.267059pt;}
.y3_c00001{bottom:987.067603pt;}
.h1_c00001{height:55.797187pt;}
.h2_c00001{height:56.192266pt;}
.h3_c00001{height:64.914375pt;}
.h0_c00001{height:1122.666667pt;}
.w0_c00001{width:793.333333pt;}
.x0_c00001{left:0.000000pt;}
.x2_c00001{left:73.519584pt;}
.x4_c00001{left:84.719672pt;}
.x5_c00001{left:352.239640pt;}
.x1_c00001{left:392.400000pt;}
.x3_c00001{left:396.800368pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e0c927f5991d1e046d24bd5a.woff2')format("woff");}.ff1_c00002{font-family:ff1_c00002;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00002;src:url('chunks/assets/font_08062bdcbb006ef78c311158.woff2')format("woff");}.ff2_c00002{font-family:ff2_c00002;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00002;src:url('chunks/assets/font_a53dce2f90a49cc9cfa29383.woff2')format("woff");}.ff3_c00002{font-family:ff3_c00002;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00002{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00002{vertical-align:0.000000px;}
.ls8_c00002{letter-spacing:-0.122359px;}
.lsa_c00002{letter-spacing:-0.112032px;}
.ls6_c00002{letter-spacing:-0.063018px;}
.ls9_c00002{letter-spacing:-0.056016px;}
.lsb_c00002{letter-spacing:-0.035010px;}
.lsd_c00002{letter-spacing:-0.021006px;}
.lsc_c00002{letter-spacing:-0.014004px;}
.ls7_c00002{letter-spacing:0.000000px;}
.ls5_c00002{letter-spacing:0.042012px;}
.ls3_c00002{letter-spacing:0.056016px;}
.ls0_c00002{letter-spacing:0.065258px;}
.ls1_c00002{letter-spacing:0.097887px;}
.ls4_c00002{letter-spacing:0.098028px;}
.ls2_c00002{letter-spacing:0.119034px;}
.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;}
}
.ws4_c00002{word-spacing:-0.490140px;}
.ws1_c00002{word-spacing:-0.228403px;}
.ws3_c00002{word-spacing:-0.171302px;}
.ws8_c00002{word-spacing:-0.056016px;}
.ws0_c00002{word-spacing:0.000000px;}
.wsa_c00002{word-spacing:0.007002px;}
.ws9_c00002{word-spacing:0.021006px;}
.ws2_c00002{word-spacing:0.024472px;}
.ws5_c00002{word-spacing:0.042012px;}
.ws7_c00002{word-spacing:0.098028px;}
.ws6_c00002{word-spacing:0.287082px;}
._1_c00002{margin-left:-1.044127px;}
._0_c00002{width:1.451989px;}
._2_c00002{width:122.394960px;}
._4_c00002{width:128.521710px;}
._3_c00002{width:187.198470px;}
.fc1_c00002{color:rgb(51,51,51);}
.fc0_c00002{color:rgb(0,0,0);}
.fs0_c00002{font-size:70.020000px;}
.fs1_c00002{font-size:81.572400px;}
.y0_c00002{bottom:0.000000px;}
.y2_c00002{bottom:109.740968px;}
.y1_c00002{bottom:129.810450px;}
.y1d_c00002{bottom:169.045923px;}
.y1c_c00002{bottom:199.196535px;}
.y1b_c00002{bottom:229.436423px;}
.y1a_c00002{bottom:259.587034px;}
.y19_c00002{bottom:289.826922px;}
.y18_c00002{bottom:319.977534px;}
.y17_c00002{bottom:350.217422px;}
.y16_c00002{bottom:380.368034px;}
.y15_c00002{bottom:410.607921px;}
.y14_c00002{bottom:440.758533px;}
.y13_c00002{bottom:470.998420px;}
.y12_c00002{bottom:501.149032px;}
.y11_c00002{bottom:531.388920px;}
.y10_c00002{bottom:561.539532px;}
.yf_c00002{bottom:591.690144px;}
.ye_c00002{bottom:622.019307px;}
.yd_c00002{bottom:652.169919px;}
.yc_c00002{bottom:682.409807px;}
.yb_c00002{bottom:712.560419px;}
.ya_c00002{bottom:742.800306px;}
.y9_c00002{bottom:772.950918px;}
.y8_c00002{bottom:799.320450px;}
.y7_c00002{bottom:979.590450px;}
.y6_c00002{bottom:1012.080117px;}
.y5_c00002{bottom:1047.270450px;}
.y4_c00002{bottom:1080.211166px;}
.y3_c00002{bottom:1110.361778px;}
.h1_c00002{height:62.771836px;}
.h4_c00002{height:63.216299px;}
.h2_c00002{height:73.028672px;}
.h3_c00002{height:73.646176px;}
.h0_c00002{height:1263.000000px;}
.w0_c00002{width:892.500000px;}
.x0_c00002{left:0.000000px;}
.x2_c00002{left:82.709532px;}
.xa_c00002{left:97.738290px;}
.x8_c00002{left:141.479784px;}
.xc_c00002{left:185.219528px;}
.x4_c00002{left:189.900000px;}
.xd_c00002{left:198.358781px;}
.x7_c00002{left:257.130067px;}
.xe_c00002{left:258.658254px;}
.x5_c00002{left:280.710474px;}
.x9_c00002{left:355.319114px;}
.xb_c00002{left:396.268560px;}
.x1_c00002{left:441.450000px;}
.x3_c00002{left:446.400414px;}
.x6_c00002{left:541.350000px;}
@media print{
.v0_c00002{vertical-align:0.000000pt;}
.ls8_c00002{letter-spacing:-0.108763pt;}
.lsa_c00002{letter-spacing:-0.099584pt;}
.ls6_c00002{letter-spacing:-0.056016pt;}
.ls9_c00002{letter-spacing:-0.049792pt;}
.lsb_c00002{letter-spacing:-0.031120pt;}
.lsd_c00002{letter-spacing:-0.018672pt;}
.lsc_c00002{letter-spacing:-0.012448pt;}
.ls7_c00002{letter-spacing:0.000000pt;}
.ls5_c00002{letter-spacing:0.037344pt;}
.ls3_c00002{letter-spacing:0.049792pt;}
.ls0_c00002{letter-spacing:0.058007pt;}
.ls1_c00002{letter-spacing:0.087011pt;}
.ls4_c00002{letter-spacing:0.087136pt;}
.ls2_c00002{letter-spacing:0.105808pt;}
.ws4_c00002{word-spacing:-0.435680pt;}
.ws1_c00002{word-spacing:-0.203025pt;}
.ws3_c00002{word-spacing:-0.152268pt;}
.ws8_c00002{word-spacing:-0.049792pt;}
.ws0_c00002{word-spacing:0.000000pt;}
.wsa_c00002{word-spacing:0.006224pt;}
.ws9_c00002{word-spacing:0.018672pt;}
.ws2_c00002{word-spacing:0.021753pt;}
.ws5_c00002{word-spacing:0.037344pt;}
.ws7_c00002{word-spacing:0.087136pt;}
.ws6_c00002{word-spacing:0.255184pt;}
._1_c00002{margin-left:-0.928113pt;}
._0_c00002{width:1.290657pt;}
._2_c00002{width:108.795520pt;}
._4_c00002{width:114.241520pt;}
._3_c00002{width:166.398640pt;}
.fs0_c00002{font-size:62.240000pt;}
.fs1_c00002{font-size:72.508800pt;}
.y0_c00002{bottom:0.000000pt;}
.y2_c00002{bottom:97.547527pt;}
.y1_c00002{bottom:115.387067pt;}
.y1d_c00002{bottom:150.263043pt;}
.y1c_c00002{bottom:177.063587pt;}
.y1b_c00002{bottom:203.943487pt;}
.y1a_c00002{bottom:230.744031pt;}
.y19_c00002{bottom:257.623931pt;}
.y18_c00002{bottom:284.424475pt;}
.y17_c00002{bottom:311.304375pt;}
.y16_c00002{bottom:338.104919pt;}
.y15_c00002{bottom:364.984819pt;}
.y14_c00002{bottom:391.785363pt;}
.y13_c00002{bottom:418.665263pt;}
.y12_c00002{bottom:445.465807pt;}
.y11_c00002{bottom:472.345707pt;}
.y10_c00002{bottom:499.146251pt;}
.yf_c00002{bottom:525.946795pt;}
.ye_c00002{bottom:552.906051pt;}
.yd_c00002{bottom:579.706595pt;}
.yc_c00002{bottom:606.586495pt;}
.yb_c00002{bottom:633.387039pt;}
.ya_c00002{bottom:660.266939pt;}
.y9_c00002{bottom:687.067483pt;}
.y8_c00002{bottom:710.507067pt;}
.y7_c00002{bottom:870.747067pt;}
.y6_c00002{bottom:899.626770pt;}
.y5_c00002{bottom:930.907067pt;}
.y4_c00002{bottom:960.187703pt;}
.y3_c00002{bottom:986.988247pt;}
.h1_c00002{height:55.797187pt;}
.h4_c00002{height:56.192266pt;}
.h2_c00002{height:64.914375pt;}
.h3_c00002{height:65.463267pt;}
.h0_c00002{height:1122.666667pt;}
.w0_c00002{width:793.333333pt;}
.x0_c00002{left:0.000000pt;}
.x2_c00002{left:73.519584pt;}
.xa_c00002{left:86.878480pt;}
.x8_c00002{left:125.759808pt;}
.xc_c00002{left:164.639580pt;}
.x4_c00002{left:168.800000pt;}
.xd_c00002{left:176.318916pt;}
.x7_c00002{left:228.560060pt;}
.xe_c00002{left:229.918448pt;}
.x5_c00002{left:249.520422pt;}
.x9_c00002{left:315.839212pt;}
.xb_c00002{left:352.238720pt;}
.x1_c00002{left:392.400000pt;}
.x3_c00002{left:396.800368pt;}
.x6_c00002{left:481.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_283b93631b42c1b1f59324a7.woff2')format("woff");}.ff1_c00003{font-family:ff1_c00003;line-height:1.106934;font-style:normal;font-weight:normal;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_47171c139f2cee2c30a18b03.woff2')format("woff");}.ff2_c00003{font-family:ff2_c00003;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00003;src:url('chunks/assets/font_0ac8a058385b62a9296ee0a0.woff2')format("woff");}.ff3_c00003{font-family:ff3_c00003;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00003{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00003{vertical-align:0.000000px;}
.ls1_c00003{letter-spacing:-0.063018px;}
.ls4_c00003{letter-spacing:-0.056016px;}
.ls6_c00003{letter-spacing:-0.049014px;}
.ls5_c00003{letter-spacing:-0.042012px;}
.ls3_c00003{letter-spacing:-0.035010px;}
.ls8_c00003{letter-spacing:-0.028008px;}
.ls7_c00003{letter-spacing:-0.007002px;}
.ls2_c00003{letter-spacing:0.000000px;}
.ls0_c00003{letter-spacing:0.140040px;}
.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;}
}
.ws6_c00003{word-spacing:-0.007002px;}
.ws0_c00003{word-spacing:0.000000px;}
.wsb_c00003{word-spacing:0.014004px;}
.ws3_c00003{word-spacing:0.028008px;}
.ws4_c00003{word-spacing:0.035010px;}
.ws9_c00003{word-spacing:0.042012px;}
.ws7_c00003{word-spacing:0.343098px;}
.ws1_c00003{word-spacing:0.378108px;}
.ws2_c00003{word-spacing:0.399114px;}
.wsa_c00003{word-spacing:5.055444px;}
.ws5_c00003{word-spacing:7.191054px;}
.ws8_c00003{word-spacing:16.573734px;}
._0_c00003{margin-left:-1.022292px;}
._1_c00003{width:1.512432px;}
.fc0_c00003{color:rgb(0,0,0);}
.fs0_c00003{font-size:70.020000px;}
.y0_c00003{bottom:0.000000px;}
.y2_c00003{bottom:109.740968px;}
.y1_c00003{bottom:129.810450px;}
.y13_c00003{bottom:627.327057px;}
.y12_c00003{bottom:657.477669px;}
.y11_c00003{bottom:687.717557px;}
.y10_c00003{bottom:717.868169px;}
.yf_c00003{bottom:748.108056px;}
.ye_c00003{bottom:778.258668px;}
.yd_c00003{bottom:808.498556px;}
.yc_c00003{bottom:838.649168px;}
.yb_c00003{bottom:868.889055px;}
.ya_c00003{bottom:899.039667px;}
.y9_c00003{bottom:929.279555px;}
.y8_c00003{bottom:959.519442px;}
.y7_c00003{bottom:989.670054px;}
.y6_c00003{bottom:1019.909942px;}
.y5_c00003{bottom:1050.060553px;}
.y4_c00003{bottom:1080.300441px;}
.y3_c00003{bottom:1110.451053px;}
.h3_c00003{height:62.600889px;}
.h1_c00003{height:62.771836px;}
.h2_c00003{height:63.216299px;}
.h0_c00003{height:1263.000000px;}
.w0_c00003{width:892.500000px;}
.x0_c00003{left:0.000000px;}
.x2_c00003{left:82.709532px;}
.x3_c00003{left:356.850086px;}
.x1_c00003{left:441.450000px;}
.x4_c00003{left:446.400414px;}
@media print{
.v0_c00003{vertical-align:0.000000pt;}
.ls1_c00003{letter-spacing:-0.056016pt;}
.ls4_c00003{letter-spacing:-0.049792pt;}
.ls6_c00003{letter-spacing:-0.043568pt;}
.ls5_c00003{letter-spacing:-0.037344pt;}
.ls3_c00003{letter-spacing:-0.031120pt;}
.ls8_c00003{letter-spacing:-0.024896pt;}
.ls7_c00003{letter-spacing:-0.006224pt;}
.ls2_c00003{letter-spacing:0.000000pt;}
.ls0_c00003{letter-spacing:0.124480pt;}
.ws6_c00003{word-spacing:-0.006224pt;}
.ws0_c00003{word-spacing:0.000000pt;}
.wsb_c00003{word-spacing:0.012448pt;}
.ws3_c00003{word-spacing:0.024896pt;}
.ws4_c00003{word-spacing:0.031120pt;}
.ws9_c00003{word-spacing:0.037344pt;}
.ws7_c00003{word-spacing:0.304976pt;}
.ws1_c00003{word-spacing:0.336096pt;}
.ws2_c00003{word-spacing:0.354768pt;}
.wsa_c00003{word-spacing:4.493728pt;}
.ws5_c00003{word-spacing:6.392048pt;}
.ws8_c00003{word-spacing:14.732208pt;}
._0_c00003{margin-left:-0.908704pt;}
._1_c00003{width:1.344384pt;}
.fs0_c00003{font-size:62.240000pt;}
.y0_c00003{bottom:0.000000pt;}
.y2_c00003{bottom:97.547527pt;}
.y1_c00003{bottom:115.387067pt;}
.y13_c00003{bottom:557.624051pt;}
.y12_c00003{bottom:584.424595pt;}
.y11_c00003{bottom:611.304495pt;}
.y10_c00003{bottom:638.105039pt;}
.yf_c00003{bottom:664.984939pt;}
.ye_c00003{bottom:691.785483pt;}
.yd_c00003{bottom:718.665383pt;}
.yc_c00003{bottom:745.465927pt;}
.yb_c00003{bottom:772.345827pt;}
.ya_c00003{bottom:799.146371pt;}
.y9_c00003{bottom:826.026271pt;}
.y8_c00003{bottom:852.906171pt;}
.y7_c00003{bottom:879.706715pt;}
.y6_c00003{bottom:906.586615pt;}
.y5_c00003{bottom:933.387159pt;}
.y4_c00003{bottom:960.267059pt;}
.y3_c00003{bottom:987.067603pt;}
.h3_c00003{height:55.645234pt;}
.h1_c00003{height:55.797187pt;}
.h2_c00003{height:56.192266pt;}
.h0_c00003{height:1122.666667pt;}
.w0_c00003{width:793.333333pt;}
.x0_c00003{left:0.000000pt;}
.x2_c00003{left:73.519584pt;}
.x3_c00003{left:317.200076pt;}
.x1_c00003{left:392.400000pt;}
.x4_c00003{left:396.800368pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1a232e3679c52761e83b91d7.woff2')format("woff");}.ff1_c00004{font-family:ff1_c00004;line-height:1.106934;font-style:normal;font-weight:normal;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_9670d289485f471e43edcabd.woff2')format("woff");}.ff2_c00004{font-family:ff2_c00004;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00004;src:url('chunks/assets/font_5810fa5b9e31465591f1f943.woff2')format("woff");}.ff3_c00004{font-family:ff3_c00004;line-height:1.128906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00004;src:url('chunks/assets/font_a314d873a8d90891bab7edfd.woff2')format("woff");}.ff4_c00004{font-family:ff4_c00004;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00004{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00004{vertical-align:-91.080000px;}
.v0_c00004{vertical-align:0.000000px;}
.ls1b_c00004{letter-spacing:-0.367076px;}
.ls1d_c00004{letter-spacing:-0.308088px;}
.ls24_c00004{letter-spacing:-0.303886px;}
.ls1f_c00004{letter-spacing:-0.258303px;}
.ls23_c00004{letter-spacing:-0.212720px;}
.ls25_c00004{letter-spacing:-0.098028px;}
.ls27_c00004{letter-spacing:-0.077022px;}
.ls16_c00004{letter-spacing:-0.063018px;}
.ls21_c00004{letter-spacing:-0.042012px;}
.ls1e_c00004{letter-spacing:-0.040786px;}
.ls20_c00004{letter-spacing:-0.035010px;}
.ls1c_c00004{letter-spacing:-0.008157px;}
.ls17_c00004{letter-spacing:0.000000px;}
.ls7_c00004{letter-spacing:0.008157px;}
.lsa_c00004{letter-spacing:0.016314px;}
.lse_c00004{letter-spacing:0.021006px;}
.ls11_c00004{letter-spacing:0.028008px;}
.lsb_c00004{letter-spacing:0.032629px;}
.ls2_c00004{letter-spacing:0.057101px;}
.ls13_c00004{letter-spacing:0.063018px;}
.ls4_c00004{letter-spacing:0.065258px;}
.ls6_c00004{letter-spacing:0.073415px;}
.ls5_c00004{letter-spacing:0.081572px;}
.ls9_c00004{letter-spacing:0.089730px;}
.ls12_c00004{letter-spacing:0.091026px;}
.ls0_c00004{letter-spacing:0.097887px;}
.ls8_c00004{letter-spacing:0.098028px;}
.lsc_c00004{letter-spacing:0.105030px;}
.ls14_c00004{letter-spacing:0.119034px;}
.ls3_c00004{letter-spacing:0.130516px;}
.ls15_c00004{letter-spacing:0.133038px;}
.lsd_c00004{letter-spacing:0.143264px;}
.ls26_c00004{letter-spacing:0.151943px;}
.ls10_c00004{letter-spacing:0.168048px;}
.ls19_c00004{letter-spacing:0.224064px;}
.ls22_c00004{letter-spacing:0.266076px;}
.ls1a_c00004{letter-spacing:0.350761px;}
.ls18_c00004{letter-spacing:0.358919px;}
.lsf_c00004{letter-spacing:0.503264px;}
.ls1_c00004{letter-spacing:89.679757px;}
.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;}
}
.ws3_c00004{word-spacing:-23.027889px;}
.ws1_c00004{word-spacing:-22.677127px;}
.ws5_c00004{word-spacing:-22.668970px;}
.ws4_c00004{word-spacing:-22.310051px;}
.ws2_c00004{word-spacing:-21.078308px;}
.ws0_c00004{word-spacing:-19.789464px;}
.ws7_c00004{word-spacing:-19.756835px;}
.wsa_c00004{word-spacing:-19.748678px;}
.ws8_c00004{word-spacing:-18.051156px;}
.ws9_c00004{word-spacing:-17.953128px;}
.ws6_c00004{word-spacing:-17.476992px;}
.ws26_c00004{word-spacing:-0.448128px;}
.ws12_c00004{word-spacing:-0.427122px;}
.ws25_c00004{word-spacing:-0.266076px;}
.ws28_c00004{word-spacing:-0.252072px;}
.ws21_c00004{word-spacing:-0.231066px;}
.ws13_c00004{word-spacing:-0.146830px;}
.ws1c_c00004{word-spacing:-0.138673px;}
.ws2a_c00004{word-spacing:-0.105030px;}
.ws15_c00004{word-spacing:-0.073415px;}
.ws1b_c00004{word-spacing:-0.070020px;}
.ws22_c00004{word-spacing:-0.063018px;}
.ws23_c00004{word-spacing:-0.035010px;}
.wsb_c00004{word-spacing:0.000000px;}
.ws1d_c00004{word-spacing:0.007002px;}
.wse_c00004{word-spacing:0.016314px;}
.ws1e_c00004{word-spacing:0.024472px;}
.ws1f_c00004{word-spacing:0.032629px;}
.wsd_c00004{word-spacing:0.040786px;}
.ws24_c00004{word-spacing:0.057101px;}
.ws19_c00004{word-spacing:0.063018px;}
.ws1a_c00004{word-spacing:0.070020px;}
.ws10_c00004{word-spacing:0.097887px;}
.ws16_c00004{word-spacing:0.130516px;}
.ws27_c00004{word-spacing:0.212088px;}
.wsf_c00004{word-spacing:0.228403px;}
.wsc_c00004{word-spacing:0.236560px;}
.ws14_c00004{word-spacing:0.391548px;}
.ws29_c00004{word-spacing:0.399705px;}
.ws18_c00004{word-spacing:0.410246px;}
.ws17_c00004{word-spacing:0.448648px;}
.ws20_c00004{word-spacing:0.455828px;}
.ws11_c00004{word-spacing:0.473120px;}
._0_c00004{margin-left:-1.150171px;}
._1_c00004{width:1.011498px;}
.fc0_c00004{color:rgb(0,0,0);}
.fs2_c00004{font-size:64.067400px;}
.fs0_c00004{font-size:70.020000px;}
.fs3_c00004{font-size:75.971400px;}
.fs1_c00004{font-size:81.572400px;}
.y0_c00004{bottom:0.000000px;}
.y2_c00004{bottom:109.740968px;}
.y1_c00004{bottom:129.810450px;}
.y22_c00004{bottom:158.790600px;}
.y21_c00004{bottom:183.720450px;}
.y20_c00004{bottom:224.850450px;}
.y1f_c00004{bottom:265.980450px;}
.y1e_c00004{bottom:307.109856px;}
.y1d_c00004{bottom:347.700450px;}
.y1c_c00004{bottom:372.630316px;}
.y1b_c00004{bottom:413.040609px;}
.y1a_c00004{bottom:450.391027px;}
.y19_c00004{bottom:488.280600px;}
.y18_c00004{bottom:526.620029px;}
.y17_c00004{bottom:544.890450px;}
.y16_c00004{bottom:568.380450px;}
.y15_c00004{bottom:609.510450px;}
.y14_c00004{bottom:662.432664px;}
.y13_c00004{bottom:695.371823px;}
.y12_c00004{bottom:725.251107px;}
.y11_c00004{bottom:756.210450px;}
.y10_c00004{bottom:787.440450px;}
.yf_c00004{bottom:807.870325px;}
.ye_c00004{bottom:831.540596px;}
.yd_c00004{bottom:854.670450px;}
.yc_c00004{bottom:877.620063px;}
.yb_c00004{bottom:898.230450px;}
.ya_c00004{bottom:921.810450px;}
.y9_c00004{bottom:944.580450px;}
.y8_c00004{bottom:963.750450px;}
.y7_c00004{bottom:986.700450px;}
.y6_c00004{bottom:1007.220595px;}
.y5_c00004{bottom:1030.890866px;}
.y4_c00004{bottom:1076.880450px;}
.y3_c00004{bottom:1107.660450px;}
.h3_c00004{height:58.436476px;}
.h1_c00004{height:62.771836px;}
.h8_c00004{height:63.865898px;}
.h2_c00004{height:73.646176px;}
.h6_c00004{height:81.116586px;}
.h5_c00004{height:88.653252px;}
.h9_c00004{height:96.179543px;}
.h7_c00004{height:96.188399px;}
.ha_c00004{height:96.190775px;}
.h4_c00004{height:103.279899px;}
.h0_c00004{height:1263.000000px;}
.w0_c00004{width:892.500000px;}
.x0_c00004{left:0.000000px;}
.x2_c00004{left:82.709532px;}
.x3_c00004{left:108.990000px;}
.x4_c00004{left:135.270000px;}
.x5_c00004{left:240.300126px;}
.x1_c00004{left:441.450000px;}
@media print{
.v1_c00004{vertical-align:-80.960000pt;}
.v0_c00004{vertical-align:0.000000pt;}
.ls1b_c00004{letter-spacing:-0.326290pt;}
.ls1d_c00004{letter-spacing:-0.273856pt;}
.ls24_c00004{letter-spacing:-0.270121pt;}
.ls1f_c00004{letter-spacing:-0.229602pt;}
.ls23_c00004{letter-spacing:-0.189084pt;}
.ls25_c00004{letter-spacing:-0.087136pt;}
.ls27_c00004{letter-spacing:-0.068464pt;}
.ls16_c00004{letter-spacing:-0.056016pt;}
.ls21_c00004{letter-spacing:-0.037344pt;}
.ls1e_c00004{letter-spacing:-0.036254pt;}
.ls20_c00004{letter-spacing:-0.031120pt;}
.ls1c_c00004{letter-spacing:-0.007251pt;}
.ls17_c00004{letter-spacing:0.000000pt;}
.ls7_c00004{letter-spacing:0.007251pt;}
.lsa_c00004{letter-spacing:0.014502pt;}
.lse_c00004{letter-spacing:0.018672pt;}
.ls11_c00004{letter-spacing:0.024896pt;}
.lsb_c00004{letter-spacing:0.029004pt;}
.ls2_c00004{letter-spacing:0.050756pt;}
.ls13_c00004{letter-spacing:0.056016pt;}
.ls4_c00004{letter-spacing:0.058007pt;}
.ls6_c00004{letter-spacing:0.065258pt;}
.ls5_c00004{letter-spacing:0.072509pt;}
.ls9_c00004{letter-spacing:0.079760pt;}
.ls12_c00004{letter-spacing:0.080912pt;}
.ls0_c00004{letter-spacing:0.087011pt;}
.ls8_c00004{letter-spacing:0.087136pt;}
.lsc_c00004{letter-spacing:0.093360pt;}
.ls14_c00004{letter-spacing:0.105808pt;}
.ls3_c00004{letter-spacing:0.116014pt;}
.ls15_c00004{letter-spacing:0.118256pt;}
.lsd_c00004{letter-spacing:0.127346pt;}
.ls26_c00004{letter-spacing:0.135060pt;}
.ls10_c00004{letter-spacing:0.149376pt;}
.ls19_c00004{letter-spacing:0.199168pt;}
.ls22_c00004{letter-spacing:0.236512pt;}
.ls1a_c00004{letter-spacing:0.311788pt;}
.ls18_c00004{letter-spacing:0.319039pt;}
.lsf_c00004{letter-spacing:0.447346pt;}
.ls1_c00004{letter-spacing:79.715339pt;}
.ws3_c00004{word-spacing:-20.469234pt;}
.ws1_c00004{word-spacing:-20.157446pt;}
.ws5_c00004{word-spacing:-20.150196pt;}
.ws4_c00004{word-spacing:-19.831157pt;}
.ws2_c00004{word-spacing:-18.736274pt;}
.ws0_c00004{word-spacing:-17.590635pt;}
.ws7_c00004{word-spacing:-17.561631pt;}
.wsa_c00004{word-spacing:-17.554380pt;}
.ws8_c00004{word-spacing:-16.045472pt;}
.ws9_c00004{word-spacing:-15.958336pt;}
.ws6_c00004{word-spacing:-15.535104pt;}
.ws26_c00004{word-spacing:-0.398336pt;}
.ws12_c00004{word-spacing:-0.379664pt;}
.ws25_c00004{word-spacing:-0.236512pt;}
.ws28_c00004{word-spacing:-0.224064pt;}
.ws21_c00004{word-spacing:-0.205392pt;}
.ws13_c00004{word-spacing:-0.130516pt;}
.ws1c_c00004{word-spacing:-0.123265pt;}
.ws2a_c00004{word-spacing:-0.093360pt;}
.ws15_c00004{word-spacing:-0.065258pt;}
.ws1b_c00004{word-spacing:-0.062240pt;}
.ws22_c00004{word-spacing:-0.056016pt;}
.ws23_c00004{word-spacing:-0.031120pt;}
.wsb_c00004{word-spacing:0.000000pt;}
.ws1d_c00004{word-spacing:0.006224pt;}
.wse_c00004{word-spacing:0.014502pt;}
.ws1e_c00004{word-spacing:0.021753pt;}
.ws1f_c00004{word-spacing:0.029004pt;}
.wsd_c00004{word-spacing:0.036254pt;}
.ws24_c00004{word-spacing:0.050756pt;}
.ws19_c00004{word-spacing:0.056016pt;}
.ws1a_c00004{word-spacing:0.062240pt;}
.ws10_c00004{word-spacing:0.087011pt;}
.ws16_c00004{word-spacing:0.116014pt;}
.ws27_c00004{word-spacing:0.188523pt;}
.wsf_c00004{word-spacing:0.203025pt;}
.wsc_c00004{word-spacing:0.210276pt;}
.ws14_c00004{word-spacing:0.348042pt;}
.ws29_c00004{word-spacing:0.355293pt;}
.ws18_c00004{word-spacing:0.364663pt;}
.ws17_c00004{word-spacing:0.398798pt;}
.ws20_c00004{word-spacing:0.405181pt;}
.ws11_c00004{word-spacing:0.420551pt;}
._0_c00004{margin-left:-1.022374pt;}
._1_c00004{width:0.899109pt;}
.fs2_c00004{font-size:56.948800pt;}
.fs0_c00004{font-size:62.240000pt;}
.fs3_c00004{font-size:67.530133pt;}
.fs1_c00004{font-size:72.508800pt;}
.y0_c00004{bottom:0.000000pt;}
.y2_c00004{bottom:97.547527pt;}
.y1_c00004{bottom:115.387067pt;}
.y22_c00004{bottom:141.147200pt;}
.y21_c00004{bottom:163.307067pt;}
.y20_c00004{bottom:199.867067pt;}
.y1f_c00004{bottom:236.427067pt;}
.y1e_c00004{bottom:272.986539pt;}
.y1d_c00004{bottom:309.067067pt;}
.y1c_c00004{bottom:331.226948pt;}
.y1b_c00004{bottom:367.147208pt;}
.y1a_c00004{bottom:400.347580pt;}
.y19_c00004{bottom:434.027200pt;}
.y18_c00004{bottom:468.106693pt;}
.y17_c00004{bottom:484.347067pt;}
.y16_c00004{bottom:505.227067pt;}
.y15_c00004{bottom:541.787067pt;}
.y14_c00004{bottom:588.829035pt;}
.y13_c00004{bottom:618.108287pt;}
.y12_c00004{bottom:644.667651pt;}
.y11_c00004{bottom:672.187067pt;}
.y10_c00004{bottom:699.947067pt;}
.yf_c00004{bottom:718.106955pt;}
.ye_c00004{bottom:739.147196pt;}
.yd_c00004{bottom:759.707067pt;}
.yc_c00004{bottom:780.106723pt;}
.yb_c00004{bottom:798.427067pt;}
.ya_c00004{bottom:819.387067pt;}
.y9_c00004{bottom:839.627067pt;}
.y8_c00004{bottom:856.667067pt;}
.y7_c00004{bottom:877.067067pt;}
.y6_c00004{bottom:895.307196pt;}
.y5_c00004{bottom:916.347437pt;}
.y4_c00004{bottom:957.227067pt;}
.y3_c00004{bottom:984.587067pt;}
.h3_c00004{height:51.943534pt;}
.h1_c00004{height:55.797187pt;}
.h8_c00004{height:56.769687pt;}
.h2_c00004{height:65.463267pt;}
.h6_c00004{height:72.103632pt;}
.h5_c00004{height:78.802891pt;}
.h9_c00004{height:85.492927pt;}
.h7_c00004{height:85.500799pt;}
.ha_c00004{height:85.502911pt;}
.h4_c00004{height:91.804355pt;}
.h0_c00004{height:1122.666667pt;}
.w0_c00004{width:793.333333pt;}
.x0_c00004{left:0.000000pt;}
.x2_c00004{left:73.519584pt;}
.x3_c00004{left:96.880000pt;}
.x4_c00004{left:120.240000pt;}
.x5_c00004{left:213.600112pt;}
.x1_c00004{left:392.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_46a05d406bfdb2a20eb8987c.woff2')format("woff");}.ff1_c00005{font-family:ff1_c00005;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00005;src:url('chunks/assets/font_bef3961552a972323d8ae106.woff2')format("woff");}.ff2_c00005{font-family:ff2_c00005;line-height:1.128906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00005;src:url('chunks/assets/font_be89e031951bad5b0a2be7d5.woff2')format("woff");}.ff3_c00005{font-family:ff3_c00005;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00005;src:url('chunks/assets/font_71f4419739fd18aeb8508b0e.woff2')format("woff");}.ff4_c00005{font-family:ff4_c00005;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00005{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00005{vertical-align:-91.803618px;}
.v0_c00005{vertical-align:0.000000px;}
.ls1b_c00005{letter-spacing:-0.518946px;}
.ls2a_c00005{letter-spacing:-0.367076px;}
.ls2e_c00005{letter-spacing:-0.326677px;}
.ls2b_c00005{letter-spacing:-0.311483px;}
.ls27_c00005{letter-spacing:-0.245070px;}
.ls26_c00005{letter-spacing:-0.243108px;}
.ls1d_c00005{letter-spacing:-0.231066px;}
.ls24_c00005{letter-spacing:-0.187617px;}
.ls23_c00005{letter-spacing:-0.140040px;}
.ls2f_c00005{letter-spacing:-0.084024px;}
.ls18_c00005{letter-spacing:-0.063018px;}
.ls1a_c00005{letter-spacing:-0.060777px;}
.ls1f_c00005{letter-spacing:-0.056016px;}
.ls22_c00005{letter-spacing:-0.049014px;}
.ls20_c00005{letter-spacing:-0.035010px;}
.ls25_c00005{letter-spacing:-0.021006px;}
.ls1c_c00005{letter-spacing:-0.008157px;}
.ls2c_c00005{letter-spacing:-0.007002px;}
.ls19_c00005{letter-spacing:0.000000px;}
.lsa_c00005{letter-spacing:0.016314px;}
.lsb_c00005{letter-spacing:0.024472px;}
.ls10_c00005{letter-spacing:0.028008px;}
.lsd_c00005{letter-spacing:0.032629px;}
.lsc_c00005{letter-spacing:0.035010px;}
.ls2d_c00005{letter-spacing:0.037986px;}
.ls7_c00005{letter-spacing:0.042012px;}
.ls16_c00005{letter-spacing:0.044033px;}
.ls9_c00005{letter-spacing:0.049014px;}
.ls8_c00005{letter-spacing:0.065258px;}
.ls1_c00005{letter-spacing:0.070020px;}
.ls13_c00005{letter-spacing:0.073415px;}
.ls14_c00005{letter-spacing:0.077022px;}
.lsf_c00005{letter-spacing:0.081572px;}
.ls5_c00005{letter-spacing:0.089730px;}
.ls4_c00005{letter-spacing:0.091026px;}
.ls17_c00005{letter-spacing:0.097887px;}
.ls2_c00005{letter-spacing:0.106044px;}
.ls3_c00005{letter-spacing:0.143264px;}
.ls1e_c00005{letter-spacing:0.151943px;}
.lse_c00005{letter-spacing:0.154044px;}
.ls6_c00005{letter-spacing:0.171302px;}
.ls11_c00005{letter-spacing:0.192202px;}
.ls12_c00005{letter-spacing:0.212088px;}
.ls21_c00005{letter-spacing:0.224064px;}
.ls15_c00005{letter-spacing:0.228403px;}
.ls29_c00005{letter-spacing:0.245070px;}
.ls28_c00005{letter-spacing:0.350761px;}
.ls0_c00005{letter-spacing:193.367052px;}
.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;}
}
.ws5_c00005{word-spacing:-23.027889px;}
.ws2_c00005{word-spacing:-22.848429px;}
.ws0_c00005{word-spacing:-22.668970px;}
.ws4_c00005{word-spacing:-22.489511px;}
.ws8_c00005{word-spacing:-22.310051px;}
.ws6_c00005{word-spacing:-18.030150px;}
.ws7_c00005{word-spacing:-17.939124px;}
.ws3_c00005{word-spacing:-17.729064px;}
.wsa_c00005{word-spacing:-17.722062px;}
.ws1_c00005{word-spacing:-17.554014px;}
.ws9_c00005{word-spacing:-17.540010px;}
.wsf_c00005{word-spacing:-0.420120px;}
.ws20_c00005{word-spacing:-0.329094px;}
.ws1f_c00005{word-spacing:-0.166575px;}
.ws1b_c00005{word-spacing:-0.126036px;}
.ws16_c00005{word-spacing:-0.081572px;}
.ws22_c00005{word-spacing:-0.049014px;}
.wsd_c00005{word-spacing:-0.042012px;}
.ws14_c00005{word-spacing:-0.021006px;}
.ws11_c00005{word-spacing:-0.014004px;}
.wsb_c00005{word-spacing:0.000000px;}
.ws1e_c00005{word-spacing:0.007002px;}
.wse_c00005{word-spacing:0.016314px;}
.ws27_c00005{word-spacing:0.024472px;}
.ws18_c00005{word-spacing:0.028008px;}
.ws25_c00005{word-spacing:0.035010px;}
.ws1c_c00005{word-spacing:0.040786px;}
.ws28_c00005{word-spacing:0.048943px;}
.ws1a_c00005{word-spacing:0.049014px;}
.ws12_c00005{word-spacing:0.063018px;}
.ws17_c00005{word-spacing:0.077022px;}
.ws29_c00005{word-spacing:0.084024px;}
.ws2b_c00005{word-spacing:0.112032px;}
.wsc_c00005{word-spacing:0.212720px;}
.ws13_c00005{word-spacing:0.236560px;}
.ws23_c00005{word-spacing:0.252874px;}
.ws19_c00005{word-spacing:0.269189px;}
.ws26_c00005{word-spacing:0.277346px;}
.ws15_c00005{word-spacing:0.285503px;}
.ws2a_c00005{word-spacing:0.383390px;}
.ws10_c00005{word-spacing:0.391548px;}
.ws1d_c00005{word-spacing:0.395051px;}
.ws21_c00005{word-spacing:0.407862px;}
.ws24_c00005{word-spacing:0.463426px;}
._0_c00005{margin-left:-1.463348px;}
._1_c00005{width:1.023405px;}
.fc0_c00005{color:rgb(0,0,0);}
.fs2_c00005{font-size:64.067400px;}
.fs0_c00005{font-size:70.020000px;}
.fs1_c00005{font-size:75.971400px;}
.fs3_c00005{font-size:81.572400px;}
.y0_c00005{bottom:0.000000px;}
.y2_c00005{bottom:109.740968px;}
.y1_c00005{bottom:129.810450px;}
.y21_c00005{bottom:181.471645px;}
.y20_c00005{bottom:202.981047px;}
.y1f_c00005{bottom:224.490450px;}
.y1e_c00005{bottom:250.680450px;}
.y1d_c00005{bottom:291.810450px;}
.y1c_c00005{bottom:332.940450px;}
.y1b_c00005{bottom:374.070450px;}
.y1a_c00005{bottom:415.021349px;}
.y19_c00005{bottom:436.801433px;}
.y18_c00005{bottom:464.520488px;}
.y17_c00005{bottom:503.670450px;}
.y16_c00005{bottom:529.860450px;}
.y15_c00005{bottom:570.990450px;}
.y14_c00005{bottom:612.120450px;}
.y13_c00005{bottom:652.890450px;}
.y12_c00005{bottom:679.439861px;}
.y11_c00005{bottom:702.299640px;}
.y10_c00005{bottom:722.638754px;}
.yf_c00005{bottom:761.699450px;}
.ye_c00005{bottom:783.479748px;}
.yd_c00005{bottom:806.519829px;}
.yc_c00005{bottom:831.449645px;}
.yb_c00005{bottom:854.400450px;}
.ya_c00005{bottom:892.471215px;}
.y9_c00005{bottom:916.049645px;}
.y8_c00005{bottom:938.999829px;}
.y7_c00005{bottom:963.930369px;}
.y6_c00005{bottom:986.970450px;}
.y5_c00005{bottom:1025.040450px;}
.y4_c00005{bottom:1065.900450px;}
.y3_c00005{bottom:1110.631354px;}
.h1_c00005{height:62.771836px;}
.h2_c00005{height:63.865898px;}
.h9_c00005{height:68.589413px;}
.hb_c00005{height:69.294226px;}
.hc_c00005{height:74.399021px;}
.h4_c00005{height:74.403275px;}
.h8_c00005{height:74.405309px;}
.h6_c00005{height:88.653252px;}
.h3_c00005{height:96.188399px;}
.h5_c00005{height:96.190883px;}
.h7_c00005{height:96.191207px;}
.ha_c00005{height:103.279899px;}
.h0_c00005{height:1263.000000px;}
.w0_c00005{width:892.500000px;}
.x0_c00005{left:0.000000px;}
.x2_c00005{left:82.709532px;}
.x3_c00005{left:135.270000px;}
.x4_c00005{left:174.599204px;}
.x5_c00005{left:240.300090px;}
.x1_c00005{left:441.450000px;}
@media print{
.v1_c00005{vertical-align:-81.603216pt;}
.v0_c00005{vertical-align:0.000000pt;}
.ls1b_c00005{letter-spacing:-0.461285pt;}
.ls2a_c00005{letter-spacing:-0.326290pt;}
.ls2e_c00005{letter-spacing:-0.290380pt;}
.ls2b_c00005{letter-spacing:-0.276874pt;}
.ls27_c00005{letter-spacing:-0.217840pt;}
.ls26_c00005{letter-spacing:-0.216096pt;}
.ls1d_c00005{letter-spacing:-0.205392pt;}
.ls24_c00005{letter-spacing:-0.166770pt;}
.ls23_c00005{letter-spacing:-0.124480pt;}
.ls2f_c00005{letter-spacing:-0.074688pt;}
.ls18_c00005{letter-spacing:-0.056016pt;}
.ls1a_c00005{letter-spacing:-0.054024pt;}
.ls1f_c00005{letter-spacing:-0.049792pt;}
.ls22_c00005{letter-spacing:-0.043568pt;}
.ls20_c00005{letter-spacing:-0.031120pt;}
.ls25_c00005{letter-spacing:-0.018672pt;}
.ls1c_c00005{letter-spacing:-0.007251pt;}
.ls2c_c00005{letter-spacing:-0.006224pt;}
.ls19_c00005{letter-spacing:0.000000pt;}
.lsa_c00005{letter-spacing:0.014502pt;}
.lsb_c00005{letter-spacing:0.021753pt;}
.ls10_c00005{letter-spacing:0.024896pt;}
.lsd_c00005{letter-spacing:0.029004pt;}
.lsc_c00005{letter-spacing:0.031120pt;}
.ls2d_c00005{letter-spacing:0.033765pt;}
.ls7_c00005{letter-spacing:0.037344pt;}
.ls16_c00005{letter-spacing:0.039140pt;}
.ls9_c00005{letter-spacing:0.043568pt;}
.ls8_c00005{letter-spacing:0.058007pt;}
.ls1_c00005{letter-spacing:0.062240pt;}
.ls13_c00005{letter-spacing:0.065258pt;}
.ls14_c00005{letter-spacing:0.068464pt;}
.lsf_c00005{letter-spacing:0.072509pt;}
.ls5_c00005{letter-spacing:0.079760pt;}
.ls4_c00005{letter-spacing:0.080912pt;}
.ls17_c00005{letter-spacing:0.087011pt;}
.ls2_c00005{letter-spacing:0.094261pt;}
.ls3_c00005{letter-spacing:0.127346pt;}
.ls1e_c00005{letter-spacing:0.135060pt;}
.lse_c00005{letter-spacing:0.136928pt;}
.ls6_c00005{letter-spacing:0.152268pt;}
.ls11_c00005{letter-spacing:0.170846pt;}
.ls12_c00005{letter-spacing:0.188523pt;}
.ls21_c00005{letter-spacing:0.199168pt;}
.ls15_c00005{letter-spacing:0.203025pt;}
.ls29_c00005{letter-spacing:0.217840pt;}
.ls28_c00005{letter-spacing:0.311788pt;}
.ls0_c00005{letter-spacing:171.881824pt;}
.ws5_c00005{word-spacing:-20.469234pt;}
.ws2_c00005{word-spacing:-20.309715pt;}
.ws0_c00005{word-spacing:-20.150196pt;}
.ws4_c00005{word-spacing:-19.990676pt;}
.ws8_c00005{word-spacing:-19.831157pt;}
.ws6_c00005{word-spacing:-16.026800pt;}
.ws7_c00005{word-spacing:-15.945888pt;}
.ws3_c00005{word-spacing:-15.759168pt;}
.wsa_c00005{word-spacing:-15.752944pt;}
.ws1_c00005{word-spacing:-15.603568pt;}
.ws9_c00005{word-spacing:-15.591120pt;}
.wsf_c00005{word-spacing:-0.373440pt;}
.ws20_c00005{word-spacing:-0.292528pt;}
.ws1f_c00005{word-spacing:-0.148067pt;}
.ws1b_c00005{word-spacing:-0.112032pt;}
.ws16_c00005{word-spacing:-0.072509pt;}
.ws22_c00005{word-spacing:-0.043568pt;}
.wsd_c00005{word-spacing:-0.037344pt;}
.ws14_c00005{word-spacing:-0.018672pt;}
.ws11_c00005{word-spacing:-0.012448pt;}
.wsb_c00005{word-spacing:0.000000pt;}
.ws1e_c00005{word-spacing:0.006224pt;}
.wse_c00005{word-spacing:0.014502pt;}
.ws27_c00005{word-spacing:0.021753pt;}
.ws18_c00005{word-spacing:0.024896pt;}
.ws25_c00005{word-spacing:0.031120pt;}
.ws1c_c00005{word-spacing:0.036254pt;}
.ws28_c00005{word-spacing:0.043505pt;}
.ws1a_c00005{word-spacing:0.043568pt;}
.ws12_c00005{word-spacing:0.056016pt;}
.ws17_c00005{word-spacing:0.068464pt;}
.ws29_c00005{word-spacing:0.074688pt;}
.ws2b_c00005{word-spacing:0.099584pt;}
.wsc_c00005{word-spacing:0.189084pt;}
.ws13_c00005{word-spacing:0.210276pt;}
.ws23_c00005{word-spacing:0.224777pt;}
.ws19_c00005{word-spacing:0.239279pt;}
.ws26_c00005{word-spacing:0.246530pt;}
.ws15_c00005{word-spacing:0.253781pt;}
.ws2a_c00005{word-spacing:0.340791pt;}
.ws10_c00005{word-spacing:0.348042pt;}
.ws1d_c00005{word-spacing:0.351157pt;}
.ws21_c00005{word-spacing:0.362544pt;}
.ws24_c00005{word-spacing:0.411934pt;}
._0_c00005{margin-left:-1.300754pt;}
._1_c00005{width:0.909693pt;}
.fs2_c00005{font-size:56.948800pt;}
.fs0_c00005{font-size:62.240000pt;}
.fs1_c00005{font-size:67.530133pt;}
.fs3_c00005{font-size:72.508800pt;}
.y0_c00005{bottom:0.000000pt;}
.y2_c00005{bottom:97.547527pt;}
.y1_c00005{bottom:115.387067pt;}
.y21_c00005{bottom:161.308129pt;}
.y20_c00005{bottom:180.427598pt;}
.y1f_c00005{bottom:199.547067pt;}
.y1e_c00005{bottom:222.827067pt;}
.y1d_c00005{bottom:259.387067pt;}
.y1c_c00005{bottom:295.947067pt;}
.y1b_c00005{bottom:332.507067pt;}
.y1a_c00005{bottom:368.907866pt;}
.y19_c00005{bottom:388.267940pt;}
.y18_c00005{bottom:412.907101pt;}
.y17_c00005{bottom:447.707067pt;}
.y16_c00005{bottom:470.987067pt;}
.y15_c00005{bottom:507.547067pt;}
.y14_c00005{bottom:544.107067pt;}
.y13_c00005{bottom:580.347067pt;}
.y12_c00005{bottom:603.946543pt;}
.y11_c00005{bottom:624.266347pt;}
.y10_c00005{bottom:642.345559pt;}
.yf_c00005{bottom:677.066177pt;}
.ye_c00005{bottom:696.426443pt;}
.yd_c00005{bottom:716.906515pt;}
.yc_c00005{bottom:739.066351pt;}
.yb_c00005{bottom:759.467067pt;}
.ya_c00005{bottom:793.307747pt;}
.y9_c00005{bottom:814.266351pt;}
.y8_c00005{bottom:834.666515pt;}
.y7_c00005{bottom:856.826995pt;}
.y6_c00005{bottom:877.307067pt;}
.y5_c00005{bottom:911.147067pt;}
.y4_c00005{bottom:947.467067pt;}
.y3_c00005{bottom:987.227871pt;}
.h1_c00005{height:55.797187pt;}
.h2_c00005{height:56.769687pt;}
.h9_c00005{height:60.968367pt;}
.hb_c00005{height:61.594868pt;}
.hc_c00005{height:66.132463pt;}
.h4_c00005{height:66.136244pt;}
.h8_c00005{height:66.138052pt;}
.h6_c00005{height:78.802891pt;}
.h3_c00005{height:85.500799pt;}
.h5_c00005{height:85.503007pt;}
.h7_c00005{height:85.503295pt;}
.ha_c00005{height:91.804355pt;}
.h0_c00005{height:1122.666667pt;}
.w0_c00005{width:793.333333pt;}
.x0_c00005{left:0.000000pt;}
.x2_c00005{left:73.519584pt;}
.x3_c00005{left:120.240000pt;}
.x4_c00005{left:155.199292pt;}
.x5_c00005{left:213.600080pt;}
.x1_c00005{left:392.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6611f2cc262f7a265689d259.woff2')format("woff");}.ff1_c00006{font-family:ff1_c00006;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00006;src:url('chunks/assets/font_ae8e62bc72604b711f0a8535.woff2')format("woff");}.ff2_c00006{font-family:ff2_c00006;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00006;src:url('chunks/assets/font_075798ea96a3d0338a85d5dd.woff2')format("woff");}.ff3_c00006{font-family:ff3_c00006;line-height:1.128906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00006;src:url('chunks/assets/font_71f4419739fd18aeb8508b0e.woff2')format("woff");}.ff4_c00006{font-family:ff4_c00006;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00006;src:url('chunks/assets/font_ecadcac6284f7108fb7a9eb1.woff2')format("woff");}.ff5_c00006{font-family:ff5_c00006;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00006{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00006{vertical-align:0.000000px;}
.ls1a_c00006{letter-spacing:-0.311483px;}
.ls27_c00006{letter-spacing:-0.287082px;}
.ls1e_c00006{letter-spacing:-0.196056px;}
.ls20_c00006{letter-spacing:-0.154044px;}
.ls22_c00006{letter-spacing:-0.146830px;}
.ls1c_c00006{letter-spacing:-0.140040px;}
.ls26_c00006{letter-spacing:-0.112032px;}
.ls24_c00006{letter-spacing:-0.083569px;}
.ls18_c00006{letter-spacing:-0.063018px;}
.ls25_c00006{letter-spacing:-0.040786px;}
.ls28_c00006{letter-spacing:-0.028008px;}
.ls21_c00006{letter-spacing:-0.008157px;}
.ls19_c00006{letter-spacing:0.000000px;}
.ls3_c00006{letter-spacing:0.007002px;}
.ls15_c00006{letter-spacing:0.014004px;}
.lsf_c00006{letter-spacing:0.016314px;}
.lsc_c00006{letter-spacing:0.021006px;}
.lse_c00006{letter-spacing:0.028008px;}
.ls10_c00006{letter-spacing:0.035010px;}
.ls4_c00006{letter-spacing:0.042012px;}
.ls12_c00006{letter-spacing:0.049014px;}
.ls6_c00006{letter-spacing:0.056016px;}
.ls7_c00006{letter-spacing:0.057101px;}
.ls2_c00006{letter-spacing:0.070020px;}
.ls5_c00006{letter-spacing:0.073415px;}
.ls1b_c00006{letter-spacing:0.081572px;}
.lsd_c00006{letter-spacing:0.089730px;}
.ls13_c00006{letter-spacing:0.091026px;}
.ls0_c00006{letter-spacing:0.098028px;}
.lsb_c00006{letter-spacing:0.106044px;}
.lsa_c00006{letter-spacing:0.112032px;}
.ls11_c00006{letter-spacing:0.114201px;}
.ls9_c00006{letter-spacing:0.147042px;}
.ls8_c00006{letter-spacing:0.171302px;}
.ls17_c00006{letter-spacing:0.175050px;}
.ls1_c00006{letter-spacing:0.189054px;}
.ls23_c00006{letter-spacing:0.203058px;}
.ls14_c00006{letter-spacing:0.203931px;}
.ls16_c00006{letter-spacing:0.212088px;}
.ls1d_c00006{letter-spacing:0.224064px;}
.ls1f_c00006{letter-spacing:0.350761px;}
.sc__c00006{text-shadow:none;}
.sc0_c00006{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00006{-webkit-text-stroke:0px transparent;}
.sc0_c00006{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00006{word-spacing:-23.027889px;}
.ws0_c00006{word-spacing:-22.848429px;}
.ws2_c00006{word-spacing:-22.668970px;}
.ws3_c00006{word-spacing:-19.748678px;}
.ws4_c00006{word-spacing:-17.673048px;}
.ws5_c00006{word-spacing:-17.497998px;}
.ws1a_c00006{word-spacing:-0.532152px;}
.ws8_c00006{word-spacing:-0.427122px;}
.ws27_c00006{word-spacing:-0.378108px;}
.wsc_c00006{word-spacing:-0.371106px;}
.ws15_c00006{word-spacing:-0.357102px;}
.ws29_c00006{word-spacing:-0.301086px;}
.ws9_c00006{word-spacing:-0.161046px;}
.ws12_c00006{word-spacing:-0.133038px;}
.ws10_c00006{word-spacing:-0.119034px;}
.ws25_c00006{word-spacing:-0.081572px;}
.ws23_c00006{word-spacing:-0.063018px;}
.wsa_c00006{word-spacing:-0.042012px;}
.ws1c_c00006{word-spacing:-0.028008px;}
.ws22_c00006{word-spacing:-0.021006px;}
.ws18_c00006{word-spacing:-0.014004px;}
.ws1b_c00006{word-spacing:-0.007002px;}
.ws6_c00006{word-spacing:0.000000px;}
.ws14_c00006{word-spacing:0.007002px;}
.ws1d_c00006{word-spacing:0.008157px;}
.ws26_c00006{word-spacing:0.014004px;}
.ws13_c00006{word-spacing:0.016314px;}
.wsb_c00006{word-spacing:0.021006px;}
.ws1f_c00006{word-spacing:0.032629px;}
.wsd_c00006{word-spacing:0.048943px;}
.ws11_c00006{word-spacing:0.065258px;}
.ws28_c00006{word-spacing:0.089730px;}
.wse_c00006{word-spacing:0.091026px;}
.ws16_c00006{word-spacing:0.212088px;}
.ws1e_c00006{word-spacing:0.217062px;}
.ws21_c00006{word-spacing:0.235511px;}
.ws20_c00006{word-spacing:0.407862px;}
.wsf_c00006{word-spacing:0.424176px;}
.ws7_c00006{word-spacing:0.463426px;}
.ws17_c00006{word-spacing:0.464963px;}
.ws24_c00006{word-spacing:0.522063px;}
.ws19_c00006{word-spacing:0.628107px;}
._1_c00006{margin-left:-1.264056px;}
._0_c00006{width:1.230737px;}
.fc0_c00006{color:rgb(0,0,0);}
.fs0_c00006{font-size:70.020000px;}
.fs1_c00006{font-size:75.971400px;}
.fs2_c00006{font-size:81.572400px;}
.y0_c00006{bottom:0.000000px;}
.y2_c00006{bottom:109.740968px;}
.y1_c00006{bottom:129.810450px;}
.y20_c00006{bottom:168.600450px;}
.y1f_c00006{bottom:209.730158px;}
.y1e_c00006{bottom:250.140450px;}
.y1d_c00006{bottom:288.210450px;}
.y1c_c00006{bottom:329.340450px;}
.y1b_c00006{bottom:370.290600px;}
.y1a_c00006{bottom:396.390153px;}
.y19_c00006{bottom:419.340958px;}
.y18_c00006{bottom:439.321165px;}
.y17_c00006{bottom:459.210346px;}
.y16_c00006{bottom:479.010252px;}
.y15_c00006{bottom:498.899433px;}
.y14_c00006{bottom:518.879640px;}
.y13_c00006{bottom:539.220920px;}
.y12_c00006{bottom:578.190450px;}
.y11_c00006{bottom:604.380702px;}
.y10_c00006{bottom:645.510702px;}
.yf_c00006{bottom:686.639644px;}
.ye_c00006{bottom:709.590450px;}
.yd_c00006{bottom:747.660852px;}
.yc_c00006{bottom:788.790600px;}
.yb_c00006{bottom:829.920369px;}
.ya_c00006{bottom:852.960450px;}
.y9_c00006{bottom:891.030702px;}
.y8_c00006{bottom:932.160450px;}
.y7_c00006{bottom:973.290779px;}
.y6_c00006{bottom:1023.780450px;}
.y5_c00006{bottom:1048.618835px;}
.y4_c00006{bottom:1071.569640px;}
.y3_c00006{bottom:1091.910450px;}
.h1_c00006{height:62.771836px;}
.h3_c00006{height:63.865898px;}
.h7_c00006{height:69.294226px;}
.h8_c00006{height:74.404121px;}
.h6_c00006{height:74.404139px;}
.h4_c00006{height:74.409413px;}
.h5_c00006{height:88.653252px;}
.h2_c00006{height:96.188399px;}
.h9_c00006{height:103.279899px;}
.h0_c00006{height:1263.000000px;}
.w0_c00006{width:892.500000px;}
.x0_c00006{left:0.000000px;}
.x2_c00006{left:82.709532px;}
.x3_c00006{left:135.270000px;}
.x5_c00006{left:161.459230px;}
.x7_c00006{left:174.598484px;}
.x6_c00006{left:227.160481px;}
.x4_c00006{left:240.300090px;}
.x1_c00006{left:441.450000px;}
@media print{
.v0_c00006{vertical-align:0.000000pt;}
.ls1a_c00006{letter-spacing:-0.276874pt;}
.ls27_c00006{letter-spacing:-0.255184pt;}
.ls1e_c00006{letter-spacing:-0.174272pt;}
.ls20_c00006{letter-spacing:-0.136928pt;}
.ls22_c00006{letter-spacing:-0.130516pt;}
.ls1c_c00006{letter-spacing:-0.124480pt;}
.ls26_c00006{letter-spacing:-0.099584pt;}
.ls24_c00006{letter-spacing:-0.074283pt;}
.ls18_c00006{letter-spacing:-0.056016pt;}
.ls25_c00006{letter-spacing:-0.036254pt;}
.ls28_c00006{letter-spacing:-0.024896pt;}
.ls21_c00006{letter-spacing:-0.007251pt;}
.ls19_c00006{letter-spacing:0.000000pt;}
.ls3_c00006{letter-spacing:0.006224pt;}
.ls15_c00006{letter-spacing:0.012448pt;}
.lsf_c00006{letter-spacing:0.014502pt;}
.lsc_c00006{letter-spacing:0.018672pt;}
.lse_c00006{letter-spacing:0.024896pt;}
.ls10_c00006{letter-spacing:0.031120pt;}
.ls4_c00006{letter-spacing:0.037344pt;}
.ls12_c00006{letter-spacing:0.043568pt;}
.ls6_c00006{letter-spacing:0.049792pt;}
.ls7_c00006{letter-spacing:0.050756pt;}
.ls2_c00006{letter-spacing:0.062240pt;}
.ls5_c00006{letter-spacing:0.065258pt;}
.ls1b_c00006{letter-spacing:0.072509pt;}
.lsd_c00006{letter-spacing:0.079760pt;}
.ls13_c00006{letter-spacing:0.080912pt;}
.ls0_c00006{letter-spacing:0.087136pt;}
.lsb_c00006{letter-spacing:0.094261pt;}
.lsa_c00006{letter-spacing:0.099584pt;}
.ls11_c00006{letter-spacing:0.101512pt;}
.ls9_c00006{letter-spacing:0.130704pt;}
.ls8_c00006{letter-spacing:0.152268pt;}
.ls17_c00006{letter-spacing:0.155600pt;}
.ls1_c00006{letter-spacing:0.168048pt;}
.ls23_c00006{letter-spacing:0.180496pt;}
.ls14_c00006{letter-spacing:0.181272pt;}
.ls16_c00006{letter-spacing:0.188523pt;}
.ls1d_c00006{letter-spacing:0.199168pt;}
.ls1f_c00006{letter-spacing:0.311788pt;}
.ws1_c00006{word-spacing:-20.469234pt;}
.ws0_c00006{word-spacing:-20.309715pt;}
.ws2_c00006{word-spacing:-20.150196pt;}
.ws3_c00006{word-spacing:-17.554380pt;}
.ws4_c00006{word-spacing:-15.709376pt;}
.ws5_c00006{word-spacing:-15.553776pt;}
.ws1a_c00006{word-spacing:-0.473024pt;}
.ws8_c00006{word-spacing:-0.379664pt;}
.ws27_c00006{word-spacing:-0.336096pt;}
.wsc_c00006{word-spacing:-0.329872pt;}
.ws15_c00006{word-spacing:-0.317424pt;}
.ws29_c00006{word-spacing:-0.267632pt;}
.ws9_c00006{word-spacing:-0.143152pt;}
.ws12_c00006{word-spacing:-0.118256pt;}
.ws10_c00006{word-spacing:-0.105808pt;}
.ws25_c00006{word-spacing:-0.072509pt;}
.ws23_c00006{word-spacing:-0.056016pt;}
.wsa_c00006{word-spacing:-0.037344pt;}
.ws1c_c00006{word-spacing:-0.024896pt;}
.ws22_c00006{word-spacing:-0.018672pt;}
.ws18_c00006{word-spacing:-0.012448pt;}
.ws1b_c00006{word-spacing:-0.006224pt;}
.ws6_c00006{word-spacing:0.000000pt;}
.ws14_c00006{word-spacing:0.006224pt;}
.ws1d_c00006{word-spacing:0.007251pt;}
.ws26_c00006{word-spacing:0.012448pt;}
.ws13_c00006{word-spacing:0.014502pt;}
.wsb_c00006{word-spacing:0.018672pt;}
.ws1f_c00006{word-spacing:0.029004pt;}
.wsd_c00006{word-spacing:0.043505pt;}
.ws11_c00006{word-spacing:0.058007pt;}
.ws28_c00006{word-spacing:0.079760pt;}
.wse_c00006{word-spacing:0.080912pt;}
.ws16_c00006{word-spacing:0.188523pt;}
.ws1e_c00006{word-spacing:0.192944pt;}
.ws21_c00006{word-spacing:0.209343pt;}
.ws20_c00006{word-spacing:0.362544pt;}
.wsf_c00006{word-spacing:0.377046pt;}
.ws7_c00006{word-spacing:0.411934pt;}
.ws17_c00006{word-spacing:0.413300pt;}
.ws24_c00006{word-spacing:0.464056pt;}
.ws19_c00006{word-spacing:0.558318pt;}
._1_c00006{margin-left:-1.123605pt;}
._0_c00006{width:1.093988pt;}
.fs0_c00006{font-size:62.240000pt;}
.fs1_c00006{font-size:67.530133pt;}
.fs2_c00006{font-size:72.508800pt;}
.y0_c00006{bottom:0.000000pt;}
.y2_c00006{bottom:97.547527pt;}
.y1_c00006{bottom:115.387067pt;}
.y20_c00006{bottom:149.867067pt;}
.y1f_c00006{bottom:186.426807pt;}
.y1e_c00006{bottom:222.347067pt;}
.y1d_c00006{bottom:256.187067pt;}
.y1c_c00006{bottom:292.747067pt;}
.y1b_c00006{bottom:329.147200pt;}
.y1a_c00006{bottom:352.346803pt;}
.y19_c00006{bottom:372.747519pt;}
.y18_c00006{bottom:390.507703pt;}
.y17_c00006{bottom:408.186975pt;}
.y16_c00006{bottom:425.786891pt;}
.y15_c00006{bottom:443.466163pt;}
.y14_c00006{bottom:461.226347pt;}
.y13_c00006{bottom:479.307485pt;}
.y12_c00006{bottom:513.947067pt;}
.y11_c00006{bottom:537.227291pt;}
.y10_c00006{bottom:573.787291pt;}
.yf_c00006{bottom:610.346351pt;}
.ye_c00006{bottom:630.747067pt;}
.yd_c00006{bottom:664.587424pt;}
.yc_c00006{bottom:701.147200pt;}
.yb_c00006{bottom:737.706995pt;}
.ya_c00006{bottom:758.187067pt;}
.y9_c00006{bottom:792.027291pt;}
.y8_c00006{bottom:828.587067pt;}
.y7_c00006{bottom:865.147359pt;}
.y6_c00006{bottom:910.027067pt;}
.y5_c00006{bottom:932.105631pt;}
.y4_c00006{bottom:952.506347pt;}
.y3_c00006{bottom:970.587067pt;}
.h1_c00006{height:55.797187pt;}
.h3_c00006{height:56.769687pt;}
.h7_c00006{height:61.594868pt;}
.h8_c00006{height:66.136996pt;}
.h6_c00006{height:66.137012pt;}
.h4_c00006{height:66.141700pt;}
.h5_c00006{height:78.802891pt;}
.h2_c00006{height:85.500799pt;}
.h9_c00006{height:91.804355pt;}
.h0_c00006{height:1122.666667pt;}
.w0_c00006{width:793.333333pt;}
.x0_c00006{left:0.000000pt;}
.x2_c00006{left:73.519584pt;}
.x3_c00006{left:120.240000pt;}
.x5_c00006{left:143.519316pt;}
.x7_c00006{left:155.198652pt;}
.x6_c00006{left:201.920428pt;}
.x4_c00006{left:213.600080pt;}
.x1_c00006{left:392.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_46a05d406bfdb2a20eb8987c.woff2')format("woff");}.ff1_c00007{font-family:ff1_c00007;line-height:1.106934;font-style:normal;font-weight:normal;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_3cf41584fe7bf8e36a3124b1.woff2')format("woff");}.ff2_c00007{font-family:ff2_c00007;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00007;src:url('chunks/assets/font_8040b84bc1a544266c0a4f6e.woff2')format("woff");}.ff3_c00007{font-family:ff3_c00007;line-height:1.128906;font-style:normal;font-weight:normal;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_71f4419739fd18aeb8508b0e.woff2')format("woff");}.ff4_c00007{font-family:ff4_c00007;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00007;src:url('chunks/assets/font_ecadcac6284f7108fb7a9eb1.woff2')format("woff");}.ff5_c00007{font-family:ff5_c00007;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00007;src:url('chunks/assets/font_7ae5ac72b9bce5dbcf97553f.woff2')format("woff");}.ff6_c00007{font-family:ff6_c00007;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00007{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00007{vertical-align:0.000000px;}
.ls22_c00007{letter-spacing:-0.367076px;}
.ls26_c00007{letter-spacing:-0.245070px;}
.ls30_c00007{letter-spacing:-0.238068px;}
.ls24_c00007{letter-spacing:-0.210060px;}
.ls25_c00007{letter-spacing:-0.187617px;}
.ls27_c00007{letter-spacing:-0.112032px;}
.ls28_c00007{letter-spacing:-0.098028px;}
.ls20_c00007{letter-spacing:-0.063018px;}
.ls31_c00007{letter-spacing:-0.056016px;}
.ls2c_c00007{letter-spacing:-0.049014px;}
.ls2b_c00007{letter-spacing:-0.035010px;}
.ls2d_c00007{letter-spacing:-0.024472px;}
.ls2f_c00007{letter-spacing:-0.014004px;}
.ls23_c00007{letter-spacing:-0.008157px;}
.ls21_c00007{letter-spacing:0.000000px;}
.ls7_c00007{letter-spacing:0.014004px;}
.ls19_c00007{letter-spacing:0.016314px;}
.lse_c00007{letter-spacing:0.021006px;}
.ls1e_c00007{letter-spacing:0.028008px;}
.ls10_c00007{letter-spacing:0.035010px;}
.ls11_c00007{letter-spacing:0.042012px;}
.ls14_c00007{letter-spacing:0.048943px;}
.ls1b_c00007{letter-spacing:0.049014px;}
.ls18_c00007{letter-spacing:0.056016px;}
.ls1f_c00007{letter-spacing:0.057101px;}
.ls16_c00007{letter-spacing:0.063018px;}
.ls12_c00007{letter-spacing:0.065258px;}
.lsa_c00007{letter-spacing:0.070020px;}
.lsc_c00007{letter-spacing:0.073415px;}
.ls4_c00007{letter-spacing:0.077022px;}
.ls0_c00007{letter-spacing:0.084024px;}
.ls1_c00007{letter-spacing:0.089730px;}
.lsd_c00007{letter-spacing:0.091026px;}
.ls17_c00007{letter-spacing:0.097887px;}
.lsb_c00007{letter-spacing:0.098028px;}
.ls13_c00007{letter-spacing:0.105030px;}
.ls5_c00007{letter-spacing:0.106044px;}
.ls9_c00007{letter-spacing:0.119034px;}
.ls3_c00007{letter-spacing:0.126036px;}
.ls1a_c00007{letter-spacing:0.133038px;}
.lsf_c00007{letter-spacing:0.140040px;}
.ls2e_c00007{letter-spacing:0.161046px;}
.ls6_c00007{letter-spacing:0.168048px;}
.ls2_c00007{letter-spacing:0.171302px;}
.ls2a_c00007{letter-spacing:0.175050px;}
.ls1c_c00007{letter-spacing:0.203931px;}
.ls8_c00007{letter-spacing:0.212088px;}
.ls15_c00007{letter-spacing:0.252874px;}
.ls1d_c00007{letter-spacing:0.336096px;}
.ls29_c00007{letter-spacing:0.350761px;}
.sc__c00007{text-shadow:none;}
.sc0_c00007{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00007{-webkit-text-stroke:0px transparent;}
.sc0_c00007{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00007{word-spacing:-70.020000px;}
.ws5_c00007{word-spacing:-23.027889px;}
.ws0_c00007{word-spacing:-22.848429px;}
.ws2_c00007{word-spacing:-22.668970px;}
.ws3_c00007{word-spacing:-22.489511px;}
.ws1_c00007{word-spacing:-22.310051px;}
.ws8_c00007{word-spacing:-16.923834px;}
.ws6_c00007{word-spacing:-16.776792px;}
.ws4_c00007{word-spacing:-16.629750px;}
.wsc_c00007{word-spacing:-0.623178px;}
.ws29_c00007{word-spacing:-0.413118px;}
.wsd_c00007{word-spacing:-0.406116px;}
.ws19_c00007{word-spacing:-0.399114px;}
.ws26_c00007{word-spacing:-0.371106px;}
.ws15_c00007{word-spacing:-0.350100px;}
.ws1c_c00007{word-spacing:-0.294084px;}
.ws30_c00007{word-spacing:-0.114201px;}
.ws10_c00007{word-spacing:-0.089730px;}
.ws2c_c00007{word-spacing:-0.081572px;}
.ws1e_c00007{word-spacing:-0.077022px;}
.wsa_c00007{word-spacing:-0.056016px;}
.ws11_c00007{word-spacing:-0.042012px;}
.ws24_c00007{word-spacing:-0.035010px;}
.ws28_c00007{word-spacing:-0.028008px;}
.ws2b_c00007{word-spacing:-0.021006px;}
.ws18_c00007{word-spacing:-0.014004px;}
.ws17_c00007{word-spacing:-0.007002px;}
.ws9_c00007{word-spacing:0.000000px;}
.wsf_c00007{word-spacing:0.014004px;}
.wse_c00007{word-spacing:0.016314px;}
.ws16_c00007{word-spacing:0.032629px;}
.ws22_c00007{word-spacing:0.042012px;}
.ws20_c00007{word-spacing:0.048943px;}
.ws2e_c00007{word-spacing:0.057101px;}
.ws2d_c00007{word-spacing:0.063018px;}
.ws23_c00007{word-spacing:0.073415px;}
.ws2f_c00007{word-spacing:0.084024px;}
.ws2a_c00007{word-spacing:0.106044px;}
.ws1b_c00007{word-spacing:0.126036px;}
.ws27_c00007{word-spacing:0.146830px;}
.ws25_c00007{word-spacing:0.203931px;}
.wsb_c00007{word-spacing:0.212088px;}
.ws1f_c00007{word-spacing:0.228403px;}
.ws13_c00007{word-spacing:0.238068px;}
.ws12_c00007{word-spacing:0.269189px;}
.ws1d_c00007{word-spacing:0.391548px;}
.ws14_c00007{word-spacing:0.407862px;}
.ws1a_c00007{word-spacing:0.416019px;}
.ws21_c00007{word-spacing:0.505749px;}
._0_c00007{margin-left:-1.330380px;}
._1_c00007{width:1.169334px;}
.fc0_c00007{color:rgb(0,0,0);}
.fs2_c00007{font-size:64.067400px;}
.fs0_c00007{font-size:70.020000px;}
.fs1_c00007{font-size:81.572400px;}
.y0_c00007{bottom:0.000000px;}
.y2_c00007{bottom:109.740968px;}
.y1_c00007{bottom:129.810450px;}
.y1d_c00007{bottom:172.650831px;}
.y1c_c00007{bottom:191.100640px;}
.y1b_c00007{bottom:209.550450px;}
.y1a_c00007{bottom:233.310450px;}
.y19_c00007{bottom:274.440450px;}
.y18_c00007{bottom:315.569645px;}
.y17_c00007{bottom:338.520450px;}
.y16_c00007{bottom:376.590821px;}
.y15_c00007{bottom:399.450600px;}
.y14_c00007{bottom:437.519676px;}
.y13_c00007{bottom:478.740852px;}
.y12_c00007{bottom:519.870702px;}
.y11_c00007{bottom:561.000702px;}
.y10_c00007{bottom:602.130702px;}
.yf_c00007{bottom:643.260450px;}
.ye_c00007{bottom:684.390450px;}
.yd_c00007{bottom:725.520450px;}
.yc_c00007{bottom:766.651188px;}
.yb_c00007{bottom:789.691269px;}
.ya_c00007{bottom:809.580450px;}
.y9_c00007{bottom:847.650450px;}
.y8_c00007{bottom:888.780450px;}
.y7_c00007{bottom:929.910450px;}
.y6_c00007{bottom:971.040600px;}
.y5_c00007{bottom:1012.170450px;}
.y4_c00007{bottom:1053.300450px;}
.y3_c00007{bottom:1094.430477px;}
.h9_c00007{height:57.435423px;}
.h1_c00007{height:62.771836px;}
.h5_c00007{height:63.865898px;}
.h7_c00007{height:74.401469px;}
.h8_c00007{height:74.406173px;}
.h6_c00007{height:81.952119px;}
.h3_c00007{height:88.653252px;}
.h2_c00007{height:103.279791px;}
.h4_c00007{height:103.279899px;}
.h0_c00007{height:1263.000000px;}
.w0_c00007{width:892.500000px;}
.x0_c00007{left:0.000000px;}
.x2_c00007{left:82.709532px;}
.x5_c00007{left:135.270000px;}
.x3_c00007{left:174.600279px;}
.x4_c00007{left:227.160513px;}
.x1_c00007{left:441.450000px;}
@media print{
.v0_c00007{vertical-align:0.000000pt;}
.ls22_c00007{letter-spacing:-0.326290pt;}
.ls26_c00007{letter-spacing:-0.217840pt;}
.ls30_c00007{letter-spacing:-0.211616pt;}
.ls24_c00007{letter-spacing:-0.186720pt;}
.ls25_c00007{letter-spacing:-0.166770pt;}
.ls27_c00007{letter-spacing:-0.099584pt;}
.ls28_c00007{letter-spacing:-0.087136pt;}
.ls20_c00007{letter-spacing:-0.056016pt;}
.ls31_c00007{letter-spacing:-0.049792pt;}
.ls2c_c00007{letter-spacing:-0.043568pt;}
.ls2b_c00007{letter-spacing:-0.031120pt;}
.ls2d_c00007{letter-spacing:-0.021753pt;}
.ls2f_c00007{letter-spacing:-0.012448pt;}
.ls23_c00007{letter-spacing:-0.007251pt;}
.ls21_c00007{letter-spacing:0.000000pt;}
.ls7_c00007{letter-spacing:0.012448pt;}
.ls19_c00007{letter-spacing:0.014502pt;}
.lse_c00007{letter-spacing:0.018672pt;}
.ls1e_c00007{letter-spacing:0.024896pt;}
.ls10_c00007{letter-spacing:0.031120pt;}
.ls11_c00007{letter-spacing:0.037344pt;}
.ls14_c00007{letter-spacing:0.043505pt;}
.ls1b_c00007{letter-spacing:0.043568pt;}
.ls18_c00007{letter-spacing:0.049792pt;}
.ls1f_c00007{letter-spacing:0.050756pt;}
.ls16_c00007{letter-spacing:0.056016pt;}
.ls12_c00007{letter-spacing:0.058007pt;}
.lsa_c00007{letter-spacing:0.062240pt;}
.lsc_c00007{letter-spacing:0.065258pt;}
.ls4_c00007{letter-spacing:0.068464pt;}
.ls0_c00007{letter-spacing:0.074688pt;}
.ls1_c00007{letter-spacing:0.079760pt;}
.lsd_c00007{letter-spacing:0.080912pt;}
.ls17_c00007{letter-spacing:0.087011pt;}
.lsb_c00007{letter-spacing:0.087136pt;}
.ls13_c00007{letter-spacing:0.093360pt;}
.ls5_c00007{letter-spacing:0.094261pt;}
.ls9_c00007{letter-spacing:0.105808pt;}
.ls3_c00007{letter-spacing:0.112032pt;}
.ls1a_c00007{letter-spacing:0.118256pt;}
.lsf_c00007{letter-spacing:0.124480pt;}
.ls2e_c00007{letter-spacing:0.143152pt;}
.ls6_c00007{letter-spacing:0.149376pt;}
.ls2_c00007{letter-spacing:0.152268pt;}
.ls2a_c00007{letter-spacing:0.155600pt;}
.ls1c_c00007{letter-spacing:0.181272pt;}
.ls8_c00007{letter-spacing:0.188523pt;}
.ls15_c00007{letter-spacing:0.224777pt;}
.ls1d_c00007{letter-spacing:0.298752pt;}
.ls29_c00007{letter-spacing:0.311788pt;}
.ws7_c00007{word-spacing:-62.240000pt;}
.ws5_c00007{word-spacing:-20.469234pt;}
.ws0_c00007{word-spacing:-20.309715pt;}
.ws2_c00007{word-spacing:-20.150196pt;}
.ws3_c00007{word-spacing:-19.990676pt;}
.ws1_c00007{word-spacing:-19.831157pt;}
.ws8_c00007{word-spacing:-15.043408pt;}
.ws6_c00007{word-spacing:-14.912704pt;}
.ws4_c00007{word-spacing:-14.782000pt;}
.wsc_c00007{word-spacing:-0.553936pt;}
.ws29_c00007{word-spacing:-0.367216pt;}
.wsd_c00007{word-spacing:-0.360992pt;}
.ws19_c00007{word-spacing:-0.354768pt;}
.ws26_c00007{word-spacing:-0.329872pt;}
.ws15_c00007{word-spacing:-0.311200pt;}
.ws1c_c00007{word-spacing:-0.261408pt;}
.ws30_c00007{word-spacing:-0.101512pt;}
.ws10_c00007{word-spacing:-0.079760pt;}
.ws2c_c00007{word-spacing:-0.072509pt;}
.ws1e_c00007{word-spacing:-0.068464pt;}
.wsa_c00007{word-spacing:-0.049792pt;}
.ws11_c00007{word-spacing:-0.037344pt;}
.ws24_c00007{word-spacing:-0.031120pt;}
.ws28_c00007{word-spacing:-0.024896pt;}
.ws2b_c00007{word-spacing:-0.018672pt;}
.ws18_c00007{word-spacing:-0.012448pt;}
.ws17_c00007{word-spacing:-0.006224pt;}
.ws9_c00007{word-spacing:0.000000pt;}
.wsf_c00007{word-spacing:0.012448pt;}
.wse_c00007{word-spacing:0.014502pt;}
.ws16_c00007{word-spacing:0.029004pt;}
.ws22_c00007{word-spacing:0.037344pt;}
.ws20_c00007{word-spacing:0.043505pt;}
.ws2e_c00007{word-spacing:0.050756pt;}
.ws2d_c00007{word-spacing:0.056016pt;}
.ws23_c00007{word-spacing:0.065258pt;}
.ws2f_c00007{word-spacing:0.074688pt;}
.ws2a_c00007{word-spacing:0.094261pt;}
.ws1b_c00007{word-spacing:0.112032pt;}
.ws27_c00007{word-spacing:0.130516pt;}
.ws25_c00007{word-spacing:0.181272pt;}
.wsb_c00007{word-spacing:0.188523pt;}
.ws1f_c00007{word-spacing:0.203025pt;}
.ws13_c00007{word-spacing:0.211616pt;}
.ws12_c00007{word-spacing:0.239279pt;}
.ws1d_c00007{word-spacing:0.348042pt;}
.ws14_c00007{word-spacing:0.362544pt;}
.ws1a_c00007{word-spacing:0.369795pt;}
.ws21_c00007{word-spacing:0.449555pt;}
._0_c00007{margin-left:-1.182560pt;}
._1_c00007{width:1.039408pt;}
.fs2_c00007{font-size:56.948800pt;}
.fs0_c00007{font-size:62.240000pt;}
.fs1_c00007{font-size:72.508800pt;}
.y0_c00007{bottom:0.000000pt;}
.y2_c00007{bottom:97.547527pt;}
.y1_c00007{bottom:115.387067pt;}
.y1d_c00007{bottom:153.467405pt;}
.y1c_c00007{bottom:169.867236pt;}
.y1b_c00007{bottom:186.267067pt;}
.y1a_c00007{bottom:207.387067pt;}
.y19_c00007{bottom:243.947067pt;}
.y18_c00007{bottom:280.506351pt;}
.y17_c00007{bottom:300.907067pt;}
.y16_c00007{bottom:334.747396pt;}
.y15_c00007{bottom:355.067200pt;}
.y14_c00007{bottom:388.906379pt;}
.y13_c00007{bottom:425.547424pt;}
.y12_c00007{bottom:462.107291pt;}
.y11_c00007{bottom:498.667291pt;}
.y10_c00007{bottom:535.227291pt;}
.yf_c00007{bottom:571.787067pt;}
.ye_c00007{bottom:608.347067pt;}
.yd_c00007{bottom:644.907067pt;}
.yc_c00007{bottom:681.467723pt;}
.yb_c00007{bottom:701.947795pt;}
.ya_c00007{bottom:719.627067pt;}
.y9_c00007{bottom:753.467067pt;}
.y8_c00007{bottom:790.027067pt;}
.y7_c00007{bottom:826.587067pt;}
.y6_c00007{bottom:863.147200pt;}
.y5_c00007{bottom:899.707067pt;}
.y4_c00007{bottom:936.267067pt;}
.y3_c00007{bottom:972.827091pt;}
.h9_c00007{height:51.053709pt;}
.h1_c00007{height:55.797187pt;}
.h5_c00007{height:56.769687pt;}
.h7_c00007{height:66.134639pt;}
.h8_c00007{height:66.138820pt;}
.h6_c00007{height:72.846328pt;}
.h3_c00007{height:78.802891pt;}
.h2_c00007{height:91.804259pt;}
.h4_c00007{height:91.804355pt;}
.h0_c00007{height:1122.666667pt;}
.w0_c00007{width:793.333333pt;}
.x0_c00007{left:0.000000pt;}
.x2_c00007{left:73.519584pt;}
.x5_c00007{left:120.240000pt;}
.x3_c00007{left:155.200248pt;}
.x4_c00007{left:201.920456pt;}
.x1_c00007{left:392.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_19d1e52aa6122c2a72cde78d.woff2')format("woff");}.ff1_c00008{font-family:ff1_c00008;line-height:1.106934;font-style:normal;font-weight:normal;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_0eebae6ebf9f6f0fc16f8d5e.woff2')format("woff");}.ff2_c00008{font-family:ff2_c00008;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00008;src:url('chunks/assets/font_4faaf115162c02b1a4a8e4b7.woff2')format("woff");}.ff3_c00008{font-family:ff3_c00008;line-height:1.128906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00008{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00008{vertical-align:0.000000px;}
.ls28_c00008{letter-spacing:-0.367076px;}
.ls25_c00008{letter-spacing:-0.243108px;}
.ls1f_c00008{letter-spacing:-0.187617px;}
.ls26_c00008{letter-spacing:-0.154044px;}
.ls2b_c00008{letter-spacing:-0.112032px;}
.ls1d_c00008{letter-spacing:-0.098028px;}
.ls21_c00008{letter-spacing:-0.083569px;}
.ls1b_c00008{letter-spacing:-0.063018px;}
.ls20_c00008{letter-spacing:-0.049014px;}
.ls27_c00008{letter-spacing:-0.021006px;}
.ls24_c00008{letter-spacing:-0.008157px;}
.ls1c_c00008{letter-spacing:0.000000px;}
.ls1_c00008{letter-spacing:0.007002px;}
.ls19_c00008{letter-spacing:0.008157px;}
.ls1a_c00008{letter-spacing:0.016314px;}
.lse_c00008{letter-spacing:0.021006px;}
.ls0_c00008{letter-spacing:0.028008px;}
.lsa_c00008{letter-spacing:0.032629px;}
.lsb_c00008{letter-spacing:0.035010px;}
.ls7_c00008{letter-spacing:0.042012px;}
.ls3_c00008{letter-spacing:0.049014px;}
.ls14_c00008{letter-spacing:0.050893px;}
.lsc_c00008{letter-spacing:0.057101px;}
.ls15_c00008{letter-spacing:0.063018px;}
.ls11_c00008{letter-spacing:0.065258px;}
.ls17_c00008{letter-spacing:0.073415px;}
.ls5_c00008{letter-spacing:0.081572px;}
.lsf_c00008{letter-spacing:0.089730px;}
.ls9_c00008{letter-spacing:0.091026px;}
.ls13_c00008{letter-spacing:0.097887px;}
.ls10_c00008{letter-spacing:0.105030px;}
.ls18_c00008{letter-spacing:0.119034px;}
.ls29_c00008{letter-spacing:0.136749px;}
.ls16_c00008{letter-spacing:0.143264px;}
.lsd_c00008{letter-spacing:0.171302px;}
.ls4_c00008{letter-spacing:0.189054px;}
.ls6_c00008{letter-spacing:0.196056px;}
.ls8_c00008{letter-spacing:0.203058px;}
.ls23_c00008{letter-spacing:0.217062px;}
.ls2a_c00008{letter-spacing:0.224064px;}
.ls2_c00008{letter-spacing:0.228403px;}
.ls1e_c00008{letter-spacing:0.350761px;}
.ls22_c00008{letter-spacing:0.379857px;}
.ls12_c00008{letter-spacing:0.503264px;}
.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:-23.027889px;}
.ws2_c00008{word-spacing:-22.848429px;}
.ws3_c00008{word-spacing:-22.668970px;}
.ws1_c00008{word-spacing:-22.489511px;}
.ws5_c00008{word-spacing:-22.310051px;}
.wsa_c00008{word-spacing:-19.675263px;}
.ws9_c00008{word-spacing:-19.667106px;}
.ws8_c00008{word-spacing:-17.848098px;}
.ws6_c00008{word-spacing:-17.813088px;}
.ws7_c00008{word-spacing:-17.673048px;}
.ws4_c00008{word-spacing:-17.631036px;}
.ws13_c00008{word-spacing:-0.532152px;}
.ws10_c00008{word-spacing:-0.518148px;}
.ws1d_c00008{word-spacing:-0.434124px;}
.ws17_c00008{word-spacing:-0.364104px;}
.ws25_c00008{word-spacing:-0.350100px;}
.ws14_c00008{word-spacing:-0.280080px;}
.ws23_c00008{word-spacing:-0.196056px;}
.wse_c00008{word-spacing:-0.106044px;}
.ws28_c00008{word-spacing:-0.091026px;}
.wsf_c00008{word-spacing:-0.021006px;}
.ws12_c00008{word-spacing:-0.014004px;}
.wsb_c00008{word-spacing:0.000000px;}
.ws1a_c00008{word-spacing:0.007002px;}
.ws29_c00008{word-spacing:0.008157px;}
.ws22_c00008{word-spacing:0.015194px;}
.wsd_c00008{word-spacing:0.021006px;}
.ws21_c00008{word-spacing:0.024472px;}
.ws24_c00008{word-spacing:0.040786px;}
.ws1f_c00008{word-spacing:0.049014px;}
.ws27_c00008{word-spacing:0.077022px;}
.ws18_c00008{word-spacing:0.091026px;}
.wsc_c00008{word-spacing:0.126036px;}
.ws16_c00008{word-spacing:0.235511px;}
.ws19_c00008{word-spacing:0.244717px;}
.ws20_c00008{word-spacing:0.252874px;}
.ws1b_c00008{word-spacing:0.391548px;}
.ws1c_c00008{word-spacing:0.395051px;}
.ws11_c00008{word-spacing:0.399705px;}
.ws26_c00008{word-spacing:0.407862px;}
.ws1e_c00008{word-spacing:0.416019px;}
.ws15_c00008{word-spacing:0.448648px;}
._0_c00008{margin-left:-1.204344px;}
._1_c00008{width:1.036296px;}
.fc0_c00008{color:rgb(0,0,0);}
.fs0_c00008{font-size:70.020000px;}
.fs2_c00008{font-size:75.971400px;}
.fs1_c00008{font-size:81.572400px;}
.y0_c00008{bottom:0.000000px;}
.y2_c00008{bottom:109.740968px;}
.y1_c00008{bottom:129.810450px;}
.y22_c00008{bottom:178.951364px;}
.y21_c00008{bottom:198.840544px;}
.y20_c00008{bottom:218.640450px;}
.y1f_c00008{bottom:243.569645px;}
.y1e_c00008{bottom:266.520450px;}
.y1d_c00008{bottom:304.590450px;}
.y1c_c00008{bottom:345.720450px;}
.y1b_c00008{bottom:386.670450px;}
.y1a_c00008{bottom:412.861132px;}
.y19_c00008{bottom:453.720450px;}
.y18_c00008{bottom:479.910450px;}
.y17_c00008{bottom:521.040882px;}
.y16_c00008{bottom:561.540450px;}
.y15_c00008{bottom:586.468834px;}
.y14_c00008{bottom:609.419640px;}
.y13_c00008{bottom:629.759755px;}
.y12_c00008{bottom:668.820450px;}
.y11_c00008{bottom:695.009536px;}
.y10_c00008{bottom:735.419829px;}
.yf_c00008{bottom:760.349766px;}
.ye_c00008{bottom:783.750450px;}
.yd_c00008{bottom:822.360600px;}
.yc_c00008{bottom:847.290600px;}
.yb_c00008{bottom:888.420463px;}
.ya_c00008{bottom:911.460544px;}
.y9_c00008{bottom:931.260450px;}
.y8_c00008{bottom:969.330464px;}
.y7_c00008{bottom:992.281269px;}
.y6_c00008{bottom:1012.170450px;}
.y5_c00008{bottom:1050.333631px;}
.y4_c00008{bottom:1073.282686px;}
.y3_c00008{bottom:1093.171867px;}
.h1_c00008{height:62.771836px;}
.h3_c00008{height:63.865898px;}
.h9_c00008{height:69.294226px;}
.h4_c00008{height:74.390225px;}
.h5_c00008{height:74.402951px;}
.h8_c00008{height:74.405687px;}
.hc_c00008{height:74.406173px;}
.ha_c00008{height:74.409413px;}
.h2_c00008{height:88.653252px;}
.h7_c00008{height:96.188399px;}
.hb_c00008{height:103.278771px;}
.h6_c00008{height:103.279899px;}
.h0_c00008{height:1263.000000px;}
.w0_c00008{width:892.500000px;}
.x0_c00008{left:0.000000px;}
.x2_c00008{left:82.709532px;}
.x5_c00008{left:135.270000px;}
.x3_c00008{left:174.509253px;}
.x4_c00008{left:227.069766px;}
.x6_c00008{left:253.350122px;}
.x1_c00008{left:441.450000px;}
@media print{
.v0_c00008{vertical-align:0.000000pt;}
.ls28_c00008{letter-spacing:-0.326290pt;}
.ls25_c00008{letter-spacing:-0.216096pt;}
.ls1f_c00008{letter-spacing:-0.166770pt;}
.ls26_c00008{letter-spacing:-0.136928pt;}
.ls2b_c00008{letter-spacing:-0.099584pt;}
.ls1d_c00008{letter-spacing:-0.087136pt;}
.ls21_c00008{letter-spacing:-0.074283pt;}
.ls1b_c00008{letter-spacing:-0.056016pt;}
.ls20_c00008{letter-spacing:-0.043568pt;}
.ls27_c00008{letter-spacing:-0.018672pt;}
.ls24_c00008{letter-spacing:-0.007251pt;}
.ls1c_c00008{letter-spacing:0.000000pt;}
.ls1_c00008{letter-spacing:0.006224pt;}
.ls19_c00008{letter-spacing:0.007251pt;}
.ls1a_c00008{letter-spacing:0.014502pt;}
.lse_c00008{letter-spacing:0.018672pt;}
.ls0_c00008{letter-spacing:0.024896pt;}
.lsa_c00008{letter-spacing:0.029004pt;}
.lsb_c00008{letter-spacing:0.031120pt;}
.ls7_c00008{letter-spacing:0.037344pt;}
.ls3_c00008{letter-spacing:0.043568pt;}
.ls14_c00008{letter-spacing:0.045238pt;}
.lsc_c00008{letter-spacing:0.050756pt;}
.ls15_c00008{letter-spacing:0.056016pt;}
.ls11_c00008{letter-spacing:0.058007pt;}
.ls17_c00008{letter-spacing:0.065258pt;}
.ls5_c00008{letter-spacing:0.072509pt;}
.lsf_c00008{letter-spacing:0.079760pt;}
.ls9_c00008{letter-spacing:0.080912pt;}
.ls13_c00008{letter-spacing:0.087011pt;}
.ls10_c00008{letter-spacing:0.093360pt;}
.ls18_c00008{letter-spacing:0.105808pt;}
.ls29_c00008{letter-spacing:0.121554pt;}
.ls16_c00008{letter-spacing:0.127346pt;}
.lsd_c00008{letter-spacing:0.152268pt;}
.ls4_c00008{letter-spacing:0.168048pt;}
.ls6_c00008{letter-spacing:0.174272pt;}
.ls8_c00008{letter-spacing:0.180496pt;}
.ls23_c00008{letter-spacing:0.192944pt;}
.ls2a_c00008{letter-spacing:0.199168pt;}
.ls2_c00008{letter-spacing:0.203025pt;}
.ls1e_c00008{letter-spacing:0.311788pt;}
.ls22_c00008{letter-spacing:0.337651pt;}
.ls12_c00008{letter-spacing:0.447346pt;}
.ws0_c00008{word-spacing:-20.469234pt;}
.ws2_c00008{word-spacing:-20.309715pt;}
.ws3_c00008{word-spacing:-20.150196pt;}
.ws1_c00008{word-spacing:-19.990676pt;}
.ws5_c00008{word-spacing:-19.831157pt;}
.wsa_c00008{word-spacing:-17.489123pt;}
.ws9_c00008{word-spacing:-17.481872pt;}
.ws8_c00008{word-spacing:-15.864976pt;}
.ws6_c00008{word-spacing:-15.833856pt;}
.ws7_c00008{word-spacing:-15.709376pt;}
.ws4_c00008{word-spacing:-15.672032pt;}
.ws13_c00008{word-spacing:-0.473024pt;}
.ws10_c00008{word-spacing:-0.460576pt;}
.ws1d_c00008{word-spacing:-0.385888pt;}
.ws17_c00008{word-spacing:-0.323648pt;}
.ws25_c00008{word-spacing:-0.311200pt;}
.ws14_c00008{word-spacing:-0.248960pt;}
.ws23_c00008{word-spacing:-0.174272pt;}
.wse_c00008{word-spacing:-0.094261pt;}
.ws28_c00008{word-spacing:-0.080912pt;}
.wsf_c00008{word-spacing:-0.018672pt;}
.ws12_c00008{word-spacing:-0.012448pt;}
.wsb_c00008{word-spacing:0.000000pt;}
.ws1a_c00008{word-spacing:0.006224pt;}
.ws29_c00008{word-spacing:0.007251pt;}
.ws22_c00008{word-spacing:0.013506pt;}
.wsd_c00008{word-spacing:0.018672pt;}
.ws21_c00008{word-spacing:0.021753pt;}
.ws24_c00008{word-spacing:0.036254pt;}
.ws1f_c00008{word-spacing:0.043568pt;}
.ws27_c00008{word-spacing:0.068464pt;}
.ws18_c00008{word-spacing:0.080912pt;}
.wsc_c00008{word-spacing:0.112032pt;}
.ws16_c00008{word-spacing:0.209343pt;}
.ws19_c00008{word-spacing:0.217526pt;}
.ws20_c00008{word-spacing:0.224777pt;}
.ws1b_c00008{word-spacing:0.348042pt;}
.ws1c_c00008{word-spacing:0.351157pt;}
.ws11_c00008{word-spacing:0.355293pt;}
.ws26_c00008{word-spacing:0.362544pt;}
.ws1e_c00008{word-spacing:0.369795pt;}
.ws15_c00008{word-spacing:0.398798pt;}
._0_c00008{margin-left:-1.070528pt;}
._1_c00008{width:0.921152pt;}
.fs0_c00008{font-size:62.240000pt;}
.fs2_c00008{font-size:67.530133pt;}
.fs1_c00008{font-size:72.508800pt;}
.y0_c00008{bottom:0.000000pt;}
.y2_c00008{bottom:97.547527pt;}
.y1_c00008{bottom:115.387067pt;}
.y22_c00008{bottom:159.067879pt;}
.y21_c00008{bottom:176.747151pt;}
.y20_c00008{bottom:194.347067pt;}
.y1f_c00008{bottom:216.506351pt;}
.y1e_c00008{bottom:236.907067pt;}
.y1d_c00008{bottom:270.747067pt;}
.y1c_c00008{bottom:307.307067pt;}
.y1b_c00008{bottom:343.707067pt;}
.y1a_c00008{bottom:366.987673pt;}
.y19_c00008{bottom:403.307067pt;}
.y18_c00008{bottom:426.587067pt;}
.y17_c00008{bottom:463.147451pt;}
.y16_c00008{bottom:499.147067pt;}
.y15_c00008{bottom:521.305631pt;}
.y14_c00008{bottom:541.706347pt;}
.y13_c00008{bottom:559.786449pt;}
.y12_c00008{bottom:594.507067pt;}
.y11_c00008{bottom:617.786255pt;}
.y10_c00008{bottom:653.706515pt;}
.yf_c00008{bottom:675.866459pt;}
.ye_c00008{bottom:696.667067pt;}
.yd_c00008{bottom:730.987200pt;}
.yc_c00008{bottom:753.147200pt;}
.yb_c00008{bottom:789.707079pt;}
.ya_c00008{bottom:810.187151pt;}
.y9_c00008{bottom:827.787067pt;}
.y8_c00008{bottom:861.627079pt;}
.y7_c00008{bottom:882.027795pt;}
.y6_c00008{bottom:899.707067pt;}
.y5_c00008{bottom:933.629895pt;}
.y4_c00008{bottom:954.029055pt;}
.y3_c00008{bottom:971.708327pt;}
.h1_c00008{height:55.797187pt;}
.h3_c00008{height:56.769687pt;}
.h9_c00008{height:61.594868pt;}
.h4_c00008{height:66.124644pt;}
.h5_c00008{height:66.135956pt;}
.h8_c00008{height:66.138388pt;}
.hc_c00008{height:66.138820pt;}
.ha_c00008{height:66.141700pt;}
.h2_c00008{height:78.802891pt;}
.h7_c00008{height:85.500799pt;}
.hb_c00008{height:91.803352pt;}
.h6_c00008{height:91.804355pt;}
.h0_c00008{height:1122.666667pt;}
.w0_c00008{width:793.333333pt;}
.x0_c00008{left:0.000000pt;}
.x2_c00008{left:73.519584pt;}
.x5_c00008{left:120.240000pt;}
.x3_c00008{left:155.119336pt;}
.x4_c00008{left:201.839792pt;}
.x6_c00008{left:225.200108pt;}
.x1_c00008{left:392.400000pt;}
}





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

.ir_c00009:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00009{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00009;src:url('chunks/assets/font_46a05d406bfdb2a20eb8987c.woff2')format("woff");}.ff1_c00009{font-family:ff1_c00009;line-height:1.106934;font-style:normal;font-weight:normal;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_d4038216d3550efe1cb5ac9e.woff2')format("woff");}.ff2_c00009{font-family:ff2_c00009;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00009;src:url('chunks/assets/font_b39a5c00ea373254ae46949f.woff2')format("woff");}.ff3_c00009{font-family:ff3_c00009;line-height:1.128906;font-style:normal;font-weight:normal;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_71f4419739fd18aeb8508b0e.woff2')format("woff");}.ff4_c00009{font-family:ff4_c00009;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00009{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00009{vertical-align:0.000000px;}
.ls17_c00009{letter-spacing:-0.367076px;}
.ls18_c00009{letter-spacing:-0.196056px;}
.ls1b_c00009{letter-spacing:-0.187617px;}
.ls20_c00009{letter-spacing:-0.122359px;}
.ls16_c00009{letter-spacing:-0.073415px;}
.ls1c_c00009{letter-spacing:-0.070020px;}
.ls13_c00009{letter-spacing:-0.063018px;}
.ls1d_c00009{letter-spacing:-0.056016px;}
.ls1a_c00009{letter-spacing:-0.014004px;}
.ls19_c00009{letter-spacing:-0.008157px;}
.ls14_c00009{letter-spacing:0.000000px;}
.ls6_c00009{letter-spacing:0.014004px;}
.lsc_c00009{letter-spacing:0.021006px;}
.lsf_c00009{letter-spacing:0.032629px;}
.lsa_c00009{letter-spacing:0.035010px;}
.ls1_c00009{letter-spacing:0.042012px;}
.ls2_c00009{letter-spacing:0.048943px;}
.ls5_c00009{letter-spacing:0.057101px;}
.ls3_c00009{letter-spacing:0.070020px;}
.ls4_c00009{letter-spacing:0.073415px;}
.ls8_c00009{letter-spacing:0.081572px;}
.ls15_c00009{letter-spacing:0.098763px;}
.lse_c00009{letter-spacing:0.105030px;}
.ls0_c00009{letter-spacing:0.112032px;}
.ls10_c00009{letter-spacing:0.114201px;}
.lsb_c00009{letter-spacing:0.138673px;}
.ls7_c00009{letter-spacing:0.171302px;}
.ls1e_c00009{letter-spacing:0.189929px;}
.ls11_c00009{letter-spacing:0.203931px;}
.lsd_c00009{letter-spacing:0.210060px;}
.ls9_c00009{letter-spacing:0.217062px;}
.ls1f_c00009{letter-spacing:0.350100px;}
.ls12_c00009{letter-spacing:0.350761px;}
.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;}
}
.ws4_c00009{word-spacing:-23.027889px;}
.ws3_c00009{word-spacing:-22.848429px;}
.ws1_c00009{word-spacing:-22.668970px;}
.ws2_c00009{word-spacing:-22.489511px;}
.ws0_c00009{word-spacing:-22.310051px;}
.wsc_c00009{word-spacing:-0.399114px;}
.wsa_c00009{word-spacing:-0.371106px;}
.wsb_c00009{word-spacing:-0.293661px;}
.wse_c00009{word-spacing:-0.273078px;}
.ws8_c00009{word-spacing:-0.084024px;}
.ws19_c00009{word-spacing:-0.077022px;}
.ws20_c00009{word-spacing:-0.065258px;}
.ws1c_c00009{word-spacing:-0.040786px;}
.ws11_c00009{word-spacing:-0.037986px;}
.ws15_c00009{word-spacing:-0.016314px;}
.ws12_c00009{word-spacing:-0.014004px;}
.ws14_c00009{word-spacing:-0.007002px;}
.ws5_c00009{word-spacing:0.000000px;}
.ws16_c00009{word-spacing:0.007002px;}
.ws1d_c00009{word-spacing:0.008157px;}
.ws10_c00009{word-spacing:0.014004px;}
.ws7_c00009{word-spacing:0.028008px;}
.ws6_c00009{word-spacing:0.053180px;}
.ws1a_c00009{word-spacing:0.084024px;}
.ws13_c00009{word-spacing:0.220245px;}
.ws1b_c00009{word-spacing:0.228403px;}
.wsf_c00009{word-spacing:0.244717px;}
.ws17_c00009{word-spacing:0.252874px;}
.ws1f_c00009{word-spacing:0.277346px;}
.ws18_c00009{word-spacing:0.399705px;}
.wsd_c00009{word-spacing:0.407862px;}
.ws9_c00009{word-spacing:0.554692px;}
.ws1e_c00009{word-spacing:0.652579px;}
._0_c00009{margin-left:-1.230737px;}
._1_c00009{width:1.176336px;}
._2_c00009{width:2.342262px;}
.fc0_c00009{color:rgb(0,0,0);}
.fs3_c00009{font-size:64.067400px;}
.fs0_c00009{font-size:70.020000px;}
.fs1_c00009{font-size:75.971400px;}
.fs2_c00009{font-size:81.572400px;}
.y0_c00009{bottom:0.000000px;}
.y2_c00009{bottom:109.740968px;}
.y1_c00009{bottom:129.810450px;}
.y1a_c00009{bottom:384.781016px;}
.y19_c00009{bottom:408.000600px;}
.y18_c00009{bottom:430.950600px;}
.y17_c00009{bottom:451.470475px;}
.y16_c00009{bottom:475.140746px;}
.y15_c00009{bottom:498.270600px;}
.y14_c00009{bottom:521.670450px;}
.y13_c00009{bottom:542.550450px;}
.y12_c00009{bottom:566.130450px;}
.y11_c00009{bottom:607.259770px;}
.y10_c00009{bottom:630.210576px;}
.yf_c00009{bottom:668.280450px;}
.ye_c00009{bottom:709.410450px;}
.yd_c00009{bottom:750.540450px;}
.yc_c00009{bottom:790.770450px;}
.yb_c00009{bottom:814.259766px;}
.ya_c00009{bottom:837.659755px;}
.y9_c00009{bottom:876.720450px;}
.y8_c00009{bottom:902.910450px;}
.y7_c00009{bottom:944.040600px;}
.y6_c00009{bottom:985.170450px;}
.y5_c00009{bottom:1026.300450px;}
.y4_c00009{bottom:1066.530450px;}
.y3_c00009{bottom:1090.020450px;}
.h3_c00009{height:58.436476px;}
.h1_c00009{height:62.771836px;}
.h8_c00009{height:74.402951px;}
.h6_c00009{height:74.405669px;}
.h5_c00009{height:74.405687px;}
.h4_c00009{height:88.653252px;}
.h2_c00009{height:96.188399px;}
.h7_c00009{height:103.279899px;}
.h0_c00009{height:1263.000000px;}
.w0_c00009{width:892.500000px;}
.x0_c00009{left:0.000000px;}
.x2_c00009{left:82.709645px;}
.x3_c00009{left:135.270000px;}
.x5_c00009{left:174.600265px;}
.x4_c00009{left:240.299978px;}
.x1_c00009{left:436.680000px;}
@media print{
.v0_c00009{vertical-align:0.000000pt;}
.ls17_c00009{letter-spacing:-0.326290pt;}
.ls18_c00009{letter-spacing:-0.174272pt;}
.ls1b_c00009{letter-spacing:-0.166770pt;}
.ls20_c00009{letter-spacing:-0.108763pt;}
.ls16_c00009{letter-spacing:-0.065258pt;}
.ls1c_c00009{letter-spacing:-0.062240pt;}
.ls13_c00009{letter-spacing:-0.056016pt;}
.ls1d_c00009{letter-spacing:-0.049792pt;}
.ls1a_c00009{letter-spacing:-0.012448pt;}
.ls19_c00009{letter-spacing:-0.007251pt;}
.ls14_c00009{letter-spacing:0.000000pt;}
.ls6_c00009{letter-spacing:0.012448pt;}
.lsc_c00009{letter-spacing:0.018672pt;}
.lsf_c00009{letter-spacing:0.029004pt;}
.lsa_c00009{letter-spacing:0.031120pt;}
.ls1_c00009{letter-spacing:0.037344pt;}
.ls2_c00009{letter-spacing:0.043505pt;}
.ls5_c00009{letter-spacing:0.050756pt;}
.ls3_c00009{letter-spacing:0.062240pt;}
.ls4_c00009{letter-spacing:0.065258pt;}
.ls8_c00009{letter-spacing:0.072509pt;}
.ls15_c00009{letter-spacing:0.087789pt;}
.lse_c00009{letter-spacing:0.093360pt;}
.ls0_c00009{letter-spacing:0.099584pt;}
.ls10_c00009{letter-spacing:0.101512pt;}
.lsb_c00009{letter-spacing:0.123265pt;}
.ls7_c00009{letter-spacing:0.152268pt;}
.ls1e_c00009{letter-spacing:0.168825pt;}
.ls11_c00009{letter-spacing:0.181272pt;}
.lsd_c00009{letter-spacing:0.186720pt;}
.ls9_c00009{letter-spacing:0.192944pt;}
.ls1f_c00009{letter-spacing:0.311200pt;}
.ls12_c00009{letter-spacing:0.311788pt;}
.ws4_c00009{word-spacing:-20.469234pt;}
.ws3_c00009{word-spacing:-20.309715pt;}
.ws1_c00009{word-spacing:-20.150196pt;}
.ws2_c00009{word-spacing:-19.990676pt;}
.ws0_c00009{word-spacing:-19.831157pt;}
.wsc_c00009{word-spacing:-0.354768pt;}
.wsa_c00009{word-spacing:-0.329872pt;}
.wsb_c00009{word-spacing:-0.261032pt;}
.wse_c00009{word-spacing:-0.242736pt;}
.ws8_c00009{word-spacing:-0.074688pt;}
.ws19_c00009{word-spacing:-0.068464pt;}
.ws20_c00009{word-spacing:-0.058007pt;}
.ws1c_c00009{word-spacing:-0.036254pt;}
.ws11_c00009{word-spacing:-0.033765pt;}
.ws15_c00009{word-spacing:-0.014502pt;}
.ws12_c00009{word-spacing:-0.012448pt;}
.ws14_c00009{word-spacing:-0.006224pt;}
.ws5_c00009{word-spacing:0.000000pt;}
.ws16_c00009{word-spacing:0.006224pt;}
.ws1d_c00009{word-spacing:0.007251pt;}
.ws10_c00009{word-spacing:0.012448pt;}
.ws7_c00009{word-spacing:0.024896pt;}
.ws6_c00009{word-spacing:0.047271pt;}
.ws1a_c00009{word-spacing:0.074688pt;}
.ws13_c00009{word-spacing:0.195774pt;}
.ws1b_c00009{word-spacing:0.203025pt;}
.wsf_c00009{word-spacing:0.217526pt;}
.ws17_c00009{word-spacing:0.224777pt;}
.ws1f_c00009{word-spacing:0.246530pt;}
.ws18_c00009{word-spacing:0.355293pt;}
.wsd_c00009{word-spacing:0.362544pt;}
.ws9_c00009{word-spacing:0.493060pt;}
.ws1e_c00009{word-spacing:0.580070pt;}
._0_c00009{margin-left:-1.093988pt;}
._1_c00009{width:1.045632pt;}
._2_c00009{width:2.082011pt;}
.fs3_c00009{font-size:56.948800pt;}
.fs0_c00009{font-size:62.240000pt;}
.fs1_c00009{font-size:67.530133pt;}
.fs2_c00009{font-size:72.508800pt;}
.y0_c00009{bottom:0.000000pt;}
.y2_c00009{bottom:97.547527pt;}
.y1_c00009{bottom:115.387067pt;}
.y1a_c00009{bottom:342.027570pt;}
.y19_c00009{bottom:362.667200pt;}
.y18_c00009{bottom:383.067200pt;}
.y17_c00009{bottom:401.307089pt;}
.y16_c00009{bottom:422.347330pt;}
.y15_c00009{bottom:442.907200pt;}
.y14_c00009{bottom:463.707067pt;}
.y13_c00009{bottom:482.267067pt;}
.y12_c00009{bottom:503.227067pt;}
.y11_c00009{bottom:539.786463pt;}
.y10_c00009{bottom:560.187179pt;}
.yf_c00009{bottom:594.027067pt;}
.ye_c00009{bottom:630.587067pt;}
.yd_c00009{bottom:667.147067pt;}
.yc_c00009{bottom:702.907067pt;}
.yb_c00009{bottom:723.786459pt;}
.ya_c00009{bottom:744.586449pt;}
.y9_c00009{bottom:779.307067pt;}
.y8_c00009{bottom:802.587067pt;}
.y7_c00009{bottom:839.147200pt;}
.y6_c00009{bottom:875.707067pt;}
.y5_c00009{bottom:912.267067pt;}
.y4_c00009{bottom:948.027067pt;}
.y3_c00009{bottom:968.907067pt;}
.h3_c00009{height:51.943534pt;}
.h1_c00009{height:55.797187pt;}
.h8_c00009{height:66.135956pt;}
.h6_c00009{height:66.138372pt;}
.h5_c00009{height:66.138388pt;}
.h4_c00009{height:78.802891pt;}
.h2_c00009{height:85.500799pt;}
.h7_c00009{height:91.804355pt;}
.h0_c00009{height:1122.666667pt;}
.w0_c00009{width:793.333333pt;}
.x0_c00009{left:0.000000pt;}
.x2_c00009{left:73.519684pt;}
.x3_c00009{left:120.240000pt;}
.x5_c00009{left:155.200236pt;}
.x4_c00009{left:213.599980pt;}
.x1_c00009{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6a059041e233546a31b9b85b.woff2')format("woff");}.ff1_c00010{font-family:ff1_c00010;line-height:1.106934;font-style:normal;font-weight:normal;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_dbcc47748487ce512537f416.woff2')format("woff");}.ff2_c00010{font-family:ff2_c00010;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00010;src:url('chunks/assets/font_d088502d9f1cea7dddb7eb51.woff2')format("woff");}.ff3_c00010{font-family:ff3_c00010;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00010{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00010{vertical-align:0.000000px;}
.ls4_c00010{letter-spacing:-0.106360px;}
.ls2_c00010{letter-spacing:-0.063018px;}
.lsb_c00010{letter-spacing:-0.042012px;}
.ls5_c00010{letter-spacing:-0.035010px;}
.ls9_c00010{letter-spacing:-0.028008px;}
.ls6_c00010{letter-spacing:-0.021006px;}
.ls7_c00010{letter-spacing:-0.014004px;}
.ls8_c00010{letter-spacing:-0.007002px;}
.ls3_c00010{letter-spacing:0.000000px;}
.ls0_c00010{letter-spacing:0.007002px;}
.ls1_c00010{letter-spacing:0.035010px;}
.lsa_c00010{letter-spacing:0.707202px;}
.sc__c00010{text-shadow:none;}
.sc0_c00010{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00010{-webkit-text-stroke:0px transparent;}
.sc0_c00010{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00010{word-spacing:0.000000px;}
.ws1c_c00010{word-spacing:0.007002px;}
.ws10_c00010{word-spacing:0.049014px;}
.ws1a_c00010{word-spacing:1.092312px;}
.ws16_c00010{word-spacing:1.792512px;}
.ws1d_c00010{word-spacing:1.813518px;}
.ws1e_c00010{word-spacing:2.163618px;}
.ws15_c00010{word-spacing:2.184624px;}
.ws22_c00010{word-spacing:2.905830px;}
.ws1b_c00010{word-spacing:3.241926px;}
.wsc_c00010{word-spacing:3.599028px;}
.ws5_c00010{word-spacing:4.327236px;}
.wsa_c00010{word-spacing:5.384538px;}
.ws9_c00010{word-spacing:6.119748px;}
.ws2_c00010{word-spacing:6.483852px;}
.ws1_c00010{word-spacing:6.497856px;}
.ws3_c00010{word-spacing:6.819948px;}
.wse_c00010{word-spacing:7.198056px;}
.ws17_c00010{word-spacing:7.919262px;}
.wsf_c00010{word-spacing:8.283366px;}
.ws6_c00010{word-spacing:10.460988px;}
.ws1f_c00010{word-spacing:11.889396px;}
.ws20_c00010{word-spacing:12.610602px;}
.ws21_c00010{word-spacing:12.939696px;}
.ws11_c00010{word-spacing:14.389110px;}
.ws18_c00010{word-spacing:15.502428px;}
.ws19_c00010{word-spacing:15.831522px;}
.ws8_c00010{word-spacing:17.231922px;}
.ws7_c00010{word-spacing:17.280936px;}
.ws4_c00010{word-spacing:18.366246px;}
.ws12_c00010{word-spacing:19.416546px;}
.ws13_c00010{word-spacing:19.794654px;}
.ws14_c00010{word-spacing:19.815660px;}
.wsb_c00010{word-spacing:23.757786px;}
.wsd_c00010{word-spacing:38.903112px;}
._1_c00010{margin-left:-1.071306px;}
._0_c00010{width:1.078308px;}
.fc0_c00010{color:rgb(0,0,0);}
.fs0_c00010{font-size:70.020000px;}
.fs1_c00010{font-size:75.971400px;}
.y0_c00010{bottom:0.000000px;}
.y2_c00010{bottom:109.740968px;}
.y1_c00010{bottom:129.810450px;}
.y22_c00010{bottom:160.942958px;}
.y21_c00010{bottom:191.182845px;}
.y20_c00010{bottom:221.333457px;}
.y1f_c00010{bottom:251.573345px;}
.y1e_c00010{bottom:281.723957px;}
.y1d_c00010{bottom:311.963844px;}
.y1c_c00010{bottom:342.114456px;}
.y1b_c00010{bottom:372.354344px;}
.y1a_c00010{bottom:402.504956px;}
.y19_c00010{bottom:432.655568px;}
.y18_c00010{bottom:462.895455px;}
.y17_c00010{bottom:493.046067px;}
.y16_c00010{bottom:523.285955px;}
.y15_c00010{bottom:553.436567px;}
.y14_c00010{bottom:583.676454px;}
.y13_c00010{bottom:613.827066px;}
.y12_c00010{bottom:644.066954px;}
.y11_c00010{bottom:674.217566px;}
.y10_c00010{bottom:704.457453px;}
.yf_c00010{bottom:734.608065px;}
.ye_c00010{bottom:764.847953px;}
.yd_c00010{bottom:794.998565px;}
.yc_c00010{bottom:825.238452px;}
.yb_c00010{bottom:855.389064px;}
.ya_c00010{bottom:885.628952px;}
.y9_c00010{bottom:915.779563px;}
.y8_c00010{bottom:946.019451px;}
.y7_c00010{bottom:976.170063px;}
.y6_c00010{bottom:1006.409951px;}
.y5_c00010{bottom:1036.560563px;}
.y4_c00010{bottom:1066.800450px;}
.y3_c00010{bottom:1091.550450px;}
.h1_c00010{height:62.771836px;}
.h3_c00010{height:63.216299px;}
.h2_c00010{height:68.589413px;}
.h0_c00010{height:1263.000000px;}
.w0_c00010{width:892.500000px;}
.x0_c00010{left:0.000000px;}
.x2_c00010{left:82.709645px;}
.x1_c00010{left:436.680000px;}
@media print{
.v0_c00010{vertical-align:0.000000pt;}
.ls4_c00010{letter-spacing:-0.094542pt;}
.ls2_c00010{letter-spacing:-0.056016pt;}
.lsb_c00010{letter-spacing:-0.037344pt;}
.ls5_c00010{letter-spacing:-0.031120pt;}
.ls9_c00010{letter-spacing:-0.024896pt;}
.ls6_c00010{letter-spacing:-0.018672pt;}
.ls7_c00010{letter-spacing:-0.012448pt;}
.ls8_c00010{letter-spacing:-0.006224pt;}
.ls3_c00010{letter-spacing:0.000000pt;}
.ls0_c00010{letter-spacing:0.006224pt;}
.ls1_c00010{letter-spacing:0.031120pt;}
.lsa_c00010{letter-spacing:0.628624pt;}
.ws0_c00010{word-spacing:0.000000pt;}
.ws1c_c00010{word-spacing:0.006224pt;}
.ws10_c00010{word-spacing:0.043568pt;}
.ws1a_c00010{word-spacing:0.970944pt;}
.ws16_c00010{word-spacing:1.593344pt;}
.ws1d_c00010{word-spacing:1.612016pt;}
.ws1e_c00010{word-spacing:1.923216pt;}
.ws15_c00010{word-spacing:1.941888pt;}
.ws22_c00010{word-spacing:2.582960pt;}
.ws1b_c00010{word-spacing:2.881712pt;}
.wsc_c00010{word-spacing:3.199136pt;}
.ws5_c00010{word-spacing:3.846432pt;}
.wsa_c00010{word-spacing:4.786256pt;}
.ws9_c00010{word-spacing:5.439776pt;}
.ws2_c00010{word-spacing:5.763424pt;}
.ws1_c00010{word-spacing:5.775872pt;}
.ws3_c00010{word-spacing:6.062176pt;}
.wse_c00010{word-spacing:6.398272pt;}
.ws17_c00010{word-spacing:7.039344pt;}
.wsf_c00010{word-spacing:7.362992pt;}
.ws6_c00010{word-spacing:9.298656pt;}
.ws1f_c00010{word-spacing:10.568352pt;}
.ws20_c00010{word-spacing:11.209424pt;}
.ws21_c00010{word-spacing:11.501952pt;}
.ws11_c00010{word-spacing:12.790320pt;}
.ws18_c00010{word-spacing:13.779936pt;}
.ws19_c00010{word-spacing:14.072464pt;}
.ws8_c00010{word-spacing:15.317264pt;}
.ws7_c00010{word-spacing:15.360832pt;}
.ws4_c00010{word-spacing:16.325552pt;}
.ws12_c00010{word-spacing:17.259152pt;}
.ws13_c00010{word-spacing:17.595248pt;}
.ws14_c00010{word-spacing:17.613920pt;}
.wsb_c00010{word-spacing:21.118032pt;}
.wsd_c00010{word-spacing:34.580544pt;}
._1_c00010{margin-left:-0.952272pt;}
._0_c00010{width:0.958496pt;}
.fs0_c00010{font-size:62.240000pt;}
.fs1_c00010{font-size:67.530133pt;}
.y0_c00010{bottom:0.000000pt;}
.y2_c00010{bottom:97.547527pt;}
.y1_c00010{bottom:115.387067pt;}
.y22_c00010{bottom:143.060407pt;}
.y21_c00010{bottom:169.940307pt;}
.y20_c00010{bottom:196.740851pt;}
.y1f_c00010{bottom:223.620751pt;}
.y1e_c00010{bottom:250.421295pt;}
.y1d_c00010{bottom:277.301195pt;}
.y1c_c00010{bottom:304.101739pt;}
.y1b_c00010{bottom:330.981639pt;}
.y1a_c00010{bottom:357.782183pt;}
.y19_c00010{bottom:384.582727pt;}
.y18_c00010{bottom:411.462627pt;}
.y17_c00010{bottom:438.263171pt;}
.y16_c00010{bottom:465.143071pt;}
.y15_c00010{bottom:491.943615pt;}
.y14_c00010{bottom:518.823515pt;}
.y13_c00010{bottom:545.624059pt;}
.y12_c00010{bottom:572.503959pt;}
.y11_c00010{bottom:599.304503pt;}
.y10_c00010{bottom:626.184403pt;}
.yf_c00010{bottom:652.984947pt;}
.ye_c00010{bottom:679.864847pt;}
.yd_c00010{bottom:706.665391pt;}
.yc_c00010{bottom:733.545291pt;}
.yb_c00010{bottom:760.345835pt;}
.ya_c00010{bottom:787.225735pt;}
.y9_c00010{bottom:814.026279pt;}
.y8_c00010{bottom:840.906179pt;}
.y7_c00010{bottom:867.706723pt;}
.y6_c00010{bottom:894.586623pt;}
.y5_c00010{bottom:921.387167pt;}
.y4_c00010{bottom:948.267067pt;}
.y3_c00010{bottom:970.267067pt;}
.h1_c00010{height:55.797187pt;}
.h3_c00010{height:56.192266pt;}
.h2_c00010{height:60.968367pt;}
.h0_c00010{height:1122.666667pt;}
.w0_c00010{width:793.333333pt;}
.x0_c00010{left:0.000000pt;}
.x2_c00010{left:73.519684pt;}
.x1_c00010{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_eddfa0bbd387535c5537c1dd.woff2')format("woff");}.ff1_c00011{font-family:ff1_c00011;line-height:1.106934;font-style:normal;font-weight:normal;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_fe51b83617b765f7b626e064.woff2')format("woff");}.ff2_c00011{font-family:ff2_c00011;line-height:1.104492;font-style:normal;font-weight:normal;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_a12926c207225281a226b5d2.woff2')format("woff");}.ff3_c00011{font-family:ff3_c00011;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00011;src:url('chunks/assets/font_abd86cd35ffd8f422ede4538.woff2')format("woff");}.ff4_c00011{font-family:ff4_c00011;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00011;src:url('chunks/assets/font_bf7c80c9ac376e69e0d39e1c.woff2')format("woff");}.ff5_c00011{font-family:ff5_c00011;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00011;src:url('chunks/assets/font_2f2d138ff74aef5136b3b86e.woff2')format("woff");}.ff6_c00011{font-family:ff6_c00011;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00011{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00011{vertical-align:-14.760000px;}
.v0_c00011{vertical-align:0.000000px;}
.v1_c00011{vertical-align:32.044032px;}
.ls13_c00011{letter-spacing:-0.526198px;}
.ls16_c00011{letter-spacing:-0.304025px;}
.ls10_c00011{letter-spacing:-0.268945px;}
.ls12_c00011{letter-spacing:-0.216326px;}
.ls14_c00011{letter-spacing:-0.128626px;}
.lsc_c00011{letter-spacing:-0.070020px;}
.ls6_c00011{letter-spacing:-0.063018px;}
.ls15_c00011{letter-spacing:-0.052620px;}
.lsa_c00011{letter-spacing:-0.049014px;}
.lsf_c00011{letter-spacing:-0.042012px;}
.ls9_c00011{letter-spacing:-0.035010px;}
.lsb_c00011{letter-spacing:-0.028008px;}
.ls8_c00011{letter-spacing:-0.021006px;}
.lse_c00011{letter-spacing:-0.014004px;}
.lsd_c00011{letter-spacing:-0.007002px;}
.ls7_c00011{letter-spacing:0.000000px;}
.ls5_c00011{letter-spacing:0.005847px;}
.ls3_c00011{letter-spacing:0.007002px;}
.ls1_c00011{letter-spacing:0.014004px;}
.ls0_c00011{letter-spacing:0.021006px;}
.ls2_c00011{letter-spacing:0.031306px;}
.ls11_c00011{letter-spacing:0.192939px;}
.ls4_c00011{letter-spacing:0.362492px;}
.sc__c00011{text-shadow:none;}
.sc0_c00011{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00011{-webkit-text-stroke:0px transparent;}
.sc0_c00011{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00011{word-spacing:-58.466400px;}
.ws0_c00011{word-spacing:-19.395540px;}
.ws1_c00011{word-spacing:-10.473259px;}
.ws27_c00011{word-spacing:-0.350798px;}
.ws3_c00011{word-spacing:0.000000px;}
.wsb_c00011{word-spacing:0.014004px;}
.ws28_c00011{word-spacing:0.315719px;}
.ws18_c00011{word-spacing:0.336096px;}
.ws21_c00011{word-spacing:0.385110px;}
.ws8_c00011{word-spacing:0.693198px;}
.ws1b_c00011{word-spacing:0.742212px;}
.ws1f_c00011{word-spacing:1.057302px;}
.ws1e_c00011{word-spacing:1.071306px;}
.ws4_c00011{word-spacing:1.085310px;}
.ws9_c00011{word-spacing:1.099314px;}
.wsc_c00011{word-spacing:2.513718px;}
.ws17_c00011{word-spacing:2.527722px;}
.wsd_c00011{word-spacing:3.248928px;}
.ws1c_c00011{word-spacing:3.578022px;}
.ws1d_c00011{word-spacing:3.984138px;}
.ws14_c00011{word-spacing:4.320234px;}
.ws16_c00011{word-spacing:5.762646px;}
.ws5_c00011{word-spacing:6.441840px;}
.ws23_c00011{word-spacing:6.659323px;}
.ws1a_c00011{word-spacing:6.826950px;}
.ws26_c00011{word-spacing:6.980888px;}
.ws22_c00011{word-spacing:7.121208px;}
.ws19_c00011{word-spacing:7.198056px;}
.ws25_c00011{word-spacing:7.378460px;}
.ws24_c00011{word-spacing:7.431079px;}
.ws6_c00011{word-spacing:10.804086px;}
.ws7_c00011{word-spacing:11.175192px;}
.ws20_c00011{word-spacing:11.511288px;}
.ws13_c00011{word-spacing:17.301942px;}
.wse_c00011{word-spacing:17.659044px;}
.wsa_c00011{word-spacing:21.636180px;}
.ws12_c00011{word-spacing:23.379678px;}
.ws11_c00011{word-spacing:23.743782px;}
.ws10_c00011{word-spacing:32.762358px;}
.wsf_c00011{word-spacing:32.776362px;}
.ws15_c00011{word-spacing:42.131034px;}
._3_c00011{margin-left:-2.711772px;}
._0_c00011{margin-left:-1.050300px;}
._1_c00011{width:1.435410px;}
._2_c00011{width:5.930694px;}
.fc0_c00011{color:rgb(0,0,0);}
.fs2_c00011{font-size:37.809600px;}
.fs1_c00011{font-size:46.562400px;}
.fs3_c00011{font-size:58.466400px;}
.fs0_c00011{font-size:70.020000px;}
.y0_c00011{bottom:0.000000px;}
.y2_c00011{bottom:109.740968px;}
.y1_c00011{bottom:129.810450px;}
.y22_c00011{bottom:149.429891px;}
.y21_c00011{bottom:170.940450px;}
.y20_c00011{bottom:185.696171px;}
.y1f_c00011{bottom:264.986819px;}
.y1e_c00011{bottom:295.226706px;}
.y1d_c00011{bottom:325.466594px;}
.y1c_c00011{bottom:355.617206px;}
.y1b_c00011{bottom:385.857093px;}
.y1a_c00011{bottom:416.007705px;}
.y19_c00011{bottom:446.247593px;}
.y18_c00011{bottom:476.398205px;}
.y17_c00011{bottom:506.638092px;}
.y16_c00011{bottom:536.788704px;}
.y15_c00011{bottom:567.028592px;}
.y14_c00011{bottom:597.088178px;}
.y13_c00011{bottom:627.328065px;}
.y12_c00011{bottom:657.478677px;}
.y11_c00011{bottom:687.718565px;}
.y10_c00011{bottom:717.869177px;}
.yf_c00011{bottom:748.109064px;}
.ye_c00011{bottom:778.259676px;}
.yd_c00011{bottom:808.499564px;}
.yc_c00011{bottom:838.650176px;}
.yb_c00011{bottom:868.890063px;}
.ya_c00011{bottom:899.040675px;}
.y9_c00011{bottom:929.280563px;}
.y8_c00011{bottom:959.519442px;}
.y7_c00011{bottom:989.670054px;}
.y6_c00011{bottom:1019.909942px;}
.y5_c00011{bottom:1050.060553px;}
.y4_c00011{bottom:1080.300441px;}
.y3_c00011{bottom:1110.451053px;}
.h6_c00011{height:39.338549px;}
.h7_c00011{height:54.098549px;}
.h2_c00011{height:62.600889px;}
.h1_c00011{height:62.771836px;}
.h5_c00011{height:62.789554px;}
.h4_c00011{height:73.028672px;}
.h3_c00011{height:73.786496px;}
.h0_c00011{height:1263.000000px;}
.w0_c00011{width:892.500000px;}
.x0_c00011{left:0.000000px;}
.x2_c00011{left:82.709645px;}
.x1_c00011{left:436.680000px;}
@media print{
.v2_c00011{vertical-align:-13.120000pt;}
.v0_c00011{vertical-align:0.000000pt;}
.v1_c00011{vertical-align:28.483584pt;}
.ls13_c00011{letter-spacing:-0.467731pt;}
.ls16_c00011{letter-spacing:-0.270245pt;}
.ls10_c00011{letter-spacing:-0.239063pt;}
.ls12_c00011{letter-spacing:-0.192289pt;}
.ls14_c00011{letter-spacing:-0.114334pt;}
.lsc_c00011{letter-spacing:-0.062240pt;}
.ls6_c00011{letter-spacing:-0.056016pt;}
.ls15_c00011{letter-spacing:-0.046773pt;}
.lsa_c00011{letter-spacing:-0.043568pt;}
.lsf_c00011{letter-spacing:-0.037344pt;}
.ls9_c00011{letter-spacing:-0.031120pt;}
.lsb_c00011{letter-spacing:-0.024896pt;}
.ls8_c00011{letter-spacing:-0.018672pt;}
.lse_c00011{letter-spacing:-0.012448pt;}
.lsd_c00011{letter-spacing:-0.006224pt;}
.ls7_c00011{letter-spacing:0.000000pt;}
.ls5_c00011{letter-spacing:0.005197pt;}
.ls3_c00011{letter-spacing:0.006224pt;}
.ls1_c00011{letter-spacing:0.012448pt;}
.ls0_c00011{letter-spacing:0.018672pt;}
.ls2_c00011{letter-spacing:0.027827pt;}
.ls11_c00011{letter-spacing:0.171501pt;}
.ls4_c00011{letter-spacing:0.322215pt;}
.ws2_c00011{word-spacing:-51.970133pt;}
.ws0_c00011{word-spacing:-17.240480pt;}
.ws1_c00011{word-spacing:-9.309564pt;}
.ws27_c00011{word-spacing:-0.311821pt;}
.ws3_c00011{word-spacing:0.000000pt;}
.wsb_c00011{word-spacing:0.012448pt;}
.ws28_c00011{word-spacing:0.280639pt;}
.ws18_c00011{word-spacing:0.298752pt;}
.ws21_c00011{word-spacing:0.342320pt;}
.ws8_c00011{word-spacing:0.616176pt;}
.ws1b_c00011{word-spacing:0.659744pt;}
.ws1f_c00011{word-spacing:0.939824pt;}
.ws1e_c00011{word-spacing:0.952272pt;}
.ws4_c00011{word-spacing:0.964720pt;}
.ws9_c00011{word-spacing:0.977168pt;}
.wsc_c00011{word-spacing:2.234416pt;}
.ws17_c00011{word-spacing:2.246864pt;}
.wsd_c00011{word-spacing:2.887936pt;}
.ws1c_c00011{word-spacing:3.180464pt;}
.ws1d_c00011{word-spacing:3.541456pt;}
.ws14_c00011{word-spacing:3.840208pt;}
.ws16_c00011{word-spacing:5.122352pt;}
.ws5_c00011{word-spacing:5.726080pt;}
.ws23_c00011{word-spacing:5.919398pt;}
.ws1a_c00011{word-spacing:6.068400pt;}
.ws26_c00011{word-spacing:6.205234pt;}
.ws22_c00011{word-spacing:6.329962pt;}
.ws19_c00011{word-spacing:6.398272pt;}
.ws25_c00011{word-spacing:6.558631pt;}
.ws24_c00011{word-spacing:6.605404pt;}
.ws6_c00011{word-spacing:9.603632pt;}
.ws7_c00011{word-spacing:9.933504pt;}
.ws20_c00011{word-spacing:10.232256pt;}
.ws13_c00011{word-spacing:15.379504pt;}
.wse_c00011{word-spacing:15.696928pt;}
.wsa_c00011{word-spacing:19.232160pt;}
.ws12_c00011{word-spacing:20.781936pt;}
.ws11_c00011{word-spacing:21.105584pt;}
.ws10_c00011{word-spacing:29.122096pt;}
.wsf_c00011{word-spacing:29.134544pt;}
.ws15_c00011{word-spacing:37.449808pt;}
._3_c00011{margin-left:-2.410464pt;}
._0_c00011{margin-left:-0.933600pt;}
._1_c00011{width:1.275920pt;}
._2_c00011{width:5.271728pt;}
.fs2_c00011{font-size:33.608533pt;}
.fs1_c00011{font-size:41.388800pt;}
.fs3_c00011{font-size:51.970133pt;}
.fs0_c00011{font-size:62.240000pt;}
.y0_c00011{bottom:0.000000pt;}
.y2_c00011{bottom:97.547527pt;}
.y1_c00011{bottom:115.387067pt;}
.y22_c00011{bottom:132.826570pt;}
.y21_c00011{bottom:151.947067pt;}
.y20_c00011{bottom:165.063263pt;}
.y1f_c00011{bottom:235.543839pt;}
.y1e_c00011{bottom:262.423739pt;}
.y1d_c00011{bottom:289.303639pt;}
.y1c_c00011{bottom:316.104183pt;}
.y1b_c00011{bottom:342.984083pt;}
.y1a_c00011{bottom:369.784627pt;}
.y19_c00011{bottom:396.664527pt;}
.y18_c00011{bottom:423.465071pt;}
.y17_c00011{bottom:450.344971pt;}
.y16_c00011{bottom:477.145515pt;}
.y15_c00011{bottom:504.025415pt;}
.y14_c00011{bottom:530.745047pt;}
.y13_c00011{bottom:557.624947pt;}
.y12_c00011{bottom:584.425491pt;}
.y11_c00011{bottom:611.305391pt;}
.y10_c00011{bottom:638.105935pt;}
.yf_c00011{bottom:664.985835pt;}
.ye_c00011{bottom:691.786379pt;}
.yd_c00011{bottom:718.666279pt;}
.yc_c00011{bottom:745.466823pt;}
.yb_c00011{bottom:772.346723pt;}
.ya_c00011{bottom:799.147267pt;}
.y9_c00011{bottom:826.027167pt;}
.y8_c00011{bottom:852.906171pt;}
.y7_c00011{bottom:879.706715pt;}
.y6_c00011{bottom:906.586615pt;}
.y5_c00011{bottom:933.387159pt;}
.y4_c00011{bottom:960.267059pt;}
.y3_c00011{bottom:987.067603pt;}
.h6_c00011{height:34.967599pt;}
.h7_c00011{height:48.087599pt;}
.h2_c00011{height:55.645234pt;}
.h1_c00011{height:55.797187pt;}
.h5_c00011{height:55.812937pt;}
.h4_c00011{height:64.914375pt;}
.h3_c00011{height:65.587997pt;}
.h0_c00011{height:1122.666667pt;}
.w0_c00011{width:793.333333pt;}
.x0_c00011{left:0.000000pt;}
.x2_c00011{left:73.519684pt;}
.x1_c00011{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a65ac3f844caad61f100e9c7.woff2')format("woff");}.ff1_c00012{font-family:ff1_c00012;line-height:1.106934;font-style:normal;font-weight:normal;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_6dc66c5a079421a059522bde.woff2')format("woff");}.ff2_c00012{font-family:ff2_c00012;line-height:1.133301;font-style:normal;font-weight:normal;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_4f4af259ceef5750e54bdaba.woff2')format("woff");}.ff3_c00012{font-family:ff3_c00012;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00012{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00012{vertical-align:-14.760000px;}
.v0_c00012{vertical-align:0.000000px;}
.v1_c00012{vertical-align:32.053572px;}
.ls10_c00012{letter-spacing:-0.122779px;}
.lse_c00012{letter-spacing:-0.116933px;}
.lsd_c00012{letter-spacing:-0.081853px;}
.ls11_c00012{letter-spacing:-0.076006px;}
.ls4_c00012{letter-spacing:-0.063018px;}
.lsc_c00012{letter-spacing:-0.056016px;}
.ls9_c00012{letter-spacing:-0.042012px;}
.ls7_c00012{letter-spacing:-0.035010px;}
.ls8_c00012{letter-spacing:-0.028008px;}
.lsa_c00012{letter-spacing:-0.021006px;}
.lsb_c00012{letter-spacing:-0.014004px;}
.ls6_c00012{letter-spacing:-0.007002px;}
.ls5_c00012{letter-spacing:0.000000px;}
.ls1_c00012{letter-spacing:0.007002px;}
.ls0_c00012{letter-spacing:0.014004px;}
.ls3_c00012{letter-spacing:0.021006px;}
.ls2_c00012{letter-spacing:0.031306px;}
.lsf_c00012{letter-spacing:0.040926px;}
.sc__c00012{text-shadow:none;}
.sc0_c00012{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00012{-webkit-text-stroke:0px transparent;}
.sc0_c00012{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00012{word-spacing:-10.473259px;}
.ws27_c00012{word-spacing:-0.268945px;}
.ws12_c00012{word-spacing:-0.021006px;}
.ws1_c00012{word-spacing:0.000000px;}
.ws22_c00012{word-spacing:0.007002px;}
.ws1f_c00012{word-spacing:0.035010px;}
.ws26_c00012{word-spacing:0.134473px;}
.ws1a_c00012{word-spacing:0.329094px;}
.wsa_c00012{word-spacing:1.050300px;}
.wsf_c00012{word-spacing:1.071306px;}
.wsb_c00012{word-spacing:1.106316px;}
.ws17_c00012{word-spacing:1.442412px;}
.ws15_c00012{word-spacing:1.456416px;}
.ws16_c00012{word-spacing:1.484424px;}
.ws1d_c00012{word-spacing:3.206916px;}
.ws1b_c00012{word-spacing:3.977136px;}
.wsc_c00012{word-spacing:3.998142px;}
.ws13_c00012{word-spacing:4.334238px;}
.ws19_c00012{word-spacing:5.398542px;}
.ws18_c00012{word-spacing:5.419548px;}
.ws1e_c00012{word-spacing:5.426550px;}
.ws21_c00012{word-spacing:6.133752px;}
.ws3_c00012{word-spacing:6.469848px;}
.ws6_c00012{word-spacing:6.490854px;}
.ws4_c00012{word-spacing:6.497856px;}
.ws7_c00012{word-spacing:6.504858px;}
.ws9_c00012{word-spacing:12.246498px;}
.ws10_c00012{word-spacing:12.582594px;}
.ws8_c00012{word-spacing:12.610602px;}
.ws1c_c00012{word-spacing:12.974706px;}
.ws2_c00012{word-spacing:13.310802px;}
.wse_c00012{word-spacing:13.317804px;}
.ws23_c00012{word-spacing:14.856312px;}
.ws25_c00012{word-spacing:15.090178px;}
.ws24_c00012{word-spacing:15.248037px;}
.ws5_c00012{word-spacing:15.495426px;}
.ws14_c00012{word-spacing:17.981136px;}
.wsd_c00012{word-spacing:19.087452px;}
.ws11_c00012{word-spacing:31.656042px;}
.ws20_c00012{word-spacing:37.425690px;}
._3_c00012{margin-left:-2.712618px;}
._1_c00012{margin-left:-1.134324px;}
._0_c00012{width:1.155330px;}
._2_c00012{width:5.930694px;}
.fc0_c00012{color:rgb(0,0,0);}
.fs2_c00012{font-size:37.809600px;}
.fs1_c00012{font-size:46.562400px;}
.fs3_c00012{font-size:58.466400px;}
.fs0_c00012{font-size:70.020000px;}
.y0_c00012{bottom:0.000000px;}
.y2_c00012{bottom:109.740968px;}
.y1_c00012{bottom:129.810450px;}
.y23_c00012{bottom:149.429891px;}
.y22_c00012{bottom:170.940450px;}
.y21_c00012{bottom:185.698555px;}
.y20_c00012{bottom:226.108848px;}
.y1f_c00012{bottom:256.259460px;}
.y1e_c00012{bottom:286.499347px;}
.y1d_c00012{bottom:316.649959px;}
.y1c_c00012{bottom:346.889847px;}
.y1b_c00012{bottom:377.040459px;}
.y1a_c00012{bottom:407.280346px;}
.y19_c00012{bottom:437.520234px;}
.y18_c00012{bottom:467.670846px;}
.y17_c00012{bottom:497.910733px;}
.y16_c00012{bottom:536.791089px;}
.y15_c00012{bottom:567.030976px;}
.y14_c00012{bottom:597.090562px;}
.y13_c00012{bottom:627.327057px;}
.y12_c00012{bottom:657.477669px;}
.y11_c00012{bottom:687.717557px;}
.y10_c00012{bottom:717.868169px;}
.yf_c00012{bottom:748.108056px;}
.ye_c00012{bottom:778.258668px;}
.yd_c00012{bottom:808.498556px;}
.yc_c00012{bottom:838.649168px;}
.yb_c00012{bottom:868.889055px;}
.ya_c00012{bottom:899.039667px;}
.y9_c00012{bottom:929.279555px;}
.y8_c00012{bottom:959.519442px;}
.y7_c00012{bottom:989.670054px;}
.y6_c00012{bottom:1019.909942px;}
.y5_c00012{bottom:1050.060553px;}
.y4_c00012{bottom:1080.300441px;}
.y3_c00012{bottom:1110.451053px;}
.h4_c00012{height:39.338549px;}
.h5_c00012{height:54.098549px;}
.h1_c00012{height:62.771836px;}
.h3_c00012{height:62.780014px;}
.h2_c00012{height:73.796036px;}
.h0_c00012{height:1263.000000px;}
.w0_c00012{width:892.500000px;}
.x0_c00012{left:0.000000px;}
.x2_c00012{left:82.709645px;}
.x1_c00012{left:436.680000px;}
@media print{
.v2_c00012{vertical-align:-13.120000pt;}
.v0_c00012{vertical-align:0.000000pt;}
.v1_c00012{vertical-align:28.492064pt;}
.ls10_c00012{letter-spacing:-0.109137pt;}
.lse_c00012{letter-spacing:-0.103940pt;}
.lsd_c00012{letter-spacing:-0.072758pt;}
.ls11_c00012{letter-spacing:-0.067561pt;}
.ls4_c00012{letter-spacing:-0.056016pt;}
.lsc_c00012{letter-spacing:-0.049792pt;}
.ls9_c00012{letter-spacing:-0.037344pt;}
.ls7_c00012{letter-spacing:-0.031120pt;}
.ls8_c00012{letter-spacing:-0.024896pt;}
.lsa_c00012{letter-spacing:-0.018672pt;}
.lsb_c00012{letter-spacing:-0.012448pt;}
.ls6_c00012{letter-spacing:-0.006224pt;}
.ls5_c00012{letter-spacing:0.000000pt;}
.ls1_c00012{letter-spacing:0.006224pt;}
.ls0_c00012{letter-spacing:0.012448pt;}
.ls3_c00012{letter-spacing:0.018672pt;}
.ls2_c00012{letter-spacing:0.027827pt;}
.lsf_c00012{letter-spacing:0.036379pt;}
.ws0_c00012{word-spacing:-9.309564pt;}
.ws27_c00012{word-spacing:-0.239063pt;}
.ws12_c00012{word-spacing:-0.018672pt;}
.ws1_c00012{word-spacing:0.000000pt;}
.ws22_c00012{word-spacing:0.006224pt;}
.ws1f_c00012{word-spacing:0.031120pt;}
.ws26_c00012{word-spacing:0.119531pt;}
.ws1a_c00012{word-spacing:0.292528pt;}
.wsa_c00012{word-spacing:0.933600pt;}
.wsf_c00012{word-spacing:0.952272pt;}
.wsb_c00012{word-spacing:0.983392pt;}
.ws17_c00012{word-spacing:1.282144pt;}
.ws15_c00012{word-spacing:1.294592pt;}
.ws16_c00012{word-spacing:1.319488pt;}
.ws1d_c00012{word-spacing:2.850592pt;}
.ws1b_c00012{word-spacing:3.535232pt;}
.wsc_c00012{word-spacing:3.553904pt;}
.ws13_c00012{word-spacing:3.852656pt;}
.ws19_c00012{word-spacing:4.798704pt;}
.ws18_c00012{word-spacing:4.817376pt;}
.ws1e_c00012{word-spacing:4.823600pt;}
.ws21_c00012{word-spacing:5.452224pt;}
.ws3_c00012{word-spacing:5.750976pt;}
.ws6_c00012{word-spacing:5.769648pt;}
.ws4_c00012{word-spacing:5.775872pt;}
.ws7_c00012{word-spacing:5.782096pt;}
.ws9_c00012{word-spacing:10.885776pt;}
.ws10_c00012{word-spacing:11.184528pt;}
.ws8_c00012{word-spacing:11.209424pt;}
.ws1c_c00012{word-spacing:11.533072pt;}
.ws2_c00012{word-spacing:11.831824pt;}
.wse_c00012{word-spacing:11.838048pt;}
.ws23_c00012{word-spacing:13.205611pt;}
.ws25_c00012{word-spacing:13.413491pt;}
.ws24_c00012{word-spacing:13.553811pt;}
.ws5_c00012{word-spacing:13.773712pt;}
.ws14_c00012{word-spacing:15.983232pt;}
.wsd_c00012{word-spacing:16.966624pt;}
.ws11_c00012{word-spacing:28.138704pt;}
.ws20_c00012{word-spacing:33.267280pt;}
._3_c00012{margin-left:-2.411216pt;}
._1_c00012{margin-left:-1.008288pt;}
._0_c00012{width:1.026960pt;}
._2_c00012{width:5.271728pt;}
.fs2_c00012{font-size:33.608533pt;}
.fs1_c00012{font-size:41.388800pt;}
.fs3_c00012{font-size:51.970133pt;}
.fs0_c00012{font-size:62.240000pt;}
.y0_c00012{bottom:0.000000pt;}
.y2_c00012{bottom:97.547527pt;}
.y1_c00012{bottom:115.387067pt;}
.y23_c00012{bottom:132.826570pt;}
.y22_c00012{bottom:151.947067pt;}
.y21_c00012{bottom:165.065383pt;}
.y20_c00012{bottom:200.985643pt;}
.y1f_c00012{bottom:227.786187pt;}
.y1e_c00012{bottom:254.666087pt;}
.y1d_c00012{bottom:281.466631pt;}
.y1c_c00012{bottom:308.346531pt;}
.y1b_c00012{bottom:335.147075pt;}
.y1a_c00012{bottom:362.026975pt;}
.y19_c00012{bottom:388.906875pt;}
.y18_c00012{bottom:415.707419pt;}
.y17_c00012{bottom:442.587319pt;}
.y16_c00012{bottom:477.147635pt;}
.y15_c00012{bottom:504.027535pt;}
.y14_c00012{bottom:530.747167pt;}
.y13_c00012{bottom:557.624051pt;}
.y12_c00012{bottom:584.424595pt;}
.y11_c00012{bottom:611.304495pt;}
.y10_c00012{bottom:638.105039pt;}
.yf_c00012{bottom:664.984939pt;}
.ye_c00012{bottom:691.785483pt;}
.yd_c00012{bottom:718.665383pt;}
.yc_c00012{bottom:745.465927pt;}
.yb_c00012{bottom:772.345827pt;}
.ya_c00012{bottom:799.146371pt;}
.y9_c00012{bottom:826.026271pt;}
.y8_c00012{bottom:852.906171pt;}
.y7_c00012{bottom:879.706715pt;}
.y6_c00012{bottom:906.586615pt;}
.y5_c00012{bottom:933.387159pt;}
.y4_c00012{bottom:960.267059pt;}
.y3_c00012{bottom:987.067603pt;}
.h4_c00012{height:34.967599pt;}
.h5_c00012{height:48.087599pt;}
.h1_c00012{height:55.797187pt;}
.h3_c00012{height:55.804457pt;}
.h2_c00012{height:65.596476pt;}
.h0_c00012{height:1122.666667pt;}
.w0_c00012{width:793.333333pt;}
.x0_c00012{left:0.000000pt;}
.x2_c00012{left:73.519684pt;}
.x1_c00012{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a0b6c2e3ed77deaf62cda8f7.woff2')format("woff");}.ff1_c00013{font-family:ff1_c00013;line-height:1.106934;font-style:normal;font-weight:normal;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_68816df12edd73ee88919f0d.woff2')format("woff");}.ff2_c00013{font-family:ff2_c00013;line-height:1.104492;font-style:normal;font-weight:normal;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_71f4419739fd18aeb8508b0e.woff2')format("woff");}.ff3_c00013{font-family:ff3_c00013;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00013{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00013{vertical-align:0.000000px;}
.ls2_c00013{letter-spacing:-0.063018px;}
.lsa_c00013{letter-spacing:-0.049014px;}
.lsb_c00013{letter-spacing:-0.042012px;}
.ls8_c00013{letter-spacing:-0.035010px;}
.ls7_c00013{letter-spacing:-0.028008px;}
.ls6_c00013{letter-spacing:-0.021006px;}
.ls4_c00013{letter-spacing:-0.014004px;}
.ls9_c00013{letter-spacing:-0.007002px;}
.ls3_c00013{letter-spacing:0.000000px;}
.ls1_c00013{letter-spacing:0.007002px;}
.ls0_c00013{letter-spacing:0.028008px;}
.ls5_c00013{letter-spacing:0.350100px;}
.sc__c00013{text-shadow:none;}
.sc0_c00013{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00013{-webkit-text-stroke:0px transparent;}
.sc0_c00013{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00013{word-spacing:0.000000px;}
.ws1a_c00013{word-spacing:0.343098px;}
.wsb_c00013{word-spacing:0.364104px;}
.ws18_c00013{word-spacing:0.378108px;}
.wsc_c00013{word-spacing:1.099314px;}
.wsa_c00013{word-spacing:2.170620px;}
.ws4_c00013{word-spacing:2.877822px;}
.ws8_c00013{word-spacing:2.884824px;}
.ws5_c00013{word-spacing:3.234924px;}
.ws7_c00013{word-spacing:3.557016px;}
.ws6_c00013{word-spacing:3.970134px;}
.wse_c00013{word-spacing:4.691340px;}
.wsf_c00013{word-spacing:4.712346px;}
.ws20_c00013{word-spacing:6.098742px;}
.ws1b_c00013{word-spacing:6.133752px;}
.ws1c_c00013{word-spacing:6.140754px;}
.ws14_c00013{word-spacing:6.868962px;}
.ws2_c00013{word-spacing:7.919262px;}
.ws13_c00013{word-spacing:8.640468px;}
.ws12_c00013{word-spacing:8.654472px;}
.ws3_c00013{word-spacing:9.718776px;}
.ws19_c00013{word-spacing:11.882394px;}
.ws17_c00013{word-spacing:12.960702px;}
.ws10_c00013{word-spacing:14.424120px;}
.ws16_c00013{word-spacing:15.110316px;}
.ws15_c00013{word-spacing:15.131322px;}
.ws1_c00013{word-spacing:17.280936px;}
.ws1e_c00013{word-spacing:17.638038px;}
.ws9_c00013{word-spacing:17.645040px;}
.ws1d_c00013{word-spacing:17.652042px;}
.ws1f_c00013{word-spacing:23.050584px;}
.ws11_c00013{word-spacing:31.298940px;}
.wsd_c00013{word-spacing:41.031720px;}
._2_c00013{margin-left:-7.968276px;}
._1_c00013{margin-left:-1.190340px;}
._0_c00013{width:1.148328px;}
.fc0_c00013{color:rgb(0,0,0);}
.fs0_c00013{font-size:70.020000px;}
.y0_c00013{bottom:0.000000px;}
.y2_c00013{bottom:109.740968px;}
.y1_c00013{bottom:129.810450px;}
.y22_c00013{bottom:174.444699px;}
.y21_c00013{bottom:204.684587px;}
.y20_c00013{bottom:234.835199px;}
.y1f_c00013{bottom:265.075086px;}
.y1e_c00013{bottom:295.225698px;}
.y1d_c00013{bottom:325.465586px;}
.y1c_c00013{bottom:355.616198px;}
.y1b_c00013{bottom:385.856085px;}
.y1a_c00013{bottom:416.006697px;}
.y19_c00013{bottom:446.246585px;}
.y18_c00013{bottom:476.397197px;}
.y17_c00013{bottom:506.637084px;}
.y16_c00013{bottom:536.787696px;}
.y15_c00013{bottom:567.027584px;}
.y14_c00013{bottom:597.087170px;}
.y13_c00013{bottom:627.327057px;}
.y12_c00013{bottom:657.477669px;}
.y11_c00013{bottom:687.717557px;}
.y10_c00013{bottom:717.868169px;}
.yf_c00013{bottom:748.108056px;}
.ye_c00013{bottom:778.258668px;}
.yd_c00013{bottom:808.498556px;}
.yc_c00013{bottom:838.649168px;}
.yb_c00013{bottom:868.889055px;}
.ya_c00013{bottom:899.039667px;}
.y9_c00013{bottom:929.279555px;}
.y8_c00013{bottom:959.519442px;}
.y7_c00013{bottom:989.670054px;}
.y6_c00013{bottom:1019.909942px;}
.y5_c00013{bottom:1050.060553px;}
.y4_c00013{bottom:1080.300441px;}
.y3_c00013{bottom:1110.451053px;}
.h1_c00013{height:62.771836px;}
.h2_c00013{height:63.216299px;}
.h0_c00013{height:1263.000000px;}
.w0_c00013{width:892.500000px;}
.x0_c00013{left:0.000000px;}
.x2_c00013{left:82.709645px;}
.x1_c00013{left:436.680000px;}
@media print{
.v0_c00013{vertical-align:0.000000pt;}
.ls2_c00013{letter-spacing:-0.056016pt;}
.lsa_c00013{letter-spacing:-0.043568pt;}
.lsb_c00013{letter-spacing:-0.037344pt;}
.ls8_c00013{letter-spacing:-0.031120pt;}
.ls7_c00013{letter-spacing:-0.024896pt;}
.ls6_c00013{letter-spacing:-0.018672pt;}
.ls4_c00013{letter-spacing:-0.012448pt;}
.ls9_c00013{letter-spacing:-0.006224pt;}
.ls3_c00013{letter-spacing:0.000000pt;}
.ls1_c00013{letter-spacing:0.006224pt;}
.ls0_c00013{letter-spacing:0.024896pt;}
.ls5_c00013{letter-spacing:0.311200pt;}
.ws0_c00013{word-spacing:0.000000pt;}
.ws1a_c00013{word-spacing:0.304976pt;}
.wsb_c00013{word-spacing:0.323648pt;}
.ws18_c00013{word-spacing:0.336096pt;}
.wsc_c00013{word-spacing:0.977168pt;}
.wsa_c00013{word-spacing:1.929440pt;}
.ws4_c00013{word-spacing:2.558064pt;}
.ws8_c00013{word-spacing:2.564288pt;}
.ws5_c00013{word-spacing:2.875488pt;}
.ws7_c00013{word-spacing:3.161792pt;}
.ws6_c00013{word-spacing:3.529008pt;}
.wse_c00013{word-spacing:4.170080pt;}
.wsf_c00013{word-spacing:4.188752pt;}
.ws20_c00013{word-spacing:5.421104pt;}
.ws1b_c00013{word-spacing:5.452224pt;}
.ws1c_c00013{word-spacing:5.458448pt;}
.ws14_c00013{word-spacing:6.105744pt;}
.ws2_c00013{word-spacing:7.039344pt;}
.ws13_c00013{word-spacing:7.680416pt;}
.ws12_c00013{word-spacing:7.692864pt;}
.ws3_c00013{word-spacing:8.638912pt;}
.ws19_c00013{word-spacing:10.562128pt;}
.ws17_c00013{word-spacing:11.520624pt;}
.ws10_c00013{word-spacing:12.821440pt;}
.ws16_c00013{word-spacing:13.431392pt;}
.ws15_c00013{word-spacing:13.450064pt;}
.ws1_c00013{word-spacing:15.360832pt;}
.ws1e_c00013{word-spacing:15.678256pt;}
.ws9_c00013{word-spacing:15.684480pt;}
.ws1d_c00013{word-spacing:15.690704pt;}
.ws1f_c00013{word-spacing:20.489408pt;}
.ws11_c00013{word-spacing:27.821280pt;}
.wsd_c00013{word-spacing:36.472640pt;}
._2_c00013{margin-left:-7.082912pt;}
._1_c00013{margin-left:-1.058080pt;}
._0_c00013{width:1.020736pt;}
.fs0_c00013{font-size:62.240000pt;}
.y0_c00013{bottom:0.000000pt;}
.y2_c00013{bottom:97.547527pt;}
.y1_c00013{bottom:115.387067pt;}
.y22_c00013{bottom:155.061955pt;}
.y21_c00013{bottom:181.941855pt;}
.y20_c00013{bottom:208.742399pt;}
.y1f_c00013{bottom:235.622299pt;}
.y1e_c00013{bottom:262.422843pt;}
.y1d_c00013{bottom:289.302743pt;}
.y1c_c00013{bottom:316.103287pt;}
.y1b_c00013{bottom:342.983187pt;}
.y1a_c00013{bottom:369.783731pt;}
.y19_c00013{bottom:396.663631pt;}
.y18_c00013{bottom:423.464175pt;}
.y17_c00013{bottom:450.344075pt;}
.y16_c00013{bottom:477.144619pt;}
.y15_c00013{bottom:504.024519pt;}
.y14_c00013{bottom:530.744151pt;}
.y13_c00013{bottom:557.624051pt;}
.y12_c00013{bottom:584.424595pt;}
.y11_c00013{bottom:611.304495pt;}
.y10_c00013{bottom:638.105039pt;}
.yf_c00013{bottom:664.984939pt;}
.ye_c00013{bottom:691.785483pt;}
.yd_c00013{bottom:718.665383pt;}
.yc_c00013{bottom:745.465927pt;}
.yb_c00013{bottom:772.345827pt;}
.ya_c00013{bottom:799.146371pt;}
.y9_c00013{bottom:826.026271pt;}
.y8_c00013{bottom:852.906171pt;}
.y7_c00013{bottom:879.706715pt;}
.y6_c00013{bottom:906.586615pt;}
.y5_c00013{bottom:933.387159pt;}
.y4_c00013{bottom:960.267059pt;}
.y3_c00013{bottom:987.067603pt;}
.h1_c00013{height:55.797187pt;}
.h2_c00013{height:56.192266pt;}
.h0_c00013{height:1122.666667pt;}
.w0_c00013{width:793.333333pt;}
.x0_c00013{left:0.000000pt;}
.x2_c00013{left:73.519684pt;}
.x1_c00013{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_47538120086a3f7618573ab9.woff2')format("woff");}.ff1_c00014{font-family:ff1_c00014;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00014{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00014{vertical-align:0.000000px;}
.ls3_c00014{letter-spacing:-0.063018px;}
.lsb_c00014{letter-spacing:-0.056016px;}
.ls9_c00014{letter-spacing:-0.042012px;}
.ls7_c00014{letter-spacing:-0.035010px;}
.ls8_c00014{letter-spacing:-0.028008px;}
.lsa_c00014{letter-spacing:-0.021006px;}
.ls5_c00014{letter-spacing:-0.014004px;}
.ls6_c00014{letter-spacing:-0.007002px;}
.ls4_c00014{letter-spacing:0.000000px;}
.ls2_c00014{letter-spacing:0.007002px;}
.ls0_c00014{letter-spacing:0.014004px;}
.ls1_c00014{letter-spacing:0.021006px;}
.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;}
}
.ws21_c00014{word-spacing:-0.014004px;}
.ws16_c00014{word-spacing:-0.007002px;}
.ws0_c00014{word-spacing:0.000000px;}
.wsa_c00014{word-spacing:0.336096px;}
.ws1b_c00014{word-spacing:0.371106px;}
.ws9_c00014{word-spacing:0.700200px;}
.wse_c00014{word-spacing:0.721206px;}
.ws15_c00014{word-spacing:1.092312px;}
.ws22_c00014{word-spacing:1.456416px;}
.ws12_c00014{word-spacing:1.813518px;}
.ws25_c00014{word-spacing:1.820520px;}
.wsc_c00014{word-spacing:2.898828px;}
.ws17_c00014{word-spacing:4.313232px;}
.ws18_c00014{word-spacing:4.327236px;}
.ws13_c00014{word-spacing:4.684338px;}
.ws14_c00014{word-spacing:4.705344px;}
.ws6_c00014{word-spacing:5.006430px;}
.ws7_c00014{word-spacing:5.027436px;}
.wsb_c00014{word-spacing:5.741640px;}
.ws1c_c00014{word-spacing:6.462846px;}
.ws1f_c00014{word-spacing:7.177050px;}
.ws4_c00014{word-spacing:7.184052px;}
.ws3_c00014{word-spacing:7.191054px;}
.ws20_c00014{word-spacing:7.226064px;}
.ws1a_c00014{word-spacing:7.919262px;}
.ws19_c00014{word-spacing:7.926264px;}
.ws26_c00014{word-spacing:7.933266px;}
.wsf_c00014{word-spacing:8.997570px;}
.ws8_c00014{word-spacing:9.361674px;}
.ws1e_c00014{word-spacing:9.368676px;}
.ws1d_c00014{word-spacing:9.403686px;}
.ws5_c00014{word-spacing:11.875392px;}
.ws10_c00014{word-spacing:14.025006px;}
.ws24_c00014{word-spacing:14.032008px;}
.ws23_c00014{word-spacing:14.039010px;}
.wsd_c00014{word-spacing:14.403114px;}
.ws1_c00014{word-spacing:19.052442px;}
.ws2_c00014{word-spacing:19.437552px;}
.ws11_c00014{word-spacing:20.508858px;}
._1_c00014{margin-left:-1.309374px;}
._0_c00014{width:1.169334px;}
.fc0_c00014{color:rgb(0,0,0);}
.fs0_c00014{font-size:70.020000px;}
.y0_c00014{bottom:0.000000px;}
.y2_c00014{bottom:109.740968px;}
.y1_c00014{bottom:129.810450px;}
.y22_c00014{bottom:174.445595px;}
.y21_c00014{bottom:204.685482px;}
.y20_c00014{bottom:234.836094px;}
.y1f_c00014{bottom:265.075982px;}
.y1e_c00014{bottom:295.226594px;}
.y1d_c00014{bottom:325.466481px;}
.y1c_c00014{bottom:355.617093px;}
.y1b_c00014{bottom:385.856981px;}
.y1a_c00014{bottom:416.007592px;}
.y19_c00014{bottom:446.247480px;}
.y18_c00014{bottom:476.398092px;}
.y17_c00014{bottom:506.637979px;}
.y16_c00014{bottom:536.788591px;}
.y15_c00014{bottom:567.028479px;}
.y14_c00014{bottom:597.088065px;}
.y13_c00014{bottom:627.327953px;}
.y12_c00014{bottom:657.478565px;}
.y11_c00014{bottom:687.718452px;}
.y10_c00014{bottom:717.869064px;}
.yf_c00014{bottom:748.108951px;}
.ye_c00014{bottom:778.259564px;}
.yd_c00014{bottom:808.499451px;}
.yc_c00014{bottom:838.650063px;}
.yb_c00014{bottom:868.889950px;}
.ya_c00014{bottom:899.040562px;}
.y9_c00014{bottom:929.279555px;}
.y8_c00014{bottom:959.519442px;}
.y7_c00014{bottom:989.670054px;}
.y6_c00014{bottom:1019.909942px;}
.y5_c00014{bottom:1050.060553px;}
.y4_c00014{bottom:1080.300441px;}
.y3_c00014{bottom:1110.451053px;}
.h1_c00014{height:62.771836px;}
.h2_c00014{height:62.775418px;}
.h0_c00014{height:1263.000000px;}
.w0_c00014{width:892.500000px;}
.x0_c00014{left:0.000000px;}
.x2_c00014{left:82.709645px;}
.x1_c00014{left:436.680000px;}
@media print{
.v0_c00014{vertical-align:0.000000pt;}
.ls3_c00014{letter-spacing:-0.056016pt;}
.lsb_c00014{letter-spacing:-0.049792pt;}
.ls9_c00014{letter-spacing:-0.037344pt;}
.ls7_c00014{letter-spacing:-0.031120pt;}
.ls8_c00014{letter-spacing:-0.024896pt;}
.lsa_c00014{letter-spacing:-0.018672pt;}
.ls5_c00014{letter-spacing:-0.012448pt;}
.ls6_c00014{letter-spacing:-0.006224pt;}
.ls4_c00014{letter-spacing:0.000000pt;}
.ls2_c00014{letter-spacing:0.006224pt;}
.ls0_c00014{letter-spacing:0.012448pt;}
.ls1_c00014{letter-spacing:0.018672pt;}
.ws21_c00014{word-spacing:-0.012448pt;}
.ws16_c00014{word-spacing:-0.006224pt;}
.ws0_c00014{word-spacing:0.000000pt;}
.wsa_c00014{word-spacing:0.298752pt;}
.ws1b_c00014{word-spacing:0.329872pt;}
.ws9_c00014{word-spacing:0.622400pt;}
.wse_c00014{word-spacing:0.641072pt;}
.ws15_c00014{word-spacing:0.970944pt;}
.ws22_c00014{word-spacing:1.294592pt;}
.ws12_c00014{word-spacing:1.612016pt;}
.ws25_c00014{word-spacing:1.618240pt;}
.wsc_c00014{word-spacing:2.576736pt;}
.ws17_c00014{word-spacing:3.833984pt;}
.ws18_c00014{word-spacing:3.846432pt;}
.ws13_c00014{word-spacing:4.163856pt;}
.ws14_c00014{word-spacing:4.182528pt;}
.ws6_c00014{word-spacing:4.450160pt;}
.ws7_c00014{word-spacing:4.468832pt;}
.wsb_c00014{word-spacing:5.103680pt;}
.ws1c_c00014{word-spacing:5.744752pt;}
.ws1f_c00014{word-spacing:6.379600pt;}
.ws4_c00014{word-spacing:6.385824pt;}
.ws3_c00014{word-spacing:6.392048pt;}
.ws20_c00014{word-spacing:6.423168pt;}
.ws1a_c00014{word-spacing:7.039344pt;}
.ws19_c00014{word-spacing:7.045568pt;}
.ws26_c00014{word-spacing:7.051792pt;}
.wsf_c00014{word-spacing:7.997840pt;}
.ws8_c00014{word-spacing:8.321488pt;}
.ws1e_c00014{word-spacing:8.327712pt;}
.ws1d_c00014{word-spacing:8.358832pt;}
.ws5_c00014{word-spacing:10.555904pt;}
.ws10_c00014{word-spacing:12.466672pt;}
.ws24_c00014{word-spacing:12.472896pt;}
.ws23_c00014{word-spacing:12.479120pt;}
.wsd_c00014{word-spacing:12.802768pt;}
.ws1_c00014{word-spacing:16.935504pt;}
.ws2_c00014{word-spacing:17.277824pt;}
.ws11_c00014{word-spacing:18.230096pt;}
._1_c00014{margin-left:-1.163888pt;}
._0_c00014{width:1.039408pt;}
.fs0_c00014{font-size:62.240000pt;}
.y0_c00014{bottom:0.000000pt;}
.y2_c00014{bottom:97.547527pt;}
.y1_c00014{bottom:115.387067pt;}
.y22_c00014{bottom:155.062751pt;}
.y21_c00014{bottom:181.942651pt;}
.y20_c00014{bottom:208.743195pt;}
.y1f_c00014{bottom:235.623095pt;}
.y1e_c00014{bottom:262.423639pt;}
.y1d_c00014{bottom:289.303539pt;}
.y1c_c00014{bottom:316.104083pt;}
.y1b_c00014{bottom:342.983983pt;}
.y1a_c00014{bottom:369.784527pt;}
.y19_c00014{bottom:396.664427pt;}
.y18_c00014{bottom:423.464971pt;}
.y17_c00014{bottom:450.344871pt;}
.y16_c00014{bottom:477.145415pt;}
.y15_c00014{bottom:504.025315pt;}
.y14_c00014{bottom:530.744947pt;}
.y13_c00014{bottom:557.624847pt;}
.y12_c00014{bottom:584.425391pt;}
.y11_c00014{bottom:611.305291pt;}
.y10_c00014{bottom:638.105835pt;}
.yf_c00014{bottom:664.985735pt;}
.ye_c00014{bottom:691.786279pt;}
.yd_c00014{bottom:718.666179pt;}
.yc_c00014{bottom:745.466723pt;}
.yb_c00014{bottom:772.346623pt;}
.ya_c00014{bottom:799.147167pt;}
.y9_c00014{bottom:826.026271pt;}
.y8_c00014{bottom:852.906171pt;}
.y7_c00014{bottom:879.706715pt;}
.y6_c00014{bottom:906.586615pt;}
.y5_c00014{bottom:933.387159pt;}
.y4_c00014{bottom:960.267059pt;}
.y3_c00014{bottom:987.067603pt;}
.h1_c00014{height:55.797187pt;}
.h2_c00014{height:55.800372pt;}
.h0_c00014{height:1122.666667pt;}
.w0_c00014{width:793.333333pt;}
.x0_c00014{left:0.000000pt;}
.x2_c00014{left:73.519684pt;}
.x1_c00014{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bb7e55e8966ef2b851e5d065.woff2')format("woff");}.ff1_c00015{font-family:ff1_c00015;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00015{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00015{vertical-align:0.000000px;}
.ls4_c00015{letter-spacing:-0.063018px;}
.ls9_c00015{letter-spacing:-0.056016px;}
.lsd_c00015{letter-spacing:-0.049014px;}
.lsa_c00015{letter-spacing:-0.042012px;}
.lsb_c00015{letter-spacing:-0.035010px;}
.ls7_c00015{letter-spacing:-0.028008px;}
.ls6_c00015{letter-spacing:-0.021006px;}
.ls8_c00015{letter-spacing:-0.014004px;}
.lsc_c00015{letter-spacing:-0.007002px;}
.ls5_c00015{letter-spacing:0.000000px;}
.ls2_c00015{letter-spacing:0.014004px;}
.ls3_c00015{letter-spacing:0.021006px;}
.ls0_c00015{letter-spacing:0.028008px;}
.ls1_c00015{letter-spacing:0.035010px;}
.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;}
}
.ws9_c00015{word-spacing:-0.399114px;}
.ws10_c00015{word-spacing:-0.007002px;}
.ws0_c00015{word-spacing:0.000000px;}
.ws11_c00015{word-spacing:0.014004px;}
.ws17_c00015{word-spacing:0.308088px;}
.ws1d_c00015{word-spacing:0.343098px;}
.ws1a_c00015{word-spacing:0.350100px;}
.ws3_c00015{word-spacing:0.364104px;}
.wsa_c00015{word-spacing:0.371106px;}
.ws16_c00015{word-spacing:0.392112px;}
.ws14_c00015{word-spacing:1.442412px;}
.wse_c00015{word-spacing:2.163618px;}
.wsf_c00015{word-spacing:2.184624px;}
.ws19_c00015{word-spacing:2.492712px;}
.ws13_c00015{word-spacing:2.562732px;}
.ws12_c00015{word-spacing:2.863818px;}
.ws6_c00015{word-spacing:2.877822px;}
.ws7_c00015{word-spacing:3.283938px;}
.wsd_c00015{word-spacing:3.620034px;}
.ws2_c00015{word-spacing:4.327236px;}
.ws4_c00015{word-spacing:6.133752px;}
.wsb_c00015{word-spacing:6.147756px;}
.ws5_c00015{word-spacing:6.168762px;}
.ws1_c00015{word-spacing:8.283366px;}
.ws18_c00015{word-spacing:9.711774px;}
.ws8_c00015{word-spacing:16.930836px;}
.ws1b_c00015{word-spacing:17.624034px;}
.wsc_c00015{word-spacing:17.953128px;}
.ws1c_c00015{word-spacing:21.972276px;}
.ws15_c00015{word-spacing:22.322376px;}
._1_c00015{margin-left:-1.281366px;}
._0_c00015{width:1.302372px;}
.fc0_c00015{color:rgb(0,0,0);}
.fs0_c00015{font-size:70.020000px;}
.y0_c00015{bottom:0.000000px;}
.y2_c00015{bottom:109.740968px;}
.y1_c00015{bottom:129.810450px;}
.y21_c00015{bottom:204.684587px;}
.y20_c00015{bottom:234.835199px;}
.y1f_c00015{bottom:265.075086px;}
.y1e_c00015{bottom:295.225698px;}
.y1d_c00015{bottom:325.465586px;}
.y1c_c00015{bottom:355.616198px;}
.y1b_c00015{bottom:385.856085px;}
.y1a_c00015{bottom:416.006697px;}
.y19_c00015{bottom:446.246585px;}
.y18_c00015{bottom:476.397197px;}
.y17_c00015{bottom:506.637084px;}
.y16_c00015{bottom:536.787696px;}
.y15_c00015{bottom:567.027584px;}
.y14_c00015{bottom:597.087170px;}
.y13_c00015{bottom:627.327057px;}
.y12_c00015{bottom:657.477669px;}
.y11_c00015{bottom:687.717557px;}
.y10_c00015{bottom:717.868169px;}
.yf_c00015{bottom:748.108056px;}
.ye_c00015{bottom:778.258668px;}
.yd_c00015{bottom:808.498556px;}
.yc_c00015{bottom:838.649168px;}
.yb_c00015{bottom:868.889055px;}
.ya_c00015{bottom:899.039667px;}
.y9_c00015{bottom:929.279555px;}
.y8_c00015{bottom:959.519442px;}
.y7_c00015{bottom:989.670054px;}
.y6_c00015{bottom:1019.909942px;}
.y5_c00015{bottom:1050.060553px;}
.y4_c00015{bottom:1080.300441px;}
.y3_c00015{bottom:1110.451053px;}
.h1_c00015{height:62.771836px;}
.h0_c00015{height:1263.000000px;}
.w0_c00015{width:892.500000px;}
.x0_c00015{left:0.000000px;}
.x2_c00015{left:82.709645px;}
.x1_c00015{left:436.680000px;}
@media print{
.v0_c00015{vertical-align:0.000000pt;}
.ls4_c00015{letter-spacing:-0.056016pt;}
.ls9_c00015{letter-spacing:-0.049792pt;}
.lsd_c00015{letter-spacing:-0.043568pt;}
.lsa_c00015{letter-spacing:-0.037344pt;}
.lsb_c00015{letter-spacing:-0.031120pt;}
.ls7_c00015{letter-spacing:-0.024896pt;}
.ls6_c00015{letter-spacing:-0.018672pt;}
.ls8_c00015{letter-spacing:-0.012448pt;}
.lsc_c00015{letter-spacing:-0.006224pt;}
.ls5_c00015{letter-spacing:0.000000pt;}
.ls2_c00015{letter-spacing:0.012448pt;}
.ls3_c00015{letter-spacing:0.018672pt;}
.ls0_c00015{letter-spacing:0.024896pt;}
.ls1_c00015{letter-spacing:0.031120pt;}
.ws9_c00015{word-spacing:-0.354768pt;}
.ws10_c00015{word-spacing:-0.006224pt;}
.ws0_c00015{word-spacing:0.000000pt;}
.ws11_c00015{word-spacing:0.012448pt;}
.ws17_c00015{word-spacing:0.273856pt;}
.ws1d_c00015{word-spacing:0.304976pt;}
.ws1a_c00015{word-spacing:0.311200pt;}
.ws3_c00015{word-spacing:0.323648pt;}
.wsa_c00015{word-spacing:0.329872pt;}
.ws16_c00015{word-spacing:0.348544pt;}
.ws14_c00015{word-spacing:1.282144pt;}
.wse_c00015{word-spacing:1.923216pt;}
.wsf_c00015{word-spacing:1.941888pt;}
.ws19_c00015{word-spacing:2.215744pt;}
.ws13_c00015{word-spacing:2.277984pt;}
.ws12_c00015{word-spacing:2.545616pt;}
.ws6_c00015{word-spacing:2.558064pt;}
.ws7_c00015{word-spacing:2.919056pt;}
.wsd_c00015{word-spacing:3.217808pt;}
.ws2_c00015{word-spacing:3.846432pt;}
.ws4_c00015{word-spacing:5.452224pt;}
.wsb_c00015{word-spacing:5.464672pt;}
.ws5_c00015{word-spacing:5.483344pt;}
.ws1_c00015{word-spacing:7.362992pt;}
.ws18_c00015{word-spacing:8.632688pt;}
.ws8_c00015{word-spacing:15.049632pt;}
.ws1b_c00015{word-spacing:15.665808pt;}
.wsc_c00015{word-spacing:15.958336pt;}
.ws1c_c00015{word-spacing:19.530912pt;}
.ws15_c00015{word-spacing:19.842112pt;}
._1_c00015{margin-left:-1.138992pt;}
._0_c00015{width:1.157664pt;}
.fs0_c00015{font-size:62.240000pt;}
.y0_c00015{bottom:0.000000pt;}
.y2_c00015{bottom:97.547527pt;}
.y1_c00015{bottom:115.387067pt;}
.y21_c00015{bottom:181.941855pt;}
.y20_c00015{bottom:208.742399pt;}
.y1f_c00015{bottom:235.622299pt;}
.y1e_c00015{bottom:262.422843pt;}
.y1d_c00015{bottom:289.302743pt;}
.y1c_c00015{bottom:316.103287pt;}
.y1b_c00015{bottom:342.983187pt;}
.y1a_c00015{bottom:369.783731pt;}
.y19_c00015{bottom:396.663631pt;}
.y18_c00015{bottom:423.464175pt;}
.y17_c00015{bottom:450.344075pt;}
.y16_c00015{bottom:477.144619pt;}
.y15_c00015{bottom:504.024519pt;}
.y14_c00015{bottom:530.744151pt;}
.y13_c00015{bottom:557.624051pt;}
.y12_c00015{bottom:584.424595pt;}
.y11_c00015{bottom:611.304495pt;}
.y10_c00015{bottom:638.105039pt;}
.yf_c00015{bottom:664.984939pt;}
.ye_c00015{bottom:691.785483pt;}
.yd_c00015{bottom:718.665383pt;}
.yc_c00015{bottom:745.465927pt;}
.yb_c00015{bottom:772.345827pt;}
.ya_c00015{bottom:799.146371pt;}
.y9_c00015{bottom:826.026271pt;}
.y8_c00015{bottom:852.906171pt;}
.y7_c00015{bottom:879.706715pt;}
.y6_c00015{bottom:906.586615pt;}
.y5_c00015{bottom:933.387159pt;}
.y4_c00015{bottom:960.267059pt;}
.y3_c00015{bottom:987.067603pt;}
.h1_c00015{height:55.797187pt;}
.h0_c00015{height:1122.666667pt;}
.w0_c00015{width:793.333333pt;}
.x0_c00015{left:0.000000pt;}
.x2_c00015{left:73.519684pt;}
.x1_c00015{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5b9c9facce79e9e991e7af44.woff2')format("woff");}.ff1_c00016{font-family:ff1_c00016;line-height:1.106934;font-style:normal;font-weight:normal;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_71f4419739fd18aeb8508b0e.woff2')format("woff");}.ff2_c00016{font-family:ff2_c00016;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00016{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00016{vertical-align:0.000000px;}
.ls4_c00016{letter-spacing:-0.063018px;}
.lsa_c00016{letter-spacing:-0.049014px;}
.ls8_c00016{letter-spacing:-0.035010px;}
.ls6_c00016{letter-spacing:-0.028008px;}
.ls7_c00016{letter-spacing:-0.021006px;}
.ls9_c00016{letter-spacing:-0.007002px;}
.ls5_c00016{letter-spacing:0.000000px;}
.ls1_c00016{letter-spacing:0.007002px;}
.ls2_c00016{letter-spacing:0.014004px;}
.ls3_c00016{letter-spacing:0.021006px;}
.ls0_c00016{letter-spacing:50.372388px;}
.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;}
}
.ws0_c00016{word-spacing:0.000000px;}
.ws4_c00016{word-spacing:0.014004px;}
.ws1c_c00016{word-spacing:0.021006px;}
.ws2_c00016{word-spacing:0.371106px;}
.ws16_c00016{word-spacing:0.378108px;}
.wse_c00016{word-spacing:0.392112px;}
.ws5_c00016{word-spacing:1.463418px;}
.ws8_c00016{word-spacing:1.792512px;}
.ws13_c00016{word-spacing:3.578022px;}
.ws1b_c00016{word-spacing:3.949128px;}
.wsd_c00016{word-spacing:3.970134px;}
.ws9_c00016{word-spacing:3.977136px;}
.ws17_c00016{word-spacing:4.334238px;}
.ws15_c00016{word-spacing:4.642326px;}
.ws14_c00016{word-spacing:4.649328px;}
.ws12_c00016{word-spacing:4.691340px;}
.wsc_c00016{word-spacing:5.062446px;}
.ws1a_c00016{word-spacing:6.140754px;}
.ws3_c00016{word-spacing:10.089882px;}
.ws19_c00016{word-spacing:11.154186px;}
.wsa_c00016{word-spacing:11.525292px;}
.ws7_c00016{word-spacing:14.025006px;}
.ws6_c00016{word-spacing:14.046012px;}
.wsb_c00016{word-spacing:19.451556px;}
.ws1_c00016{word-spacing:23.029578px;}
.ws18_c00016{word-spacing:24.829092px;}
.ws11_c00016{word-spacing:30.955842px;}
.ws10_c00016{word-spacing:50.029290px;}
.wsf_c00016{word-spacing:50.421402px;}
._0_c00016{margin-left:-1.169334px;}
._1_c00016{width:1.092312px;}
.fc0_c00016{color:rgb(0,0,0);}
.fs0_c00016{font-size:70.020000px;}
.y0_c00016{bottom:0.000000px;}
.y2_c00016{bottom:109.740968px;}
.y1_c00016{bottom:129.810450px;}
.y1f_c00016{bottom:224.216666px;}
.y1e_c00016{bottom:254.367278px;}
.y1d_c00016{bottom:284.607165px;}
.y1c_c00016{bottom:314.757777px;}
.y1b_c00016{bottom:365.247449px;}
.y1a_c00016{bottom:395.576612px;}
.y19_c00016{bottom:425.727224px;}
.y18_c00016{bottom:476.397197px;}
.y17_c00016{bottom:506.637084px;}
.y16_c00016{bottom:536.787696px;}
.y15_c00016{bottom:567.027584px;}
.y14_c00016{bottom:597.087170px;}
.y13_c00016{bottom:627.327057px;}
.y12_c00016{bottom:657.477669px;}
.y11_c00016{bottom:687.717557px;}
.y10_c00016{bottom:717.868169px;}
.yf_c00016{bottom:748.108056px;}
.ye_c00016{bottom:778.258668px;}
.yd_c00016{bottom:808.498556px;}
.yc_c00016{bottom:838.649168px;}
.yb_c00016{bottom:868.889055px;}
.ya_c00016{bottom:899.039667px;}
.y9_c00016{bottom:929.279555px;}
.y8_c00016{bottom:959.519442px;}
.y7_c00016{bottom:989.670054px;}
.y6_c00016{bottom:1019.909942px;}
.y5_c00016{bottom:1050.060553px;}
.y4_c00016{bottom:1080.300441px;}
.y3_c00016{bottom:1110.451053px;}
.h1_c00016{height:62.771836px;}
.h2_c00016{height:63.216299px;}
.h0_c00016{height:1263.000000px;}
.w0_c00016{width:892.500000px;}
.x0_c00016{left:0.000000px;}
.x2_c00016{left:82.709645px;}
.x1_c00016{left:436.680000px;}
@media print{
.v0_c00016{vertical-align:0.000000pt;}
.ls4_c00016{letter-spacing:-0.056016pt;}
.lsa_c00016{letter-spacing:-0.043568pt;}
.ls8_c00016{letter-spacing:-0.031120pt;}
.ls6_c00016{letter-spacing:-0.024896pt;}
.ls7_c00016{letter-spacing:-0.018672pt;}
.ls9_c00016{letter-spacing:-0.006224pt;}
.ls5_c00016{letter-spacing:0.000000pt;}
.ls1_c00016{letter-spacing:0.006224pt;}
.ls2_c00016{letter-spacing:0.012448pt;}
.ls3_c00016{letter-spacing:0.018672pt;}
.ls0_c00016{letter-spacing:44.775456pt;}
.ws0_c00016{word-spacing:0.000000pt;}
.ws4_c00016{word-spacing:0.012448pt;}
.ws1c_c00016{word-spacing:0.018672pt;}
.ws2_c00016{word-spacing:0.329872pt;}
.ws16_c00016{word-spacing:0.336096pt;}
.wse_c00016{word-spacing:0.348544pt;}
.ws5_c00016{word-spacing:1.300816pt;}
.ws8_c00016{word-spacing:1.593344pt;}
.ws13_c00016{word-spacing:3.180464pt;}
.ws1b_c00016{word-spacing:3.510336pt;}
.wsd_c00016{word-spacing:3.529008pt;}
.ws9_c00016{word-spacing:3.535232pt;}
.ws17_c00016{word-spacing:3.852656pt;}
.ws15_c00016{word-spacing:4.126512pt;}
.ws14_c00016{word-spacing:4.132736pt;}
.ws12_c00016{word-spacing:4.170080pt;}
.wsc_c00016{word-spacing:4.499952pt;}
.ws1a_c00016{word-spacing:5.458448pt;}
.ws3_c00016{word-spacing:8.968784pt;}
.ws19_c00016{word-spacing:9.914832pt;}
.wsa_c00016{word-spacing:10.244704pt;}
.ws7_c00016{word-spacing:12.466672pt;}
.ws6_c00016{word-spacing:12.485344pt;}
.wsb_c00016{word-spacing:17.290272pt;}
.ws1_c00016{word-spacing:20.470736pt;}
.ws18_c00016{word-spacing:22.070304pt;}
.ws11_c00016{word-spacing:27.516304pt;}
.ws10_c00016{word-spacing:44.470480pt;}
.wsf_c00016{word-spacing:44.819024pt;}
._0_c00016{margin-left:-1.039408pt;}
._1_c00016{width:0.970944pt;}
.fs0_c00016{font-size:62.240000pt;}
.y0_c00016{bottom:0.000000pt;}
.y2_c00016{bottom:97.547527pt;}
.y1_c00016{bottom:115.387067pt;}
.y1f_c00016{bottom:199.303703pt;}
.y1e_c00016{bottom:226.104247pt;}
.y1d_c00016{bottom:252.984147pt;}
.y1c_c00016{bottom:279.784691pt;}
.y1b_c00016{bottom:324.664399pt;}
.y1a_c00016{bottom:351.623655pt;}
.y19_c00016{bottom:378.424199pt;}
.y18_c00016{bottom:423.464175pt;}
.y17_c00016{bottom:450.344075pt;}
.y16_c00016{bottom:477.144619pt;}
.y15_c00016{bottom:504.024519pt;}
.y14_c00016{bottom:530.744151pt;}
.y13_c00016{bottom:557.624051pt;}
.y12_c00016{bottom:584.424595pt;}
.y11_c00016{bottom:611.304495pt;}
.y10_c00016{bottom:638.105039pt;}
.yf_c00016{bottom:664.984939pt;}
.ye_c00016{bottom:691.785483pt;}
.yd_c00016{bottom:718.665383pt;}
.yc_c00016{bottom:745.465927pt;}
.yb_c00016{bottom:772.345827pt;}
.ya_c00016{bottom:799.146371pt;}
.y9_c00016{bottom:826.026271pt;}
.y8_c00016{bottom:852.906171pt;}
.y7_c00016{bottom:879.706715pt;}
.y6_c00016{bottom:906.586615pt;}
.y5_c00016{bottom:933.387159pt;}
.y4_c00016{bottom:960.267059pt;}
.y3_c00016{bottom:987.067603pt;}
.h1_c00016{height:55.797187pt;}
.h2_c00016{height:56.192266pt;}
.h0_c00016{height:1122.666667pt;}
.w0_c00016{width:793.333333pt;}
.x0_c00016{left:0.000000pt;}
.x2_c00016{left:73.519684pt;}
.x1_c00016{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_880dfa878b68f7b743c06cdb.woff2')format("woff");}.ff1_c00017{font-family:ff1_c00017;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00017{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00017{vertical-align:0.000000px;}
.ls3_c00017{letter-spacing:-0.063018px;}
.ls8_c00017{letter-spacing:-0.049014px;}
.lsb_c00017{letter-spacing:-0.042012px;}
.ls6_c00017{letter-spacing:-0.035010px;}
.ls9_c00017{letter-spacing:-0.028008px;}
.ls5_c00017{letter-spacing:-0.021006px;}
.lsa_c00017{letter-spacing:-0.014004px;}
.ls7_c00017{letter-spacing:-0.007002px;}
.ls4_c00017{letter-spacing:0.000000px;}
.ls1_c00017{letter-spacing:0.007002px;}
.ls0_c00017{letter-spacing:0.014004px;}
.ls2_c00017{letter-spacing:0.021006px;}
.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;}
}
.wsb_c00017{word-spacing:-0.007002px;}
.ws0_c00017{word-spacing:0.000000px;}
.ws15_c00017{word-spacing:0.014004px;}
.ws5_c00017{word-spacing:0.021006px;}
.wse_c00017{word-spacing:0.329094px;}
.ws17_c00017{word-spacing:0.343098px;}
.wsf_c00017{word-spacing:0.364104px;}
.ws1c_c00017{word-spacing:1.456416px;}
.ws13_c00017{word-spacing:2.548728px;}
.wsd_c00017{word-spacing:2.898828px;}
.ws2_c00017{word-spacing:3.213918px;}
.ws1_c00017{word-spacing:3.248928px;}
.ws1b_c00017{word-spacing:3.564018px;}
.ws1d_c00017{word-spacing:4.313232px;}
.wsc_c00017{word-spacing:4.334238px;}
.ws18_c00017{word-spacing:4.677336px;}
.ws4_c00017{word-spacing:4.698342px;}
.ws3_c00017{word-spacing:5.020434px;}
.ws14_c00017{word-spacing:5.398542px;}
.ws1a_c00017{word-spacing:6.126750px;}
.ws19_c00017{word-spacing:6.476850px;}
.ws16_c00017{word-spacing:8.654472px;}
.ws12_c00017{word-spacing:10.811088px;}
.ws8_c00017{word-spacing:12.246498px;}
.ws9_c00017{word-spacing:12.561588px;}
.wsa_c00017{word-spacing:12.603600px;}
.ws7_c00017{word-spacing:12.638610px;}
.ws11_c00017{word-spacing:16.202628px;}
.ws10_c00017{word-spacing:16.608744px;}
.ws6_c00017{word-spacing:18.716346px;}
._1_c00017{margin-left:-1.134324px;}
._0_c00017{width:1.204344px;}
.fc0_c00017{color:rgb(0,0,0);}
.fs0_c00017{font-size:70.020000px;}
.y0_c00017{bottom:0.000000px;}
.y2_c00017{bottom:109.740968px;}
.y1_c00017{bottom:129.810450px;}
.y21_c00017{bottom:190.015397px;}
.y20_c00017{bottom:220.255284px;}
.y1f_c00017{bottom:250.405896px;}
.y1e_c00017{bottom:280.645784px;}
.y1d_c00017{bottom:310.796396px;}
.y1c_c00017{bottom:341.036283px;}
.y1b_c00017{bottom:371.186895px;}
.y1a_c00017{bottom:401.426783px;}
.y19_c00017{bottom:431.577395px;}
.y18_c00017{bottom:461.817282px;}
.y17_c00017{bottom:491.967894px;}
.y16_c00017{bottom:522.207782px;}
.y15_c00017{bottom:552.358394px;}
.y14_c00017{bottom:582.598281px;}
.y13_c00017{bottom:612.748893px;}
.y12_c00017{bottom:642.988781px;}
.y11_c00017{bottom:673.139393px;}
.y10_c00017{bottom:703.379280px;}
.yf_c00017{bottom:733.529892px;}
.ye_c00017{bottom:763.769780px;}
.yd_c00017{bottom:794.009667px;}
.yc_c00017{bottom:824.160279px;}
.yb_c00017{bottom:854.400166px;}
.ya_c00017{bottom:884.550778px;}
.y9_c00017{bottom:914.790666px;}
.y8_c00017{bottom:944.850252px;}
.y7_c00017{bottom:975.090140px;}
.y6_c00017{bottom:1019.909942px;}
.y5_c00017{bottom:1050.060553px;}
.y4_c00017{bottom:1080.300441px;}
.y3_c00017{bottom:1110.451053px;}
.h1_c00017{height:62.771836px;}
.h0_c00017{height:1263.000000px;}
.w0_c00017{width:892.500000px;}
.x0_c00017{left:0.000000px;}
.x2_c00017{left:82.709645px;}
.x1_c00017{left:436.680000px;}
@media print{
.v0_c00017{vertical-align:0.000000pt;}
.ls3_c00017{letter-spacing:-0.056016pt;}
.ls8_c00017{letter-spacing:-0.043568pt;}
.lsb_c00017{letter-spacing:-0.037344pt;}
.ls6_c00017{letter-spacing:-0.031120pt;}
.ls9_c00017{letter-spacing:-0.024896pt;}
.ls5_c00017{letter-spacing:-0.018672pt;}
.lsa_c00017{letter-spacing:-0.012448pt;}
.ls7_c00017{letter-spacing:-0.006224pt;}
.ls4_c00017{letter-spacing:0.000000pt;}
.ls1_c00017{letter-spacing:0.006224pt;}
.ls0_c00017{letter-spacing:0.012448pt;}
.ls2_c00017{letter-spacing:0.018672pt;}
.wsb_c00017{word-spacing:-0.006224pt;}
.ws0_c00017{word-spacing:0.000000pt;}
.ws15_c00017{word-spacing:0.012448pt;}
.ws5_c00017{word-spacing:0.018672pt;}
.wse_c00017{word-spacing:0.292528pt;}
.ws17_c00017{word-spacing:0.304976pt;}
.wsf_c00017{word-spacing:0.323648pt;}
.ws1c_c00017{word-spacing:1.294592pt;}
.ws13_c00017{word-spacing:2.265536pt;}
.wsd_c00017{word-spacing:2.576736pt;}
.ws2_c00017{word-spacing:2.856816pt;}
.ws1_c00017{word-spacing:2.887936pt;}
.ws1b_c00017{word-spacing:3.168016pt;}
.ws1d_c00017{word-spacing:3.833984pt;}
.wsc_c00017{word-spacing:3.852656pt;}
.ws18_c00017{word-spacing:4.157632pt;}
.ws4_c00017{word-spacing:4.176304pt;}
.ws3_c00017{word-spacing:4.462608pt;}
.ws14_c00017{word-spacing:4.798704pt;}
.ws1a_c00017{word-spacing:5.446000pt;}
.ws19_c00017{word-spacing:5.757200pt;}
.ws16_c00017{word-spacing:7.692864pt;}
.ws12_c00017{word-spacing:9.609856pt;}
.ws8_c00017{word-spacing:10.885776pt;}
.ws9_c00017{word-spacing:11.165856pt;}
.wsa_c00017{word-spacing:11.203200pt;}
.ws7_c00017{word-spacing:11.234320pt;}
.ws11_c00017{word-spacing:14.402336pt;}
.ws10_c00017{word-spacing:14.763328pt;}
.ws6_c00017{word-spacing:16.636752pt;}
._1_c00017{margin-left:-1.008288pt;}
._0_c00017{width:1.070528pt;}
.fs0_c00017{font-size:62.240000pt;}
.y0_c00017{bottom:0.000000pt;}
.y2_c00017{bottom:97.547527pt;}
.y1_c00017{bottom:115.387067pt;}
.y21_c00017{bottom:168.902575pt;}
.y20_c00017{bottom:195.782475pt;}
.y1f_c00017{bottom:222.583019pt;}
.y1e_c00017{bottom:249.462919pt;}
.y1d_c00017{bottom:276.263463pt;}
.y1c_c00017{bottom:303.143363pt;}
.y1b_c00017{bottom:329.943907pt;}
.y1a_c00017{bottom:356.823807pt;}
.y19_c00017{bottom:383.624351pt;}
.y18_c00017{bottom:410.504251pt;}
.y17_c00017{bottom:437.304795pt;}
.y16_c00017{bottom:464.184695pt;}
.y15_c00017{bottom:490.985239pt;}
.y14_c00017{bottom:517.865139pt;}
.y13_c00017{bottom:544.665683pt;}
.y12_c00017{bottom:571.545583pt;}
.y11_c00017{bottom:598.346127pt;}
.y10_c00017{bottom:625.226027pt;}
.yf_c00017{bottom:652.026571pt;}
.ye_c00017{bottom:678.906471pt;}
.yd_c00017{bottom:705.786371pt;}
.yc_c00017{bottom:732.586915pt;}
.yb_c00017{bottom:759.466815pt;}
.ya_c00017{bottom:786.267359pt;}
.y9_c00017{bottom:813.147259pt;}
.y8_c00017{bottom:839.866891pt;}
.y7_c00017{bottom:866.746791pt;}
.y6_c00017{bottom:906.586615pt;}
.y5_c00017{bottom:933.387159pt;}
.y4_c00017{bottom:960.267059pt;}
.y3_c00017{bottom:987.067603pt;}
.h1_c00017{height:55.797187pt;}
.h0_c00017{height:1122.666667pt;}
.w0_c00017{width:793.333333pt;}
.x0_c00017{left:0.000000pt;}
.x2_c00017{left:73.519684pt;}
.x1_c00017{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d60298b6548b94593bd44cab.woff2')format("woff");}.ff1_c00018{font-family:ff1_c00018;line-height:1.106934;font-style:normal;font-weight:normal;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_34a153fa56c3bb8718baf093.woff2')format("woff");}.ff2_c00018{font-family:ff2_c00018;line-height:1.104492;font-style:normal;font-weight:normal;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_97e062211a21d847ef122377.woff2')format("woff");}.ff3_c00018{font-family:ff3_c00018;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00018{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00018{vertical-align:0.000000px;}
.ls6_c00018{letter-spacing:-0.063018px;}
.lsd_c00018{letter-spacing:-0.049014px;}
.ls9_c00018{letter-spacing:-0.035010px;}
.lsc_c00018{letter-spacing:-0.028008px;}
.lsb_c00018{letter-spacing:-0.021006px;}
.lsa_c00018{letter-spacing:-0.014004px;}
.ls8_c00018{letter-spacing:-0.007002px;}
.ls7_c00018{letter-spacing:0.000000px;}
.ls4_c00018{letter-spacing:0.007002px;}
.ls0_c00018{letter-spacing:0.014004px;}
.ls2_c00018{letter-spacing:0.021006px;}
.ls3_c00018{letter-spacing:0.035010px;}
.ls1_c00018{letter-spacing:0.126036px;}
.ls5_c00018{letter-spacing:0.336096px;}
.sc__c00018{text-shadow:none;}
.sc0_c00018{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00018{-webkit-text-stroke:0px transparent;}
.sc0_c00018{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00018{word-spacing:0.000000px;}
.ws14_c00018{word-spacing:0.007002px;}
.ws12_c00018{word-spacing:0.021006px;}
.wsd_c00018{word-spacing:0.035010px;}
.ws3_c00018{word-spacing:0.217062px;}
.ws11_c00018{word-spacing:0.336096px;}
.ws1_c00018{word-spacing:1.792512px;}
.ws6_c00018{word-spacing:3.234924px;}
.ws4_c00018{word-spacing:3.564018px;}
.ws13_c00018{word-spacing:3.592026px;}
.wsf_c00018{word-spacing:4.663332px;}
.wse_c00018{word-spacing:4.677336px;}
.ws2_c00018{word-spacing:5.783652px;}
.wsb_c00018{word-spacing:6.833952px;}
.wsc_c00018{word-spacing:6.854958px;}
.ws8_c00018{word-spacing:7.926264px;}
.ws5_c00018{word-spacing:10.033866px;}
.wsa_c00018{word-spacing:15.453414px;}
.ws9_c00018{word-spacing:15.488424px;}
.ws16_c00018{word-spacing:15.852528px;}
.ws17_c00018{word-spacing:16.195626px;}
.ws10_c00018{word-spacing:18.702342px;}
.ws7_c00018{word-spacing:25.200198px;}
.ws18_c00018{word-spacing:38.511000px;}
.ws15_c00018{word-spacing:42.460128px;}
._1_c00018{margin-left:-5.405544px;}
._2_c00018{margin-left:-1.274364px;}
._0_c00018{width:1.064304px;}
.fc0_c00018{color:rgb(0,0,0);}
.fs0_c00018{font-size:70.020000px;}
.y0_c00018{bottom:0.000000px;}
.y2_c00018{bottom:109.740968px;}
.y1_c00018{bottom:129.810450px;}
.y21_c00018{bottom:190.013646px;}
.y20_c00018{bottom:220.253534px;}
.y1f_c00018{bottom:250.404146px;}
.y1e_c00018{bottom:280.644033px;}
.y1d_c00018{bottom:310.794645px;}
.y1c_c00018{bottom:340.945257px;}
.y1b_c00018{bottom:378.475977px;}
.y1a_c00018{bottom:416.006697px;}
.y19_c00018{bottom:446.246585px;}
.y18_c00018{bottom:476.397197px;}
.y17_c00018{bottom:506.637084px;}
.y16_c00018{bottom:536.787696px;}
.y15_c00018{bottom:567.027584px;}
.y14_c00018{bottom:597.087170px;}
.y13_c00018{bottom:627.327057px;}
.y12_c00018{bottom:657.477669px;}
.y11_c00018{bottom:687.717557px;}
.y10_c00018{bottom:717.868169px;}
.yf_c00018{bottom:748.108056px;}
.ye_c00018{bottom:778.258668px;}
.yd_c00018{bottom:808.498556px;}
.yc_c00018{bottom:838.649168px;}
.yb_c00018{bottom:868.889055px;}
.ya_c00018{bottom:899.039667px;}
.y9_c00018{bottom:929.279555px;}
.y8_c00018{bottom:959.519442px;}
.y7_c00018{bottom:989.670054px;}
.y6_c00018{bottom:1019.909942px;}
.y5_c00018{bottom:1050.060553px;}
.y4_c00018{bottom:1080.300441px;}
.y3_c00018{bottom:1110.451053px;}
.h1_c00018{height:62.771836px;}
.h2_c00018{height:63.216299px;}
.h0_c00018{height:1263.000000px;}
.w0_c00018{width:892.500000px;}
.x0_c00018{left:0.000000px;}
.x2_c00018{left:82.709645px;}
.x1_c00018{left:436.680000px;}
@media print{
.v0_c00018{vertical-align:0.000000pt;}
.ls6_c00018{letter-spacing:-0.056016pt;}
.lsd_c00018{letter-spacing:-0.043568pt;}
.ls9_c00018{letter-spacing:-0.031120pt;}
.lsc_c00018{letter-spacing:-0.024896pt;}
.lsb_c00018{letter-spacing:-0.018672pt;}
.lsa_c00018{letter-spacing:-0.012448pt;}
.ls8_c00018{letter-spacing:-0.006224pt;}
.ls7_c00018{letter-spacing:0.000000pt;}
.ls4_c00018{letter-spacing:0.006224pt;}
.ls0_c00018{letter-spacing:0.012448pt;}
.ls2_c00018{letter-spacing:0.018672pt;}
.ls3_c00018{letter-spacing:0.031120pt;}
.ls1_c00018{letter-spacing:0.112032pt;}
.ls5_c00018{letter-spacing:0.298752pt;}
.ws0_c00018{word-spacing:0.000000pt;}
.ws14_c00018{word-spacing:0.006224pt;}
.ws12_c00018{word-spacing:0.018672pt;}
.wsd_c00018{word-spacing:0.031120pt;}
.ws3_c00018{word-spacing:0.192944pt;}
.ws11_c00018{word-spacing:0.298752pt;}
.ws1_c00018{word-spacing:1.593344pt;}
.ws6_c00018{word-spacing:2.875488pt;}
.ws4_c00018{word-spacing:3.168016pt;}
.ws13_c00018{word-spacing:3.192912pt;}
.wsf_c00018{word-spacing:4.145184pt;}
.wse_c00018{word-spacing:4.157632pt;}
.ws2_c00018{word-spacing:5.141024pt;}
.wsb_c00018{word-spacing:6.074624pt;}
.wsc_c00018{word-spacing:6.093296pt;}
.ws8_c00018{word-spacing:7.045568pt;}
.ws5_c00018{word-spacing:8.918992pt;}
.wsa_c00018{word-spacing:13.736368pt;}
.ws9_c00018{word-spacing:13.767488pt;}
.ws16_c00018{word-spacing:14.091136pt;}
.ws17_c00018{word-spacing:14.396112pt;}
.ws10_c00018{word-spacing:16.624304pt;}
.ws7_c00018{word-spacing:22.400176pt;}
.ws18_c00018{word-spacing:34.232000pt;}
.ws15_c00018{word-spacing:37.742336pt;}
._1_c00018{margin-left:-4.804928pt;}
._2_c00018{margin-left:-1.132768pt;}
._0_c00018{width:0.946048pt;}
.fs0_c00018{font-size:62.240000pt;}
.y0_c00018{bottom:0.000000pt;}
.y2_c00018{bottom:97.547527pt;}
.y1_c00018{bottom:115.387067pt;}
.y21_c00018{bottom:168.901019pt;}
.y20_c00018{bottom:195.780919pt;}
.y1f_c00018{bottom:222.581463pt;}
.y1e_c00018{bottom:249.461363pt;}
.y1d_c00018{bottom:276.261907pt;}
.y1c_c00018{bottom:303.062451pt;}
.y1b_c00018{bottom:336.423091pt;}
.y1a_c00018{bottom:369.783731pt;}
.y19_c00018{bottom:396.663631pt;}
.y18_c00018{bottom:423.464175pt;}
.y17_c00018{bottom:450.344075pt;}
.y16_c00018{bottom:477.144619pt;}
.y15_c00018{bottom:504.024519pt;}
.y14_c00018{bottom:530.744151pt;}
.y13_c00018{bottom:557.624051pt;}
.y12_c00018{bottom:584.424595pt;}
.y11_c00018{bottom:611.304495pt;}
.y10_c00018{bottom:638.105039pt;}
.yf_c00018{bottom:664.984939pt;}
.ye_c00018{bottom:691.785483pt;}
.yd_c00018{bottom:718.665383pt;}
.yc_c00018{bottom:745.465927pt;}
.yb_c00018{bottom:772.345827pt;}
.ya_c00018{bottom:799.146371pt;}
.y9_c00018{bottom:826.026271pt;}
.y8_c00018{bottom:852.906171pt;}
.y7_c00018{bottom:879.706715pt;}
.y6_c00018{bottom:906.586615pt;}
.y5_c00018{bottom:933.387159pt;}
.y4_c00018{bottom:960.267059pt;}
.y3_c00018{bottom:987.067603pt;}
.h1_c00018{height:55.797187pt;}
.h2_c00018{height:56.192266pt;}
.h0_c00018{height:1122.666667pt;}
.w0_c00018{width:793.333333pt;}
.x0_c00018{left:0.000000pt;}
.x2_c00018{left:73.519684pt;}
.x1_c00018{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4c838888ba1581ab7842e8bf.woff2')format("woff");}.ff1_c00019{font-family:ff1_c00019;line-height:1.106934;font-style:normal;font-weight:normal;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_012082b15be60db255f5d202.woff2')format("woff");}.ff2_c00019{font-family:ff2_c00019;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00019;src:url('chunks/assets/font_7a10a91edfdb2d08f4d5d378.woff2')format("woff");}.ff3_c00019{font-family:ff3_c00019;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00019{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00019{vertical-align:0.000000px;}
.ls9_c00019{letter-spacing:-0.063018px;}
.ls12_c00019{letter-spacing:-0.049014px;}
.lse_c00019{letter-spacing:-0.042012px;}
.ls10_c00019{letter-spacing:-0.035010px;}
.lsb_c00019{letter-spacing:-0.028008px;}
.ls11_c00019{letter-spacing:-0.021006px;}
.lsc_c00019{letter-spacing:-0.014004px;}
.lsf_c00019{letter-spacing:-0.007002px;}
.lsa_c00019{letter-spacing:0.000000px;}
.ls0_c00019{letter-spacing:0.007002px;}
.ls1_c00019{letter-spacing:0.021006px;}
.ls6_c00019{letter-spacing:0.028008px;}
.ls3_c00019{letter-spacing:0.035010px;}
.ls5_c00019{letter-spacing:0.049014px;}
.lsd_c00019{letter-spacing:0.343098px;}
.ls8_c00019{letter-spacing:0.693198px;}
.ls7_c00019{letter-spacing:1.057302px;}
.ls4_c00019{letter-spacing:2.492712px;}
.ls2_c00019{letter-spacing:5.013432px;}
.sc__c00019{text-shadow:none;}
.sc0_c00019{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00019{-webkit-text-stroke:0px transparent;}
.sc0_c00019{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00019{word-spacing:-19.444554px;}
.ws1_c00019{word-spacing:0.000000px;}
.ws13_c00019{word-spacing:0.014004px;}
.ws2a_c00019{word-spacing:0.371106px;}
.ws29_c00019{word-spacing:0.385110px;}
.ws21_c00019{word-spacing:0.728208px;}
.ws20_c00019{word-spacing:0.742212px;}
.ws1c_c00019{word-spacing:1.036296px;}
.ws24_c00019{word-spacing:1.057302px;}
.ws1d_c00019{word-spacing:1.428408px;}
.wsc_c00019{word-spacing:2.513718px;}
.ws23_c00019{word-spacing:2.856816px;}
.wsd_c00019{word-spacing:2.877822px;}
.ws22_c00019{word-spacing:2.891826px;}
.wsb_c00019{word-spacing:4.628322px;}
.wsa_c00019{word-spacing:4.691340px;}
.ws26_c00019{word-spacing:5.384538px;}
.ws27_c00019{word-spacing:5.412546px;}
.ws25_c00019{word-spacing:5.433552px;}
.ws1a_c00019{word-spacing:6.854958px;}
.ws1b_c00019{word-spacing:6.868962px;}
.ws1f_c00019{word-spacing:7.205058px;}
.ws1e_c00019{word-spacing:7.541154px;}
.ws9_c00019{word-spacing:7.590168px;}
.ws10_c00019{word-spacing:7.926264px;}
.ws7_c00019{word-spacing:8.619462px;}
.ws12_c00019{word-spacing:8.934552px;}
.ws11_c00019{word-spacing:8.990568px;}
.ws14_c00019{word-spacing:10.075878px;}
.ws19_c00019{word-spacing:10.082880px;}
.ws18_c00019{word-spacing:10.103886px;}
.ws15_c00019{word-spacing:10.110888px;}
.ws5_c00019{word-spacing:11.511288px;}
.ws16_c00019{word-spacing:13.667904px;}
.ws2b_c00019{word-spacing:13.695912px;}
.ws17_c00019{word-spacing:13.709916px;}
.ws2c_c00019{word-spacing:14.039010px;}
.ws2e_c00019{word-spacing:15.824520px;}
.ws3_c00019{word-spacing:17.280936px;}
.ws2_c00019{word-spacing:17.294940px;}
.ws4_c00019{word-spacing:17.308944px;}
.wse_c00019{word-spacing:18.345240px;}
.wsf_c00019{word-spacing:18.373248px;}
.ws28_c00019{word-spacing:21.265074px;}
.ws2f_c00019{word-spacing:21.587166px;}
.ws2d_c00019{word-spacing:28.778220px;}
.ws8_c00019{word-spacing:31.284936px;}
.ws6_c00019{word-spacing:33.469560px;}
.ws30_c00019{word-spacing:38.882106px;}
._2_c00019{margin-left:-1.050300px;}
._0_c00019{width:1.015290px;}
._1_c00019{width:17.512002px;}
.fc0_c00019{color:rgb(0,0,0);}
.fs0_c00019{font-size:70.020000px;}
.y0_c00019{bottom:0.000000px;}
.y2_c00019{bottom:109.740968px;}
.y1_c00019{bottom:129.810450px;}
.y20_c00019{bottom:193.976778px;}
.y1f_c00019{bottom:224.216666px;}
.y1e_c00019{bottom:254.367278px;}
.y1d_c00019{bottom:284.607165px;}
.y1c_c00019{bottom:314.757777px;}
.y1b_c00019{bottom:344.997665px;}
.y1a_c00019{bottom:375.148277px;}
.y19_c00019{bottom:405.388164px;}
.y18_c00019{bottom:435.538776px;}
.y17_c00019{bottom:465.778664px;}
.y16_c00019{bottom:495.929276px;}
.y15_c00019{bottom:546.418947px;}
.y14_c00019{bottom:576.748110px;}
.y13_c00019{bottom:606.898722px;}
.y12_c00019{bottom:637.138610px;}
.y11_c00019{bottom:667.289222px;}
.y10_c00019{bottom:697.529109px;}
.yf_c00019{bottom:727.588695px;}
.ye_c00019{bottom:778.258668px;}
.yd_c00019{bottom:808.498556px;}
.yc_c00019{bottom:838.649168px;}
.yb_c00019{bottom:868.889055px;}
.ya_c00019{bottom:899.039667px;}
.y9_c00019{bottom:929.279555px;}
.y8_c00019{bottom:959.519442px;}
.y7_c00019{bottom:989.670054px;}
.y6_c00019{bottom:1019.909942px;}
.y5_c00019{bottom:1050.060553px;}
.y4_c00019{bottom:1080.300441px;}
.y3_c00019{bottom:1110.451053px;}
.h1_c00019{height:62.771836px;}
.h2_c00019{height:63.216299px;}
.h0_c00019{height:1263.000000px;}
.w0_c00019{width:892.500000px;}
.x0_c00019{left:0.000000px;}
.x2_c00019{left:82.709645px;}
.x1_c00019{left:436.680000px;}
@media print{
.v0_c00019{vertical-align:0.000000pt;}
.ls9_c00019{letter-spacing:-0.056016pt;}
.ls12_c00019{letter-spacing:-0.043568pt;}
.lse_c00019{letter-spacing:-0.037344pt;}
.ls10_c00019{letter-spacing:-0.031120pt;}
.lsb_c00019{letter-spacing:-0.024896pt;}
.ls11_c00019{letter-spacing:-0.018672pt;}
.lsc_c00019{letter-spacing:-0.012448pt;}
.lsf_c00019{letter-spacing:-0.006224pt;}
.lsa_c00019{letter-spacing:0.000000pt;}
.ls0_c00019{letter-spacing:0.006224pt;}
.ls1_c00019{letter-spacing:0.018672pt;}
.ls6_c00019{letter-spacing:0.024896pt;}
.ls3_c00019{letter-spacing:0.031120pt;}
.ls5_c00019{letter-spacing:0.043568pt;}
.lsd_c00019{letter-spacing:0.304976pt;}
.ls8_c00019{letter-spacing:0.616176pt;}
.ls7_c00019{letter-spacing:0.939824pt;}
.ls4_c00019{letter-spacing:2.215744pt;}
.ls2_c00019{letter-spacing:4.456384pt;}
.ws0_c00019{word-spacing:-17.284048pt;}
.ws1_c00019{word-spacing:0.000000pt;}
.ws13_c00019{word-spacing:0.012448pt;}
.ws2a_c00019{word-spacing:0.329872pt;}
.ws29_c00019{word-spacing:0.342320pt;}
.ws21_c00019{word-spacing:0.647296pt;}
.ws20_c00019{word-spacing:0.659744pt;}
.ws1c_c00019{word-spacing:0.921152pt;}
.ws24_c00019{word-spacing:0.939824pt;}
.ws1d_c00019{word-spacing:1.269696pt;}
.wsc_c00019{word-spacing:2.234416pt;}
.ws23_c00019{word-spacing:2.539392pt;}
.wsd_c00019{word-spacing:2.558064pt;}
.ws22_c00019{word-spacing:2.570512pt;}
.wsb_c00019{word-spacing:4.114064pt;}
.wsa_c00019{word-spacing:4.170080pt;}
.ws26_c00019{word-spacing:4.786256pt;}
.ws27_c00019{word-spacing:4.811152pt;}
.ws25_c00019{word-spacing:4.829824pt;}
.ws1a_c00019{word-spacing:6.093296pt;}
.ws1b_c00019{word-spacing:6.105744pt;}
.ws1f_c00019{word-spacing:6.404496pt;}
.ws1e_c00019{word-spacing:6.703248pt;}
.ws9_c00019{word-spacing:6.746816pt;}
.ws10_c00019{word-spacing:7.045568pt;}
.ws7_c00019{word-spacing:7.661744pt;}
.ws12_c00019{word-spacing:7.941824pt;}
.ws11_c00019{word-spacing:7.991616pt;}
.ws14_c00019{word-spacing:8.956336pt;}
.ws19_c00019{word-spacing:8.962560pt;}
.ws18_c00019{word-spacing:8.981232pt;}
.ws15_c00019{word-spacing:8.987456pt;}
.ws5_c00019{word-spacing:10.232256pt;}
.ws16_c00019{word-spacing:12.149248pt;}
.ws2b_c00019{word-spacing:12.174144pt;}
.ws17_c00019{word-spacing:12.186592pt;}
.ws2c_c00019{word-spacing:12.479120pt;}
.ws2e_c00019{word-spacing:14.066240pt;}
.ws3_c00019{word-spacing:15.360832pt;}
.ws2_c00019{word-spacing:15.373280pt;}
.ws4_c00019{word-spacing:15.385728pt;}
.wse_c00019{word-spacing:16.306880pt;}
.wsf_c00019{word-spacing:16.331776pt;}
.ws28_c00019{word-spacing:18.902288pt;}
.ws2f_c00019{word-spacing:19.188592pt;}
.ws2d_c00019{word-spacing:25.580640pt;}
.ws8_c00019{word-spacing:27.808832pt;}
.ws6_c00019{word-spacing:29.750720pt;}
.ws30_c00019{word-spacing:34.561872pt;}
._2_c00019{margin-left:-0.933600pt;}
._0_c00019{width:0.902480pt;}
._1_c00019{width:15.566224pt;}
.fs0_c00019{font-size:62.240000pt;}
.y0_c00019{bottom:0.000000pt;}
.y2_c00019{bottom:97.547527pt;}
.y1_c00019{bottom:115.387067pt;}
.y20_c00019{bottom:172.423803pt;}
.y1f_c00019{bottom:199.303703pt;}
.y1e_c00019{bottom:226.104247pt;}
.y1d_c00019{bottom:252.984147pt;}
.y1c_c00019{bottom:279.784691pt;}
.y1b_c00019{bottom:306.664591pt;}
.y1a_c00019{bottom:333.465135pt;}
.y19_c00019{bottom:360.345035pt;}
.y18_c00019{bottom:387.145579pt;}
.y17_c00019{bottom:414.025479pt;}
.y16_c00019{bottom:440.826023pt;}
.y15_c00019{bottom:485.705731pt;}
.y14_c00019{bottom:512.664987pt;}
.y13_c00019{bottom:539.465531pt;}
.y12_c00019{bottom:566.345431pt;}
.y11_c00019{bottom:593.145975pt;}
.y10_c00019{bottom:620.025875pt;}
.yf_c00019{bottom:646.745507pt;}
.ye_c00019{bottom:691.785483pt;}
.yd_c00019{bottom:718.665383pt;}
.yc_c00019{bottom:745.465927pt;}
.yb_c00019{bottom:772.345827pt;}
.ya_c00019{bottom:799.146371pt;}
.y9_c00019{bottom:826.026271pt;}
.y8_c00019{bottom:852.906171pt;}
.y7_c00019{bottom:879.706715pt;}
.y6_c00019{bottom:906.586615pt;}
.y5_c00019{bottom:933.387159pt;}
.y4_c00019{bottom:960.267059pt;}
.y3_c00019{bottom:987.067603pt;}
.h1_c00019{height:55.797187pt;}
.h2_c00019{height:56.192266pt;}
.h0_c00019{height:1122.666667pt;}
.w0_c00019{width:793.333333pt;}
.x0_c00019{left:0.000000pt;}
.x2_c00019{left:73.519684pt;}
.x1_c00019{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0b72073a6a15796ca9a64824.woff2')format("woff");}.ff1_c00020{font-family:ff1_c00020;line-height:1.106934;font-style:normal;font-weight:normal;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_c9fc72077fcc541fc392f94b.woff2')format("woff");}.ff2_c00020{font-family:ff2_c00020;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00020;src:url('chunks/assets/font_4ef73a49d7d17aa419aa17df.woff2')format("woff");}.ff3_c00020{font-family:ff3_c00020;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00020{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00020{vertical-align:0.000000px;}
.ls4_c00020{letter-spacing:-0.063018px;}
.ls9_c00020{letter-spacing:-0.049014px;}
.lsd_c00020{letter-spacing:-0.042012px;}
.ls8_c00020{letter-spacing:-0.035010px;}
.lsc_c00020{letter-spacing:-0.028008px;}
.ls7_c00020{letter-spacing:-0.021006px;}
.ls6_c00020{letter-spacing:-0.014004px;}
.lsa_c00020{letter-spacing:-0.007002px;}
.ls5_c00020{letter-spacing:0.000000px;}
.ls2_c00020{letter-spacing:0.007002px;}
.ls3_c00020{letter-spacing:0.014004px;}
.ls0_c00020{letter-spacing:0.021006px;}
.lsb_c00020{letter-spacing:0.343098px;}
.ls1_c00020{letter-spacing:11.854386px;}
.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;}
}
.wsa_c00020{word-spacing:-0.035010px;}
.ws14_c00020{word-spacing:-0.021006px;}
.ws20_c00020{word-spacing:-0.014004px;}
.ws0_c00020{word-spacing:0.000000px;}
.ws2_c00020{word-spacing:0.007002px;}
.ws17_c00020{word-spacing:0.021006px;}
.ws11_c00020{word-spacing:0.350100px;}
.ws6_c00020{word-spacing:0.721206px;}
.ws5_c00020{word-spacing:0.756216px;}
.ws1d_c00020{word-spacing:1.064304px;}
.ws25_c00020{word-spacing:1.764504px;}
.ws1a_c00020{word-spacing:1.785510px;}
.ws1c_c00020{word-spacing:1.799514px;}
.ws26_c00020{word-spacing:1.820520px;}
.ws1b_c00020{word-spacing:2.149614px;}
.ws8_c00020{word-spacing:3.606030px;}
.ws9_c00020{word-spacing:3.956130px;}
.ws21_c00020{word-spacing:4.306230px;}
.ws10_c00020{word-spacing:4.684338px;}
.wsf_c00020{word-spacing:4.698342px;}
.ws16_c00020{word-spacing:6.105744px;}
.ws13_c00020{word-spacing:6.119748px;}
.ws15_c00020{word-spacing:6.133752px;}
.ws12_c00020{word-spacing:6.140754px;}
.ws1_c00020{word-spacing:6.476850px;}
.ws18_c00020{word-spacing:7.534152px;}
.ws19_c00020{word-spacing:7.569162px;}
.wsb_c00020{word-spacing:9.354672px;}
.wsc_c00020{word-spacing:9.361674px;}
.ws1e_c00020{word-spacing:9.725778px;}
.ws1f_c00020{word-spacing:10.082880px;}
.ws24_c00020{word-spacing:10.832094px;}
.ws4_c00020{word-spacing:11.161188px;}
.ws3_c00020{word-spacing:11.182194px;}
.wse_c00020{word-spacing:11.532294px;}
.wsd_c00020{word-spacing:11.889396px;}
.ws23_c00020{word-spacing:12.974706px;}
.ws22_c00020{word-spacing:12.988710px;}
.ws7_c00020{word-spacing:25.564302px;}
._2_c00020{margin-left:-11.049156px;}
._3_c00020{margin-left:-5.930694px;}
._1_c00020{margin-left:-1.120320px;}
._0_c00020{width:1.295370px;}
._4_c00020{width:2.751786px;}
.fc0_c00020{color:rgb(0,0,0);}
.fs0_c00020{font-size:70.020000px;}
.y0_c00020{bottom:0.000000px;}
.y2_c00020{bottom:109.740968px;}
.y1_c00020{bottom:129.810450px;}
.y20_c00020{bottom:193.976778px;}
.y1f_c00020{bottom:224.216666px;}
.y1e_c00020{bottom:254.367278px;}
.y1d_c00020{bottom:284.607165px;}
.y1c_c00020{bottom:335.096837px;}
.y1b_c00020{bottom:365.336724px;}
.y1a_c00020{bottom:395.576612px;}
.y19_c00020{bottom:425.727224px;}
.y18_c00020{bottom:455.967111px;}
.y17_c00020{bottom:506.637084px;}
.y16_c00020{bottom:536.787696px;}
.y15_c00020{bottom:567.027584px;}
.y14_c00020{bottom:597.087170px;}
.y13_c00020{bottom:627.327057px;}
.y12_c00020{bottom:657.477669px;}
.y11_c00020{bottom:687.717557px;}
.y10_c00020{bottom:717.868169px;}
.yf_c00020{bottom:748.108056px;}
.ye_c00020{bottom:778.258668px;}
.yd_c00020{bottom:808.498556px;}
.yc_c00020{bottom:838.649168px;}
.yb_c00020{bottom:868.889055px;}
.ya_c00020{bottom:899.039667px;}
.y9_c00020{bottom:929.279555px;}
.y8_c00020{bottom:959.519442px;}
.y7_c00020{bottom:989.670054px;}
.y6_c00020{bottom:1019.909942px;}
.y5_c00020{bottom:1050.060553px;}
.y4_c00020{bottom:1080.300441px;}
.y3_c00020{bottom:1110.451053px;}
.h1_c00020{height:62.771836px;}
.h2_c00020{height:63.216299px;}
.h0_c00020{height:1263.000000px;}
.w0_c00020{width:892.500000px;}
.x0_c00020{left:0.000000px;}
.x2_c00020{left:82.709645px;}
.x1_c00020{left:436.680000px;}
@media print{
.v0_c00020{vertical-align:0.000000pt;}
.ls4_c00020{letter-spacing:-0.056016pt;}
.ls9_c00020{letter-spacing:-0.043568pt;}
.lsd_c00020{letter-spacing:-0.037344pt;}
.ls8_c00020{letter-spacing:-0.031120pt;}
.lsc_c00020{letter-spacing:-0.024896pt;}
.ls7_c00020{letter-spacing:-0.018672pt;}
.ls6_c00020{letter-spacing:-0.012448pt;}
.lsa_c00020{letter-spacing:-0.006224pt;}
.ls5_c00020{letter-spacing:0.000000pt;}
.ls2_c00020{letter-spacing:0.006224pt;}
.ls3_c00020{letter-spacing:0.012448pt;}
.ls0_c00020{letter-spacing:0.018672pt;}
.lsb_c00020{letter-spacing:0.304976pt;}
.ls1_c00020{letter-spacing:10.537232pt;}
.wsa_c00020{word-spacing:-0.031120pt;}
.ws14_c00020{word-spacing:-0.018672pt;}
.ws20_c00020{word-spacing:-0.012448pt;}
.ws0_c00020{word-spacing:0.000000pt;}
.ws2_c00020{word-spacing:0.006224pt;}
.ws17_c00020{word-spacing:0.018672pt;}
.ws11_c00020{word-spacing:0.311200pt;}
.ws6_c00020{word-spacing:0.641072pt;}
.ws5_c00020{word-spacing:0.672192pt;}
.ws1d_c00020{word-spacing:0.946048pt;}
.ws25_c00020{word-spacing:1.568448pt;}
.ws1a_c00020{word-spacing:1.587120pt;}
.ws1c_c00020{word-spacing:1.599568pt;}
.ws26_c00020{word-spacing:1.618240pt;}
.ws1b_c00020{word-spacing:1.910768pt;}
.ws8_c00020{word-spacing:3.205360pt;}
.ws9_c00020{word-spacing:3.516560pt;}
.ws21_c00020{word-spacing:3.827760pt;}
.ws10_c00020{word-spacing:4.163856pt;}
.wsf_c00020{word-spacing:4.176304pt;}
.ws16_c00020{word-spacing:5.427328pt;}
.ws13_c00020{word-spacing:5.439776pt;}
.ws15_c00020{word-spacing:5.452224pt;}
.ws12_c00020{word-spacing:5.458448pt;}
.ws1_c00020{word-spacing:5.757200pt;}
.ws18_c00020{word-spacing:6.697024pt;}
.ws19_c00020{word-spacing:6.728144pt;}
.wsb_c00020{word-spacing:8.315264pt;}
.wsc_c00020{word-spacing:8.321488pt;}
.ws1e_c00020{word-spacing:8.645136pt;}
.ws1f_c00020{word-spacing:8.962560pt;}
.ws24_c00020{word-spacing:9.628528pt;}
.ws4_c00020{word-spacing:9.921056pt;}
.ws3_c00020{word-spacing:9.939728pt;}
.wse_c00020{word-spacing:10.250928pt;}
.wsd_c00020{word-spacing:10.568352pt;}
.ws23_c00020{word-spacing:11.533072pt;}
.ws22_c00020{word-spacing:11.545520pt;}
.ws7_c00020{word-spacing:22.723824pt;}
._2_c00020{margin-left:-9.821472pt;}
._3_c00020{margin-left:-5.271728pt;}
._1_c00020{margin-left:-0.995840pt;}
._0_c00020{width:1.151440pt;}
._4_c00020{width:2.446032pt;}
.fs0_c00020{font-size:62.240000pt;}
.y0_c00020{bottom:0.000000pt;}
.y2_c00020{bottom:97.547527pt;}
.y1_c00020{bottom:115.387067pt;}
.y20_c00020{bottom:172.423803pt;}
.y1f_c00020{bottom:199.303703pt;}
.y1e_c00020{bottom:226.104247pt;}
.y1d_c00020{bottom:252.984147pt;}
.y1c_c00020{bottom:297.863855pt;}
.y1b_c00020{bottom:324.743755pt;}
.y1a_c00020{bottom:351.623655pt;}
.y19_c00020{bottom:378.424199pt;}
.y18_c00020{bottom:405.304099pt;}
.y17_c00020{bottom:450.344075pt;}
.y16_c00020{bottom:477.144619pt;}
.y15_c00020{bottom:504.024519pt;}
.y14_c00020{bottom:530.744151pt;}
.y13_c00020{bottom:557.624051pt;}
.y12_c00020{bottom:584.424595pt;}
.y11_c00020{bottom:611.304495pt;}
.y10_c00020{bottom:638.105039pt;}
.yf_c00020{bottom:664.984939pt;}
.ye_c00020{bottom:691.785483pt;}
.yd_c00020{bottom:718.665383pt;}
.yc_c00020{bottom:745.465927pt;}
.yb_c00020{bottom:772.345827pt;}
.ya_c00020{bottom:799.146371pt;}
.y9_c00020{bottom:826.026271pt;}
.y8_c00020{bottom:852.906171pt;}
.y7_c00020{bottom:879.706715pt;}
.y6_c00020{bottom:906.586615pt;}
.y5_c00020{bottom:933.387159pt;}
.y4_c00020{bottom:960.267059pt;}
.y3_c00020{bottom:987.067603pt;}
.h1_c00020{height:55.797187pt;}
.h2_c00020{height:56.192266pt;}
.h0_c00020{height:1122.666667pt;}
.w0_c00020{width:793.333333pt;}
.x0_c00020{left:0.000000pt;}
.x2_c00020{left:73.519684pt;}
.x1_c00020{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b3da275cc8828635c7d3d154.woff2')format("woff");}.ff1_c00021{font-family:ff1_c00021;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00021{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00021{vertical-align:0.000000px;}
.ls2_c00021{letter-spacing:-0.063018px;}
.ls8_c00021{letter-spacing:-0.042012px;}
.ls7_c00021{letter-spacing:-0.035010px;}
.ls9_c00021{letter-spacing:-0.028008px;}
.ls4_c00021{letter-spacing:-0.021006px;}
.ls5_c00021{letter-spacing:-0.014004px;}
.ls6_c00021{letter-spacing:-0.007002px;}
.ls3_c00021{letter-spacing:0.000000px;}
.ls0_c00021{letter-spacing:0.007002px;}
.ls1_c00021{letter-spacing:0.028008px;}
.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;}
}
.ws1d_c00021{word-spacing:-0.014004px;}
.ws0_c00021{word-spacing:0.000000px;}
.ws3_c00021{word-spacing:0.007002px;}
.wsa_c00021{word-spacing:0.364104px;}
.wsf_c00021{word-spacing:0.371106px;}
.ws1c_c00021{word-spacing:0.714204px;}
.ws18_c00021{word-spacing:0.721206px;}
.ws16_c00021{word-spacing:0.735210px;}
.ws17_c00021{word-spacing:1.085310px;}
.wsb_c00021{word-spacing:1.099314px;}
.wsc_c00021{word-spacing:1.435410px;}
.ws20_c00021{word-spacing:1.456416px;}
.ws7_c00021{word-spacing:2.870820px;}
.ws4_c00021{word-spacing:2.877822px;}
.ws15_c00021{word-spacing:3.262932px;}
.ws2_c00021{word-spacing:3.585024px;}
.ws1_c00021{word-spacing:3.606030px;}
.ws1a_c00021{word-spacing:6.434838px;}
.wse_c00021{word-spacing:6.854958px;}
.ws12_c00021{word-spacing:8.619462px;}
.ws11_c00021{word-spacing:8.633466px;}
.ws8_c00021{word-spacing:8.997570px;}
.ws10_c00021{word-spacing:10.103886px;}
.wsd_c00021{word-spacing:11.546298px;}
.ws6_c00021{word-spacing:11.868390px;}
.ws5_c00021{word-spacing:12.225492px;}
.ws9_c00021{word-spacing:12.603600px;}
.ws1e_c00021{word-spacing:12.918690px;}
.ws1f_c00021{word-spacing:14.767218px;}
.ws19_c00021{word-spacing:15.096312px;}
.ws14_c00021{word-spacing:16.545726px;}
.ws13_c00021{word-spacing:16.566732px;}
.ws1b_c00021{word-spacing:22.693482px;}
._1_c00021{margin-left:-1.169334px;}
._0_c00021{width:1.064304px;}
.fc0_c00021{color:rgb(0,0,0);}
.fs0_c00021{font-size:70.020000px;}
.y0_c00021{bottom:0.000000px;}
.y2_c00021{bottom:109.740968px;}
.y1_c00021{bottom:129.810450px;}
.y20_c00021{bottom:153.207633px;}
.y1f_c00021{bottom:183.267219px;}
.y1e_c00021{bottom:213.507107px;}
.y1d_c00021{bottom:264.177080px;}
.y1c_c00021{bottom:294.327692px;}
.y1b_c00021{bottom:324.567579px;}
.y1a_c00021{bottom:354.807467px;}
.y19_c00021{bottom:384.958079px;}
.y18_c00021{bottom:415.197966px;}
.y17_c00021{bottom:465.687638px;}
.y16_c00021{bottom:495.927525px;}
.y15_c00021{bottom:526.167413px;}
.y14_c00021{bottom:556.318025px;}
.y13_c00021{bottom:586.557912px;}
.y12_c00021{bottom:616.708524px;}
.y11_c00021{bottom:646.948412px;}
.y10_c00021{bottom:697.438083px;}
.yf_c00021{bottom:727.677971px;}
.ye_c00021{bottom:757.917858px;}
.yd_c00021{bottom:788.068470px;}
.yc_c00021{bottom:818.308358px;}
.yb_c00021{bottom:868.889055px;}
.ya_c00021{bottom:899.039667px;}
.y9_c00021{bottom:929.279555px;}
.y8_c00021{bottom:959.519442px;}
.y7_c00021{bottom:989.670054px;}
.y6_c00021{bottom:1019.909942px;}
.y5_c00021{bottom:1050.060553px;}
.y4_c00021{bottom:1080.300441px;}
.y3_c00021{bottom:1110.451053px;}
.h1_c00021{height:62.771836px;}
.h0_c00021{height:1263.000000px;}
.w0_c00021{width:892.500000px;}
.x0_c00021{left:0.000000px;}
.x2_c00021{left:82.709645px;}
.x1_c00021{left:436.680000px;}
@media print{
.v0_c00021{vertical-align:0.000000pt;}
.ls2_c00021{letter-spacing:-0.056016pt;}
.ls8_c00021{letter-spacing:-0.037344pt;}
.ls7_c00021{letter-spacing:-0.031120pt;}
.ls9_c00021{letter-spacing:-0.024896pt;}
.ls4_c00021{letter-spacing:-0.018672pt;}
.ls5_c00021{letter-spacing:-0.012448pt;}
.ls6_c00021{letter-spacing:-0.006224pt;}
.ls3_c00021{letter-spacing:0.000000pt;}
.ls0_c00021{letter-spacing:0.006224pt;}
.ls1_c00021{letter-spacing:0.024896pt;}
.ws1d_c00021{word-spacing:-0.012448pt;}
.ws0_c00021{word-spacing:0.000000pt;}
.ws3_c00021{word-spacing:0.006224pt;}
.wsa_c00021{word-spacing:0.323648pt;}
.wsf_c00021{word-spacing:0.329872pt;}
.ws1c_c00021{word-spacing:0.634848pt;}
.ws18_c00021{word-spacing:0.641072pt;}
.ws16_c00021{word-spacing:0.653520pt;}
.ws17_c00021{word-spacing:0.964720pt;}
.wsb_c00021{word-spacing:0.977168pt;}
.wsc_c00021{word-spacing:1.275920pt;}
.ws20_c00021{word-spacing:1.294592pt;}
.ws7_c00021{word-spacing:2.551840pt;}
.ws4_c00021{word-spacing:2.558064pt;}
.ws15_c00021{word-spacing:2.900384pt;}
.ws2_c00021{word-spacing:3.186688pt;}
.ws1_c00021{word-spacing:3.205360pt;}
.ws1a_c00021{word-spacing:5.719856pt;}
.wse_c00021{word-spacing:6.093296pt;}
.ws12_c00021{word-spacing:7.661744pt;}
.ws11_c00021{word-spacing:7.674192pt;}
.ws8_c00021{word-spacing:7.997840pt;}
.ws10_c00021{word-spacing:8.981232pt;}
.wsd_c00021{word-spacing:10.263376pt;}
.ws6_c00021{word-spacing:10.549680pt;}
.ws5_c00021{word-spacing:10.867104pt;}
.ws9_c00021{word-spacing:11.203200pt;}
.ws1e_c00021{word-spacing:11.483280pt;}
.ws1f_c00021{word-spacing:13.126416pt;}
.ws19_c00021{word-spacing:13.418944pt;}
.ws14_c00021{word-spacing:14.707312pt;}
.ws13_c00021{word-spacing:14.725984pt;}
.ws1b_c00021{word-spacing:20.171984pt;}
._1_c00021{margin-left:-1.039408pt;}
._0_c00021{width:0.946048pt;}
.fs0_c00021{font-size:62.240000pt;}
.y0_c00021{bottom:0.000000pt;}
.y2_c00021{bottom:97.547527pt;}
.y1_c00021{bottom:115.387067pt;}
.y20_c00021{bottom:136.184563pt;}
.y1f_c00021{bottom:162.904195pt;}
.y1e_c00021{bottom:189.784095pt;}
.y1d_c00021{bottom:234.824071pt;}
.y1c_c00021{bottom:261.624615pt;}
.y1b_c00021{bottom:288.504515pt;}
.y1a_c00021{bottom:315.384415pt;}
.y19_c00021{bottom:342.184959pt;}
.y18_c00021{bottom:369.064859pt;}
.y17_c00021{bottom:413.944567pt;}
.y16_c00021{bottom:440.824467pt;}
.y15_c00021{bottom:467.704367pt;}
.y14_c00021{bottom:494.504911pt;}
.y13_c00021{bottom:521.384811pt;}
.y12_c00021{bottom:548.185355pt;}
.y11_c00021{bottom:575.065255pt;}
.y10_c00021{bottom:619.944963pt;}
.yf_c00021{bottom:646.824863pt;}
.ye_c00021{bottom:673.704763pt;}
.yd_c00021{bottom:700.505307pt;}
.yc_c00021{bottom:727.385207pt;}
.yb_c00021{bottom:772.345827pt;}
.ya_c00021{bottom:799.146371pt;}
.y9_c00021{bottom:826.026271pt;}
.y8_c00021{bottom:852.906171pt;}
.y7_c00021{bottom:879.706715pt;}
.y6_c00021{bottom:906.586615pt;}
.y5_c00021{bottom:933.387159pt;}
.y4_c00021{bottom:960.267059pt;}
.y3_c00021{bottom:987.067603pt;}
.h1_c00021{height:55.797187pt;}
.h0_c00021{height:1122.666667pt;}
.w0_c00021{width:793.333333pt;}
.x0_c00021{left:0.000000pt;}
.x2_c00021{left:73.519684pt;}
.x1_c00021{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0a080b14b6421665669653a6.woff2')format("woff");}.ff1_c00022{font-family:ff1_c00022;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00022{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00022{vertical-align:0.000000px;}
.ls0_c00022{letter-spacing:-0.063018px;}
.ls4_c00022{letter-spacing:-0.035010px;}
.ls3_c00022{letter-spacing:-0.028008px;}
.ls2_c00022{letter-spacing:-0.014004px;}
.ls1_c00022{letter-spacing:0.000000px;}
.sc__c00022{text-shadow:none;}
.sc0_c00022{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00022{-webkit-text-stroke:0px transparent;}
.sc0_c00022{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00022{word-spacing:0.000000px;}
.ws4_c00022{word-spacing:0.357102px;}
.ws6_c00022{word-spacing:0.378108px;}
.ws1_c00022{word-spacing:1.442412px;}
.ws2_c00022{word-spacing:10.811088px;}
.ws5_c00022{word-spacing:11.539296px;}
.ws3_c00022{word-spacing:13.324806px;}
._1_c00022{margin-left:-1.260360px;}
._0_c00022{width:1.603458px;}
.fc0_c00022{color:rgb(0,0,0);}
.fs0_c00022{font-size:70.020000px;}
.y0_c00022{bottom:0.000000px;}
.y2_c00022{bottom:109.740968px;}
.y1_c00022{bottom:129.810450px;}
.y21_c00022{bottom:163.824416px;}
.y20_c00022{bottom:193.975028px;}
.y1f_c00022{bottom:224.214915px;}
.y1e_c00022{bottom:254.365527px;}
.y1d_c00022{bottom:284.605415px;}
.y1c_c00022{bottom:314.756027px;}
.y1b_c00022{bottom:344.995914px;}
.y1a_c00022{bottom:375.146526px;}
.y19_c00022{bottom:405.386414px;}
.y18_c00022{bottom:435.537026px;}
.y17_c00022{bottom:465.776913px;}
.y16_c00022{bottom:495.927525px;}
.y15_c00022{bottom:526.167413px;}
.y14_c00022{bottom:556.318025px;}
.y13_c00022{bottom:586.557912px;}
.y12_c00022{bottom:616.708524px;}
.y11_c00022{bottom:646.948412px;}
.y10_c00022{bottom:677.099024px;}
.yf_c00022{bottom:707.338911px;}
.ye_c00022{bottom:737.489523px;}
.yd_c00022{bottom:767.729411px;}
.yc_c00022{bottom:797.880022px;}
.yb_c00022{bottom:828.119910px;}
.ya_c00022{bottom:858.270522px;}
.y9_c00022{bottom:888.510410px;}
.y8_c00022{bottom:939.000081px;}
.y7_c00022{bottom:969.239969px;}
.y6_c00022{bottom:1019.820666px;}
.y5_c00022{bottom:1050.060553px;}
.y4_c00022{bottom:1080.300441px;}
.y3_c00022{bottom:1110.451053px;}
.h1_c00022{height:62.771836px;}
.h0_c00022{height:1263.000000px;}
.w0_c00022{width:892.500000px;}
.x0_c00022{left:0.000000px;}
.x2_c00022{left:82.709645px;}
.x1_c00022{left:436.680000px;}
@media print{
.v0_c00022{vertical-align:0.000000pt;}
.ls0_c00022{letter-spacing:-0.056016pt;}
.ls4_c00022{letter-spacing:-0.031120pt;}
.ls3_c00022{letter-spacing:-0.024896pt;}
.ls2_c00022{letter-spacing:-0.012448pt;}
.ls1_c00022{letter-spacing:0.000000pt;}
.ws0_c00022{word-spacing:0.000000pt;}
.ws4_c00022{word-spacing:0.317424pt;}
.ws6_c00022{word-spacing:0.336096pt;}
.ws1_c00022{word-spacing:1.282144pt;}
.ws2_c00022{word-spacing:9.609856pt;}
.ws5_c00022{word-spacing:10.257152pt;}
.ws3_c00022{word-spacing:11.844272pt;}
._1_c00022{margin-left:-1.120320pt;}
._0_c00022{width:1.425296pt;}
.fs0_c00022{font-size:62.240000pt;}
.y0_c00022{bottom:0.000000pt;}
.y2_c00022{bottom:97.547527pt;}
.y1_c00022{bottom:115.387067pt;}
.y21_c00022{bottom:145.621703pt;}
.y20_c00022{bottom:172.422247pt;}
.y1f_c00022{bottom:199.302147pt;}
.y1e_c00022{bottom:226.102691pt;}
.y1d_c00022{bottom:252.982591pt;}
.y1c_c00022{bottom:279.783135pt;}
.y1b_c00022{bottom:306.663035pt;}
.y1a_c00022{bottom:333.463579pt;}
.y19_c00022{bottom:360.343479pt;}
.y18_c00022{bottom:387.144023pt;}
.y17_c00022{bottom:414.023923pt;}
.y16_c00022{bottom:440.824467pt;}
.y15_c00022{bottom:467.704367pt;}
.y14_c00022{bottom:494.504911pt;}
.y13_c00022{bottom:521.384811pt;}
.y12_c00022{bottom:548.185355pt;}
.y11_c00022{bottom:575.065255pt;}
.y10_c00022{bottom:601.865799pt;}
.yf_c00022{bottom:628.745699pt;}
.ye_c00022{bottom:655.546243pt;}
.yd_c00022{bottom:682.426143pt;}
.yc_c00022{bottom:709.226687pt;}
.yb_c00022{bottom:736.106587pt;}
.ya_c00022{bottom:762.907131pt;}
.y9_c00022{bottom:789.787031pt;}
.y8_c00022{bottom:834.666739pt;}
.y7_c00022{bottom:861.546639pt;}
.y6_c00022{bottom:906.507259pt;}
.y5_c00022{bottom:933.387159pt;}
.y4_c00022{bottom:960.267059pt;}
.y3_c00022{bottom:987.067603pt;}
.h1_c00022{height:55.797187pt;}
.h0_c00022{height:1122.666667pt;}
.w0_c00022{width:793.333333pt;}
.x0_c00022{left:0.000000pt;}
.x2_c00022{left:73.519684pt;}
.x1_c00022{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2e418de639745c1bdf219935.woff2')format("woff");}.ff1_c00023{font-family:ff1_c00023;line-height:1.106934;font-style:normal;font-weight:normal;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_286af20430edb0fc7567d458.woff2')format("woff");}.ff2_c00023{font-family:ff2_c00023;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00023;src:url('chunks/assets/font_d87241c1d18d3f4ffc67b87b.woff2')format("woff");}.ff3_c00023{font-family:ff3_c00023;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00023{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00023{vertical-align:0.000000px;}
.ls5_c00023{letter-spacing:-0.098028px;}
.ls3_c00023{letter-spacing:-0.063018px;}
.lsc_c00023{letter-spacing:-0.056016px;}
.lsa_c00023{letter-spacing:-0.042012px;}
.ls8_c00023{letter-spacing:-0.035010px;}
.ls9_c00023{letter-spacing:-0.028008px;}
.lsb_c00023{letter-spacing:-0.021006px;}
.ls6_c00023{letter-spacing:-0.014004px;}
.ls7_c00023{letter-spacing:-0.007002px;}
.ls4_c00023{letter-spacing:0.000000px;}
.ls0_c00023{letter-spacing:0.007002px;}
.ls2_c00023{letter-spacing:0.014004px;}
.ls1_c00023{letter-spacing:0.021006px;}
.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;}
}
.ws1b_c00023{word-spacing:-0.042012px;}
.ws0_c00023{word-spacing:0.000000px;}
.ws16_c00023{word-spacing:0.014004px;}
.ws21_c00023{word-spacing:0.357102px;}
.ws5_c00023{word-spacing:1.456416px;}
.ws14_c00023{word-spacing:1.806516px;}
.wsf_c00023{word-spacing:2.520720px;}
.ws20_c00023{word-spacing:3.956130px;}
.ws7_c00023{word-spacing:3.970134px;}
.ws15_c00023{word-spacing:4.334238px;}
.ws11_c00023{word-spacing:7.163046px;}
.ws13_c00023{word-spacing:7.198056px;}
.ws12_c00023{word-spacing:7.576164px;}
.ws4_c00023{word-spacing:8.304372px;}
.ws3_c00023{word-spacing:8.633466px;}
.wse_c00023{word-spacing:8.962560px;}
.ws1e_c00023{word-spacing:8.983566px;}
.wsd_c00023{word-spacing:8.990568px;}
.ws1d_c00023{word-spacing:9.004572px;}
.wsa_c00023{word-spacing:9.732780px;}
.ws1f_c00023{word-spacing:10.439982px;}
.wsb_c00023{word-spacing:11.182194px;}
.ws18_c00023{word-spacing:12.932694px;}
.ws1c_c00023{word-spacing:13.338810px;}
.ws10_c00023{word-spacing:14.046012px;}
.ws1a_c00023{word-spacing:15.446412px;}
.ws19_c00023{word-spacing:15.502428px;}
.ws8_c00023{word-spacing:16.909830px;}
.ws9_c00023{word-spacing:16.930836px;}
.ws6_c00023{word-spacing:17.308944px;}
.wsc_c00023{word-spacing:21.216060px;}
.ws1_c00023{word-spacing:27.440838px;}
.ws2_c00023{word-spacing:62.639892px;}
.ws17_c00023{word-spacing:82.777644px;}
._1_c00023{margin-left:-26.999712px;}
._2_c00023{margin-left:-1.302372px;}
._0_c00023{width:1.029294px;}
.fc0_c00023{color:rgb(0,0,0);}
.fs0_c00023{font-size:70.020000px;}
.y0_c00023{bottom:0.000000px;}
.y2_c00023{bottom:109.740968px;}
.y1_c00023{bottom:129.810450px;}
.y22_c00023{bottom:174.444699px;}
.y21_c00023{bottom:204.684587px;}
.y20_c00023{bottom:234.835199px;}
.y1f_c00023{bottom:265.075086px;}
.y1e_c00023{bottom:295.225698px;}
.y1d_c00023{bottom:325.465586px;}
.y1c_c00023{bottom:355.616198px;}
.y1b_c00023{bottom:385.856085px;}
.y1a_c00023{bottom:416.006697px;}
.y19_c00023{bottom:446.246585px;}
.y18_c00023{bottom:476.397197px;}
.y17_c00023{bottom:506.637084px;}
.y16_c00023{bottom:536.787696px;}
.y15_c00023{bottom:567.027584px;}
.y14_c00023{bottom:597.087170px;}
.y13_c00023{bottom:627.327057px;}
.y12_c00023{bottom:657.477669px;}
.y11_c00023{bottom:687.717557px;}
.y10_c00023{bottom:717.868169px;}
.yf_c00023{bottom:748.108056px;}
.ye_c00023{bottom:778.258668px;}
.yd_c00023{bottom:808.498556px;}
.yc_c00023{bottom:838.649168px;}
.yb_c00023{bottom:868.889055px;}
.ya_c00023{bottom:899.039667px;}
.y9_c00023{bottom:929.279555px;}
.y8_c00023{bottom:959.519442px;}
.y7_c00023{bottom:989.670054px;}
.y6_c00023{bottom:1019.909942px;}
.y5_c00023{bottom:1050.060553px;}
.y4_c00023{bottom:1080.300441px;}
.y3_c00023{bottom:1110.451053px;}
.h1_c00023{height:62.771836px;}
.h2_c00023{height:63.216299px;}
.h0_c00023{height:1263.000000px;}
.w0_c00023{width:892.500000px;}
.x0_c00023{left:0.000000px;}
.x2_c00023{left:82.709645px;}
.x1_c00023{left:436.680000px;}
@media print{
.v0_c00023{vertical-align:0.000000pt;}
.ls5_c00023{letter-spacing:-0.087136pt;}
.ls3_c00023{letter-spacing:-0.056016pt;}
.lsc_c00023{letter-spacing:-0.049792pt;}
.lsa_c00023{letter-spacing:-0.037344pt;}
.ls8_c00023{letter-spacing:-0.031120pt;}
.ls9_c00023{letter-spacing:-0.024896pt;}
.lsb_c00023{letter-spacing:-0.018672pt;}
.ls6_c00023{letter-spacing:-0.012448pt;}
.ls7_c00023{letter-spacing:-0.006224pt;}
.ls4_c00023{letter-spacing:0.000000pt;}
.ls0_c00023{letter-spacing:0.006224pt;}
.ls2_c00023{letter-spacing:0.012448pt;}
.ls1_c00023{letter-spacing:0.018672pt;}
.ws1b_c00023{word-spacing:-0.037344pt;}
.ws0_c00023{word-spacing:0.000000pt;}
.ws16_c00023{word-spacing:0.012448pt;}
.ws21_c00023{word-spacing:0.317424pt;}
.ws5_c00023{word-spacing:1.294592pt;}
.ws14_c00023{word-spacing:1.605792pt;}
.wsf_c00023{word-spacing:2.240640pt;}
.ws20_c00023{word-spacing:3.516560pt;}
.ws7_c00023{word-spacing:3.529008pt;}
.ws15_c00023{word-spacing:3.852656pt;}
.ws11_c00023{word-spacing:6.367152pt;}
.ws13_c00023{word-spacing:6.398272pt;}
.ws12_c00023{word-spacing:6.734368pt;}
.ws4_c00023{word-spacing:7.381664pt;}
.ws3_c00023{word-spacing:7.674192pt;}
.wse_c00023{word-spacing:7.966720pt;}
.ws1e_c00023{word-spacing:7.985392pt;}
.wsd_c00023{word-spacing:7.991616pt;}
.ws1d_c00023{word-spacing:8.004064pt;}
.wsa_c00023{word-spacing:8.651360pt;}
.ws1f_c00023{word-spacing:9.279984pt;}
.wsb_c00023{word-spacing:9.939728pt;}
.ws18_c00023{word-spacing:11.495728pt;}
.ws1c_c00023{word-spacing:11.856720pt;}
.ws10_c00023{word-spacing:12.485344pt;}
.ws1a_c00023{word-spacing:13.730144pt;}
.ws19_c00023{word-spacing:13.779936pt;}
.ws8_c00023{word-spacing:15.030960pt;}
.ws9_c00023{word-spacing:15.049632pt;}
.ws6_c00023{word-spacing:15.385728pt;}
.wsc_c00023{word-spacing:18.858720pt;}
.ws1_c00023{word-spacing:24.391856pt;}
.ws2_c00023{word-spacing:55.679904pt;}
.ws17_c00023{word-spacing:73.580128pt;}
._1_c00023{margin-left:-23.999744pt;}
._2_c00023{margin-left:-1.157664pt;}
._0_c00023{width:0.914928pt;}
.fs0_c00023{font-size:62.240000pt;}
.y0_c00023{bottom:0.000000pt;}
.y2_c00023{bottom:97.547527pt;}
.y1_c00023{bottom:115.387067pt;}
.y22_c00023{bottom:155.061955pt;}
.y21_c00023{bottom:181.941855pt;}
.y20_c00023{bottom:208.742399pt;}
.y1f_c00023{bottom:235.622299pt;}
.y1e_c00023{bottom:262.422843pt;}
.y1d_c00023{bottom:289.302743pt;}
.y1c_c00023{bottom:316.103287pt;}
.y1b_c00023{bottom:342.983187pt;}
.y1a_c00023{bottom:369.783731pt;}
.y19_c00023{bottom:396.663631pt;}
.y18_c00023{bottom:423.464175pt;}
.y17_c00023{bottom:450.344075pt;}
.y16_c00023{bottom:477.144619pt;}
.y15_c00023{bottom:504.024519pt;}
.y14_c00023{bottom:530.744151pt;}
.y13_c00023{bottom:557.624051pt;}
.y12_c00023{bottom:584.424595pt;}
.y11_c00023{bottom:611.304495pt;}
.y10_c00023{bottom:638.105039pt;}
.yf_c00023{bottom:664.984939pt;}
.ye_c00023{bottom:691.785483pt;}
.yd_c00023{bottom:718.665383pt;}
.yc_c00023{bottom:745.465927pt;}
.yb_c00023{bottom:772.345827pt;}
.ya_c00023{bottom:799.146371pt;}
.y9_c00023{bottom:826.026271pt;}
.y8_c00023{bottom:852.906171pt;}
.y7_c00023{bottom:879.706715pt;}
.y6_c00023{bottom:906.586615pt;}
.y5_c00023{bottom:933.387159pt;}
.y4_c00023{bottom:960.267059pt;}
.y3_c00023{bottom:987.067603pt;}
.h1_c00023{height:55.797187pt;}
.h2_c00023{height:56.192266pt;}
.h0_c00023{height:1122.666667pt;}
.w0_c00023{width:793.333333pt;}
.x0_c00023{left:0.000000pt;}
.x2_c00023{left:73.519684pt;}
.x1_c00023{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b59cca0452e17dad54534e5a.woff2')format("woff");}.ff1_c00024{font-family:ff1_c00024;line-height:1.106934;font-style:normal;font-weight:normal;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_6c7e9f0261e0217c0b5a6807.woff2')format("woff");}.ff2_c00024{font-family:ff2_c00024;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00024{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00024{vertical-align:0.000000px;}
.ls4_c00024{letter-spacing:-0.063018px;}
.ls9_c00024{letter-spacing:-0.049014px;}
.lsc_c00024{letter-spacing:-0.042012px;}
.ls6_c00024{letter-spacing:-0.035010px;}
.lsa_c00024{letter-spacing:-0.028008px;}
.lsd_c00024{letter-spacing:-0.021006px;}
.ls7_c00024{letter-spacing:-0.014004px;}
.lsb_c00024{letter-spacing:-0.007002px;}
.ls5_c00024{letter-spacing:0.000000px;}
.ls1_c00024{letter-spacing:0.007002px;}
.ls0_c00024{letter-spacing:0.014004px;}
.ls2_c00024{letter-spacing:0.021006px;}
.ls3_c00024{letter-spacing:0.049014px;}
.ls8_c00024{letter-spacing:0.273078px;}
.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;}
}
.ws0_c00024{word-spacing:0.000000px;}
.ws11_c00024{word-spacing:0.007002px;}
.ws1c_c00024{word-spacing:0.014004px;}
.ws15_c00024{word-spacing:0.028008px;}
.ws2_c00024{word-spacing:0.406116px;}
.wsd_c00024{word-spacing:1.071306px;}
.ws17_c00024{word-spacing:1.092312px;}
.wsc_c00024{word-spacing:1.099314px;}
.ws18_c00024{word-spacing:1.470420px;}
.ws13_c00024{word-spacing:1.806516px;}
.ws14_c00024{word-spacing:2.121606px;}
.ws6_c00024{word-spacing:2.156616px;}
.ws9_c00024{word-spacing:2.191626px;}
.ws1a_c00024{word-spacing:2.877822px;}
.ws19_c00024{word-spacing:2.891826px;}
.ws1b_c00024{word-spacing:3.178908px;}
.wsb_c00024{word-spacing:3.599028px;}
.wsa_c00024{word-spacing:3.613032px;}
.ws1e_c00024{word-spacing:4.320234px;}
.ws7_c00024{word-spacing:4.390254px;}
.ws3_c00024{word-spacing:5.762646px;}
.ws1f_c00024{word-spacing:6.819948px;}
.ws16_c00024{word-spacing:6.833952px;}
.ws1d_c00024{word-spacing:11.168190px;}
.ws8_c00024{word-spacing:12.596598px;}
.ws5_c00024{word-spacing:16.188624px;}
.ws4_c00024{word-spacing:18.695340px;}
.wse_c00024{word-spacing:20.907972px;}
.ws10_c00024{word-spacing:21.937266px;}
.wsf_c00024{word-spacing:21.951270px;}
.ws12_c00024{word-spacing:21.986280px;}
.ws1_c00024{word-spacing:28.820232px;}
._3_c00024{margin-left:-16.202628px;}
._1_c00024{margin-left:-5.405544px;}
._2_c00024{margin-left:-1.015290px;}
._0_c00024{width:1.169334px;}
.fc0_c00024{color:rgb(0,0,0);}
.fs0_c00024{font-size:70.020000px;}
.y0_c00024{bottom:0.000000px;}
.y2_c00024{bottom:109.740968px;}
.y1_c00024{bottom:129.810450px;}
.y22_c00024{bottom:174.444699px;}
.y21_c00024{bottom:204.684587px;}
.y20_c00024{bottom:234.835199px;}
.y1f_c00024{bottom:265.075086px;}
.y1e_c00024{bottom:295.225698px;}
.y1d_c00024{bottom:325.465586px;}
.y1c_c00024{bottom:355.616198px;}
.y1b_c00024{bottom:385.856085px;}
.y1a_c00024{bottom:416.006697px;}
.y19_c00024{bottom:446.246585px;}
.y18_c00024{bottom:476.397197px;}
.y17_c00024{bottom:506.637084px;}
.y16_c00024{bottom:536.787696px;}
.y15_c00024{bottom:567.027584px;}
.y14_c00024{bottom:597.087170px;}
.y13_c00024{bottom:627.327057px;}
.y12_c00024{bottom:657.477669px;}
.y11_c00024{bottom:687.717557px;}
.y10_c00024{bottom:717.868169px;}
.yf_c00024{bottom:748.108056px;}
.ye_c00024{bottom:778.258668px;}
.yd_c00024{bottom:808.498556px;}
.yc_c00024{bottom:838.649168px;}
.yb_c00024{bottom:868.889055px;}
.ya_c00024{bottom:899.039667px;}
.y9_c00024{bottom:929.279555px;}
.y8_c00024{bottom:959.519442px;}
.y7_c00024{bottom:989.670054px;}
.y6_c00024{bottom:1019.909942px;}
.y5_c00024{bottom:1050.060553px;}
.y4_c00024{bottom:1080.300441px;}
.y3_c00024{bottom:1110.451053px;}
.h1_c00024{height:62.771836px;}
.h0_c00024{height:1263.000000px;}
.w0_c00024{width:892.500000px;}
.x0_c00024{left:0.000000px;}
.x2_c00024{left:82.709645px;}
.x1_c00024{left:436.680000px;}
@media print{
.v0_c00024{vertical-align:0.000000pt;}
.ls4_c00024{letter-spacing:-0.056016pt;}
.ls9_c00024{letter-spacing:-0.043568pt;}
.lsc_c00024{letter-spacing:-0.037344pt;}
.ls6_c00024{letter-spacing:-0.031120pt;}
.lsa_c00024{letter-spacing:-0.024896pt;}
.lsd_c00024{letter-spacing:-0.018672pt;}
.ls7_c00024{letter-spacing:-0.012448pt;}
.lsb_c00024{letter-spacing:-0.006224pt;}
.ls5_c00024{letter-spacing:0.000000pt;}
.ls1_c00024{letter-spacing:0.006224pt;}
.ls0_c00024{letter-spacing:0.012448pt;}
.ls2_c00024{letter-spacing:0.018672pt;}
.ls3_c00024{letter-spacing:0.043568pt;}
.ls8_c00024{letter-spacing:0.242736pt;}
.ws0_c00024{word-spacing:0.000000pt;}
.ws11_c00024{word-spacing:0.006224pt;}
.ws1c_c00024{word-spacing:0.012448pt;}
.ws15_c00024{word-spacing:0.024896pt;}
.ws2_c00024{word-spacing:0.360992pt;}
.wsd_c00024{word-spacing:0.952272pt;}
.ws17_c00024{word-spacing:0.970944pt;}
.wsc_c00024{word-spacing:0.977168pt;}
.ws18_c00024{word-spacing:1.307040pt;}
.ws13_c00024{word-spacing:1.605792pt;}
.ws14_c00024{word-spacing:1.885872pt;}
.ws6_c00024{word-spacing:1.916992pt;}
.ws9_c00024{word-spacing:1.948112pt;}
.ws1a_c00024{word-spacing:2.558064pt;}
.ws19_c00024{word-spacing:2.570512pt;}
.ws1b_c00024{word-spacing:2.825696pt;}
.wsb_c00024{word-spacing:3.199136pt;}
.wsa_c00024{word-spacing:3.211584pt;}
.ws1e_c00024{word-spacing:3.840208pt;}
.ws7_c00024{word-spacing:3.902448pt;}
.ws3_c00024{word-spacing:5.122352pt;}
.ws1f_c00024{word-spacing:6.062176pt;}
.ws16_c00024{word-spacing:6.074624pt;}
.ws1d_c00024{word-spacing:9.927280pt;}
.ws8_c00024{word-spacing:11.196976pt;}
.ws5_c00024{word-spacing:14.389888pt;}
.ws4_c00024{word-spacing:16.618080pt;}
.wse_c00024{word-spacing:18.584864pt;}
.ws10_c00024{word-spacing:19.499792pt;}
.wsf_c00024{word-spacing:19.512240pt;}
.ws12_c00024{word-spacing:19.543360pt;}
.ws1_c00024{word-spacing:25.617984pt;}
._3_c00024{margin-left:-14.402336pt;}
._1_c00024{margin-left:-4.804928pt;}
._2_c00024{margin-left:-0.902480pt;}
._0_c00024{width:1.039408pt;}
.fs0_c00024{font-size:62.240000pt;}
.y0_c00024{bottom:0.000000pt;}
.y2_c00024{bottom:97.547527pt;}
.y1_c00024{bottom:115.387067pt;}
.y22_c00024{bottom:155.061955pt;}
.y21_c00024{bottom:181.941855pt;}
.y20_c00024{bottom:208.742399pt;}
.y1f_c00024{bottom:235.622299pt;}
.y1e_c00024{bottom:262.422843pt;}
.y1d_c00024{bottom:289.302743pt;}
.y1c_c00024{bottom:316.103287pt;}
.y1b_c00024{bottom:342.983187pt;}
.y1a_c00024{bottom:369.783731pt;}
.y19_c00024{bottom:396.663631pt;}
.y18_c00024{bottom:423.464175pt;}
.y17_c00024{bottom:450.344075pt;}
.y16_c00024{bottom:477.144619pt;}
.y15_c00024{bottom:504.024519pt;}
.y14_c00024{bottom:530.744151pt;}
.y13_c00024{bottom:557.624051pt;}
.y12_c00024{bottom:584.424595pt;}
.y11_c00024{bottom:611.304495pt;}
.y10_c00024{bottom:638.105039pt;}
.yf_c00024{bottom:664.984939pt;}
.ye_c00024{bottom:691.785483pt;}
.yd_c00024{bottom:718.665383pt;}
.yc_c00024{bottom:745.465927pt;}
.yb_c00024{bottom:772.345827pt;}
.ya_c00024{bottom:799.146371pt;}
.y9_c00024{bottom:826.026271pt;}
.y8_c00024{bottom:852.906171pt;}
.y7_c00024{bottom:879.706715pt;}
.y6_c00024{bottom:906.586615pt;}
.y5_c00024{bottom:933.387159pt;}
.y4_c00024{bottom:960.267059pt;}
.y3_c00024{bottom:987.067603pt;}
.h1_c00024{height:55.797187pt;}
.h0_c00024{height:1122.666667pt;}
.w0_c00024{width:793.333333pt;}
.x0_c00024{left:0.000000pt;}
.x2_c00024{left:73.519684pt;}
.x1_c00024{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c73bdfd115bfd4189eb4eafb.woff2')format("woff");}.ff1_c00025{font-family:ff1_c00025;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00025{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00025{vertical-align:0.000000px;}
.ls4_c00025{letter-spacing:-0.063018px;}
.lsa_c00025{letter-spacing:-0.049014px;}
.ls9_c00025{letter-spacing:-0.042012px;}
.ls7_c00025{letter-spacing:-0.035010px;}
.ls6_c00025{letter-spacing:-0.028008px;}
.lsc_c00025{letter-spacing:-0.021006px;}
.ls8_c00025{letter-spacing:-0.014004px;}
.lsb_c00025{letter-spacing:-0.007002px;}
.ls5_c00025{letter-spacing:0.000000px;}
.ls3_c00025{letter-spacing:0.007002px;}
.ls1_c00025{letter-spacing:0.028008px;}
.ls0_c00025{letter-spacing:0.035010px;}
.ls2_c00025{letter-spacing:0.042012px;}
.sc__c00025{text-shadow:none;}
.sc0_c00025{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00025{-webkit-text-stroke:0px transparent;}
.sc0_c00025{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00025{word-spacing:0.000000px;}
.wsd_c00025{word-spacing:0.028008px;}
.ws19_c00025{word-spacing:0.343098px;}
.ws14_c00025{word-spacing:0.357102px;}
.ws24_c00025{word-spacing:0.721206px;}
.ws13_c00025{word-spacing:1.400400px;}
.ws12_c00025{word-spacing:1.792512px;}
.ws1d_c00025{word-spacing:2.464704px;}
.ws1c_c00025{word-spacing:2.541726px;}
.ws2_c00025{word-spacing:2.898828px;}
.ws25_c00025{word-spacing:3.255930px;}
.wsc_c00025{word-spacing:3.599028px;}
.ws20_c00025{word-spacing:3.606030px;}
.ws1f_c00025{word-spacing:3.613032px;}
.wsb_c00025{word-spacing:3.620034px;}
.ws10_c00025{word-spacing:4.320234px;}
.ws3_c00025{word-spacing:4.663332px;}
.ws4_c00025{word-spacing:4.677336px;}
.wsa_c00025{word-spacing:4.705344px;}
.ws6_c00025{word-spacing:5.041440px;}
.ws18_c00025{word-spacing:5.384538px;}
.ws5_c00025{word-spacing:5.426550px;}
.ws7_c00025{word-spacing:5.433552px;}
.ws8_c00025{word-spacing:7.191054px;}
.ws17_c00025{word-spacing:9.354672px;}
.ws16_c00025{word-spacing:9.382680px;}
.ws22_c00025{word-spacing:10.776078px;}
.ws15_c00025{word-spacing:10.790082px;}
.ws9_c00025{word-spacing:11.147184px;}
.ws1_c00025{word-spacing:12.974706px;}
.ws21_c00025{word-spacing:13.688910px;}
.ws23_c00025{word-spacing:17.273934px;}
.wsf_c00025{word-spacing:20.886966px;}
.ws11_c00025{word-spacing:22.273362px;}
.wse_c00025{word-spacing:24.107886px;}
.ws1e_c00025{word-spacing:26.649612px;}
.ws1a_c00025{word-spacing:36.347382px;}
.ws1b_c00025{word-spacing:36.361386px;}
._2_c00025{margin-left:-3.599028px;}
._0_c00025{margin-left:-1.267362px;}
._1_c00025{width:1.260360px;}
.fc0_c00025{color:rgb(0,0,0);}
.fs0_c00025{font-size:70.020000px;}
.y0_c00025{bottom:0.000000px;}
.y2_c00025{bottom:109.740968px;}
.y1_c00025{bottom:129.810450px;}
.y22_c00025{bottom:174.444699px;}
.y21_c00025{bottom:204.684587px;}
.y20_c00025{bottom:234.835199px;}
.y1f_c00025{bottom:265.075086px;}
.y1e_c00025{bottom:295.225698px;}
.y1d_c00025{bottom:325.465586px;}
.y1c_c00025{bottom:355.616198px;}
.y1b_c00025{bottom:385.856085px;}
.y1a_c00025{bottom:416.006697px;}
.y19_c00025{bottom:446.246585px;}
.y18_c00025{bottom:476.397197px;}
.y17_c00025{bottom:506.637084px;}
.y16_c00025{bottom:536.787696px;}
.y15_c00025{bottom:567.027584px;}
.y14_c00025{bottom:597.087170px;}
.y13_c00025{bottom:627.327057px;}
.y12_c00025{bottom:657.477669px;}
.y11_c00025{bottom:687.717557px;}
.y10_c00025{bottom:717.868169px;}
.yf_c00025{bottom:748.108056px;}
.ye_c00025{bottom:778.258668px;}
.yd_c00025{bottom:808.498556px;}
.yc_c00025{bottom:838.649168px;}
.yb_c00025{bottom:868.889055px;}
.ya_c00025{bottom:899.039667px;}
.y9_c00025{bottom:929.279555px;}
.y8_c00025{bottom:959.519442px;}
.y7_c00025{bottom:989.670054px;}
.y6_c00025{bottom:1019.909942px;}
.y5_c00025{bottom:1050.060553px;}
.y4_c00025{bottom:1080.300441px;}
.y3_c00025{bottom:1110.451053px;}
.h1_c00025{height:62.771836px;}
.h0_c00025{height:1263.000000px;}
.w0_c00025{width:892.500000px;}
.x0_c00025{left:0.000000px;}
.x2_c00025{left:82.709645px;}
.x1_c00025{left:436.680000px;}
@media print{
.v0_c00025{vertical-align:0.000000pt;}
.ls4_c00025{letter-spacing:-0.056016pt;}
.lsa_c00025{letter-spacing:-0.043568pt;}
.ls9_c00025{letter-spacing:-0.037344pt;}
.ls7_c00025{letter-spacing:-0.031120pt;}
.ls6_c00025{letter-spacing:-0.024896pt;}
.lsc_c00025{letter-spacing:-0.018672pt;}
.ls8_c00025{letter-spacing:-0.012448pt;}
.lsb_c00025{letter-spacing:-0.006224pt;}
.ls5_c00025{letter-spacing:0.000000pt;}
.ls3_c00025{letter-spacing:0.006224pt;}
.ls1_c00025{letter-spacing:0.024896pt;}
.ls0_c00025{letter-spacing:0.031120pt;}
.ls2_c00025{letter-spacing:0.037344pt;}
.ws0_c00025{word-spacing:0.000000pt;}
.wsd_c00025{word-spacing:0.024896pt;}
.ws19_c00025{word-spacing:0.304976pt;}
.ws14_c00025{word-spacing:0.317424pt;}
.ws24_c00025{word-spacing:0.641072pt;}
.ws13_c00025{word-spacing:1.244800pt;}
.ws12_c00025{word-spacing:1.593344pt;}
.ws1d_c00025{word-spacing:2.190848pt;}
.ws1c_c00025{word-spacing:2.259312pt;}
.ws2_c00025{word-spacing:2.576736pt;}
.ws25_c00025{word-spacing:2.894160pt;}
.wsc_c00025{word-spacing:3.199136pt;}
.ws20_c00025{word-spacing:3.205360pt;}
.ws1f_c00025{word-spacing:3.211584pt;}
.wsb_c00025{word-spacing:3.217808pt;}
.ws10_c00025{word-spacing:3.840208pt;}
.ws3_c00025{word-spacing:4.145184pt;}
.ws4_c00025{word-spacing:4.157632pt;}
.wsa_c00025{word-spacing:4.182528pt;}
.ws6_c00025{word-spacing:4.481280pt;}
.ws18_c00025{word-spacing:4.786256pt;}
.ws5_c00025{word-spacing:4.823600pt;}
.ws7_c00025{word-spacing:4.829824pt;}
.ws8_c00025{word-spacing:6.392048pt;}
.ws17_c00025{word-spacing:8.315264pt;}
.ws16_c00025{word-spacing:8.340160pt;}
.ws22_c00025{word-spacing:9.578736pt;}
.ws15_c00025{word-spacing:9.591184pt;}
.ws9_c00025{word-spacing:9.908608pt;}
.ws1_c00025{word-spacing:11.533072pt;}
.ws21_c00025{word-spacing:12.167920pt;}
.ws23_c00025{word-spacing:15.354608pt;}
.wsf_c00025{word-spacing:18.566192pt;}
.ws11_c00025{word-spacing:19.798544pt;}
.wse_c00025{word-spacing:21.429232pt;}
.ws1e_c00025{word-spacing:23.688544pt;}
.ws1a_c00025{word-spacing:32.308784pt;}
.ws1b_c00025{word-spacing:32.321232pt;}
._2_c00025{margin-left:-3.199136pt;}
._0_c00025{margin-left:-1.126544pt;}
._1_c00025{width:1.120320pt;}
.fs0_c00025{font-size:62.240000pt;}
.y0_c00025{bottom:0.000000pt;}
.y2_c00025{bottom:97.547527pt;}
.y1_c00025{bottom:115.387067pt;}
.y22_c00025{bottom:155.061955pt;}
.y21_c00025{bottom:181.941855pt;}
.y20_c00025{bottom:208.742399pt;}
.y1f_c00025{bottom:235.622299pt;}
.y1e_c00025{bottom:262.422843pt;}
.y1d_c00025{bottom:289.302743pt;}
.y1c_c00025{bottom:316.103287pt;}
.y1b_c00025{bottom:342.983187pt;}
.y1a_c00025{bottom:369.783731pt;}
.y19_c00025{bottom:396.663631pt;}
.y18_c00025{bottom:423.464175pt;}
.y17_c00025{bottom:450.344075pt;}
.y16_c00025{bottom:477.144619pt;}
.y15_c00025{bottom:504.024519pt;}
.y14_c00025{bottom:530.744151pt;}
.y13_c00025{bottom:557.624051pt;}
.y12_c00025{bottom:584.424595pt;}
.y11_c00025{bottom:611.304495pt;}
.y10_c00025{bottom:638.105039pt;}
.yf_c00025{bottom:664.984939pt;}
.ye_c00025{bottom:691.785483pt;}
.yd_c00025{bottom:718.665383pt;}
.yc_c00025{bottom:745.465927pt;}
.yb_c00025{bottom:772.345827pt;}
.ya_c00025{bottom:799.146371pt;}
.y9_c00025{bottom:826.026271pt;}
.y8_c00025{bottom:852.906171pt;}
.y7_c00025{bottom:879.706715pt;}
.y6_c00025{bottom:906.586615pt;}
.y5_c00025{bottom:933.387159pt;}
.y4_c00025{bottom:960.267059pt;}
.y3_c00025{bottom:987.067603pt;}
.h1_c00025{height:55.797187pt;}
.h0_c00025{height:1122.666667pt;}
.w0_c00025{width:793.333333pt;}
.x0_c00025{left:0.000000pt;}
.x2_c00025{left:73.519684pt;}
.x1_c00025{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_926505b8ed39ec8b59bfcb9e.woff2')format("woff");}.ff1_c00026{font-family:ff1_c00026;line-height:1.106934;font-style:normal;font-weight:normal;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_71f4419739fd18aeb8508b0e.woff2')format("woff");}.ff2_c00026{font-family:ff2_c00026;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00026{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00026{vertical-align:0.000000px;}
.ls3_c00026{letter-spacing:-0.063018px;}
.ls6_c00026{letter-spacing:-0.042012px;}
.lsa_c00026{letter-spacing:-0.035010px;}
.ls8_c00026{letter-spacing:-0.028008px;}
.ls9_c00026{letter-spacing:-0.021006px;}
.ls7_c00026{letter-spacing:-0.014004px;}
.ls5_c00026{letter-spacing:-0.007002px;}
.ls4_c00026{letter-spacing:0.000000px;}
.ls1_c00026{letter-spacing:0.007002px;}
.ls2_c00026{letter-spacing:0.014004px;}
.ls0_c00026{letter-spacing:0.021006px;}
.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;}
}
.ws1e_c00026{word-spacing:-0.028008px;}
.ws1d_c00026{word-spacing:-0.014004px;}
.ws0_c00026{word-spacing:0.000000px;}
.wse_c00026{word-spacing:0.007002px;}
.ws3_c00026{word-spacing:0.357102px;}
.ws11_c00026{word-spacing:0.371106px;}
.ws17_c00026{word-spacing:1.092312px;}
.wsd_c00026{word-spacing:1.449414px;}
.ws6_c00026{word-spacing:3.592026px;}
.ws12_c00026{word-spacing:3.963132px;}
.ws15_c00026{word-spacing:4.299228px;}
.ws14_c00026{word-spacing:4.306230px;}
.wsb_c00026{word-spacing:5.041440px;}
.wsa_c00026{word-spacing:6.469848px;}
.ws5_c00026{word-spacing:6.826950px;}
.ws4_c00026{word-spacing:6.840954px;}
.ws1a_c00026{word-spacing:6.847956px;}
.ws19_c00026{word-spacing:6.861960px;}
.ws1b_c00026{word-spacing:10.797084px;}
.ws1c_c00026{word-spacing:10.804086px;}
.ws1_c00026{word-spacing:11.154186px;}
.ws9_c00026{word-spacing:11.168190px;}
.wsc_c00026{word-spacing:12.561588px;}
.ws18_c00026{word-spacing:13.695912px;}
.ws2_c00026{word-spacing:18.387252px;}
.ws13_c00026{word-spacing:19.451556px;}
.wsf_c00026{word-spacing:20.501856px;}
.ws10_c00026{word-spacing:20.515860px;}
.ws7_c00026{word-spacing:22.672476px;}
.ws8_c00026{word-spacing:22.693482px;}
.ws16_c00026{word-spacing:25.571304px;}
._0_c00026{margin-left:-1.274364px;}
._1_c00026{width:1.148328px;}
.fc0_c00026{color:rgb(0,0,0);}
.fs0_c00026{font-size:70.020000px;}
.y0_c00026{bottom:0.000000px;}
.y2_c00026{bottom:109.740968px;}
.y1_c00026{bottom:129.810450px;}
.y22_c00026{bottom:174.444699px;}
.y21_c00026{bottom:204.684587px;}
.y20_c00026{bottom:234.835199px;}
.y1f_c00026{bottom:265.075086px;}
.y1e_c00026{bottom:295.225698px;}
.y1d_c00026{bottom:325.465586px;}
.y1c_c00026{bottom:355.616198px;}
.y1b_c00026{bottom:385.856085px;}
.y1a_c00026{bottom:416.006697px;}
.y19_c00026{bottom:446.246585px;}
.y18_c00026{bottom:476.397197px;}
.y17_c00026{bottom:506.637084px;}
.y16_c00026{bottom:536.787696px;}
.y15_c00026{bottom:567.027584px;}
.y14_c00026{bottom:597.087170px;}
.y13_c00026{bottom:627.327057px;}
.y12_c00026{bottom:657.477669px;}
.y11_c00026{bottom:687.717557px;}
.y10_c00026{bottom:717.868169px;}
.yf_c00026{bottom:748.108056px;}
.ye_c00026{bottom:778.258668px;}
.yd_c00026{bottom:808.498556px;}
.yc_c00026{bottom:838.649168px;}
.yb_c00026{bottom:868.889055px;}
.ya_c00026{bottom:899.039667px;}
.y9_c00026{bottom:929.279555px;}
.y8_c00026{bottom:959.519442px;}
.y7_c00026{bottom:989.670054px;}
.y6_c00026{bottom:1019.909942px;}
.y5_c00026{bottom:1050.060553px;}
.y4_c00026{bottom:1080.300441px;}
.y3_c00026{bottom:1110.451053px;}
.h1_c00026{height:62.771836px;}
.h2_c00026{height:63.216299px;}
.h0_c00026{height:1263.000000px;}
.w0_c00026{width:892.500000px;}
.x0_c00026{left:0.000000px;}
.x2_c00026{left:82.709645px;}
.x3_c00026{left:85.589217px;}
.x1_c00026{left:436.680000px;}
@media print{
.v0_c00026{vertical-align:0.000000pt;}
.ls3_c00026{letter-spacing:-0.056016pt;}
.ls6_c00026{letter-spacing:-0.037344pt;}
.lsa_c00026{letter-spacing:-0.031120pt;}
.ls8_c00026{letter-spacing:-0.024896pt;}
.ls9_c00026{letter-spacing:-0.018672pt;}
.ls7_c00026{letter-spacing:-0.012448pt;}
.ls5_c00026{letter-spacing:-0.006224pt;}
.ls4_c00026{letter-spacing:0.000000pt;}
.ls1_c00026{letter-spacing:0.006224pt;}
.ls2_c00026{letter-spacing:0.012448pt;}
.ls0_c00026{letter-spacing:0.018672pt;}
.ws1e_c00026{word-spacing:-0.024896pt;}
.ws1d_c00026{word-spacing:-0.012448pt;}
.ws0_c00026{word-spacing:0.000000pt;}
.wse_c00026{word-spacing:0.006224pt;}
.ws3_c00026{word-spacing:0.317424pt;}
.ws11_c00026{word-spacing:0.329872pt;}
.ws17_c00026{word-spacing:0.970944pt;}
.wsd_c00026{word-spacing:1.288368pt;}
.ws6_c00026{word-spacing:3.192912pt;}
.ws12_c00026{word-spacing:3.522784pt;}
.ws15_c00026{word-spacing:3.821536pt;}
.ws14_c00026{word-spacing:3.827760pt;}
.wsb_c00026{word-spacing:4.481280pt;}
.wsa_c00026{word-spacing:5.750976pt;}
.ws5_c00026{word-spacing:6.068400pt;}
.ws4_c00026{word-spacing:6.080848pt;}
.ws1a_c00026{word-spacing:6.087072pt;}
.ws19_c00026{word-spacing:6.099520pt;}
.ws1b_c00026{word-spacing:9.597408pt;}
.ws1c_c00026{word-spacing:9.603632pt;}
.ws1_c00026{word-spacing:9.914832pt;}
.ws9_c00026{word-spacing:9.927280pt;}
.wsc_c00026{word-spacing:11.165856pt;}
.ws18_c00026{word-spacing:12.174144pt;}
.ws2_c00026{word-spacing:16.344224pt;}
.ws13_c00026{word-spacing:17.290272pt;}
.wsf_c00026{word-spacing:18.223872pt;}
.ws10_c00026{word-spacing:18.236320pt;}
.ws7_c00026{word-spacing:20.153312pt;}
.ws8_c00026{word-spacing:20.171984pt;}
.ws16_c00026{word-spacing:22.730048pt;}
._0_c00026{margin-left:-1.132768pt;}
._1_c00026{width:1.020736pt;}
.fs0_c00026{font-size:62.240000pt;}
.y0_c00026{bottom:0.000000pt;}
.y2_c00026{bottom:97.547527pt;}
.y1_c00026{bottom:115.387067pt;}
.y22_c00026{bottom:155.061955pt;}
.y21_c00026{bottom:181.941855pt;}
.y20_c00026{bottom:208.742399pt;}
.y1f_c00026{bottom:235.622299pt;}
.y1e_c00026{bottom:262.422843pt;}
.y1d_c00026{bottom:289.302743pt;}
.y1c_c00026{bottom:316.103287pt;}
.y1b_c00026{bottom:342.983187pt;}
.y1a_c00026{bottom:369.783731pt;}
.y19_c00026{bottom:396.663631pt;}
.y18_c00026{bottom:423.464175pt;}
.y17_c00026{bottom:450.344075pt;}
.y16_c00026{bottom:477.144619pt;}
.y15_c00026{bottom:504.024519pt;}
.y14_c00026{bottom:530.744151pt;}
.y13_c00026{bottom:557.624051pt;}
.y12_c00026{bottom:584.424595pt;}
.y11_c00026{bottom:611.304495pt;}
.y10_c00026{bottom:638.105039pt;}
.yf_c00026{bottom:664.984939pt;}
.ye_c00026{bottom:691.785483pt;}
.yd_c00026{bottom:718.665383pt;}
.yc_c00026{bottom:745.465927pt;}
.yb_c00026{bottom:772.345827pt;}
.ya_c00026{bottom:799.146371pt;}
.y9_c00026{bottom:826.026271pt;}
.y8_c00026{bottom:852.906171pt;}
.y7_c00026{bottom:879.706715pt;}
.y6_c00026{bottom:906.586615pt;}
.y5_c00026{bottom:933.387159pt;}
.y4_c00026{bottom:960.267059pt;}
.y3_c00026{bottom:987.067603pt;}
.h1_c00026{height:55.797187pt;}
.h2_c00026{height:56.192266pt;}
.h0_c00026{height:1122.666667pt;}
.w0_c00026{width:793.333333pt;}
.x0_c00026{left:0.000000pt;}
.x2_c00026{left:73.519684pt;}
.x3_c00026{left:76.079304pt;}
.x1_c00026{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fdf0eee69b51f6f54144c7cd.woff2')format("woff");}.ff1_c00027{font-family:ff1_c00027;line-height:1.106934;font-style:normal;font-weight:normal;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_ce6443a7e702564d1f487ace.woff2')format("woff");}.ff2_c00027{font-family:ff2_c00027;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00027;src:url('chunks/assets/font_1b35c79072e50a9ae25d3dc1.woff2')format("woff");}.ff3_c00027{font-family:ff3_c00027;line-height:1.104492;font-style:normal;font-weight:normal;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_671007507a2eca4c4efe883e.woff2')format("woff");}.ff4_c00027{font-family:ff4_c00027;line-height:1.133301;font-style:normal;font-weight:normal;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_820bfb55c6f684d51e5b8db8.woff2')format("woff");}.ff5_c00027{font-family:ff5_c00027;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00027{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00027{vertical-align:-14.760000px;}
.v0_c00027{vertical-align:0.000000px;}
.v1_c00027{vertical-align:32.058546px;}
.ls10_c00027{letter-spacing:-0.239712px;}
.ls5_c00027{letter-spacing:-0.077022px;}
.ls3_c00027{letter-spacing:-0.063018px;}
.lsd_c00027{letter-spacing:-0.056016px;}
.lsb_c00027{letter-spacing:-0.049014px;}
.ls6_c00027{letter-spacing:-0.042012px;}
.lsc_c00027{letter-spacing:-0.035010px;}
.lsa_c00027{letter-spacing:-0.028008px;}
.ls8_c00027{letter-spacing:-0.021006px;}
.ls7_c00027{letter-spacing:-0.014004px;}
.ls9_c00027{letter-spacing:-0.007002px;}
.ls4_c00027{letter-spacing:0.000000px;}
.ls0_c00027{letter-spacing:0.007002px;}
.ls1_c00027{letter-spacing:0.021006px;}
.ls2_c00027{letter-spacing:0.031306px;}
.lse_c00027{letter-spacing:0.105030px;}
.lsf_c00027{letter-spacing:2.531595px;}
.sc__c00027{text-shadow:none;}
.sc0_c00027{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00027{-webkit-text-stroke:0px transparent;}
.sc0_c00027{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00027{word-spacing:-19.570590px;}
.ws1_c00027{word-spacing:-10.473259px;}
.ws2_c00027{word-spacing:0.000000px;}
.wsd_c00027{word-spacing:0.007002px;}
.ws12_c00027{word-spacing:0.378108px;}
.ws4_c00027{word-spacing:0.385110px;}
.ws3_c00027{word-spacing:0.420120px;}
.ws18_c00027{word-spacing:0.686196px;}
.ws17_c00027{word-spacing:0.763218px;}
.ws1b_c00027{word-spacing:1.071306px;}
.ws1c_c00027{word-spacing:1.106316px;}
.ws16_c00027{word-spacing:1.435410px;}
.ws14_c00027{word-spacing:1.442412px;}
.ws13_c00027{word-spacing:1.806516px;}
.ws23_c00027{word-spacing:2.531595px;}
.ws22_c00027{word-spacing:2.771307px;}
.ws10_c00027{word-spacing:3.262932px;}
.ws1a_c00027{word-spacing:3.564018px;}
.ws11_c00027{word-spacing:3.620034px;}
.ws19_c00027{word-spacing:3.956130px;}
.wsc_c00027{word-spacing:4.320234px;}
.wsb_c00027{word-spacing:4.677336px;}
.wsa_c00027{word-spacing:5.055444px;}
.wsf_c00027{word-spacing:6.154758px;}
.ws15_c00027{word-spacing:6.476850px;}
.ws7_c00027{word-spacing:6.483852px;}
.ws9_c00027{word-spacing:7.191054px;}
.ws8_c00027{word-spacing:7.205058px;}
.ws1d_c00027{word-spacing:7.912260px;}
.ws1e_c00027{word-spacing:7.919262px;}
.ws21_c00027{word-spacing:12.274506px;}
.ws5_c00027{word-spacing:15.117318px;}
.ws1f_c00027{word-spacing:15.824520px;}
.ws20_c00027{word-spacing:16.181622px;}
.ws6_c00027{word-spacing:28.085022px;}
.wse_c00027{word-spacing:29.499426px;}
._4_c00027{margin-left:-4.007882px;}
._3_c00027{margin-left:-2.708424px;}
._1_c00027{margin-left:-1.148328px;}
._0_c00027{width:1.449414px;}
._2_c00027{width:5.930694px;}
.fc0_c00027{color:rgb(0,0,0);}
.fs2_c00027{font-size:37.809600px;}
.fs1_c00027{font-size:46.562400px;}
.fs3_c00027{font-size:58.466400px;}
.fs0_c00027{font-size:70.020000px;}
.y0_c00027{bottom:0.000000px;}
.y2_c00027{bottom:109.740968px;}
.y1_c00027{bottom:129.810450px;}
.y21_c00027{bottom:149.429891px;}
.y20_c00027{bottom:170.940450px;}
.y1f_c00027{bottom:185.699649px;}
.y1e_c00027{bottom:305.309563px;}
.y1d_c00027{bottom:335.549451px;}
.y1c_c00027{bottom:365.700063px;}
.y1b_c00027{bottom:395.939950px;}
.y1a_c00027{bottom:426.090562px;}
.y19_c00027{bottom:456.325964px;}
.y18_c00027{bottom:486.476576px;}
.y17_c00027{bottom:516.716463px;}
.y16_c00027{bottom:546.867075px;}
.y15_c00027{bottom:577.106963px;}
.y14_c00027{bottom:607.166549px;}
.y13_c00027{bottom:637.406436px;}
.y12_c00027{bottom:667.557048px;}
.y11_c00027{bottom:697.796936px;}
.y10_c00027{bottom:727.947548px;}
.yf_c00027{bottom:758.187435px;}
.ye_c00027{bottom:788.338047px;}
.yd_c00027{bottom:818.577934px;}
.yc_c00027{bottom:848.728546px;}
.yb_c00027{bottom:878.968434px;}
.ya_c00027{bottom:909.119046px;}
.y9_c00027{bottom:939.358934px;}
.y8_c00027{bottom:969.509546px;}
.y7_c00027{bottom:999.749433px;}
.y6_c00027{bottom:1029.900045px;}
.y5_c00027{bottom:1060.139932px;}
.y4_c00027{bottom:1090.290545px;}
.y3_c00027{bottom:1110.451053px;}
.h6_c00027{height:39.338549px;}
.h7_c00027{height:54.098549px;}
.h3_c00027{height:62.600889px;}
.h1_c00027{height:62.771836px;}
.h5_c00027{height:62.775640px;}
.h2_c00027{height:63.216299px;}
.h4_c00027{height:73.687332px;}
.h0_c00027{height:1263.000000px;}
.w0_c00027{width:892.500000px;}
.x0_c00027{left:0.000000px;}
.x2_c00027{left:82.709645px;}
.x1_c00027{left:436.680000px;}
@media print{
.v2_c00027{vertical-align:-13.120000pt;}
.v0_c00027{vertical-align:0.000000pt;}
.v1_c00027{vertical-align:28.496485pt;}
.ls10_c00027{letter-spacing:-0.213078pt;}
.ls5_c00027{letter-spacing:-0.068464pt;}
.ls3_c00027{letter-spacing:-0.056016pt;}
.lsd_c00027{letter-spacing:-0.049792pt;}
.lsb_c00027{letter-spacing:-0.043568pt;}
.ls6_c00027{letter-spacing:-0.037344pt;}
.lsc_c00027{letter-spacing:-0.031120pt;}
.lsa_c00027{letter-spacing:-0.024896pt;}
.ls8_c00027{letter-spacing:-0.018672pt;}
.ls7_c00027{letter-spacing:-0.012448pt;}
.ls9_c00027{letter-spacing:-0.006224pt;}
.ls4_c00027{letter-spacing:0.000000pt;}
.ls0_c00027{letter-spacing:0.006224pt;}
.ls1_c00027{letter-spacing:0.018672pt;}
.ls2_c00027{letter-spacing:0.027827pt;}
.lse_c00027{letter-spacing:0.093360pt;}
.lsf_c00027{letter-spacing:2.250307pt;}
.ws0_c00027{word-spacing:-17.396080pt;}
.ws1_c00027{word-spacing:-9.309564pt;}
.ws2_c00027{word-spacing:0.000000pt;}
.wsd_c00027{word-spacing:0.006224pt;}
.ws12_c00027{word-spacing:0.336096pt;}
.ws4_c00027{word-spacing:0.342320pt;}
.ws3_c00027{word-spacing:0.373440pt;}
.ws18_c00027{word-spacing:0.609952pt;}
.ws17_c00027{word-spacing:0.678416pt;}
.ws1b_c00027{word-spacing:0.952272pt;}
.ws1c_c00027{word-spacing:0.983392pt;}
.ws16_c00027{word-spacing:1.275920pt;}
.ws14_c00027{word-spacing:1.282144pt;}
.ws13_c00027{word-spacing:1.605792pt;}
.ws23_c00027{word-spacing:2.250307pt;}
.ws22_c00027{word-spacing:2.463384pt;}
.ws10_c00027{word-spacing:2.900384pt;}
.ws1a_c00027{word-spacing:3.168016pt;}
.ws11_c00027{word-spacing:3.217808pt;}
.ws19_c00027{word-spacing:3.516560pt;}
.wsc_c00027{word-spacing:3.840208pt;}
.wsb_c00027{word-spacing:4.157632pt;}
.wsa_c00027{word-spacing:4.493728pt;}
.wsf_c00027{word-spacing:5.470896pt;}
.ws15_c00027{word-spacing:5.757200pt;}
.ws7_c00027{word-spacing:5.763424pt;}
.ws9_c00027{word-spacing:6.392048pt;}
.ws8_c00027{word-spacing:6.404496pt;}
.ws1d_c00027{word-spacing:7.033120pt;}
.ws1e_c00027{word-spacing:7.039344pt;}
.ws21_c00027{word-spacing:10.910672pt;}
.ws5_c00027{word-spacing:13.437616pt;}
.ws1f_c00027{word-spacing:14.066240pt;}
.ws20_c00027{word-spacing:14.383664pt;}
.ws6_c00027{word-spacing:24.964464pt;}
.wse_c00027{word-spacing:26.221712pt;}
._4_c00027{margin-left:-3.562562pt;}
._3_c00027{margin-left:-2.407488pt;}
._1_c00027{margin-left:-1.020736pt;}
._0_c00027{width:1.288368pt;}
._2_c00027{width:5.271728pt;}
.fs2_c00027{font-size:33.608533pt;}
.fs1_c00027{font-size:41.388800pt;}
.fs3_c00027{font-size:51.970133pt;}
.fs0_c00027{font-size:62.240000pt;}
.y0_c00027{bottom:0.000000pt;}
.y2_c00027{bottom:97.547527pt;}
.y1_c00027{bottom:115.387067pt;}
.y21_c00027{bottom:132.826570pt;}
.y20_c00027{bottom:151.947067pt;}
.y1f_c00027{bottom:165.066355pt;}
.y1e_c00027{bottom:271.386279pt;}
.y1d_c00027{bottom:298.266179pt;}
.y1c_c00027{bottom:325.066723pt;}
.y1b_c00027{bottom:351.946623pt;}
.y1a_c00027{bottom:378.747167pt;}
.y19_c00027{bottom:405.623079pt;}
.y18_c00027{bottom:432.423623pt;}
.y17_c00027{bottom:459.303523pt;}
.y16_c00027{bottom:486.104067pt;}
.y15_c00027{bottom:512.983967pt;}
.y14_c00027{bottom:539.703599pt;}
.y13_c00027{bottom:566.583499pt;}
.y12_c00027{bottom:593.384043pt;}
.y11_c00027{bottom:620.263943pt;}
.y10_c00027{bottom:647.064487pt;}
.yf_c00027{bottom:673.944387pt;}
.ye_c00027{bottom:700.744931pt;}
.yd_c00027{bottom:727.624831pt;}
.yc_c00027{bottom:754.425375pt;}
.yb_c00027{bottom:781.305275pt;}
.ya_c00027{bottom:808.105819pt;}
.y9_c00027{bottom:834.985719pt;}
.y8_c00027{bottom:861.786263pt;}
.y7_c00027{bottom:888.666163pt;}
.y6_c00027{bottom:915.466707pt;}
.y5_c00027{bottom:942.346607pt;}
.y4_c00027{bottom:969.147151pt;}
.y3_c00027{bottom:987.067603pt;}
.h6_c00027{height:34.967599pt;}
.h7_c00027{height:48.087599pt;}
.h3_c00027{height:55.645234pt;}
.h1_c00027{height:55.797187pt;}
.h5_c00027{height:55.800569pt;}
.h2_c00027{height:56.192266pt;}
.h4_c00027{height:65.499851pt;}
.h0_c00027{height:1122.666667pt;}
.w0_c00027{width:793.333333pt;}
.x0_c00027{left:0.000000pt;}
.x2_c00027{left:73.519684pt;}
.x1_c00027{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_925c5f7f3ab99775a4b9b229.woff2')format("woff");}.ff1_c00028{font-family:ff1_c00028;line-height:1.106934;font-style:normal;font-weight:normal;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_f9acd2ba00627a7f507d64c9.woff2')format("woff");}.ff2_c00028{font-family:ff2_c00028;line-height:1.104492;font-style:normal;font-weight:normal;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_71f4419739fd18aeb8508b0e.woff2')format("woff");}.ff3_c00028{font-family:ff3_c00028;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00028;src:url('chunks/assets/font_31443fbca4522e585e9ae6d3.woff2')format("woff");}.ff4_c00028{font-family:ff4_c00028;line-height:1.133301;font-style:normal;font-weight:normal;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_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff5_c00028{font-family:ff5_c00028;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00028;src:url('chunks/assets/font_5491a7594c7b610f92ec6611.woff2')format("woff");}.ff6_c00028{font-family:ff6_c00028;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00028{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00028{vertical-align:-14.760600px;}
.v0_c00028{vertical-align:0.000000px;}
.v1_c00028{vertical-align:32.040036px;}
.ls10_c00028{letter-spacing:-0.707443px;}
.ls13_c00028{letter-spacing:-0.122779px;}
.ls11_c00028{letter-spacing:-0.076006px;}
.ls5_c00028{letter-spacing:-0.063018px;}
.ls8_c00028{letter-spacing:-0.056016px;}
.lsf_c00028{letter-spacing:-0.052620px;}
.lsa_c00028{letter-spacing:-0.042012px;}
.lsd_c00028{letter-spacing:-0.035010px;}
.lsc_c00028{letter-spacing:-0.028008px;}
.ls7_c00028{letter-spacing:-0.021006px;}
.ls9_c00028{letter-spacing:-0.014004px;}
.lsb_c00028{letter-spacing:-0.007002px;}
.ls6_c00028{letter-spacing:0.000000px;}
.ls1_c00028{letter-spacing:0.007002px;}
.ls4_c00028{letter-spacing:0.021006px;}
.ls3_c00028{letter-spacing:0.028008px;}
.ls0_c00028{letter-spacing:0.031306px;}
.lse_c00028{letter-spacing:0.409265px;}
.ls12_c00028{letter-spacing:0.485271px;}
.ls2_c00028{letter-spacing:17.252928px;}
.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;}
}
.ws2_c00028{word-spacing:-58.466400px;}
.ws0_c00028{word-spacing:-19.451556px;}
.ws1_c00028{word-spacing:-10.473259px;}
.ws27_c00028{word-spacing:-0.344952px;}
.wsf_c00028{word-spacing:-0.007002px;}
.ws3_c00028{word-spacing:0.000000px;}
.ws21_c00028{word-spacing:0.049014px;}
.ws8_c00028{word-spacing:0.343098px;}
.ws9_c00028{word-spacing:0.364104px;}
.ws1c_c00028{word-spacing:0.378108px;}
.ws10_c00028{word-spacing:0.399114px;}
.ws7_c00028{word-spacing:0.749214px;}
.ws6_c00028{word-spacing:0.763218px;}
.ws11_c00028{word-spacing:1.421406px;}
.ws12_c00028{word-spacing:1.442412px;}
.ws17_c00028{word-spacing:1.463418px;}
.ws16_c00028{word-spacing:1.799514px;}
.ws15_c00028{word-spacing:2.877822px;}
.ws25_c00028{word-spacing:3.490444px;}
.ws26_c00028{word-spacing:4.098495px;}
.wsb_c00028{word-spacing:4.299228px;}
.wsc_c00028{word-spacing:4.313232px;}
.ws20_c00028{word-spacing:6.140754px;}
.wsa_c00028{word-spacing:7.912260px;}
.ws1d_c00028{word-spacing:13.695912px;}
.ws1f_c00028{word-spacing:14.396112px;}
.ws1e_c00028{word-spacing:14.403114px;}
.ws4_c00028{word-spacing:14.410116px;}
.ws5_c00028{word-spacing:14.445126px;}
.wse_c00028{word-spacing:16.909830px;}
.wsd_c00028{word-spacing:16.930836px;}
.ws13_c00028{word-spacing:20.116746px;}
.ws14_c00028{word-spacing:20.172762px;}
.ws22_c00028{word-spacing:20.843272px;}
.ws23_c00028{word-spacing:21.305156px;}
.ws24_c00028{word-spacing:21.328543px;}
.ws1a_c00028{word-spacing:23.365674px;}
.ws1b_c00028{word-spacing:23.400684px;}
.ws19_c00028{word-spacing:23.757786px;}
.ws18_c00028{word-spacing:24.135894px;}
._3_c00028{margin-left:-2.712240px;}
._1_c00028{margin-left:-1.344384px;}
._0_c00028{width:1.218348px;}
._2_c00028{width:5.930694px;}
._4_c00028{width:21.226339px;}
.fc0_c00028{color:rgb(0,0,0);}
.fs2_c00028{font-size:37.809600px;}
.fs1_c00028{font-size:46.562400px;}
.fs3_c00028{font-size:58.466400px;}
.fs0_c00028{font-size:70.020000px;}
.y0_c00028{bottom:0.000000px;}
.y2_c00028{bottom:109.740968px;}
.y1_c00028{bottom:129.810450px;}
.y20_c00028{bottom:169.860450px;}
.y1f_c00028{bottom:187.770450px;}
.y1e_c00028{bottom:209.280600px;}
.y1d_c00028{bottom:244.373682px;}
.y1c_c00028{bottom:314.754285px;}
.y1b_c00028{bottom:344.994173px;}
.y1a_c00028{bottom:375.144785px;}
.y19_c00028{bottom:405.384672px;}
.y18_c00028{bottom:435.535284px;}
.y17_c00028{bottom:465.775172px;}
.y16_c00028{bottom:495.925783px;}
.y15_c00028{bottom:526.165671px;}
.y14_c00028{bottom:556.316283px;}
.y13_c00028{bottom:586.556171px;}
.y12_c00028{bottom:616.706783px;}
.y11_c00028{bottom:646.946670px;}
.y10_c00028{bottom:677.097282px;}
.yf_c00028{bottom:727.586954px;}
.ye_c00028{bottom:757.917867px;}
.yd_c00028{bottom:788.068479px;}
.yc_c00028{bottom:818.219091px;}
.yb_c00028{bottom:868.889064px;}
.ya_c00028{bottom:899.039676px;}
.y9_c00028{bottom:929.279563px;}
.y8_c00028{bottom:959.519451px;}
.y7_c00028{bottom:989.670063px;}
.y6_c00028{bottom:1019.909951px;}
.y5_c00028{bottom:1050.060563px;}
.y4_c00028{bottom:1080.300441px;}
.y3_c00028{bottom:1110.451053px;}
.h6_c00028{height:39.337949px;}
.h7_c00028{height:54.098549px;}
.h2_c00028{height:62.600889px;}
.h1_c00028{height:62.771836px;}
.h5_c00028{height:62.798908px;}
.h4_c00028{height:63.216299px;}
.h3_c00028{height:73.668822px;}
.h0_c00028{height:1263.000000px;}
.w0_c00028{width:892.500000px;}
.x0_c00028{left:0.000000px;}
.x2_c00028{left:82.709645px;}
.x1_c00028{left:436.680000px;}
@media print{
.v2_c00028{vertical-align:-13.120533pt;}
.v0_c00028{vertical-align:0.000000pt;}
.v1_c00028{vertical-align:28.480032pt;}
.ls10_c00028{letter-spacing:-0.628839pt;}
.ls13_c00028{letter-spacing:-0.109137pt;}
.ls11_c00028{letter-spacing:-0.067561pt;}
.ls5_c00028{letter-spacing:-0.056016pt;}
.ls8_c00028{letter-spacing:-0.049792pt;}
.lsf_c00028{letter-spacing:-0.046773pt;}
.lsa_c00028{letter-spacing:-0.037344pt;}
.lsd_c00028{letter-spacing:-0.031120pt;}
.lsc_c00028{letter-spacing:-0.024896pt;}
.ls7_c00028{letter-spacing:-0.018672pt;}
.ls9_c00028{letter-spacing:-0.012448pt;}
.lsb_c00028{letter-spacing:-0.006224pt;}
.ls6_c00028{letter-spacing:0.000000pt;}
.ls1_c00028{letter-spacing:0.006224pt;}
.ls4_c00028{letter-spacing:0.018672pt;}
.ls3_c00028{letter-spacing:0.024896pt;}
.ls0_c00028{letter-spacing:0.027827pt;}
.lse_c00028{letter-spacing:0.363791pt;}
.ls12_c00028{letter-spacing:0.431352pt;}
.ls2_c00028{letter-spacing:15.335936pt;}
.ws2_c00028{word-spacing:-51.970133pt;}
.ws0_c00028{word-spacing:-17.290272pt;}
.ws1_c00028{word-spacing:-9.309564pt;}
.ws27_c00028{word-spacing:-0.306624pt;}
.wsf_c00028{word-spacing:-0.006224pt;}
.ws3_c00028{word-spacing:0.000000pt;}
.ws21_c00028{word-spacing:0.043568pt;}
.ws8_c00028{word-spacing:0.304976pt;}
.ws9_c00028{word-spacing:0.323648pt;}
.ws1c_c00028{word-spacing:0.336096pt;}
.ws10_c00028{word-spacing:0.354768pt;}
.ws7_c00028{word-spacing:0.665968pt;}
.ws6_c00028{word-spacing:0.678416pt;}
.ws11_c00028{word-spacing:1.263472pt;}
.ws12_c00028{word-spacing:1.282144pt;}
.ws17_c00028{word-spacing:1.300816pt;}
.ws16_c00028{word-spacing:1.599568pt;}
.ws15_c00028{word-spacing:2.558064pt;}
.ws25_c00028{word-spacing:3.102617pt;}
.ws26_c00028{word-spacing:3.643106pt;}
.wsb_c00028{word-spacing:3.821536pt;}
.wsc_c00028{word-spacing:3.833984pt;}
.ws20_c00028{word-spacing:5.458448pt;}
.wsa_c00028{word-spacing:7.033120pt;}
.ws1d_c00028{word-spacing:12.174144pt;}
.ws1f_c00028{word-spacing:12.796544pt;}
.ws1e_c00028{word-spacing:12.802768pt;}
.ws4_c00028{word-spacing:12.808992pt;}
.ws5_c00028{word-spacing:12.840112pt;}
.wse_c00028{word-spacing:15.030960pt;}
.wsd_c00028{word-spacing:15.049632pt;}
.ws13_c00028{word-spacing:17.881552pt;}
.ws14_c00028{word-spacing:17.931344pt;}
.ws22_c00028{word-spacing:18.527353pt;}
.ws23_c00028{word-spacing:18.937917pt;}
.ws24_c00028{word-spacing:18.958705pt;}
.ws1a_c00028{word-spacing:20.769488pt;}
.ws1b_c00028{word-spacing:20.800608pt;}
.ws19_c00028{word-spacing:21.118032pt;}
.ws18_c00028{word-spacing:21.454128pt;}
._3_c00028{margin-left:-2.410880pt;}
._1_c00028{margin-left:-1.195008pt;}
._0_c00028{width:1.082976pt;}
._2_c00028{width:5.271728pt;}
._4_c00028{width:18.867857pt;}
.fs2_c00028{font-size:33.608533pt;}
.fs1_c00028{font-size:41.388800pt;}
.fs3_c00028{font-size:51.970133pt;}
.fs0_c00028{font-size:62.240000pt;}
.y0_c00028{bottom:0.000000pt;}
.y2_c00028{bottom:97.547527pt;}
.y1_c00028{bottom:115.387067pt;}
.y20_c00028{bottom:150.987067pt;}
.y1f_c00028{bottom:166.907067pt;}
.y1e_c00028{bottom:186.027200pt;}
.y1d_c00028{bottom:217.221051pt;}
.y1c_c00028{bottom:279.781587pt;}
.y1b_c00028{bottom:306.661487pt;}
.y1a_c00028{bottom:333.462031pt;}
.y19_c00028{bottom:360.341931pt;}
.y18_c00028{bottom:387.142475pt;}
.y17_c00028{bottom:414.022375pt;}
.y16_c00028{bottom:440.822919pt;}
.y15_c00028{bottom:467.702819pt;}
.y14_c00028{bottom:494.503363pt;}
.y13_c00028{bottom:521.383263pt;}
.y12_c00028{bottom:548.183807pt;}
.y11_c00028{bottom:575.063707pt;}
.y10_c00028{bottom:601.864251pt;}
.yf_c00028{bottom:646.743959pt;}
.ye_c00028{bottom:673.704771pt;}
.yd_c00028{bottom:700.505315pt;}
.yc_c00028{bottom:727.305859pt;}
.yb_c00028{bottom:772.345835pt;}
.ya_c00028{bottom:799.146379pt;}
.y9_c00028{bottom:826.026279pt;}
.y8_c00028{bottom:852.906179pt;}
.y7_c00028{bottom:879.706723pt;}
.y6_c00028{bottom:906.586623pt;}
.y5_c00028{bottom:933.387167pt;}
.y4_c00028{bottom:960.267059pt;}
.y3_c00028{bottom:987.067603pt;}
.h6_c00028{height:34.967066pt;}
.h7_c00028{height:48.087599pt;}
.h2_c00028{height:55.645234pt;}
.h1_c00028{height:55.797187pt;}
.h5_c00028{height:55.821251pt;}
.h4_c00028{height:56.192266pt;}
.h3_c00028{height:65.483398pt;}
.h0_c00028{height:1122.666667pt;}
.w0_c00028{width:793.333333pt;}
.x0_c00028{left:0.000000pt;}
.x2_c00028{left:73.519684pt;}
.x1_c00028{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ebbbbdbc5b23277559fb4d04.woff2')format("woff");}.ff1_c00029{font-family:ff1_c00029;line-height:1.106934;font-style:normal;font-weight:normal;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_2393e6266d58336433c812ce.woff2')format("woff");}.ff2_c00029{font-family:ff2_c00029;line-height:1.104492;font-style:normal;font-weight:normal;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_6e3fc3b42fad9b1a43d26ebd.woff2')format("woff");}.ff3_c00029{font-family:ff3_c00029;line-height:1.133301;font-style:normal;font-weight:normal;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_d2ef0493caf4dc7a3c7550a1.woff2')format("woff");}.ff4_c00029{font-family:ff4_c00029;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00029;src:url('chunks/assets/font_bf0cc8f747f14181bd564fda.woff2')format("woff");}.ff5_c00029{font-family:ff5_c00029;line-height:1.133301;font-style:normal;font-weight:normal;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_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff6_c00029{font-family:ff6_c00029;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00029{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00029{vertical-align:-14.760000px;}
.v0_c00029{vertical-align:0.000000px;}
.v1_c00029{vertical-align:32.042034px;}
.ls1d_c00029{letter-spacing:-0.730830px;}
.ls1b_c00029{letter-spacing:-0.362492px;}
.ls11_c00029{letter-spacing:-0.350798px;}
.ls15_c00029{letter-spacing:-0.344952px;}
.ls17_c00029{letter-spacing:-0.257252px;}
.ls1a_c00029{letter-spacing:-0.245559px;}
.ls12_c00029{letter-spacing:-0.216326px;}
.ls1c_c00029{letter-spacing:-0.122779px;}
.lsf_c00029{letter-spacing:-0.105240px;}
.ls13_c00029{letter-spacing:-0.064313px;}
.ls5_c00029{letter-spacing:-0.063018px;}
.lsb_c00029{letter-spacing:-0.056016px;}
.ls9_c00029{letter-spacing:-0.049014px;}
.ls8_c00029{letter-spacing:-0.042012px;}
.lse_c00029{letter-spacing:-0.035010px;}
.ls7_c00029{letter-spacing:-0.028008px;}
.lsd_c00029{letter-spacing:-0.021006px;}
.ls1f_c00029{letter-spacing:-0.017540px;}
.lsa_c00029{letter-spacing:-0.014004px;}
.lsc_c00029{letter-spacing:-0.007002px;}
.ls19_c00029{letter-spacing:-0.005847px;}
.ls6_c00029{letter-spacing:0.000000px;}
.ls14_c00029{letter-spacing:0.005847px;}
.ls3_c00029{letter-spacing:0.007002px;}
.ls0_c00029{letter-spacing:0.014004px;}
.ls2_c00029{letter-spacing:0.021006px;}
.ls16_c00029{letter-spacing:0.029233px;}
.ls1_c00029{letter-spacing:0.031306px;}
.ls20_c00029{letter-spacing:0.134473px;}
.ls10_c00029{letter-spacing:0.309872px;}
.ls1e_c00029{letter-spacing:0.321565px;}
.ls18_c00029{letter-spacing:0.344952px;}
.ls4_c00029{letter-spacing:0.362492px;}
.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;}
}
.ws3_c00029{word-spacing:-58.466400px;}
.ws1_c00029{word-spacing:-19.465560px;}
.ws4_c00029{word-spacing:-15.978867px;}
.ws0_c00029{word-spacing:-12.944347px;}
.ws2_c00029{word-spacing:-10.473259px;}
.ws2b_c00029{word-spacing:-0.309872px;}
.ws2d_c00029{word-spacing:-0.122779px;}
.ws18_c00029{word-spacing:-0.028008px;}
.ws5_c00029{word-spacing:0.000000px;}
.ws1a_c00029{word-spacing:0.007002px;}
.ws2c_c00029{word-spacing:0.029233px;}
.wsd_c00029{word-spacing:0.371106px;}
.ws1d_c00029{word-spacing:0.378108px;}
.ws28_c00029{word-spacing:0.380032px;}
.ws29_c00029{word-spacing:0.619744px;}
.ws27_c00029{word-spacing:0.631437px;}
.ws25_c00029{word-spacing:0.795143px;}
.ws2a_c00029{word-spacing:1.105015px;}
.ws23_c00029{word-spacing:1.145941px;}
.ws24_c00029{word-spacing:1.444120px;}
.ws26_c00029{word-spacing:1.806612px;}
.ws22_c00029{word-spacing:1.917698px;}
.ws1f_c00029{word-spacing:2.884824px;}
.ws20_c00029{word-spacing:2.919834px;}
.ws11_c00029{word-spacing:3.613032px;}
.ws6_c00029{word-spacing:3.977136px;}
.ws7_c00029{word-spacing:3.991140px;}
.ws21_c00029{word-spacing:4.656330px;}
.ws1b_c00029{word-spacing:4.677336px;}
.wsc_c00029{word-spacing:5.013432px;}
.wsa_c00029{word-spacing:5.027436px;}
.wsb_c00029{word-spacing:5.041440px;}
.ws13_c00029{word-spacing:7.933266px;}
.ws17_c00029{word-spacing:9.333666px;}
.ws16_c00029{word-spacing:9.375678px;}
.ws10_c00029{word-spacing:10.047870px;}
.wsf_c00029{word-spacing:10.110888px;}
.ws8_c00029{word-spacing:10.453986px;}
.ws9_c00029{word-spacing:10.832094px;}
.wse_c00029{word-spacing:10.839096px;}
.ws19_c00029{word-spacing:11.518290px;}
.ws1e_c00029{word-spacing:12.967704px;}
.ws12_c00029{word-spacing:18.338238px;}
.ws1c_c00029{word-spacing:18.373248px;}
.ws14_c00029{word-spacing:21.244068px;}
.ws15_c00029{word-spacing:21.594168px;}
._4_c00029{margin-left:-2.707902px;}
._1_c00029{margin-left:-1.050300px;}
._0_c00029{width:1.176336px;}
._2_c00029{width:2.254644px;}
._3_c00029{width:5.930694px;}
.fc0_c00029{color:rgb(0,0,0);}
.fs2_c00029{font-size:37.809600px;}
.fs1_c00029{font-size:46.562400px;}
.fs3_c00029{font-size:58.466400px;}
.fs0_c00029{font-size:70.020000px;}
.y0_c00029{bottom:0.000000px;}
.y2_c00029{bottom:109.740968px;}
.y1_c00029{bottom:129.810450px;}
.y22_c00029{bottom:149.429891px;}
.y21_c00029{bottom:170.940450px;}
.y20_c00029{bottom:185.249891px;}
.y1f_c00029{bottom:206.760450px;}
.y1e_c00029{bottom:221.069891px;}
.y1d_c00029{bottom:242.580450px;}
.y1c_c00029{bottom:257.250510px;}
.y1b_c00029{bottom:304.050128px;}
.y1a_c00029{bottom:334.290015px;}
.y19_c00029{bottom:364.440627px;}
.y18_c00029{bottom:415.109694px;}
.y17_c00029{bottom:445.260306px;}
.y16_c00029{bottom:495.930279px;}
.y15_c00029{bottom:526.170167px;}
.y14_c00029{bottom:556.320778px;}
.y13_c00029{bottom:606.808204px;}
.y12_c00029{bottom:637.048092px;}
.y11_c00029{bottom:687.718065px;}
.y10_c00029{bottom:717.868677px;}
.yf_c00029{bottom:748.108564px;}
.ye_c00029{bottom:778.259176px;}
.yd_c00029{bottom:808.499064px;}
.yc_c00029{bottom:838.649676px;}
.yb_c00029{bottom:868.889563px;}
.ya_c00029{bottom:899.040175px;}
.y9_c00029{bottom:929.280063px;}
.y8_c00029{bottom:959.519951px;}
.y7_c00029{bottom:989.670562px;}
.y6_c00029{bottom:1019.909942px;}
.y5_c00029{bottom:1050.060553px;}
.y4_c00029{bottom:1080.300441px;}
.y3_c00029{bottom:1110.451053px;}
.h6_c00029{height:39.338549px;}
.h7_c00029{height:54.098549px;}
.h2_c00029{height:62.600889px;}
.h1_c00029{height:62.771836px;}
.h3_c00029{height:73.670820px;}
.h5_c00029{height:73.786088px;}
.h4_c00029{height:74.151446px;}
.h0_c00029{height:1263.000000px;}
.w0_c00029{width:892.500000px;}
.x0_c00029{left:0.000000px;}
.x2_c00029{left:82.709645px;}
.x1_c00029{left:436.680000px;}
@media print{
.v2_c00029{vertical-align:-13.120000pt;}
.v0_c00029{vertical-align:0.000000pt;}
.v1_c00029{vertical-align:28.481808pt;}
.ls1d_c00029{letter-spacing:-0.649627pt;}
.ls1b_c00029{letter-spacing:-0.322215pt;}
.ls11_c00029{letter-spacing:-0.311821pt;}
.ls15_c00029{letter-spacing:-0.306624pt;}
.ls17_c00029{letter-spacing:-0.228669pt;}
.ls1a_c00029{letter-spacing:-0.218275pt;}
.ls12_c00029{letter-spacing:-0.192289pt;}
.ls1c_c00029{letter-spacing:-0.109137pt;}
.lsf_c00029{letter-spacing:-0.093546pt;}
.ls13_c00029{letter-spacing:-0.057167pt;}
.ls5_c00029{letter-spacing:-0.056016pt;}
.lsb_c00029{letter-spacing:-0.049792pt;}
.ls9_c00029{letter-spacing:-0.043568pt;}
.ls8_c00029{letter-spacing:-0.037344pt;}
.lse_c00029{letter-spacing:-0.031120pt;}
.ls7_c00029{letter-spacing:-0.024896pt;}
.lsd_c00029{letter-spacing:-0.018672pt;}
.ls1f_c00029{letter-spacing:-0.015591pt;}
.lsa_c00029{letter-spacing:-0.012448pt;}
.lsc_c00029{letter-spacing:-0.006224pt;}
.ls19_c00029{letter-spacing:-0.005197pt;}
.ls6_c00029{letter-spacing:0.000000pt;}
.ls14_c00029{letter-spacing:0.005197pt;}
.ls3_c00029{letter-spacing:0.006224pt;}
.ls0_c00029{letter-spacing:0.012448pt;}
.ls2_c00029{letter-spacing:0.018672pt;}
.ls16_c00029{letter-spacing:0.025985pt;}
.ls1_c00029{letter-spacing:0.027827pt;}
.ls20_c00029{letter-spacing:0.119531pt;}
.ls10_c00029{letter-spacing:0.275442pt;}
.ls1e_c00029{letter-spacing:0.285836pt;}
.ls18_c00029{letter-spacing:0.306624pt;}
.ls4_c00029{letter-spacing:0.322215pt;}
.ws3_c00029{word-spacing:-51.970133pt;}
.ws1_c00029{word-spacing:-17.302720pt;}
.ws4_c00029{word-spacing:-14.203437pt;}
.ws0_c00029{word-spacing:-11.506086pt;}
.ws2_c00029{word-spacing:-9.309564pt;}
.ws2b_c00029{word-spacing:-0.275442pt;}
.ws2d_c00029{word-spacing:-0.109137pt;}
.ws18_c00029{word-spacing:-0.024896pt;}
.ws5_c00029{word-spacing:0.000000pt;}
.ws1a_c00029{word-spacing:0.006224pt;}
.ws2c_c00029{word-spacing:0.025985pt;}
.wsd_c00029{word-spacing:0.329872pt;}
.ws1d_c00029{word-spacing:0.336096pt;}
.ws28_c00029{word-spacing:0.337806pt;}
.ws29_c00029{word-spacing:0.550883pt;}
.ws27_c00029{word-spacing:0.561277pt;}
.ws25_c00029{word-spacing:0.706794pt;}
.ws2a_c00029{word-spacing:0.982236pt;}
.ws23_c00029{word-spacing:1.018615pt;}
.ws24_c00029{word-spacing:1.283662pt;}
.ws26_c00029{word-spacing:1.605877pt;}
.ws22_c00029{word-spacing:1.704620pt;}
.ws1f_c00029{word-spacing:2.564288pt;}
.ws20_c00029{word-spacing:2.595408pt;}
.ws11_c00029{word-spacing:3.211584pt;}
.ws6_c00029{word-spacing:3.535232pt;}
.ws7_c00029{word-spacing:3.547680pt;}
.ws21_c00029{word-spacing:4.138960pt;}
.ws1b_c00029{word-spacing:4.157632pt;}
.wsc_c00029{word-spacing:4.456384pt;}
.wsa_c00029{word-spacing:4.468832pt;}
.wsb_c00029{word-spacing:4.481280pt;}
.ws13_c00029{word-spacing:7.051792pt;}
.ws17_c00029{word-spacing:8.296592pt;}
.ws16_c00029{word-spacing:8.333936pt;}
.ws10_c00029{word-spacing:8.931440pt;}
.wsf_c00029{word-spacing:8.987456pt;}
.ws8_c00029{word-spacing:9.292432pt;}
.ws9_c00029{word-spacing:9.628528pt;}
.wse_c00029{word-spacing:9.634752pt;}
.ws19_c00029{word-spacing:10.238480pt;}
.ws1e_c00029{word-spacing:11.526848pt;}
.ws12_c00029{word-spacing:16.300656pt;}
.ws1c_c00029{word-spacing:16.331776pt;}
.ws14_c00029{word-spacing:18.883616pt;}
.ws15_c00029{word-spacing:19.194816pt;}
._4_c00029{margin-left:-2.407024pt;}
._1_c00029{margin-left:-0.933600pt;}
._0_c00029{width:1.045632pt;}
._2_c00029{width:2.004128pt;}
._3_c00029{width:5.271728pt;}
.fs2_c00029{font-size:33.608533pt;}
.fs1_c00029{font-size:41.388800pt;}
.fs3_c00029{font-size:51.970133pt;}
.fs0_c00029{font-size:62.240000pt;}
.y0_c00029{bottom:0.000000pt;}
.y2_c00029{bottom:97.547527pt;}
.y1_c00029{bottom:115.387067pt;}
.y22_c00029{bottom:132.826570pt;}
.y21_c00029{bottom:151.947067pt;}
.y20_c00029{bottom:164.666570pt;}
.y1f_c00029{bottom:183.787067pt;}
.y1e_c00029{bottom:196.506570pt;}
.y1d_c00029{bottom:215.627067pt;}
.y1c_c00029{bottom:228.667120pt;}
.y1b_c00029{bottom:270.266780pt;}
.y1a_c00029{bottom:297.146680pt;}
.y19_c00029{bottom:323.947224pt;}
.y18_c00029{bottom:368.986395pt;}
.y17_c00029{bottom:395.786939pt;}
.y16_c00029{bottom:440.826915pt;}
.y15_c00029{bottom:467.706815pt;}
.y14_c00029{bottom:494.507359pt;}
.y13_c00029{bottom:539.385071pt;}
.y12_c00029{bottom:566.264971pt;}
.y11_c00029{bottom:611.304947pt;}
.y10_c00029{bottom:638.105491pt;}
.yf_c00029{bottom:664.985391pt;}
.ye_c00029{bottom:691.785935pt;}
.yd_c00029{bottom:718.665835pt;}
.yc_c00029{bottom:745.466379pt;}
.yb_c00029{bottom:772.346279pt;}
.ya_c00029{bottom:799.146823pt;}
.y9_c00029{bottom:826.026723pt;}
.y8_c00029{bottom:852.906623pt;}
.y7_c00029{bottom:879.707167pt;}
.y6_c00029{bottom:906.586615pt;}
.y5_c00029{bottom:933.387159pt;}
.y4_c00029{bottom:960.267059pt;}
.y3_c00029{bottom:987.067603pt;}
.h6_c00029{height:34.967599pt;}
.h7_c00029{height:48.087599pt;}
.h2_c00029{height:55.645234pt;}
.h1_c00029{height:55.797187pt;}
.h3_c00029{height:65.485174pt;}
.h5_c00029{height:65.587634pt;}
.h4_c00029{height:65.912397pt;}
.h0_c00029{height:1122.666667pt;}
.w0_c00029{width:793.333333pt;}
.x0_c00029{left:0.000000pt;}
.x2_c00029{left:73.519684pt;}
.x1_c00029{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ea499b0357c1c23bf20c3fe3.woff2')format("woff");}.ff1_c00030{font-family:ff1_c00030;line-height:1.106934;font-style:normal;font-weight:normal;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_fd845b3007047e7fffab9dd6.woff2')format("woff");}.ff2_c00030{font-family:ff2_c00030;line-height:1.104492;font-style:normal;font-weight:normal;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_510f773c8a640bb35ec88a67.woff2')format("woff");}.ff3_c00030{font-family:ff3_c00030;line-height:1.133301;font-style:normal;font-weight:normal;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_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff4_c00030{font-family:ff4_c00030;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00030;src:url('chunks/assets/font_f94ac00a2a070b4df3e99d9a.woff2')format("woff");}.ff5_c00030{font-family:ff5_c00030;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00030;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff6_c00030{font-family:ff6_c00030;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00030{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00030{vertical-align:-14.760000px;}
.v0_c00030{vertical-align:0.000000px;}
.v1_c00030{vertical-align:32.389686px;}
.ls11_c00030{letter-spacing:-0.456038px;}
.ls16_c00030{letter-spacing:-0.286485px;}
.ls12_c00030{letter-spacing:-0.146166px;}
.ls13_c00030{letter-spacing:-0.128626px;}
.ls6_c00030{letter-spacing:-0.063018px;}
.lsd_c00030{letter-spacing:-0.056016px;}
.ls15_c00030{letter-spacing:-0.052620px;}
.lse_c00030{letter-spacing:-0.049014px;}
.lsc_c00030{letter-spacing:-0.035010px;}
.lsb_c00030{letter-spacing:-0.028008px;}
.ls9_c00030{letter-spacing:-0.021006px;}
.ls8_c00030{letter-spacing:-0.014004px;}
.lsa_c00030{letter-spacing:-0.007002px;}
.ls7_c00030{letter-spacing:0.000000px;}
.ls2_c00030{letter-spacing:0.007002px;}
.ls4_c00030{letter-spacing:0.011693px;}
.ls3_c00030{letter-spacing:0.014004px;}
.ls0_c00030{letter-spacing:0.031306px;}
.ls1_c00030{letter-spacing:0.035010px;}
.ls14_c00030{letter-spacing:0.356645px;}
.ls5_c00030{letter-spacing:0.362492px;}
.ls10_c00030{letter-spacing:0.450191px;}
.lsf_c00030{letter-spacing:1.812458px;}
.sc__c00030{text-shadow:none;}
.sc0_c00030{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00030{-webkit-text-stroke:0px transparent;}
.sc0_c00030{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00030{word-spacing:-58.466400px;}
.ws2_c00030{word-spacing:-15.739155px;}
.ws0_c00030{word-spacing:-10.473259px;}
.ws11_c00030{word-spacing:-0.021006px;}
.ws1c_c00030{word-spacing:-0.014004px;}
.ws7_c00030{word-spacing:-0.007002px;}
.ws3_c00030{word-spacing:0.000000px;}
.wsb_c00030{word-spacing:0.014004px;}
.ws23_c00030{word-spacing:0.035010px;}
.ws1f_c00030{word-spacing:0.042012px;}
.ws2d_c00030{word-spacing:0.298179px;}
.wsa_c00030{word-spacing:0.371106px;}
.ws4_c00030{word-spacing:0.707202px;}
.ws14_c00030{word-spacing:0.721206px;}
.ws27_c00030{word-spacing:1.005622px;}
.ws28_c00030{word-spacing:1.444120px;}
.ws18_c00030{word-spacing:1.799514px;}
.ws1d_c00030{word-spacing:2.149614px;}
.ws29_c00030{word-spacing:2.321116px;}
.ws10_c00030{word-spacing:2.513718px;}
.wse_c00030{word-spacing:3.984138px;}
.ws8_c00030{word-spacing:4.628322px;}
.ws9_c00030{word-spacing:4.670334px;}
.ws13_c00030{word-spacing:5.384538px;}
.ws12_c00030{word-spacing:5.391540px;}
.ws20_c00030{word-spacing:6.448842px;}
.wsf_c00030{word-spacing:6.497856px;}
.ws1e_c00030{word-spacing:6.840954px;}
.ws19_c00030{word-spacing:8.297370px;}
.ws1a_c00030{word-spacing:8.304372px;}
.ws15_c00030{word-spacing:8.654472px;}
.ws24_c00030{word-spacing:9.004572px;}
.ws26_c00030{word-spacing:9.354672px;}
.ws25_c00030{word-spacing:9.368676px;}
.ws16_c00030{word-spacing:10.411974px;}
.ws17_c00030{word-spacing:10.439982px;}
.ws1b_c00030{word-spacing:12.967704px;}
.wsc_c00030{word-spacing:13.317804px;}
.wsd_c00030{word-spacing:13.660902px;}
.ws5_c00030{word-spacing:14.039010px;}
.ws6_c00030{word-spacing:14.046012px;}
.ws22_c00030{word-spacing:14.767218px;}
.ws21_c00030{word-spacing:14.774220px;}
.ws2b_c00030{word-spacing:16.575224px;}
.ws2c_c00030{word-spacing:16.627844px;}
.ws2a_c00030{word-spacing:17.060496px;}
._3_c00030{margin-left:-2.708406px;}
._1_c00030{margin-left:-1.421406px;}
._0_c00030{width:1.176336px;}
._2_c00030{width:5.930694px;}
.fc0_c00030{color:rgb(0,0,0);}
.fs2_c00030{font-size:37.809600px;}
.fs1_c00030{font-size:46.562400px;}
.fs3_c00030{font-size:58.466400px;}
.fs0_c00030{font-size:70.020000px;}
.y0_c00030{bottom:0.000000px;}
.y2_c00030{bottom:109.740968px;}
.y1_c00030{bottom:129.810450px;}
.y22_c00030{bottom:149.429548px;}
.y21_c00030{bottom:167.250107px;}
.y20_c00030{bottom:188.940450px;}
.y1f_c00030{bottom:203.608952px;}
.y1e_c00030{bottom:233.938115px;}
.y1d_c00030{bottom:264.178002px;}
.y1c_c00030{bottom:294.328614px;}
.y1b_c00030{bottom:324.568502px;}
.y1a_c00030{bottom:354.808389px;}
.y19_c00030{bottom:384.959001px;}
.y18_c00030{bottom:435.448673px;}
.y17_c00030{bottom:465.777836px;}
.y16_c00030{bottom:495.837422px;}
.y15_c00030{bottom:546.507395px;}
.y14_c00030{bottom:576.747282px;}
.y13_c00030{bottom:606.897894px;}
.y12_c00030{bottom:637.137782px;}
.y11_c00030{bottom:667.288394px;}
.y10_c00030{bottom:697.528281px;}
.yf_c00030{bottom:727.678893px;}
.ye_c00030{bottom:757.918781px;}
.yd_c00030{bottom:788.069393px;}
.yc_c00030{bottom:818.309280px;}
.yb_c00030{bottom:848.459892px;}
.ya_c00030{bottom:878.699779px;}
.y9_c00030{bottom:908.850392px;}
.y8_c00030{bottom:939.090279px;}
.y7_c00030{bottom:969.240891px;}
.y6_c00030{bottom:999.480779px;}
.y5_c00030{bottom:1049.973029px;}
.y4_c00030{bottom:1080.302192px;}
.y3_c00030{bottom:1110.361778px;}
.h5_c00030{height:39.338549px;}
.h6_c00030{height:54.098549px;}
.h2_c00030{height:62.600889px;}
.h1_c00030{height:62.771836px;}
.h4_c00030{height:62.777830px;}
.h3_c00030{height:74.018472px;}
.h0_c00030{height:1263.000000px;}
.w0_c00030{width:892.500000px;}
.x0_c00030{left:0.000000px;}
.x2_c00030{left:82.709645px;}
.x1_c00030{left:436.680000px;}
@media print{
.v2_c00030{vertical-align:-13.120000pt;}
.v0_c00030{vertical-align:0.000000pt;}
.v1_c00030{vertical-align:28.790832pt;}
.ls11_c00030{letter-spacing:-0.405367pt;}
.ls16_c00030{letter-spacing:-0.254654pt;}
.ls12_c00030{letter-spacing:-0.129925pt;}
.ls13_c00030{letter-spacing:-0.114334pt;}
.ls6_c00030{letter-spacing:-0.056016pt;}
.lsd_c00030{letter-spacing:-0.049792pt;}
.ls15_c00030{letter-spacing:-0.046773pt;}
.lse_c00030{letter-spacing:-0.043568pt;}
.lsc_c00030{letter-spacing:-0.031120pt;}
.lsb_c00030{letter-spacing:-0.024896pt;}
.ls9_c00030{letter-spacing:-0.018672pt;}
.ls8_c00030{letter-spacing:-0.012448pt;}
.lsa_c00030{letter-spacing:-0.006224pt;}
.ls7_c00030{letter-spacing:0.000000pt;}
.ls2_c00030{letter-spacing:0.006224pt;}
.ls4_c00030{letter-spacing:0.010394pt;}
.ls3_c00030{letter-spacing:0.012448pt;}
.ls0_c00030{letter-spacing:0.027827pt;}
.ls1_c00030{letter-spacing:0.031120pt;}
.ls14_c00030{letter-spacing:0.317018pt;}
.ls5_c00030{letter-spacing:0.322215pt;}
.ls10_c00030{letter-spacing:0.400170pt;}
.lsf_c00030{letter-spacing:1.611074pt;}
.ws1_c00030{word-spacing:-51.970133pt;}
.ws2_c00030{word-spacing:-13.990360pt;}
.ws0_c00030{word-spacing:-9.309564pt;}
.ws11_c00030{word-spacing:-0.018672pt;}
.ws1c_c00030{word-spacing:-0.012448pt;}
.ws7_c00030{word-spacing:-0.006224pt;}
.ws3_c00030{word-spacing:0.000000pt;}
.wsb_c00030{word-spacing:0.012448pt;}
.ws23_c00030{word-spacing:0.031120pt;}
.ws1f_c00030{word-spacing:0.037344pt;}
.ws2d_c00030{word-spacing:0.265048pt;}
.wsa_c00030{word-spacing:0.329872pt;}
.ws4_c00030{word-spacing:0.628624pt;}
.ws14_c00030{word-spacing:0.641072pt;}
.ws27_c00030{word-spacing:0.893886pt;}
.ws28_c00030{word-spacing:1.283662pt;}
.ws18_c00030{word-spacing:1.599568pt;}
.ws1d_c00030{word-spacing:1.910768pt;}
.ws29_c00030{word-spacing:2.063214pt;}
.ws10_c00030{word-spacing:2.234416pt;}
.wse_c00030{word-spacing:3.541456pt;}
.ws8_c00030{word-spacing:4.114064pt;}
.ws9_c00030{word-spacing:4.151408pt;}
.ws13_c00030{word-spacing:4.786256pt;}
.ws12_c00030{word-spacing:4.792480pt;}
.ws20_c00030{word-spacing:5.732304pt;}
.wsf_c00030{word-spacing:5.775872pt;}
.ws1e_c00030{word-spacing:6.080848pt;}
.ws19_c00030{word-spacing:7.375440pt;}
.ws1a_c00030{word-spacing:7.381664pt;}
.ws15_c00030{word-spacing:7.692864pt;}
.ws24_c00030{word-spacing:8.004064pt;}
.ws26_c00030{word-spacing:8.315264pt;}
.ws25_c00030{word-spacing:8.327712pt;}
.ws16_c00030{word-spacing:9.255088pt;}
.ws17_c00030{word-spacing:9.279984pt;}
.ws1b_c00030{word-spacing:11.526848pt;}
.wsc_c00030{word-spacing:11.838048pt;}
.wsd_c00030{word-spacing:12.143024pt;}
.ws5_c00030{word-spacing:12.479120pt;}
.ws6_c00030{word-spacing:12.485344pt;}
.ws22_c00030{word-spacing:13.126416pt;}
.ws21_c00030{word-spacing:13.132640pt;}
.ws2b_c00030{word-spacing:14.733533pt;}
.ws2c_c00030{word-spacing:14.780306pt;}
.ws2a_c00030{word-spacing:15.164885pt;}
._3_c00030{margin-left:-2.407472pt;}
._1_c00030{margin-left:-1.263472pt;}
._0_c00030{width:1.045632pt;}
._2_c00030{width:5.271728pt;}
.fs2_c00030{font-size:33.608533pt;}
.fs1_c00030{font-size:41.388800pt;}
.fs3_c00030{font-size:51.970133pt;}
.fs0_c00030{font-size:62.240000pt;}
.y0_c00030{bottom:0.000000pt;}
.y2_c00030{bottom:97.547527pt;}
.y1_c00030{bottom:115.387067pt;}
.y22_c00030{bottom:132.826265pt;}
.y21_c00030{bottom:148.666762pt;}
.y20_c00030{bottom:167.947067pt;}
.y1f_c00030{bottom:180.985735pt;}
.y1e_c00030{bottom:207.944991pt;}
.y1d_c00030{bottom:234.824891pt;}
.y1c_c00030{bottom:261.625435pt;}
.y1b_c00030{bottom:288.505335pt;}
.y1a_c00030{bottom:315.385235pt;}
.y19_c00030{bottom:342.185779pt;}
.y18_c00030{bottom:387.065487pt;}
.y17_c00030{bottom:414.024743pt;}
.y16_c00030{bottom:440.744375pt;}
.y15_c00030{bottom:485.784351pt;}
.y14_c00030{bottom:512.664251pt;}
.y13_c00030{bottom:539.464795pt;}
.y12_c00030{bottom:566.344695pt;}
.y11_c00030{bottom:593.145239pt;}
.y10_c00030{bottom:620.025139pt;}
.yf_c00030{bottom:646.825683pt;}
.ye_c00030{bottom:673.705583pt;}
.yd_c00030{bottom:700.506127pt;}
.yc_c00030{bottom:727.386027pt;}
.yb_c00030{bottom:754.186571pt;}
.ya_c00030{bottom:781.066471pt;}
.y9_c00030{bottom:807.867015pt;}
.y8_c00030{bottom:834.746915pt;}
.y7_c00030{bottom:861.547459pt;}
.y6_c00030{bottom:888.427359pt;}
.y5_c00030{bottom:933.309359pt;}
.y4_c00030{bottom:960.268615pt;}
.y3_c00030{bottom:986.988247pt;}
.h5_c00030{height:34.967599pt;}
.h6_c00030{height:48.087599pt;}
.h2_c00030{height:55.645234pt;}
.h1_c00030{height:55.797187pt;}
.h4_c00030{height:55.802515pt;}
.h3_c00030{height:65.794198pt;}
.h0_c00030{height:1122.666667pt;}
.w0_c00030{width:793.333333pt;}
.x0_c00030{left:0.000000pt;}
.x2_c00030{left:73.519684pt;}
.x1_c00030{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_776c555d31c446a135594d51.woff2')format("woff");}.ff1_c00031{font-family:ff1_c00031;line-height:1.106934;font-style:normal;font-weight:normal;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_872a26a87a1fd8160e709932.woff2')format("woff");}.ff2_c00031{font-family:ff2_c00031;line-height:1.104492;font-style:normal;font-weight:normal;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_71f4419739fd18aeb8508b0e.woff2')format("woff");}.ff3_c00031{font-family:ff3_c00031;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00031;src:url('chunks/assets/font_8658e5605ff3ac0616b61254.woff2')format("woff");}.ff4_c00031{font-family:ff4_c00031;line-height:1.133301;font-style:normal;font-weight:normal;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_44515c1a343d71073382e4f9.woff2')format("woff");}.ff5_c00031{font-family:ff5_c00031;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00031;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff6_c00031{font-family:ff6_c00031;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00031;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff7_c00031{font-family:ff7_c00031;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00031{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00031{vertical-align:-14.760000px;}
.v0_c00031{vertical-align:0.000000px;}
.v1_c00031{vertical-align:32.399586px;}
.ls19_c00031{letter-spacing:-0.309872px;}
.ls21_c00031{letter-spacing:-0.257252px;}
.ls1c_c00031{letter-spacing:-0.192939px;}
.ls23_c00031{letter-spacing:-0.146166px;}
.ls15_c00031{letter-spacing:-0.134473px;}
.ls1d_c00031{letter-spacing:-0.116933px;}
.ls18_c00031{letter-spacing:-0.075619px;}
.ls8_c00031{letter-spacing:-0.063018px;}
.lse_c00031{letter-spacing:-0.056016px;}
.lsb_c00031{letter-spacing:-0.049014px;}
.ls13_c00031{letter-spacing:-0.042012px;}
.ls14_c00031{letter-spacing:-0.040926px;}
.ls22_c00031{letter-spacing:-0.035080px;}
.ls12_c00031{letter-spacing:-0.035010px;}
.ls11_c00031{letter-spacing:-0.028008px;}
.ls16_c00031{letter-spacing:-0.023387px;}
.lsc_c00031{letter-spacing:-0.021006px;}
.ls1f_c00031{letter-spacing:-0.017540px;}
.lsa_c00031{letter-spacing:-0.014004px;}
.ls10_c00031{letter-spacing:-0.007002px;}
.ls9_c00031{letter-spacing:0.000000px;}
.ls2_c00031{letter-spacing:0.007002px;}
.ls1_c00031{letter-spacing:0.014004px;}
.lsf_c00031{letter-spacing:0.023281px;}
.ls20_c00031{letter-spacing:0.023387px;}
.ls0_c00031{letter-spacing:0.031306px;}
.ls1b_c00031{letter-spacing:0.076006px;}
.ls6_c00031{letter-spacing:0.111086px;}
.ls1a_c00031{letter-spacing:0.146166px;}
.ls1e_c00031{letter-spacing:0.210479px;}
.lsd_c00031{letter-spacing:0.343098px;}
.ls7_c00031{letter-spacing:0.344952px;}
.ls24_c00031{letter-spacing:0.356645px;}
.ls5_c00031{letter-spacing:0.362492px;}
.ls17_c00031{letter-spacing:0.374185px;}
.ls4_c00031{letter-spacing:0.441126px;}
.ls3_c00031{letter-spacing:26.971704px;}
.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;}
}
.ws4_c00031{word-spacing:-58.466400px;}
.ws0_c00031{word-spacing:-19.416546px;}
.ws6_c00031{word-spacing:-16.218579px;}
.ws5_c00031{word-spacing:-16.078260px;}
.ws7_c00031{word-spacing:-15.937941px;}
.ws1_c00031{word-spacing:-12.967628px;}
.ws2_c00031{word-spacing:-10.473259px;}
.ws3_c00031{word-spacing:-10.397640px;}
.ws33_c00031{word-spacing:-0.701597px;}
.ws25_c00031{word-spacing:-0.362492px;}
.ws1b_c00031{word-spacing:-0.343098px;}
.ws8_c00031{word-spacing:0.000000px;}
.ws15_c00031{word-spacing:0.007002px;}
.ws26_c00031{word-spacing:0.011693px;}
.ws1d_c00031{word-spacing:0.028008px;}
.ws32_c00031{word-spacing:0.035080px;}
.ws10_c00031{word-spacing:0.364104px;}
.ws1c_c00031{word-spacing:0.378108px;}
.ws14_c00031{word-spacing:0.693198px;}
.wsf_c00031{word-spacing:1.078308px;}
.ws13_c00031{word-spacing:1.120320px;}
.wse_c00031{word-spacing:2.170620px;}
.wsd_c00031{word-spacing:2.492712px;}
.ws21_c00031{word-spacing:3.508002px;}
.ws20_c00031{word-spacing:3.991140px;}
.ws18_c00031{word-spacing:5.041440px;}
.ws11_c00031{word-spacing:5.370534px;}
.ws12_c00031{word-spacing:5.398542px;}
.ws30_c00031{word-spacing:10.827977px;}
.ws2f_c00031{word-spacing:11.208009px;}
.ws31_c00031{word-spacing:11.681587px;}
.ws29_c00031{word-spacing:12.266251px;}
.ws28_c00031{word-spacing:12.465036px;}
.ws2b_c00031{word-spacing:12.804142px;}
.ws2a_c00031{word-spacing:12.897688px;}
.ws27_c00031{word-spacing:12.921074px;}
.ws17_c00031{word-spacing:15.824520px;}
.ws1e_c00031{word-spacing:16.209630px;}
.wsb_c00031{word-spacing:17.287938px;}
.ws16_c00031{word-spacing:18.702342px;}
.wsc_c00031{word-spacing:19.437552px;}
.ws1f_c00031{word-spacing:23.022576px;}
.wsa_c00031{word-spacing:23.757786px;}
.ws1a_c00031{word-spacing:26.971704px;}
.ws19_c00031{word-spacing:26.992710px;}
.ws23_c00031{word-spacing:30.028343px;}
.ws24_c00031{word-spacing:30.636394px;}
.ws22_c00031{word-spacing:30.653934px;}
.ws2e_c00031{word-spacing:41.300665px;}
.ws2c_c00031{word-spacing:41.563764px;}
.ws2d_c00031{word-spacing:41.791783px;}
.ws9_c00031{word-spacing:43.923546px;}
._3_c00031{margin-left:-2.709144px;}
._1_c00031{margin-left:-1.064304px;}
._0_c00031{width:1.288368px;}
._2_c00031{width:5.930694px;}
.fc0_c00031{color:rgb(0,0,0);}
.fs2_c00031{font-size:37.809600px;}
.fs1_c00031{font-size:46.562400px;}
.fs3_c00031{font-size:58.466400px;}
.fs0_c00031{font-size:70.020000px;}
.y0_c00031{bottom:0.000000px;}
.y2_c00031{bottom:109.740968px;}
.y1_c00031{bottom:129.810450px;}
.y26_c00031{bottom:149.428990px;}
.y25_c00031{bottom:167.249548px;}
.y24_c00031{bottom:185.249891px;}
.y23_c00031{bottom:206.760450px;}
.y22_c00031{bottom:224.670450px;}
.y21_c00031{bottom:242.580450px;}
.y20_c00031{bottom:256.710107px;}
.y1f_c00031{bottom:278.400450px;}
.y1e_c00031{bottom:293.068862px;}
.y1d_c00031{bottom:325.468866px;}
.y1c_c00031{bottom:355.619478px;}
.y1b_c00031{bottom:385.859365px;}
.y1a_c00031{bottom:416.009977px;}
.y19_c00031{bottom:446.249865px;}
.y18_c00031{bottom:476.400477px;}
.y17_c00031{bottom:506.640365px;}
.y16_c00031{bottom:536.790976px;}
.y15_c00031{bottom:567.030864px;}
.y14_c00031{bottom:597.089451px;}
.y13_c00031{bottom:627.329338px;}
.y12_c00031{bottom:657.479950px;}
.y11_c00031{bottom:687.719838px;}
.y10_c00031{bottom:717.869451px;}
.yf_c00031{bottom:748.109339px;}
.ye_c00031{bottom:778.259951px;}
.yd_c00031{bottom:808.499838px;}
.yc_c00031{bottom:838.649064px;}
.yb_c00031{bottom:868.888951px;}
.ya_c00031{bottom:899.039563px;}
.y9_c00031{bottom:929.279451px;}
.y8_c00031{bottom:959.519339px;}
.y7_c00031{bottom:989.669950px;}
.y6_c00031{bottom:1019.909838px;}
.y5_c00031{bottom:1050.060553px;}
.y4_c00031{bottom:1080.300441px;}
.y3_c00031{bottom:1110.451053px;}
.h8_c00031{height:39.338549px;}
.ha_c00031{height:39.698549px;}
.h9_c00031{height:54.098549px;}
.h2_c00031{height:62.600889px;}
.h1_c00031{height:62.771836px;}
.h7_c00031{height:62.778190px;}
.h4_c00031{height:63.216299px;}
.h3_c00031{height:74.028372px;}
.h6_c00031{height:74.032782px;}
.h5_c00031{height:74.148008px;}
.h0_c00031{height:1263.000000px;}
.w0_c00031{width:892.500000px;}
.x0_c00031{left:0.000000px;}
.x2_c00031{left:82.709645px;}
.x1_c00031{left:436.680000px;}
@media print{
.v2_c00031{vertical-align:-13.120000pt;}
.v0_c00031{vertical-align:0.000000pt;}
.v1_c00031{vertical-align:28.799632pt;}
.ls19_c00031{letter-spacing:-0.275442pt;}
.ls21_c00031{letter-spacing:-0.228669pt;}
.ls1c_c00031{letter-spacing:-0.171501pt;}
.ls23_c00031{letter-spacing:-0.129925pt;}
.ls15_c00031{letter-spacing:-0.119531pt;}
.ls1d_c00031{letter-spacing:-0.103940pt;}
.ls18_c00031{letter-spacing:-0.067217pt;}
.ls8_c00031{letter-spacing:-0.056016pt;}
.lse_c00031{letter-spacing:-0.049792pt;}
.lsb_c00031{letter-spacing:-0.043568pt;}
.ls13_c00031{letter-spacing:-0.037344pt;}
.ls14_c00031{letter-spacing:-0.036379pt;}
.ls22_c00031{letter-spacing:-0.031182pt;}
.ls12_c00031{letter-spacing:-0.031120pt;}
.ls11_c00031{letter-spacing:-0.024896pt;}
.ls16_c00031{letter-spacing:-0.020788pt;}
.lsc_c00031{letter-spacing:-0.018672pt;}
.ls1f_c00031{letter-spacing:-0.015591pt;}
.lsa_c00031{letter-spacing:-0.012448pt;}
.ls10_c00031{letter-spacing:-0.006224pt;}
.ls9_c00031{letter-spacing:0.000000pt;}
.ls2_c00031{letter-spacing:0.006224pt;}
.ls1_c00031{letter-spacing:0.012448pt;}
.lsf_c00031{letter-spacing:0.020694pt;}
.ls20_c00031{letter-spacing:0.020788pt;}
.ls0_c00031{letter-spacing:0.027827pt;}
.ls1b_c00031{letter-spacing:0.067561pt;}
.ls6_c00031{letter-spacing:0.098743pt;}
.ls1a_c00031{letter-spacing:0.129925pt;}
.ls1e_c00031{letter-spacing:0.187092pt;}
.lsd_c00031{letter-spacing:0.304976pt;}
.ls7_c00031{letter-spacing:0.306624pt;}
.ls24_c00031{letter-spacing:0.317018pt;}
.ls5_c00031{letter-spacing:0.322215pt;}
.ls17_c00031{letter-spacing:0.332609pt;}
.ls4_c00031{letter-spacing:0.392112pt;}
.ls3_c00031{letter-spacing:23.974848pt;}
.ws4_c00031{word-spacing:-51.970133pt;}
.ws0_c00031{word-spacing:-17.259152pt;}
.ws6_c00031{word-spacing:-14.416515pt;}
.ws5_c00031{word-spacing:-14.291787pt;}
.ws7_c00031{word-spacing:-14.167058pt;}
.ws1_c00031{word-spacing:-11.526781pt;}
.ws2_c00031{word-spacing:-9.309564pt;}
.ws3_c00031{word-spacing:-9.242347pt;}
.ws33_c00031{word-spacing:-0.623642pt;}
.ws25_c00031{word-spacing:-0.322215pt;}
.ws1b_c00031{word-spacing:-0.304976pt;}
.ws8_c00031{word-spacing:0.000000pt;}
.ws15_c00031{word-spacing:0.006224pt;}
.ws26_c00031{word-spacing:0.010394pt;}
.ws1d_c00031{word-spacing:0.024896pt;}
.ws32_c00031{word-spacing:0.031182pt;}
.ws10_c00031{word-spacing:0.323648pt;}
.ws1c_c00031{word-spacing:0.336096pt;}
.ws14_c00031{word-spacing:0.616176pt;}
.wsf_c00031{word-spacing:0.958496pt;}
.ws13_c00031{word-spacing:0.995840pt;}
.wse_c00031{word-spacing:1.929440pt;}
.wsd_c00031{word-spacing:2.215744pt;}
.ws21_c00031{word-spacing:3.118224pt;}
.ws20_c00031{word-spacing:3.547680pt;}
.ws18_c00031{word-spacing:4.481280pt;}
.ws11_c00031{word-spacing:4.773808pt;}
.ws12_c00031{word-spacing:4.798704pt;}
.ws30_c00031{word-spacing:9.624869pt;}
.ws2f_c00031{word-spacing:9.962675pt;}
.ws31_c00031{word-spacing:10.383633pt;}
.ws29_c00031{word-spacing:10.903334pt;}
.ws28_c00031{word-spacing:11.080032pt;}
.ws2b_c00031{word-spacing:11.381459pt;}
.ws2a_c00031{word-spacing:11.464611pt;}
.ws27_c00031{word-spacing:11.485399pt;}
.ws17_c00031{word-spacing:14.066240pt;}
.ws1e_c00031{word-spacing:14.408560pt;}
.wsb_c00031{word-spacing:15.367056pt;}
.ws16_c00031{word-spacing:16.624304pt;}
.wsc_c00031{word-spacing:17.277824pt;}
.ws1f_c00031{word-spacing:20.464512pt;}
.wsa_c00031{word-spacing:21.118032pt;}
.ws1a_c00031{word-spacing:23.974848pt;}
.ws19_c00031{word-spacing:23.993520pt;}
.ws23_c00031{word-spacing:26.691860pt;}
.ws24_c00031{word-spacing:27.232350pt;}
.ws22_c00031{word-spacing:27.247941pt;}
.ws2e_c00031{word-spacing:36.711702pt;}
.ws2c_c00031{word-spacing:36.945568pt;}
.ws2d_c00031{word-spacing:37.148251pt;}
.ws9_c00031{word-spacing:39.043152pt;}
._3_c00031{margin-left:-2.408128pt;}
._1_c00031{margin-left:-0.946048pt;}
._0_c00031{width:1.145216pt;}
._2_c00031{width:5.271728pt;}
.fs2_c00031{font-size:33.608533pt;}
.fs1_c00031{font-size:41.388800pt;}
.fs3_c00031{font-size:51.970133pt;}
.fs0_c00031{font-size:62.240000pt;}
.y0_c00031{bottom:0.000000pt;}
.y2_c00031{bottom:97.547527pt;}
.y1_c00031{bottom:115.387067pt;}
.y26_c00031{bottom:132.825769pt;}
.y25_c00031{bottom:148.666265pt;}
.y24_c00031{bottom:164.666570pt;}
.y23_c00031{bottom:183.787067pt;}
.y22_c00031{bottom:199.707067pt;}
.y21_c00031{bottom:215.627067pt;}
.y20_c00031{bottom:228.186762pt;}
.y1f_c00031{bottom:247.467067pt;}
.y1e_c00031{bottom:260.505655pt;}
.y1d_c00031{bottom:289.305659pt;}
.y1c_c00031{bottom:316.106203pt;}
.y1b_c00031{bottom:342.986103pt;}
.y1a_c00031{bottom:369.786647pt;}
.y19_c00031{bottom:396.666547pt;}
.y18_c00031{bottom:423.467091pt;}
.y17_c00031{bottom:450.346991pt;}
.y16_c00031{bottom:477.147535pt;}
.y15_c00031{bottom:504.027435pt;}
.y14_c00031{bottom:530.746179pt;}
.y13_c00031{bottom:557.626079pt;}
.y12_c00031{bottom:584.426623pt;}
.y11_c00031{bottom:611.306523pt;}
.y10_c00031{bottom:638.106179pt;}
.yf_c00031{bottom:664.986079pt;}
.ye_c00031{bottom:691.786623pt;}
.yd_c00031{bottom:718.666523pt;}
.yc_c00031{bottom:745.465835pt;}
.yb_c00031{bottom:772.345735pt;}
.ya_c00031{bottom:799.146279pt;}
.y9_c00031{bottom:826.026179pt;}
.y8_c00031{bottom:852.906079pt;}
.y7_c00031{bottom:879.706623pt;}
.y6_c00031{bottom:906.586523pt;}
.y5_c00031{bottom:933.387159pt;}
.y4_c00031{bottom:960.267059pt;}
.y3_c00031{bottom:987.067603pt;}
.h8_c00031{height:34.967599pt;}
.ha_c00031{height:35.287599pt;}
.h9_c00031{height:48.087599pt;}
.h2_c00031{height:55.645234pt;}
.h1_c00031{height:55.797187pt;}
.h7_c00031{height:55.802836pt;}
.h4_c00031{height:56.192266pt;}
.h3_c00031{height:65.802998pt;}
.h6_c00031{height:65.806918pt;}
.h5_c00031{height:65.909341pt;}
.h0_c00031{height:1122.666667pt;}
.w0_c00031{width:793.333333pt;}
.x0_c00031{left:0.000000pt;}
.x2_c00031{left:73.519684pt;}
.x1_c00031{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4e554016c34dab86e9eb00db.woff2')format("woff");}.ff1_c00032{font-family:ff1_c00032;line-height:1.106934;font-style:normal;font-weight:normal;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_7a415f8a074591e2d4cf7e7c.woff2')format("woff");}.ff2_c00032{font-family:ff2_c00032;line-height:1.104492;font-style:normal;font-weight:normal;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_71f4419739fd18aeb8508b0e.woff2')format("woff");}.ff3_c00032{font-family:ff3_c00032;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00032;src:url('chunks/assets/font_72fbe3faf0e7505e71e53916.woff2')format("woff");}.ff4_c00032{font-family:ff4_c00032;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00032;src:url('chunks/assets/font_72098aae9aebeb72eea95611.woff2')format("woff");}.ff5_c00032{font-family:ff5_c00032;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00032;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff6_c00032{font-family:ff6_c00032;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00032;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff7_c00032{font-family:ff7_c00032;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00032{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00032{vertical-align:-14.760000px;}
.v0_c00032{vertical-align:0.000000px;}
.v1_c00032{vertical-align:32.399586px;}
.ls1a_c00032{letter-spacing:-0.707443px;}
.ls14_c00032{letter-spacing:-0.444345px;}
.ls18_c00032{letter-spacing:-0.385878px;}
.lse_c00032{letter-spacing:-0.339105px;}
.ls15_c00032{letter-spacing:-0.263099px;}
.ls19_c00032{letter-spacing:-0.239712px;}
.ls10_c00032{letter-spacing:-0.181246px;}
.ls12_c00032{letter-spacing:-0.152013px;}
.ls17_c00032{letter-spacing:-0.087700px;}
.lsd_c00032{letter-spacing:-0.075619px;}
.ls11_c00032{letter-spacing:-0.064313px;}
.ls4_c00032{letter-spacing:-0.063018px;}
.lsc_c00032{letter-spacing:-0.042012px;}
.ls13_c00032{letter-spacing:-0.035080px;}
.ls7_c00032{letter-spacing:-0.035010px;}
.ls9_c00032{letter-spacing:-0.028008px;}
.ls6_c00032{letter-spacing:-0.021006px;}
.ls16_c00032{letter-spacing:-0.017540px;}
.lsb_c00032{letter-spacing:-0.014004px;}
.ls8_c00032{letter-spacing:-0.007002px;}
.ls5_c00032{letter-spacing:0.000000px;}
.ls1_c00032{letter-spacing:0.014004px;}
.ls3_c00032{letter-spacing:0.017540px;}
.lsa_c00032{letter-spacing:0.023281px;}
.ls0_c00032{letter-spacing:0.028008px;}
.lsf_c00032{letter-spacing:0.035080px;}
.ls2_c00032{letter-spacing:0.362492px;}
.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;}
}
.ws2_c00032{word-spacing:-58.466400px;}
.ws4_c00032{word-spacing:-15.955481px;}
.ws3_c00032{word-spacing:-15.750848px;}
.ws0_c00032{word-spacing:-12.967628px;}
.ws1_c00032{word-spacing:-10.397640px;}
.ws22_c00032{word-spacing:-0.362492px;}
.ws20_c00032{word-spacing:-0.280639px;}
.ws1e_c00032{word-spacing:-0.023387px;}
.ws10_c00032{word-spacing:-0.007002px;}
.ws1d_c00032{word-spacing:-0.005847px;}
.ws5_c00032{word-spacing:0.000000px;}
.ws6_c00032{word-spacing:0.007002px;}
.wse_c00032{word-spacing:0.014004px;}
.ws7_c00032{word-spacing:0.021006px;}
.ws14_c00032{word-spacing:0.028008px;}
.ws25_c00032{word-spacing:0.029233px;}
.ws23_c00032{word-spacing:0.046773px;}
.ws21_c00032{word-spacing:0.163706px;}
.ws1f_c00032{word-spacing:0.192939px;}
.ws24_c00032{word-spacing:0.274792px;}
.ws18_c00032{word-spacing:0.378108px;}
.ws27_c00032{word-spacing:0.719137px;}
.ws1a_c00032{word-spacing:1.071306px;}
.ws15_c00032{word-spacing:1.435410px;}
.ws12_c00032{word-spacing:1.449414px;}
.ws11_c00032{word-spacing:1.799514px;}
.wsc_c00032{word-spacing:6.434838px;}
.wsa_c00032{word-spacing:6.469848px;}
.ws17_c00032{word-spacing:6.476850px;}
.wsb_c00032{word-spacing:6.490854px;}
.ws16_c00032{word-spacing:7.212060px;}
.ws1c_c00032{word-spacing:7.576164px;}
.ws1b_c00032{word-spacing:7.583166px;}
.ws19_c00032{word-spacing:9.382680px;}
.ws26_c00032{word-spacing:11.979765px;}
.ws8_c00032{word-spacing:12.225492px;}
.ws9_c00032{word-spacing:12.246498px;}
.ws13_c00032{word-spacing:13.667904px;}
.wsf_c00032{word-spacing:17.252928px;}
.wsd_c00032{word-spacing:26.649612px;}
._3_c00032{margin-left:-2.703240px;}
._1_c00032{margin-left:-1.232352px;}
._0_c00032{width:1.330380px;}
._2_c00032{width:5.930694px;}
.fc0_c00032{color:rgb(0,0,0);}
.fs2_c00032{font-size:37.809600px;}
.fs1_c00032{font-size:46.562400px;}
.fs3_c00032{font-size:58.466400px;}
.fs0_c00032{font-size:70.020000px;}
.y0_c00032{bottom:0.000000px;}
.y2_c00032{bottom:109.740968px;}
.y1_c00032{bottom:129.810450px;}
.y22_c00032{bottom:149.429891px;}
.y21_c00032{bottom:170.940450px;}
.y20_c00032{bottom:188.940450px;}
.y1f_c00032{bottom:227.190450px;}
.y1e_c00032{bottom:265.530450px;}
.y1d_c00032{bottom:280.199271px;}
.y1c_c00032{bottom:355.619563px;}
.y1b_c00032{bottom:385.859451px;}
.y1a_c00032{bottom:416.010063px;}
.y19_c00032{bottom:446.249950px;}
.y18_c00032{bottom:476.400562px;}
.y17_c00032{bottom:506.639865px;}
.y16_c00032{bottom:536.790477px;}
.y15_c00032{bottom:567.030365px;}
.y14_c00032{bottom:597.089950px;}
.y13_c00032{bottom:627.329838px;}
.y12_c00032{bottom:657.478952px;}
.y11_c00032{bottom:687.718839px;}
.y10_c00032{bottom:717.869451px;}
.yf_c00032{bottom:748.109339px;}
.ye_c00032{bottom:778.259951px;}
.yd_c00032{bottom:808.499838px;}
.yc_c00032{bottom:838.649064px;}
.yb_c00032{bottom:868.888951px;}
.ya_c00032{bottom:899.039563px;}
.y9_c00032{bottom:929.279451px;}
.y8_c00032{bottom:959.519339px;}
.y7_c00032{bottom:989.669950px;}
.y6_c00032{bottom:1019.909838px;}
.y5_c00032{bottom:1050.060553px;}
.y4_c00032{bottom:1080.300441px;}
.y3_c00032{bottom:1110.451053px;}
.h9_c00032{height:39.338549px;}
.ha_c00032{height:54.098549px;}
.h2_c00032{height:62.600889px;}
.h1_c00032{height:62.771836px;}
.h8_c00032{height:62.776552px;}
.h6_c00032{height:63.216299px;}
.h7_c00032{height:73.784804px;}
.h3_c00032{height:74.028372px;}
.h4_c00032{height:74.034330px;}
.h5_c00032{height:74.034780px;}
.h0_c00032{height:1263.000000px;}
.w0_c00032{width:892.500000px;}
.x0_c00032{left:0.000000px;}
.x2_c00032{left:82.709645px;}
.x3_c00032{left:160.469077px;}
.x1_c00032{left:436.680000px;}
@media print{
.v2_c00032{vertical-align:-13.120000pt;}
.v0_c00032{vertical-align:0.000000pt;}
.v1_c00032{vertical-align:28.799632pt;}
.ls1a_c00032{letter-spacing:-0.628839pt;}
.ls14_c00032{letter-spacing:-0.394973pt;}
.ls18_c00032{letter-spacing:-0.343003pt;}
.lse_c00032{letter-spacing:-0.301427pt;}
.ls15_c00032{letter-spacing:-0.233866pt;}
.ls19_c00032{letter-spacing:-0.213078pt;}
.ls10_c00032{letter-spacing:-0.161107pt;}
.ls12_c00032{letter-spacing:-0.135122pt;}
.ls17_c00032{letter-spacing:-0.077955pt;}
.lsd_c00032{letter-spacing:-0.067217pt;}
.ls11_c00032{letter-spacing:-0.057167pt;}
.ls4_c00032{letter-spacing:-0.056016pt;}
.lsc_c00032{letter-spacing:-0.037344pt;}
.ls13_c00032{letter-spacing:-0.031182pt;}
.ls7_c00032{letter-spacing:-0.031120pt;}
.ls9_c00032{letter-spacing:-0.024896pt;}
.ls6_c00032{letter-spacing:-0.018672pt;}
.ls16_c00032{letter-spacing:-0.015591pt;}
.lsb_c00032{letter-spacing:-0.012448pt;}
.ls8_c00032{letter-spacing:-0.006224pt;}
.ls5_c00032{letter-spacing:0.000000pt;}
.ls1_c00032{letter-spacing:0.012448pt;}
.ls3_c00032{letter-spacing:0.015591pt;}
.lsa_c00032{letter-spacing:0.020694pt;}
.ls0_c00032{letter-spacing:0.024896pt;}
.lsf_c00032{letter-spacing:0.031182pt;}
.ls2_c00032{letter-spacing:0.322215pt;}
.ws2_c00032{word-spacing:-51.970133pt;}
.ws4_c00032{word-spacing:-14.182649pt;}
.ws3_c00032{word-spacing:-14.000754pt;}
.ws0_c00032{word-spacing:-11.526781pt;}
.ws1_c00032{word-spacing:-9.242347pt;}
.ws22_c00032{word-spacing:-0.322215pt;}
.ws20_c00032{word-spacing:-0.249457pt;}
.ws1e_c00032{word-spacing:-0.020788pt;}
.ws10_c00032{word-spacing:-0.006224pt;}
.ws1d_c00032{word-spacing:-0.005197pt;}
.ws5_c00032{word-spacing:0.000000pt;}
.ws6_c00032{word-spacing:0.006224pt;}
.wse_c00032{word-spacing:0.012448pt;}
.ws7_c00032{word-spacing:0.018672pt;}
.ws14_c00032{word-spacing:0.024896pt;}
.ws25_c00032{word-spacing:0.025985pt;}
.ws23_c00032{word-spacing:0.041576pt;}
.ws21_c00032{word-spacing:0.145516pt;}
.ws1f_c00032{word-spacing:0.171501pt;}
.ws24_c00032{word-spacing:0.244260pt;}
.ws18_c00032{word-spacing:0.336096pt;}
.ws27_c00032{word-spacing:0.639233pt;}
.ws1a_c00032{word-spacing:0.952272pt;}
.ws15_c00032{word-spacing:1.275920pt;}
.ws12_c00032{word-spacing:1.288368pt;}
.ws11_c00032{word-spacing:1.599568pt;}
.wsc_c00032{word-spacing:5.719856pt;}
.wsa_c00032{word-spacing:5.750976pt;}
.ws17_c00032{word-spacing:5.757200pt;}
.wsb_c00032{word-spacing:5.769648pt;}
.ws16_c00032{word-spacing:6.410720pt;}
.ws1c_c00032{word-spacing:6.734368pt;}
.ws1b_c00032{word-spacing:6.740592pt;}
.ws19_c00032{word-spacing:8.340160pt;}
.ws26_c00032{word-spacing:10.648680pt;}
.ws8_c00032{word-spacing:10.867104pt;}
.ws9_c00032{word-spacing:10.885776pt;}
.ws13_c00032{word-spacing:12.149248pt;}
.wsf_c00032{word-spacing:15.335936pt;}
.wsd_c00032{word-spacing:23.688544pt;}
._3_c00032{margin-left:-2.402880pt;}
._1_c00032{margin-left:-1.095424pt;}
._0_c00032{width:1.182560pt;}
._2_c00032{width:5.271728pt;}
.fs2_c00032{font-size:33.608533pt;}
.fs1_c00032{font-size:41.388800pt;}
.fs3_c00032{font-size:51.970133pt;}
.fs0_c00032{font-size:62.240000pt;}
.y0_c00032{bottom:0.000000pt;}
.y2_c00032{bottom:97.547527pt;}
.y1_c00032{bottom:115.387067pt;}
.y22_c00032{bottom:132.826570pt;}
.y21_c00032{bottom:151.947067pt;}
.y20_c00032{bottom:167.947067pt;}
.y1f_c00032{bottom:201.947067pt;}
.y1e_c00032{bottom:236.027067pt;}
.y1d_c00032{bottom:249.066019pt;}
.y1c_c00032{bottom:316.106279pt;}
.y1b_c00032{bottom:342.986179pt;}
.y1a_c00032{bottom:369.786723pt;}
.y19_c00032{bottom:396.666623pt;}
.y18_c00032{bottom:423.467167pt;}
.y17_c00032{bottom:450.346547pt;}
.y16_c00032{bottom:477.147091pt;}
.y15_c00032{bottom:504.026991pt;}
.y14_c00032{bottom:530.746623pt;}
.y13_c00032{bottom:557.626523pt;}
.y12_c00032{bottom:584.425735pt;}
.y11_c00032{bottom:611.305635pt;}
.y10_c00032{bottom:638.106179pt;}
.yf_c00032{bottom:664.986079pt;}
.ye_c00032{bottom:691.786623pt;}
.yd_c00032{bottom:718.666523pt;}
.yc_c00032{bottom:745.465835pt;}
.yb_c00032{bottom:772.345735pt;}
.ya_c00032{bottom:799.146279pt;}
.y9_c00032{bottom:826.026179pt;}
.y8_c00032{bottom:852.906079pt;}
.y7_c00032{bottom:879.706623pt;}
.y6_c00032{bottom:906.586523pt;}
.y5_c00032{bottom:933.387159pt;}
.y4_c00032{bottom:960.267059pt;}
.y3_c00032{bottom:987.067603pt;}
.h9_c00032{height:34.967599pt;}
.ha_c00032{height:48.087599pt;}
.h2_c00032{height:55.645234pt;}
.h1_c00032{height:55.797187pt;}
.h8_c00032{height:55.801380pt;}
.h6_c00032{height:56.192266pt;}
.h7_c00032{height:65.586492pt;}
.h3_c00032{height:65.802998pt;}
.h4_c00032{height:65.808294pt;}
.h5_c00032{height:65.808694pt;}
.h0_c00032{height:1122.666667pt;}
.w0_c00032{width:793.333333pt;}
.x0_c00032{left:0.000000pt;}
.x2_c00032{left:73.519684pt;}
.x3_c00032{left:142.639180pt;}
.x1_c00032{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_560736a2b8fbdcc76789268c.woff2')format("woff");}.ff1_c00033{font-family:ff1_c00033;line-height:1.106934;font-style:normal;font-weight:normal;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_be27089a8986d93643dc72bb.woff2')format("woff");}.ff2_c00033{font-family:ff2_c00033;line-height:1.104492;font-style:normal;font-weight:normal;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_b678e457b87f7011a75f462a.woff2')format("woff");}.ff3_c00033{font-family:ff3_c00033;line-height:1.133301;font-style:normal;font-weight:normal;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_311d9ee85c53779b22f9ea15.woff2')format("woff");}.ff4_c00033{font-family:ff4_c00033;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00033;src:url('chunks/assets/font_4d30c4a78f53a14375081d3f.woff2')format("woff");}.ff5_c00033{font-family:ff5_c00033;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00033;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff6_c00033{font-family:ff6_c00033;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00033{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00033{vertical-align:-14.760000px;}
.v0_c00033{vertical-align:0.000000px;}
.v1_c00033{vertical-align:32.057244px;}
.ls19_c00033{letter-spacing:-0.707443px;}
.ls18_c00033{letter-spacing:-0.286485px;}
.ls1c_c00033{letter-spacing:-0.192939px;}
.ls1e_c00033{letter-spacing:-0.175399px;}
.ls15_c00033{letter-spacing:-0.146166px;}
.ls14_c00033{letter-spacing:-0.075619px;}
.ls1b_c00033{letter-spacing:-0.064313px;}
.ls8_c00033{letter-spacing:-0.063018px;}
.ls11_c00033{letter-spacing:-0.056016px;}
.lsc_c00033{letter-spacing:-0.049014px;}
.ls12_c00033{letter-spacing:-0.042012px;}
.lsf_c00033{letter-spacing:-0.035010px;}
.lse_c00033{letter-spacing:-0.028008px;}
.lsb_c00033{letter-spacing:-0.021006px;}
.lsa_c00033{letter-spacing:-0.014004px;}
.lsd_c00033{letter-spacing:-0.007002px;}
.ls1a_c00033{letter-spacing:-0.005847px;}
.ls9_c00033{letter-spacing:0.000000px;}
.ls7_c00033{letter-spacing:0.005847px;}
.ls0_c00033{letter-spacing:0.007002px;}
.ls5_c00033{letter-spacing:0.014004px;}
.ls4_c00033{letter-spacing:0.021006px;}
.ls13_c00033{letter-spacing:0.023281px;}
.ls10_c00033{letter-spacing:0.028008px;}
.ls3_c00033{letter-spacing:0.035010px;}
.ls1d_c00033{letter-spacing:0.076006px;}
.ls1_c00033{letter-spacing:0.084024px;}
.ls16_c00033{letter-spacing:0.099393px;}
.ls20_c00033{letter-spacing:0.128626px;}
.ls17_c00033{letter-spacing:0.233866px;}
.ls1f_c00033{letter-spacing:0.327412px;}
.ls2_c00033{letter-spacing:0.336096px;}
.ls6_c00033{letter-spacing:0.362492px;}
.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;}
}
.ws2_c00033{word-spacing:-58.466400px;}
.ws3_c00033{word-spacing:-16.130880px;}
.ws0_c00033{word-spacing:-12.967628px;}
.ws1_c00033{word-spacing:-10.397640px;}
.ws2c_c00033{word-spacing:-0.116933px;}
.ws4_c00033{word-spacing:0.000000px;}
.wsc_c00033{word-spacing:0.021006px;}
.ws14_c00033{word-spacing:0.259074px;}
.wsd_c00033{word-spacing:0.315090px;}
.ws21_c00033{word-spacing:0.343098px;}
.ws6_c00033{word-spacing:0.364104px;}
.ws11_c00033{word-spacing:0.399114px;}
.ws20_c00033{word-spacing:0.714204px;}
.ws27_c00033{word-spacing:1.736452px;}
.ws26_c00033{word-spacing:2.005398px;}
.ws1a_c00033{word-spacing:2.884824px;}
.wsf_c00033{word-spacing:3.248928px;}
.ws23_c00033{word-spacing:3.513831px;}
.ws12_c00033{word-spacing:3.599028px;}
.ws13_c00033{word-spacing:3.606030px;}
.ws24_c00033{word-spacing:3.741850px;}
.ws22_c00033{word-spacing:3.759390px;}
.ws25_c00033{word-spacing:3.899709px;}
.ws10_c00033{word-spacing:5.377536px;}
.ws15_c00033{word-spacing:6.133752px;}
.wse_c00033{word-spacing:9.718776px;}
.wsa_c00033{word-spacing:10.075878px;}
.wsb_c00033{word-spacing:10.453986px;}
.ws7_c00033{word-spacing:11.525292px;}
.ws9_c00033{word-spacing:14.767218px;}
.ws2b_c00033{word-spacing:17.323594px;}
.ws29_c00033{word-spacing:17.645160px;}
.ws28_c00033{word-spacing:17.826405px;}
.ws16_c00033{word-spacing:18.373248px;}
.ws2a_c00033{word-spacing:18.720941px;}
.ws5_c00033{word-spacing:19.080450px;}
.ws1b_c00033{word-spacing:20.487852px;}
.ws1c_c00033{word-spacing:20.536866px;}
.ws8_c00033{word-spacing:23.071590px;}
.ws1d_c00033{word-spacing:26.306514px;}
.ws1e_c00033{word-spacing:27.328806px;}
.ws1f_c00033{word-spacing:27.370818px;}
.ws18_c00033{word-spacing:29.471418px;}
.ws19_c00033{word-spacing:29.541438px;}
.ws17_c00033{word-spacing:33.462558px;}
._3_c00033{margin-left:-2.711106px;}
._1_c00033{margin-left:-1.190340px;}
._0_c00033{width:1.183338px;}
._2_c00033{width:5.930694px;}
.fc0_c00033{color:rgb(0,0,0);}
.fs2_c00033{font-size:37.809600px;}
.fs1_c00033{font-size:46.562400px;}
.fs3_c00033{font-size:58.466400px;}
.fs0_c00033{font-size:70.020000px;}
.y0_c00033{bottom:0.000000px;}
.y2_c00033{bottom:109.740968px;}
.y1_c00033{bottom:129.810450px;}
.y22_c00033{bottom:149.428990px;}
.y21_c00033{bottom:167.249548px;}
.y20_c00033{bottom:185.249891px;}
.y1f_c00033{bottom:206.760450px;}
.y1e_c00033{bottom:221.430679px;}
.y1d_c00033{bottom:284.516139px;}
.y1c_c00033{bottom:314.756027px;}
.y1b_c00033{bottom:344.995914px;}
.y1a_c00033{bottom:375.146526px;}
.y19_c00033{bottom:405.386414px;}
.y18_c00033{bottom:435.537026px;}
.y17_c00033{bottom:465.776913px;}
.y16_c00033{bottom:495.927525px;}
.y15_c00033{bottom:526.167413px;}
.y14_c00033{bottom:556.318025px;}
.y13_c00033{bottom:586.557912px;}
.y12_c00033{bottom:637.047584px;}
.y11_c00033{bottom:667.198196px;}
.y10_c00033{bottom:717.868169px;}
.yf_c00033{bottom:748.108056px;}
.ye_c00033{bottom:778.258668px;}
.yd_c00033{bottom:808.498556px;}
.yc_c00033{bottom:838.649168px;}
.yb_c00033{bottom:868.889055px;}
.ya_c00033{bottom:899.039667px;}
.y9_c00033{bottom:929.279555px;}
.y8_c00033{bottom:959.519442px;}
.y7_c00033{bottom:989.670054px;}
.y6_c00033{bottom:1019.909942px;}
.y5_c00033{bottom:1050.060553px;}
.y4_c00033{bottom:1080.300441px;}
.y3_c00033{bottom:1110.451053px;}
.h4_c00033{height:39.338549px;}
.h5_c00033{height:54.098549px;}
.h2_c00033{height:62.600889px;}
.h1_c00033{height:62.771836px;}
.h3_c00033{height:73.686030px;}
.h0_c00033{height:1263.000000px;}
.w0_c00033{width:892.500000px;}
.x0_c00033{left:0.000000px;}
.x2_c00033{left:82.709645px;}
.x1_c00033{left:436.680000px;}
@media print{
.v2_c00033{vertical-align:-13.120000pt;}
.v0_c00033{vertical-align:0.000000pt;}
.v1_c00033{vertical-align:28.495328pt;}
.ls19_c00033{letter-spacing:-0.628839pt;}
.ls18_c00033{letter-spacing:-0.254654pt;}
.ls1c_c00033{letter-spacing:-0.171501pt;}
.ls1e_c00033{letter-spacing:-0.155910pt;}
.ls15_c00033{letter-spacing:-0.129925pt;}
.ls14_c00033{letter-spacing:-0.067217pt;}
.ls1b_c00033{letter-spacing:-0.057167pt;}
.ls8_c00033{letter-spacing:-0.056016pt;}
.ls11_c00033{letter-spacing:-0.049792pt;}
.lsc_c00033{letter-spacing:-0.043568pt;}
.ls12_c00033{letter-spacing:-0.037344pt;}
.lsf_c00033{letter-spacing:-0.031120pt;}
.lse_c00033{letter-spacing:-0.024896pt;}
.lsb_c00033{letter-spacing:-0.018672pt;}
.lsa_c00033{letter-spacing:-0.012448pt;}
.lsd_c00033{letter-spacing:-0.006224pt;}
.ls1a_c00033{letter-spacing:-0.005197pt;}
.ls9_c00033{letter-spacing:0.000000pt;}
.ls7_c00033{letter-spacing:0.005197pt;}
.ls0_c00033{letter-spacing:0.006224pt;}
.ls5_c00033{letter-spacing:0.012448pt;}
.ls4_c00033{letter-spacing:0.018672pt;}
.ls13_c00033{letter-spacing:0.020694pt;}
.ls10_c00033{letter-spacing:0.024896pt;}
.ls3_c00033{letter-spacing:0.031120pt;}
.ls1d_c00033{letter-spacing:0.067561pt;}
.ls1_c00033{letter-spacing:0.074688pt;}
.ls16_c00033{letter-spacing:0.088349pt;}
.ls20_c00033{letter-spacing:0.114334pt;}
.ls17_c00033{letter-spacing:0.207881pt;}
.ls1f_c00033{letter-spacing:0.291033pt;}
.ls2_c00033{letter-spacing:0.298752pt;}
.ls6_c00033{letter-spacing:0.322215pt;}
.ws2_c00033{word-spacing:-51.970133pt;}
.ws3_c00033{word-spacing:-14.338560pt;}
.ws0_c00033{word-spacing:-11.526781pt;}
.ws1_c00033{word-spacing:-9.242347pt;}
.ws2c_c00033{word-spacing:-0.103940pt;}
.ws4_c00033{word-spacing:0.000000pt;}
.wsc_c00033{word-spacing:0.018672pt;}
.ws14_c00033{word-spacing:0.230288pt;}
.wsd_c00033{word-spacing:0.280080pt;}
.ws21_c00033{word-spacing:0.304976pt;}
.ws6_c00033{word-spacing:0.323648pt;}
.ws11_c00033{word-spacing:0.354768pt;}
.ws20_c00033{word-spacing:0.634848pt;}
.ws27_c00033{word-spacing:1.543513pt;}
.ws26_c00033{word-spacing:1.782576pt;}
.ws1a_c00033{word-spacing:2.564288pt;}
.wsf_c00033{word-spacing:2.887936pt;}
.ws23_c00033{word-spacing:3.123405pt;}
.ws12_c00033{word-spacing:3.199136pt;}
.ws13_c00033{word-spacing:3.205360pt;}
.ws24_c00033{word-spacing:3.326089pt;}
.ws22_c00033{word-spacing:3.341680pt;}
.ws25_c00033{word-spacing:3.466408pt;}
.ws10_c00033{word-spacing:4.780032pt;}
.ws15_c00033{word-spacing:5.452224pt;}
.wse_c00033{word-spacing:8.638912pt;}
.wsa_c00033{word-spacing:8.956336pt;}
.wsb_c00033{word-spacing:9.292432pt;}
.ws7_c00033{word-spacing:10.244704pt;}
.ws9_c00033{word-spacing:13.126416pt;}
.ws2b_c00033{word-spacing:15.398751pt;}
.ws29_c00033{word-spacing:15.684586pt;}
.ws28_c00033{word-spacing:15.845694pt;}
.ws16_c00033{word-spacing:16.331776pt;}
.ws2a_c00033{word-spacing:16.640837pt;}
.ws5_c00033{word-spacing:16.960400pt;}
.ws1b_c00033{word-spacing:18.211424pt;}
.ws1c_c00033{word-spacing:18.254992pt;}
.ws8_c00033{word-spacing:20.508080pt;}
.ws1d_c00033{word-spacing:23.383568pt;}
.ws1e_c00033{word-spacing:24.292272pt;}
.ws1f_c00033{word-spacing:24.329616pt;}
.ws18_c00033{word-spacing:26.196816pt;}
.ws19_c00033{word-spacing:26.259056pt;}
.ws17_c00033{word-spacing:29.744496pt;}
._3_c00033{margin-left:-2.409872pt;}
._1_c00033{margin-left:-1.058080pt;}
._0_c00033{width:1.051856pt;}
._2_c00033{width:5.271728pt;}
.fs2_c00033{font-size:33.608533pt;}
.fs1_c00033{font-size:41.388800pt;}
.fs3_c00033{font-size:51.970133pt;}
.fs0_c00033{font-size:62.240000pt;}
.y0_c00033{bottom:0.000000pt;}
.y2_c00033{bottom:97.547527pt;}
.y1_c00033{bottom:115.387067pt;}
.y22_c00033{bottom:132.825769pt;}
.y21_c00033{bottom:148.666265pt;}
.y20_c00033{bottom:164.666570pt;}
.y1f_c00033{bottom:183.787067pt;}
.y1e_c00033{bottom:196.827271pt;}
.y1d_c00033{bottom:252.903235pt;}
.y1c_c00033{bottom:279.783135pt;}
.y1b_c00033{bottom:306.663035pt;}
.y1a_c00033{bottom:333.463579pt;}
.y19_c00033{bottom:360.343479pt;}
.y18_c00033{bottom:387.144023pt;}
.y17_c00033{bottom:414.023923pt;}
.y16_c00033{bottom:440.824467pt;}
.y15_c00033{bottom:467.704367pt;}
.y14_c00033{bottom:494.504911pt;}
.y13_c00033{bottom:521.384811pt;}
.y12_c00033{bottom:566.264519pt;}
.y11_c00033{bottom:593.065063pt;}
.y10_c00033{bottom:638.105039pt;}
.yf_c00033{bottom:664.984939pt;}
.ye_c00033{bottom:691.785483pt;}
.yd_c00033{bottom:718.665383pt;}
.yc_c00033{bottom:745.465927pt;}
.yb_c00033{bottom:772.345827pt;}
.ya_c00033{bottom:799.146371pt;}
.y9_c00033{bottom:826.026271pt;}
.y8_c00033{bottom:852.906171pt;}
.y7_c00033{bottom:879.706715pt;}
.y6_c00033{bottom:906.586615pt;}
.y5_c00033{bottom:933.387159pt;}
.y4_c00033{bottom:960.267059pt;}
.y3_c00033{bottom:987.067603pt;}
.h4_c00033{height:34.967599pt;}
.h5_c00033{height:48.087599pt;}
.h2_c00033{height:55.645234pt;}
.h1_c00033{height:55.797187pt;}
.h3_c00033{height:65.498694pt;}
.h0_c00033{height:1122.666667pt;}
.w0_c00033{width:793.333333pt;}
.x0_c00033{left:0.000000pt;}
.x2_c00033{left:73.519684pt;}
.x1_c00033{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9a64d4d7c7c6ec5fe3f237d8.woff2')format("woff");}.ff1_c00034{font-family:ff1_c00034;line-height:1.106934;font-style:normal;font-weight:normal;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_71f4419739fd18aeb8508b0e.woff2')format("woff");}.ff2_c00034{font-family:ff2_c00034;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00034;src:url('chunks/assets/font_0752a848266c4a16d0861b38.woff2')format("woff");}.ff3_c00034{font-family:ff3_c00034;line-height:1.133301;font-style:normal;font-weight:normal;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_3b5d304d9978658425fbdd36.woff2')format("woff");}.ff4_c00034{font-family:ff4_c00034;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00034{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00034{vertical-align:-14.760600px;}
.v0_c00034{vertical-align:0.000000px;}
.v1_c00034{vertical-align:32.040036px;}
.ls12_c00034{letter-spacing:-0.368338px;}
.ls1a_c00034{letter-spacing:-0.344952px;}
.ls1e_c00034{letter-spacing:-0.304025px;}
.ls15_c00034{letter-spacing:-0.280639px;}
.ls13_c00034{letter-spacing:-0.274792px;}
.ls20_c00034{letter-spacing:-0.146166px;}
.ls21_c00034{letter-spacing:-0.140319px;}
.ls19_c00034{letter-spacing:-0.134473px;}
.ls1c_c00034{letter-spacing:-0.105240px;}
.ls1f_c00034{letter-spacing:-0.093546px;}
.lsf_c00034{letter-spacing:-0.075619px;}
.ls10_c00034{letter-spacing:-0.070160px;}
.ls18_c00034{letter-spacing:-0.064313px;}
.ls7_c00034{letter-spacing:-0.063018px;}
.ls1d_c00034{letter-spacing:-0.058466px;}
.ls17_c00034{letter-spacing:-0.052620px;}
.lse_c00034{letter-spacing:-0.042012px;}
.ls9_c00034{letter-spacing:-0.028008px;}
.lsb_c00034{letter-spacing:-0.021006px;}
.ls11_c00034{letter-spacing:-0.017540px;}
.lsd_c00034{letter-spacing:-0.014004px;}
.lsa_c00034{letter-spacing:-0.007002px;}
.ls8_c00034{letter-spacing:0.000000px;}
.ls1_c00034{letter-spacing:0.017540px;}
.lsc_c00034{letter-spacing:0.023281px;}
.ls5_c00034{letter-spacing:0.023387px;}
.ls0_c00034{letter-spacing:0.035010px;}
.ls3_c00034{letter-spacing:0.058466px;}
.ls14_c00034{letter-spacing:0.076006px;}
.ls16_c00034{letter-spacing:0.081853px;}
.ls6_c00034{letter-spacing:0.122779px;}
.ls2_c00034{letter-spacing:0.292332px;}
.ls22_c00034{letter-spacing:0.356645px;}
.ls1b_c00034{letter-spacing:0.409265px;}
.ls4_c00034{letter-spacing:8.284689px;}
.sc__c00034{text-shadow:none;}
.sc0_c00034{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00034{-webkit-text-stroke:0px transparent;}
.sc0_c00034{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00034{word-spacing:-19.500570px;}
.ws3_c00034{word-spacing:-16.195193px;}
.ws0_c00034{word-spacing:-12.967628px;}
.ws2_c00034{word-spacing:-10.397640px;}
.ws25_c00034{word-spacing:-0.701597px;}
.ws24_c00034{word-spacing:-0.467731px;}
.wsd_c00034{word-spacing:-0.014004px;}
.ws4_c00034{word-spacing:0.000000px;}
.ws18_c00034{word-spacing:0.076006px;}
.ws21_c00034{word-spacing:0.157859px;}
.ws14_c00034{word-spacing:0.356645px;}
.ws10_c00034{word-spacing:0.380032px;}
.ws1d_c00034{word-spacing:0.678210px;}
.ws13_c00034{word-spacing:2.455589px;}
.ws12_c00034{word-spacing:2.818080px;}
.ws11_c00034{word-spacing:3.525524px;}
.ws23_c00034{word-spacing:3.630763px;}
.ws22_c00034{word-spacing:3.753543px;}
.ws7_c00034{word-spacing:4.313232px;}
.ws8_c00034{word-spacing:4.327236px;}
.ws17_c00034{word-spacing:6.150665px;}
.ws16_c00034{word-spacing:6.185745px;}
.ws15_c00034{word-spacing:6.413764px;}
.ws1b_c00034{word-spacing:7.676638px;}
.ws1e_c00034{word-spacing:7.875424px;}
.ws1c_c00034{word-spacing:7.992357px;}
.ws20_c00034{word-spacing:8.267149px;}
.ws1f_c00034{word-spacing:8.384082px;}
.wsf_c00034{word-spacing:11.552961px;}
.wse_c00034{word-spacing:11.962225px;}
.ws1a_c00034{word-spacing:12.926921px;}
.ws19_c00034{word-spacing:13.827304px;}
.wsb_c00034{word-spacing:16.202628px;}
.wsc_c00034{word-spacing:16.230636px;}
.ws9_c00034{word-spacing:16.923834px;}
.wsa_c00034{word-spacing:17.273934px;}
.ws6_c00034{word-spacing:18.709344px;}
.ws5_c00034{word-spacing:18.737352px;}
._2_c00034{margin-left:-2.710836px;}
._3_c00034{margin-left:-1.177005px;}
._0_c00034{width:1.106316px;}
._1_c00034{width:5.930694px;}
._4_c00034{width:13.482465px;}
.fc0_c00034{color:rgb(0,0,0);}
.fs2_c00034{font-size:37.809600px;}
.fs1_c00034{font-size:46.562400px;}
.fs3_c00034{font-size:58.466400px;}
.fs0_c00034{font-size:70.020000px;}
.y0_c00034{bottom:0.000000px;}
.y2_c00034{bottom:109.740968px;}
.y1_c00034{bottom:129.810450px;}
.y26_c00034{bottom:149.429088px;}
.y25_c00034{bottom:187.769891px;}
.y24_c00034{bottom:209.280600px;}
.y23_c00034{bottom:243.930108px;}
.y22_c00034{bottom:261.839828px;}
.y21_c00034{bottom:279.749548px;}
.y20_c00034{bottom:297.570107px;}
.y1f_c00034{bottom:319.260450px;}
.y1e_c00034{bottom:353.817529px;}
.y1d_c00034{bottom:371.638088px;}
.y1c_c00034{bottom:389.638431px;}
.y1b_c00034{bottom:407.458990px;}
.y1a_c00034{bottom:425.279548px;}
.y19_c00034{bottom:443.279891px;}
.y18_c00034{bottom:464.790600px;}
.y17_c00034{bottom:499.439891px;}
.y16_c00034{bottom:520.950600px;}
.y15_c00034{bottom:556.048119px;}
.y14_c00034{bottom:576.747782px;}
.y13_c00034{bottom:606.898394px;}
.y12_c00034{bottom:637.138281px;}
.y11_c00034{bottom:667.288893px;}
.y10_c00034{bottom:697.528781px;}
.yf_c00034{bottom:727.679393px;}
.ye_c00034{bottom:757.919280px;}
.yd_c00034{bottom:788.069892px;}
.yc_c00034{bottom:818.309779px;}
.yb_c00034{bottom:848.460392px;}
.ya_c00034{bottom:878.700279px;}
.y9_c00034{bottom:908.850891px;}
.y8_c00034{bottom:939.090779px;}
.y7_c00034{bottom:989.581287px;}
.y6_c00034{bottom:1019.909838px;}
.y5_c00034{bottom:1050.060563px;}
.y4_c00034{bottom:1080.300441px;}
.y3_c00034{bottom:1110.451053px;}
.h8_c00034{height:39.337949px;}
.ha_c00034{height:39.338549px;}
.h9_c00034{height:54.098549px;}
.h1_c00034{height:62.771836px;}
.h7_c00034{height:62.781160px;}
.h6_c00034{height:63.216299px;}
.h2_c00034{height:73.782500px;}
.h4_c00034{height:73.784912px;}
.h5_c00034{height:74.139116px;}
.h3_c00034{height:74.142014px;}
.h0_c00034{height:1263.000000px;}
.w0_c00034{width:892.500000px;}
.x0_c00034{left:0.000000px;}
.x2_c00034{left:82.709645px;}
.x1_c00034{left:436.680000px;}
@media print{
.v2_c00034{vertical-align:-13.120533pt;}
.v0_c00034{vertical-align:0.000000pt;}
.v1_c00034{vertical-align:28.480032pt;}
.ls12_c00034{letter-spacing:-0.327412pt;}
.ls1a_c00034{letter-spacing:-0.306624pt;}
.ls1e_c00034{letter-spacing:-0.270245pt;}
.ls15_c00034{letter-spacing:-0.249457pt;}
.ls13_c00034{letter-spacing:-0.244260pt;}
.ls20_c00034{letter-spacing:-0.129925pt;}
.ls21_c00034{letter-spacing:-0.124728pt;}
.ls19_c00034{letter-spacing:-0.119531pt;}
.ls1c_c00034{letter-spacing:-0.093546pt;}
.ls1f_c00034{letter-spacing:-0.083152pt;}
.lsf_c00034{letter-spacing:-0.067217pt;}
.ls10_c00034{letter-spacing:-0.062364pt;}
.ls18_c00034{letter-spacing:-0.057167pt;}
.ls7_c00034{letter-spacing:-0.056016pt;}
.ls1d_c00034{letter-spacing:-0.051970pt;}
.ls17_c00034{letter-spacing:-0.046773pt;}
.lse_c00034{letter-spacing:-0.037344pt;}
.ls9_c00034{letter-spacing:-0.024896pt;}
.lsb_c00034{letter-spacing:-0.018672pt;}
.ls11_c00034{letter-spacing:-0.015591pt;}
.lsd_c00034{letter-spacing:-0.012448pt;}
.lsa_c00034{letter-spacing:-0.006224pt;}
.ls8_c00034{letter-spacing:0.000000pt;}
.ls1_c00034{letter-spacing:0.015591pt;}
.lsc_c00034{letter-spacing:0.020694pt;}
.ls5_c00034{letter-spacing:0.020788pt;}
.ls0_c00034{letter-spacing:0.031120pt;}
.ls3_c00034{letter-spacing:0.051970pt;}
.ls14_c00034{letter-spacing:0.067561pt;}
.ls16_c00034{letter-spacing:0.072758pt;}
.ls6_c00034{letter-spacing:0.109137pt;}
.ls2_c00034{letter-spacing:0.259851pt;}
.ls22_c00034{letter-spacing:0.317018pt;}
.ls1b_c00034{letter-spacing:0.363791pt;}
.ls4_c00034{letter-spacing:7.364168pt;}
.ws1_c00034{word-spacing:-17.333840pt;}
.ws3_c00034{word-spacing:-14.395727pt;}
.ws0_c00034{word-spacing:-11.526781pt;}
.ws2_c00034{word-spacing:-9.242347pt;}
.ws25_c00034{word-spacing:-0.623642pt;}
.ws24_c00034{word-spacing:-0.415761pt;}
.wsd_c00034{word-spacing:-0.012448pt;}
.ws4_c00034{word-spacing:0.000000pt;}
.ws18_c00034{word-spacing:0.067561pt;}
.ws21_c00034{word-spacing:0.140319pt;}
.ws14_c00034{word-spacing:0.317018pt;}
.ws10_c00034{word-spacing:0.337806pt;}
.ws1d_c00034{word-spacing:0.602854pt;}
.ws13_c00034{word-spacing:2.182746pt;}
.ws12_c00034{word-spacing:2.504960pt;}
.ws11_c00034{word-spacing:3.133799pt;}
.ws23_c00034{word-spacing:3.227345pt;}
.ws22_c00034{word-spacing:3.336483pt;}
.ws7_c00034{word-spacing:3.833984pt;}
.ws8_c00034{word-spacing:3.846432pt;}
.ws17_c00034{word-spacing:5.467258pt;}
.ws16_c00034{word-spacing:5.498440pt;}
.ws15_c00034{word-spacing:5.701124pt;}
.ws1b_c00034{word-spacing:6.823679pt;}
.ws1e_c00034{word-spacing:7.000377pt;}
.ws1c_c00034{word-spacing:7.104317pt;}
.ws20_c00034{word-spacing:7.348577pt;}
.ws1f_c00034{word-spacing:7.452517pt;}
.wsf_c00034{word-spacing:10.269298pt;}
.wse_c00034{word-spacing:10.633089pt;}
.ws1a_c00034{word-spacing:11.490596pt;}
.ws19_c00034{word-spacing:12.290937pt;}
.wsb_c00034{word-spacing:14.402336pt;}
.wsc_c00034{word-spacing:14.427232pt;}
.ws9_c00034{word-spacing:15.043408pt;}
.wsa_c00034{word-spacing:15.354608pt;}
.ws6_c00034{word-spacing:16.630528pt;}
.ws5_c00034{word-spacing:16.655424pt;}
._2_c00034{margin-left:-2.409632pt;}
._3_c00034{margin-left:-1.046226pt;}
._0_c00034{width:0.983392pt;}
._1_c00034{width:5.271728pt;}
._4_c00034{width:11.984414pt;}
.fs2_c00034{font-size:33.608533pt;}
.fs1_c00034{font-size:41.388800pt;}
.fs3_c00034{font-size:51.970133pt;}
.fs0_c00034{font-size:62.240000pt;}
.y0_c00034{bottom:0.000000pt;}
.y2_c00034{bottom:97.547527pt;}
.y1_c00034{bottom:115.387067pt;}
.y26_c00034{bottom:132.825856pt;}
.y25_c00034{bottom:166.906570pt;}
.y24_c00034{bottom:186.027200pt;}
.y23_c00034{bottom:216.826763pt;}
.y22_c00034{bottom:232.746514pt;}
.y21_c00034{bottom:248.666265pt;}
.y20_c00034{bottom:264.506762pt;}
.y1f_c00034{bottom:283.787067pt;}
.y1e_c00034{bottom:314.504471pt;}
.y1d_c00034{bottom:330.344967pt;}
.y1c_c00034{bottom:346.345272pt;}
.y1b_c00034{bottom:362.185769pt;}
.y1a_c00034{bottom:378.026265pt;}
.y19_c00034{bottom:394.026570pt;}
.y18_c00034{bottom:413.147200pt;}
.y17_c00034{bottom:443.946570pt;}
.y16_c00034{bottom:463.067200pt;}
.y15_c00034{bottom:494.264995pt;}
.y14_c00034{bottom:512.664695pt;}
.y13_c00034{bottom:539.465239pt;}
.y12_c00034{bottom:566.345139pt;}
.y11_c00034{bottom:593.145683pt;}
.y10_c00034{bottom:620.025583pt;}
.yf_c00034{bottom:646.826127pt;}
.ye_c00034{bottom:673.706027pt;}
.yd_c00034{bottom:700.506571pt;}
.yc_c00034{bottom:727.386471pt;}
.yb_c00034{bottom:754.187015pt;}
.ya_c00034{bottom:781.066915pt;}
.y9_c00034{bottom:807.867459pt;}
.y8_c00034{bottom:834.747359pt;}
.y7_c00034{bottom:879.627811pt;}
.y6_c00034{bottom:906.586523pt;}
.y5_c00034{bottom:933.387167pt;}
.y4_c00034{bottom:960.267059pt;}
.y3_c00034{bottom:987.067603pt;}
.h8_c00034{height:34.967066pt;}
.ha_c00034{height:34.967599pt;}
.h9_c00034{height:48.087599pt;}
.h1_c00034{height:55.797187pt;}
.h7_c00034{height:55.805475pt;}
.h6_c00034{height:56.192266pt;}
.h2_c00034{height:65.584445pt;}
.h4_c00034{height:65.586589pt;}
.h5_c00034{height:65.901437pt;}
.h3_c00034{height:65.904012pt;}
.h0_c00034{height:1122.666667pt;}
.w0_c00034{width:793.333333pt;}
.x0_c00034{left:0.000000pt;}
.x2_c00034{left:73.519684pt;}
.x1_c00034{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_39f385ea46c9fb838cb7f8d9.woff2')format("woff");}.ff1_c00035{font-family:ff1_c00035;line-height:1.106934;font-style:normal;font-weight:normal;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_2ec5a1653437632230ad77aa.woff2')format("woff");}.ff2_c00035{font-family:ff2_c00035;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00035{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00035{vertical-align:0.000000px;}
.ls5_c00035{letter-spacing:-0.063018px;}
.lse_c00035{letter-spacing:-0.056016px;}
.ls7_c00035{letter-spacing:-0.049014px;}
.lsf_c00035{letter-spacing:-0.042012px;}
.ls9_c00035{letter-spacing:-0.035010px;}
.lsc_c00035{letter-spacing:-0.028008px;}
.lsb_c00035{letter-spacing:-0.021006px;}
.lsd_c00035{letter-spacing:-0.014004px;}
.ls8_c00035{letter-spacing:-0.007002px;}
.ls6_c00035{letter-spacing:0.000000px;}
.ls1_c00035{letter-spacing:0.007002px;}
.ls2_c00035{letter-spacing:0.014004px;}
.ls4_c00035{letter-spacing:0.042012px;}
.ls3_c00035{letter-spacing:0.056016px;}
.ls0_c00035{letter-spacing:0.063018px;}
.lsa_c00035{letter-spacing:0.343098px;}
.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;}
}
.wsd_c00035{word-spacing:-0.343098px;}
.ws1_c00035{word-spacing:-0.077022px;}
.wsc_c00035{word-spacing:-0.014004px;}
.ws0_c00035{word-spacing:0.000000px;}
.ws12_c00035{word-spacing:0.014004px;}
.ws7_c00035{word-spacing:0.021006px;}
.ws16_c00035{word-spacing:0.028008px;}
.ws6_c00035{word-spacing:0.350100px;}
.ws11_c00035{word-spacing:0.364104px;}
.ws1d_c00035{word-spacing:0.399114px;}
.ws5_c00035{word-spacing:1.435410px;}
.ws15_c00035{word-spacing:1.449414px;}
.ws10_c00035{word-spacing:2.562732px;}
.ws1c_c00035{word-spacing:4.299228px;}
.ws1e_c00035{word-spacing:4.670334px;}
.ws1f_c00035{word-spacing:4.698342px;}
.ws14_c00035{word-spacing:5.034438px;}
.ws9_c00035{word-spacing:6.105744px;}
.wsa_c00035{word-spacing:6.490854px;}
.wsb_c00035{word-spacing:6.875964px;}
.ws2_c00035{word-spacing:7.177050px;}
.ws4_c00035{word-spacing:8.255358px;}
.ws13_c00035{word-spacing:8.276364px;}
.ws3_c00035{word-spacing:8.318376px;}
.wse_c00035{word-spacing:10.439982px;}
.ws20_c00035{word-spacing:10.797084px;}
.ws1a_c00035{word-spacing:11.462274px;}
.ws1b_c00035{word-spacing:11.525292px;}
.wsf_c00035{word-spacing:14.396112px;}
.ws19_c00035{word-spacing:14.767218px;}
.ws18_c00035{word-spacing:17.210916px;}
.ws17_c00035{word-spacing:17.259930px;}
.ws8_c00035{word-spacing:30.248640px;}
._0_c00035{margin-left:-7.198056px;}
._1_c00035{margin-left:-1.015290px;}
._2_c00035{width:1.071306px;}
.fc0_c00035{color:rgb(0,0,0);}
.fs0_c00035{font-size:70.020000px;}
.y0_c00035{bottom:0.000000px;}
.y2_c00035{bottom:109.740968px;}
.y1_c00035{bottom:129.810450px;}
.y22_c00035{bottom:184.524078px;}
.y21_c00035{bottom:214.763966px;}
.y20_c00035{bottom:244.914578px;}
.y1f_c00035{bottom:275.154465px;}
.y1e_c00035{bottom:305.305077px;}
.y1d_c00035{bottom:335.544965px;}
.y1c_c00035{bottom:365.695577px;}
.y1b_c00035{bottom:395.935464px;}
.y1a_c00035{bottom:426.086076px;}
.y19_c00035{bottom:456.325964px;}
.y18_c00035{bottom:486.476576px;}
.y17_c00035{bottom:516.716463px;}
.y16_c00035{bottom:546.867075px;}
.y15_c00035{bottom:577.106963px;}
.y14_c00035{bottom:607.166549px;}
.y13_c00035{bottom:637.406436px;}
.y12_c00035{bottom:667.557048px;}
.y11_c00035{bottom:697.796936px;}
.y10_c00035{bottom:727.947548px;}
.yf_c00035{bottom:758.187435px;}
.ye_c00035{bottom:788.338047px;}
.yd_c00035{bottom:818.577934px;}
.yc_c00035{bottom:848.728546px;}
.yb_c00035{bottom:878.968434px;}
.ya_c00035{bottom:909.119046px;}
.y9_c00035{bottom:939.358934px;}
.y8_c00035{bottom:969.509546px;}
.y7_c00035{bottom:999.749433px;}
.y6_c00035{bottom:1029.900045px;}
.y5_c00035{bottom:1060.139932px;}
.y4_c00035{bottom:1080.300441px;}
.y3_c00035{bottom:1110.451053px;}
.h1_c00035{height:62.771836px;}
.h2_c00035{height:63.216299px;}
.h0_c00035{height:1263.000000px;}
.w0_c00035{width:892.500000px;}
.x0_c00035{left:0.000000px;}
.x2_c00035{left:82.709645px;}
.x1_c00035{left:436.680000px;}
@media print{
.v0_c00035{vertical-align:0.000000pt;}
.ls5_c00035{letter-spacing:-0.056016pt;}
.lse_c00035{letter-spacing:-0.049792pt;}
.ls7_c00035{letter-spacing:-0.043568pt;}
.lsf_c00035{letter-spacing:-0.037344pt;}
.ls9_c00035{letter-spacing:-0.031120pt;}
.lsc_c00035{letter-spacing:-0.024896pt;}
.lsb_c00035{letter-spacing:-0.018672pt;}
.lsd_c00035{letter-spacing:-0.012448pt;}
.ls8_c00035{letter-spacing:-0.006224pt;}
.ls6_c00035{letter-spacing:0.000000pt;}
.ls1_c00035{letter-spacing:0.006224pt;}
.ls2_c00035{letter-spacing:0.012448pt;}
.ls4_c00035{letter-spacing:0.037344pt;}
.ls3_c00035{letter-spacing:0.049792pt;}
.ls0_c00035{letter-spacing:0.056016pt;}
.lsa_c00035{letter-spacing:0.304976pt;}
.wsd_c00035{word-spacing:-0.304976pt;}
.ws1_c00035{word-spacing:-0.068464pt;}
.wsc_c00035{word-spacing:-0.012448pt;}
.ws0_c00035{word-spacing:0.000000pt;}
.ws12_c00035{word-spacing:0.012448pt;}
.ws7_c00035{word-spacing:0.018672pt;}
.ws16_c00035{word-spacing:0.024896pt;}
.ws6_c00035{word-spacing:0.311200pt;}
.ws11_c00035{word-spacing:0.323648pt;}
.ws1d_c00035{word-spacing:0.354768pt;}
.ws5_c00035{word-spacing:1.275920pt;}
.ws15_c00035{word-spacing:1.288368pt;}
.ws10_c00035{word-spacing:2.277984pt;}
.ws1c_c00035{word-spacing:3.821536pt;}
.ws1e_c00035{word-spacing:4.151408pt;}
.ws1f_c00035{word-spacing:4.176304pt;}
.ws14_c00035{word-spacing:4.475056pt;}
.ws9_c00035{word-spacing:5.427328pt;}
.wsa_c00035{word-spacing:5.769648pt;}
.wsb_c00035{word-spacing:6.111968pt;}
.ws2_c00035{word-spacing:6.379600pt;}
.ws4_c00035{word-spacing:7.338096pt;}
.ws13_c00035{word-spacing:7.356768pt;}
.ws3_c00035{word-spacing:7.394112pt;}
.wse_c00035{word-spacing:9.279984pt;}
.ws20_c00035{word-spacing:9.597408pt;}
.ws1a_c00035{word-spacing:10.188688pt;}
.ws1b_c00035{word-spacing:10.244704pt;}
.wsf_c00035{word-spacing:12.796544pt;}
.ws19_c00035{word-spacing:13.126416pt;}
.ws18_c00035{word-spacing:15.298592pt;}
.ws17_c00035{word-spacing:15.342160pt;}
.ws8_c00035{word-spacing:26.887680pt;}
._0_c00035{margin-left:-6.398272pt;}
._1_c00035{margin-left:-0.902480pt;}
._2_c00035{width:0.952272pt;}
.fs0_c00035{font-size:62.240000pt;}
.y0_c00035{bottom:0.000000pt;}
.y2_c00035{bottom:97.547527pt;}
.y1_c00035{bottom:115.387067pt;}
.y22_c00035{bottom:164.021403pt;}
.y21_c00035{bottom:190.901303pt;}
.y20_c00035{bottom:217.701847pt;}
.y1f_c00035{bottom:244.581747pt;}
.y1e_c00035{bottom:271.382291pt;}
.y1d_c00035{bottom:298.262191pt;}
.y1c_c00035{bottom:325.062735pt;}
.y1b_c00035{bottom:351.942635pt;}
.y1a_c00035{bottom:378.743179pt;}
.y19_c00035{bottom:405.623079pt;}
.y18_c00035{bottom:432.423623pt;}
.y17_c00035{bottom:459.303523pt;}
.y16_c00035{bottom:486.104067pt;}
.y15_c00035{bottom:512.983967pt;}
.y14_c00035{bottom:539.703599pt;}
.y13_c00035{bottom:566.583499pt;}
.y12_c00035{bottom:593.384043pt;}
.y11_c00035{bottom:620.263943pt;}
.y10_c00035{bottom:647.064487pt;}
.yf_c00035{bottom:673.944387pt;}
.ye_c00035{bottom:700.744931pt;}
.yd_c00035{bottom:727.624831pt;}
.yc_c00035{bottom:754.425375pt;}
.yb_c00035{bottom:781.305275pt;}
.ya_c00035{bottom:808.105819pt;}
.y9_c00035{bottom:834.985719pt;}
.y8_c00035{bottom:861.786263pt;}
.y7_c00035{bottom:888.666163pt;}
.y6_c00035{bottom:915.466707pt;}
.y5_c00035{bottom:942.346607pt;}
.y4_c00035{bottom:960.267059pt;}
.y3_c00035{bottom:987.067603pt;}
.h1_c00035{height:55.797187pt;}
.h2_c00035{height:56.192266pt;}
.h0_c00035{height:1122.666667pt;}
.w0_c00035{width:793.333333pt;}
.x0_c00035{left:0.000000pt;}
.x2_c00035{left:73.519684pt;}
.x1_c00035{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_88c489c141d668e56c5bbc31.woff2')format("woff");}.ff1_c00036{font-family:ff1_c00036;line-height:1.106934;font-style:normal;font-weight:normal;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_39aa21b1261c92d2d74d6ca9.woff2')format("woff");}.ff2_c00036{font-family:ff2_c00036;line-height:1.104492;font-style:normal;font-weight:normal;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_bb7a2d298660a5732b1d6509.woff2')format("woff");}.ff3_c00036{font-family:ff3_c00036;line-height:1.133301;font-style:normal;font-weight:normal;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_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff4_c00036{font-family:ff4_c00036;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00036;src:url('chunks/assets/font_b94f77a903d86d287cdd1441.woff2')format("woff");}.ff5_c00036{font-family:ff5_c00036;line-height:1.133301;font-style:normal;font-weight:normal;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_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff6_c00036{font-family:ff6_c00036;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00036{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00036{vertical-align:-14.760000px;}
.v0_c00036{vertical-align:0.000000px;}
.v1_c00036{vertical-align:32.409126px;}
.ls16_c00036{letter-spacing:-0.637284px;}
.ls13_c00036{letter-spacing:-0.274792px;}
.lse_c00036{letter-spacing:-0.263099px;}
.ls11_c00036{letter-spacing:-0.228019px;}
.ls14_c00036{letter-spacing:-0.192939px;}
.lsf_c00036{letter-spacing:-0.169553px;}
.lsd_c00036{letter-spacing:-0.075619px;}
.ls4_c00036{letter-spacing:-0.063018px;}
.ls10_c00036{letter-spacing:-0.058466px;}
.lsc_c00036{letter-spacing:-0.042012px;}
.ls12_c00036{letter-spacing:-0.035080px;}
.lsb_c00036{letter-spacing:-0.035010px;}
.ls15_c00036{letter-spacing:-0.029233px;}
.ls9_c00036{letter-spacing:-0.028008px;}
.ls7_c00036{letter-spacing:-0.021006px;}
.ls8_c00036{letter-spacing:-0.014004px;}
.ls6_c00036{letter-spacing:-0.007002px;}
.ls5_c00036{letter-spacing:0.000000px;}
.ls2_c00036{letter-spacing:0.007002px;}
.ls0_c00036{letter-spacing:0.021006px;}
.lsa_c00036{letter-spacing:0.023281px;}
.ls1_c00036{letter-spacing:0.070020px;}
.ls3_c00036{letter-spacing:0.362492px;}
.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;}
}
.ws2_c00036{word-spacing:-58.466400px;}
.ws0_c00036{word-spacing:-12.967628px;}
.ws1_c00036{word-spacing:-10.397640px;}
.ws27_c00036{word-spacing:-0.315719px;}
.wsa_c00036{word-spacing:-0.084024px;}
.ws3_c00036{word-spacing:0.000000px;}
.wse_c00036{word-spacing:0.007002px;}
.ws5_c00036{word-spacing:0.343098px;}
.wsf_c00036{word-spacing:0.364104px;}
.ws1d_c00036{word-spacing:0.378108px;}
.ws28_c00036{word-spacing:0.648977px;}
.ws1a_c00036{word-spacing:0.721206px;}
.ws19_c00036{word-spacing:1.085310px;}
.ws18_c00036{word-spacing:1.806516px;}
.ws4_c00036{word-spacing:2.149614px;}
.ws11_c00036{word-spacing:2.520720px;}
.ws12_c00036{word-spacing:2.534724px;}
.ws6_c00036{word-spacing:2.863818px;}
.ws13_c00036{word-spacing:2.884824px;}
.ws1f_c00036{word-spacing:3.970134px;}
.ws9_c00036{word-spacing:4.642326px;}
.wsd_c00036{word-spacing:4.656330px;}
.ws8_c00036{word-spacing:4.684338px;}
.ws7_c00036{word-spacing:6.469848px;}
.ws14_c00036{word-spacing:9.018576px;}
.ws10_c00036{word-spacing:10.082880px;}
.ws20_c00036{word-spacing:11.910402px;}
.ws15_c00036{word-spacing:12.246498px;}
.ws23_c00036{word-spacing:12.313024px;}
.ws22_c00036{word-spacing:12.424110px;}
.ws24_c00036{word-spacing:12.482576px;}
.ws25_c00036{word-spacing:12.646282px;}
.ws21_c00036{word-spacing:12.874301px;}
.ws26_c00036{word-spacing:12.885995px;}
.ws1e_c00036{word-spacing:14.053014px;}
.ws1c_c00036{word-spacing:14.767218px;}
.ws1b_c00036{word-spacing:15.103314px;}
.ws16_c00036{word-spacing:15.502428px;}
.wsc_c00036{word-spacing:15.852528px;}
.ws17_c00036{word-spacing:15.866532px;}
.wsb_c00036{word-spacing:18.359244px;}
._2_c00036{margin-left:-2.877822px;}
._1_c00036{margin-left:-1.302372px;}
._0_c00036{width:1.582452px;}
._3_c00036{width:5.930694px;}
.fc0_c00036{color:rgb(0,0,0);}
.fs2_c00036{font-size:37.809600px;}
.fs1_c00036{font-size:46.562400px;}
.fs3_c00036{font-size:58.466400px;}
.fs0_c00036{font-size:70.020000px;}
.y0_c00036{bottom:0.000000px;}
.y2_c00036{bottom:109.740968px;}
.y1_c00036{bottom:129.810450px;}
.y23_c00036{bottom:149.429891px;}
.y22_c00036{bottom:170.940450px;}
.y21_c00036{bottom:185.697444px;}
.y20_c00036{bottom:234.837480px;}
.y1f_c00036{bottom:265.077367px;}
.y1e_c00036{bottom:295.227979px;}
.y1d_c00036{bottom:325.467867px;}
.y1c_c00036{bottom:355.618479px;}
.y1b_c00036{bottom:385.858366px;}
.y1a_c00036{bottom:416.008979px;}
.y19_c00036{bottom:446.248866px;}
.y18_c00036{bottom:476.399478px;}
.y17_c00036{bottom:506.639365px;}
.y16_c00036{bottom:536.789977px;}
.y15_c00036{bottom:567.029865px;}
.y14_c00036{bottom:597.089451px;}
.y13_c00036{bottom:627.329338px;}
.y12_c00036{bottom:657.479950px;}
.y11_c00036{bottom:687.719838px;}
.y10_c00036{bottom:717.868169px;}
.yf_c00036{bottom:748.108056px;}
.ye_c00036{bottom:778.258668px;}
.yd_c00036{bottom:808.498556px;}
.yc_c00036{bottom:838.649168px;}
.yb_c00036{bottom:868.889055px;}
.ya_c00036{bottom:899.039667px;}
.y9_c00036{bottom:929.279555px;}
.y8_c00036{bottom:959.519442px;}
.y7_c00036{bottom:989.670054px;}
.y6_c00036{bottom:1019.909942px;}
.y5_c00036{bottom:1050.060553px;}
.y4_c00036{bottom:1080.300441px;}
.y3_c00036{bottom:1110.451053px;}
.h5_c00036{height:39.338549px;}
.h6_c00036{height:54.098549px;}
.h3_c00036{height:62.600889px;}
.h1_c00036{height:62.771836px;}
.h4_c00036{height:62.784460px;}
.h2_c00036{height:74.151590px;}
.h0_c00036{height:1263.000000px;}
.w0_c00036{width:892.500000px;}
.x0_c00036{left:0.000000px;}
.x2_c00036{left:82.709645px;}
.x1_c00036{left:436.680000px;}
@media print{
.v2_c00036{vertical-align:-13.120000pt;}
.v0_c00036{vertical-align:0.000000pt;}
.v1_c00036{vertical-align:28.808112pt;}
.ls16_c00036{letter-spacing:-0.566474pt;}
.ls13_c00036{letter-spacing:-0.244260pt;}
.lse_c00036{letter-spacing:-0.233866pt;}
.ls11_c00036{letter-spacing:-0.202684pt;}
.ls14_c00036{letter-spacing:-0.171501pt;}
.lsf_c00036{letter-spacing:-0.150713pt;}
.lsd_c00036{letter-spacing:-0.067217pt;}
.ls4_c00036{letter-spacing:-0.056016pt;}
.ls10_c00036{letter-spacing:-0.051970pt;}
.lsc_c00036{letter-spacing:-0.037344pt;}
.ls12_c00036{letter-spacing:-0.031182pt;}
.lsb_c00036{letter-spacing:-0.031120pt;}
.ls15_c00036{letter-spacing:-0.025985pt;}
.ls9_c00036{letter-spacing:-0.024896pt;}
.ls7_c00036{letter-spacing:-0.018672pt;}
.ls8_c00036{letter-spacing:-0.012448pt;}
.ls6_c00036{letter-spacing:-0.006224pt;}
.ls5_c00036{letter-spacing:0.000000pt;}
.ls2_c00036{letter-spacing:0.006224pt;}
.ls0_c00036{letter-spacing:0.018672pt;}
.lsa_c00036{letter-spacing:0.020694pt;}
.ls1_c00036{letter-spacing:0.062240pt;}
.ls3_c00036{letter-spacing:0.322215pt;}
.ws2_c00036{word-spacing:-51.970133pt;}
.ws0_c00036{word-spacing:-11.526781pt;}
.ws1_c00036{word-spacing:-9.242347pt;}
.ws27_c00036{word-spacing:-0.280639pt;}
.wsa_c00036{word-spacing:-0.074688pt;}
.ws3_c00036{word-spacing:0.000000pt;}
.wse_c00036{word-spacing:0.006224pt;}
.ws5_c00036{word-spacing:0.304976pt;}
.wsf_c00036{word-spacing:0.323648pt;}
.ws1d_c00036{word-spacing:0.336096pt;}
.ws28_c00036{word-spacing:0.576868pt;}
.ws1a_c00036{word-spacing:0.641072pt;}
.ws19_c00036{word-spacing:0.964720pt;}
.ws18_c00036{word-spacing:1.605792pt;}
.ws4_c00036{word-spacing:1.910768pt;}
.ws11_c00036{word-spacing:2.240640pt;}
.ws12_c00036{word-spacing:2.253088pt;}
.ws6_c00036{word-spacing:2.545616pt;}
.ws13_c00036{word-spacing:2.564288pt;}
.ws1f_c00036{word-spacing:3.529008pt;}
.ws9_c00036{word-spacing:4.126512pt;}
.wsd_c00036{word-spacing:4.138960pt;}
.ws8_c00036{word-spacing:4.163856pt;}
.ws7_c00036{word-spacing:5.750976pt;}
.ws14_c00036{word-spacing:8.016512pt;}
.ws10_c00036{word-spacing:8.962560pt;}
.ws20_c00036{word-spacing:10.587024pt;}
.ws15_c00036{word-spacing:10.885776pt;}
.ws23_c00036{word-spacing:10.944910pt;}
.ws22_c00036{word-spacing:11.043653pt;}
.ws24_c00036{word-spacing:11.095623pt;}
.ws25_c00036{word-spacing:11.241140pt;}
.ws21_c00036{word-spacing:11.443823pt;}
.ws26_c00036{word-spacing:11.454217pt;}
.ws1e_c00036{word-spacing:12.491568pt;}
.ws1c_c00036{word-spacing:13.126416pt;}
.ws1b_c00036{word-spacing:13.425168pt;}
.ws16_c00036{word-spacing:13.779936pt;}
.wsc_c00036{word-spacing:14.091136pt;}
.ws17_c00036{word-spacing:14.103584pt;}
.wsb_c00036{word-spacing:16.319328pt;}
._2_c00036{margin-left:-2.558064pt;}
._1_c00036{margin-left:-1.157664pt;}
._0_c00036{width:1.406624pt;}
._3_c00036{width:5.271728pt;}
.fs2_c00036{font-size:33.608533pt;}
.fs1_c00036{font-size:41.388800pt;}
.fs3_c00036{font-size:51.970133pt;}
.fs0_c00036{font-size:62.240000pt;}
.y0_c00036{bottom:0.000000pt;}
.y2_c00036{bottom:97.547527pt;}
.y1_c00036{bottom:115.387067pt;}
.y23_c00036{bottom:132.826570pt;}
.y22_c00036{bottom:151.947067pt;}
.y21_c00036{bottom:165.064395pt;}
.y20_c00036{bottom:208.744427pt;}
.y1f_c00036{bottom:235.624327pt;}
.y1e_c00036{bottom:262.424871pt;}
.y1d_c00036{bottom:289.304771pt;}
.y1c_c00036{bottom:316.105315pt;}
.y1b_c00036{bottom:342.985215pt;}
.y1a_c00036{bottom:369.785759pt;}
.y19_c00036{bottom:396.665659pt;}
.y18_c00036{bottom:423.466203pt;}
.y17_c00036{bottom:450.346103pt;}
.y16_c00036{bottom:477.146647pt;}
.y15_c00036{bottom:504.026547pt;}
.y14_c00036{bottom:530.746179pt;}
.y13_c00036{bottom:557.626079pt;}
.y12_c00036{bottom:584.426623pt;}
.y11_c00036{bottom:611.306523pt;}
.y10_c00036{bottom:638.105039pt;}
.yf_c00036{bottom:664.984939pt;}
.ye_c00036{bottom:691.785483pt;}
.yd_c00036{bottom:718.665383pt;}
.yc_c00036{bottom:745.465927pt;}
.yb_c00036{bottom:772.345827pt;}
.ya_c00036{bottom:799.146371pt;}
.y9_c00036{bottom:826.026271pt;}
.y8_c00036{bottom:852.906171pt;}
.y7_c00036{bottom:879.706715pt;}
.y6_c00036{bottom:906.586615pt;}
.y5_c00036{bottom:933.387159pt;}
.y4_c00036{bottom:960.267059pt;}
.y3_c00036{bottom:987.067603pt;}
.h5_c00036{height:34.967599pt;}
.h6_c00036{height:48.087599pt;}
.h3_c00036{height:55.645234pt;}
.h1_c00036{height:55.797187pt;}
.h4_c00036{height:55.808409pt;}
.h2_c00036{height:65.912524pt;}
.h0_c00036{height:1122.666667pt;}
.w0_c00036{width:793.333333pt;}
.x0_c00036{left:0.000000pt;}
.x2_c00036{left:73.519684pt;}
.x1_c00036{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_32b70d36083ee70a8345b670.woff2')format("woff");}.ff1_c00037{font-family:ff1_c00037;line-height:1.106934;font-style:normal;font-weight:normal;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_f0e481844deda9db022062d4.woff2')format("woff");}.ff2_c00037{font-family:ff2_c00037;line-height:1.104492;font-style:normal;font-weight:normal;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_35e93c37e70c02695b69ce7f.woff2')format("woff");}.ff3_c00037{font-family:ff3_c00037;line-height:1.133301;font-style:normal;font-weight:normal;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_fb0a6625d25a7e4d153180fb.woff2')format("woff");}.ff4_c00037{font-family:ff4_c00037;line-height:1.133301;font-style:normal;font-weight:normal;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_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff5_c00037{font-family:ff5_c00037;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00037;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff6_c00037{font-family:ff6_c00037;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00037{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00037{vertical-align:-14.760000px;}
.v0_c00037{vertical-align:0.000000px;}
.v3_c00037{vertical-align:14.761372px;}
.v1_c00037{vertical-align:32.042034px;}
.ls17_c00037{letter-spacing:-0.701597px;}
.ls19_c00037{letter-spacing:-0.467731px;}
.ls13_c00037{letter-spacing:-0.368338px;}
.ls15_c00037{letter-spacing:-0.333258px;}
.ls1b_c00037{letter-spacing:-0.286485px;}
.ls1a_c00037{letter-spacing:-0.157859px;}
.ls1c_c00037{letter-spacing:-0.140319px;}
.ls12_c00037{letter-spacing:-0.111086px;}
.lsf_c00037{letter-spacing:-0.075619px;}
.ls5_c00037{letter-spacing:-0.063018px;}
.lsa_c00037{letter-spacing:-0.056016px;}
.lse_c00037{letter-spacing:-0.042012px;}
.ls11_c00037{letter-spacing:-0.035080px;}
.ls9_c00037{letter-spacing:-0.035010px;}
.ls7_c00037{letter-spacing:-0.028008px;}
.ls10_c00037{letter-spacing:-0.023387px;}
.lsc_c00037{letter-spacing:-0.021006px;}
.lsd_c00037{letter-spacing:-0.014004px;}
.ls8_c00037{letter-spacing:-0.007002px;}
.ls6_c00037{letter-spacing:0.000000px;}
.ls3_c00037{letter-spacing:0.005847px;}
.ls1_c00037{letter-spacing:0.007002px;}
.ls4_c00037{letter-spacing:0.011693px;}
.ls0_c00037{letter-spacing:0.014004px;}
.lsb_c00037{letter-spacing:0.023281px;}
.ls1d_c00037{letter-spacing:0.029233px;}
.ls16_c00037{letter-spacing:0.076006px;}
.ls2_c00037{letter-spacing:0.362492px;}
.ls14_c00037{letter-spacing:0.537891px;}
.ls18_c00037{letter-spacing:0.719137px;}
.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;}
}
.ws5_c00037{word-spacing:-58.466400px;}
.ws2_c00037{word-spacing:-19.423548px;}
.ws0_c00037{word-spacing:-19.409544px;}
.ws4_c00037{word-spacing:-16.195193px;}
.ws1_c00037{word-spacing:-12.967628px;}
.ws3_c00037{word-spacing:-10.397640px;}
.wse_c00037{word-spacing:-0.021006px;}
.ws2a_c00037{word-spacing:-0.017540px;}
.ws6_c00037{word-spacing:0.000000px;}
.ws25_c00037{word-spacing:0.005847px;}
.ws10_c00037{word-spacing:0.007002px;}
.ws20_c00037{word-spacing:0.011693px;}
.ws13_c00037{word-spacing:0.014004px;}
.wsb_c00037{word-spacing:0.021006px;}
.ws16_c00037{word-spacing:0.028008px;}
.ws1f_c00037{word-spacing:0.122779px;}
.ws14_c00037{word-spacing:0.350100px;}
.ws17_c00037{word-spacing:0.371106px;}
.ws9_c00037{word-spacing:0.378108px;}
.ws11_c00037{word-spacing:4.306230px;}
.ws12_c00037{word-spacing:4.320234px;}
.ws8_c00037{word-spacing:5.391540px;}
.ws19_c00037{word-spacing:9.018576px;}
.ws18_c00037{word-spacing:9.368676px;}
.ws1d_c00037{word-spacing:9.758042px;}
.ws1e_c00037{word-spacing:9.769735px;}
.ws22_c00037{word-spacing:12.073312px;}
.ws24_c00037{word-spacing:12.178551px;}
.wsa_c00037{word-spacing:12.232494px;}
.ws23_c00037{word-spacing:12.944461px;}
.ws21_c00037{word-spacing:12.979541px;}
.ws7_c00037{word-spacing:13.695912px;}
.ws1b_c00037{word-spacing:14.039010px;}
.ws1c_c00037{word-spacing:14.046012px;}
.wsf_c00037{word-spacing:15.453414px;}
.ws1a_c00037{word-spacing:19.787652px;}
.ws15_c00037{word-spacing:19.808658px;}
.ws29_c00037{word-spacing:25.351031px;}
.ws28_c00037{word-spacing:25.859689px;}
.wsc_c00037{word-spacing:26.250498px;}
.wsd_c00037{word-spacing:26.292510px;}
.ws27_c00037{word-spacing:30.408375px;}
.ws26_c00037{word-spacing:31.080738px;}
._3_c00037{margin-left:-26.719632px;}
._4_c00037{margin-left:-15.677478px;}
._2_c00037{margin-left:-12.239496px;}
._6_c00037{margin-left:-2.710494px;}
._0_c00037{margin-left:-1.169334px;}
._1_c00037{width:1.099314px;}
._5_c00037{width:5.930694px;}
.fc0_c00037{color:rgb(0,0,0);}
.fs2_c00037{font-size:37.809600px;}
.fs1_c00037{font-size:46.562400px;}
.fs3_c00037{font-size:58.466400px;}
.fs0_c00037{font-size:70.020000px;}
.y0_c00037{bottom:0.000000px;}
.y2_c00037{bottom:109.740968px;}
.y1_c00037{bottom:129.810450px;}
.y26_c00037{bottom:149.428990px;}
.y25_c00037{bottom:167.249548px;}
.y24_c00037{bottom:185.249891px;}
.y23_c00037{bottom:203.070107px;}
.y22_c00037{bottom:224.670450px;}
.y21_c00037{bottom:238.889891px;}
.y20_c00037{bottom:260.400450px;}
.y1f_c00037{bottom:274.709891px;}
.y1e_c00037{bottom:296.220450px;}
.y1d_c00037{bottom:310.890186px;}
.y1c_c00037{bottom:355.620713px;}
.y1b_c00037{bottom:385.858479px;}
.y1a_c00037{bottom:416.009091px;}
.y19_c00037{bottom:446.248978px;}
.y18_c00037{bottom:476.399590px;}
.y17_c00037{bottom:506.639478px;}
.y16_c00037{bottom:536.790090px;}
.y15_c00037{bottom:567.029977px;}
.y14_c00037{bottom:597.089563px;}
.y13_c00037{bottom:627.329451px;}
.y12_c00037{bottom:657.480063px;}
.y11_c00037{bottom:687.719950px;}
.y10_c00037{bottom:717.870563px;}
.yf_c00037{bottom:748.109339px;}
.ye_c00037{bottom:778.259951px;}
.yd_c00037{bottom:808.499838px;}
.yc_c00037{bottom:838.649676px;}
.yb_c00037{bottom:868.889563px;}
.ya_c00037{bottom:899.040175px;}
.y9_c00037{bottom:929.280063px;}
.y8_c00037{bottom:959.519951px;}
.y7_c00037{bottom:989.670562px;}
.y6_c00037{bottom:1019.909942px;}
.y5_c00037{bottom:1050.060553px;}
.y4_c00037{bottom:1080.300441px;}
.y3_c00037{bottom:1110.451053px;}
.h8_c00037{height:39.338549px;}
.ha_c00037{height:39.698549px;}
.h9_c00037{height:54.098549px;}
.hb_c00037{height:54.099920px;}
.h2_c00037{height:62.600889px;}
.h1_c00037{height:62.771836px;}
.h7_c00037{height:62.772892px;}
.h3_c00037{height:73.670820px;}
.h5_c00037{height:73.673232px;}
.h6_c00037{height:73.677270px;}
.h4_c00037{height:74.031882px;}
.h0_c00037{height:1263.000000px;}
.w0_c00037{width:892.500000px;}
.x0_c00037{left:0.000000px;}
.x3_c00037{left:66.959353px;}
.x2_c00037{left:82.709645px;}
.x1_c00037{left:436.680000px;}
@media print{
.v2_c00037{vertical-align:-13.120000pt;}
.v0_c00037{vertical-align:0.000000pt;}
.v3_c00037{vertical-align:13.121219pt;}
.v1_c00037{vertical-align:28.481808pt;}
.ls17_c00037{letter-spacing:-0.623642pt;}
.ls19_c00037{letter-spacing:-0.415761pt;}
.ls13_c00037{letter-spacing:-0.327412pt;}
.ls15_c00037{letter-spacing:-0.296230pt;}
.ls1b_c00037{letter-spacing:-0.254654pt;}
.ls1a_c00037{letter-spacing:-0.140319pt;}
.ls1c_c00037{letter-spacing:-0.124728pt;}
.ls12_c00037{letter-spacing:-0.098743pt;}
.lsf_c00037{letter-spacing:-0.067217pt;}
.ls5_c00037{letter-spacing:-0.056016pt;}
.lsa_c00037{letter-spacing:-0.049792pt;}
.lse_c00037{letter-spacing:-0.037344pt;}
.ls11_c00037{letter-spacing:-0.031182pt;}
.ls9_c00037{letter-spacing:-0.031120pt;}
.ls7_c00037{letter-spacing:-0.024896pt;}
.ls10_c00037{letter-spacing:-0.020788pt;}
.lsc_c00037{letter-spacing:-0.018672pt;}
.lsd_c00037{letter-spacing:-0.012448pt;}
.ls8_c00037{letter-spacing:-0.006224pt;}
.ls6_c00037{letter-spacing:0.000000pt;}
.ls3_c00037{letter-spacing:0.005197pt;}
.ls1_c00037{letter-spacing:0.006224pt;}
.ls4_c00037{letter-spacing:0.010394pt;}
.ls0_c00037{letter-spacing:0.012448pt;}
.lsb_c00037{letter-spacing:0.020694pt;}
.ls1d_c00037{letter-spacing:0.025985pt;}
.ls16_c00037{letter-spacing:0.067561pt;}
.ls2_c00037{letter-spacing:0.322215pt;}
.ls14_c00037{letter-spacing:0.478125pt;}
.ls18_c00037{letter-spacing:0.639233pt;}
.ws5_c00037{word-spacing:-51.970133pt;}
.ws2_c00037{word-spacing:-17.265376pt;}
.ws0_c00037{word-spacing:-17.252928pt;}
.ws4_c00037{word-spacing:-14.395727pt;}
.ws1_c00037{word-spacing:-11.526781pt;}
.ws3_c00037{word-spacing:-9.242347pt;}
.wse_c00037{word-spacing:-0.018672pt;}
.ws2a_c00037{word-spacing:-0.015591pt;}
.ws6_c00037{word-spacing:0.000000pt;}
.ws25_c00037{word-spacing:0.005197pt;}
.ws10_c00037{word-spacing:0.006224pt;}
.ws20_c00037{word-spacing:0.010394pt;}
.ws13_c00037{word-spacing:0.012448pt;}
.wsb_c00037{word-spacing:0.018672pt;}
.ws16_c00037{word-spacing:0.024896pt;}
.ws1f_c00037{word-spacing:0.109137pt;}
.ws14_c00037{word-spacing:0.311200pt;}
.ws17_c00037{word-spacing:0.329872pt;}
.ws9_c00037{word-spacing:0.336096pt;}
.ws11_c00037{word-spacing:3.827760pt;}
.ws12_c00037{word-spacing:3.840208pt;}
.ws8_c00037{word-spacing:4.792480pt;}
.ws19_c00037{word-spacing:8.016512pt;}
.ws18_c00037{word-spacing:8.327712pt;}
.ws1d_c00037{word-spacing:8.673815pt;}
.ws1e_c00037{word-spacing:8.684209pt;}
.ws22_c00037{word-spacing:10.731833pt;}
.ws24_c00037{word-spacing:10.825379pt;}
.wsa_c00037{word-spacing:10.873328pt;}
.ws23_c00037{word-spacing:11.506188pt;}
.ws21_c00037{word-spacing:11.537370pt;}
.ws7_c00037{word-spacing:12.174144pt;}
.ws1b_c00037{word-spacing:12.479120pt;}
.ws1c_c00037{word-spacing:12.485344pt;}
.wsf_c00037{word-spacing:13.736368pt;}
.ws1a_c00037{word-spacing:17.589024pt;}
.ws15_c00037{word-spacing:17.607696pt;}
.ws29_c00037{word-spacing:22.534250pt;}
.ws28_c00037{word-spacing:22.986390pt;}
.wsc_c00037{word-spacing:23.333776pt;}
.wsd_c00037{word-spacing:23.371120pt;}
.ws27_c00037{word-spacing:27.029666pt;}
.ws26_c00037{word-spacing:27.627323pt;}
._3_c00037{margin-left:-23.750784pt;}
._4_c00037{margin-left:-13.935536pt;}
._2_c00037{margin-left:-10.879552pt;}
._6_c00037{margin-left:-2.409328pt;}
._0_c00037{margin-left:-1.039408pt;}
._1_c00037{width:0.977168pt;}
._5_c00037{width:5.271728pt;}
.fs2_c00037{font-size:33.608533pt;}
.fs1_c00037{font-size:41.388800pt;}
.fs3_c00037{font-size:51.970133pt;}
.fs0_c00037{font-size:62.240000pt;}
.y0_c00037{bottom:0.000000pt;}
.y2_c00037{bottom:97.547527pt;}
.y1_c00037{bottom:115.387067pt;}
.y26_c00037{bottom:132.825769pt;}
.y25_c00037{bottom:148.666265pt;}
.y24_c00037{bottom:164.666570pt;}
.y23_c00037{bottom:180.506762pt;}
.y22_c00037{bottom:199.707067pt;}
.y21_c00037{bottom:212.346570pt;}
.y20_c00037{bottom:231.467067pt;}
.y1f_c00037{bottom:244.186570pt;}
.y1e_c00037{bottom:263.307067pt;}
.y1d_c00037{bottom:276.346832pt;}
.y1c_c00037{bottom:316.107300pt;}
.y1b_c00037{bottom:342.985315pt;}
.y1a_c00037{bottom:369.785859pt;}
.y19_c00037{bottom:396.665759pt;}
.y18_c00037{bottom:423.466303pt;}
.y17_c00037{bottom:450.346203pt;}
.y16_c00037{bottom:477.146747pt;}
.y15_c00037{bottom:504.026647pt;}
.y14_c00037{bottom:530.746279pt;}
.y13_c00037{bottom:557.626179pt;}
.y12_c00037{bottom:584.426723pt;}
.y11_c00037{bottom:611.306623pt;}
.y10_c00037{bottom:638.107167pt;}
.yf_c00037{bottom:664.986079pt;}
.ye_c00037{bottom:691.786623pt;}
.yd_c00037{bottom:718.666523pt;}
.yc_c00037{bottom:745.466379pt;}
.yb_c00037{bottom:772.346279pt;}
.ya_c00037{bottom:799.146823pt;}
.y9_c00037{bottom:826.026723pt;}
.y8_c00037{bottom:852.906623pt;}
.y7_c00037{bottom:879.707167pt;}
.y6_c00037{bottom:906.586615pt;}
.y5_c00037{bottom:933.387159pt;}
.y4_c00037{bottom:960.267059pt;}
.y3_c00037{bottom:987.067603pt;}
.h8_c00037{height:34.967599pt;}
.ha_c00037{height:35.287599pt;}
.h9_c00037{height:48.087599pt;}
.hb_c00037{height:48.088818pt;}
.h2_c00037{height:55.645234pt;}
.h1_c00037{height:55.797187pt;}
.h7_c00037{height:55.798126pt;}
.h3_c00037{height:65.485174pt;}
.h5_c00037{height:65.487318pt;}
.h6_c00037{height:65.490907pt;}
.h4_c00037{height:65.806118pt;}
.h0_c00037{height:1122.666667pt;}
.w0_c00037{width:793.333333pt;}
.x0_c00037{left:0.000000pt;}
.x3_c00037{left:59.519425pt;}
.x2_c00037{left:73.519684pt;}
.x1_c00037{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a1c6053c1d53f2fb3fd77d00.woff2')format("woff");}.ff1_c00038{font-family:ff1_c00038;line-height:1.106934;font-style:normal;font-weight:normal;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_05b64d6319fc08d18cf083cb.woff2')format("woff");}.ff2_c00038{font-family:ff2_c00038;line-height:1.104492;font-style:normal;font-weight:normal;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_32eefbaa2ec643390dfdf3b0.woff2')format("woff");}.ff3_c00038{font-family:ff3_c00038;line-height:1.133301;font-style:normal;font-weight:normal;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_d71f2b23704aacc6cb311ea8.woff2')format("woff");}.ff4_c00038{font-family:ff4_c00038;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00038;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff5_c00038{font-family:ff5_c00038;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00038;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff6_c00038{font-family:ff6_c00038;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00038{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00038{vertical-align:-14.760000px;}
.v0_c00038{vertical-align:0.000000px;}
.v1_c00038{vertical-align:32.042034px;}
.ls16_c00038{letter-spacing:-0.707443px;}
.ls22_c00038{letter-spacing:-0.596357px;}
.ls1e_c00038{letter-spacing:-0.374185px;}
.ls1d_c00038{letter-spacing:-0.344952px;}
.ls20_c00038{letter-spacing:-0.268945px;}
.lsd_c00038{letter-spacing:-0.133038px;}
.ls1f_c00038{letter-spacing:-0.122779px;}
.ls17_c00038{letter-spacing:-0.116933px;}
.ls1c_c00038{letter-spacing:-0.111086px;}
.ls21_c00038{letter-spacing:-0.099393px;}
.ls19_c00038{letter-spacing:-0.087700px;}
.ls13_c00038{letter-spacing:-0.075619px;}
.ls15_c00038{letter-spacing:-0.070160px;}
.lse_c00038{letter-spacing:-0.070020px;}
.ls7_c00038{letter-spacing:-0.063018px;}
.ls1b_c00038{letter-spacing:-0.058466px;}
.ls10_c00038{letter-spacing:-0.056016px;}
.ls14_c00038{letter-spacing:-0.052620px;}
.ls9_c00038{letter-spacing:-0.035010px;}
.lsf_c00038{letter-spacing:-0.028008px;}
.ls12_c00038{letter-spacing:-0.021006px;}
.lsa_c00038{letter-spacing:-0.014004px;}
.ls11_c00038{letter-spacing:-0.007002px;}
.ls8_c00038{letter-spacing:0.000000px;}
.ls3_c00038{letter-spacing:0.005847px;}
.ls1_c00038{letter-spacing:0.007002px;}
.ls0_c00038{letter-spacing:0.014004px;}
.lsb_c00038{letter-spacing:0.023281px;}
.ls2_c00038{letter-spacing:0.035010px;}
.ls1a_c00038{letter-spacing:0.035080px;}
.ls5_c00038{letter-spacing:0.046773px;}
.lsc_c00038{letter-spacing:0.105030px;}
.ls18_c00038{letter-spacing:0.292332px;}
.ls6_c00038{letter-spacing:0.333258px;}
.ls4_c00038{letter-spacing:0.362492px;}
.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;}
}
.ws5_c00038{word-spacing:-58.466400px;}
.ws1_c00038{word-spacing:-19.465560px;}
.ws7_c00038{word-spacing:-16.230273px;}
.ws3_c00038{word-spacing:-16.142573px;}
.ws4_c00038{word-spacing:-16.125033px;}
.ws6_c00038{word-spacing:-16.107493px;}
.ws8_c00038{word-spacing:-16.084107px;}
.ws0_c00038{word-spacing:-12.967628px;}
.ws2_c00038{word-spacing:-10.397640px;}
.ws9_c00038{word-spacing:0.000000px;}
.ws35_c00038{word-spacing:0.005847px;}
.ws3c_c00038{word-spacing:0.111086px;}
.ws1b_c00038{word-spacing:0.399114px;}
.ws3d_c00038{word-spacing:0.608051px;}
.ws3b_c00038{word-spacing:0.643130px;}
.ws3e_c00038{word-spacing:0.719137px;}
.ws2f_c00038{word-spacing:1.078308px;}
.ws31_c00038{word-spacing:1.765685px;}
.ws30_c00038{word-spacing:1.806612px;}
.wsc_c00038{word-spacing:2.156616px;}
.ws37_c00038{word-spacing:2.233416px;}
.ws13_c00038{word-spacing:2.506716px;}
.ws12_c00038{word-spacing:2.520720px;}
.ws36_c00038{word-spacing:2.531595px;}
.ws23_c00038{word-spacing:3.606030px;}
.wsf_c00038{word-spacing:3.942126px;}
.ws10_c00038{word-spacing:3.949128px;}
.ws1f_c00038{word-spacing:3.956130px;}
.ws2e_c00038{word-spacing:3.970134px;}
.ws24_c00038{word-spacing:3.977136px;}
.ws1e_c00038{word-spacing:3.984138px;}
.ws20_c00038{word-spacing:4.292226px;}
.ws1c_c00038{word-spacing:4.649328px;}
.ws1d_c00038{word-spacing:4.698342px;}
.ws28_c00038{word-spacing:6.462846px;}
.ws29_c00038{word-spacing:6.476850px;}
.ws27_c00038{word-spacing:6.483852px;}
.ws21_c00038{word-spacing:6.490854px;}
.ws18_c00038{word-spacing:7.219062px;}
.ws17_c00038{word-spacing:7.254072px;}
.wsa_c00038{word-spacing:7.534152px;}
.ws2d_c00038{word-spacing:8.990568px;}
.wse_c00038{word-spacing:9.242640px;}
.wsd_c00038{word-spacing:9.347670px;}
.ws22_c00038{word-spacing:10.089882px;}
.ws2b_c00038{word-spacing:11.469276px;}
.ws26_c00038{word-spacing:11.504286px;}
.ws25_c00038{word-spacing:11.924406px;}
.ws11_c00038{word-spacing:13.317804px;}
.ws15_c00038{word-spacing:14.025006px;}
.ws16_c00038{word-spacing:14.158044px;}
.ws2c_c00038{word-spacing:14.389110px;}
.ws2a_c00038{word-spacing:15.502428px;}
.wsb_c00038{word-spacing:16.937838px;}
.ws34_c00038{word-spacing:17.002029px;}
.ws33_c00038{word-spacing:17.411294px;}
.ws32_c00038{word-spacing:18.358450px;}
.ws14_c00038{word-spacing:23.421690px;}
.ws19_c00038{word-spacing:36.011286px;}
.ws1a_c00038{word-spacing:36.361386px;}
.ws39_c00038{word-spacing:47.620883px;}
.ws3a_c00038{word-spacing:47.655963px;}
.ws38_c00038{word-spacing:47.907368px;}
._3_c00038{margin-left:-2.708370px;}
._0_c00038{margin-left:-1.127322px;}
._1_c00038{width:1.183338px;}
._2_c00038{width:5.930694px;}
.fc0_c00038{color:rgb(0,0,0);}
.fs2_c00038{font-size:37.809600px;}
.fs1_c00038{font-size:46.562400px;}
.fs3_c00038{font-size:58.466400px;}
.fs0_c00038{font-size:70.020000px;}
.y0_c00038{bottom:0.000000px;}
.y2_c00038{bottom:109.740968px;}
.y1_c00038{bottom:129.810450px;}
.y25_c00038{bottom:149.429548px;}
.y24_c00038{bottom:167.250107px;}
.y23_c00038{bottom:188.940450px;}
.y22_c00038{bottom:203.069548px;}
.y21_c00038{bottom:221.069891px;}
.y20_c00038{bottom:242.580450px;}
.y1f_c00038{bottom:257.246994px;}
.y1e_c00038{bottom:295.227593px;}
.y1d_c00038{bottom:325.467480px;}
.y1c_c00038{bottom:355.618092px;}
.y1b_c00038{bottom:385.857979px;}
.y1a_c00038{bottom:416.008592px;}
.y19_c00038{bottom:446.248479px;}
.y18_c00038{bottom:476.399091px;}
.y17_c00038{bottom:506.638979px;}
.y16_c00038{bottom:536.789591px;}
.y15_c00038{bottom:567.029478px;}
.y14_c00038{bottom:597.089064px;}
.y13_c00038{bottom:627.328952px;}
.y12_c00038{bottom:657.479564px;}
.y11_c00038{bottom:687.719451px;}
.y10_c00038{bottom:717.870063px;}
.yf_c00038{bottom:748.109951px;}
.ye_c00038{bottom:778.260562px;}
.yd_c00038{bottom:808.499064px;}
.yc_c00038{bottom:838.649676px;}
.yb_c00038{bottom:868.889563px;}
.ya_c00038{bottom:899.040175px;}
.y9_c00038{bottom:929.280063px;}
.y8_c00038{bottom:959.519951px;}
.y7_c00038{bottom:989.670562px;}
.y6_c00038{bottom:1019.909942px;}
.y5_c00038{bottom:1050.060553px;}
.y4_c00038{bottom:1080.300441px;}
.y3_c00038{bottom:1110.451053px;}
.h6_c00038{height:39.338549px;}
.h7_c00038{height:54.098549px;}
.h3_c00038{height:62.600889px;}
.h1_c00038{height:62.771836px;}
.h5_c00038{height:62.785660px;}
.h2_c00038{height:73.670820px;}
.h4_c00038{height:73.674330px;}
.h0_c00038{height:1263.000000px;}
.w0_c00038{width:892.500000px;}
.x0_c00038{left:0.000000px;}
.x2_c00038{left:82.709645px;}
.x1_c00038{left:436.680000px;}
@media print{
.v2_c00038{vertical-align:-13.120000pt;}
.v0_c00038{vertical-align:0.000000pt;}
.v1_c00038{vertical-align:28.481808pt;}
.ls16_c00038{letter-spacing:-0.628839pt;}
.ls22_c00038{letter-spacing:-0.530095pt;}
.ls1e_c00038{letter-spacing:-0.332609pt;}
.ls1d_c00038{letter-spacing:-0.306624pt;}
.ls20_c00038{letter-spacing:-0.239063pt;}
.lsd_c00038{letter-spacing:-0.118256pt;}
.ls1f_c00038{letter-spacing:-0.109137pt;}
.ls17_c00038{letter-spacing:-0.103940pt;}
.ls1c_c00038{letter-spacing:-0.098743pt;}
.ls21_c00038{letter-spacing:-0.088349pt;}
.ls19_c00038{letter-spacing:-0.077955pt;}
.ls13_c00038{letter-spacing:-0.067217pt;}
.ls15_c00038{letter-spacing:-0.062364pt;}
.lse_c00038{letter-spacing:-0.062240pt;}
.ls7_c00038{letter-spacing:-0.056016pt;}
.ls1b_c00038{letter-spacing:-0.051970pt;}
.ls10_c00038{letter-spacing:-0.049792pt;}
.ls14_c00038{letter-spacing:-0.046773pt;}
.ls9_c00038{letter-spacing:-0.031120pt;}
.lsf_c00038{letter-spacing:-0.024896pt;}
.ls12_c00038{letter-spacing:-0.018672pt;}
.lsa_c00038{letter-spacing:-0.012448pt;}
.ls11_c00038{letter-spacing:-0.006224pt;}
.ls8_c00038{letter-spacing:0.000000pt;}
.ls3_c00038{letter-spacing:0.005197pt;}
.ls1_c00038{letter-spacing:0.006224pt;}
.ls0_c00038{letter-spacing:0.012448pt;}
.lsb_c00038{letter-spacing:0.020694pt;}
.ls2_c00038{letter-spacing:0.031120pt;}
.ls1a_c00038{letter-spacing:0.031182pt;}
.ls5_c00038{letter-spacing:0.041576pt;}
.lsc_c00038{letter-spacing:0.093360pt;}
.ls18_c00038{letter-spacing:0.259851pt;}
.ls6_c00038{letter-spacing:0.296230pt;}
.ls4_c00038{letter-spacing:0.322215pt;}
.ws5_c00038{word-spacing:-51.970133pt;}
.ws1_c00038{word-spacing:-17.302720pt;}
.ws7_c00038{word-spacing:-14.426909pt;}
.ws3_c00038{word-spacing:-14.348954pt;}
.ws4_c00038{word-spacing:-14.333363pt;}
.ws6_c00038{word-spacing:-14.317772pt;}
.ws8_c00038{word-spacing:-14.296984pt;}
.ws0_c00038{word-spacing:-11.526781pt;}
.ws2_c00038{word-spacing:-9.242347pt;}
.ws9_c00038{word-spacing:0.000000pt;}
.ws35_c00038{word-spacing:0.005197pt;}
.ws3c_c00038{word-spacing:0.098743pt;}
.ws1b_c00038{word-spacing:0.354768pt;}
.ws3d_c00038{word-spacing:0.540489pt;}
.ws3b_c00038{word-spacing:0.571671pt;}
.ws3e_c00038{word-spacing:0.639233pt;}
.ws2f_c00038{word-spacing:0.958496pt;}
.ws31_c00038{word-spacing:1.569498pt;}
.ws30_c00038{word-spacing:1.605877pt;}
.wsc_c00038{word-spacing:1.916992pt;}
.ws37_c00038{word-spacing:1.985259pt;}
.ws13_c00038{word-spacing:2.228192pt;}
.ws12_c00038{word-spacing:2.240640pt;}
.ws36_c00038{word-spacing:2.250307pt;}
.ws23_c00038{word-spacing:3.205360pt;}
.wsf_c00038{word-spacing:3.504112pt;}
.ws10_c00038{word-spacing:3.510336pt;}
.ws1f_c00038{word-spacing:3.516560pt;}
.ws2e_c00038{word-spacing:3.529008pt;}
.ws24_c00038{word-spacing:3.535232pt;}
.ws1e_c00038{word-spacing:3.541456pt;}
.ws20_c00038{word-spacing:3.815312pt;}
.ws1c_c00038{word-spacing:4.132736pt;}
.ws1d_c00038{word-spacing:4.176304pt;}
.ws28_c00038{word-spacing:5.744752pt;}
.ws29_c00038{word-spacing:5.757200pt;}
.ws27_c00038{word-spacing:5.763424pt;}
.ws21_c00038{word-spacing:5.769648pt;}
.ws18_c00038{word-spacing:6.416944pt;}
.ws17_c00038{word-spacing:6.448064pt;}
.wsa_c00038{word-spacing:6.697024pt;}
.ws2d_c00038{word-spacing:7.991616pt;}
.wse_c00038{word-spacing:8.215680pt;}
.wsd_c00038{word-spacing:8.309040pt;}
.ws22_c00038{word-spacing:8.968784pt;}
.ws2b_c00038{word-spacing:10.194912pt;}
.ws26_c00038{word-spacing:10.226032pt;}
.ws25_c00038{word-spacing:10.599472pt;}
.ws11_c00038{word-spacing:11.838048pt;}
.ws15_c00038{word-spacing:12.466672pt;}
.ws16_c00038{word-spacing:12.584928pt;}
.ws2c_c00038{word-spacing:12.790320pt;}
.ws2a_c00038{word-spacing:13.779936pt;}
.wsb_c00038{word-spacing:15.055856pt;}
.ws34_c00038{word-spacing:15.112915pt;}
.ws33_c00038{word-spacing:15.476706pt;}
.ws32_c00038{word-spacing:16.318622pt;}
.ws14_c00038{word-spacing:20.819280pt;}
.ws19_c00038{word-spacing:32.010032pt;}
.ws1a_c00038{word-spacing:32.321232pt;}
.ws39_c00038{word-spacing:42.329674pt;}
.ws3a_c00038{word-spacing:42.360856pt;}
.ws38_c00038{word-spacing:42.584327pt;}
._3_c00038{margin-left:-2.407440pt;}
._0_c00038{margin-left:-1.002064pt;}
._1_c00038{width:1.051856pt;}
._2_c00038{width:5.271728pt;}
.fs2_c00038{font-size:33.608533pt;}
.fs1_c00038{font-size:41.388800pt;}
.fs3_c00038{font-size:51.970133pt;}
.fs0_c00038{font-size:62.240000pt;}
.y0_c00038{bottom:0.000000pt;}
.y2_c00038{bottom:97.547527pt;}
.y1_c00038{bottom:115.387067pt;}
.y25_c00038{bottom:132.826265pt;}
.y24_c00038{bottom:148.666762pt;}
.y23_c00038{bottom:167.947067pt;}
.y22_c00038{bottom:180.506265pt;}
.y21_c00038{bottom:196.506570pt;}
.y20_c00038{bottom:215.627067pt;}
.y1f_c00038{bottom:228.663995pt;}
.y1e_c00038{bottom:262.424527pt;}
.y1d_c00038{bottom:289.304427pt;}
.y1c_c00038{bottom:316.104971pt;}
.y1b_c00038{bottom:342.984871pt;}
.y1a_c00038{bottom:369.785415pt;}
.y19_c00038{bottom:396.665315pt;}
.y18_c00038{bottom:423.465859pt;}
.y17_c00038{bottom:450.345759pt;}
.y16_c00038{bottom:477.146303pt;}
.y15_c00038{bottom:504.026203pt;}
.y14_c00038{bottom:530.745835pt;}
.y13_c00038{bottom:557.625735pt;}
.y12_c00038{bottom:584.426279pt;}
.y11_c00038{bottom:611.306179pt;}
.y10_c00038{bottom:638.106723pt;}
.yf_c00038{bottom:664.986623pt;}
.ye_c00038{bottom:691.787167pt;}
.yd_c00038{bottom:718.665835pt;}
.yc_c00038{bottom:745.466379pt;}
.yb_c00038{bottom:772.346279pt;}
.ya_c00038{bottom:799.146823pt;}
.y9_c00038{bottom:826.026723pt;}
.y8_c00038{bottom:852.906623pt;}
.y7_c00038{bottom:879.707167pt;}
.y6_c00038{bottom:906.586615pt;}
.y5_c00038{bottom:933.387159pt;}
.y4_c00038{bottom:960.267059pt;}
.y3_c00038{bottom:987.067603pt;}
.h6_c00038{height:34.967599pt;}
.h7_c00038{height:48.087599pt;}
.h3_c00038{height:55.645234pt;}
.h1_c00038{height:55.797187pt;}
.h5_c00038{height:55.809475pt;}
.h2_c00038{height:65.485174pt;}
.h4_c00038{height:65.488294pt;}
.h0_c00038{height:1122.666667pt;}
.w0_c00038{width:793.333333pt;}
.x0_c00038{left:0.000000pt;}
.x2_c00038{left:73.519684pt;}
.x1_c00038{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_298d0f3c2bfb11e47cf156ad.woff2')format("woff");}.ff1_c00039{font-family:ff1_c00039;line-height:1.106934;font-style:normal;font-weight:normal;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_751ab40e8dba0b1efcd54fc2.woff2')format("woff");}.ff2_c00039{font-family:ff2_c00039;line-height:1.104492;font-style:normal;font-weight:normal;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_1272bc55e778d84e6ca058f9.woff2')format("woff");}.ff3_c00039{font-family:ff3_c00039;line-height:1.133301;font-style:normal;font-weight:normal;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_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff4_c00039{font-family:ff4_c00039;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00039;src:url('chunks/assets/font_5cff60faf8990462d9b3cab6.woff2')format("woff");}.ff5_c00039{font-family:ff5_c00039;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00039;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff6_c00039{font-family:ff6_c00039;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00039{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00039{vertical-align:-14.760000px;}
.v0_c00039{vertical-align:0.000000px;}
.v1_c00039{vertical-align:32.405130px;}
.ls12_c00039{letter-spacing:-0.111086px;}
.ls14_c00039{letter-spacing:-0.087700px;}
.lsf_c00039{letter-spacing:-0.075619px;}
.lse_c00039{letter-spacing:-0.070020px;}
.ls3_c00039{letter-spacing:-0.063018px;}
.ls9_c00039{letter-spacing:-0.056016px;}
.ls11_c00039{letter-spacing:-0.052620px;}
.lsd_c00039{letter-spacing:-0.049014px;}
.ls8_c00039{letter-spacing:-0.042012px;}
.ls10_c00039{letter-spacing:-0.035080px;}
.lsb_c00039{letter-spacing:-0.035010px;}
.ls7_c00039{letter-spacing:-0.028008px;}
.lsc_c00039{letter-spacing:-0.021006px;}
.ls5_c00039{letter-spacing:-0.014004px;}
.ls6_c00039{letter-spacing:-0.007002px;}
.ls4_c00039{letter-spacing:0.000000px;}
.ls0_c00039{letter-spacing:0.007002px;}
.ls2_c00039{letter-spacing:0.011693px;}
.lsa_c00039{letter-spacing:0.023281px;}
.ls15_c00039{letter-spacing:0.035080px;}
.ls1_c00039{letter-spacing:0.042012px;}
.ls13_c00039{letter-spacing:0.344952px;}
.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;}
}
.ws2_c00039{word-spacing:-58.466400px;}
.ws0_c00039{word-spacing:-12.967628px;}
.ws1_c00039{word-spacing:-10.397640px;}
.ws33_c00039{word-spacing:-0.023387px;}
.ws3_c00039{word-spacing:0.000000px;}
.ws31_c00039{word-spacing:0.011693px;}
.ws32_c00039{word-spacing:0.099393px;}
.ws19_c00039{word-spacing:0.350100px;}
.ws10_c00039{word-spacing:0.399114px;}
.ws1f_c00039{word-spacing:1.071306px;}
.ws2a_c00039{word-spacing:1.092312px;}
.wsf_c00039{word-spacing:1.428408px;}
.ws1d_c00039{word-spacing:1.435410px;}
.ws1e_c00039{word-spacing:1.456416px;}
.ws11_c00039{word-spacing:1.785510px;}
.ws6_c00039{word-spacing:2.170620px;}
.ws4_c00039{word-spacing:3.241926px;}
.ws2b_c00039{word-spacing:3.248928px;}
.ws13_c00039{word-spacing:3.262932px;}
.wsa_c00039{word-spacing:3.269934px;}
.wsb_c00039{word-spacing:3.283938px;}
.ws16_c00039{word-spacing:3.585024px;}
.ws17_c00039{word-spacing:3.606030px;}
.ws18_c00039{word-spacing:3.613032px;}
.wsd_c00039{word-spacing:5.748642px;}
.ws28_c00039{word-spacing:6.098742px;}
.wse_c00039{word-spacing:6.119748px;}
.ws29_c00039{word-spacing:6.133752px;}
.ws20_c00039{word-spacing:7.198056px;}
.ws21_c00039{word-spacing:7.233066px;}
.ws15_c00039{word-spacing:7.506144px;}
.ws7_c00039{word-spacing:7.541154px;}
.ws8_c00039{word-spacing:7.548156px;}
.ws14_c00039{word-spacing:7.555158px;}
.ws23_c00039{word-spacing:7.926264px;}
.wsc_c00039{word-spacing:10.096884px;}
.ws9_c00039{word-spacing:10.432980px;}
.ws5_c00039{word-spacing:10.790082px;}
.ws24_c00039{word-spacing:11.189196px;}
.ws26_c00039{word-spacing:11.567304px;}
.ws25_c00039{word-spacing:11.574306px;}
.ws2f_c00039{word-spacing:13.347879px;}
.ws2c_c00039{word-spacing:13.727911px;}
.ws30_c00039{word-spacing:14.043629px;}
.ws2d_c00039{word-spacing:14.107942px;}
.ws2e_c00039{word-spacing:14.166409px;}
.ws27_c00039{word-spacing:15.131322px;}
.ws1c_c00039{word-spacing:18.723348px;}
.ws1b_c00039{word-spacing:18.765360px;}
.ws22_c00039{word-spacing:19.829664px;}
.ws12_c00039{word-spacing:38.861100px;}
.ws1a_c00039{word-spacing:50.743494px;}
._2_c00039{margin-left:-50.750496px;}
._4_c00039{margin-left:-2.709180px;}
._1_c00039{margin-left:-1.281366px;}
._0_c00039{width:1.141326px;}
._3_c00039{width:5.930694px;}
.fc0_c00039{color:rgb(0,0,0);}
.fs2_c00039{font-size:37.809600px;}
.fs1_c00039{font-size:46.562400px;}
.fs3_c00039{font-size:58.466400px;}
.fs0_c00039{font-size:70.020000px;}
.y0_c00039{bottom:0.000000px;}
.y2_c00039{bottom:109.740968px;}
.y1_c00039{bottom:129.810450px;}
.y22_c00039{bottom:149.429891px;}
.y21_c00039{bottom:170.940450px;}
.y20_c00039{bottom:185.696445px;}
.y1f_c00039{bottom:265.076369px;}
.y1e_c00039{bottom:295.226981px;}
.y1d_c00039{bottom:325.466868px;}
.y1c_c00039{bottom:355.617480px;}
.y1b_c00039{bottom:385.857368px;}
.y1a_c00039{bottom:416.007980px;}
.y19_c00039{bottom:446.247867px;}
.y18_c00039{bottom:476.398479px;}
.y17_c00039{bottom:506.638367px;}
.y16_c00039{bottom:536.788978px;}
.y15_c00039{bottom:567.028866px;}
.y14_c00039{bottom:597.088452px;}
.y13_c00039{bottom:627.328340px;}
.y12_c00039{bottom:657.478952px;}
.y11_c00039{bottom:687.718839px;}
.y10_c00039{bottom:717.869451px;}
.yf_c00039{bottom:748.109339px;}
.ye_c00039{bottom:778.259951px;}
.yd_c00039{bottom:808.499838px;}
.yc_c00039{bottom:838.649168px;}
.yb_c00039{bottom:868.889055px;}
.ya_c00039{bottom:899.039667px;}
.y9_c00039{bottom:929.279555px;}
.y8_c00039{bottom:959.519442px;}
.y7_c00039{bottom:989.670054px;}
.y6_c00039{bottom:1019.909942px;}
.y5_c00039{bottom:1050.060553px;}
.y4_c00039{bottom:1080.300441px;}
.y3_c00039{bottom:1110.451053px;}
.h5_c00039{height:39.338549px;}
.h6_c00039{height:54.098549px;}
.h2_c00039{height:62.600889px;}
.h1_c00039{height:62.771836px;}
.h4_c00039{height:62.788456px;}
.h3_c00039{height:74.033916px;}
.h0_c00039{height:1263.000000px;}
.w0_c00039{width:892.500000px;}
.x0_c00039{left:0.000000px;}
.x2_c00039{left:82.709645px;}
.x1_c00039{left:436.680000px;}
@media print{
.v2_c00039{vertical-align:-13.120000pt;}
.v0_c00039{vertical-align:0.000000pt;}
.v1_c00039{vertical-align:28.804560pt;}
.ls12_c00039{letter-spacing:-0.098743pt;}
.ls14_c00039{letter-spacing:-0.077955pt;}
.lsf_c00039{letter-spacing:-0.067217pt;}
.lse_c00039{letter-spacing:-0.062240pt;}
.ls3_c00039{letter-spacing:-0.056016pt;}
.ls9_c00039{letter-spacing:-0.049792pt;}
.ls11_c00039{letter-spacing:-0.046773pt;}
.lsd_c00039{letter-spacing:-0.043568pt;}
.ls8_c00039{letter-spacing:-0.037344pt;}
.ls10_c00039{letter-spacing:-0.031182pt;}
.lsb_c00039{letter-spacing:-0.031120pt;}
.ls7_c00039{letter-spacing:-0.024896pt;}
.lsc_c00039{letter-spacing:-0.018672pt;}
.ls5_c00039{letter-spacing:-0.012448pt;}
.ls6_c00039{letter-spacing:-0.006224pt;}
.ls4_c00039{letter-spacing:0.000000pt;}
.ls0_c00039{letter-spacing:0.006224pt;}
.ls2_c00039{letter-spacing:0.010394pt;}
.lsa_c00039{letter-spacing:0.020694pt;}
.ls15_c00039{letter-spacing:0.031182pt;}
.ls1_c00039{letter-spacing:0.037344pt;}
.ls13_c00039{letter-spacing:0.306624pt;}
.ws2_c00039{word-spacing:-51.970133pt;}
.ws0_c00039{word-spacing:-11.526781pt;}
.ws1_c00039{word-spacing:-9.242347pt;}
.ws33_c00039{word-spacing:-0.020788pt;}
.ws3_c00039{word-spacing:0.000000pt;}
.ws31_c00039{word-spacing:0.010394pt;}
.ws32_c00039{word-spacing:0.088349pt;}
.ws19_c00039{word-spacing:0.311200pt;}
.ws10_c00039{word-spacing:0.354768pt;}
.ws1f_c00039{word-spacing:0.952272pt;}
.ws2a_c00039{word-spacing:0.970944pt;}
.wsf_c00039{word-spacing:1.269696pt;}
.ws1d_c00039{word-spacing:1.275920pt;}
.ws1e_c00039{word-spacing:1.294592pt;}
.ws11_c00039{word-spacing:1.587120pt;}
.ws6_c00039{word-spacing:1.929440pt;}
.ws4_c00039{word-spacing:2.881712pt;}
.ws2b_c00039{word-spacing:2.887936pt;}
.ws13_c00039{word-spacing:2.900384pt;}
.wsa_c00039{word-spacing:2.906608pt;}
.wsb_c00039{word-spacing:2.919056pt;}
.ws16_c00039{word-spacing:3.186688pt;}
.ws17_c00039{word-spacing:3.205360pt;}
.ws18_c00039{word-spacing:3.211584pt;}
.wsd_c00039{word-spacing:5.109904pt;}
.ws28_c00039{word-spacing:5.421104pt;}
.wse_c00039{word-spacing:5.439776pt;}
.ws29_c00039{word-spacing:5.452224pt;}
.ws20_c00039{word-spacing:6.398272pt;}
.ws21_c00039{word-spacing:6.429392pt;}
.ws15_c00039{word-spacing:6.672128pt;}
.ws7_c00039{word-spacing:6.703248pt;}
.ws8_c00039{word-spacing:6.709472pt;}
.ws14_c00039{word-spacing:6.715696pt;}
.ws23_c00039{word-spacing:7.045568pt;}
.wsc_c00039{word-spacing:8.975008pt;}
.ws9_c00039{word-spacing:9.273760pt;}
.ws5_c00039{word-spacing:9.591184pt;}
.ws24_c00039{word-spacing:9.945952pt;}
.ws26_c00039{word-spacing:10.282048pt;}
.ws25_c00039{word-spacing:10.288272pt;}
.ws2f_c00039{word-spacing:11.864781pt;}
.ws2c_c00039{word-spacing:12.202587pt;}
.ws30_c00039{word-spacing:12.483226pt;}
.ws2d_c00039{word-spacing:12.540393pt;}
.ws2e_c00039{word-spacing:12.592363pt;}
.ws27_c00039{word-spacing:13.450064pt;}
.ws1c_c00039{word-spacing:16.642976pt;}
.ws1b_c00039{word-spacing:16.680320pt;}
.ws22_c00039{word-spacing:17.626368pt;}
.ws12_c00039{word-spacing:34.543200pt;}
.ws1a_c00039{word-spacing:45.105328pt;}
._2_c00039{margin-left:-45.111552pt;}
._4_c00039{margin-left:-2.408160pt;}
._1_c00039{margin-left:-1.138992pt;}
._0_c00039{width:1.014512pt;}
._3_c00039{width:5.271728pt;}
.fs2_c00039{font-size:33.608533pt;}
.fs1_c00039{font-size:41.388800pt;}
.fs3_c00039{font-size:51.970133pt;}
.fs0_c00039{font-size:62.240000pt;}
.y0_c00039{bottom:0.000000pt;}
.y2_c00039{bottom:97.547527pt;}
.y1_c00039{bottom:115.387067pt;}
.y22_c00039{bottom:132.826570pt;}
.y21_c00039{bottom:151.947067pt;}
.y20_c00039{bottom:165.063507pt;}
.y1f_c00039{bottom:235.623439pt;}
.y1e_c00039{bottom:262.423983pt;}
.y1d_c00039{bottom:289.303883pt;}
.y1c_c00039{bottom:316.104427pt;}
.y1b_c00039{bottom:342.984327pt;}
.y1a_c00039{bottom:369.784871pt;}
.y19_c00039{bottom:396.664771pt;}
.y18_c00039{bottom:423.465315pt;}
.y17_c00039{bottom:450.345215pt;}
.y16_c00039{bottom:477.145759pt;}
.y15_c00039{bottom:504.025659pt;}
.y14_c00039{bottom:530.745291pt;}
.y13_c00039{bottom:557.625191pt;}
.y12_c00039{bottom:584.425735pt;}
.y11_c00039{bottom:611.305635pt;}
.y10_c00039{bottom:638.106179pt;}
.yf_c00039{bottom:664.986079pt;}
.ye_c00039{bottom:691.786623pt;}
.yd_c00039{bottom:718.666523pt;}
.yc_c00039{bottom:745.465927pt;}
.yb_c00039{bottom:772.345827pt;}
.ya_c00039{bottom:799.146371pt;}
.y9_c00039{bottom:826.026271pt;}
.y8_c00039{bottom:852.906171pt;}
.y7_c00039{bottom:879.706715pt;}
.y6_c00039{bottom:906.586615pt;}
.y5_c00039{bottom:933.387159pt;}
.y4_c00039{bottom:960.267059pt;}
.y3_c00039{bottom:987.067603pt;}
.h5_c00039{height:34.967599pt;}
.h6_c00039{height:48.087599pt;}
.h2_c00039{height:55.645234pt;}
.h1_c00039{height:55.797187pt;}
.h4_c00039{height:55.811961pt;}
.h3_c00039{height:65.807926pt;}
.h0_c00039{height:1122.666667pt;}
.w0_c00039{width:793.333333pt;}
.x0_c00039{left:0.000000pt;}
.x2_c00039{left:73.519684pt;}
.x1_c00039{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7d838861992f07713ffa25c4.woff2')format("woff");}.ff1_c00040{font-family:ff1_c00040;line-height:1.106934;font-style:normal;font-weight:normal;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_9f9f6a91a2b5de2119ded926.woff2')format("woff");}.ff2_c00040{font-family:ff2_c00040;line-height:1.133301;font-style:normal;font-weight:normal;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_34375302a37e77daa6f820ff.woff2')format("woff");}.ff3_c00040{font-family:ff3_c00040;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00040{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00040{vertical-align:-14.760000px;}
.v0_c00040{vertical-align:0.000000px;}
.v1_c00040{vertical-align:32.407728px;}
.ls1a_c00040{letter-spacing:-0.385878px;}
.ls18_c00040{letter-spacing:-0.344952px;}
.ls1b_c00040{letter-spacing:-0.327412px;}
.ls24_c00040{letter-spacing:-0.298179px;}
.ls1f_c00040{letter-spacing:-0.263099px;}
.ls22_c00040{letter-spacing:-0.210479px;}
.ls16_c00040{letter-spacing:-0.140319px;}
.ls17_c00040{letter-spacing:-0.105240px;}
.ls21_c00040{letter-spacing:-0.099393px;}
.ls25_c00040{letter-spacing:-0.087700px;}
.ls10_c00040{letter-spacing:-0.081853px;}
.lsf_c00040{letter-spacing:-0.075619px;}
.ls6_c00040{letter-spacing:-0.063018px;}
.ls13_c00040{letter-spacing:-0.058466px;}
.ls23_c00040{letter-spacing:-0.052620px;}
.ls15_c00040{letter-spacing:-0.046773px;}
.ls8_c00040{letter-spacing:-0.042012px;}
.ls12_c00040{letter-spacing:-0.035080px;}
.lsa_c00040{letter-spacing:-0.035010px;}
.ls14_c00040{letter-spacing:-0.029233px;}
.ls9_c00040{letter-spacing:-0.028008px;}
.lsc_c00040{letter-spacing:-0.021006px;}
.lsb_c00040{letter-spacing:-0.014004px;}
.ls20_c00040{letter-spacing:-0.011693px;}
.lsd_c00040{letter-spacing:-0.007002px;}
.ls1e_c00040{letter-spacing:-0.005847px;}
.ls7_c00040{letter-spacing:0.000000px;}
.ls1d_c00040{letter-spacing:0.005847px;}
.ls1_c00040{letter-spacing:0.007002px;}
.ls3_c00040{letter-spacing:0.014004px;}
.lse_c00040{letter-spacing:0.023281px;}
.ls4_c00040{letter-spacing:0.023387px;}
.ls0_c00040{letter-spacing:0.035010px;}
.ls2_c00040{letter-spacing:0.056016px;}
.ls11_c00040{letter-spacing:0.058466px;}
.ls19_c00040{letter-spacing:0.105240px;}
.ls5_c00040{letter-spacing:0.210479px;}
.ls1c_c00040{letter-spacing:0.491118px;}
.sc__c00040{text-shadow:none;}
.sc0_c00040{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00040{-webkit-text-stroke:0px transparent;}
.sc0_c00040{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00040{word-spacing:-16.142573px;}
.ws0_c00040{word-spacing:-12.967628px;}
.ws1_c00040{word-spacing:-10.397640px;}
.ws32_c00040{word-spacing:-0.257252px;}
.ws1a_c00040{word-spacing:-0.014004px;}
.ws3_c00040{word-spacing:0.000000px;}
.ws6_c00040{word-spacing:0.021006px;}
.ws2d_c00040{word-spacing:0.111086px;}
.ws31_c00040{word-spacing:0.309872px;}
.ws27_c00040{word-spacing:0.339105px;}
.wsa_c00040{word-spacing:0.364104px;}
.ws13_c00040{word-spacing:1.085310px;}
.ws25_c00040{word-spacing:2.321116px;}
.ws24_c00040{word-spacing:2.426356px;}
.ws9_c00040{word-spacing:2.513718px;}
.ws1b_c00040{word-spacing:2.975940px;}
.ws1c_c00040{word-spacing:3.192265px;}
.ws1f_c00040{word-spacing:5.829100px;}
.ws2a_c00040{word-spacing:7.220600px;}
.ws2c_c00040{word-spacing:7.226447px;}
.ws2b_c00040{word-spacing:7.477853px;}
.wsc_c00040{word-spacing:7.870248px;}
.wsb_c00040{word-spacing:7.926264px;}
.ws1e_c00040{word-spacing:8.325615px;}
.ws10_c00040{word-spacing:8.570448px;}
.ws11_c00040{word-spacing:8.640468px;}
.ws17_c00040{word-spacing:8.969562px;}
.ws18_c00040{word-spacing:8.983566px;}
.ws28_c00040{word-spacing:9.600183px;}
.ws29_c00040{word-spacing:10.085454px;}
.wse_c00040{word-spacing:10.418976px;}
.wsf_c00040{word-spacing:10.453986px;}
.ws23_c00040{word-spacing:11.149542px;}
.ws22_c00040{word-spacing:11.278169px;}
.ws14_c00040{word-spacing:11.868390px;}
.ws15_c00040{word-spacing:11.889396px;}
.ws21_c00040{word-spacing:12.301331px;}
.ws16_c00040{word-spacing:12.932694px;}
.ws30_c00040{word-spacing:13.371266px;}
.ws2f_c00040{word-spacing:13.546665px;}
.ws20_c00040{word-spacing:14.084556px;}
.ws1d_c00040{word-spacing:14.751073px;}
.ws12_c00040{word-spacing:15.831522px;}
.wsd_c00040{word-spacing:16.923834px;}
.ws26_c00040{word-spacing:18.060271px;}
.ws5_c00040{word-spacing:18.373248px;}
.ws4_c00040{word-spacing:18.387252px;}
.ws19_c00040{word-spacing:20.508858px;}
.ws2e_c00040{word-spacing:21.299310px;}
.ws7_c00040{word-spacing:21.958272px;}
.ws8_c00040{word-spacing:22.329378px;}
._3_c00040{margin-left:-2.706444px;}
._1_c00040{margin-left:-1.162332px;}
._0_c00040{width:1.127322px;}
._5_c00040{width:3.077492px;}
._2_c00040{width:5.930694px;}
._4_c00040{width:10.817364px;}
.fc0_c00040{color:rgb(0,0,0);}
.fs2_c00040{font-size:37.809600px;}
.fs1_c00040{font-size:46.562400px;}
.fs3_c00040{font-size:58.466400px;}
.fs0_c00040{font-size:70.020000px;}
.y0_c00040{bottom:0.000000px;}
.y2_c00040{bottom:109.740968px;}
.y1_c00040{bottom:129.810450px;}
.y29_c00040{bottom:149.427190px;}
.y28_c00040{bottom:167.247749px;}
.y27_c00040{bottom:185.248092px;}
.y26_c00040{bottom:203.068651px;}
.y25_c00040{bottom:221.068994px;}
.y24_c00040{bottom:238.889552px;}
.y23_c00040{bottom:256.710111px;}
.y22_c00040{bottom:274.619831px;}
.y21_c00040{bottom:292.529551px;}
.y20_c00040{bottom:310.350110px;}
.y1f_c00040{bottom:328.350453px;}
.y1e_c00040{bottom:346.171011px;}
.y1d_c00040{bottom:364.080731px;}
.y1c_c00040{bottom:381.990451px;}
.y1b_c00040{bottom:399.811010px;}
.y1a_c00040{bottom:417.720730px;}
.y19_c00040{bottom:439.320450px;}
.y18_c00040{bottom:453.989077px;}
.y17_c00040{bottom:506.638866px;}
.y16_c00040{bottom:536.789478px;}
.y15_c00040{bottom:567.029365px;}
.y14_c00040{bottom:597.088951px;}
.y13_c00040{bottom:627.328839px;}
.y12_c00040{bottom:657.479451px;}
.y11_c00040{bottom:687.719338px;}
.y10_c00040{bottom:717.869950px;}
.yf_c00040{bottom:748.109838px;}
.ye_c00040{bottom:778.258668px;}
.yd_c00040{bottom:808.498556px;}
.yc_c00040{bottom:838.649168px;}
.yb_c00040{bottom:868.889055px;}
.ya_c00040{bottom:899.039667px;}
.y9_c00040{bottom:929.279555px;}
.y8_c00040{bottom:959.519442px;}
.y7_c00040{bottom:989.670054px;}
.y6_c00040{bottom:1019.909942px;}
.y5_c00040{bottom:1050.060553px;}
.y4_c00040{bottom:1080.300441px;}
.y3_c00040{bottom:1110.451053px;}
.h4_c00040{height:39.338549px;}
.h5_c00040{height:54.098549px;}
.h1_c00040{height:62.771836px;}
.h3_c00040{height:62.777326px;}
.h2_c00040{height:74.150192px;}
.h0_c00040{height:1263.000000px;}
.w0_c00040{width:892.500000px;}
.x0_c00040{left:0.000000px;}
.x2_c00040{left:82.709645px;}
.x1_c00040{left:436.680000px;}
@media print{
.v2_c00040{vertical-align:-13.120000pt;}
.v0_c00040{vertical-align:0.000000pt;}
.v1_c00040{vertical-align:28.806869pt;}
.ls1a_c00040{letter-spacing:-0.343003pt;}
.ls18_c00040{letter-spacing:-0.306624pt;}
.ls1b_c00040{letter-spacing:-0.291033pt;}
.ls24_c00040{letter-spacing:-0.265048pt;}
.ls1f_c00040{letter-spacing:-0.233866pt;}
.ls22_c00040{letter-spacing:-0.187092pt;}
.ls16_c00040{letter-spacing:-0.124728pt;}
.ls17_c00040{letter-spacing:-0.093546pt;}
.ls21_c00040{letter-spacing:-0.088349pt;}
.ls25_c00040{letter-spacing:-0.077955pt;}
.ls10_c00040{letter-spacing:-0.072758pt;}
.lsf_c00040{letter-spacing:-0.067217pt;}
.ls6_c00040{letter-spacing:-0.056016pt;}
.ls13_c00040{letter-spacing:-0.051970pt;}
.ls23_c00040{letter-spacing:-0.046773pt;}
.ls15_c00040{letter-spacing:-0.041576pt;}
.ls8_c00040{letter-spacing:-0.037344pt;}
.ls12_c00040{letter-spacing:-0.031182pt;}
.lsa_c00040{letter-spacing:-0.031120pt;}
.ls14_c00040{letter-spacing:-0.025985pt;}
.ls9_c00040{letter-spacing:-0.024896pt;}
.lsc_c00040{letter-spacing:-0.018672pt;}
.lsb_c00040{letter-spacing:-0.012448pt;}
.ls20_c00040{letter-spacing:-0.010394pt;}
.lsd_c00040{letter-spacing:-0.006224pt;}
.ls1e_c00040{letter-spacing:-0.005197pt;}
.ls7_c00040{letter-spacing:0.000000pt;}
.ls1d_c00040{letter-spacing:0.005197pt;}
.ls1_c00040{letter-spacing:0.006224pt;}
.ls3_c00040{letter-spacing:0.012448pt;}
.lse_c00040{letter-spacing:0.020694pt;}
.ls4_c00040{letter-spacing:0.020788pt;}
.ls0_c00040{letter-spacing:0.031120pt;}
.ls2_c00040{letter-spacing:0.049792pt;}
.ls11_c00040{letter-spacing:0.051970pt;}
.ls19_c00040{letter-spacing:0.093546pt;}
.ls5_c00040{letter-spacing:0.187092pt;}
.ls1c_c00040{letter-spacing:0.436549pt;}
.ws2_c00040{word-spacing:-14.348954pt;}
.ws0_c00040{word-spacing:-11.526781pt;}
.ws1_c00040{word-spacing:-9.242347pt;}
.ws32_c00040{word-spacing:-0.228669pt;}
.ws1a_c00040{word-spacing:-0.012448pt;}
.ws3_c00040{word-spacing:0.000000pt;}
.ws6_c00040{word-spacing:0.018672pt;}
.ws2d_c00040{word-spacing:0.098743pt;}
.ws31_c00040{word-spacing:0.275442pt;}
.ws27_c00040{word-spacing:0.301427pt;}
.wsa_c00040{word-spacing:0.323648pt;}
.ws13_c00040{word-spacing:0.964720pt;}
.ws25_c00040{word-spacing:2.063214pt;}
.ws24_c00040{word-spacing:2.156761pt;}
.ws9_c00040{word-spacing:2.234416pt;}
.ws1b_c00040{word-spacing:2.645280pt;}
.ws1c_c00040{word-spacing:2.837569pt;}
.ws1f_c00040{word-spacing:5.181422pt;}
.ws2a_c00040{word-spacing:6.418311pt;}
.ws2c_c00040{word-spacing:6.423508pt;}
.ws2b_c00040{word-spacing:6.646980pt;}
.wsc_c00040{word-spacing:6.995776pt;}
.wsb_c00040{word-spacing:7.045568pt;}
.ws1e_c00040{word-spacing:7.400547pt;}
.ws10_c00040{word-spacing:7.618176pt;}
.ws11_c00040{word-spacing:7.680416pt;}
.ws17_c00040{word-spacing:7.972944pt;}
.ws18_c00040{word-spacing:7.985392pt;}
.ws28_c00040{word-spacing:8.533496pt;}
.ws29_c00040{word-spacing:8.964848pt;}
.wse_c00040{word-spacing:9.261312pt;}
.wsf_c00040{word-spacing:9.292432pt;}
.ws23_c00040{word-spacing:9.910704pt;}
.ws22_c00040{word-spacing:10.025039pt;}
.ws14_c00040{word-spacing:10.549680pt;}
.ws15_c00040{word-spacing:10.568352pt;}
.ws21_c00040{word-spacing:10.934516pt;}
.ws16_c00040{word-spacing:11.495728pt;}
.ws30_c00040{word-spacing:11.885569pt;}
.ws2f_c00040{word-spacing:12.041480pt;}
.ws20_c00040{word-spacing:12.519605pt;}
.ws1d_c00040{word-spacing:13.112065pt;}
.ws12_c00040{word-spacing:14.072464pt;}
.wsd_c00040{word-spacing:15.043408pt;}
.ws26_c00040{word-spacing:16.053574pt;}
.ws5_c00040{word-spacing:16.331776pt;}
.ws4_c00040{word-spacing:16.344224pt;}
.ws19_c00040{word-spacing:18.230096pt;}
.ws2e_c00040{word-spacing:18.932720pt;}
.ws7_c00040{word-spacing:19.518464pt;}
.ws8_c00040{word-spacing:19.848336pt;}
._3_c00040{margin-left:-2.405728pt;}
._1_c00040{margin-left:-1.033184pt;}
._0_c00040{width:1.002064pt;}
._5_c00040{width:2.735548pt;}
._2_c00040{width:5.271728pt;}
._4_c00040{width:9.615434pt;}
.fs2_c00040{font-size:33.608533pt;}
.fs1_c00040{font-size:41.388800pt;}
.fs3_c00040{font-size:51.970133pt;}
.fs0_c00040{font-size:62.240000pt;}
.y0_c00040{bottom:0.000000pt;}
.y2_c00040{bottom:97.547527pt;}
.y1_c00040{bottom:115.387067pt;}
.y29_c00040{bottom:132.824169pt;}
.y28_c00040{bottom:148.664666pt;}
.y27_c00040{bottom:164.664971pt;}
.y26_c00040{bottom:180.505467pt;}
.y25_c00040{bottom:196.505772pt;}
.y24_c00040{bottom:212.346269pt;}
.y23_c00040{bottom:228.186765pt;}
.y22_c00040{bottom:244.106516pt;}
.y21_c00040{bottom:260.026268pt;}
.y20_c00040{bottom:275.866764pt;}
.y1f_c00040{bottom:291.867069pt;}
.y1e_c00040{bottom:307.707566pt;}
.y1d_c00040{bottom:323.627317pt;}
.y1c_c00040{bottom:339.547068pt;}
.y1b_c00040{bottom:355.387564pt;}
.y1a_c00040{bottom:371.307316pt;}
.y19_c00040{bottom:390.507067pt;}
.y18_c00040{bottom:403.545847pt;}
.y17_c00040{bottom:450.345659pt;}
.y16_c00040{bottom:477.146203pt;}
.y15_c00040{bottom:504.026103pt;}
.y14_c00040{bottom:530.745735pt;}
.y13_c00040{bottom:557.625635pt;}
.y12_c00040{bottom:584.426179pt;}
.y11_c00040{bottom:611.306079pt;}
.y10_c00040{bottom:638.106623pt;}
.yf_c00040{bottom:664.986523pt;}
.ye_c00040{bottom:691.785483pt;}
.yd_c00040{bottom:718.665383pt;}
.yc_c00040{bottom:745.465927pt;}
.yb_c00040{bottom:772.345827pt;}
.ya_c00040{bottom:799.146371pt;}
.y9_c00040{bottom:826.026271pt;}
.y8_c00040{bottom:852.906171pt;}
.y7_c00040{bottom:879.706715pt;}
.y6_c00040{bottom:906.586615pt;}
.y5_c00040{bottom:933.387159pt;}
.y4_c00040{bottom:960.267059pt;}
.y3_c00040{bottom:987.067603pt;}
.h4_c00040{height:34.967599pt;}
.h5_c00040{height:48.087599pt;}
.h1_c00040{height:55.797187pt;}
.h3_c00040{height:55.802068pt;}
.h2_c00040{height:65.911282pt;}
.h0_c00040{height:1122.666667pt;}
.w0_c00040{width:793.333333pt;}
.x0_c00040{left:0.000000pt;}
.x2_c00040{left:73.519684pt;}
.x1_c00040{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_367e2712d1d6a5631eaec851.woff2')format("woff");}.ff1_c00041{font-family:ff1_c00041;line-height:1.106934;font-style:normal;font-weight:normal;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_115bf162eb00d89a8199ac94.woff2')format("woff");}.ff2_c00041{font-family:ff2_c00041;line-height:1.133301;font-style:normal;font-weight:normal;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_b3e3737de8ceb4573fdb6a70.woff2')format("woff");}.ff3_c00041{font-family:ff3_c00041;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00041{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00041{vertical-align:-14.760000px;}
.v0_c00041{vertical-align:0.000000px;}
.v1_c00041{vertical-align:32.042034px;}
.ls2c_c00041{letter-spacing:-0.707443px;}
.ls28_c00041{letter-spacing:-0.648977px;}
.ls2b_c00041{letter-spacing:-0.625590px;}
.ls1d_c00041{letter-spacing:-0.374185px;}
.lsc_c00041{letter-spacing:-0.335249px;}
.ls20_c00041{letter-spacing:-0.309872px;}
.ls17_c00041{letter-spacing:-0.304025px;}
.ls11_c00041{letter-spacing:-0.268945px;}
.ls2f_c00041{letter-spacing:-0.216326px;}
.ls2a_c00041{letter-spacing:-0.198786px;}
.ls14_c00041{letter-spacing:-0.192939px;}
.ls27_c00041{letter-spacing:-0.181246px;}
.ls15_c00041{letter-spacing:-0.163706px;}
.ls24_c00041{letter-spacing:-0.157859px;}
.ls13_c00041{letter-spacing:-0.152013px;}
.ls12_c00041{letter-spacing:-0.134473px;}
.ls1e_c00041{letter-spacing:-0.116933px;}
.ls18_c00041{letter-spacing:-0.105240px;}
.ls2d_c00041{letter-spacing:-0.099393px;}
.ls1c_c00041{letter-spacing:-0.087700px;}
.ls10_c00041{letter-spacing:-0.075619px;}
.ls25_c00041{letter-spacing:-0.070160px;}
.ls6_c00041{letter-spacing:-0.063018px;}
.ls1a_c00041{letter-spacing:-0.058466px;}
.ls9_c00041{letter-spacing:-0.049014px;}
.ls22_c00041{letter-spacing:-0.046773px;}
.ls21_c00041{letter-spacing:-0.040926px;}
.ls2e_c00041{letter-spacing:-0.035080px;}
.lse_c00041{letter-spacing:-0.035010px;}
.lsa_c00041{letter-spacing:-0.028008px;}
.ls23_c00041{letter-spacing:-0.023387px;}
.lsd_c00041{letter-spacing:-0.021006px;}
.ls16_c00041{letter-spacing:-0.017540px;}
.lsb_c00041{letter-spacing:-0.014004px;}
.ls8_c00041{letter-spacing:-0.007002px;}
.ls7_c00041{letter-spacing:0.000000px;}
.ls19_c00041{letter-spacing:0.011693px;}
.ls0_c00041{letter-spacing:0.014004px;}
.lsf_c00041{letter-spacing:0.023281px;}
.ls2_c00041{letter-spacing:0.035010px;}
.ls1_c00041{letter-spacing:0.042012px;}
.ls5_c00041{letter-spacing:0.058466px;}
.ls29_c00041{letter-spacing:0.064313px;}
.ls1b_c00041{letter-spacing:0.087700px;}
.ls1f_c00041{letter-spacing:0.105240px;}
.ls26_c00041{letter-spacing:0.339105px;}
.ls4_c00041{letter-spacing:0.724983px;}
.ls3_c00041{letter-spacing:12.242864px;}
.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;}
}
.ws5_c00041{word-spacing:-16.253659px;}
.ws3_c00041{word-spacing:-16.148420px;}
.ws4_c00041{word-spacing:-15.891168px;}
.ws1_c00041{word-spacing:-12.967628px;}
.ws0_c00041{word-spacing:-12.609098px;}
.ws2_c00041{word-spacing:-10.397640px;}
.ws11_c00041{word-spacing:-0.007002px;}
.ws6_c00041{word-spacing:0.000000px;}
.ws2a_c00041{word-spacing:0.029233px;}
.ws32_c00041{word-spacing:0.081853px;}
.ws29_c00041{word-spacing:0.099393px;}
.ws39_c00041{word-spacing:0.362492px;}
.ws1b_c00041{word-spacing:0.371106px;}
.ws3a_c00041{word-spacing:0.473578px;}
.ws3c_c00041{word-spacing:0.590511px;}
.ws2f_c00041{word-spacing:0.754217px;}
.ws3b_c00041{word-spacing:0.765910px;}
.ws20_c00041{word-spacing:0.865303px;}
.ws13_c00041{word-spacing:1.085310px;}
.ws12_c00041{word-spacing:1.820520px;}
.wse_c00041{word-spacing:3.599028px;}
.wsf_c00041{word-spacing:3.984138px;}
.ws1e_c00041{word-spacing:4.271220px;}
.ws1d_c00041{word-spacing:4.327236px;}
.ws9_c00041{word-spacing:4.670334px;}
.wsa_c00041{word-spacing:4.712346px;}
.ws21_c00041{word-spacing:5.203510px;}
.ws22_c00041{word-spacing:5.244436px;}
.ws1a_c00041{word-spacing:7.576164px;}
.ws10_c00041{word-spacing:8.269362px;}
.ws24_c00041{word-spacing:8.670567px;}
.ws23_c00041{word-spacing:8.816733px;}
.ws25_c00041{word-spacing:8.957052px;}
.ws28_c00041{word-spacing:9.284464px;}
.ws27_c00041{word-spacing:9.430630px;}
.ws26_c00041{word-spacing:9.477403px;}
.ws34_c00041{word-spacing:9.553410px;}
.ws33_c00041{word-spacing:9.752196px;}
.ws35_c00041{word-spacing:10.021141px;}
.wsd_c00041{word-spacing:11.161188px;}
.wsc_c00041{word-spacing:11.168190px;}
.ws18_c00041{word-spacing:11.868390px;}
.ws36_c00041{word-spacing:12.190244px;}
.ws19_c00041{word-spacing:12.274506px;}
.ws37_c00041{word-spacing:12.359797px;}
.ws38_c00041{word-spacing:12.880148px;}
.ws1c_c00041{word-spacing:13.331808px;}
.ws14_c00041{word-spacing:14.046012px;}
.ws8_c00041{word-spacing:14.746212px;}
.ws7_c00041{word-spacing:14.753214px;}
.ws2e_c00041{word-spacing:15.172031px;}
.ws15_c00041{word-spacing:16.503714px;}
.ws17_c00041{word-spacing:16.552728px;}
.ws16_c00041{word-spacing:16.573734px;}
.ws2c_c00041{word-spacing:18.270750px;}
.ws2b_c00041{word-spacing:18.849567px;}
.ws2d_c00041{word-spacing:19.042506px;}
.ws1f_c00041{word-spacing:20.439853px;}
.ws31_c00041{word-spacing:27.069943px;}
.ws30_c00041{word-spacing:27.531828px;}
.wsb_c00041{word-spacing:29.534436px;}
._3_c00041{margin-left:-2.709846px;}
._1_c00041{margin-left:-1.169334px;}
._0_c00041{width:1.134324px;}
._4_c00041{width:2.227342px;}
._2_c00041{width:5.930694px;}
._5_c00041{width:10.120458px;}
._6_c00041{width:12.539219px;}
.fc0_c00041{color:rgb(0,0,0);}
.fs2_c00041{font-size:37.809600px;}
.fs1_c00041{font-size:46.562400px;}
.fs3_c00041{font-size:58.466400px;}
.fs0_c00041{font-size:70.020000px;}
.y0_c00041{bottom:0.000000px;}
.y2_c00041{bottom:109.740968px;}
.y1_c00041{bottom:129.810450px;}
.y29_c00041{bottom:149.429891px;}
.y28_c00041{bottom:170.940450px;}
.y27_c00041{bottom:185.249891px;}
.y26_c00041{bottom:206.760450px;}
.y25_c00041{bottom:221.069891px;}
.y24_c00041{bottom:242.580450px;}
.y23_c00041{bottom:256.708649px;}
.y22_c00041{bottom:274.708992px;}
.y21_c00041{bottom:292.529551px;}
.y20_c00041{bottom:310.350110px;}
.y1f_c00041{bottom:328.350453px;}
.y1e_c00041{bottom:346.171011px;}
.y1d_c00041{bottom:364.080731px;}
.y1c_c00041{bottom:381.990451px;}
.y1b_c00041{bottom:399.811010px;}
.y1a_c00041{bottom:417.720730px;}
.y19_c00041{bottom:439.320450px;}
.y18_c00041{bottom:453.990688px;}
.y17_c00041{bottom:506.640477px;}
.y16_c00041{bottom:536.791089px;}
.y15_c00041{bottom:567.030976px;}
.y14_c00041{bottom:597.090562px;}
.y13_c00041{bottom:627.329838px;}
.y12_c00041{bottom:657.478178px;}
.y11_c00041{bottom:687.718065px;}
.y10_c00041{bottom:717.868677px;}
.yf_c00041{bottom:748.108564px;}
.ye_c00041{bottom:778.259176px;}
.yd_c00041{bottom:808.499064px;}
.yc_c00041{bottom:838.649676px;}
.yb_c00041{bottom:868.889563px;}
.ya_c00041{bottom:899.040175px;}
.y9_c00041{bottom:929.280063px;}
.y8_c00041{bottom:959.519951px;}
.y7_c00041{bottom:989.670562px;}
.y6_c00041{bottom:1019.909942px;}
.y5_c00041{bottom:1050.060553px;}
.y4_c00041{bottom:1080.300441px;}
.y3_c00041{bottom:1110.451053px;}
.h5_c00041{height:39.338549px;}
.h6_c00041{height:54.098549px;}
.h1_c00041{height:62.771836px;}
.h2_c00041{height:73.784498px;}
.h4_c00041{height:73.784912px;}
.h3_c00041{height:74.151554px;}
.h0_c00041{height:1263.000000px;}
.w0_c00041{width:892.500000px;}
.x0_c00041{left:0.000000px;}
.x2_c00041{left:82.709645px;}
.x1_c00041{left:436.680000px;}
@media print{
.v2_c00041{vertical-align:-13.120000pt;}
.v0_c00041{vertical-align:0.000000pt;}
.v1_c00041{vertical-align:28.481808pt;}
.ls2c_c00041{letter-spacing:-0.628839pt;}
.ls28_c00041{letter-spacing:-0.576868pt;}
.ls2b_c00041{letter-spacing:-0.556080pt;}
.ls1d_c00041{letter-spacing:-0.332609pt;}
.lsc_c00041{letter-spacing:-0.297999pt;}
.ls20_c00041{letter-spacing:-0.275442pt;}
.ls17_c00041{letter-spacing:-0.270245pt;}
.ls11_c00041{letter-spacing:-0.239063pt;}
.ls2f_c00041{letter-spacing:-0.192289pt;}
.ls2a_c00041{letter-spacing:-0.176698pt;}
.ls14_c00041{letter-spacing:-0.171501pt;}
.ls27_c00041{letter-spacing:-0.161107pt;}
.ls15_c00041{letter-spacing:-0.145516pt;}
.ls24_c00041{letter-spacing:-0.140319pt;}
.ls13_c00041{letter-spacing:-0.135122pt;}
.ls12_c00041{letter-spacing:-0.119531pt;}
.ls1e_c00041{letter-spacing:-0.103940pt;}
.ls18_c00041{letter-spacing:-0.093546pt;}
.ls2d_c00041{letter-spacing:-0.088349pt;}
.ls1c_c00041{letter-spacing:-0.077955pt;}
.ls10_c00041{letter-spacing:-0.067217pt;}
.ls25_c00041{letter-spacing:-0.062364pt;}
.ls6_c00041{letter-spacing:-0.056016pt;}
.ls1a_c00041{letter-spacing:-0.051970pt;}
.ls9_c00041{letter-spacing:-0.043568pt;}
.ls22_c00041{letter-spacing:-0.041576pt;}
.ls21_c00041{letter-spacing:-0.036379pt;}
.ls2e_c00041{letter-spacing:-0.031182pt;}
.lse_c00041{letter-spacing:-0.031120pt;}
.lsa_c00041{letter-spacing:-0.024896pt;}
.ls23_c00041{letter-spacing:-0.020788pt;}
.lsd_c00041{letter-spacing:-0.018672pt;}
.ls16_c00041{letter-spacing:-0.015591pt;}
.lsb_c00041{letter-spacing:-0.012448pt;}
.ls8_c00041{letter-spacing:-0.006224pt;}
.ls7_c00041{letter-spacing:0.000000pt;}
.ls19_c00041{letter-spacing:0.010394pt;}
.ls0_c00041{letter-spacing:0.012448pt;}
.lsf_c00041{letter-spacing:0.020694pt;}
.ls2_c00041{letter-spacing:0.031120pt;}
.ls1_c00041{letter-spacing:0.037344pt;}
.ls5_c00041{letter-spacing:0.051970pt;}
.ls29_c00041{letter-spacing:0.057167pt;}
.ls1b_c00041{letter-spacing:0.077955pt;}
.ls1f_c00041{letter-spacing:0.093546pt;}
.ls26_c00041{letter-spacing:0.301427pt;}
.ls4_c00041{letter-spacing:0.644430pt;}
.ls3_c00041{letter-spacing:10.882546pt;}
.ws5_c00041{word-spacing:-14.447697pt;}
.ws3_c00041{word-spacing:-14.354151pt;}
.ws4_c00041{word-spacing:-14.125482pt;}
.ws1_c00041{word-spacing:-11.526781pt;}
.ws0_c00041{word-spacing:-11.208087pt;}
.ws2_c00041{word-spacing:-9.242347pt;}
.ws11_c00041{word-spacing:-0.006224pt;}
.ws6_c00041{word-spacing:0.000000pt;}
.ws2a_c00041{word-spacing:0.025985pt;}
.ws32_c00041{word-spacing:0.072758pt;}
.ws29_c00041{word-spacing:0.088349pt;}
.ws39_c00041{word-spacing:0.322215pt;}
.ws1b_c00041{word-spacing:0.329872pt;}
.ws3a_c00041{word-spacing:0.420958pt;}
.ws3c_c00041{word-spacing:0.524898pt;}
.ws2f_c00041{word-spacing:0.670415pt;}
.ws3b_c00041{word-spacing:0.680809pt;}
.ws20_c00041{word-spacing:0.769158pt;}
.ws13_c00041{word-spacing:0.964720pt;}
.ws12_c00041{word-spacing:1.618240pt;}
.wse_c00041{word-spacing:3.199136pt;}
.wsf_c00041{word-spacing:3.541456pt;}
.ws1e_c00041{word-spacing:3.796640pt;}
.ws1d_c00041{word-spacing:3.846432pt;}
.ws9_c00041{word-spacing:4.151408pt;}
.wsa_c00041{word-spacing:4.188752pt;}
.ws21_c00041{word-spacing:4.625342pt;}
.ws22_c00041{word-spacing:4.661721pt;}
.ws1a_c00041{word-spacing:6.734368pt;}
.ws10_c00041{word-spacing:7.350544pt;}
.ws24_c00041{word-spacing:7.707171pt;}
.ws23_c00041{word-spacing:7.837096pt;}
.ws25_c00041{word-spacing:7.961824pt;}
.ws28_c00041{word-spacing:8.252857pt;}
.ws27_c00041{word-spacing:8.382783pt;}
.ws26_c00041{word-spacing:8.424359pt;}
.ws34_c00041{word-spacing:8.491920pt;}
.ws33_c00041{word-spacing:8.668618pt;}
.ws35_c00041{word-spacing:8.907681pt;}
.wsd_c00041{word-spacing:9.921056pt;}
.wsc_c00041{word-spacing:9.927280pt;}
.ws18_c00041{word-spacing:10.549680pt;}
.ws36_c00041{word-spacing:10.835773pt;}
.ws19_c00041{word-spacing:10.910672pt;}
.ws37_c00041{word-spacing:10.986486pt;}
.ws38_c00041{word-spacing:11.449020pt;}
.ws1c_c00041{word-spacing:11.850496pt;}
.ws14_c00041{word-spacing:12.485344pt;}
.ws8_c00041{word-spacing:13.107744pt;}
.ws7_c00041{word-spacing:13.113968pt;}
.ws2e_c00041{word-spacing:13.486250pt;}
.ws15_c00041{word-spacing:14.669968pt;}
.ws17_c00041{word-spacing:14.713536pt;}
.ws16_c00041{word-spacing:14.732208pt;}
.ws2c_c00041{word-spacing:16.240667pt;}
.ws2b_c00041{word-spacing:16.755171pt;}
.ws2d_c00041{word-spacing:16.926672pt;}
.ws1f_c00041{word-spacing:18.168759pt;}
.ws31_c00041{word-spacing:24.062172pt;}
.ws30_c00041{word-spacing:24.472736pt;}
.wsb_c00041{word-spacing:26.252832pt;}
._3_c00041{margin-left:-2.408752pt;}
._1_c00041{margin-left:-1.039408pt;}
._0_c00041{width:1.008288pt;}
._4_c00041{width:1.979860pt;}
._2_c00041{width:5.271728pt;}
._5_c00041{width:8.995963pt;}
._6_c00041{width:11.145972pt;}
.fs2_c00041{font-size:33.608533pt;}
.fs1_c00041{font-size:41.388800pt;}
.fs3_c00041{font-size:51.970133pt;}
.fs0_c00041{font-size:62.240000pt;}
.y0_c00041{bottom:0.000000pt;}
.y2_c00041{bottom:97.547527pt;}
.y1_c00041{bottom:115.387067pt;}
.y29_c00041{bottom:132.826570pt;}
.y28_c00041{bottom:151.947067pt;}
.y27_c00041{bottom:164.666570pt;}
.y26_c00041{bottom:183.787067pt;}
.y25_c00041{bottom:196.506570pt;}
.y24_c00041{bottom:215.627067pt;}
.y23_c00041{bottom:228.185466pt;}
.y22_c00041{bottom:244.185771pt;}
.y21_c00041{bottom:260.026268pt;}
.y20_c00041{bottom:275.866764pt;}
.y1f_c00041{bottom:291.867069pt;}
.y1e_c00041{bottom:307.707566pt;}
.y1d_c00041{bottom:323.627317pt;}
.y1c_c00041{bottom:339.547068pt;}
.y1b_c00041{bottom:355.387564pt;}
.y1a_c00041{bottom:371.307316pt;}
.y19_c00041{bottom:390.507067pt;}
.y18_c00041{bottom:403.547279pt;}
.y17_c00041{bottom:450.347091pt;}
.y16_c00041{bottom:477.147635pt;}
.y15_c00041{bottom:504.027535pt;}
.y14_c00041{bottom:530.747167pt;}
.y13_c00041{bottom:557.626523pt;}
.y12_c00041{bottom:584.425047pt;}
.y11_c00041{bottom:611.304947pt;}
.y10_c00041{bottom:638.105491pt;}
.yf_c00041{bottom:664.985391pt;}
.ye_c00041{bottom:691.785935pt;}
.yd_c00041{bottom:718.665835pt;}
.yc_c00041{bottom:745.466379pt;}
.yb_c00041{bottom:772.346279pt;}
.ya_c00041{bottom:799.146823pt;}
.y9_c00041{bottom:826.026723pt;}
.y8_c00041{bottom:852.906623pt;}
.y7_c00041{bottom:879.707167pt;}
.y6_c00041{bottom:906.586615pt;}
.y5_c00041{bottom:933.387159pt;}
.y4_c00041{bottom:960.267059pt;}
.y3_c00041{bottom:987.067603pt;}
.h5_c00041{height:34.967599pt;}
.h6_c00041{height:48.087599pt;}
.h1_c00041{height:55.797187pt;}
.h2_c00041{height:65.586221pt;}
.h4_c00041{height:65.586588pt;}
.h3_c00041{height:65.912492pt;}
.h0_c00041{height:1122.666667pt;}
.w0_c00041{width:793.333333pt;}
.x0_c00041{left:0.000000pt;}
.x2_c00041{left:73.519684pt;}
.x1_c00041{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a26f10e0e333a125fab5b766.woff2')format("woff");}.ff1_c00042{font-family:ff1_c00042;line-height:1.106934;font-style:normal;font-weight:normal;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_71f4419739fd18aeb8508b0e.woff2')format("woff");}.ff2_c00042{font-family:ff2_c00042;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00042;src:url('chunks/assets/font_c7f5d7ea05c63ff73d6de16c.woff2')format("woff");}.ff3_c00042{font-family:ff3_c00042;line-height:1.133301;font-style:normal;font-weight:normal;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_219d2e49a6d3d31ec7d77ca9.woff2')format("woff");}.ff4_c00042{font-family:ff4_c00042;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00042{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00042{vertical-align:-14.760000px;}
.v0_c00042{vertical-align:0.000000px;}
.v1_c00042{vertical-align:32.403132px;}
.ls18_c00042{letter-spacing:-0.707443px;}
.ls17_c00042{letter-spacing:-0.590511px;}
.lsc_c00042{letter-spacing:-0.335249px;}
.ls15_c00042{letter-spacing:-0.274792px;}
.ls14_c00042{letter-spacing:-0.169553px;}
.ls11_c00042{letter-spacing:-0.163706px;}
.ls13_c00042{letter-spacing:-0.128626px;}
.lsd_c00042{letter-spacing:-0.075619px;}
.ls3_c00042{letter-spacing:-0.063018px;}
.ls6_c00042{letter-spacing:-0.049014px;}
.lse_c00042{letter-spacing:-0.035080px;}
.ls5_c00042{letter-spacing:-0.035010px;}
.ls9_c00042{letter-spacing:-0.028008px;}
.ls8_c00042{letter-spacing:-0.021006px;}
.ls7_c00042{letter-spacing:-0.014004px;}
.ls16_c00042{letter-spacing:-0.011693px;}
.lsb_c00042{letter-spacing:-0.007002px;}
.ls4_c00042{letter-spacing:0.000000px;}
.ls2_c00042{letter-spacing:0.005847px;}
.ls1_c00042{letter-spacing:0.007002px;}
.lsf_c00042{letter-spacing:0.011693px;}
.ls0_c00042{letter-spacing:0.014004px;}
.lsa_c00042{letter-spacing:0.023281px;}
.ls10_c00042{letter-spacing:0.122779px;}
.ls12_c00042{letter-spacing:0.491118px;}
.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:-12.967628px;}
.ws1_c00042{word-spacing:-12.609098px;}
.ws2_c00042{word-spacing:-10.397640px;}
.ws17_c00042{word-spacing:-0.467731px;}
.wsd_c00042{word-spacing:-0.007002px;}
.ws3_c00042{word-spacing:0.000000px;}
.ws18_c00042{word-spacing:0.005847px;}
.wsa_c00042{word-spacing:0.014004px;}
.ws15_c00042{word-spacing:0.364104px;}
.ws1b_c00042{word-spacing:0.502811px;}
.wse_c00042{word-spacing:0.714204px;}
.ws20_c00042{word-spacing:0.719137px;}
.wsf_c00042{word-spacing:0.728208px;}
.ws13_c00042{word-spacing:1.099314px;}
.ws6_c00042{word-spacing:1.449414px;}
.ws11_c00042{word-spacing:2.492712px;}
.ws10_c00042{word-spacing:2.506716px;}
.ws5_c00042{word-spacing:3.241926px;}
.ws1a_c00042{word-spacing:6.723636px;}
.ws19_c00042{word-spacing:7.378460px;}
.wsb_c00042{word-spacing:7.555158px;}
.ws1e_c00042{word-spacing:10.465486px;}
.ws1c_c00042{word-spacing:10.623345px;}
.ws1d_c00042{word-spacing:10.728584px;}
.ws1f_c00042{word-spacing:11.044303px;}
.ws16_c00042{word-spacing:11.927146px;}
.ws12_c00042{word-spacing:14.053014px;}
.ws8_c00042{word-spacing:16.531722px;}
.ws7_c00042{word-spacing:16.566732px;}
.ws9_c00042{word-spacing:24.457986px;}
.ws4_c00042{word-spacing:33.140466px;}
.ws14_c00042{word-spacing:33.497568px;}
.wsc_c00042{word-spacing:34.561872px;}
._3_c00042{margin-left:-2.709414px;}
._1_c00042{margin-left:-1.043298px;}
._0_c00042{width:1.225350px;}
._4_c00042{width:2.253401px;}
._2_c00042{width:5.930694px;}
.fc0_c00042{color:rgb(0,0,0);}
.fs2_c00042{font-size:37.809600px;}
.fs1_c00042{font-size:46.562400px;}
.fs3_c00042{font-size:58.466400px;}
.fs0_c00042{font-size:70.020000px;}
.y0_c00042{bottom:0.000000px;}
.y2_c00042{bottom:109.740968px;}
.y1_c00042{bottom:129.810450px;}
.y25_c00042{bottom:149.428990px;}
.y24_c00042{bottom:167.249548px;}
.y23_c00042{bottom:185.249891px;}
.y22_c00042{bottom:206.760450px;}
.y21_c00042{bottom:221.069891px;}
.y20_c00042{bottom:242.580450px;}
.y1f_c00042{bottom:257.247494px;}
.y1e_c00042{bottom:305.307471px;}
.y1d_c00042{bottom:335.547358px;}
.y1c_c00042{bottom:365.697970px;}
.y1b_c00042{bottom:395.937858px;}
.y1a_c00042{bottom:426.088470px;}
.y19_c00042{bottom:456.328357px;}
.y18_c00042{bottom:486.478969px;}
.y17_c00042{bottom:506.639478px;}
.y16_c00042{bottom:536.790090px;}
.y15_c00042{bottom:567.029977px;}
.y14_c00042{bottom:597.089563px;}
.y13_c00042{bottom:627.329451px;}
.y12_c00042{bottom:657.480063px;}
.y11_c00042{bottom:687.719950px;}
.y10_c00042{bottom:717.870563px;}
.yf_c00042{bottom:748.108989px;}
.ye_c00042{bottom:778.259601px;}
.yd_c00042{bottom:808.499488px;}
.yc_c00042{bottom:838.650100px;}
.yb_c00042{bottom:868.889988px;}
.ya_c00042{bottom:899.039667px;}
.y9_c00042{bottom:929.279555px;}
.y8_c00042{bottom:959.519442px;}
.y7_c00042{bottom:989.670054px;}
.y6_c00042{bottom:1019.909942px;}
.y5_c00042{bottom:1050.060553px;}
.y4_c00042{bottom:1080.300441px;}
.y3_c00042{bottom:1110.451053px;}
.h6_c00042{height:39.338549px;}
.h7_c00042{height:54.098549px;}
.h1_c00042{height:62.771836px;}
.h5_c00042{height:62.783662px;}
.h4_c00042{height:63.216299px;}
.h3_c00042{height:73.788308px;}
.h2_c00042{height:74.145596px;}
.h0_c00042{height:1263.000000px;}
.w0_c00042{width:892.500000px;}
.x0_c00042{left:0.000000px;}
.x2_c00042{left:82.709645px;}
.x1_c00042{left:436.680000px;}
@media print{
.v2_c00042{vertical-align:-13.120000pt;}
.v0_c00042{vertical-align:0.000000pt;}
.v1_c00042{vertical-align:28.802784pt;}
.ls18_c00042{letter-spacing:-0.628839pt;}
.ls17_c00042{letter-spacing:-0.524898pt;}
.lsc_c00042{letter-spacing:-0.297999pt;}
.ls15_c00042{letter-spacing:-0.244260pt;}
.ls14_c00042{letter-spacing:-0.150713pt;}
.ls11_c00042{letter-spacing:-0.145516pt;}
.ls13_c00042{letter-spacing:-0.114334pt;}
.lsd_c00042{letter-spacing:-0.067217pt;}
.ls3_c00042{letter-spacing:-0.056016pt;}
.ls6_c00042{letter-spacing:-0.043568pt;}
.lse_c00042{letter-spacing:-0.031182pt;}
.ls5_c00042{letter-spacing:-0.031120pt;}
.ls9_c00042{letter-spacing:-0.024896pt;}
.ls8_c00042{letter-spacing:-0.018672pt;}
.ls7_c00042{letter-spacing:-0.012448pt;}
.ls16_c00042{letter-spacing:-0.010394pt;}
.lsb_c00042{letter-spacing:-0.006224pt;}
.ls4_c00042{letter-spacing:0.000000pt;}
.ls2_c00042{letter-spacing:0.005197pt;}
.ls1_c00042{letter-spacing:0.006224pt;}
.lsf_c00042{letter-spacing:0.010394pt;}
.ls0_c00042{letter-spacing:0.012448pt;}
.lsa_c00042{letter-spacing:0.020694pt;}
.ls10_c00042{letter-spacing:0.109137pt;}
.ls12_c00042{letter-spacing:0.436549pt;}
.ws0_c00042{word-spacing:-11.526781pt;}
.ws1_c00042{word-spacing:-11.208087pt;}
.ws2_c00042{word-spacing:-9.242347pt;}
.ws17_c00042{word-spacing:-0.415761pt;}
.wsd_c00042{word-spacing:-0.006224pt;}
.ws3_c00042{word-spacing:0.000000pt;}
.ws18_c00042{word-spacing:0.005197pt;}
.wsa_c00042{word-spacing:0.012448pt;}
.ws15_c00042{word-spacing:0.323648pt;}
.ws1b_c00042{word-spacing:0.446943pt;}
.wse_c00042{word-spacing:0.634848pt;}
.ws20_c00042{word-spacing:0.639233pt;}
.wsf_c00042{word-spacing:0.647296pt;}
.ws13_c00042{word-spacing:0.977168pt;}
.ws6_c00042{word-spacing:1.288368pt;}
.ws11_c00042{word-spacing:2.215744pt;}
.ws10_c00042{word-spacing:2.228192pt;}
.ws5_c00042{word-spacing:2.881712pt;}
.ws1a_c00042{word-spacing:5.976565pt;}
.ws19_c00042{word-spacing:6.558631pt;}
.wsb_c00042{word-spacing:6.715696pt;}
.ws1e_c00042{word-spacing:9.302654pt;}
.ws1c_c00042{word-spacing:9.442973pt;}
.ws1d_c00042{word-spacing:9.536519pt;}
.ws1f_c00042{word-spacing:9.817158pt;}
.ws16_c00042{word-spacing:10.601907pt;}
.ws12_c00042{word-spacing:12.491568pt;}
.ws8_c00042{word-spacing:14.694864pt;}
.ws7_c00042{word-spacing:14.725984pt;}
.ws9_c00042{word-spacing:21.740432pt;}
.ws4_c00042{word-spacing:29.458192pt;}
.ws14_c00042{word-spacing:29.775616pt;}
.wsc_c00042{word-spacing:30.721664pt;}
._3_c00042{margin-left:-2.408368pt;}
._1_c00042{margin-left:-0.927376pt;}
._0_c00042{width:1.089200pt;}
._4_c00042{width:2.003023pt;}
._2_c00042{width:5.271728pt;}
.fs2_c00042{font-size:33.608533pt;}
.fs1_c00042{font-size:41.388800pt;}
.fs3_c00042{font-size:51.970133pt;}
.fs0_c00042{font-size:62.240000pt;}
.y0_c00042{bottom:0.000000pt;}
.y2_c00042{bottom:97.547527pt;}
.y1_c00042{bottom:115.387067pt;}
.y25_c00042{bottom:132.825769pt;}
.y24_c00042{bottom:148.666265pt;}
.y23_c00042{bottom:164.666570pt;}
.y22_c00042{bottom:183.787067pt;}
.y21_c00042{bottom:196.506570pt;}
.y20_c00042{bottom:215.627067pt;}
.y1f_c00042{bottom:228.664439pt;}
.y1e_c00042{bottom:271.384419pt;}
.y1d_c00042{bottom:298.264319pt;}
.y1c_c00042{bottom:325.064863pt;}
.y1b_c00042{bottom:351.944763pt;}
.y1a_c00042{bottom:378.745307pt;}
.y19_c00042{bottom:405.625207pt;}
.y18_c00042{bottom:432.425751pt;}
.y17_c00042{bottom:450.346203pt;}
.y16_c00042{bottom:477.146747pt;}
.y15_c00042{bottom:504.026647pt;}
.y14_c00042{bottom:530.746279pt;}
.y13_c00042{bottom:557.626179pt;}
.y12_c00042{bottom:584.426723pt;}
.y11_c00042{bottom:611.306623pt;}
.y10_c00042{bottom:638.107167pt;}
.yf_c00042{bottom:664.985768pt;}
.ye_c00042{bottom:691.786312pt;}
.yd_c00042{bottom:718.666212pt;}
.yc_c00042{bottom:745.466756pt;}
.yb_c00042{bottom:772.346656pt;}
.ya_c00042{bottom:799.146371pt;}
.y9_c00042{bottom:826.026271pt;}
.y8_c00042{bottom:852.906171pt;}
.y7_c00042{bottom:879.706715pt;}
.y6_c00042{bottom:906.586615pt;}
.y5_c00042{bottom:933.387159pt;}
.y4_c00042{bottom:960.267059pt;}
.y3_c00042{bottom:987.067603pt;}
.h6_c00042{height:34.967599pt;}
.h7_c00042{height:48.087599pt;}
.h1_c00042{height:55.797187pt;}
.h5_c00042{height:55.807699pt;}
.h4_c00042{height:56.192266pt;}
.h3_c00042{height:65.589607pt;}
.h2_c00042{height:65.907197pt;}
.h0_c00042{height:1122.666667pt;}
.w0_c00042{width:793.333333pt;}
.x0_c00042{left:0.000000pt;}
.x2_c00042{left:73.519684pt;}
.x1_c00042{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6f62f8fb49ffa80523c755ef.woff2')format("woff");}.ff1_c00043{font-family:ff1_c00043;line-height:1.106934;font-style:normal;font-weight:normal;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_8c3c879a119d831dace849ae.woff2')format("woff");}.ff2_c00043{font-family:ff2_c00043;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00043{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00043{vertical-align:0.000000px;}
.ls2_c00043{letter-spacing:-0.063018px;}
.ls9_c00043{letter-spacing:-0.056016px;}
.lsa_c00043{letter-spacing:-0.049014px;}
.ls8_c00043{letter-spacing:-0.035010px;}
.ls5_c00043{letter-spacing:-0.028008px;}
.lsb_c00043{letter-spacing:-0.021006px;}
.ls7_c00043{letter-spacing:-0.014004px;}
.ls6_c00043{letter-spacing:-0.007002px;}
.ls3_c00043{letter-spacing:0.000000px;}
.ls1_c00043{letter-spacing:0.007002px;}
.ls0_c00043{letter-spacing:0.021006px;}
.ls4_c00043{letter-spacing:0.434124px;}
.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;}
}
.ws1_c00043{word-spacing:-0.091026px;}
.ws15_c00043{word-spacing:-0.035010px;}
.ws19_c00043{word-spacing:-0.007002px;}
.ws0_c00043{word-spacing:0.000000px;}
.ws9_c00043{word-spacing:0.021006px;}
.wsf_c00043{word-spacing:1.085310px;}
.ws10_c00043{word-spacing:1.113318px;}
.ws5_c00043{word-spacing:2.156616px;}
.ws3_c00043{word-spacing:3.234924px;}
.wse_c00043{word-spacing:3.613032px;}
.ws6_c00043{word-spacing:3.956130px;}
.ws14_c00043{word-spacing:3.970134px;}
.wsd_c00043{word-spacing:4.684338px;}
.ws11_c00043{word-spacing:5.034438px;}
.ws12_c00043{word-spacing:5.048442px;}
.wsc_c00043{word-spacing:5.055444px;}
.ws16_c00043{word-spacing:6.098742px;}
.ws17_c00043{word-spacing:6.105744px;}
.ws8_c00043{word-spacing:6.476850px;}
.ws7_c00043{word-spacing:6.490854px;}
.ws13_c00043{word-spacing:6.847956px;}
.wsa_c00043{word-spacing:15.138324px;}
.ws2_c00043{word-spacing:15.495426px;}
.wsb_c00043{word-spacing:21.601170px;}
.ws18_c00043{word-spacing:34.190766px;}
.ws4_c00043{word-spacing:34.918974px;}
._0_c00043{margin-left:-1.547442px;}
._1_c00043{width:1.239354px;}
.fc0_c00043{color:rgb(0,0,0);}
.fs0_c00043{font-size:70.020000px;}
.y0_c00043{bottom:0.000000px;}
.y2_c00043{bottom:109.740968px;}
.y1_c00043{bottom:129.810450px;}
.y23_c00043{bottom:154.285941px;}
.y22_c00043{bottom:184.525829px;}
.y21_c00043{bottom:214.765716px;}
.y20_c00043{bottom:244.916328px;}
.y1f_c00043{bottom:275.156216px;}
.y1e_c00043{bottom:305.306828px;}
.y1d_c00043{bottom:335.546715px;}
.y1c_c00043{bottom:365.697327px;}
.y1b_c00043{bottom:395.937215px;}
.y1a_c00043{bottom:426.087827px;}
.y19_c00043{bottom:456.327714px;}
.y18_c00043{bottom:486.478326px;}
.y17_c00043{bottom:516.718214px;}
.y16_c00043{bottom:546.868826px;}
.y15_c00043{bottom:577.108713px;}
.y14_c00043{bottom:607.168299px;}
.y13_c00043{bottom:637.408187px;}
.y12_c00043{bottom:667.558799px;}
.y11_c00043{bottom:697.798686px;}
.y10_c00043{bottom:727.949298px;}
.yf_c00043{bottom:758.189186px;}
.ye_c00043{bottom:788.339797px;}
.yd_c00043{bottom:818.579685px;}
.yc_c00043{bottom:848.730297px;}
.yb_c00043{bottom:878.970185px;}
.ya_c00043{bottom:899.039667px;}
.y9_c00043{bottom:929.279555px;}
.y8_c00043{bottom:959.519442px;}
.y7_c00043{bottom:989.670054px;}
.y6_c00043{bottom:1019.909942px;}
.y5_c00043{bottom:1050.060553px;}
.y4_c00043{bottom:1080.300441px;}
.y3_c00043{bottom:1110.451053px;}
.h1_c00043{height:62.771836px;}
.h2_c00043{height:63.216299px;}
.h0_c00043{height:1263.000000px;}
.w0_c00043{width:892.500000px;}
.x0_c00043{left:0.000000px;}
.x2_c00043{left:82.709645px;}
.x3_c00043{left:163.710531px;}
.x1_c00043{left:436.680000px;}
@media print{
.v0_c00043{vertical-align:0.000000pt;}
.ls2_c00043{letter-spacing:-0.056016pt;}
.ls9_c00043{letter-spacing:-0.049792pt;}
.lsa_c00043{letter-spacing:-0.043568pt;}
.ls8_c00043{letter-spacing:-0.031120pt;}
.ls5_c00043{letter-spacing:-0.024896pt;}
.lsb_c00043{letter-spacing:-0.018672pt;}
.ls7_c00043{letter-spacing:-0.012448pt;}
.ls6_c00043{letter-spacing:-0.006224pt;}
.ls3_c00043{letter-spacing:0.000000pt;}
.ls1_c00043{letter-spacing:0.006224pt;}
.ls0_c00043{letter-spacing:0.018672pt;}
.ls4_c00043{letter-spacing:0.385888pt;}
.ws1_c00043{word-spacing:-0.080912pt;}
.ws15_c00043{word-spacing:-0.031120pt;}
.ws19_c00043{word-spacing:-0.006224pt;}
.ws0_c00043{word-spacing:0.000000pt;}
.ws9_c00043{word-spacing:0.018672pt;}
.wsf_c00043{word-spacing:0.964720pt;}
.ws10_c00043{word-spacing:0.989616pt;}
.ws5_c00043{word-spacing:1.916992pt;}
.ws3_c00043{word-spacing:2.875488pt;}
.wse_c00043{word-spacing:3.211584pt;}
.ws6_c00043{word-spacing:3.516560pt;}
.ws14_c00043{word-spacing:3.529008pt;}
.wsd_c00043{word-spacing:4.163856pt;}
.ws11_c00043{word-spacing:4.475056pt;}
.ws12_c00043{word-spacing:4.487504pt;}
.wsc_c00043{word-spacing:4.493728pt;}
.ws16_c00043{word-spacing:5.421104pt;}
.ws17_c00043{word-spacing:5.427328pt;}
.ws8_c00043{word-spacing:5.757200pt;}
.ws7_c00043{word-spacing:5.769648pt;}
.ws13_c00043{word-spacing:6.087072pt;}
.wsa_c00043{word-spacing:13.456288pt;}
.ws2_c00043{word-spacing:13.773712pt;}
.wsb_c00043{word-spacing:19.201040pt;}
.ws18_c00043{word-spacing:30.391792pt;}
.ws4_c00043{word-spacing:31.039088pt;}
._0_c00043{margin-left:-1.375504pt;}
._1_c00043{width:1.101648pt;}
.fs0_c00043{font-size:62.240000pt;}
.y0_c00043{bottom:0.000000pt;}
.y2_c00043{bottom:97.547527pt;}
.y1_c00043{bottom:115.387067pt;}
.y23_c00043{bottom:137.143059pt;}
.y22_c00043{bottom:164.022959pt;}
.y21_c00043{bottom:190.902859pt;}
.y20_c00043{bottom:217.703403pt;}
.y1f_c00043{bottom:244.583303pt;}
.y1e_c00043{bottom:271.383847pt;}
.y1d_c00043{bottom:298.263747pt;}
.y1c_c00043{bottom:325.064291pt;}
.y1b_c00043{bottom:351.944191pt;}
.y1a_c00043{bottom:378.744735pt;}
.y19_c00043{bottom:405.624635pt;}
.y18_c00043{bottom:432.425179pt;}
.y17_c00043{bottom:459.305079pt;}
.y16_c00043{bottom:486.105623pt;}
.y15_c00043{bottom:512.985523pt;}
.y14_c00043{bottom:539.705155pt;}
.y13_c00043{bottom:566.585055pt;}
.y12_c00043{bottom:593.385599pt;}
.y11_c00043{bottom:620.265499pt;}
.y10_c00043{bottom:647.066043pt;}
.yf_c00043{bottom:673.945943pt;}
.ye_c00043{bottom:700.746487pt;}
.yd_c00043{bottom:727.626387pt;}
.yc_c00043{bottom:754.426931pt;}
.yb_c00043{bottom:781.306831pt;}
.ya_c00043{bottom:799.146371pt;}
.y9_c00043{bottom:826.026271pt;}
.y8_c00043{bottom:852.906171pt;}
.y7_c00043{bottom:879.706715pt;}
.y6_c00043{bottom:906.586615pt;}
.y5_c00043{bottom:933.387159pt;}
.y4_c00043{bottom:960.267059pt;}
.y3_c00043{bottom:987.067603pt;}
.h1_c00043{height:55.797187pt;}
.h2_c00043{height:56.192266pt;}
.h0_c00043{height:1122.666667pt;}
.w0_c00043{width:793.333333pt;}
.x0_c00043{left:0.000000pt;}
.x2_c00043{left:73.519684pt;}
.x3_c00043{left:145.520472pt;}
.x1_c00043{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ff0cb2c481f31b9585144f90.woff2')format("woff");}.ff1_c00044{font-family:ff1_c00044;line-height:1.106934;font-style:normal;font-weight:normal;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_0c78a933e7c5fc277aa1b2ba.woff2')format("woff");}.ff2_c00044{font-family:ff2_c00044;line-height:1.104492;font-style:normal;font-weight:normal;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_71f4419739fd18aeb8508b0e.woff2')format("woff");}.ff3_c00044{font-family:ff3_c00044;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00044{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00044{vertical-align:0.000000px;}
.lse_c00044{letter-spacing:-0.098028px;}
.lsd_c00044{letter-spacing:-0.077022px;}
.ls5_c00044{letter-spacing:-0.063018px;}
.lsf_c00044{letter-spacing:-0.056016px;}
.ls7_c00044{letter-spacing:-0.049014px;}
.lsb_c00044{letter-spacing:-0.042012px;}
.ls10_c00044{letter-spacing:-0.035010px;}
.ls8_c00044{letter-spacing:-0.028008px;}
.lsa_c00044{letter-spacing:-0.021006px;}
.ls9_c00044{letter-spacing:-0.014004px;}
.lsc_c00044{letter-spacing:-0.007002px;}
.ls6_c00044{letter-spacing:0.000000px;}
.ls0_c00044{letter-spacing:0.007002px;}
.ls3_c00044{letter-spacing:0.014004px;}
.ls2_c00044{letter-spacing:0.021006px;}
.ls4_c00044{letter-spacing:0.077022px;}
.ls1_c00044{letter-spacing:12.211488px;}
.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:-19.444554px;}
.ws1_c00044{word-spacing:0.000000px;}
.wsb_c00044{word-spacing:0.049014px;}
.ws12_c00044{word-spacing:0.350100px;}
.ws6_c00044{word-spacing:0.364104px;}
.ws1c_c00044{word-spacing:0.371106px;}
.ws13_c00044{word-spacing:0.378108px;}
.ws9_c00044{word-spacing:1.085310px;}
.ws1f_c00044{word-spacing:1.092312px;}
.ws10_c00044{word-spacing:1.449414px;}
.ws11_c00044{word-spacing:1.841526px;}
.ws1a_c00044{word-spacing:3.578022px;}
.ws1b_c00044{word-spacing:3.970134px;}
.ws5_c00044{word-spacing:5.398542px;}
.wsf_c00044{word-spacing:5.776650px;}
.ws2_c00044{word-spacing:5.797656px;}
.ws16_c00044{word-spacing:6.084738px;}
.wsa_c00044{word-spacing:7.191054px;}
.ws18_c00044{word-spacing:7.891254px;}
.ws19_c00044{word-spacing:8.262360px;}
.ws3_c00044{word-spacing:8.619462px;}
.ws17_c00044{word-spacing:8.647470px;}
.ws4_c00044{word-spacing:8.654472px;}
.ws14_c00044{word-spacing:9.347670px;}
.ws15_c00044{word-spacing:9.375678px;}
.wse_c00044{word-spacing:10.404972px;}
.wsd_c00044{word-spacing:11.245212px;}
.wsc_c00044{word-spacing:11.581308px;}
.ws7_c00044{word-spacing:12.204486px;}
.ws8_c00044{word-spacing:12.267504px;}
.ws20_c00044{word-spacing:14.403114px;}
.ws1d_c00044{word-spacing:15.747498px;}
.ws1e_c00044{word-spacing:16.181622px;}
.ws21_c00044{word-spacing:33.812658px;}
.ws22_c00044{word-spacing:33.826662px;}
._1_c00044{margin-left:-1.302372px;}
._0_c00044{width:1.330380px;}
.fc0_c00044{color:rgb(0,0,0);}
.fs0_c00044{font-size:70.020000px;}
.y0_c00044{bottom:0.000000px;}
.y2_c00044{bottom:109.740968px;}
.y1_c00044{bottom:129.810450px;}
.y22_c00044{bottom:184.525829px;}
.y21_c00044{bottom:214.765716px;}
.y20_c00044{bottom:244.916328px;}
.y1f_c00044{bottom:275.156216px;}
.y1e_c00044{bottom:305.306828px;}
.y1d_c00044{bottom:335.546715px;}
.y1c_c00044{bottom:365.697327px;}
.y1b_c00044{bottom:395.937215px;}
.y1a_c00044{bottom:426.087827px;}
.y19_c00044{bottom:456.327714px;}
.y18_c00044{bottom:486.478326px;}
.y17_c00044{bottom:516.718214px;}
.y16_c00044{bottom:546.868826px;}
.y15_c00044{bottom:577.108713px;}
.y14_c00044{bottom:607.168299px;}
.y13_c00044{bottom:637.408187px;}
.y12_c00044{bottom:667.558799px;}
.y11_c00044{bottom:697.798686px;}
.y10_c00044{bottom:727.949298px;}
.yf_c00044{bottom:758.189186px;}
.ye_c00044{bottom:788.339797px;}
.yd_c00044{bottom:818.579685px;}
.yc_c00044{bottom:838.649168px;}
.yb_c00044{bottom:868.889055px;}
.ya_c00044{bottom:899.039667px;}
.y9_c00044{bottom:929.279555px;}
.y8_c00044{bottom:959.519442px;}
.y7_c00044{bottom:989.670054px;}
.y6_c00044{bottom:1019.909942px;}
.y5_c00044{bottom:1050.060553px;}
.y4_c00044{bottom:1080.300441px;}
.y3_c00044{bottom:1110.451053px;}
.h2_c00044{height:62.600889px;}
.h1_c00044{height:62.771836px;}
.h3_c00044{height:63.216299px;}
.h0_c00044{height:1263.000000px;}
.w0_c00044{width:892.500000px;}
.x0_c00044{left:0.000000px;}
.x2_c00044{left:82.709645px;}
.x3_c00044{left:163.710531px;}
.x1_c00044{left:436.680000px;}
@media print{
.v0_c00044{vertical-align:0.000000pt;}
.lse_c00044{letter-spacing:-0.087136pt;}
.lsd_c00044{letter-spacing:-0.068464pt;}
.ls5_c00044{letter-spacing:-0.056016pt;}
.lsf_c00044{letter-spacing:-0.049792pt;}
.ls7_c00044{letter-spacing:-0.043568pt;}
.lsb_c00044{letter-spacing:-0.037344pt;}
.ls10_c00044{letter-spacing:-0.031120pt;}
.ls8_c00044{letter-spacing:-0.024896pt;}
.lsa_c00044{letter-spacing:-0.018672pt;}
.ls9_c00044{letter-spacing:-0.012448pt;}
.lsc_c00044{letter-spacing:-0.006224pt;}
.ls6_c00044{letter-spacing:0.000000pt;}
.ls0_c00044{letter-spacing:0.006224pt;}
.ls3_c00044{letter-spacing:0.012448pt;}
.ls2_c00044{letter-spacing:0.018672pt;}
.ls4_c00044{letter-spacing:0.068464pt;}
.ls1_c00044{letter-spacing:10.854656pt;}
.ws0_c00044{word-spacing:-17.284048pt;}
.ws1_c00044{word-spacing:0.000000pt;}
.wsb_c00044{word-spacing:0.043568pt;}
.ws12_c00044{word-spacing:0.311200pt;}
.ws6_c00044{word-spacing:0.323648pt;}
.ws1c_c00044{word-spacing:0.329872pt;}
.ws13_c00044{word-spacing:0.336096pt;}
.ws9_c00044{word-spacing:0.964720pt;}
.ws1f_c00044{word-spacing:0.970944pt;}
.ws10_c00044{word-spacing:1.288368pt;}
.ws11_c00044{word-spacing:1.636912pt;}
.ws1a_c00044{word-spacing:3.180464pt;}
.ws1b_c00044{word-spacing:3.529008pt;}
.ws5_c00044{word-spacing:4.798704pt;}
.wsf_c00044{word-spacing:5.134800pt;}
.ws2_c00044{word-spacing:5.153472pt;}
.ws16_c00044{word-spacing:5.408656pt;}
.wsa_c00044{word-spacing:6.392048pt;}
.ws18_c00044{word-spacing:7.014448pt;}
.ws19_c00044{word-spacing:7.344320pt;}
.ws3_c00044{word-spacing:7.661744pt;}
.ws17_c00044{word-spacing:7.686640pt;}
.ws4_c00044{word-spacing:7.692864pt;}
.ws14_c00044{word-spacing:8.309040pt;}
.ws15_c00044{word-spacing:8.333936pt;}
.wse_c00044{word-spacing:9.248864pt;}
.wsd_c00044{word-spacing:9.995744pt;}
.wsc_c00044{word-spacing:10.294496pt;}
.ws7_c00044{word-spacing:10.848432pt;}
.ws8_c00044{word-spacing:10.904448pt;}
.ws20_c00044{word-spacing:12.802768pt;}
.ws1d_c00044{word-spacing:13.997776pt;}
.ws1e_c00044{word-spacing:14.383664pt;}
.ws21_c00044{word-spacing:30.055696pt;}
.ws22_c00044{word-spacing:30.068144pt;}
._1_c00044{margin-left:-1.157664pt;}
._0_c00044{width:1.182560pt;}
.fs0_c00044{font-size:62.240000pt;}
.y0_c00044{bottom:0.000000pt;}
.y2_c00044{bottom:97.547527pt;}
.y1_c00044{bottom:115.387067pt;}
.y22_c00044{bottom:164.022959pt;}
.y21_c00044{bottom:190.902859pt;}
.y20_c00044{bottom:217.703403pt;}
.y1f_c00044{bottom:244.583303pt;}
.y1e_c00044{bottom:271.383847pt;}
.y1d_c00044{bottom:298.263747pt;}
.y1c_c00044{bottom:325.064291pt;}
.y1b_c00044{bottom:351.944191pt;}
.y1a_c00044{bottom:378.744735pt;}
.y19_c00044{bottom:405.624635pt;}
.y18_c00044{bottom:432.425179pt;}
.y17_c00044{bottom:459.305079pt;}
.y16_c00044{bottom:486.105623pt;}
.y15_c00044{bottom:512.985523pt;}
.y14_c00044{bottom:539.705155pt;}
.y13_c00044{bottom:566.585055pt;}
.y12_c00044{bottom:593.385599pt;}
.y11_c00044{bottom:620.265499pt;}
.y10_c00044{bottom:647.066043pt;}
.yf_c00044{bottom:673.945943pt;}
.ye_c00044{bottom:700.746487pt;}
.yd_c00044{bottom:727.626387pt;}
.yc_c00044{bottom:745.465927pt;}
.yb_c00044{bottom:772.345827pt;}
.ya_c00044{bottom:799.146371pt;}
.y9_c00044{bottom:826.026271pt;}
.y8_c00044{bottom:852.906171pt;}
.y7_c00044{bottom:879.706715pt;}
.y6_c00044{bottom:906.586615pt;}
.y5_c00044{bottom:933.387159pt;}
.y4_c00044{bottom:960.267059pt;}
.y3_c00044{bottom:987.067603pt;}
.h2_c00044{height:55.645234pt;}
.h1_c00044{height:55.797187pt;}
.h3_c00044{height:56.192266pt;}
.h0_c00044{height:1122.666667pt;}
.w0_c00044{width:793.333333pt;}
.x0_c00044{left:0.000000pt;}
.x2_c00044{left:73.519684pt;}
.x3_c00044{left:145.520472pt;}
.x1_c00044{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_21997340d99ce29473791490.woff2')format("woff");}.ff1_c00045{font-family:ff1_c00045;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00045{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00045{vertical-align:0.000000px;}
.ls7_c00045{letter-spacing:-0.063018px;}
.lse_c00045{letter-spacing:-0.049014px;}
.lsd_c00045{letter-spacing:-0.035010px;}
.lsc_c00045{letter-spacing:-0.028008px;}
.lsb_c00045{letter-spacing:-0.021006px;}
.ls9_c00045{letter-spacing:-0.014004px;}
.lsa_c00045{letter-spacing:-0.007002px;}
.ls8_c00045{letter-spacing:0.000000px;}
.ls6_c00045{letter-spacing:0.007002px;}
.ls0_c00045{letter-spacing:0.014004px;}
.ls2_c00045{letter-spacing:0.021006px;}
.ls4_c00045{letter-spacing:0.028008px;}
.ls5_c00045{letter-spacing:0.070020px;}
.ls3_c00045{letter-spacing:0.084024px;}
.ls1_c00045{letter-spacing:0.140040px;}
.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;}
}
.ws14_c00045{word-spacing:-0.042012px;}
.ws1d_c00045{word-spacing:-0.021006px;}
.ws0_c00045{word-spacing:0.000000px;}
.wsb_c00045{word-spacing:0.007002px;}
.ws9_c00045{word-spacing:0.014004px;}
.ws2_c00045{word-spacing:0.343098px;}
.ws1f_c00045{word-spacing:0.392112px;}
.wsa_c00045{word-spacing:0.742212px;}
.ws1_c00045{word-spacing:2.520720px;}
.ws13_c00045{word-spacing:2.779794px;}
.ws12_c00045{word-spacing:2.842812px;}
.ws15_c00045{word-spacing:2.870820px;}
.ws17_c00045{word-spacing:4.663332px;}
.ws16_c00045{word-spacing:4.712346px;}
.wsf_c00045{word-spacing:7.212060px;}
.ws1e_c00045{word-spacing:8.276364px;}
.wse_c00045{word-spacing:9.711774px;}
.ws6_c00045{word-spacing:10.054872px;}
.ws7_c00045{word-spacing:10.131894px;}
.ws1b_c00045{word-spacing:10.432980px;}
.ws1c_c00045{word-spacing:10.804086px;}
.ws10_c00045{word-spacing:13.667904px;}
.ws11_c00045{word-spacing:13.702914px;}
.ws1a_c00045{word-spacing:15.103314px;}
.wsd_c00045{word-spacing:15.467418px;}
.wsc_c00045{word-spacing:15.488424px;}
.ws4_c00045{word-spacing:15.838524px;}
.ws8_c00045{word-spacing:20.130750px;}
.ws19_c00045{word-spacing:23.365674px;}
.ws18_c00045{word-spacing:23.778792px;}
.ws3_c00045{word-spacing:25.550298px;}
.ws5_c00045{word-spacing:25.928406px;}
._1_c00045{margin-left:-1.001286px;}
._0_c00045{width:1.085310px;}
.fc0_c00045{color:rgb(0,0,0);}
.fs0_c00045{font-size:70.020000px;}
.y0_c00045{bottom:0.000000px;}
.y2_c00045{bottom:109.740968px;}
.y1_c00045{bottom:129.810450px;}
.y1e_c00045{bottom:172.739712px;}
.y1d_c00045{bottom:202.890324px;}
.y1c_c00045{bottom:233.130212px;}
.y1b_c00045{bottom:283.619883px;}
.y1a_c00045{bottom:313.859771px;}
.y19_c00045{bottom:344.099658px;}
.y18_c00045{bottom:374.250270px;}
.y17_c00045{bottom:424.830968px;}
.y16_c00045{bottom:455.070855px;}
.y15_c00045{bottom:485.310743px;}
.y14_c00045{bottom:535.800414px;}
.y13_c00045{bottom:566.040302px;}
.y12_c00045{bottom:616.710275px;}
.y11_c00045{bottom:646.950162px;}
.y10_c00045{bottom:677.100774px;}
.yf_c00045{bottom:707.340662px;}
.ye_c00045{bottom:737.491274px;}
.yd_c00045{bottom:767.731161px;}
.yc_c00045{bottom:797.881773px;}
.yb_c00045{bottom:828.121660px;}
.ya_c00045{bottom:878.611332px;}
.y9_c00045{bottom:908.851219px;}
.y8_c00045{bottom:939.091107px;}
.y7_c00045{bottom:969.241719px;}
.y6_c00045{bottom:999.481606px;}
.y5_c00045{bottom:1029.541192px;}
.y4_c00045{bottom:1080.300441px;}
.y3_c00045{bottom:1110.451053px;}
.h1_c00045{height:62.771836px;}
.h0_c00045{height:1263.000000px;}
.w0_c00045{width:892.500000px;}
.x0_c00045{left:0.000000px;}
.x2_c00045{left:82.709645px;}
.x3_c00045{left:163.710531px;}
.x1_c00045{left:436.680000px;}
@media print{
.v0_c00045{vertical-align:0.000000pt;}
.ls7_c00045{letter-spacing:-0.056016pt;}
.lse_c00045{letter-spacing:-0.043568pt;}
.lsd_c00045{letter-spacing:-0.031120pt;}
.lsc_c00045{letter-spacing:-0.024896pt;}
.lsb_c00045{letter-spacing:-0.018672pt;}
.ls9_c00045{letter-spacing:-0.012448pt;}
.lsa_c00045{letter-spacing:-0.006224pt;}
.ls8_c00045{letter-spacing:0.000000pt;}
.ls6_c00045{letter-spacing:0.006224pt;}
.ls0_c00045{letter-spacing:0.012448pt;}
.ls2_c00045{letter-spacing:0.018672pt;}
.ls4_c00045{letter-spacing:0.024896pt;}
.ls5_c00045{letter-spacing:0.062240pt;}
.ls3_c00045{letter-spacing:0.074688pt;}
.ls1_c00045{letter-spacing:0.124480pt;}
.ws14_c00045{word-spacing:-0.037344pt;}
.ws1d_c00045{word-spacing:-0.018672pt;}
.ws0_c00045{word-spacing:0.000000pt;}
.wsb_c00045{word-spacing:0.006224pt;}
.ws9_c00045{word-spacing:0.012448pt;}
.ws2_c00045{word-spacing:0.304976pt;}
.ws1f_c00045{word-spacing:0.348544pt;}
.wsa_c00045{word-spacing:0.659744pt;}
.ws1_c00045{word-spacing:2.240640pt;}
.ws13_c00045{word-spacing:2.470928pt;}
.ws12_c00045{word-spacing:2.526944pt;}
.ws15_c00045{word-spacing:2.551840pt;}
.ws17_c00045{word-spacing:4.145184pt;}
.ws16_c00045{word-spacing:4.188752pt;}
.wsf_c00045{word-spacing:6.410720pt;}
.ws1e_c00045{word-spacing:7.356768pt;}
.wse_c00045{word-spacing:8.632688pt;}
.ws6_c00045{word-spacing:8.937664pt;}
.ws7_c00045{word-spacing:9.006128pt;}
.ws1b_c00045{word-spacing:9.273760pt;}
.ws1c_c00045{word-spacing:9.603632pt;}
.ws10_c00045{word-spacing:12.149248pt;}
.ws11_c00045{word-spacing:12.180368pt;}
.ws1a_c00045{word-spacing:13.425168pt;}
.wsd_c00045{word-spacing:13.748816pt;}
.wsc_c00045{word-spacing:13.767488pt;}
.ws4_c00045{word-spacing:14.078688pt;}
.ws8_c00045{word-spacing:17.894000pt;}
.ws19_c00045{word-spacing:20.769488pt;}
.ws18_c00045{word-spacing:21.136704pt;}
.ws3_c00045{word-spacing:22.711376pt;}
.ws5_c00045{word-spacing:23.047472pt;}
._1_c00045{margin-left:-0.890032pt;}
._0_c00045{width:0.964720pt;}
.fs0_c00045{font-size:62.240000pt;}
.y0_c00045{bottom:0.000000pt;}
.y2_c00045{bottom:97.547527pt;}
.y1_c00045{bottom:115.387067pt;}
.y1e_c00045{bottom:153.546411pt;}
.y1d_c00045{bottom:180.346955pt;}
.y1c_c00045{bottom:207.226855pt;}
.y1b_c00045{bottom:252.106563pt;}
.y1a_c00045{bottom:278.986463pt;}
.y19_c00045{bottom:305.866363pt;}
.y18_c00045{bottom:332.666907pt;}
.y17_c00045{bottom:377.627527pt;}
.y16_c00045{bottom:404.507427pt;}
.y15_c00045{bottom:431.387327pt;}
.y14_c00045{bottom:476.267035pt;}
.y13_c00045{bottom:503.146935pt;}
.y12_c00045{bottom:548.186911pt;}
.y11_c00045{bottom:575.066811pt;}
.y10_c00045{bottom:601.867355pt;}
.yf_c00045{bottom:628.747255pt;}
.ye_c00045{bottom:655.547799pt;}
.yd_c00045{bottom:682.427699pt;}
.yc_c00045{bottom:709.228243pt;}
.yb_c00045{bottom:736.108143pt;}
.ya_c00045{bottom:780.987851pt;}
.y9_c00045{bottom:807.867751pt;}
.y8_c00045{bottom:834.747651pt;}
.y7_c00045{bottom:861.548195pt;}
.y6_c00045{bottom:888.428095pt;}
.y5_c00045{bottom:915.147727pt;}
.y4_c00045{bottom:960.267059pt;}
.y3_c00045{bottom:987.067603pt;}
.h1_c00045{height:55.797187pt;}
.h0_c00045{height:1122.666667pt;}
.w0_c00045{width:793.333333pt;}
.x0_c00045{left:0.000000pt;}
.x2_c00045{left:73.519684pt;}
.x3_c00045{left:145.520472pt;}
.x1_c00045{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_35c3ef2db660985a8b12e646.woff2')format("woff");}.ff1_c00046{font-family:ff1_c00046;line-height:1.106934;font-style:normal;font-weight:normal;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_62e24393530f8abfec7c00ff.woff2')format("woff");}.ff2_c00046{font-family:ff2_c00046;line-height:1.104492;font-style:normal;font-weight:normal;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_dfad23bf88835be50c026251.woff2')format("woff");}.ff3_c00046{font-family:ff3_c00046;line-height:1.133301;font-style:normal;font-weight:normal;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_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff4_c00046{font-family:ff4_c00046;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00046;src:url('chunks/assets/font_0bb55ede8ba04f15dde491ed.woff2')format("woff");}.ff5_c00046{font-family:ff5_c00046;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00046;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff6_c00046{font-family:ff6_c00046;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00046{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00046{vertical-align:-14.760000px;}
.v0_c00046{vertical-align:0.000000px;}
.v1_c00046{vertical-align:32.394024px;}
.lse_c00046{letter-spacing:-0.335249px;}
.ls12_c00046{letter-spacing:-0.116933px;}
.ls10_c00046{letter-spacing:-0.075619px;}
.ls15_c00046{letter-spacing:-0.070160px;}
.ls7_c00046{letter-spacing:-0.063018px;}
.ls9_c00046{letter-spacing:-0.042012px;}
.lsb_c00046{letter-spacing:-0.035010px;}
.ls16_c00046{letter-spacing:-0.029233px;}
.lsc_c00046{letter-spacing:-0.028008px;}
.lsa_c00046{letter-spacing:-0.021006px;}
.ls11_c00046{letter-spacing:-0.017540px;}
.ls13_c00046{letter-spacing:-0.011693px;}
.lsf_c00046{letter-spacing:-0.007002px;}
.ls8_c00046{letter-spacing:0.000000px;}
.ls4_c00046{letter-spacing:0.007002px;}
.ls0_c00046{letter-spacing:0.014004px;}
.ls2_c00046{letter-spacing:0.021006px;}
.lsd_c00046{letter-spacing:0.023281px;}
.ls1_c00046{letter-spacing:0.028008px;}
.ls5_c00046{letter-spacing:0.076006px;}
.ls14_c00046{letter-spacing:0.128626px;}
.ls3_c00046{letter-spacing:0.140040px;}
.ls6_c00046{letter-spacing:0.362492px;}
.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;}
}
.ws4_c00046{word-spacing:-58.466400px;}
.ws2_c00046{word-spacing:-19.605600px;}
.ws5_c00046{word-spacing:-16.323819px;}
.ws0_c00046{word-spacing:-12.967628px;}
.ws1_c00046{word-spacing:-12.609098px;}
.ws3_c00046{word-spacing:-10.397640px;}
.ws26_c00046{word-spacing:-0.274792px;}
.wsf_c00046{word-spacing:-0.042012px;}
.ws1c_c00046{word-spacing:-0.007002px;}
.ws6_c00046{word-spacing:0.000000px;}
.ws16_c00046{word-spacing:0.014004px;}
.ws19_c00046{word-spacing:0.343098px;}
.ws9_c00046{word-spacing:0.364104px;}
.ws25_c00046{word-spacing:0.374185px;}
.ws11_c00046{word-spacing:0.378108px;}
.ws13_c00046{word-spacing:0.385110px;}
.ws27_c00046{word-spacing:0.403418px;}
.ws17_c00046{word-spacing:0.735210px;}
.ws1e_c00046{word-spacing:2.905830px;}
.ws23_c00046{word-spacing:3.899709px;}
.ws21_c00046{word-spacing:3.993255px;}
.ws22_c00046{word-spacing:4.092648px;}
.ws20_c00046{word-spacing:4.299228px;}
.ws24_c00046{word-spacing:4.344054px;}
.ws1f_c00046{word-spacing:4.348242px;}
.ws10_c00046{word-spacing:5.006430px;}
.ws12_c00046{word-spacing:5.405544px;}
.ws1b_c00046{word-spacing:6.126750px;}
.ws1a_c00046{word-spacing:6.490854px;}
.ws7_c00046{word-spacing:7.534152px;}
.ws8_c00046{word-spacing:7.590168px;}
.ws1d_c00046{word-spacing:9.389682px;}
.wsb_c00046{word-spacing:9.725778px;}
.wsd_c00046{word-spacing:9.732780px;}
.wsa_c00046{word-spacing:9.746784px;}
.wse_c00046{word-spacing:10.460988px;}
.wsc_c00046{word-spacing:11.539296px;}
.ws18_c00046{word-spacing:15.859530px;}
.ws15_c00046{word-spacing:16.923834px;}
.ws14_c00046{word-spacing:16.951842px;}
._3_c00046{margin-left:-2.712420px;}
._0_c00046{margin-left:-1.295370px;}
._1_c00046{width:1.316376px;}
._2_c00046{width:5.930694px;}
.fc0_c00046{color:rgb(0,0,0);}
.fs2_c00046{font-size:37.809600px;}
.fs1_c00046{font-size:46.562400px;}
.fs3_c00046{font-size:58.466400px;}
.fs0_c00046{font-size:70.020000px;}
.y0_c00046{bottom:0.000000px;}
.y2_c00046{bottom:109.740968px;}
.y1_c00046{bottom:129.810450px;}
.y21_c00046{bottom:153.120600px;}
.y20_c00046{bottom:167.249548px;}
.y1f_c00046{bottom:185.249891px;}
.y1e_c00046{bottom:206.760450px;}
.y1d_c00046{bottom:221.428906px;}
.y1c_c00046{bottom:273.898393px;}
.y1b_c00046{bottom:304.049005px;}
.y1a_c00046{bottom:334.288893px;}
.y19_c00046{bottom:364.439505px;}
.y18_c00046{bottom:394.679392px;}
.y17_c00046{bottom:424.830004px;}
.y16_c00046{bottom:455.069892px;}
.y15_c00046{bottom:485.309779px;}
.y14_c00046{bottom:515.460391px;}
.y13_c00046{bottom:545.700279px;}
.y12_c00046{bottom:575.850891px;}
.y11_c00046{bottom:606.090778px;}
.y10_c00046{bottom:656.579919px;}
.yf_c00046{bottom:686.819806px;}
.ye_c00046{bottom:737.489779px;}
.yd_c00046{bottom:767.729667px;}
.yc_c00046{bottom:797.880279px;}
.yb_c00046{bottom:828.120166px;}
.ya_c00046{bottom:858.270779px;}
.y9_c00046{bottom:908.761944px;}
.y8_c00046{bottom:939.091107px;}
.y7_c00046{bottom:969.241719px;}
.y6_c00046{bottom:999.481606px;}
.y5_c00046{bottom:1029.541192px;}
.y4_c00046{bottom:1080.300441px;}
.y3_c00046{bottom:1110.451053px;}
.h8_c00046{height:39.337949px;}
.h6_c00046{height:39.338549px;}
.h7_c00046{height:54.098549px;}
.h2_c00046{height:62.600889px;}
.h1_c00046{height:62.771836px;}
.h5_c00046{height:62.778010px;}
.h4_c00046{height:73.784588px;}
.h3_c00046{height:74.022810px;}
.h0_c00046{height:1263.000000px;}
.w0_c00046{width:892.500000px;}
.x0_c00046{left:0.000000px;}
.x2_c00046{left:82.709645px;}
.x1_c00046{left:436.680000px;}
@media print{
.v2_c00046{vertical-align:-13.120000pt;}
.v0_c00046{vertical-align:0.000000pt;}
.v1_c00046{vertical-align:28.794688pt;}
.lse_c00046{letter-spacing:-0.297999pt;}
.ls12_c00046{letter-spacing:-0.103940pt;}
.ls10_c00046{letter-spacing:-0.067217pt;}
.ls15_c00046{letter-spacing:-0.062364pt;}
.ls7_c00046{letter-spacing:-0.056016pt;}
.ls9_c00046{letter-spacing:-0.037344pt;}
.lsb_c00046{letter-spacing:-0.031120pt;}
.ls16_c00046{letter-spacing:-0.025985pt;}
.lsc_c00046{letter-spacing:-0.024896pt;}
.lsa_c00046{letter-spacing:-0.018672pt;}
.ls11_c00046{letter-spacing:-0.015591pt;}
.ls13_c00046{letter-spacing:-0.010394pt;}
.lsf_c00046{letter-spacing:-0.006224pt;}
.ls8_c00046{letter-spacing:0.000000pt;}
.ls4_c00046{letter-spacing:0.006224pt;}
.ls0_c00046{letter-spacing:0.012448pt;}
.ls2_c00046{letter-spacing:0.018672pt;}
.lsd_c00046{letter-spacing:0.020694pt;}
.ls1_c00046{letter-spacing:0.024896pt;}
.ls5_c00046{letter-spacing:0.067561pt;}
.ls14_c00046{letter-spacing:0.114334pt;}
.ls3_c00046{letter-spacing:0.124480pt;}
.ls6_c00046{letter-spacing:0.322215pt;}
.ws4_c00046{word-spacing:-51.970133pt;}
.ws2_c00046{word-spacing:-17.427200pt;}
.ws5_c00046{word-spacing:-14.510061pt;}
.ws0_c00046{word-spacing:-11.526781pt;}
.ws1_c00046{word-spacing:-11.208087pt;}
.ws3_c00046{word-spacing:-9.242347pt;}
.ws26_c00046{word-spacing:-0.244260pt;}
.wsf_c00046{word-spacing:-0.037344pt;}
.ws1c_c00046{word-spacing:-0.006224pt;}
.ws6_c00046{word-spacing:0.000000pt;}
.ws16_c00046{word-spacing:0.012448pt;}
.ws19_c00046{word-spacing:0.304976pt;}
.ws9_c00046{word-spacing:0.323648pt;}
.ws25_c00046{word-spacing:0.332609pt;}
.ws11_c00046{word-spacing:0.336096pt;}
.ws13_c00046{word-spacing:0.342320pt;}
.ws27_c00046{word-spacing:0.358594pt;}
.ws17_c00046{word-spacing:0.653520pt;}
.ws1e_c00046{word-spacing:2.582960pt;}
.ws23_c00046{word-spacing:3.466408pt;}
.ws21_c00046{word-spacing:3.549560pt;}
.ws22_c00046{word-spacing:3.637909pt;}
.ws20_c00046{word-spacing:3.821536pt;}
.ws24_c00046{word-spacing:3.861381pt;}
.ws1f_c00046{word-spacing:3.865104pt;}
.ws10_c00046{word-spacing:4.450160pt;}
.ws12_c00046{word-spacing:4.804928pt;}
.ws1b_c00046{word-spacing:5.446000pt;}
.ws1a_c00046{word-spacing:5.769648pt;}
.ws7_c00046{word-spacing:6.697024pt;}
.ws8_c00046{word-spacing:6.746816pt;}
.ws1d_c00046{word-spacing:8.346384pt;}
.wsb_c00046{word-spacing:8.645136pt;}
.wsd_c00046{word-spacing:8.651360pt;}
.wsa_c00046{word-spacing:8.663808pt;}
.wse_c00046{word-spacing:9.298656pt;}
.wsc_c00046{word-spacing:10.257152pt;}
.ws18_c00046{word-spacing:14.097360pt;}
.ws15_c00046{word-spacing:15.043408pt;}
.ws14_c00046{word-spacing:15.068304pt;}
._3_c00046{margin-left:-2.411040pt;}
._0_c00046{margin-left:-1.151440pt;}
._1_c00046{width:1.170112pt;}
._2_c00046{width:5.271728pt;}
.fs2_c00046{font-size:33.608533pt;}
.fs1_c00046{font-size:41.388800pt;}
.fs3_c00046{font-size:51.970133pt;}
.fs0_c00046{font-size:62.240000pt;}
.y0_c00046{bottom:0.000000pt;}
.y2_c00046{bottom:97.547527pt;}
.y1_c00046{bottom:115.387067pt;}
.y21_c00046{bottom:136.107200pt;}
.y20_c00046{bottom:148.666265pt;}
.y1f_c00046{bottom:164.666570pt;}
.y1e_c00046{bottom:183.787067pt;}
.y1d_c00046{bottom:196.825695pt;}
.y1c_c00046{bottom:243.465239pt;}
.y1b_c00046{bottom:270.265783pt;}
.y1a_c00046{bottom:297.145683pt;}
.y19_c00046{bottom:323.946227pt;}
.y18_c00046{bottom:350.826127pt;}
.y17_c00046{bottom:377.626671pt;}
.y16_c00046{bottom:404.506571pt;}
.y15_c00046{bottom:431.386471pt;}
.y14_c00046{bottom:458.187015pt;}
.y13_c00046{bottom:485.066915pt;}
.y12_c00046{bottom:511.867459pt;}
.y11_c00046{bottom:538.747359pt;}
.y10_c00046{bottom:583.626595pt;}
.yf_c00046{bottom:610.506495pt;}
.ye_c00046{bottom:655.546471pt;}
.yd_c00046{bottom:682.426371pt;}
.yc_c00046{bottom:709.226915pt;}
.yb_c00046{bottom:736.106815pt;}
.ya_c00046{bottom:762.907359pt;}
.y9_c00046{bottom:807.788395pt;}
.y8_c00046{bottom:834.747651pt;}
.y7_c00046{bottom:861.548195pt;}
.y6_c00046{bottom:888.428095pt;}
.y5_c00046{bottom:915.147727pt;}
.y4_c00046{bottom:960.267059pt;}
.y3_c00046{bottom:987.067603pt;}
.h8_c00046{height:34.967066pt;}
.h6_c00046{height:34.967599pt;}
.h7_c00046{height:48.087599pt;}
.h2_c00046{height:55.645234pt;}
.h1_c00046{height:55.797187pt;}
.h5_c00046{height:55.802676pt;}
.h4_c00046{height:65.586300pt;}
.h3_c00046{height:65.798054pt;}
.h0_c00046{height:1122.666667pt;}
.w0_c00046{width:793.333333pt;}
.x0_c00046{left:0.000000pt;}
.x2_c00046{left:73.519684pt;}
.x1_c00046{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_440330de743bbbfff204eb03.woff2')format("woff");}.ff1_c00047{font-family:ff1_c00047;line-height:1.106934;font-style:normal;font-weight:normal;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_71b4f5b65f2e75277db033e2.woff2')format("woff");}.ff2_c00047{font-family:ff2_c00047;line-height:1.104492;font-style:normal;font-weight:normal;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_d67cadd6e8bebb647f433065.woff2')format("woff");}.ff3_c00047{font-family:ff3_c00047;line-height:1.133301;font-style:normal;font-weight:normal;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_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff4_c00047{font-family:ff4_c00047;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00047;src:url('chunks/assets/font_e93a4ad4fe5597c647a62120.woff2')format("woff");}.ff5_c00047{font-family:ff5_c00047;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00047;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff6_c00047{font-family:ff6_c00047;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00047{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00047{vertical-align:-14.760600px;}
.v0_c00047{vertical-align:0.000000px;}
.v1_c00047{vertical-align:32.397588px;}
.ls12_c00047{letter-spacing:-0.304025px;}
.lsb_c00047{letter-spacing:-0.077022px;}
.ls11_c00047{letter-spacing:-0.075619px;}
.ls5_c00047{letter-spacing:-0.063018px;}
.lsc_c00047{letter-spacing:-0.056016px;}
.ls13_c00047{letter-spacing:-0.052620px;}
.ls10_c00047{letter-spacing:-0.049014px;}
.ls7_c00047{letter-spacing:-0.042012px;}
.ls9_c00047{letter-spacing:-0.035010px;}
.lsa_c00047{letter-spacing:-0.028008px;}
.lse_c00047{letter-spacing:-0.021006px;}
.ls14_c00047{letter-spacing:-0.017540px;}
.lsf_c00047{letter-spacing:-0.014004px;}
.lsd_c00047{letter-spacing:-0.007002px;}
.ls16_c00047{letter-spacing:-0.005847px;}
.ls6_c00047{letter-spacing:0.000000px;}
.ls2_c00047{letter-spacing:0.007002px;}
.ls4_c00047{letter-spacing:0.011693px;}
.ls3_c00047{letter-spacing:0.014004px;}
.ls8_c00047{letter-spacing:0.023281px;}
.ls1_c00047{letter-spacing:0.028008px;}
.ls0_c00047{letter-spacing:0.035010px;}
.ls15_c00047{letter-spacing:0.081853px;}
.ls17_c00047{letter-spacing:0.304025px;}
.sc__c00047{text-shadow:none;}
.sc0_c00047{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00047{-webkit-text-stroke:0px transparent;}
.sc0_c00047{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00047{word-spacing:-58.466400px;}
.ws1_c00047{word-spacing:-19.465560px;}
.ws0_c00047{word-spacing:-12.967628px;}
.ws2_c00047{word-spacing:-10.397640px;}
.ws4_c00047{word-spacing:0.000000px;}
.wsc_c00047{word-spacing:0.042012px;}
.ws8_c00047{word-spacing:0.063018px;}
.ws28_c00047{word-spacing:0.070160px;}
.wsf_c00047{word-spacing:0.364104px;}
.ws22_c00047{word-spacing:0.378108px;}
.wsb_c00047{word-spacing:0.385110px;}
.wse_c00047{word-spacing:0.728208px;}
.wsa_c00047{word-spacing:1.463418px;}
.ws9_c00047{word-spacing:1.813518px;}
.ws6_c00047{word-spacing:2.898828px;}
.ws17_c00047{word-spacing:3.227922px;}
.ws5_c00047{word-spacing:3.269934px;}
.wsd_c00047{word-spacing:3.592026px;}
.ws11_c00047{word-spacing:4.705344px;}
.ws14_c00047{word-spacing:5.405544px;}
.ws20_c00047{word-spacing:6.119748px;}
.ws12_c00047{word-spacing:8.234352px;}
.ws13_c00047{word-spacing:8.241354px;}
.ws7_c00047{word-spacing:8.297370px;}
.ws1b_c00047{word-spacing:11.497284px;}
.ws1c_c00047{word-spacing:11.511288px;}
.ws18_c00047{word-spacing:11.553300px;}
.ws21_c00047{word-spacing:11.896398px;}
.ws1d_c00047{word-spacing:13.289796px;}
.ws16_c00047{word-spacing:14.403114px;}
.ws1a_c00047{word-spacing:14.760216px;}
.ws15_c00047{word-spacing:15.117318px;}
.ws19_c00047{word-spacing:15.138324px;}
.ws27_c00047{word-spacing:18.738481px;}
.ws24_c00047{word-spacing:18.785254px;}
.ws23_c00047{word-spacing:19.036660px;}
.ws25_c00047{word-spacing:19.083433px;}
.ws26_c00047{word-spacing:19.112666px;}
.ws1e_c00047{word-spacing:19.773648px;}
.ws1f_c00047{word-spacing:19.787652px;}
.ws10_c00047{word-spacing:24.478992px;}
._3_c00047{margin-left:-2.714886px;}
._1_c00047{margin-left:-1.155330px;}
._0_c00047{width:1.089695px;}
._2_c00047{width:5.930694px;}
._4_c00047{width:18.125483px;}
.fc0_c00047{color:rgb(0,0,0);}
.fs2_c00047{font-size:37.809600px;}
.fs1_c00047{font-size:46.562400px;}
.fs3_c00047{font-size:58.466400px;}
.fs0_c00047{font-size:70.020000px;}
.y0_c00047{bottom:0.000000px;}
.y2_c00047{bottom:109.740968px;}
.y1_c00047{bottom:129.810450px;}
.y21_c00047{bottom:169.860450px;}
.y20_c00047{bottom:191.460600px;}
.y1f_c00047{bottom:226.554731px;}
.y1e_c00047{bottom:254.364924px;}
.y1d_c00047{bottom:284.604812px;}
.y1c_c00047{bottom:314.755424px;}
.y1b_c00047{bottom:344.995311px;}
.y1a_c00047{bottom:375.145923px;}
.y19_c00047{bottom:405.385811px;}
.y18_c00047{bottom:435.536423px;}
.y17_c00047{bottom:465.776310px;}
.y16_c00047{bottom:495.926922px;}
.y15_c00047{bottom:526.166810px;}
.y14_c00047{bottom:556.317422px;}
.y13_c00047{bottom:586.557309px;}
.y12_c00047{bottom:616.707921px;}
.y11_c00047{bottom:646.947809px;}
.y10_c00047{bottom:677.098420px;}
.yf_c00047{bottom:707.338308px;}
.ye_c00047{bottom:757.827979px;}
.yd_c00047{bottom:788.067867px;}
.yc_c00047{bottom:818.307754px;}
.yb_c00047{bottom:848.458367px;}
.ya_c00047{bottom:878.608979px;}
.y9_c00047{bottom:929.278951px;}
.y8_c00047{bottom:959.518839px;}
.y7_c00047{bottom:989.669451px;}
.y6_c00047{bottom:1019.909339px;}
.y5_c00047{bottom:1050.059951px;}
.y4_c00047{bottom:1080.299838px;}
.y3_c00047{bottom:1110.451053px;}
.h4_c00047{height:39.337949px;}
.h5_c00047{height:54.098549px;}
.h1_c00047{height:62.771836px;}
.h3_c00047{height:62.794714px;}
.h2_c00047{height:74.026374px;}
.h0_c00047{height:1263.000000px;}
.w0_c00047{width:892.500000px;}
.x0_c00047{left:0.000000px;}
.x2_c00047{left:82.709645px;}
.x1_c00047{left:436.680000px;}
@media print{
.v2_c00047{vertical-align:-13.120533pt;}
.v0_c00047{vertical-align:0.000000pt;}
.v1_c00047{vertical-align:28.797856pt;}
.ls12_c00047{letter-spacing:-0.270245pt;}
.lsb_c00047{letter-spacing:-0.068464pt;}
.ls11_c00047{letter-spacing:-0.067217pt;}
.ls5_c00047{letter-spacing:-0.056016pt;}
.lsc_c00047{letter-spacing:-0.049792pt;}
.ls13_c00047{letter-spacing:-0.046773pt;}
.ls10_c00047{letter-spacing:-0.043568pt;}
.ls7_c00047{letter-spacing:-0.037344pt;}
.ls9_c00047{letter-spacing:-0.031120pt;}
.lsa_c00047{letter-spacing:-0.024896pt;}
.lse_c00047{letter-spacing:-0.018672pt;}
.ls14_c00047{letter-spacing:-0.015591pt;}
.lsf_c00047{letter-spacing:-0.012448pt;}
.lsd_c00047{letter-spacing:-0.006224pt;}
.ls16_c00047{letter-spacing:-0.005197pt;}
.ls6_c00047{letter-spacing:0.000000pt;}
.ls2_c00047{letter-spacing:0.006224pt;}
.ls4_c00047{letter-spacing:0.010394pt;}
.ls3_c00047{letter-spacing:0.012448pt;}
.ls8_c00047{letter-spacing:0.020694pt;}
.ls1_c00047{letter-spacing:0.024896pt;}
.ls0_c00047{letter-spacing:0.031120pt;}
.ls15_c00047{letter-spacing:0.072758pt;}
.ls17_c00047{letter-spacing:0.270245pt;}
.ws3_c00047{word-spacing:-51.970133pt;}
.ws1_c00047{word-spacing:-17.302720pt;}
.ws0_c00047{word-spacing:-11.526781pt;}
.ws2_c00047{word-spacing:-9.242347pt;}
.ws4_c00047{word-spacing:0.000000pt;}
.wsc_c00047{word-spacing:0.037344pt;}
.ws8_c00047{word-spacing:0.056016pt;}
.ws28_c00047{word-spacing:0.062364pt;}
.wsf_c00047{word-spacing:0.323648pt;}
.ws22_c00047{word-spacing:0.336096pt;}
.wsb_c00047{word-spacing:0.342320pt;}
.wse_c00047{word-spacing:0.647296pt;}
.wsa_c00047{word-spacing:1.300816pt;}
.ws9_c00047{word-spacing:1.612016pt;}
.ws6_c00047{word-spacing:2.576736pt;}
.ws17_c00047{word-spacing:2.869264pt;}
.ws5_c00047{word-spacing:2.906608pt;}
.wsd_c00047{word-spacing:3.192912pt;}
.ws11_c00047{word-spacing:4.182528pt;}
.ws14_c00047{word-spacing:4.804928pt;}
.ws20_c00047{word-spacing:5.439776pt;}
.ws12_c00047{word-spacing:7.319424pt;}
.ws13_c00047{word-spacing:7.325648pt;}
.ws7_c00047{word-spacing:7.375440pt;}
.ws1b_c00047{word-spacing:10.219808pt;}
.ws1c_c00047{word-spacing:10.232256pt;}
.ws18_c00047{word-spacing:10.269600pt;}
.ws21_c00047{word-spacing:10.574576pt;}
.ws1d_c00047{word-spacing:11.813152pt;}
.ws16_c00047{word-spacing:12.802768pt;}
.ws1a_c00047{word-spacing:13.120192pt;}
.ws15_c00047{word-spacing:13.437616pt;}
.ws19_c00047{word-spacing:13.456288pt;}
.ws27_c00047{word-spacing:16.656428pt;}
.ws24_c00047{word-spacing:16.698004pt;}
.ws23_c00047{word-spacing:16.921475pt;}
.ws25_c00047{word-spacing:16.963052pt;}
.ws26_c00047{word-spacing:16.989037pt;}
.ws1e_c00047{word-spacing:17.576576pt;}
.ws1f_c00047{word-spacing:17.589024pt;}
.ws10_c00047{word-spacing:21.759104pt;}
._3_c00047{margin-left:-2.413232pt;}
._1_c00047{margin-left:-1.026960pt;}
._0_c00047{width:0.968618pt;}
._2_c00047{width:5.271728pt;}
._4_c00047{width:16.111541pt;}
.fs2_c00047{font-size:33.608533pt;}
.fs1_c00047{font-size:41.388800pt;}
.fs3_c00047{font-size:51.970133pt;}
.fs0_c00047{font-size:62.240000pt;}
.y0_c00047{bottom:0.000000pt;}
.y2_c00047{bottom:97.547527pt;}
.y1_c00047{bottom:115.387067pt;}
.y21_c00047{bottom:150.987067pt;}
.y20_c00047{bottom:170.187200pt;}
.y1f_c00047{bottom:201.381983pt;}
.y1e_c00047{bottom:226.102155pt;}
.y1d_c00047{bottom:252.982055pt;}
.y1c_c00047{bottom:279.782599pt;}
.y1b_c00047{bottom:306.662499pt;}
.y1a_c00047{bottom:333.463043pt;}
.y19_c00047{bottom:360.342943pt;}
.y18_c00047{bottom:387.143487pt;}
.y17_c00047{bottom:414.023387pt;}
.y16_c00047{bottom:440.823931pt;}
.y15_c00047{bottom:467.703831pt;}
.y14_c00047{bottom:494.504375pt;}
.y13_c00047{bottom:521.384275pt;}
.y12_c00047{bottom:548.184819pt;}
.y11_c00047{bottom:575.064719pt;}
.y10_c00047{bottom:601.865263pt;}
.yf_c00047{bottom:628.745163pt;}
.ye_c00047{bottom:673.624871pt;}
.yd_c00047{bottom:700.504771pt;}
.yc_c00047{bottom:727.384671pt;}
.yb_c00047{bottom:754.185215pt;}
.ya_c00047{bottom:780.985759pt;}
.y9_c00047{bottom:826.025735pt;}
.y8_c00047{bottom:852.905635pt;}
.y7_c00047{bottom:879.706179pt;}
.y6_c00047{bottom:906.586079pt;}
.y5_c00047{bottom:933.386623pt;}
.y4_c00047{bottom:960.266523pt;}
.y3_c00047{bottom:987.067603pt;}
.h4_c00047{height:34.967066pt;}
.h5_c00047{height:48.087599pt;}
.h1_c00047{height:55.797187pt;}
.h3_c00047{height:55.817523pt;}
.h2_c00047{height:65.801222pt;}
.h0_c00047{height:1122.666667pt;}
.w0_c00047{width:793.333333pt;}
.x0_c00047{left:0.000000pt;}
.x2_c00047{left:73.519684pt;}
.x1_c00047{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3db924db2c7b60bdbb759093.woff2')format("woff");}.ff1_c00048{font-family:ff1_c00048;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00048{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00048{vertical-align:0.000000px;}
.ls3_c00048{letter-spacing:-0.063018px;}
.lsa_c00048{letter-spacing:-0.042012px;}
.ls7_c00048{letter-spacing:-0.035010px;}
.ls8_c00048{letter-spacing:-0.028008px;}
.ls6_c00048{letter-spacing:-0.021006px;}
.ls9_c00048{letter-spacing:-0.014004px;}
.ls5_c00048{letter-spacing:-0.007002px;}
.ls4_c00048{letter-spacing:0.000000px;}
.ls1_c00048{letter-spacing:0.007002px;}
.ls2_c00048{letter-spacing:0.021006px;}
.ls0_c00048{letter-spacing:0.028008px;}
.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;}
}
.ws17_c00048{word-spacing:-0.343098px;}
.ws1b_c00048{word-spacing:-0.035010px;}
.ws1a_c00048{word-spacing:-0.014004px;}
.ws0_c00048{word-spacing:0.000000px;}
.ws3_c00048{word-spacing:0.007002px;}
.wse_c00048{word-spacing:0.371106px;}
.wsb_c00048{word-spacing:2.149614px;}
.wsa_c00048{word-spacing:2.163618px;}
.ws12_c00048{word-spacing:2.499714px;}
.ws11_c00048{word-spacing:2.863818px;}
.wsd_c00048{word-spacing:3.599028px;}
.wsc_c00048{word-spacing:3.620034px;}
.ws1_c00048{word-spacing:4.635324px;}
.ws2_c00048{word-spacing:5.034438px;}
.ws7_c00048{word-spacing:5.398542px;}
.ws8_c00048{word-spacing:5.426550px;}
.ws18_c00048{word-spacing:6.490854px;}
.ws6_c00048{word-spacing:7.576164px;}
.ws10_c00048{word-spacing:10.075878px;}
.wsf_c00048{word-spacing:10.110888px;}
.ws14_c00048{word-spacing:12.246498px;}
.ws13_c00048{word-spacing:12.589596px;}
.ws19_c00048{word-spacing:13.324806px;}
.ws15_c00048{word-spacing:21.587166px;}
.ws16_c00048{word-spacing:21.594168px;}
.ws9_c00048{word-spacing:22.665474px;}
.ws4_c00048{word-spacing:27.741924px;}
.ws5_c00048{word-spacing:27.769932px;}
._0_c00048{margin-left:-1.043298px;}
._1_c00048{width:1.050300px;}
.fc0_c00048{color:rgb(0,0,0);}
.fs0_c00048{font-size:70.020000px;}
.y0_c00048{bottom:0.000000px;}
.y2_c00048{bottom:109.740968px;}
.y1_c00048{bottom:129.810450px;}
.y22_c00048{bottom:174.444699px;}
.y21_c00048{bottom:204.684587px;}
.y20_c00048{bottom:234.835199px;}
.y1f_c00048{bottom:265.075086px;}
.y1e_c00048{bottom:295.225698px;}
.y1d_c00048{bottom:325.465586px;}
.y1c_c00048{bottom:355.616198px;}
.y1b_c00048{bottom:385.856085px;}
.y1a_c00048{bottom:416.006697px;}
.y19_c00048{bottom:446.246585px;}
.y18_c00048{bottom:476.397197px;}
.y17_c00048{bottom:506.637084px;}
.y16_c00048{bottom:536.787696px;}
.y15_c00048{bottom:567.027584px;}
.y14_c00048{bottom:597.087170px;}
.y13_c00048{bottom:627.327057px;}
.y12_c00048{bottom:657.477669px;}
.y11_c00048{bottom:687.717557px;}
.y10_c00048{bottom:717.868169px;}
.yf_c00048{bottom:748.108056px;}
.ye_c00048{bottom:778.258668px;}
.yd_c00048{bottom:808.498556px;}
.yc_c00048{bottom:838.649168px;}
.yb_c00048{bottom:868.889055px;}
.ya_c00048{bottom:899.039667px;}
.y9_c00048{bottom:929.279555px;}
.y8_c00048{bottom:959.519442px;}
.y7_c00048{bottom:989.670054px;}
.y6_c00048{bottom:1019.909942px;}
.y5_c00048{bottom:1050.060553px;}
.y4_c00048{bottom:1080.300441px;}
.y3_c00048{bottom:1110.451053px;}
.h1_c00048{height:62.771836px;}
.h0_c00048{height:1263.000000px;}
.w0_c00048{width:892.500000px;}
.x0_c00048{left:0.000000px;}
.x2_c00048{left:82.709645px;}
.x1_c00048{left:436.680000px;}
@media print{
.v0_c00048{vertical-align:0.000000pt;}
.ls3_c00048{letter-spacing:-0.056016pt;}
.lsa_c00048{letter-spacing:-0.037344pt;}
.ls7_c00048{letter-spacing:-0.031120pt;}
.ls8_c00048{letter-spacing:-0.024896pt;}
.ls6_c00048{letter-spacing:-0.018672pt;}
.ls9_c00048{letter-spacing:-0.012448pt;}
.ls5_c00048{letter-spacing:-0.006224pt;}
.ls4_c00048{letter-spacing:0.000000pt;}
.ls1_c00048{letter-spacing:0.006224pt;}
.ls2_c00048{letter-spacing:0.018672pt;}
.ls0_c00048{letter-spacing:0.024896pt;}
.ws17_c00048{word-spacing:-0.304976pt;}
.ws1b_c00048{word-spacing:-0.031120pt;}
.ws1a_c00048{word-spacing:-0.012448pt;}
.ws0_c00048{word-spacing:0.000000pt;}
.ws3_c00048{word-spacing:0.006224pt;}
.wse_c00048{word-spacing:0.329872pt;}
.wsb_c00048{word-spacing:1.910768pt;}
.wsa_c00048{word-spacing:1.923216pt;}
.ws12_c00048{word-spacing:2.221968pt;}
.ws11_c00048{word-spacing:2.545616pt;}
.wsd_c00048{word-spacing:3.199136pt;}
.wsc_c00048{word-spacing:3.217808pt;}
.ws1_c00048{word-spacing:4.120288pt;}
.ws2_c00048{word-spacing:4.475056pt;}
.ws7_c00048{word-spacing:4.798704pt;}
.ws8_c00048{word-spacing:4.823600pt;}
.ws18_c00048{word-spacing:5.769648pt;}
.ws6_c00048{word-spacing:6.734368pt;}
.ws10_c00048{word-spacing:8.956336pt;}
.wsf_c00048{word-spacing:8.987456pt;}
.ws14_c00048{word-spacing:10.885776pt;}
.ws13_c00048{word-spacing:11.190752pt;}
.ws19_c00048{word-spacing:11.844272pt;}
.ws15_c00048{word-spacing:19.188592pt;}
.ws16_c00048{word-spacing:19.194816pt;}
.ws9_c00048{word-spacing:20.147088pt;}
.ws4_c00048{word-spacing:24.659488pt;}
.ws5_c00048{word-spacing:24.684384pt;}
._0_c00048{margin-left:-0.927376pt;}
._1_c00048{width:0.933600pt;}
.fs0_c00048{font-size:62.240000pt;}
.y0_c00048{bottom:0.000000pt;}
.y2_c00048{bottom:97.547527pt;}
.y1_c00048{bottom:115.387067pt;}
.y22_c00048{bottom:155.061955pt;}
.y21_c00048{bottom:181.941855pt;}
.y20_c00048{bottom:208.742399pt;}
.y1f_c00048{bottom:235.622299pt;}
.y1e_c00048{bottom:262.422843pt;}
.y1d_c00048{bottom:289.302743pt;}
.y1c_c00048{bottom:316.103287pt;}
.y1b_c00048{bottom:342.983187pt;}
.y1a_c00048{bottom:369.783731pt;}
.y19_c00048{bottom:396.663631pt;}
.y18_c00048{bottom:423.464175pt;}
.y17_c00048{bottom:450.344075pt;}
.y16_c00048{bottom:477.144619pt;}
.y15_c00048{bottom:504.024519pt;}
.y14_c00048{bottom:530.744151pt;}
.y13_c00048{bottom:557.624051pt;}
.y12_c00048{bottom:584.424595pt;}
.y11_c00048{bottom:611.304495pt;}
.y10_c00048{bottom:638.105039pt;}
.yf_c00048{bottom:664.984939pt;}
.ye_c00048{bottom:691.785483pt;}
.yd_c00048{bottom:718.665383pt;}
.yc_c00048{bottom:745.465927pt;}
.yb_c00048{bottom:772.345827pt;}
.ya_c00048{bottom:799.146371pt;}
.y9_c00048{bottom:826.026271pt;}
.y8_c00048{bottom:852.906171pt;}
.y7_c00048{bottom:879.706715pt;}
.y6_c00048{bottom:906.586615pt;}
.y5_c00048{bottom:933.387159pt;}
.y4_c00048{bottom:960.267059pt;}
.y3_c00048{bottom:987.067603pt;}
.h1_c00048{height:55.797187pt;}
.h0_c00048{height:1122.666667pt;}
.w0_c00048{width:793.333333pt;}
.x0_c00048{left:0.000000pt;}
.x2_c00048{left:73.519684pt;}
.x1_c00048{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_00c1d08456b06cfa8d8ed406.woff2')format("woff");}.ff1_c00049{font-family:ff1_c00049;line-height:1.106934;font-style:normal;font-weight:normal;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_1ee43e7d47800e7e4c18dd52.woff2')format("woff");}.ff2_c00049{font-family:ff2_c00049;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00049{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00049{vertical-align:0.000000px;}
.ls9_c00049{letter-spacing:-0.154044px;}
.lsa_c00049{letter-spacing:-0.113957px;}
.ls7_c00049{letter-spacing:-0.063018px;}
.lsf_c00049{letter-spacing:-0.042012px;}
.lsb_c00049{letter-spacing:-0.035010px;}
.lsc_c00049{letter-spacing:-0.028008px;}
.lse_c00049{letter-spacing:-0.021006px;}
.lsd_c00049{letter-spacing:-0.014004px;}
.ls10_c00049{letter-spacing:-0.007002px;}
.ls8_c00049{letter-spacing:0.000000px;}
.ls4_c00049{letter-spacing:0.007002px;}
.ls3_c00049{letter-spacing:0.014004px;}
.ls5_c00049{letter-spacing:0.042012px;}
.ls0_c00049{letter-spacing:0.147042px;}
.ls1_c00049{letter-spacing:0.154044px;}
.ls6_c00049{letter-spacing:0.175050px;}
.ls2_c00049{letter-spacing:0.182052px;}
.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;}
}
.ws18_c00049{word-spacing:-0.546156px;}
.ws11_c00049{word-spacing:-0.007002px;}
.ws0_c00049{word-spacing:0.000000px;}
.wsb_c00049{word-spacing:0.021006px;}
.ws1_c00049{word-spacing:0.140040px;}
.ws4_c00049{word-spacing:0.151943px;}
.ws8_c00049{word-spacing:0.700200px;}
.ws7_c00049{word-spacing:0.735210px;}
.wsd_c00049{word-spacing:2.142612px;}
.wsc_c00049{word-spacing:2.163618px;}
.ws16_c00049{word-spacing:2.464704px;}
.ws14_c00049{word-spacing:3.970134px;}
.ws15_c00049{word-spacing:3.984138px;}
.ws9_c00049{word-spacing:4.320234px;}
.wse_c00049{word-spacing:5.013432px;}
.wsf_c00049{word-spacing:5.069448px;}
.wsa_c00049{word-spacing:7.919262px;}
.ws13_c00049{word-spacing:11.168190px;}
.ws12_c00049{word-spacing:11.182194px;}
.ws2_c00049{word-spacing:13.156758px;}
.ws10_c00049{word-spacing:14.760216px;}
.ws5_c00049{word-spacing:15.810516px;}
.ws6_c00049{word-spacing:15.859530px;}
.ws17_c00049{word-spacing:16.909830px;}
.ws3_c00049{word-spacing:48.432834px;}
._1_c00049{margin-left:-1.113318px;}
._0_c00049{width:1.204344px;}
.fc0_c00049{color:rgb(0,0,0);}
.fs0_c00049{font-size:70.020000px;}
.fs1_c00049{font-size:75.971400px;}
.y0_c00049{bottom:0.000000px;}
.y2_c00049{bottom:109.740968px;}
.y1_c00049{bottom:129.810450px;}
.y22_c00049{bottom:171.027592px;}
.y21_c00049{bottom:201.267480px;}
.y20_c00049{bottom:231.418092px;}
.y1f_c00049{bottom:261.657979px;}
.y1e_c00049{bottom:291.808591px;}
.y1d_c00049{bottom:322.048479px;}
.y1c_c00049{bottom:352.199091px;}
.y1b_c00049{bottom:382.438978px;}
.y1a_c00049{bottom:412.498564px;}
.y19_c00049{bottom:442.738452px;}
.y18_c00049{bottom:472.889064px;}
.y17_c00049{bottom:503.128951px;}
.y16_c00049{bottom:533.279563px;}
.y15_c00049{bottom:563.519451px;}
.y14_c00049{bottom:593.670063px;}
.y13_c00049{bottom:623.909950px;}
.y12_c00049{bottom:654.060562px;}
.y11_c00049{bottom:684.300450px;}
.y10_c00049{bottom:709.050450px;}
.yf_c00049{bottom:758.189186px;}
.ye_c00049{bottom:788.339797px;}
.yd_c00049{bottom:818.579685px;}
.yc_c00049{bottom:848.730297px;}
.yb_c00049{bottom:878.970185px;}
.ya_c00049{bottom:899.039667px;}
.y9_c00049{bottom:929.279555px;}
.y8_c00049{bottom:959.519442px;}
.y7_c00049{bottom:989.670054px;}
.y6_c00049{bottom:1019.909942px;}
.y5_c00049{bottom:1050.060553px;}
.y4_c00049{bottom:1080.300441px;}
.y3_c00049{bottom:1110.451053px;}
.h1_c00049{height:62.771836px;}
.h2_c00049{height:63.216299px;}
.h3_c00049{height:68.589413px;}
.h0_c00049{height:1263.000000px;}
.w0_c00049{width:892.500000px;}
.x0_c00049{left:0.000000px;}
.x2_c00049{left:82.709645px;}
.x4_c00049{left:111.150000px;}
.x3_c00049{left:134.370401px;}
.x1_c00049{left:436.680000px;}
@media print{
.v0_c00049{vertical-align:0.000000pt;}
.ls9_c00049{letter-spacing:-0.136928pt;}
.lsa_c00049{letter-spacing:-0.101295pt;}
.ls7_c00049{letter-spacing:-0.056016pt;}
.lsf_c00049{letter-spacing:-0.037344pt;}
.lsb_c00049{letter-spacing:-0.031120pt;}
.lsc_c00049{letter-spacing:-0.024896pt;}
.lse_c00049{letter-spacing:-0.018672pt;}
.lsd_c00049{letter-spacing:-0.012448pt;}
.ls10_c00049{letter-spacing:-0.006224pt;}
.ls8_c00049{letter-spacing:0.000000pt;}
.ls4_c00049{letter-spacing:0.006224pt;}
.ls3_c00049{letter-spacing:0.012448pt;}
.ls5_c00049{letter-spacing:0.037344pt;}
.ls0_c00049{letter-spacing:0.130704pt;}
.ls1_c00049{letter-spacing:0.136928pt;}
.ls6_c00049{letter-spacing:0.155600pt;}
.ls2_c00049{letter-spacing:0.161824pt;}
.ws18_c00049{word-spacing:-0.485472pt;}
.ws11_c00049{word-spacing:-0.006224pt;}
.ws0_c00049{word-spacing:0.000000pt;}
.wsb_c00049{word-spacing:0.018672pt;}
.ws1_c00049{word-spacing:0.124480pt;}
.ws4_c00049{word-spacing:0.135060pt;}
.ws8_c00049{word-spacing:0.622400pt;}
.ws7_c00049{word-spacing:0.653520pt;}
.wsd_c00049{word-spacing:1.904544pt;}
.wsc_c00049{word-spacing:1.923216pt;}
.ws16_c00049{word-spacing:2.190848pt;}
.ws14_c00049{word-spacing:3.529008pt;}
.ws15_c00049{word-spacing:3.541456pt;}
.ws9_c00049{word-spacing:3.840208pt;}
.wse_c00049{word-spacing:4.456384pt;}
.wsf_c00049{word-spacing:4.506176pt;}
.wsa_c00049{word-spacing:7.039344pt;}
.ws13_c00049{word-spacing:9.927280pt;}
.ws12_c00049{word-spacing:9.939728pt;}
.ws2_c00049{word-spacing:11.694896pt;}
.ws10_c00049{word-spacing:13.120192pt;}
.ws5_c00049{word-spacing:14.053792pt;}
.ws6_c00049{word-spacing:14.097360pt;}
.ws17_c00049{word-spacing:15.030960pt;}
.ws3_c00049{word-spacing:43.051408pt;}
._1_c00049{margin-left:-0.989616pt;}
._0_c00049{width:1.070528pt;}
.fs0_c00049{font-size:62.240000pt;}
.fs1_c00049{font-size:67.530133pt;}
.y0_c00049{bottom:0.000000pt;}
.y2_c00049{bottom:97.547527pt;}
.y1_c00049{bottom:115.387067pt;}
.y22_c00049{bottom:152.024527pt;}
.y21_c00049{bottom:178.904427pt;}
.y20_c00049{bottom:205.704971pt;}
.y1f_c00049{bottom:232.584871pt;}
.y1e_c00049{bottom:259.385415pt;}
.y1d_c00049{bottom:286.265315pt;}
.y1c_c00049{bottom:313.065859pt;}
.y1b_c00049{bottom:339.945759pt;}
.y1a_c00049{bottom:366.665391pt;}
.y19_c00049{bottom:393.545291pt;}
.y18_c00049{bottom:420.345835pt;}
.y17_c00049{bottom:447.225735pt;}
.y16_c00049{bottom:474.026279pt;}
.y15_c00049{bottom:500.906179pt;}
.y14_c00049{bottom:527.706723pt;}
.y13_c00049{bottom:554.586623pt;}
.y12_c00049{bottom:581.387167pt;}
.y11_c00049{bottom:608.267067pt;}
.y10_c00049{bottom:630.267067pt;}
.yf_c00049{bottom:673.945943pt;}
.ye_c00049{bottom:700.746487pt;}
.yd_c00049{bottom:727.626387pt;}
.yc_c00049{bottom:754.426931pt;}
.yb_c00049{bottom:781.306831pt;}
.ya_c00049{bottom:799.146371pt;}
.y9_c00049{bottom:826.026271pt;}
.y8_c00049{bottom:852.906171pt;}
.y7_c00049{bottom:879.706715pt;}
.y6_c00049{bottom:906.586615pt;}
.y5_c00049{bottom:933.387159pt;}
.y4_c00049{bottom:960.267059pt;}
.y3_c00049{bottom:987.067603pt;}
.h1_c00049{height:55.797187pt;}
.h2_c00049{height:56.192266pt;}
.h3_c00049{height:60.968367pt;}
.h0_c00049{height:1122.666667pt;}
.w0_c00049{width:793.333333pt;}
.x0_c00049{left:0.000000pt;}
.x2_c00049{left:73.519684pt;}
.x4_c00049{left:98.800000pt;}
.x3_c00049{left:119.440356pt;}
.x1_c00049{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0173bdb259a67c262868dcd3.woff2')format("woff");}.ff1_c00050{font-family:ff1_c00050;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00050;src:url('chunks/assets/font_71f4419739fd18aeb8508b0e.woff2')format("woff");}.ff2_c00050{font-family:ff2_c00050;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00050{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00050{vertical-align:0.000000px;}
.ls2_c00050{letter-spacing:-0.063018px;}
.ls8_c00050{letter-spacing:-0.042012px;}
.ls6_c00050{letter-spacing:-0.035010px;}
.ls7_c00050{letter-spacing:-0.028008px;}
.ls4_c00050{letter-spacing:-0.021006px;}
.ls5_c00050{letter-spacing:-0.014004px;}
.ls3_c00050{letter-spacing:0.000000px;}
.ls0_c00050{letter-spacing:0.007002px;}
.ls1_c00050{letter-spacing:0.021006px;}
.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;}
}
.ws11_c00050{word-spacing:-0.014004px;}
.ws0_c00050{word-spacing:0.000000px;}
.ws3_c00050{word-spacing:0.021006px;}
.wsd_c00050{word-spacing:0.028008px;}
.ws5_c00050{word-spacing:3.241926px;}
.ws6_c00050{word-spacing:3.262932px;}
.ws10_c00050{word-spacing:3.564018px;}
.wsf_c00050{word-spacing:3.613032px;}
.ws7_c00050{word-spacing:3.977136px;}
.ws4_c00050{word-spacing:4.334238px;}
.ws2_c00050{word-spacing:4.677336px;}
.wsc_c00050{word-spacing:6.819948px;}
.wsb_c00050{word-spacing:6.840954px;}
.wsa_c00050{word-spacing:7.184052px;}
.ws1_c00050{word-spacing:7.205058px;}
.ws9_c00050{word-spacing:7.219062px;}
.wse_c00050{word-spacing:8.262360px;}
.ws8_c00050{word-spacing:23.400684px;}
._2_c00050{margin-left:-8.283366px;}
._1_c00050{margin-left:-1.428408px;}
._0_c00050{width:1.099314px;}
.fc0_c00050{color:rgb(0,0,0);}
.fs0_c00050{font-size:70.020000px;}
.y0_c00050{bottom:0.000000px;}
.y2_c00050{bottom:109.740968px;}
.y1_c00050{bottom:129.810450px;}
.y22_c00050{bottom:174.444699px;}
.y21_c00050{bottom:204.684587px;}
.y20_c00050{bottom:234.835199px;}
.y1f_c00050{bottom:265.075086px;}
.y1e_c00050{bottom:295.225698px;}
.y1d_c00050{bottom:325.465586px;}
.y1c_c00050{bottom:355.616198px;}
.y1b_c00050{bottom:385.856085px;}
.y1a_c00050{bottom:416.006697px;}
.y19_c00050{bottom:446.246585px;}
.y18_c00050{bottom:476.397197px;}
.y17_c00050{bottom:506.637084px;}
.y16_c00050{bottom:536.787696px;}
.y15_c00050{bottom:567.027584px;}
.y14_c00050{bottom:597.087170px;}
.y13_c00050{bottom:627.327057px;}
.y12_c00050{bottom:657.477669px;}
.y11_c00050{bottom:687.717557px;}
.y10_c00050{bottom:717.868169px;}
.yf_c00050{bottom:748.108056px;}
.ye_c00050{bottom:778.258668px;}
.yd_c00050{bottom:808.498556px;}
.yc_c00050{bottom:838.649168px;}
.yb_c00050{bottom:868.889055px;}
.ya_c00050{bottom:899.039667px;}
.y9_c00050{bottom:929.279555px;}
.y8_c00050{bottom:959.519442px;}
.y7_c00050{bottom:989.670054px;}
.y6_c00050{bottom:1019.909942px;}
.y5_c00050{bottom:1050.060553px;}
.y4_c00050{bottom:1080.300441px;}
.y3_c00050{bottom:1110.451053px;}
.h1_c00050{height:62.771836px;}
.h2_c00050{height:63.216299px;}
.h0_c00050{height:1263.000000px;}
.w0_c00050{width:892.500000px;}
.x0_c00050{left:0.000000px;}
.x2_c00050{left:82.709645px;}
.x1_c00050{left:436.680000px;}
@media print{
.v0_c00050{vertical-align:0.000000pt;}
.ls2_c00050{letter-spacing:-0.056016pt;}
.ls8_c00050{letter-spacing:-0.037344pt;}
.ls6_c00050{letter-spacing:-0.031120pt;}
.ls7_c00050{letter-spacing:-0.024896pt;}
.ls4_c00050{letter-spacing:-0.018672pt;}
.ls5_c00050{letter-spacing:-0.012448pt;}
.ls3_c00050{letter-spacing:0.000000pt;}
.ls0_c00050{letter-spacing:0.006224pt;}
.ls1_c00050{letter-spacing:0.018672pt;}
.ws11_c00050{word-spacing:-0.012448pt;}
.ws0_c00050{word-spacing:0.000000pt;}
.ws3_c00050{word-spacing:0.018672pt;}
.wsd_c00050{word-spacing:0.024896pt;}
.ws5_c00050{word-spacing:2.881712pt;}
.ws6_c00050{word-spacing:2.900384pt;}
.ws10_c00050{word-spacing:3.168016pt;}
.wsf_c00050{word-spacing:3.211584pt;}
.ws7_c00050{word-spacing:3.535232pt;}
.ws4_c00050{word-spacing:3.852656pt;}
.ws2_c00050{word-spacing:4.157632pt;}
.wsc_c00050{word-spacing:6.062176pt;}
.wsb_c00050{word-spacing:6.080848pt;}
.wsa_c00050{word-spacing:6.385824pt;}
.ws1_c00050{word-spacing:6.404496pt;}
.ws9_c00050{word-spacing:6.416944pt;}
.wse_c00050{word-spacing:7.344320pt;}
.ws8_c00050{word-spacing:20.800608pt;}
._2_c00050{margin-left:-7.362992pt;}
._1_c00050{margin-left:-1.269696pt;}
._0_c00050{width:0.977168pt;}
.fs0_c00050{font-size:62.240000pt;}
.y0_c00050{bottom:0.000000pt;}
.y2_c00050{bottom:97.547527pt;}
.y1_c00050{bottom:115.387067pt;}
.y22_c00050{bottom:155.061955pt;}
.y21_c00050{bottom:181.941855pt;}
.y20_c00050{bottom:208.742399pt;}
.y1f_c00050{bottom:235.622299pt;}
.y1e_c00050{bottom:262.422843pt;}
.y1d_c00050{bottom:289.302743pt;}
.y1c_c00050{bottom:316.103287pt;}
.y1b_c00050{bottom:342.983187pt;}
.y1a_c00050{bottom:369.783731pt;}
.y19_c00050{bottom:396.663631pt;}
.y18_c00050{bottom:423.464175pt;}
.y17_c00050{bottom:450.344075pt;}
.y16_c00050{bottom:477.144619pt;}
.y15_c00050{bottom:504.024519pt;}
.y14_c00050{bottom:530.744151pt;}
.y13_c00050{bottom:557.624051pt;}
.y12_c00050{bottom:584.424595pt;}
.y11_c00050{bottom:611.304495pt;}
.y10_c00050{bottom:638.105039pt;}
.yf_c00050{bottom:664.984939pt;}
.ye_c00050{bottom:691.785483pt;}
.yd_c00050{bottom:718.665383pt;}
.yc_c00050{bottom:745.465927pt;}
.yb_c00050{bottom:772.345827pt;}
.ya_c00050{bottom:799.146371pt;}
.y9_c00050{bottom:826.026271pt;}
.y8_c00050{bottom:852.906171pt;}
.y7_c00050{bottom:879.706715pt;}
.y6_c00050{bottom:906.586615pt;}
.y5_c00050{bottom:933.387159pt;}
.y4_c00050{bottom:960.267059pt;}
.y3_c00050{bottom:987.067603pt;}
.h1_c00050{height:55.797187pt;}
.h2_c00050{height:56.192266pt;}
.h0_c00050{height:1122.666667pt;}
.w0_c00050{width:793.333333pt;}
.x0_c00050{left:0.000000pt;}
.x2_c00050{left:73.519684pt;}
.x1_c00050{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a6fa73503606a1fafc8fb7ff.woff2')format("woff");}.ff1_c00051{font-family:ff1_c00051;line-height:1.106934;font-style:normal;font-weight:normal;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_4bb23aa1ac9cc9e4c19a52dc.woff2')format("woff");}.ff2_c00051{font-family:ff2_c00051;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00051;src:url('chunks/assets/font_b5269e953b3bf2cb9bba57a7.woff2')format("woff");}.ff3_c00051{font-family:ff3_c00051;line-height:1.104492;font-style:normal;font-weight:normal;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_35159fe45a0bf5b53445817a.woff2')format("woff");}.ff4_c00051{font-family:ff4_c00051;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00051;src:url('chunks/assets/font_a4807dbb37b7d8a95a6e033a.woff2')format("woff");}.ff5_c00051{font-family:ff5_c00051;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00051{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00051{vertical-align:-14.760600px;}
.v0_c00051{vertical-align:0.000000px;}
.v1_c00051{vertical-align:32.413536px;}
.ls11_c00051{letter-spacing:-0.298179px;}
.lsf_c00051{letter-spacing:-0.163706px;}
.ls4_c00051{letter-spacing:-0.136749px;}
.lsd_c00051{letter-spacing:-0.111086px;}
.ls5_c00051{letter-spacing:-0.106360px;}
.lsc_c00051{letter-spacing:-0.105240px;}
.ls10_c00051{letter-spacing:-0.099393px;}
.lsb_c00051{letter-spacing:-0.075619px;}
.ls9_c00051{letter-spacing:-0.070020px;}
.ls2_c00051{letter-spacing:-0.063018px;}
.ls12_c00051{letter-spacing:-0.046773px;}
.ls7_c00051{letter-spacing:-0.028008px;}
.ls8_c00051{letter-spacing:-0.014004px;}
.ls6_c00051{letter-spacing:-0.007002px;}
.lse_c00051{letter-spacing:-0.005847px;}
.ls3_c00051{letter-spacing:0.000000px;}
.ls0_c00051{letter-spacing:0.007002px;}
.ls1_c00051{letter-spacing:0.017540px;}
.lsa_c00051{letter-spacing:0.023281px;}
.sc__c00051{text-shadow:none;}
.sc0_c00051{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00051{-webkit-text-stroke:0px transparent;}
.sc0_c00051{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00051{word-spacing:-12.967628px;}
.ws1_c00051{word-spacing:-10.397640px;}
.ws1d_c00051{word-spacing:-0.362492px;}
.ws12_c00051{word-spacing:-0.007002px;}
.ws2_c00051{word-spacing:0.000000px;}
.wsb_c00051{word-spacing:0.014004px;}
.ws1c_c00051{word-spacing:0.058466px;}
.ws3_c00051{word-spacing:0.265900px;}
.ws15_c00051{word-spacing:0.336096px;}
.ws4_c00051{word-spacing:0.357066px;}
.ws11_c00051{word-spacing:0.357102px;}
.ws6_c00051{word-spacing:2.177622px;}
.ws13_c00051{word-spacing:3.585024px;}
.ws8_c00051{word-spacing:3.592026px;}
.wse_c00051{word-spacing:3.613032px;}
.ws10_c00051{word-spacing:4.313232px;}
.wsf_c00051{word-spacing:4.376250px;}
.wsd_c00051{word-spacing:5.041440px;}
.ws16_c00051{word-spacing:5.519228px;}
.ws18_c00051{word-spacing:5.776480px;}
.ws17_c00051{word-spacing:5.881720px;}
.wsa_c00051{word-spacing:7.569162px;}
.ws14_c00051{word-spacing:11.147184px;}
.ws5_c00051{word-spacing:12.589596px;}
.ws1b_c00051{word-spacing:15.072638px;}
.ws1a_c00051{word-spacing:15.230497px;}
.ws19_c00051{word-spacing:15.294810px;}
.ws7_c00051{word-spacing:30.941838px;}
.ws9_c00051{word-spacing:34.932978px;}
.wsc_c00051{word-spacing:90.717912px;}
._3_c00051{margin-left:-2.709000px;}
._1_c00051{margin-left:-1.092312px;}
._0_c00051{width:1.261125px;}
._2_c00051{width:5.930694px;}
.fc0_c00051{color:rgb(0,0,0);}
.fs3_c00051{font-size:37.809600px;}
.fs2_c00051{font-size:46.562400px;}
.fs4_c00051{font-size:58.466400px;}
.fs0_c00051{font-size:70.020000px;}
.fs1_c00051{font-size:75.971400px;}
.y0_c00051{bottom:0.000000px;}
.y2_c00051{bottom:109.740968px;}
.y1_c00051{bottom:129.810450px;}
.y22_c00051{bottom:169.860171px;}
.y21_c00051{bottom:187.769891px;}
.y20_c00051{bottom:209.280600px;}
.y1f_c00051{bottom:224.039511px;}
.y1e_c00051{bottom:281.728989px;}
.y1d_c00051{bottom:311.968877px;}
.y1c_c00051{bottom:342.119489px;}
.y1b_c00051{bottom:372.359376px;}
.y1a_c00051{bottom:402.509988px;}
.y19_c00051{bottom:432.657066px;}
.y18_c00051{bottom:462.896953px;}
.y17_c00051{bottom:493.047566px;}
.y16_c00051{bottom:523.287453px;}
.y15_c00051{bottom:553.438065px;}
.y14_c00051{bottom:583.677952px;}
.y13_c00051{bottom:613.828564px;}
.y12_c00051{bottom:644.068452px;}
.y11_c00051{bottom:674.219064px;}
.y10_c00051{bottom:704.458952px;}
.yf_c00051{bottom:734.609563px;}
.ye_c00051{bottom:764.849451px;}
.yd_c00051{bottom:795.000063px;}
.yc_c00051{bottom:825.239951px;}
.yb_c00051{bottom:855.390562px;}
.ya_c00051{bottom:885.630450px;}
.y9_c00051{bottom:910.380450px;}
.y8_c00051{bottom:959.519442px;}
.y7_c00051{bottom:989.670054px;}
.y6_c00051{bottom:1019.909942px;}
.y5_c00051{bottom:1050.060553px;}
.y4_c00051{bottom:1080.300441px;}
.y3_c00051{bottom:1110.451053px;}
.h7_c00051{height:39.337949px;}
.h8_c00051{height:54.098549px;}
.h4_c00051{height:62.600889px;}
.h1_c00051{height:62.771836px;}
.h6_c00051{height:62.776192px;}
.h2_c00051{height:63.216299px;}
.h3_c00051{height:68.589413px;}
.h5_c00051{height:74.042322px;}
.h0_c00051{height:1263.000000px;}
.w0_c00051{width:892.500000px;}
.x0_c00051{left:0.000000px;}
.x2_c00051{left:82.709645px;}
.x1_c00051{left:436.680000px;}
@media print{
.v2_c00051{vertical-align:-13.120533pt;}
.v0_c00051{vertical-align:0.000000pt;}
.v1_c00051{vertical-align:28.812032pt;}
.ls11_c00051{letter-spacing:-0.265048pt;}
.lsf_c00051{letter-spacing:-0.145516pt;}
.ls4_c00051{letter-spacing:-0.121554pt;}
.lsd_c00051{letter-spacing:-0.098743pt;}
.ls5_c00051{letter-spacing:-0.094542pt;}
.lsc_c00051{letter-spacing:-0.093546pt;}
.ls10_c00051{letter-spacing:-0.088349pt;}
.lsb_c00051{letter-spacing:-0.067217pt;}
.ls9_c00051{letter-spacing:-0.062240pt;}
.ls2_c00051{letter-spacing:-0.056016pt;}
.ls12_c00051{letter-spacing:-0.041576pt;}
.ls7_c00051{letter-spacing:-0.024896pt;}
.ls8_c00051{letter-spacing:-0.012448pt;}
.ls6_c00051{letter-spacing:-0.006224pt;}
.lse_c00051{letter-spacing:-0.005197pt;}
.ls3_c00051{letter-spacing:0.000000pt;}
.ls0_c00051{letter-spacing:0.006224pt;}
.ls1_c00051{letter-spacing:0.015591pt;}
.lsa_c00051{letter-spacing:0.020694pt;}
.ws0_c00051{word-spacing:-11.526781pt;}
.ws1_c00051{word-spacing:-9.242347pt;}
.ws1d_c00051{word-spacing:-0.322215pt;}
.ws12_c00051{word-spacing:-0.006224pt;}
.ws2_c00051{word-spacing:0.000000pt;}
.wsb_c00051{word-spacing:0.012448pt;}
.ws1c_c00051{word-spacing:0.051970pt;}
.ws3_c00051{word-spacing:0.236355pt;}
.ws15_c00051{word-spacing:0.298752pt;}
.ws4_c00051{word-spacing:0.317392pt;}
.ws11_c00051{word-spacing:0.317424pt;}
.ws6_c00051{word-spacing:1.935664pt;}
.ws13_c00051{word-spacing:3.186688pt;}
.ws8_c00051{word-spacing:3.192912pt;}
.wse_c00051{word-spacing:3.211584pt;}
.ws10_c00051{word-spacing:3.833984pt;}
.wsf_c00051{word-spacing:3.890000pt;}
.wsd_c00051{word-spacing:4.481280pt;}
.ws16_c00051{word-spacing:4.905981pt;}
.ws18_c00051{word-spacing:5.134649pt;}
.ws17_c00051{word-spacing:5.228195pt;}
.wsa_c00051{word-spacing:6.728144pt;}
.ws14_c00051{word-spacing:9.908608pt;}
.ws5_c00051{word-spacing:11.190752pt;}
.ws1b_c00051{word-spacing:13.397900pt;}
.ws1a_c00051{word-spacing:13.538220pt;}
.ws19_c00051{word-spacing:13.595387pt;}
.ws7_c00051{word-spacing:27.503856pt;}
.ws9_c00051{word-spacing:31.051536pt;}
.wsc_c00051{word-spacing:80.638144pt;}
._3_c00051{margin-left:-2.408000pt;}
._1_c00051{margin-left:-0.970944pt;}
._0_c00051{width:1.121000pt;}
._2_c00051{width:5.271728pt;}
.fs3_c00051{font-size:33.608533pt;}
.fs2_c00051{font-size:41.388800pt;}
.fs4_c00051{font-size:51.970133pt;}
.fs0_c00051{font-size:62.240000pt;}
.fs1_c00051{font-size:67.530133pt;}
.y0_c00051{bottom:0.000000pt;}
.y2_c00051{bottom:97.547527pt;}
.y1_c00051{bottom:115.387067pt;}
.y22_c00051{bottom:150.986819pt;}
.y21_c00051{bottom:166.906570pt;}
.y20_c00051{bottom:186.027200pt;}
.y1f_c00051{bottom:199.146232pt;}
.y1e_c00051{bottom:250.425768pt;}
.y1d_c00051{bottom:277.305668pt;}
.y1c_c00051{bottom:304.106212pt;}
.y1b_c00051{bottom:330.986112pt;}
.y1a_c00051{bottom:357.786656pt;}
.y19_c00051{bottom:384.584059pt;}
.y18_c00051{bottom:411.463959pt;}
.y17_c00051{bottom:438.264503pt;}
.y16_c00051{bottom:465.144403pt;}
.y15_c00051{bottom:491.944947pt;}
.y14_c00051{bottom:518.824847pt;}
.y13_c00051{bottom:545.625391pt;}
.y12_c00051{bottom:572.505291pt;}
.y11_c00051{bottom:599.305835pt;}
.y10_c00051{bottom:626.185735pt;}
.yf_c00051{bottom:652.986279pt;}
.ye_c00051{bottom:679.866179pt;}
.yd_c00051{bottom:706.666723pt;}
.yc_c00051{bottom:733.546623pt;}
.yb_c00051{bottom:760.347167pt;}
.ya_c00051{bottom:787.227067pt;}
.y9_c00051{bottom:809.227067pt;}
.y8_c00051{bottom:852.906171pt;}
.y7_c00051{bottom:879.706715pt;}
.y6_c00051{bottom:906.586615pt;}
.y5_c00051{bottom:933.387159pt;}
.y4_c00051{bottom:960.267059pt;}
.y3_c00051{bottom:987.067603pt;}
.h7_c00051{height:34.967066pt;}
.h8_c00051{height:48.087599pt;}
.h4_c00051{height:55.645234pt;}
.h1_c00051{height:55.797187pt;}
.h6_c00051{height:55.801059pt;}
.h2_c00051{height:56.192266pt;}
.h3_c00051{height:60.968367pt;}
.h5_c00051{height:65.815398pt;}
.h0_c00051{height:1122.666667pt;}
.w0_c00051{width:793.333333pt;}
.x0_c00051{left:0.000000pt;}
.x2_c00051{left:73.519684pt;}
.x1_c00051{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e7ab4ae48dacc8b002d91cc8.woff2')format("woff");}.ff1_c00052{font-family:ff1_c00052;line-height:1.106934;font-style:normal;font-weight:normal;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_cd67549780a66af1e03ecf53.woff2')format("woff");}.ff2_c00052{font-family:ff2_c00052;line-height:1.104492;font-style:normal;font-weight:normal;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_2d178f37ce13b5cb2bb5849f.woff2')format("woff");}.ff3_c00052{font-family:ff3_c00052;line-height:1.133301;font-style:normal;font-weight:normal;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_42c41db02b0a1bd06336a5cc.woff2')format("woff");}.ff4_c00052{font-family:ff4_c00052;line-height:1.133301;font-style:normal;font-weight:normal;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_2f2d138ff74aef5136b3b86e.woff2')format("woff");}.ff5_c00052{font-family:ff5_c00052;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00052;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff6_c00052{font-family:ff6_c00052;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00052{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00052{vertical-align:-14.760000px;}
.v0_c00052{vertical-align:0.000000px;}
.v1_c00052{vertical-align:32.049576px;}
.ls1c_c00052{letter-spacing:-0.309872px;}
.ls16_c00052{letter-spacing:-0.152013px;}
.ls1b_c00052{letter-spacing:-0.140319px;}
.ls1d_c00052{letter-spacing:-0.134473px;}
.ls18_c00052{letter-spacing:-0.122779px;}
.ls17_c00052{letter-spacing:-0.111086px;}
.lsd_c00052{letter-spacing:-0.099393px;}
.lsc_c00052{letter-spacing:-0.075619px;}
.ls14_c00052{letter-spacing:-0.070160px;}
.ls13_c00052{letter-spacing:-0.064313px;}
.ls3_c00052{letter-spacing:-0.063018px;}
.ls9_c00052{letter-spacing:-0.042012px;}
.lse_c00052{letter-spacing:-0.035080px;}
.ls6_c00052{letter-spacing:-0.035010px;}
.ls15_c00052{letter-spacing:-0.029233px;}
.ls8_c00052{letter-spacing:-0.028008px;}
.ls5_c00052{letter-spacing:-0.021006px;}
.ls11_c00052{letter-spacing:-0.017540px;}
.lsa_c00052{letter-spacing:-0.014004px;}
.ls12_c00052{letter-spacing:-0.011693px;}
.ls7_c00052{letter-spacing:-0.007002px;}
.ls19_c00052{letter-spacing:-0.005847px;}
.ls4_c00052{letter-spacing:0.000000px;}
.ls1_c00052{letter-spacing:0.007002px;}
.ls0_c00052{letter-spacing:0.014004px;}
.ls2_c00052{letter-spacing:0.021006px;}
.lsb_c00052{letter-spacing:0.023281px;}
.ls1a_c00052{letter-spacing:0.122779px;}
.lsf_c00052{letter-spacing:0.292332px;}
.ls10_c00052{letter-spacing:5.051497px;}
.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;}
}
.ws2_c00052{word-spacing:-58.466400px;}
.ws0_c00052{word-spacing:-12.967628px;}
.ws1_c00052{word-spacing:-10.397640px;}
.ws20_c00052{word-spacing:-0.637284px;}
.ws1f_c00052{word-spacing:-0.309872px;}
.ws30_c00052{word-spacing:-0.274792px;}
.ws1c_c00052{word-spacing:-0.035010px;}
.ws9_c00052{word-spacing:-0.021006px;}
.ws3_c00052{word-spacing:0.000000px;}
.wsd_c00052{word-spacing:0.014004px;}
.wsc_c00052{word-spacing:0.021006px;}
.ws31_c00052{word-spacing:0.046773px;}
.ws1e_c00052{word-spacing:0.111086px;}
.ws16_c00052{word-spacing:0.336096px;}
.wsf_c00052{word-spacing:0.343098px;}
.ws13_c00052{word-spacing:0.371106px;}
.ws6_c00052{word-spacing:0.378108px;}
.wse_c00052{word-spacing:0.686196px;}
.ws10_c00052{word-spacing:0.721206px;}
.ws24_c00052{word-spacing:0.760063px;}
.ws26_c00052{word-spacing:0.841916px;}
.ws25_c00052{word-spacing:0.882843px;}
.ws11_c00052{word-spacing:2.149614px;}
.ws12_c00052{word-spacing:2.520720px;}
.ws14_c00052{word-spacing:2.541726px;}
.ws2b_c00052{word-spacing:2.923320px;}
.ws2d_c00052{word-spacing:3.285812px;}
.ws2c_c00052{word-spacing:3.373511px;}
.ws2a_c00052{word-spacing:3.391051px;}
.wsa_c00052{word-spacing:4.334238px;}
.wsb_c00052{word-spacing:4.348242px;}
.ws17_c00052{word-spacing:5.020434px;}
.ws2f_c00052{word-spacing:5.185970px;}
.ws22_c00052{word-spacing:5.425682px;}
.ws21_c00052{word-spacing:5.431529px;}
.ws2e_c00052{word-spacing:5.723861px;}
.ws23_c00052{word-spacing:5.834947px;}
.ws1d_c00052{word-spacing:6.462846px;}
.ws15_c00052{word-spacing:8.304372px;}
.ws1a_c00052{word-spacing:10.776078px;}
.ws19_c00052{word-spacing:11.161188px;}
.ws18_c00052{word-spacing:11.168190px;}
.ws1b_c00052{word-spacing:11.175192px;}
.ws29_c00052{word-spacing:15.008325px;}
.ws27_c00052{word-spacing:15.136951px;}
.ws28_c00052{word-spacing:15.201264px;}
.ws7_c00052{word-spacing:15.474420px;}
.ws4_c00052{word-spacing:19.773648px;}
.ws8_c00052{word-spacing:19.787652px;}
.ws5_c00052{word-spacing:19.808658px;}
._6_c00052{margin-left:-15.597632px;}
._5_c00052{margin-left:-6.090369px;}
._4_c00052{margin-left:-4.620676px;}
._3_c00052{margin-left:-2.710926px;}
._1_c00052{margin-left:-1.337382px;}
._0_c00052{width:1.260360px;}
._2_c00052{width:5.930694px;}
.fc0_c00052{color:rgb(0,0,0);}
.fs2_c00052{font-size:37.809600px;}
.fs1_c00052{font-size:46.562400px;}
.fs3_c00052{font-size:58.466400px;}
.fs0_c00052{font-size:70.020000px;}
.y0_c00052{bottom:0.000000px;}
.y2_c00052{bottom:109.740968px;}
.y1_c00052{bottom:129.810450px;}
.y25_c00052{bottom:149.427529px;}
.y24_c00052{bottom:167.248088px;}
.y23_c00052{bottom:185.248431px;}
.y22_c00052{bottom:203.068990px;}
.y21_c00052{bottom:221.069333px;}
.y20_c00052{bottom:238.889891px;}
.y1f_c00052{bottom:260.400450px;}
.y1e_c00052{bottom:278.400450px;}
.y1d_c00052{bottom:293.068834px;}
.y1c_c00052{bottom:355.619451px;}
.y1b_c00052{bottom:385.859338px;}
.y1a_c00052{bottom:416.009951px;}
.y19_c00052{bottom:446.249838px;}
.y18_c00052{bottom:476.399590px;}
.y17_c00052{bottom:506.639478px;}
.y16_c00052{bottom:536.790090px;}
.y15_c00052{bottom:567.029977px;}
.y14_c00052{bottom:597.089563px;}
.y13_c00052{bottom:627.329451px;}
.y12_c00052{bottom:657.480063px;}
.y11_c00052{bottom:687.719950px;}
.y10_c00052{bottom:717.870563px;}
.yf_c00052{bottom:748.108056px;}
.ye_c00052{bottom:778.258668px;}
.yd_c00052{bottom:808.498556px;}
.yc_c00052{bottom:838.649168px;}
.yb_c00052{bottom:868.889055px;}
.ya_c00052{bottom:899.039667px;}
.y9_c00052{bottom:929.279555px;}
.y8_c00052{bottom:959.519442px;}
.y7_c00052{bottom:989.670054px;}
.y6_c00052{bottom:1019.909942px;}
.y5_c00052{bottom:1050.060553px;}
.y4_c00052{bottom:1080.300441px;}
.y3_c00052{bottom:1110.451053px;}
.h6_c00052{height:39.338549px;}
.h7_c00052{height:54.098549px;}
.h2_c00052{height:62.600889px;}
.h1_c00052{height:62.771836px;}
.h5_c00052{height:62.778298px;}
.h3_c00052{height:73.678362px;}
.h4_c00052{height:74.032824px;}
.h0_c00052{height:1263.000000px;}
.w0_c00052{width:892.500000px;}
.x0_c00052{left:0.000000px;}
.x2_c00052{left:82.709645px;}
.x1_c00052{left:436.680000px;}
@media print{
.v2_c00052{vertical-align:-13.120000pt;}
.v0_c00052{vertical-align:0.000000pt;}
.v1_c00052{vertical-align:28.488512pt;}
.ls1c_c00052{letter-spacing:-0.275442pt;}
.ls16_c00052{letter-spacing:-0.135122pt;}
.ls1b_c00052{letter-spacing:-0.124728pt;}
.ls1d_c00052{letter-spacing:-0.119531pt;}
.ls18_c00052{letter-spacing:-0.109137pt;}
.ls17_c00052{letter-spacing:-0.098743pt;}
.lsd_c00052{letter-spacing:-0.088349pt;}
.lsc_c00052{letter-spacing:-0.067217pt;}
.ls14_c00052{letter-spacing:-0.062364pt;}
.ls13_c00052{letter-spacing:-0.057167pt;}
.ls3_c00052{letter-spacing:-0.056016pt;}
.ls9_c00052{letter-spacing:-0.037344pt;}
.lse_c00052{letter-spacing:-0.031182pt;}
.ls6_c00052{letter-spacing:-0.031120pt;}
.ls15_c00052{letter-spacing:-0.025985pt;}
.ls8_c00052{letter-spacing:-0.024896pt;}
.ls5_c00052{letter-spacing:-0.018672pt;}
.ls11_c00052{letter-spacing:-0.015591pt;}
.lsa_c00052{letter-spacing:-0.012448pt;}
.ls12_c00052{letter-spacing:-0.010394pt;}
.ls7_c00052{letter-spacing:-0.006224pt;}
.ls19_c00052{letter-spacing:-0.005197pt;}
.ls4_c00052{letter-spacing:0.000000pt;}
.ls1_c00052{letter-spacing:0.006224pt;}
.ls0_c00052{letter-spacing:0.012448pt;}
.ls2_c00052{letter-spacing:0.018672pt;}
.lsb_c00052{letter-spacing:0.020694pt;}
.ls1a_c00052{letter-spacing:0.109137pt;}
.lsf_c00052{letter-spacing:0.259851pt;}
.ls10_c00052{letter-spacing:4.490220pt;}
.ws2_c00052{word-spacing:-51.970133pt;}
.ws0_c00052{word-spacing:-11.526781pt;}
.ws1_c00052{word-spacing:-9.242347pt;}
.ws20_c00052{word-spacing:-0.566474pt;}
.ws1f_c00052{word-spacing:-0.275442pt;}
.ws30_c00052{word-spacing:-0.244260pt;}
.ws1c_c00052{word-spacing:-0.031120pt;}
.ws9_c00052{word-spacing:-0.018672pt;}
.ws3_c00052{word-spacing:0.000000pt;}
.wsd_c00052{word-spacing:0.012448pt;}
.wsc_c00052{word-spacing:0.018672pt;}
.ws31_c00052{word-spacing:0.041576pt;}
.ws1e_c00052{word-spacing:0.098743pt;}
.ws16_c00052{word-spacing:0.298752pt;}
.wsf_c00052{word-spacing:0.304976pt;}
.ws13_c00052{word-spacing:0.329872pt;}
.ws6_c00052{word-spacing:0.336096pt;}
.wse_c00052{word-spacing:0.609952pt;}
.ws10_c00052{word-spacing:0.641072pt;}
.ws24_c00052{word-spacing:0.675612pt;}
.ws26_c00052{word-spacing:0.748370pt;}
.ws25_c00052{word-spacing:0.784749pt;}
.ws11_c00052{word-spacing:1.910768pt;}
.ws12_c00052{word-spacing:2.240640pt;}
.ws14_c00052{word-spacing:2.259312pt;}
.ws2b_c00052{word-spacing:2.598507pt;}
.ws2d_c00052{word-spacing:2.920721pt;}
.ws2c_c00052{word-spacing:2.998677pt;}
.ws2a_c00052{word-spacing:3.014268pt;}
.wsa_c00052{word-spacing:3.852656pt;}
.wsb_c00052{word-spacing:3.865104pt;}
.ws17_c00052{word-spacing:4.462608pt;}
.ws2f_c00052{word-spacing:4.609751pt;}
.ws22_c00052{word-spacing:4.822828pt;}
.ws21_c00052{word-spacing:4.828025pt;}
.ws2e_c00052{word-spacing:5.087876pt;}
.ws23_c00052{word-spacing:5.186619pt;}
.ws1d_c00052{word-spacing:5.744752pt;}
.ws15_c00052{word-spacing:7.381664pt;}
.ws1a_c00052{word-spacing:9.578736pt;}
.ws19_c00052{word-spacing:9.921056pt;}
.ws18_c00052{word-spacing:9.927280pt;}
.ws1b_c00052{word-spacing:9.933504pt;}
.ws29_c00052{word-spacing:13.340733pt;}
.ws27_c00052{word-spacing:13.455068pt;}
.ws28_c00052{word-spacing:13.512235pt;}
.ws7_c00052{word-spacing:13.755040pt;}
.ws4_c00052{word-spacing:17.576576pt;}
.ws8_c00052{word-spacing:17.589024pt;}
.ws5_c00052{word-spacing:17.607696pt;}
._6_c00052{margin-left:-13.864562pt;}
._5_c00052{margin-left:-5.413661pt;}
._4_c00052{margin-left:-4.107267pt;}
._3_c00052{margin-left:-2.409712pt;}
._1_c00052{margin-left:-1.188784pt;}
._0_c00052{width:1.120320pt;}
._2_c00052{width:5.271728pt;}
.fs2_c00052{font-size:33.608533pt;}
.fs1_c00052{font-size:41.388800pt;}
.fs3_c00052{font-size:51.970133pt;}
.fs0_c00052{font-size:62.240000pt;}
.y0_c00052{bottom:0.000000pt;}
.y2_c00052{bottom:97.547527pt;}
.y1_c00052{bottom:115.387067pt;}
.y25_c00052{bottom:132.824471pt;}
.y24_c00052{bottom:148.664967pt;}
.y23_c00052{bottom:164.665272pt;}
.y22_c00052{bottom:180.505769pt;}
.y21_c00052{bottom:196.506073pt;}
.y20_c00052{bottom:212.346570pt;}
.y1f_c00052{bottom:231.467067pt;}
.y1e_c00052{bottom:247.467067pt;}
.y1d_c00052{bottom:260.505631pt;}
.y1c_c00052{bottom:316.106179pt;}
.y1b_c00052{bottom:342.986079pt;}
.y1a_c00052{bottom:369.786623pt;}
.y19_c00052{bottom:396.666523pt;}
.y18_c00052{bottom:423.466303pt;}
.y17_c00052{bottom:450.346203pt;}
.y16_c00052{bottom:477.146747pt;}
.y15_c00052{bottom:504.026647pt;}
.y14_c00052{bottom:530.746279pt;}
.y13_c00052{bottom:557.626179pt;}
.y12_c00052{bottom:584.426723pt;}
.y11_c00052{bottom:611.306623pt;}
.y10_c00052{bottom:638.107167pt;}
.yf_c00052{bottom:664.984939pt;}
.ye_c00052{bottom:691.785483pt;}
.yd_c00052{bottom:718.665383pt;}
.yc_c00052{bottom:745.465927pt;}
.yb_c00052{bottom:772.345827pt;}
.ya_c00052{bottom:799.146371pt;}
.y9_c00052{bottom:826.026271pt;}
.y8_c00052{bottom:852.906171pt;}
.y7_c00052{bottom:879.706715pt;}
.y6_c00052{bottom:906.586615pt;}
.y5_c00052{bottom:933.387159pt;}
.y4_c00052{bottom:960.267059pt;}
.y3_c00052{bottom:987.067603pt;}
.h6_c00052{height:34.967599pt;}
.h7_c00052{height:48.087599pt;}
.h2_c00052{height:55.645234pt;}
.h1_c00052{height:55.797187pt;}
.h5_c00052{height:55.802932pt;}
.h3_c00052{height:65.491878pt;}
.h4_c00052{height:65.806955pt;}
.h0_c00052{height:1122.666667pt;}
.w0_c00052{width:793.333333pt;}
.x0_c00052{left:0.000000pt;}
.x2_c00052{left:73.519684pt;}
.x1_c00052{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_16c1598da5e77dfbd95c3f19.woff2')format("woff");}.ff1_c00053{font-family:ff1_c00053;line-height:1.106934;font-style:normal;font-weight:normal;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_4b7517d8a805989c2159e0e2.woff2')format("woff");}.ff2_c00053{font-family:ff2_c00053;line-height:1.133301;font-style:normal;font-weight:normal;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_70270044a328cf90eea77bc5.woff2')format("woff");}.ff3_c00053{font-family:ff3_c00053;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00053{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00053{vertical-align:-14.760000px;}
.v0_c00053{vertical-align:0.000000px;}
.v1_c00053{vertical-align:32.053572px;}
.ls11_c00053{letter-spacing:-0.128626px;}
.lsc_c00053{letter-spacing:-0.091026px;}
.ls10_c00053{letter-spacing:-0.075619px;}
.ls4_c00053{letter-spacing:-0.063018px;}
.ls6_c00053{letter-spacing:-0.056016px;}
.lsd_c00053{letter-spacing:-0.049014px;}
.lsf_c00053{letter-spacing:-0.042012px;}
.lsa_c00053{letter-spacing:-0.035010px;}
.lsb_c00053{letter-spacing:-0.028008px;}
.ls7_c00053{letter-spacing:-0.021006px;}
.ls8_c00053{letter-spacing:-0.014004px;}
.ls9_c00053{letter-spacing:-0.007002px;}
.ls5_c00053{letter-spacing:0.000000px;}
.ls0_c00053{letter-spacing:0.005847px;}
.ls2_c00053{letter-spacing:0.011693px;}
.lse_c00053{letter-spacing:0.023281px;}
.ls1_c00053{letter-spacing:0.099393px;}
.ls12_c00053{letter-spacing:0.274792px;}
.ls3_c00053{letter-spacing:0.356645px;}
.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;}
}
.ws3_c00053{word-spacing:-16.469985px;}
.ws2_c00053{word-spacing:-16.206886px;}
.ws0_c00053{word-spacing:-12.967628px;}
.ws1_c00053{word-spacing:-10.397640px;}
.ws26_c00053{word-spacing:-0.701597px;}
.wsa_c00053{word-spacing:-0.336096px;}
.ws1c_c00053{word-spacing:-0.014004px;}
.wsc_c00053{word-spacing:-0.007002px;}
.ws4_c00053{word-spacing:0.000000px;}
.wsd_c00053{word-spacing:0.014004px;}
.wse_c00053{word-spacing:0.021006px;}
.ws18_c00053{word-spacing:0.035010px;}
.ws16_c00053{word-spacing:0.077022px;}
.ws25_c00053{word-spacing:0.140319px;}
.ws15_c00053{word-spacing:0.364104px;}
.ws22_c00053{word-spacing:0.378108px;}
.ws17_c00053{word-spacing:0.399114px;}
.ws14_c00053{word-spacing:0.728208px;}
.ws13_c00053{word-spacing:1.092312px;}
.ws12_c00053{word-spacing:1.792512px;}
.ws20_c00053{word-spacing:2.156616px;}
.ws9_c00053{word-spacing:2.870820px;}
.wsb_c00053{word-spacing:3.620034px;}
.wsf_c00053{word-spacing:4.306230px;}
.ws24_c00053{word-spacing:5.671241px;}
.ws23_c00053{word-spacing:5.764787px;}
.ws1a_c00053{word-spacing:6.476850px;}
.ws8_c00053{word-spacing:8.640468px;}
.ws1e_c00053{word-spacing:10.432980px;}
.ws1d_c00053{word-spacing:10.446984px;}
.ws21_c00053{word-spacing:10.488996px;}
.ws19_c00053{word-spacing:11.546298px;}
.ws1b_c00053{word-spacing:16.909830px;}
.ws6_c00053{word-spacing:16.923834px;}
.ws5_c00053{word-spacing:16.958844px;}
.ws7_c00053{word-spacing:19.451556px;}
.ws1f_c00053{word-spacing:20.529864px;}
.ws10_c00053{word-spacing:27.363816px;}
.ws11_c00053{word-spacing:27.741924px;}
._2_c00053{margin-left:-4.320234px;}
._4_c00053{margin-left:-2.706552px;}
._1_c00053{margin-left:-1.155330px;}
._0_c00053{width:1.085310px;}
._3_c00053{width:5.930694px;}
.fc0_c00053{color:rgb(0,0,0);}
.fs2_c00053{font-size:37.809600px;}
.fs1_c00053{font-size:46.562400px;}
.fs3_c00053{font-size:58.466400px;}
.fs0_c00053{font-size:70.020000px;}
.y0_c00053{bottom:0.000000px;}
.y2_c00053{bottom:109.740968px;}
.y1_c00053{bottom:129.810450px;}
.y23_c00053{bottom:149.429891px;}
.y22_c00053{bottom:170.940450px;}
.y21_c00053{bottom:185.698555px;}
.y20_c00053{bottom:234.838591px;}
.y1f_c00053{bottom:265.078479px;}
.y1e_c00053{bottom:295.229091px;}
.y1d_c00053{bottom:325.468978px;}
.y1c_c00053{bottom:355.619590px;}
.y1b_c00053{bottom:385.859478px;}
.y1a_c00053{bottom:416.010090px;}
.y19_c00053{bottom:446.249977px;}
.y18_c00053{bottom:476.400589px;}
.y17_c00053{bottom:506.640477px;}
.y16_c00053{bottom:536.791089px;}
.y15_c00053{bottom:567.030976px;}
.y14_c00053{bottom:597.090562px;}
.y13_c00053{bottom:627.327057px;}
.y12_c00053{bottom:657.477669px;}
.y11_c00053{bottom:687.717557px;}
.y10_c00053{bottom:717.868169px;}
.yf_c00053{bottom:748.108056px;}
.ye_c00053{bottom:778.258668px;}
.yd_c00053{bottom:808.498556px;}
.yc_c00053{bottom:838.649168px;}
.yb_c00053{bottom:868.889055px;}
.ya_c00053{bottom:899.039667px;}
.y9_c00053{bottom:929.279555px;}
.y8_c00053{bottom:959.519442px;}
.y7_c00053{bottom:989.670054px;}
.y6_c00053{bottom:1019.909942px;}
.y5_c00053{bottom:1050.060553px;}
.y4_c00053{bottom:1080.300441px;}
.y3_c00053{bottom:1110.451053px;}
.h4_c00053{height:39.338549px;}
.h5_c00053{height:54.098549px;}
.h1_c00053{height:62.771836px;}
.h3_c00053{height:62.780014px;}
.h2_c00053{height:73.796036px;}
.h0_c00053{height:1263.000000px;}
.w0_c00053{width:892.500000px;}
.x0_c00053{left:0.000000px;}
.x2_c00053{left:82.709645px;}
.x1_c00053{left:436.680000px;}
@media print{
.v2_c00053{vertical-align:-13.120000pt;}
.v0_c00053{vertical-align:0.000000pt;}
.v1_c00053{vertical-align:28.492064pt;}
.ls11_c00053{letter-spacing:-0.114334pt;}
.lsc_c00053{letter-spacing:-0.080912pt;}
.ls10_c00053{letter-spacing:-0.067217pt;}
.ls4_c00053{letter-spacing:-0.056016pt;}
.ls6_c00053{letter-spacing:-0.049792pt;}
.lsd_c00053{letter-spacing:-0.043568pt;}
.lsf_c00053{letter-spacing:-0.037344pt;}
.lsa_c00053{letter-spacing:-0.031120pt;}
.lsb_c00053{letter-spacing:-0.024896pt;}
.ls7_c00053{letter-spacing:-0.018672pt;}
.ls8_c00053{letter-spacing:-0.012448pt;}
.ls9_c00053{letter-spacing:-0.006224pt;}
.ls5_c00053{letter-spacing:0.000000pt;}
.ls0_c00053{letter-spacing:0.005197pt;}
.ls2_c00053{letter-spacing:0.010394pt;}
.lse_c00053{letter-spacing:0.020694pt;}
.ls1_c00053{letter-spacing:0.088349pt;}
.ls12_c00053{letter-spacing:0.244260pt;}
.ls3_c00053{letter-spacing:0.317018pt;}
.ws3_c00053{word-spacing:-14.639987pt;}
.ws2_c00053{word-spacing:-14.406121pt;}
.ws0_c00053{word-spacing:-11.526781pt;}
.ws1_c00053{word-spacing:-9.242347pt;}
.ws26_c00053{word-spacing:-0.623642pt;}
.wsa_c00053{word-spacing:-0.298752pt;}
.ws1c_c00053{word-spacing:-0.012448pt;}
.wsc_c00053{word-spacing:-0.006224pt;}
.ws4_c00053{word-spacing:0.000000pt;}
.wsd_c00053{word-spacing:0.012448pt;}
.wse_c00053{word-spacing:0.018672pt;}
.ws18_c00053{word-spacing:0.031120pt;}
.ws16_c00053{word-spacing:0.068464pt;}
.ws25_c00053{word-spacing:0.124728pt;}
.ws15_c00053{word-spacing:0.323648pt;}
.ws22_c00053{word-spacing:0.336096pt;}
.ws17_c00053{word-spacing:0.354768pt;}
.ws14_c00053{word-spacing:0.647296pt;}
.ws13_c00053{word-spacing:0.970944pt;}
.ws12_c00053{word-spacing:1.593344pt;}
.ws20_c00053{word-spacing:1.916992pt;}
.ws9_c00053{word-spacing:2.551840pt;}
.wsb_c00053{word-spacing:3.217808pt;}
.wsf_c00053{word-spacing:3.827760pt;}
.ws24_c00053{word-spacing:5.041103pt;}
.ws23_c00053{word-spacing:5.124255pt;}
.ws1a_c00053{word-spacing:5.757200pt;}
.ws8_c00053{word-spacing:7.680416pt;}
.ws1e_c00053{word-spacing:9.273760pt;}
.ws1d_c00053{word-spacing:9.286208pt;}
.ws21_c00053{word-spacing:9.323552pt;}
.ws19_c00053{word-spacing:10.263376pt;}
.ws1b_c00053{word-spacing:15.030960pt;}
.ws6_c00053{word-spacing:15.043408pt;}
.ws5_c00053{word-spacing:15.074528pt;}
.ws7_c00053{word-spacing:17.290272pt;}
.ws1f_c00053{word-spacing:18.248768pt;}
.ws10_c00053{word-spacing:24.323392pt;}
.ws11_c00053{word-spacing:24.659488pt;}
._2_c00053{margin-left:-3.840208pt;}
._4_c00053{margin-left:-2.405824pt;}
._1_c00053{margin-left:-1.026960pt;}
._0_c00053{width:0.964720pt;}
._3_c00053{width:5.271728pt;}
.fs2_c00053{font-size:33.608533pt;}
.fs1_c00053{font-size:41.388800pt;}
.fs3_c00053{font-size:51.970133pt;}
.fs0_c00053{font-size:62.240000pt;}
.y0_c00053{bottom:0.000000pt;}
.y2_c00053{bottom:97.547527pt;}
.y1_c00053{bottom:115.387067pt;}
.y23_c00053{bottom:132.826570pt;}
.y22_c00053{bottom:151.947067pt;}
.y21_c00053{bottom:165.065383pt;}
.y20_c00053{bottom:208.745415pt;}
.y1f_c00053{bottom:235.625315pt;}
.y1e_c00053{bottom:262.425859pt;}
.y1d_c00053{bottom:289.305759pt;}
.y1c_c00053{bottom:316.106303pt;}
.y1b_c00053{bottom:342.986203pt;}
.y1a_c00053{bottom:369.786747pt;}
.y19_c00053{bottom:396.666647pt;}
.y18_c00053{bottom:423.467191pt;}
.y17_c00053{bottom:450.347091pt;}
.y16_c00053{bottom:477.147635pt;}
.y15_c00053{bottom:504.027535pt;}
.y14_c00053{bottom:530.747167pt;}
.y13_c00053{bottom:557.624051pt;}
.y12_c00053{bottom:584.424595pt;}
.y11_c00053{bottom:611.304495pt;}
.y10_c00053{bottom:638.105039pt;}
.yf_c00053{bottom:664.984939pt;}
.ye_c00053{bottom:691.785483pt;}
.yd_c00053{bottom:718.665383pt;}
.yc_c00053{bottom:745.465927pt;}
.yb_c00053{bottom:772.345827pt;}
.ya_c00053{bottom:799.146371pt;}
.y9_c00053{bottom:826.026271pt;}
.y8_c00053{bottom:852.906171pt;}
.y7_c00053{bottom:879.706715pt;}
.y6_c00053{bottom:906.586615pt;}
.y5_c00053{bottom:933.387159pt;}
.y4_c00053{bottom:960.267059pt;}
.y3_c00053{bottom:987.067603pt;}
.h4_c00053{height:34.967599pt;}
.h5_c00053{height:48.087599pt;}
.h1_c00053{height:55.797187pt;}
.h3_c00053{height:55.804457pt;}
.h2_c00053{height:65.596476pt;}
.h0_c00053{height:1122.666667pt;}
.w0_c00053{width:793.333333pt;}
.x0_c00053{left:0.000000pt;}
.x2_c00053{left:73.519684pt;}
.x1_c00053{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_92d6ee3fccba6e59af6785d9.woff2')format("woff");}.ff1_c00054{font-family:ff1_c00054;line-height:1.106934;font-style:normal;font-weight:normal;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_848e47c9000d7246e375850f.woff2')format("woff");}.ff2_c00054{font-family:ff2_c00054;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00054;src:url('chunks/assets/font_4c5d28dcbd67e1156531a98b.woff2')format("woff");}.ff3_c00054{font-family:ff3_c00054;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00054{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00054{vertical-align:0.000000px;}
.lse_c00054{letter-spacing:-0.063018px;}
.ls13_c00054{letter-spacing:-0.056016px;}
.ls14_c00054{letter-spacing:-0.049014px;}
.ls16_c00054{letter-spacing:-0.042012px;}
.ls17_c00054{letter-spacing:-0.035010px;}
.ls12_c00054{letter-spacing:-0.028008px;}
.ls10_c00054{letter-spacing:-0.021006px;}
.ls15_c00054{letter-spacing:-0.014004px;}
.ls11_c00054{letter-spacing:-0.007002px;}
.lsf_c00054{letter-spacing:0.000000px;}
.ls0_c00054{letter-spacing:0.014004px;}
.lsc_c00054{letter-spacing:0.028008px;}
.ls6_c00054{letter-spacing:0.035010px;}
.lsd_c00054{letter-spacing:0.042012px;}
.lsb_c00054{letter-spacing:0.056016px;}
.ls3_c00054{letter-spacing:0.070020px;}
.ls8_c00054{letter-spacing:88.897392px;}
.ls7_c00054{letter-spacing:143.975124px;}
.lsa_c00054{letter-spacing:151.537284px;}
.ls5_c00054{letter-spacing:155.857518px;}
.ls9_c00054{letter-spacing:157.292928px;}
.ls2_c00054{letter-spacing:164.136654px;}
.ls4_c00054{letter-spacing:382.652298px;}
.ls1_c00054{letter-spacing:628.173126px;}
.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;}
}
.ws2_c00054{word-spacing:-19.535580px;}
.ws6_c00054{word-spacing:-19.521576px;}
.ws4_c00054{word-spacing:-19.465560px;}
.ws0_c00054{word-spacing:-19.458558px;}
.ws1_c00054{word-spacing:-19.444554px;}
.ws3_c00054{word-spacing:-19.437552px;}
.ws5_c00054{word-spacing:-19.409544px;}
.ws9_c00054{word-spacing:-0.028008px;}
.ws11_c00054{word-spacing:-0.014004px;}
.ws7_c00054{word-spacing:0.000000px;}
.ws8_c00054{word-spacing:0.007002px;}
.ws14_c00054{word-spacing:0.014004px;}
.ws12_c00054{word-spacing:0.028008px;}
.wsc_c00054{word-spacing:0.035010px;}
.ws16_c00054{word-spacing:0.343098px;}
.wsa_c00054{word-spacing:0.392112px;}
.wsb_c00054{word-spacing:0.399114px;}
.ws15_c00054{word-spacing:0.693198px;}
.ws17_c00054{word-spacing:2.863818px;}
.ws18_c00054{word-spacing:3.213918px;}
.ws19_c00054{word-spacing:3.262932px;}
.ws1c_c00054{word-spacing:4.313232px;}
.ws1b_c00054{word-spacing:4.334238px;}
.ws1a_c00054{word-spacing:15.838524px;}
.wsf_c00054{word-spacing:18.667332px;}
.ws10_c00054{word-spacing:18.709344px;}
.wsd_c00054{word-spacing:23.001570px;}
.wse_c00054{word-spacing:23.092596px;}
.ws13_c00054{word-spacing:23.414688px;}
._17_c00054{margin-left:-1.155330px;}
._18_c00054{width:1.253358px;}
._e_c00054{width:37.782792px;}
._5_c00054{width:41.738922px;}
._11_c00054{width:44.301654px;}
._1_c00054{width:46.066158px;}
._10_c00054{width:50.834520px;}
._3_c00054{width:56.877246px;}
._2_c00054{width:69.872958px;}
._a_c00054{width:80.621028px;}
._4_c00054{width:83.162754px;}
._7_c00054{width:84.969270px;}
._d_c00054{width:108.762066px;}
._8_c00054{width:115.554006px;}
._9_c00054{width:122.044860px;}
._c_c00054{width:182.528136px;}
._13_c00054{width:206.278920px;}
._15_c00054{width:219.603726px;}
._14_c00054{width:229.000410px;}
._0_c00054{width:250.195464px;}
._16_c00054{width:252.723186px;}
._12_c00054{width:296.632728px;}
._6_c00054{width:316.406376px;}
._b_c00054{width:351.724464px;}
._f_c00054{width:429.880788px;}
.fc0_c00054{color:rgb(0,0,0);}
.fs0_c00054{font-size:70.020000px;}
.y0_c00054{bottom:0.000000px;}
.y2_c00054{bottom:109.740968px;}
.y1_c00054{bottom:129.810450px;}
.y21_c00054{bottom:154.288704px;}
.y20_c00054{bottom:184.528592px;}
.y1f_c00054{bottom:214.768479px;}
.y1e_c00054{bottom:244.919091px;}
.y1d_c00054{bottom:275.158978px;}
.y1c_c00054{bottom:305.309591px;}
.y1b_c00054{bottom:335.549478px;}
.y1a_c00054{bottom:365.700090px;}
.y19_c00054{bottom:395.939977px;}
.y18_c00054{bottom:426.090589px;}
.y17_c00054{bottom:456.330477px;}
.y16_c00054{bottom:486.481089px;}
.y15_c00054{bottom:516.720977px;}
.y14_c00054{bottom:546.780562px;}
.y13_c00054{bottom:577.020450px;}
.y12_c00054{bottom:612.570450px;}
.y11_c00054{bottom:649.380450px;}
.y10_c00054{bottom:686.100450px;}
.yf_c00054{bottom:722.910450px;}
.ye_c00054{bottom:759.630450px;}
.yd_c00054{bottom:796.440450px;}
.yc_c00054{bottom:833.160450px;}
.yb_c00054{bottom:868.889055px;}
.ya_c00054{bottom:899.039667px;}
.y9_c00054{bottom:929.279555px;}
.y8_c00054{bottom:959.519442px;}
.y7_c00054{bottom:989.670054px;}
.y6_c00054{bottom:1019.909942px;}
.y5_c00054{bottom:1050.060553px;}
.y4_c00054{bottom:1080.300441px;}
.y3_c00054{bottom:1110.451053px;}
.h3_c00054{height:62.600889px;}
.h1_c00054{height:62.771836px;}
.h2_c00054{height:63.216299px;}
.h0_c00054{height:1263.000000px;}
.w0_c00054{width:892.500000px;}
.x0_c00054{left:0.000000px;}
.x2_c00054{left:82.709645px;}
.x4_c00054{left:122.580000px;}
.x3_c00054{left:416.158888px;}
.x1_c00054{left:436.680000px;}
@media print{
.v0_c00054{vertical-align:0.000000pt;}
.lse_c00054{letter-spacing:-0.056016pt;}
.ls13_c00054{letter-spacing:-0.049792pt;}
.ls14_c00054{letter-spacing:-0.043568pt;}
.ls16_c00054{letter-spacing:-0.037344pt;}
.ls17_c00054{letter-spacing:-0.031120pt;}
.ls12_c00054{letter-spacing:-0.024896pt;}
.ls10_c00054{letter-spacing:-0.018672pt;}
.ls15_c00054{letter-spacing:-0.012448pt;}
.ls11_c00054{letter-spacing:-0.006224pt;}
.lsf_c00054{letter-spacing:0.000000pt;}
.ls0_c00054{letter-spacing:0.012448pt;}
.lsc_c00054{letter-spacing:0.024896pt;}
.ls6_c00054{letter-spacing:0.031120pt;}
.lsd_c00054{letter-spacing:0.037344pt;}
.lsb_c00054{letter-spacing:0.049792pt;}
.ls3_c00054{letter-spacing:0.062240pt;}
.ls8_c00054{letter-spacing:79.019904pt;}
.ls7_c00054{letter-spacing:127.977888pt;}
.lsa_c00054{letter-spacing:134.699808pt;}
.ls5_c00054{letter-spacing:138.540016pt;}
.ls9_c00054{letter-spacing:139.815936pt;}
.ls2_c00054{letter-spacing:145.899248pt;}
.ls4_c00054{letter-spacing:340.135376pt;}
.ls1_c00054{letter-spacing:558.376112pt;}
.ws2_c00054{word-spacing:-17.364960pt;}
.ws6_c00054{word-spacing:-17.352512pt;}
.ws4_c00054{word-spacing:-17.302720pt;}
.ws0_c00054{word-spacing:-17.296496pt;}
.ws1_c00054{word-spacing:-17.284048pt;}
.ws3_c00054{word-spacing:-17.277824pt;}
.ws5_c00054{word-spacing:-17.252928pt;}
.ws9_c00054{word-spacing:-0.024896pt;}
.ws11_c00054{word-spacing:-0.012448pt;}
.ws7_c00054{word-spacing:0.000000pt;}
.ws8_c00054{word-spacing:0.006224pt;}
.ws14_c00054{word-spacing:0.012448pt;}
.ws12_c00054{word-spacing:0.024896pt;}
.wsc_c00054{word-spacing:0.031120pt;}
.ws16_c00054{word-spacing:0.304976pt;}
.wsa_c00054{word-spacing:0.348544pt;}
.wsb_c00054{word-spacing:0.354768pt;}
.ws15_c00054{word-spacing:0.616176pt;}
.ws17_c00054{word-spacing:2.545616pt;}
.ws18_c00054{word-spacing:2.856816pt;}
.ws19_c00054{word-spacing:2.900384pt;}
.ws1c_c00054{word-spacing:3.833984pt;}
.ws1b_c00054{word-spacing:3.852656pt;}
.ws1a_c00054{word-spacing:14.078688pt;}
.wsf_c00054{word-spacing:16.593184pt;}
.ws10_c00054{word-spacing:16.630528pt;}
.wsd_c00054{word-spacing:20.445840pt;}
.wse_c00054{word-spacing:20.526752pt;}
.ws13_c00054{word-spacing:20.813056pt;}
._17_c00054{margin-left:-1.026960pt;}
._18_c00054{width:1.114096pt;}
._e_c00054{width:33.584704pt;}
._5_c00054{width:37.101264pt;}
._11_c00054{width:39.379248pt;}
._1_c00054{width:40.947696pt;}
._10_c00054{width:45.186240pt;}
._3_c00054{width:50.557552pt;}
._2_c00054{width:62.109296pt;}
._a_c00054{width:71.663136pt;}
._4_c00054{width:73.922448pt;}
._7_c00054{width:75.528240pt;}
._d_c00054{width:96.677392pt;}
._8_c00054{width:102.714672pt;}
._9_c00054{width:108.484320pt;}
._c_c00054{width:162.247232pt;}
._13_c00054{width:183.359040pt;}
._15_c00054{width:195.203312pt;}
._14_c00054{width:203.555920pt;}
._0_c00054{width:222.395968pt;}
._16_c00054{width:224.642832pt;}
._12_c00054{width:263.673536pt;}
._6_c00054{width:281.250112pt;}
._b_c00054{width:312.643968pt;}
._f_c00054{width:382.116256pt;}
.fs0_c00054{font-size:62.240000pt;}
.y0_c00054{bottom:0.000000pt;}
.y2_c00054{bottom:97.547527pt;}
.y1_c00054{bottom:115.387067pt;}
.y21_c00054{bottom:137.145515pt;}
.y20_c00054{bottom:164.025415pt;}
.y1f_c00054{bottom:190.905315pt;}
.y1e_c00054{bottom:217.705859pt;}
.y1d_c00054{bottom:244.585759pt;}
.y1c_c00054{bottom:271.386303pt;}
.y1b_c00054{bottom:298.266203pt;}
.y1a_c00054{bottom:325.066747pt;}
.y19_c00054{bottom:351.946647pt;}
.y18_c00054{bottom:378.747191pt;}
.y17_c00054{bottom:405.627091pt;}
.y16_c00054{bottom:432.427635pt;}
.y15_c00054{bottom:459.307535pt;}
.y14_c00054{bottom:486.027167pt;}
.y13_c00054{bottom:512.907067pt;}
.y12_c00054{bottom:544.507067pt;}
.y11_c00054{bottom:577.227067pt;}
.y10_c00054{bottom:609.867067pt;}
.yf_c00054{bottom:642.587067pt;}
.ye_c00054{bottom:675.227067pt;}
.yd_c00054{bottom:707.947067pt;}
.yc_c00054{bottom:740.587067pt;}
.yb_c00054{bottom:772.345827pt;}
.ya_c00054{bottom:799.146371pt;}
.y9_c00054{bottom:826.026271pt;}
.y8_c00054{bottom:852.906171pt;}
.y7_c00054{bottom:879.706715pt;}
.y6_c00054{bottom:906.586615pt;}
.y5_c00054{bottom:933.387159pt;}
.y4_c00054{bottom:960.267059pt;}
.y3_c00054{bottom:987.067603pt;}
.h3_c00054{height:55.645234pt;}
.h1_c00054{height:55.797187pt;}
.h2_c00054{height:56.192266pt;}
.h0_c00054{height:1122.666667pt;}
.w0_c00054{width:793.333333pt;}
.x0_c00054{left:0.000000pt;}
.x2_c00054{left:73.519684pt;}
.x4_c00054{left:108.960000pt;}
.x3_c00054{left:369.919012pt;}
.x1_c00054{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7db026331ef0d7b3c215b1ae.woff2')format("woff");}.ff1_c00055{font-family:ff1_c00055;line-height:1.106934;font-style:normal;font-weight:normal;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_44467d800579931be4d07c4e.woff2')format("woff");}.ff2_c00055{font-family:ff2_c00055;line-height:1.104492;font-style:normal;font-weight:normal;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_54811d3fcabfcefc19153feb.woff2')format("woff");}.ff3_c00055{font-family:ff3_c00055;line-height:1.133301;font-style:normal;font-weight:normal;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_0563a07b5662ab7a7d789169.woff2')format("woff");}.ff4_c00055{font-family:ff4_c00055;line-height:1.133301;font-style:normal;font-weight:normal;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_2f2d138ff74aef5136b3b86e.woff2')format("woff");}.ff5_c00055{font-family:ff5_c00055;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00055{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00055{vertical-align:-14.760000px;}
.v0_c00055{vertical-align:0.000000px;}
.v1_c00055{vertical-align:32.399586px;}
.ls21_c00055{letter-spacing:-0.707443px;}
.ls18_c00055{letter-spacing:-0.268945px;}
.ls20_c00055{letter-spacing:-0.245559px;}
.ls1f_c00055{letter-spacing:-0.163706px;}
.ls10_c00055{letter-spacing:-0.146166px;}
.lsa_c00055{letter-spacing:-0.105030px;}
.ls12_c00055{letter-spacing:-0.087700px;}
.lsf_c00055{letter-spacing:-0.075619px;}
.ls5_c00055{letter-spacing:-0.063018px;}
.ls11_c00055{letter-spacing:-0.058466px;}
.lse_c00055{letter-spacing:-0.056016px;}
.ls1e_c00055{letter-spacing:-0.052620px;}
.ls1a_c00055{letter-spacing:-0.046773px;}
.ls17_c00055{letter-spacing:-0.040926px;}
.lsb_c00055{letter-spacing:-0.035010px;}
.ls16_c00055{letter-spacing:-0.029233px;}
.ls8_c00055{letter-spacing:-0.028008px;}
.lsd_c00055{letter-spacing:-0.021006px;}
.ls15_c00055{letter-spacing:-0.017540px;}
.ls9_c00055{letter-spacing:-0.014004px;}
.ls1d_c00055{letter-spacing:-0.011693px;}
.lsc_c00055{letter-spacing:-0.007002px;}
.ls13_c00055{letter-spacing:-0.005847px;}
.ls6_c00055{letter-spacing:0.000000px;}
.ls0_c00055{letter-spacing:0.007002px;}
.ls2_c00055{letter-spacing:0.014004px;}
.ls7_c00055{letter-spacing:0.023281px;}
.ls4_c00055{letter-spacing:0.040926px;}
.ls14_c00055{letter-spacing:0.046773px;}
.ls19_c00055{letter-spacing:0.081853px;}
.ls1b_c00055{letter-spacing:0.286485px;}
.ls1c_c00055{letter-spacing:0.309872px;}
.ls3_c00055{letter-spacing:0.362492px;}
.ls1_c00055{letter-spacing:4.292226px;}
.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;}
}
.ws2_c00055{word-spacing:-58.466400px;}
.ws3_c00055{word-spacing:-15.949634px;}
.ws0_c00055{word-spacing:-12.967628px;}
.ws1_c00055{word-spacing:-10.397640px;}
.ws2b_c00055{word-spacing:-0.631437px;}
.ws1f_c00055{word-spacing:-0.391725px;}
.ws2d_c00055{word-spacing:-0.333258px;}
.ws20_c00055{word-spacing:-0.327412px;}
.ws2c_c00055{word-spacing:-0.298179px;}
.ws24_c00055{word-spacing:-0.076006px;}
.ws6_c00055{word-spacing:-0.021006px;}
.ws4_c00055{word-spacing:0.000000px;}
.ws21_c00055{word-spacing:0.011693px;}
.ws9_c00055{word-spacing:0.014004px;}
.ws1e_c00055{word-spacing:0.017540px;}
.ws22_c00055{word-spacing:0.040926px;}
.ws16_c00055{word-spacing:0.042012px;}
.ws23_c00055{word-spacing:0.052620px;}
.ws2e_c00055{word-spacing:0.064313px;}
.ws2f_c00055{word-spacing:0.175399px;}
.wsf_c00055{word-spacing:0.350100px;}
.ws1a_c00055{word-spacing:0.357102px;}
.ws30_c00055{word-spacing:0.719137px;}
.ws19_c00055{word-spacing:1.820520px;}
.ws14_c00055{word-spacing:2.163618px;}
.ws15_c00055{word-spacing:2.177622px;}
.ws5_c00055{word-spacing:2.506716px;}
.ws7_c00055{word-spacing:3.977136px;}
.wsc_c00055{word-spacing:4.320234px;}
.ws12_c00055{word-spacing:4.677336px;}
.wsa_c00055{word-spacing:5.020434px;}
.wsb_c00055{word-spacing:5.027436px;}
.ws29_c00055{word-spacing:5.817407px;}
.ws2a_c00055{word-spacing:5.829100px;}
.ws11_c00055{word-spacing:7.184052px;}
.ws10_c00055{word-spacing:7.933266px;}
.ws1c_c00055{word-spacing:8.711494px;}
.ws1d_c00055{word-spacing:8.740727px;}
.ws1b_c00055{word-spacing:9.161685px;}
.wse_c00055{word-spacing:9.704772px;}
.wsd_c00055{word-spacing:9.739782px;}
.ws13_c00055{word-spacing:12.246498px;}
.ws17_c00055{word-spacing:12.932694px;}
.ws18_c00055{word-spacing:12.981708px;}
.ws26_c00055{word-spacing:18.650782px;}
.ws27_c00055{word-spacing:18.691708px;}
.ws25_c00055{word-spacing:18.750174px;}
.ws28_c00055{word-spacing:19.141899px;}
.ws8_c00055{word-spacing:24.485994px;}
._1_c00055{margin-left:-3.963132px;}
._4_c00055{margin-left:-2.707344px;}
._2_c00055{margin-left:-1.022292px;}
._0_c00055{width:1.358388px;}
._3_c00055{width:5.930694px;}
.fc0_c00055{color:rgb(0,0,0);}
.fs2_c00055{font-size:37.809600px;}
.fs1_c00055{font-size:46.562400px;}
.fs3_c00055{font-size:58.466400px;}
.fs0_c00055{font-size:70.020000px;}
.y0_c00055{bottom:0.000000px;}
.y2_c00055{bottom:109.740968px;}
.y1_c00055{bottom:129.810450px;}
.y24_c00055{bottom:153.120600px;}
.y23_c00055{bottom:187.770450px;}
.y22_c00055{bottom:205.590450px;}
.y21_c00055{bottom:227.280600px;}
.y20_c00055{bottom:265.530450px;}
.y1f_c00055{bottom:287.850450px;}
.y1e_c00055{bottom:301.979891px;}
.y1d_c00055{bottom:323.490450px;}
.y1c_c00055{bottom:338.249352px;}
.y1b_c00055{bottom:385.859451px;}
.y1a_c00055{bottom:416.010063px;}
.y19_c00055{bottom:446.249950px;}
.y18_c00055{bottom:476.400562px;}
.y17_c00055{bottom:506.638866px;}
.y16_c00055{bottom:536.789478px;}
.y15_c00055{bottom:567.029365px;}
.y14_c00055{bottom:597.088951px;}
.y13_c00055{bottom:627.328839px;}
.y12_c00055{bottom:657.479451px;}
.y11_c00055{bottom:687.719338px;}
.y10_c00055{bottom:717.869950px;}
.yf_c00055{bottom:748.109838px;}
.ye_c00055{bottom:778.259951px;}
.yd_c00055{bottom:808.499838px;}
.yc_c00055{bottom:838.650063px;}
.yb_c00055{bottom:868.889950px;}
.ya_c00055{bottom:899.040562px;}
.y9_c00055{bottom:929.279451px;}
.y8_c00055{bottom:959.519339px;}
.y7_c00055{bottom:989.669950px;}
.y6_c00055{bottom:1019.909838px;}
.y5_c00055{bottom:1050.060553px;}
.y4_c00055{bottom:1080.300441px;}
.y3_c00055{bottom:1110.451053px;}
.hb_c00055{height:39.337949px;}
.h9_c00055{height:39.338549px;}
.ha_c00055{height:54.098549px;}
.h2_c00055{height:62.600889px;}
.h1_c00055{height:62.771836px;}
.h8_c00055{height:62.776828px;}
.h4_c00055{height:73.787060px;}
.h7_c00055{height:73.788800px;}
.h3_c00055{height:74.028372px;}
.h5_c00055{height:74.030334px;}
.h6_c00055{height:74.031384px;}
.h0_c00055{height:1263.000000px;}
.w0_c00055{width:892.500000px;}
.x0_c00055{left:0.000000px;}
.x2_c00055{left:82.709645px;}
.x1_c00055{left:436.680000px;}
@media print{
.v2_c00055{vertical-align:-13.120000pt;}
.v0_c00055{vertical-align:0.000000pt;}
.v1_c00055{vertical-align:28.799632pt;}
.ls21_c00055{letter-spacing:-0.628839pt;}
.ls18_c00055{letter-spacing:-0.239063pt;}
.ls20_c00055{letter-spacing:-0.218275pt;}
.ls1f_c00055{letter-spacing:-0.145516pt;}
.ls10_c00055{letter-spacing:-0.129925pt;}
.lsa_c00055{letter-spacing:-0.093360pt;}
.ls12_c00055{letter-spacing:-0.077955pt;}
.lsf_c00055{letter-spacing:-0.067217pt;}
.ls5_c00055{letter-spacing:-0.056016pt;}
.ls11_c00055{letter-spacing:-0.051970pt;}
.lse_c00055{letter-spacing:-0.049792pt;}
.ls1e_c00055{letter-spacing:-0.046773pt;}
.ls1a_c00055{letter-spacing:-0.041576pt;}
.ls17_c00055{letter-spacing:-0.036379pt;}
.lsb_c00055{letter-spacing:-0.031120pt;}
.ls16_c00055{letter-spacing:-0.025985pt;}
.ls8_c00055{letter-spacing:-0.024896pt;}
.lsd_c00055{letter-spacing:-0.018672pt;}
.ls15_c00055{letter-spacing:-0.015591pt;}
.ls9_c00055{letter-spacing:-0.012448pt;}
.ls1d_c00055{letter-spacing:-0.010394pt;}
.lsc_c00055{letter-spacing:-0.006224pt;}
.ls13_c00055{letter-spacing:-0.005197pt;}
.ls6_c00055{letter-spacing:0.000000pt;}
.ls0_c00055{letter-spacing:0.006224pt;}
.ls2_c00055{letter-spacing:0.012448pt;}
.ls7_c00055{letter-spacing:0.020694pt;}
.ls4_c00055{letter-spacing:0.036379pt;}
.ls14_c00055{letter-spacing:0.041576pt;}
.ls19_c00055{letter-spacing:0.072758pt;}
.ls1b_c00055{letter-spacing:0.254654pt;}
.ls1c_c00055{letter-spacing:0.275442pt;}
.ls3_c00055{letter-spacing:0.322215pt;}
.ls1_c00055{letter-spacing:3.815312pt;}
.ws2_c00055{word-spacing:-51.970133pt;}
.ws3_c00055{word-spacing:-14.177452pt;}
.ws0_c00055{word-spacing:-11.526781pt;}
.ws1_c00055{word-spacing:-9.242347pt;}
.ws2b_c00055{word-spacing:-0.561277pt;}
.ws1f_c00055{word-spacing:-0.348200pt;}
.ws2d_c00055{word-spacing:-0.296230pt;}
.ws20_c00055{word-spacing:-0.291033pt;}
.ws2c_c00055{word-spacing:-0.265048pt;}
.ws24_c00055{word-spacing:-0.067561pt;}
.ws6_c00055{word-spacing:-0.018672pt;}
.ws4_c00055{word-spacing:0.000000pt;}
.ws21_c00055{word-spacing:0.010394pt;}
.ws9_c00055{word-spacing:0.012448pt;}
.ws1e_c00055{word-spacing:0.015591pt;}
.ws22_c00055{word-spacing:0.036379pt;}
.ws16_c00055{word-spacing:0.037344pt;}
.ws23_c00055{word-spacing:0.046773pt;}
.ws2e_c00055{word-spacing:0.057167pt;}
.ws2f_c00055{word-spacing:0.155910pt;}
.wsf_c00055{word-spacing:0.311200pt;}
.ws1a_c00055{word-spacing:0.317424pt;}
.ws30_c00055{word-spacing:0.639233pt;}
.ws19_c00055{word-spacing:1.618240pt;}
.ws14_c00055{word-spacing:1.923216pt;}
.ws15_c00055{word-spacing:1.935664pt;}
.ws5_c00055{word-spacing:2.228192pt;}
.ws7_c00055{word-spacing:3.535232pt;}
.wsc_c00055{word-spacing:3.840208pt;}
.ws12_c00055{word-spacing:4.157632pt;}
.wsa_c00055{word-spacing:4.462608pt;}
.wsb_c00055{word-spacing:4.468832pt;}
.ws29_c00055{word-spacing:5.171028pt;}
.ws2a_c00055{word-spacing:5.181422pt;}
.ws11_c00055{word-spacing:6.385824pt;}
.ws10_c00055{word-spacing:7.051792pt;}
.ws1c_c00055{word-spacing:7.743550pt;}
.ws1d_c00055{word-spacing:7.769535pt;}
.ws1b_c00055{word-spacing:8.143720pt;}
.wse_c00055{word-spacing:8.626464pt;}
.wsd_c00055{word-spacing:8.657584pt;}
.ws13_c00055{word-spacing:10.885776pt;}
.ws17_c00055{word-spacing:11.495728pt;}
.ws18_c00055{word-spacing:11.539296pt;}
.ws26_c00055{word-spacing:16.578473pt;}
.ws27_c00055{word-spacing:16.614852pt;}
.ws25_c00055{word-spacing:16.666822pt;}
.ws28_c00055{word-spacing:17.015022pt;}
.ws8_c00055{word-spacing:21.765328pt;}
._1_c00055{margin-left:-3.522784pt;}
._4_c00055{margin-left:-2.406528pt;}
._2_c00055{margin-left:-0.908704pt;}
._0_c00055{width:1.207456pt;}
._3_c00055{width:5.271728pt;}
.fs2_c00055{font-size:33.608533pt;}
.fs1_c00055{font-size:41.388800pt;}
.fs3_c00055{font-size:51.970133pt;}
.fs0_c00055{font-size:62.240000pt;}
.y0_c00055{bottom:0.000000pt;}
.y2_c00055{bottom:97.547527pt;}
.y1_c00055{bottom:115.387067pt;}
.y24_c00055{bottom:136.107200pt;}
.y23_c00055{bottom:166.907067pt;}
.y22_c00055{bottom:182.747067pt;}
.y21_c00055{bottom:202.027200pt;}
.y20_c00055{bottom:236.027067pt;}
.y1f_c00055{bottom:255.867067pt;}
.y1e_c00055{bottom:268.426570pt;}
.y1d_c00055{bottom:287.547067pt;}
.y1c_c00055{bottom:300.666091pt;}
.y1b_c00055{bottom:342.986179pt;}
.y1a_c00055{bottom:369.786723pt;}
.y19_c00055{bottom:396.666623pt;}
.y18_c00055{bottom:423.467167pt;}
.y17_c00055{bottom:450.345659pt;}
.y16_c00055{bottom:477.146203pt;}
.y15_c00055{bottom:504.026103pt;}
.y14_c00055{bottom:530.745735pt;}
.y13_c00055{bottom:557.625635pt;}
.y12_c00055{bottom:584.426179pt;}
.y11_c00055{bottom:611.306079pt;}
.y10_c00055{bottom:638.106623pt;}
.yf_c00055{bottom:664.986523pt;}
.ye_c00055{bottom:691.786623pt;}
.yd_c00055{bottom:718.666523pt;}
.yc_c00055{bottom:745.466723pt;}
.yb_c00055{bottom:772.346623pt;}
.ya_c00055{bottom:799.147167pt;}
.y9_c00055{bottom:826.026179pt;}
.y8_c00055{bottom:852.906079pt;}
.y7_c00055{bottom:879.706623pt;}
.y6_c00055{bottom:906.586523pt;}
.y5_c00055{bottom:933.387159pt;}
.y4_c00055{bottom:960.267059pt;}
.y3_c00055{bottom:987.067603pt;}
.hb_c00055{height:34.967066pt;}
.h9_c00055{height:34.967599pt;}
.ha_c00055{height:48.087599pt;}
.h2_c00055{height:55.645234pt;}
.h1_c00055{height:55.797187pt;}
.h8_c00055{height:55.801625pt;}
.h4_c00055{height:65.588498pt;}
.h7_c00055{height:65.590045pt;}
.h3_c00055{height:65.802998pt;}
.h5_c00055{height:65.804742pt;}
.h6_c00055{height:65.805675pt;}
.h0_c00055{height:1122.666667pt;}
.w0_c00055{width:793.333333pt;}
.x0_c00055{left:0.000000pt;}
.x2_c00055{left:73.519684pt;}
.x1_c00055{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_52b1a39ab3f038b152dae505.woff2')format("woff");}.ff1_c00056{font-family:ff1_c00056;line-height:1.106934;font-style:normal;font-weight:normal;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_fd37e20d960a133380cb7267.woff2')format("woff");}.ff2_c00056{font-family:ff2_c00056;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00056;src:url('chunks/assets/font_f862c26c451251368b96ea7a.woff2')format("woff");}.ff3_c00056{font-family:ff3_c00056;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00056{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00056{vertical-align:0.000000px;}
.v1_c00056{vertical-align:60.120000px;}
.ls5_c00056{letter-spacing:-0.063018px;}
.lsb_c00056{letter-spacing:-0.049014px;}
.ls9_c00056{letter-spacing:-0.042012px;}
.lsc_c00056{letter-spacing:-0.035010px;}
.ls7_c00056{letter-spacing:-0.028008px;}
.lsa_c00056{letter-spacing:-0.021006px;}
.ls8_c00056{letter-spacing:-0.014004px;}
.ls6_c00056{letter-spacing:0.000000px;}
.ls0_c00056{letter-spacing:0.021006px;}
.ls2_c00056{letter-spacing:0.063018px;}
.ls3_c00056{letter-spacing:81.697104px;}
.ls1_c00056{letter-spacing:186.095862px;}
.ls4_c00056{letter-spacing:347.375862px;}
.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:-19.486566px;}
.ws3_c00056{word-spacing:-0.077022px;}
.ws1_c00056{word-spacing:0.000000px;}
.ws8_c00056{word-spacing:0.021006px;}
.ws2_c00056{word-spacing:0.028008px;}
.ws7_c00056{word-spacing:0.049014px;}
.ws5_c00056{word-spacing:0.364104px;}
.ws4_c00056{word-spacing:0.406116px;}
.ws6_c00056{word-spacing:35.318088px;}
._5_c00056{margin-left:-35.283078px;}
._1_c00056{width:1.365390px;}
._4_c00056{width:16.195626px;}
._2_c00056{width:26.278506px;}
._b_c00056{width:41.759928px;}
._9_c00056{width:51.478704px;}
._7_c00056{width:61.204482px;}
._6_c00056{width:97.194762px;}
._d_c00056{width:109.525284px;}
._c_c00056{width:113.040288px;}
._a_c00056{width:132.477840px;}
._f_c00056{width:187.240482px;}
._e_c00056{width:190.783494px;}
._3_c00056{width:195.138738px;}
._8_c00056{width:210.963258px;}
._0_c00056{width:2668.448196px;}
.fc0_c00056{color:rgb(0,0,0);}
.fs0_c00056{font-size:70.020000px;}
.y0_c00056{bottom:0.000000px;}
.y2_c00056{bottom:109.740968px;}
.y1_c00056{bottom:129.810450px;}
.y1b_c00056{bottom:207.120600px;}
.y1a_c00056{bottom:246.090450px;}
.y19_c00056{bottom:284.970450px;}
.y18_c00056{bottom:323.940450px;}
.y17_c00056{bottom:362.910450px;}
.y16_c00056{bottom:401.880450px;}
.y15_c00056{bottom:440.760450px;}
.y14_c00056{bottom:479.730450px;}
.y13_c00056{bottom:518.700600px;}
.y12_c00056{bottom:557.670450px;}
.y11_c00056{bottom:596.640450px;}
.y10_c00056{bottom:635.520450px;}
.yf_c00056{bottom:674.490450px;}
.ye_c00056{bottom:713.460450px;}
.yd_c00056{bottom:752.430450px;}
.yc_c00056{bottom:791.310450px;}
.yb_c00056{bottom:806.520450px;}
.ya_c00056{bottom:878.609581px;}
.y9_c00056{bottom:908.760194px;}
.y8_c00056{bottom:959.519442px;}
.y7_c00056{bottom:989.670054px;}
.y6_c00056{bottom:1019.909942px;}
.y5_c00056{bottom:1050.060553px;}
.y4_c00056{bottom:1080.300441px;}
.y3_c00056{bottom:1110.451053px;}
.h1_c00056{height:62.771836px;}
.h2_c00056{height:63.216299px;}
.h3_c00056{height:122.720889px;}
.h4_c00056{height:183.560889px;}
.h0_c00056{height:1263.000000px;}
.w0_c00056{width:892.500000px;}
.x0_c00056{left:0.000000px;}
.x2_c00056{left:82.709645px;}
.x3_c00056{left:257.580000px;}
.x4_c00056{left:340.110000px;}
.x1_c00056{left:436.680000px;}
.x5_c00056{left:559.440000px;}
@media print{
.v0_c00056{vertical-align:0.000000pt;}
.v1_c00056{vertical-align:53.440000pt;}
.ls5_c00056{letter-spacing:-0.056016pt;}
.lsb_c00056{letter-spacing:-0.043568pt;}
.ls9_c00056{letter-spacing:-0.037344pt;}
.lsc_c00056{letter-spacing:-0.031120pt;}
.ls7_c00056{letter-spacing:-0.024896pt;}
.lsa_c00056{letter-spacing:-0.018672pt;}
.ls8_c00056{letter-spacing:-0.012448pt;}
.ls6_c00056{letter-spacing:0.000000pt;}
.ls0_c00056{letter-spacing:0.018672pt;}
.ls2_c00056{letter-spacing:0.056016pt;}
.ls3_c00056{letter-spacing:72.619648pt;}
.ls1_c00056{letter-spacing:165.418544pt;}
.ls4_c00056{letter-spacing:308.778544pt;}
.ws0_c00056{word-spacing:-17.321392pt;}
.ws3_c00056{word-spacing:-0.068464pt;}
.ws1_c00056{word-spacing:0.000000pt;}
.ws8_c00056{word-spacing:0.018672pt;}
.ws2_c00056{word-spacing:0.024896pt;}
.ws7_c00056{word-spacing:0.043568pt;}
.ws5_c00056{word-spacing:0.323648pt;}
.ws4_c00056{word-spacing:0.360992pt;}
.ws6_c00056{word-spacing:31.393856pt;}
._5_c00056{margin-left:-31.362736pt;}
._1_c00056{width:1.213680pt;}
._4_c00056{width:14.396112pt;}
._2_c00056{width:23.358672pt;}
._b_c00056{width:37.119936pt;}
._9_c00056{width:45.758848pt;}
._7_c00056{width:54.403984pt;}
._6_c00056{width:86.395344pt;}
._d_c00056{width:97.355808pt;}
._c_c00056{width:100.480256pt;}
._a_c00056{width:117.758080pt;}
._f_c00056{width:166.435984pt;}
._e_c00056{width:169.585328pt;}
._3_c00056{width:173.456656pt;}
._8_c00056{width:187.522896pt;}
._0_c00056{width:2371.953952pt;}
.fs0_c00056{font-size:62.240000pt;}
.y0_c00056{bottom:0.000000pt;}
.y2_c00056{bottom:97.547527pt;}
.y1_c00056{bottom:115.387067pt;}
.y1b_c00056{bottom:184.107200pt;}
.y1a_c00056{bottom:218.747067pt;}
.y19_c00056{bottom:253.307067pt;}
.y18_c00056{bottom:287.947067pt;}
.y17_c00056{bottom:322.587067pt;}
.y16_c00056{bottom:357.227067pt;}
.y15_c00056{bottom:391.787067pt;}
.y14_c00056{bottom:426.427067pt;}
.y13_c00056{bottom:461.067200pt;}
.y12_c00056{bottom:495.707067pt;}
.y11_c00056{bottom:530.347067pt;}
.y10_c00056{bottom:564.907067pt;}
.yf_c00056{bottom:599.547067pt;}
.ye_c00056{bottom:634.187067pt;}
.yd_c00056{bottom:668.827067pt;}
.yc_c00056{bottom:703.387067pt;}
.yb_c00056{bottom:716.907067pt;}
.ya_c00056{bottom:780.986295pt;}
.y9_c00056{bottom:807.786839pt;}
.y8_c00056{bottom:852.906171pt;}
.y7_c00056{bottom:879.706715pt;}
.y6_c00056{bottom:906.586615pt;}
.y5_c00056{bottom:933.387159pt;}
.y4_c00056{bottom:960.267059pt;}
.y3_c00056{bottom:987.067603pt;}
.h1_c00056{height:55.797187pt;}
.h2_c00056{height:56.192266pt;}
.h3_c00056{height:109.085234pt;}
.h4_c00056{height:163.165234pt;}
.h0_c00056{height:1122.666667pt;}
.w0_c00056{width:793.333333pt;}
.x0_c00056{left:0.000000pt;}
.x2_c00056{left:73.519684pt;}
.x3_c00056{left:228.960000pt;}
.x4_c00056{left:302.320000pt;}
.x1_c00056{left:388.160000pt;}
.x5_c00056{left:497.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_dd7383951273ea470e57c4df.woff2')format("woff");}.ff1_c00057{font-family:ff1_c00057;line-height:1.106934;font-style:normal;font-weight:normal;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_cdf6d3e0233751f9e20dedbc.woff2')format("woff");}.ff2_c00057{font-family:ff2_c00057;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00057;src:url('chunks/assets/font_da17f9b7958f5fa19a23836c.woff2')format("woff");}.ff3_c00057{font-family:ff3_c00057;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00057{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00057{vertical-align:0.000000px;}
.ls3_c00057{letter-spacing:-0.063018px;}
.lsc_c00057{letter-spacing:-0.056016px;}
.lsa_c00057{letter-spacing:-0.049014px;}
.ls8_c00057{letter-spacing:-0.042012px;}
.lsb_c00057{letter-spacing:-0.035010px;}
.ls7_c00057{letter-spacing:-0.028008px;}
.ls6_c00057{letter-spacing:-0.021006px;}
.ls9_c00057{letter-spacing:-0.014004px;}
.ls5_c00057{letter-spacing:-0.007002px;}
.ls4_c00057{letter-spacing:0.000000px;}
.ls2_c00057{letter-spacing:0.014004px;}
.ls1_c00057{letter-spacing:0.035010px;}
.ls0_c00057{letter-spacing:0.056016px;}
.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;}
}
.ws1_c00057{word-spacing:-19.521576px;}
.ws0_c00057{word-spacing:-19.465560px;}
.ws5_c00057{word-spacing:-0.049014px;}
.ws4_c00057{word-spacing:-0.014004px;}
.wsa_c00057{word-spacing:-0.007002px;}
.ws2_c00057{word-spacing:0.000000px;}
.ws6_c00057{word-spacing:0.007002px;}
.ws8_c00057{word-spacing:0.014004px;}
.wse_c00057{word-spacing:0.028008px;}
.wsd_c00057{word-spacing:0.035010px;}
.ws7_c00057{word-spacing:0.329094px;}
.ws3_c00057{word-spacing:0.350100px;}
.ws9_c00057{word-spacing:0.364104px;}
.wsb_c00057{word-spacing:0.385110px;}
.ws13_c00057{word-spacing:5.034438px;}
.ws14_c00057{word-spacing:7.933266px;}
.ws10_c00057{word-spacing:15.852528px;}
.ws11_c00057{word-spacing:16.573734px;}
.ws12_c00057{word-spacing:16.909830px;}
.wsf_c00057{word-spacing:19.101456px;}
.wsc_c00057{word-spacing:20.522862px;}
._0_c00057{margin-left:-1.309374px;}
._1_c00057{width:1.519434px;}
.fc0_c00057{color:rgb(0,0,0);}
.fs0_c00057{font-size:70.020000px;}
.y0_c00057{bottom:0.000000px;}
.y2_c00057{bottom:109.740968px;}
.y1_c00057{bottom:129.810450px;}
.y1b_c00057{bottom:378.297426px;}
.y1a_c00057{bottom:428.878124px;}
.y19_c00057{bottom:459.207287px;}
.y18_c00057{bottom:489.357899px;}
.y17_c00057{bottom:519.597786px;}
.y16_c00057{bottom:549.748398px;}
.y15_c00057{bottom:579.988286px;}
.y14_c00057{bottom:630.477957px;}
.y13_c00057{bottom:671.068551px;}
.y12_c00057{bottom:691.229059px;}
.y11_c00057{bottom:711.298542px;}
.y10_c00057{bottom:731.459050px;}
.yf_c00057{bottom:751.619559px;}
.ye_c00057{bottom:771.689041px;}
.yd_c00057{bottom:805.169105px;}
.yc_c00057{bottom:835.408992px;}
.yb_c00057{bottom:865.559604px;}
.ya_c00057{bottom:895.799491px;}
.y9_c00057{bottom:925.950104px;}
.y8_c00057{bottom:956.189991px;}
.y7_c00057{bottom:986.340603px;}
.y6_c00057{bottom:1016.580490px;}
.y5_c00057{bottom:1046.731102px;}
.y4_c00057{bottom:1076.970990px;}
.y3_c00057{bottom:1107.121602px;}
.h3_c00057{height:62.600889px;}
.h1_c00057{height:62.771836px;}
.h2_c00057{height:63.216299px;}
.h0_c00057{height:1263.000000px;}
.w0_c00057{width:892.500000px;}
.x0_c00057{left:0.000000px;}
.x2_c00057{left:82.709645px;}
.x3_c00057{left:156.330423px;}
.x1_c00057{left:436.680000px;}
@media print{
.v0_c00057{vertical-align:0.000000pt;}
.ls3_c00057{letter-spacing:-0.056016pt;}
.lsc_c00057{letter-spacing:-0.049792pt;}
.lsa_c00057{letter-spacing:-0.043568pt;}
.ls8_c00057{letter-spacing:-0.037344pt;}
.lsb_c00057{letter-spacing:-0.031120pt;}
.ls7_c00057{letter-spacing:-0.024896pt;}
.ls6_c00057{letter-spacing:-0.018672pt;}
.ls9_c00057{letter-spacing:-0.012448pt;}
.ls5_c00057{letter-spacing:-0.006224pt;}
.ls4_c00057{letter-spacing:0.000000pt;}
.ls2_c00057{letter-spacing:0.012448pt;}
.ls1_c00057{letter-spacing:0.031120pt;}
.ls0_c00057{letter-spacing:0.049792pt;}
.ws1_c00057{word-spacing:-17.352512pt;}
.ws0_c00057{word-spacing:-17.302720pt;}
.ws5_c00057{word-spacing:-0.043568pt;}
.ws4_c00057{word-spacing:-0.012448pt;}
.wsa_c00057{word-spacing:-0.006224pt;}
.ws2_c00057{word-spacing:0.000000pt;}
.ws6_c00057{word-spacing:0.006224pt;}
.ws8_c00057{word-spacing:0.012448pt;}
.wse_c00057{word-spacing:0.024896pt;}
.wsd_c00057{word-spacing:0.031120pt;}
.ws7_c00057{word-spacing:0.292528pt;}
.ws3_c00057{word-spacing:0.311200pt;}
.ws9_c00057{word-spacing:0.323648pt;}
.wsb_c00057{word-spacing:0.342320pt;}
.ws13_c00057{word-spacing:4.475056pt;}
.ws14_c00057{word-spacing:7.051792pt;}
.ws10_c00057{word-spacing:14.091136pt;}
.ws11_c00057{word-spacing:14.732208pt;}
.ws12_c00057{word-spacing:15.030960pt;}
.wsf_c00057{word-spacing:16.979072pt;}
.wsc_c00057{word-spacing:18.242544pt;}
._0_c00057{margin-left:-1.163888pt;}
._1_c00057{width:1.350608pt;}
.fs0_c00057{font-size:62.240000pt;}
.y0_c00057{bottom:0.000000pt;}
.y2_c00057{bottom:97.547527pt;}
.y1_c00057{bottom:115.387067pt;}
.y1b_c00057{bottom:336.264379pt;}
.y1a_c00057{bottom:381.224999pt;}
.y19_c00057{bottom:408.184255pt;}
.y18_c00057{bottom:434.984799pt;}
.y17_c00057{bottom:461.864699pt;}
.y16_c00057{bottom:488.665243pt;}
.y15_c00057{bottom:515.545143pt;}
.y14_c00057{bottom:560.424851pt;}
.y13_c00057{bottom:596.505379pt;}
.y12_c00057{bottom:614.425831pt;}
.y11_c00057{bottom:632.265371pt;}
.y10_c00057{bottom:650.185823pt;}
.yf_c00057{bottom:668.106275pt;}
.ye_c00057{bottom:685.945815pt;}
.yd_c00057{bottom:715.705871pt;}
.yc_c00057{bottom:742.585771pt;}
.yb_c00057{bottom:769.386315pt;}
.ya_c00057{bottom:796.266215pt;}
.y9_c00057{bottom:823.066759pt;}
.y8_c00057{bottom:849.946659pt;}
.y7_c00057{bottom:876.747203pt;}
.y6_c00057{bottom:903.627103pt;}
.y5_c00057{bottom:930.427647pt;}
.y4_c00057{bottom:957.307547pt;}
.y3_c00057{bottom:984.108091pt;}
.h3_c00057{height:55.645234pt;}
.h1_c00057{height:55.797187pt;}
.h2_c00057{height:56.192266pt;}
.h0_c00057{height:1122.666667pt;}
.w0_c00057{width:793.333333pt;}
.x0_c00057{left:0.000000pt;}
.x2_c00057{left:73.519684pt;}
.x3_c00057{left:138.960376pt;}
.x1_c00057{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b4c7fd68dc645ae80380fe7a.woff2')format("woff");}.ff1_c00058{font-family:ff1_c00058;line-height:1.106934;font-style:normal;font-weight:normal;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_1175bdd30de3e4539384cf5c.woff2')format("woff");}.ff2_c00058{font-family:ff2_c00058;line-height:1.104492;font-style:normal;font-weight:normal;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_cd4d1a47dc6c0cb82a440973.woff2')format("woff");}.ff3_c00058{font-family:ff3_c00058;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00058{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00058{vertical-align:0.000000px;}
.ls1_c00058{letter-spacing:-0.063018px;}
.ls6_c00058{letter-spacing:-0.049014px;}
.ls4_c00058{letter-spacing:-0.035010px;}
.ls3_c00058{letter-spacing:-0.028008px;}
.ls5_c00058{letter-spacing:-0.007002px;}
.ls2_c00058{letter-spacing:0.000000px;}
.ls0_c00058{letter-spacing:0.007002px;}
.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;}
}
.ws0_c00058{word-spacing:0.000000px;}
.ws6_c00058{word-spacing:0.336096px;}
.ws4_c00058{word-spacing:1.806516px;}
.wsa_c00058{word-spacing:4.299228px;}
.wsb_c00058{word-spacing:4.355244px;}
.ws7_c00058{word-spacing:6.140754px;}
.ws5_c00058{word-spacing:6.490854px;}
.ws3_c00058{word-spacing:10.096884px;}
.ws8_c00058{word-spacing:15.831522px;}
.ws9_c00058{word-spacing:18.338238px;}
.ws1_c00058{word-spacing:19.059444px;}
.ws2_c00058{word-spacing:19.451556px;}
._1_c00058{margin-left:-1.372392px;}
._0_c00058{width:1.001286px;}
.fc0_c00058{color:rgb(0,0,0);}
.fs0_c00058{font-size:70.020000px;}
.y0_c00058{bottom:0.000000px;}
.y2_c00058{bottom:109.740968px;}
.y1_c00058{bottom:129.810450px;}
.yf_c00058{bottom:209.640855px;}
.ye_c00058{bottom:239.880743px;}
.yd_c00058{bottom:270.031355px;}
.yc_c00058{bottom:300.271242px;}
.yb_c00058{bottom:350.760914px;}
.ya_c00058{bottom:381.000801px;}
.y9_c00058{bottom:431.490472px;}
.y8_c00058{bottom:482.160445px;}
.y7_c00058{bottom:512.489608px;}
.y6_c00058{bottom:542.640220px;}
.y5_c00058{bottom:572.880108px;}
.y4_c00058{bottom:619.590450px;}
.y3_c00058{bottom:882.750600px;}
.h2_c00058{height:62.600889px;}
.h1_c00058{height:62.771836px;}
.h3_c00058{height:63.216299px;}
.h0_c00058{height:1263.000000px;}
.w0_c00058{width:892.500000px;}
.x0_c00058{left:0.000000px;}
.x2_c00058{left:82.709645px;}
.x1_c00058{left:436.680000px;}
.x3_c00058{left:693.180000px;}
.x4_c00058{left:748.530000px;}
@media print{
.v0_c00058{vertical-align:0.000000pt;}
.ls1_c00058{letter-spacing:-0.056016pt;}
.ls6_c00058{letter-spacing:-0.043568pt;}
.ls4_c00058{letter-spacing:-0.031120pt;}
.ls3_c00058{letter-spacing:-0.024896pt;}
.ls5_c00058{letter-spacing:-0.006224pt;}
.ls2_c00058{letter-spacing:0.000000pt;}
.ls0_c00058{letter-spacing:0.006224pt;}
.ws0_c00058{word-spacing:0.000000pt;}
.ws6_c00058{word-spacing:0.298752pt;}
.ws4_c00058{word-spacing:1.605792pt;}
.wsa_c00058{word-spacing:3.821536pt;}
.wsb_c00058{word-spacing:3.871328pt;}
.ws7_c00058{word-spacing:5.458448pt;}
.ws5_c00058{word-spacing:5.769648pt;}
.ws3_c00058{word-spacing:8.975008pt;}
.ws8_c00058{word-spacing:14.072464pt;}
.ws9_c00058{word-spacing:16.300656pt;}
.ws1_c00058{word-spacing:16.941728pt;}
.ws2_c00058{word-spacing:17.290272pt;}
._1_c00058{margin-left:-1.219904pt;}
._0_c00058{width:0.890032pt;}
.fs0_c00058{font-size:62.240000pt;}
.y0_c00058{bottom:0.000000pt;}
.y2_c00058{bottom:97.547527pt;}
.y1_c00058{bottom:115.387067pt;}
.yf_c00058{bottom:186.347427pt;}
.ye_c00058{bottom:213.227327pt;}
.yd_c00058{bottom:240.027871pt;}
.yc_c00058{bottom:266.907771pt;}
.yb_c00058{bottom:311.787479pt;}
.ya_c00058{bottom:338.667379pt;}
.y9_c00058{bottom:383.547087pt;}
.y8_c00058{bottom:428.587063pt;}
.y7_c00058{bottom:455.546319pt;}
.y6_c00058{bottom:482.346863pt;}
.y5_c00058{bottom:509.226763pt;}
.y4_c00058{bottom:550.747067pt;}
.y3_c00058{bottom:784.667200pt;}
.h2_c00058{height:55.645234pt;}
.h1_c00058{height:55.797187pt;}
.h3_c00058{height:56.192266pt;}
.h0_c00058{height:1122.666667pt;}
.w0_c00058{width:793.333333pt;}
.x0_c00058{left:0.000000pt;}
.x2_c00058{left:73.519684pt;}
.x1_c00058{left:388.160000pt;}
.x3_c00058{left:616.160000pt;}
.x4_c00058{left:665.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b0613f2d084c257c1f96efe0.woff2')format("woff");}.ff1_c00059{font-family:ff1_c00059;line-height:1.106934;font-style:normal;font-weight:normal;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_71f4419739fd18aeb8508b0e.woff2')format("woff");}.ff2_c00059{font-family:ff2_c00059;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00059;src:url('chunks/assets/font_8bee43a370dcde1d5e7c7e17.woff2')format("woff");}.ff3_c00059{font-family:ff3_c00059;line-height:1.133301;font-style:normal;font-weight:normal;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_068da757be609e81a199fff5.woff2')format("woff");}.ff4_c00059{font-family:ff4_c00059;line-height:1.133301;font-style:normal;font-weight:normal;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_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff5_c00059{font-family:ff5_c00059;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00059;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff6_c00059{font-family:ff6_c00059;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00059{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00059{vertical-align:-14.760000px;}
.v0_c00059{vertical-align:0.000000px;}
.v1_c00059{vertical-align:32.037138px;}
.ls2e_c00059{letter-spacing:-0.701597px;}
.ls16_c00059{letter-spacing:-0.344952px;}
.lsc_c00059{letter-spacing:-0.335249px;}
.ls2c_c00059{letter-spacing:-0.286485px;}
.ls23_c00059{letter-spacing:-0.280639px;}
.ls17_c00059{letter-spacing:-0.257252px;}
.ls27_c00059{letter-spacing:-0.210479px;}
.ls1b_c00059{letter-spacing:-0.192939px;}
.ls29_c00059{letter-spacing:-0.187092px;}
.ls13_c00059{letter-spacing:-0.175399px;}
.ls1e_c00059{letter-spacing:-0.163706px;}
.ls22_c00059{letter-spacing:-0.152013px;}
.ls10_c00059{letter-spacing:-0.116933px;}
.ls2d_c00059{letter-spacing:-0.111086px;}
.ls21_c00059{letter-spacing:-0.099393px;}
.ls20_c00059{letter-spacing:-0.087700px;}
.ls1a_c00059{letter-spacing:-0.081853px;}
.ls1c_c00059{letter-spacing:-0.076006px;}
.lsf_c00059{letter-spacing:-0.075619px;}
.ls15_c00059{letter-spacing:-0.064313px;}
.ls5_c00059{letter-spacing:-0.063018px;}
.ls2b_c00059{letter-spacing:-0.058466px;}
.ls2a_c00059{letter-spacing:-0.052620px;}
.lsb_c00059{letter-spacing:-0.049014px;}
.ls19_c00059{letter-spacing:-0.046773px;}
.lse_c00059{letter-spacing:-0.042012px;}
.ls18_c00059{letter-spacing:-0.040926px;}
.ls1d_c00059{letter-spacing:-0.035080px;}
.lsa_c00059{letter-spacing:-0.035010px;}
.ls1f_c00059{letter-spacing:-0.029233px;}
.ls7_c00059{letter-spacing:-0.028008px;}
.ls9_c00059{letter-spacing:-0.021006px;}
.ls11_c00059{letter-spacing:-0.017540px;}
.lsd_c00059{letter-spacing:-0.014004px;}
.ls26_c00059{letter-spacing:-0.005847px;}
.ls6_c00059{letter-spacing:0.000000px;}
.ls3_c00059{letter-spacing:0.005847px;}
.ls1_c00059{letter-spacing:0.011693px;}
.ls8_c00059{letter-spacing:0.023281px;}
.ls14_c00059{letter-spacing:0.035080px;}
.ls0_c00059{letter-spacing:0.056016px;}
.ls12_c00059{letter-spacing:0.122779px;}
.ls4_c00059{letter-spacing:0.134473px;}
.ls24_c00059{letter-spacing:0.192939px;}
.ls2f_c00059{letter-spacing:0.263099px;}
.ls25_c00059{letter-spacing:0.356645px;}
.ls2_c00059{letter-spacing:0.362492px;}
.ls28_c00059{letter-spacing:0.456038px;}
.sc__c00059{text-shadow:none;}
.sc0_c00059{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00059{-webkit-text-stroke:0px transparent;}
.sc0_c00059{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00059{word-spacing:-58.466400px;}
.ws3_c00059{word-spacing:-16.148420px;}
.ws4_c00059{word-spacing:-16.113340px;}
.ws5_c00059{word-spacing:-15.908707px;}
.ws0_c00059{word-spacing:-12.967628px;}
.ws1_c00059{word-spacing:-12.609098px;}
.ws2_c00059{word-spacing:-10.397640px;}
.ws12_c00059{word-spacing:-0.070020px;}
.ws19_c00059{word-spacing:-0.023387px;}
.ws7_c00059{word-spacing:0.000000px;}
.ws9_c00059{word-spacing:0.007002px;}
.ws14_c00059{word-spacing:0.021006px;}
.wsc_c00059{word-spacing:0.035010px;}
.ws1e_c00059{word-spacing:0.052620px;}
.ws11_c00059{word-spacing:0.364104px;}
.ws8_c00059{word-spacing:0.371106px;}
.ws3b_c00059{word-spacing:0.783450px;}
.ws10_c00059{word-spacing:1.463418px;}
.wsf_c00059{word-spacing:1.827522px;}
.ws3e_c00059{word-spacing:2.940860px;}
.ws3d_c00059{word-spacing:2.952553px;}
.ws13_c00059{word-spacing:3.248928px;}
.ws3a_c00059{word-spacing:3.402744px;}
.ws18_c00059{word-spacing:3.426131px;}
.ws16_c00059{word-spacing:3.630763px;}
.ws15_c00059{word-spacing:3.736003px;}
.ws39_c00059{word-spacing:3.800316px;}
.ws17_c00059{word-spacing:3.852936px;}
.ws30_c00059{word-spacing:4.051722px;}
.ws31_c00059{word-spacing:4.139421px;}
.ws40_c00059{word-spacing:4.361593px;}
.ws2f_c00059{word-spacing:4.379133px;}
.ws3f_c00059{word-spacing:4.420060px;}
.ws32_c00059{word-spacing:4.694852px;}
.ws33_c00059{word-spacing:5.057344px;}
.ws42_c00059{word-spacing:6.150665px;}
.ws41_c00059{word-spacing:6.536544px;}
.ws44_c00059{word-spacing:6.606703px;}
.ws34_c00059{word-spacing:6.869802px;}
.ws45_c00059{word-spacing:7.197214px;}
.ws25_c00059{word-spacing:7.968970px;}
.ws20_c00059{word-spacing:7.980664px;}
.ws21_c00059{word-spacing:8.015743px;}
.ws43_c00059{word-spacing:8.331462px;}
.ws1f_c00059{word-spacing:8.407468px;}
.wsa_c00059{word-spacing:9.004572px;}
.ws37_c00059{word-spacing:9.278618px;}
.ws38_c00059{word-spacing:9.816509px;}
.wsd_c00059{word-spacing:10.439982px;}
.wse_c00059{word-spacing:10.467990px;}
.ws22_c00059{word-spacing:12.248711px;}
.ws23_c00059{word-spacing:12.447497px;}
.ws2a_c00059{word-spacing:14.809539px;}
.ws2b_c00059{word-spacing:15.230497px;}
.ws35_c00059{word-spacing:15.341583px;}
.wsb_c00059{word-spacing:15.502428px;}
.ws27_c00059{word-spacing:15.522829px;}
.ws36_c00059{word-spacing:15.528676px;}
.ws26_c00059{word-spacing:15.657302px;}
.ws1c_c00059{word-spacing:15.668995px;}
.ws1d_c00059{word-spacing:15.750848px;}
.ws1a_c00059{word-spacing:15.920401px;}
.ws1b_c00059{word-spacing:16.557684px;}
.ws2d_c00059{word-spacing:19.679790px;}
.ws2e_c00059{word-spacing:20.094902px;}
.ws29_c00059{word-spacing:20.258608px;}
.ws28_c00059{word-spacing:20.287841px;}
.ws2c_c00059{word-spacing:20.322921px;}
.ws24_c00059{word-spacing:22.047679px;}
.ws3c_c00059{word-spacing:30.279749px;}
._3_c00059{margin-left:-2.710098px;}
._1_c00059{margin-left:-1.029294px;}
._0_c00059{width:1.288368px;}
._2_c00059{width:5.930694px;}
.fc0_c00059{color:rgb(0,0,0);}
.fs2_c00059{font-size:37.809600px;}
.fs1_c00059{font-size:46.562400px;}
.fs3_c00059{font-size:58.466400px;}
.fs0_c00059{font-size:70.020000px;}
.y0_c00059{bottom:0.000000px;}
.y2_c00059{bottom:109.740968px;}
.y1_c00059{bottom:129.810450px;}
.y29_c00059{bottom:169.860450px;}
.y28_c00059{bottom:187.770450px;}
.y27_c00059{bottom:205.590450px;}
.y26_c00059{bottom:223.590450px;}
.y25_c00059{bottom:241.410450px;}
.y24_c00059{bottom:259.320450px;}
.y23_c00059{bottom:277.230450px;}
.y22_c00059{bottom:295.050450px;}
.y21_c00059{bottom:312.960600px;}
.y20_c00059{bottom:330.870450px;}
.y1f_c00059{bottom:348.690450px;}
.y1e_c00059{bottom:366.600450px;}
.y1d_c00059{bottom:384.510450px;}
.y1c_c00059{bottom:402.420450px;}
.y1b_c00059{bottom:420.240450px;}
.y1a_c00059{bottom:438.150450px;}
.y19_c00059{bottom:456.060450px;}
.y18_c00059{bottom:473.880450px;}
.y17_c00059{bottom:491.790600px;}
.y16_c00059{bottom:509.700600px;}
.y15_c00059{bottom:527.520450px;}
.y14_c00059{bottom:549.120450px;}
.y13_c00059{bottom:583.770730px;}
.y12_c00059{bottom:605.370450px;}
.y11_c00059{bottom:619.500730px;}
.y10_c00059{bottom:641.100450px;}
.yf_c00059{bottom:655.770285px;}
.ye_c00059{bottom:696.630456px;}
.yd_c00059{bottom:726.870343px;}
.yc_c00059{bottom:777.360015px;}
.yb_c00059{bottom:807.599903px;}
.ya_c00059{bottom:858.181701px;}
.y9_c00059{bottom:888.510864px;}
.y8_c00059{bottom:918.570450px;}
.y7_c00059{bottom:969.150675px;}
.y6_c00059{bottom:999.479838px;}
.y5_c00059{bottom:1029.630450px;}
.y4_c00059{bottom:1080.211166px;}
.y3_c00059{bottom:1110.451053px;}
.h6_c00059{height:39.338549px;}
.h8_c00059{height:39.698549px;}
.h7_c00059{height:54.098549px;}
.h1_c00059{height:62.771836px;}
.h5_c00059{height:62.772496px;}
.h2_c00059{height:74.075164px;}
.h4_c00059{height:74.433022px;}
.h3_c00059{height:74.437126px;}
.h0_c00059{height:1263.000000px;}
.w0_c00059{width:892.500000px;}
.x0_c00059{left:0.000000px;}
.x2_c00059{left:82.709645px;}
.x1_c00059{left:436.680000px;}
@media print{
.v2_c00059{vertical-align:-13.120000pt;}
.v0_c00059{vertical-align:0.000000pt;}
.v1_c00059{vertical-align:28.477456pt;}
.ls2e_c00059{letter-spacing:-0.623642pt;}
.ls16_c00059{letter-spacing:-0.306624pt;}
.lsc_c00059{letter-spacing:-0.297999pt;}
.ls2c_c00059{letter-spacing:-0.254654pt;}
.ls23_c00059{letter-spacing:-0.249457pt;}
.ls17_c00059{letter-spacing:-0.228669pt;}
.ls27_c00059{letter-spacing:-0.187092pt;}
.ls1b_c00059{letter-spacing:-0.171501pt;}
.ls29_c00059{letter-spacing:-0.166304pt;}
.ls13_c00059{letter-spacing:-0.155910pt;}
.ls1e_c00059{letter-spacing:-0.145516pt;}
.ls22_c00059{letter-spacing:-0.135122pt;}
.ls10_c00059{letter-spacing:-0.103940pt;}
.ls2d_c00059{letter-spacing:-0.098743pt;}
.ls21_c00059{letter-spacing:-0.088349pt;}
.ls20_c00059{letter-spacing:-0.077955pt;}
.ls1a_c00059{letter-spacing:-0.072758pt;}
.ls1c_c00059{letter-spacing:-0.067561pt;}
.lsf_c00059{letter-spacing:-0.067217pt;}
.ls15_c00059{letter-spacing:-0.057167pt;}
.ls5_c00059{letter-spacing:-0.056016pt;}
.ls2b_c00059{letter-spacing:-0.051970pt;}
.ls2a_c00059{letter-spacing:-0.046773pt;}
.lsb_c00059{letter-spacing:-0.043568pt;}
.ls19_c00059{letter-spacing:-0.041576pt;}
.lse_c00059{letter-spacing:-0.037344pt;}
.ls18_c00059{letter-spacing:-0.036379pt;}
.ls1d_c00059{letter-spacing:-0.031182pt;}
.lsa_c00059{letter-spacing:-0.031120pt;}
.ls1f_c00059{letter-spacing:-0.025985pt;}
.ls7_c00059{letter-spacing:-0.024896pt;}
.ls9_c00059{letter-spacing:-0.018672pt;}
.ls11_c00059{letter-spacing:-0.015591pt;}
.lsd_c00059{letter-spacing:-0.012448pt;}
.ls26_c00059{letter-spacing:-0.005197pt;}
.ls6_c00059{letter-spacing:0.000000pt;}
.ls3_c00059{letter-spacing:0.005197pt;}
.ls1_c00059{letter-spacing:0.010394pt;}
.ls8_c00059{letter-spacing:0.020694pt;}
.ls14_c00059{letter-spacing:0.031182pt;}
.ls0_c00059{letter-spacing:0.049792pt;}
.ls12_c00059{letter-spacing:0.109137pt;}
.ls4_c00059{letter-spacing:0.119531pt;}
.ls24_c00059{letter-spacing:0.171501pt;}
.ls2f_c00059{letter-spacing:0.233866pt;}
.ls25_c00059{letter-spacing:0.317018pt;}
.ls2_c00059{letter-spacing:0.322215pt;}
.ls28_c00059{letter-spacing:0.405367pt;}
.ws6_c00059{word-spacing:-51.970133pt;}
.ws3_c00059{word-spacing:-14.354151pt;}
.ws4_c00059{word-spacing:-14.322969pt;}
.ws5_c00059{word-spacing:-14.141073pt;}
.ws0_c00059{word-spacing:-11.526781pt;}
.ws1_c00059{word-spacing:-11.208087pt;}
.ws2_c00059{word-spacing:-9.242347pt;}
.ws12_c00059{word-spacing:-0.062240pt;}
.ws19_c00059{word-spacing:-0.020788pt;}
.ws7_c00059{word-spacing:0.000000pt;}
.ws9_c00059{word-spacing:0.006224pt;}
.ws14_c00059{word-spacing:0.018672pt;}
.wsc_c00059{word-spacing:0.031120pt;}
.ws1e_c00059{word-spacing:0.046773pt;}
.ws11_c00059{word-spacing:0.323648pt;}
.ws8_c00059{word-spacing:0.329872pt;}
.ws3b_c00059{word-spacing:0.696400pt;}
.ws10_c00059{word-spacing:1.300816pt;}
.wsf_c00059{word-spacing:1.624464pt;}
.ws3e_c00059{word-spacing:2.614098pt;}
.ws3d_c00059{word-spacing:2.624492pt;}
.ws13_c00059{word-spacing:2.887936pt;}
.ws3a_c00059{word-spacing:3.024662pt;}
.ws18_c00059{word-spacing:3.045450pt;}
.ws16_c00059{word-spacing:3.227345pt;}
.ws15_c00059{word-spacing:3.320892pt;}
.ws39_c00059{word-spacing:3.378059pt;}
.ws17_c00059{word-spacing:3.424832pt;}
.ws30_c00059{word-spacing:3.601530pt;}
.ws31_c00059{word-spacing:3.679485pt;}
.ws40_c00059{word-spacing:3.876972pt;}
.ws2f_c00059{word-spacing:3.892563pt;}
.ws3f_c00059{word-spacing:3.928942pt;}
.ws32_c00059{word-spacing:4.173202pt;}
.ws33_c00059{word-spacing:4.495417pt;}
.ws42_c00059{word-spacing:5.467258pt;}
.ws41_c00059{word-spacing:5.810261pt;}
.ws44_c00059{word-spacing:5.872625pt;}
.ws34_c00059{word-spacing:6.106491pt;}
.ws45_c00059{word-spacing:6.397523pt;}
.ws25_c00059{word-spacing:7.083529pt;}
.ws20_c00059{word-spacing:7.093923pt;}
.ws21_c00059{word-spacing:7.125105pt;}
.ws43_c00059{word-spacing:7.405744pt;}
.ws1f_c00059{word-spacing:7.473305pt;}
.wsa_c00059{word-spacing:8.004064pt;}
.ws37_c00059{word-spacing:8.247660pt;}
.ws38_c00059{word-spacing:8.725785pt;}
.wsd_c00059{word-spacing:9.279984pt;}
.wse_c00059{word-spacing:9.304880pt;}
.ws22_c00059{word-spacing:10.887743pt;}
.ws23_c00059{word-spacing:11.064441pt;}
.ws2a_c00059{word-spacing:13.164035pt;}
.ws2b_c00059{word-spacing:13.538220pt;}
.ws35_c00059{word-spacing:13.636963pt;}
.wsb_c00059{word-spacing:13.779936pt;}
.ws27_c00059{word-spacing:13.798070pt;}
.ws36_c00059{word-spacing:13.803267pt;}
.ws26_c00059{word-spacing:13.917602pt;}
.ws1c_c00059{word-spacing:13.927996pt;}
.ws1d_c00059{word-spacing:14.000754pt;}
.ws1a_c00059{word-spacing:14.151467pt;}
.ws1b_c00059{word-spacing:14.717942pt;}
.ws2d_c00059{word-spacing:17.493147pt;}
.ws2e_c00059{word-spacing:17.862135pt;}
.ws29_c00059{word-spacing:18.007651pt;}
.ws28_c00059{word-spacing:18.033636pt;}
.ws2c_c00059{word-spacing:18.064818pt;}
.ws24_c00059{word-spacing:19.597937pt;}
.ws3c_c00059{word-spacing:26.915332pt;}
._3_c00059{margin-left:-2.408976pt;}
._1_c00059{margin-left:-0.914928pt;}
._0_c00059{width:1.145216pt;}
._2_c00059{width:5.271728pt;}
.fs2_c00059{font-size:33.608533pt;}
.fs1_c00059{font-size:41.388800pt;}
.fs3_c00059{font-size:51.970133pt;}
.fs0_c00059{font-size:62.240000pt;}
.y0_c00059{bottom:0.000000pt;}
.y2_c00059{bottom:97.547527pt;}
.y1_c00059{bottom:115.387067pt;}
.y29_c00059{bottom:150.987067pt;}
.y28_c00059{bottom:166.907067pt;}
.y27_c00059{bottom:182.747067pt;}
.y26_c00059{bottom:198.747067pt;}
.y25_c00059{bottom:214.587067pt;}
.y24_c00059{bottom:230.507067pt;}
.y23_c00059{bottom:246.427067pt;}
.y22_c00059{bottom:262.267067pt;}
.y21_c00059{bottom:278.187200pt;}
.y20_c00059{bottom:294.107067pt;}
.y1f_c00059{bottom:309.947067pt;}
.y1e_c00059{bottom:325.867067pt;}
.y1d_c00059{bottom:341.787067pt;}
.y1c_c00059{bottom:357.707067pt;}
.y1b_c00059{bottom:373.547067pt;}
.y1a_c00059{bottom:389.467067pt;}
.y19_c00059{bottom:405.387067pt;}
.y18_c00059{bottom:421.227067pt;}
.y17_c00059{bottom:437.147200pt;}
.y16_c00059{bottom:453.067200pt;}
.y15_c00059{bottom:468.907067pt;}
.y14_c00059{bottom:488.107067pt;}
.y13_c00059{bottom:518.907316pt;}
.y12_c00059{bottom:538.107067pt;}
.y11_c00059{bottom:550.667316pt;}
.y10_c00059{bottom:569.867067pt;}
.yf_c00059{bottom:582.906920pt;}
.ye_c00059{bottom:619.227072pt;}
.yd_c00059{bottom:646.106972pt;}
.yc_c00059{bottom:690.986680pt;}
.yb_c00059{bottom:717.866580pt;}
.ya_c00059{bottom:762.828179pt;}
.y9_c00059{bottom:789.787435pt;}
.y8_c00059{bottom:816.507067pt;}
.y7_c00059{bottom:861.467267pt;}
.y6_c00059{bottom:888.426523pt;}
.y5_c00059{bottom:915.227067pt;}
.y4_c00059{bottom:960.187703pt;}
.y3_c00059{bottom:987.067603pt;}
.h6_c00059{height:34.967599pt;}
.h8_c00059{height:35.287599pt;}
.h7_c00059{height:48.087599pt;}
.h1_c00059{height:55.797187pt;}
.h5_c00059{height:55.797774pt;}
.h2_c00059{height:65.844590pt;}
.h4_c00059{height:66.162686pt;}
.h3_c00059{height:66.166334pt;}
.h0_c00059{height:1122.666667pt;}
.w0_c00059{width:793.333333pt;}
.x0_c00059{left:0.000000pt;}
.x2_c00059{left:73.519684pt;}
.x1_c00059{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_96a2f6769d297865dde7a73c.woff2')format("woff");}.ff1_c00060{font-family:ff1_c00060;line-height:1.106934;font-style:normal;font-weight:normal;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_238f7fca0f4f4ba91d03eebe.woff2')format("woff");}.ff2_c00060{font-family:ff2_c00060;line-height:1.104492;font-style:normal;font-weight:normal;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_b98e8338b8f0f64250d665ef.woff2')format("woff");}.ff3_c00060{font-family:ff3_c00060;line-height:1.133301;font-style:normal;font-weight:normal;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_5cb67ff6a8e257a5625807ea.woff2')format("woff");}.ff4_c00060{font-family:ff4_c00060;line-height:1.133301;font-style:normal;font-weight:normal;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_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff5_c00060{font-family:ff5_c00060;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00060{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00060{vertical-align:-14.760000px;}
.v0_c00060{vertical-align:0.000000px;}
.v1_c00060{vertical-align:32.044182px;}
.ls1a_c00060{letter-spacing:-0.526198px;}
.ls1c_c00060{letter-spacing:-0.304025px;}
.ls1d_c00060{letter-spacing:-0.292332px;}
.ls15_c00060{letter-spacing:-0.210479px;}
.ls19_c00060{letter-spacing:-0.163706px;}
.ls17_c00060{letter-spacing:-0.099393px;}
.ls18_c00060{letter-spacing:-0.087700px;}
.ls13_c00060{letter-spacing:-0.075619px;}
.ls8_c00060{letter-spacing:-0.063018px;}
.ls1b_c00060{letter-spacing:-0.058466px;}
.lsf_c00060{letter-spacing:-0.056016px;}
.ls16_c00060{letter-spacing:-0.052620px;}
.ls12_c00060{letter-spacing:-0.049014px;}
.ls14_c00060{letter-spacing:-0.046773px;}
.lsd_c00060{letter-spacing:-0.042012px;}
.lsc_c00060{letter-spacing:-0.035010px;}
.lsb_c00060{letter-spacing:-0.028008px;}
.ls11_c00060{letter-spacing:-0.014004px;}
.lsa_c00060{letter-spacing:-0.007002px;}
.ls9_c00060{letter-spacing:0.000000px;}
.ls5_c00060{letter-spacing:0.005847px;}
.ls0_c00060{letter-spacing:0.007002px;}
.ls4_c00060{letter-spacing:0.011693px;}
.ls3_c00060{letter-spacing:0.021006px;}
.lse_c00060{letter-spacing:0.023281px;}
.ls1_c00060{letter-spacing:0.028008px;}
.ls2_c00060{letter-spacing:0.049014px;}
.ls10_c00060{letter-spacing:0.084024px;}
.ls6_c00060{letter-spacing:0.146166px;}
.ls1e_c00060{letter-spacing:0.286485px;}
.ls7_c00060{letter-spacing:0.362492px;}
.sc__c00060{text-shadow:none;}
.sc0_c00060{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00060{-webkit-text-stroke:0px transparent;}
.sc0_c00060{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00060{word-spacing:-19.549584px;}
.ws3_c00060{word-spacing:-15.668995px;}
.ws0_c00060{word-spacing:-12.967628px;}
.ws2_c00060{word-spacing:-10.397640px;}
.ws25_c00060{word-spacing:-0.491118px;}
.ws2b_c00060{word-spacing:-0.274792px;}
.ws1c_c00060{word-spacing:-0.007002px;}
.ws4_c00060{word-spacing:0.000000px;}
.wse_c00060{word-spacing:0.014004px;}
.ws13_c00060{word-spacing:0.028008px;}
.ws22_c00060{word-spacing:0.049014px;}
.ws24_c00060{word-spacing:0.111086px;}
.ws2a_c00060{word-spacing:0.304025px;}
.ws29_c00060{word-spacing:0.315719px;}
.ws12_c00060{word-spacing:0.322092px;}
.ws1a_c00060{word-spacing:0.392112px;}
.ws14_c00060{word-spacing:0.399114px;}
.ws23_c00060{word-spacing:1.140095px;}
.ws1b_c00060{word-spacing:2.877822px;}
.ws28_c00060{word-spacing:2.952553px;}
.ws26_c00060{word-spacing:2.981786px;}
.ws27_c00060{word-spacing:3.057793px;}
.wsa_c00060{word-spacing:3.557016px;}
.ws9_c00060{word-spacing:3.613032px;}
.ws8_c00060{word-spacing:3.648042px;}
.ws15_c00060{word-spacing:3.977136px;}
.ws5_c00060{word-spacing:5.384538px;}
.ws19_c00060{word-spacing:5.398542px;}
.ws18_c00060{word-spacing:5.419548px;}
.ws21_c00060{word-spacing:5.762646px;}
.ws20_c00060{word-spacing:5.790654px;}
.ws1d_c00060{word-spacing:6.504858px;}
.wsd_c00060{word-spacing:8.619462px;}
.ws11_c00060{word-spacing:9.018576px;}
.ws7_c00060{word-spacing:12.939696px;}
.ws6_c00060{word-spacing:13.310802px;}
.ws1e_c00060{word-spacing:15.110316px;}
.ws1f_c00060{word-spacing:15.131322px;}
.wsf_c00060{word-spacing:21.202056px;}
.ws10_c00060{word-spacing:21.251070px;}
.ws17_c00060{word-spacing:26.278506px;}
.ws16_c00060{word-spacing:26.299512px;}
.wsc_c00060{word-spacing:30.535722px;}
.wsb_c00060{word-spacing:30.626748px;}
._3_c00060{margin-left:-2.706930px;}
._1_c00060{margin-left:-1.148328px;}
._0_c00060{width:1.183338px;}
._2_c00060{width:5.930694px;}
.fc0_c00060{color:rgb(0,0,0);}
.fs2_c00060{font-size:37.809600px;}
.fs1_c00060{font-size:46.562400px;}
.fs3_c00060{font-size:58.466400px;}
.fs0_c00060{font-size:70.020000px;}
.y0_c00060{bottom:0.000000px;}
.y2_c00060{bottom:109.740968px;}
.y1_c00060{bottom:129.810450px;}
.y1f_c00060{bottom:153.120600px;}
.y1e_c00060{bottom:170.940450px;}
.y1d_c00060{bottom:188.940450px;}
.y1c_c00060{bottom:203.070107px;}
.y1b_c00060{bottom:224.670450px;}
.y1a_c00060{bottom:238.889891px;}
.y19_c00060{bottom:260.400450px;}
.y18_c00060{bottom:275.160009px;}
.y17_c00060{bottom:404.489919px;}
.y16_c00060{bottom:434.640531px;}
.y15_c00060{bottom:464.880418px;}
.y14_c00060{bottom:495.031030px;}
.y13_c00060{bottom:545.611728px;}
.y12_c00060{bottom:575.851615px;}
.y11_c00060{bottom:626.341287px;}
.y10_c00060{bottom:656.669253px;}
.yf_c00060{bottom:686.819865px;}
.ye_c00060{bottom:717.059752px;}
.yd_c00060{bottom:767.639280px;}
.yc_c00060{bottom:818.219978px;}
.yb_c00060{bottom:848.459865px;}
.ya_c00060{bottom:878.610477px;}
.y9_c00060{bottom:929.279555px;}
.y8_c00060{bottom:959.519442px;}
.y7_c00060{bottom:989.670054px;}
.y6_c00060{bottom:1019.909942px;}
.y5_c00060{bottom:1050.060553px;}
.y4_c00060{bottom:1080.300441px;}
.y3_c00060{bottom:1110.451053px;}
.hb_c00060{height:39.337949px;}
.h8_c00060{height:39.338549px;}
.ha_c00060{height:39.698549px;}
.h9_c00060{height:54.098549px;}
.h2_c00060{height:62.600889px;}
.h1_c00060{height:62.771836px;}
.h7_c00060{height:62.773600px;}
.h6_c00060{height:73.671510px;}
.h3_c00060{height:73.786646px;}
.h4_c00060{height:73.787144px;}
.h5_c00060{height:73.787252px;}
.h0_c00060{height:1263.000000px;}
.w0_c00060{width:892.500000px;}
.x0_c00060{left:0.000000px;}
.x2_c00060{left:82.709645px;}
.x3_c00060{left:84.240000px;}
.x1_c00060{left:436.680000px;}
@media print{
.v2_c00060{vertical-align:-13.120000pt;}
.v0_c00060{vertical-align:0.000000pt;}
.v1_c00060{vertical-align:28.483717pt;}
.ls1a_c00060{letter-spacing:-0.467731pt;}
.ls1c_c00060{letter-spacing:-0.270245pt;}
.ls1d_c00060{letter-spacing:-0.259851pt;}
.ls15_c00060{letter-spacing:-0.187092pt;}
.ls19_c00060{letter-spacing:-0.145516pt;}
.ls17_c00060{letter-spacing:-0.088349pt;}
.ls18_c00060{letter-spacing:-0.077955pt;}
.ls13_c00060{letter-spacing:-0.067217pt;}
.ls8_c00060{letter-spacing:-0.056016pt;}
.ls1b_c00060{letter-spacing:-0.051970pt;}
.lsf_c00060{letter-spacing:-0.049792pt;}
.ls16_c00060{letter-spacing:-0.046773pt;}
.ls12_c00060{letter-spacing:-0.043568pt;}
.ls14_c00060{letter-spacing:-0.041576pt;}
.lsd_c00060{letter-spacing:-0.037344pt;}
.lsc_c00060{letter-spacing:-0.031120pt;}
.lsb_c00060{letter-spacing:-0.024896pt;}
.ls11_c00060{letter-spacing:-0.012448pt;}
.lsa_c00060{letter-spacing:-0.006224pt;}
.ls9_c00060{letter-spacing:0.000000pt;}
.ls5_c00060{letter-spacing:0.005197pt;}
.ls0_c00060{letter-spacing:0.006224pt;}
.ls4_c00060{letter-spacing:0.010394pt;}
.ls3_c00060{letter-spacing:0.018672pt;}
.lse_c00060{letter-spacing:0.020694pt;}
.ls1_c00060{letter-spacing:0.024896pt;}
.ls2_c00060{letter-spacing:0.043568pt;}
.ls10_c00060{letter-spacing:0.074688pt;}
.ls6_c00060{letter-spacing:0.129925pt;}
.ls1e_c00060{letter-spacing:0.254654pt;}
.ls7_c00060{letter-spacing:0.322215pt;}
.ws1_c00060{word-spacing:-17.377408pt;}
.ws3_c00060{word-spacing:-13.927996pt;}
.ws0_c00060{word-spacing:-11.526781pt;}
.ws2_c00060{word-spacing:-9.242347pt;}
.ws25_c00060{word-spacing:-0.436549pt;}
.ws2b_c00060{word-spacing:-0.244260pt;}
.ws1c_c00060{word-spacing:-0.006224pt;}
.ws4_c00060{word-spacing:0.000000pt;}
.wse_c00060{word-spacing:0.012448pt;}
.ws13_c00060{word-spacing:0.024896pt;}
.ws22_c00060{word-spacing:0.043568pt;}
.ws24_c00060{word-spacing:0.098743pt;}
.ws2a_c00060{word-spacing:0.270245pt;}
.ws29_c00060{word-spacing:0.280639pt;}
.ws12_c00060{word-spacing:0.286304pt;}
.ws1a_c00060{word-spacing:0.348544pt;}
.ws14_c00060{word-spacing:0.354768pt;}
.ws23_c00060{word-spacing:1.013418pt;}
.ws1b_c00060{word-spacing:2.558064pt;}
.ws28_c00060{word-spacing:2.624492pt;}
.ws26_c00060{word-spacing:2.650477pt;}
.ws27_c00060{word-spacing:2.718038pt;}
.wsa_c00060{word-spacing:3.161792pt;}
.ws9_c00060{word-spacing:3.211584pt;}
.ws8_c00060{word-spacing:3.242704pt;}
.ws15_c00060{word-spacing:3.535232pt;}
.ws5_c00060{word-spacing:4.786256pt;}
.ws19_c00060{word-spacing:4.798704pt;}
.ws18_c00060{word-spacing:4.817376pt;}
.ws21_c00060{word-spacing:5.122352pt;}
.ws20_c00060{word-spacing:5.147248pt;}
.ws1d_c00060{word-spacing:5.782096pt;}
.wsd_c00060{word-spacing:7.661744pt;}
.ws11_c00060{word-spacing:8.016512pt;}
.ws7_c00060{word-spacing:11.501952pt;}
.ws6_c00060{word-spacing:11.831824pt;}
.ws1e_c00060{word-spacing:13.431392pt;}
.ws1f_c00060{word-spacing:13.450064pt;}
.wsf_c00060{word-spacing:18.846272pt;}
.ws10_c00060{word-spacing:18.889840pt;}
.ws17_c00060{word-spacing:23.358672pt;}
.ws16_c00060{word-spacing:23.377344pt;}
.wsc_c00060{word-spacing:27.142864pt;}
.wsb_c00060{word-spacing:27.223776pt;}
._3_c00060{margin-left:-2.406160pt;}
._1_c00060{margin-left:-1.020736pt;}
._0_c00060{width:1.051856pt;}
._2_c00060{width:5.271728pt;}
.fs2_c00060{font-size:33.608533pt;}
.fs1_c00060{font-size:41.388800pt;}
.fs3_c00060{font-size:51.970133pt;}
.fs0_c00060{font-size:62.240000pt;}
.y0_c00060{bottom:0.000000pt;}
.y2_c00060{bottom:97.547527pt;}
.y1_c00060{bottom:115.387067pt;}
.y1f_c00060{bottom:136.107200pt;}
.y1e_c00060{bottom:151.947067pt;}
.y1d_c00060{bottom:167.947067pt;}
.y1c_c00060{bottom:180.506762pt;}
.y1b_c00060{bottom:199.707067pt;}
.y1a_c00060{bottom:212.346570pt;}
.y19_c00060{bottom:231.467067pt;}
.y18_c00060{bottom:244.586675pt;}
.y17_c00060{bottom:359.546595pt;}
.y16_c00060{bottom:386.347139pt;}
.y15_c00060{bottom:413.227039pt;}
.y14_c00060{bottom:440.027583pt;}
.y13_c00060{bottom:484.988203pt;}
.y12_c00060{bottom:511.868103pt;}
.y11_c00060{bottom:556.747811pt;}
.y10_c00060{bottom:583.706003pt;}
.yf_c00060{bottom:610.506547pt;}
.ye_c00060{bottom:637.386447pt;}
.yd_c00060{bottom:682.346027pt;}
.yc_c00060{bottom:727.306647pt;}
.yb_c00060{bottom:754.186547pt;}
.ya_c00060{bottom:780.987091pt;}
.y9_c00060{bottom:826.026271pt;}
.y8_c00060{bottom:852.906171pt;}
.y7_c00060{bottom:879.706715pt;}
.y6_c00060{bottom:906.586615pt;}
.y5_c00060{bottom:933.387159pt;}
.y4_c00060{bottom:960.267059pt;}
.y3_c00060{bottom:987.067603pt;}
.hb_c00060{height:34.967066pt;}
.h8_c00060{height:34.967599pt;}
.ha_c00060{height:35.287599pt;}
.h9_c00060{height:48.087599pt;}
.h2_c00060{height:55.645234pt;}
.h1_c00060{height:55.797187pt;}
.h7_c00060{height:55.798756pt;}
.h6_c00060{height:65.485787pt;}
.h3_c00060{height:65.588130pt;}
.h4_c00060{height:65.588573pt;}
.h5_c00060{height:65.588668pt;}
.h0_c00060{height:1122.666667pt;}
.w0_c00060{width:793.333333pt;}
.x0_c00060{left:0.000000pt;}
.x2_c00060{left:73.519684pt;}
.x3_c00060{left:74.880000pt;}
.x1_c00060{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d9fa842c289c2b2bb734a06f.woff2')format("woff");}.ff1_c00061{font-family:ff1_c00061;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00061;src:url('chunks/assets/font_62136d72030886be4ab4a0ae.woff2')format("woff");}.ff2_c00061{font-family:ff2_c00061;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00061;src:url('chunks/assets/font_81d6a3400ea23269204e3ab0.woff2')format("woff");}.ff3_c00061{font-family:ff3_c00061;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00061;src:url('chunks/assets/font_dca307e2a4832c4b1fcec539.woff2')format("woff");}.ff4_c00061{font-family:ff4_c00061;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00061;src:url('chunks/assets/font_03a64f8d1e2328c2df51d28d.woff2')format("woff");}.ff5_c00061{font-family:ff5_c00061;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00061{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00061{vertical-align:-14.400000px;}
.v0_c00061{vertical-align:0.000000px;}
.v1_c00061{vertical-align:32.043600px;}
.lsf_c00061{letter-spacing:-0.707443px;}
.ls12_c00061{letter-spacing:-0.625590px;}
.ls10_c00061{letter-spacing:-0.093546px;}
.lsd_c00061{letter-spacing:-0.075619px;}
.ls3_c00061{letter-spacing:-0.063018px;}
.ls7_c00061{letter-spacing:-0.056016px;}
.ls11_c00061{letter-spacing:-0.046773px;}
.ls9_c00061{letter-spacing:-0.042012px;}
.lse_c00061{letter-spacing:-0.035080px;}
.lsa_c00061{letter-spacing:-0.035010px;}
.lsc_c00061{letter-spacing:-0.028008px;}
.ls5_c00061{letter-spacing:-0.021006px;}
.ls6_c00061{letter-spacing:-0.014004px;}
.lsb_c00061{letter-spacing:-0.007002px;}
.ls4_c00061{letter-spacing:0.000000px;}
.ls1_c00061{letter-spacing:0.007002px;}
.ls8_c00061{letter-spacing:0.023281px;}
.ls2_c00061{letter-spacing:0.052620px;}
.ls0_c00061{letter-spacing:0.056016px;}
.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:-19.521576px;}
.ws1_c00061{word-spacing:-12.967628px;}
.ws2_c00061{word-spacing:-10.397640px;}
.ws3_c00061{word-spacing:0.000000px;}
.ws12_c00061{word-spacing:0.028008px;}
.ws13_c00061{word-spacing:0.046773px;}
.ws17_c00061{word-spacing:0.058466px;}
.wsf_c00061{word-spacing:0.350100px;}
.wsd_c00061{word-spacing:0.357102px;}
.ws18_c00061{word-spacing:0.637284px;}
.ws10_c00061{word-spacing:1.484424px;}
.wsb_c00061{word-spacing:1.778508px;}
.wsa_c00061{word-spacing:1.820520px;}
.wsc_c00061{word-spacing:2.149614px;}
.ws4_c00061{word-spacing:6.847956px;}
.ws5_c00061{word-spacing:6.854958px;}
.ws8_c00061{word-spacing:7.569162px;}
.ws9_c00061{word-spacing:7.590168px;}
.ws16_c00061{word-spacing:14.505514px;}
.ws6_c00061{word-spacing:14.746212px;}
.ws7_c00061{word-spacing:14.760216px;}
.wse_c00061{word-spacing:16.902828px;}
.ws11_c00061{word-spacing:18.737352px;}
.ws15_c00061{word-spacing:22.638190px;}
.ws14_c00061{word-spacing:22.690810px;}
._3_c00061{margin-left:-2.709522px;}
._1_c00061{margin-left:-1.043298px;}
._0_c00061{width:1.148328px;}
._2_c00061{width:5.930694px;}
.fc0_c00061{color:rgb(0,0,0);}
.fs2_c00061{font-size:37.809600px;}
.fs1_c00061{font-size:46.562400px;}
.fs3_c00061{font-size:58.466400px;}
.fs0_c00061{font-size:70.020000px;}
.y0_c00061{bottom:0.000000px;}
.y2_c00061{bottom:109.740968px;}
.y1_c00061{bottom:129.810450px;}
.y17_c00061{bottom:153.120600px;}
.y16_c00061{bottom:167.249548px;}
.y15_c00061{bottom:185.249891px;}
.y14_c00061{bottom:206.760450px;}
.y13_c00061{bottom:224.670450px;}
.y12_c00061{bottom:239.429311px;}
.y11_c00061{bottom:263.729753px;}
.y10_c00061{bottom:314.310787px;}
.yf_c00061{bottom:344.639950px;}
.ye_c00061{bottom:374.790562px;}
.yd_c00061{bottom:405.030450px;}
.yc_c00061{bottom:455.520175px;}
.yb_c00061{bottom:485.760063px;}
.ya_c00061{bottom:515.999950px;}
.y9_c00061{bottom:546.150562px;}
.y8_c00061{bottom:576.389550px;}
.y7_c00061{bottom:626.970248px;}
.y6_c00061{bottom:667.560841px;}
.y5_c00061{bottom:687.721350px;}
.y4_c00061{bottom:707.790832px;}
.y3_c00061{bottom:754.590450px;}
.ha_c00061{height:39.337949px;}
.h8_c00061{height:39.338549px;}
.h7_c00061{height:39.698549px;}
.h9_c00061{height:54.098549px;}
.h1_c00061{height:62.771836px;}
.h6_c00061{height:62.776390px;}
.h2_c00061{height:63.216299px;}
.h3_c00061{height:73.786064px;}
.h4_c00061{height:74.079724px;}
.h5_c00061{height:74.141114px;}
.h0_c00061{height:1263.000000px;}
.w0_c00061{width:892.500000px;}
.x0_c00061{left:0.000000px;}
.x2_c00061{left:82.709645px;}
.x1_c00061{left:436.680000px;}
.x3_c00061{left:755.729850px;}
@media print{
.v2_c00061{vertical-align:-12.800000pt;}
.v0_c00061{vertical-align:0.000000pt;}
.v1_c00061{vertical-align:28.483200pt;}
.lsf_c00061{letter-spacing:-0.628839pt;}
.ls12_c00061{letter-spacing:-0.556080pt;}
.ls10_c00061{letter-spacing:-0.083152pt;}
.lsd_c00061{letter-spacing:-0.067217pt;}
.ls3_c00061{letter-spacing:-0.056016pt;}
.ls7_c00061{letter-spacing:-0.049792pt;}
.ls11_c00061{letter-spacing:-0.041576pt;}
.ls9_c00061{letter-spacing:-0.037344pt;}
.lse_c00061{letter-spacing:-0.031182pt;}
.lsa_c00061{letter-spacing:-0.031120pt;}
.lsc_c00061{letter-spacing:-0.024896pt;}
.ls5_c00061{letter-spacing:-0.018672pt;}
.ls6_c00061{letter-spacing:-0.012448pt;}
.lsb_c00061{letter-spacing:-0.006224pt;}
.ls4_c00061{letter-spacing:0.000000pt;}
.ls1_c00061{letter-spacing:0.006224pt;}
.ls8_c00061{letter-spacing:0.020694pt;}
.ls2_c00061{letter-spacing:0.046773pt;}
.ls0_c00061{letter-spacing:0.049792pt;}
.ws0_c00061{word-spacing:-17.352512pt;}
.ws1_c00061{word-spacing:-11.526781pt;}
.ws2_c00061{word-spacing:-9.242347pt;}
.ws3_c00061{word-spacing:0.000000pt;}
.ws12_c00061{word-spacing:0.024896pt;}
.ws13_c00061{word-spacing:0.041576pt;}
.ws17_c00061{word-spacing:0.051970pt;}
.wsf_c00061{word-spacing:0.311200pt;}
.wsd_c00061{word-spacing:0.317424pt;}
.ws18_c00061{word-spacing:0.566474pt;}
.ws10_c00061{word-spacing:1.319488pt;}
.wsb_c00061{word-spacing:1.580896pt;}
.wsa_c00061{word-spacing:1.618240pt;}
.wsc_c00061{word-spacing:1.910768pt;}
.ws4_c00061{word-spacing:6.087072pt;}
.ws5_c00061{word-spacing:6.093296pt;}
.ws8_c00061{word-spacing:6.728144pt;}
.ws9_c00061{word-spacing:6.746816pt;}
.ws16_c00061{word-spacing:12.893790pt;}
.ws6_c00061{word-spacing:13.107744pt;}
.ws7_c00061{word-spacing:13.120192pt;}
.wse_c00061{word-spacing:15.024736pt;}
.ws11_c00061{word-spacing:16.655424pt;}
.ws15_c00061{word-spacing:20.122836pt;}
.ws14_c00061{word-spacing:20.169609pt;}
._3_c00061{margin-left:-2.408464pt;}
._1_c00061{margin-left:-0.927376pt;}
._0_c00061{width:1.020736pt;}
._2_c00061{width:5.271728pt;}
.fs2_c00061{font-size:33.608533pt;}
.fs1_c00061{font-size:41.388800pt;}
.fs3_c00061{font-size:51.970133pt;}
.fs0_c00061{font-size:62.240000pt;}
.y0_c00061{bottom:0.000000pt;}
.y2_c00061{bottom:97.547527pt;}
.y1_c00061{bottom:115.387067pt;}
.y17_c00061{bottom:136.107200pt;}
.y16_c00061{bottom:148.666265pt;}
.y15_c00061{bottom:164.666570pt;}
.y14_c00061{bottom:183.787067pt;}
.y13_c00061{bottom:199.707067pt;}
.y12_c00061{bottom:212.826055pt;}
.y11_c00061{bottom:234.426447pt;}
.y10_c00061{bottom:279.387367pt;}
.yf_c00061{bottom:306.346623pt;}
.ye_c00061{bottom:333.147167pt;}
.yd_c00061{bottom:360.027067pt;}
.yc_c00061{bottom:404.906823pt;}
.yb_c00061{bottom:431.786723pt;}
.ya_c00061{bottom:458.666623pt;}
.y9_c00061{bottom:485.467167pt;}
.y8_c00061{bottom:512.346267pt;}
.y7_c00061{bottom:557.306887pt;}
.y6_c00061{bottom:593.387415pt;}
.y5_c00061{bottom:611.307867pt;}
.y4_c00061{bottom:629.147407pt;}
.y3_c00061{bottom:670.747067pt;}
.ha_c00061{height:34.967066pt;}
.h8_c00061{height:34.967599pt;}
.h7_c00061{height:35.287599pt;}
.h9_c00061{height:48.087599pt;}
.h1_c00061{height:55.797187pt;}
.h6_c00061{height:55.801236pt;}
.h2_c00061{height:56.192266pt;}
.h3_c00061{height:65.587612pt;}
.h4_c00061{height:65.848644pt;}
.h5_c00061{height:65.903213pt;}
.h0_c00061{height:1122.666667pt;}
.w0_c00061{width:793.333333pt;}
.x0_c00061{left:0.000000pt;}
.x2_c00061{left:73.519684pt;}
.x1_c00061{left:388.160000pt;}
.x3_c00061{left:671.759867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_338856a7cd6c8d586df8de27.woff2')format("woff");}.ff1_c00062{font-family:ff1_c00062;line-height:1.106934;font-style:normal;font-weight:normal;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_5a79ab0d0c710428456e3187.woff2')format("woff");}.ff2_c00062{font-family:ff2_c00062;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00062;src:url('chunks/assets/font_492c1176421cb7b8cdd28c26.woff2')format("woff");}.ff3_c00062{font-family:ff3_c00062;line-height:1.104492;font-style:normal;font-weight:normal;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_21d738d89a0094b320a8b5c8.woff2')format("woff");}.ff4_c00062{font-family:ff4_c00062;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00062{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00062{vertical-align:-14.760000px;}
.v0_c00062{vertical-align:0.000000px;}
.v1_c00062{vertical-align:32.043258px;}
.lse_c00062{letter-spacing:-0.701597px;}
.lsf_c00062{letter-spacing:-0.660670px;}
.lsd_c00062{letter-spacing:-0.075619px;}
.ls2_c00062{letter-spacing:-0.063018px;}
.lsc_c00062{letter-spacing:-0.056016px;}
.ls6_c00062{letter-spacing:-0.049014px;}
.ls5_c00062{letter-spacing:-0.042012px;}
.lsb_c00062{letter-spacing:-0.035010px;}
.ls9_c00062{letter-spacing:-0.028008px;}
.ls4_c00062{letter-spacing:-0.021006px;}
.ls7_c00062{letter-spacing:-0.014004px;}
.ls8_c00062{letter-spacing:-0.007002px;}
.ls3_c00062{letter-spacing:0.000000px;}
.ls0_c00062{letter-spacing:0.014004px;}
.ls1_c00062{letter-spacing:0.021006px;}
.lsa_c00062{letter-spacing:0.023281px;}
.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:-12.967628px;}
.ws2_c00062{word-spacing:-10.473259px;}
.ws1_c00062{word-spacing:-10.397640px;}
.wsa_c00062{word-spacing:-0.014004px;}
.ws1e_c00062{word-spacing:-0.007002px;}
.ws3_c00062{word-spacing:0.000000px;}
.ws14_c00062{word-spacing:0.014004px;}
.ws16_c00062{word-spacing:0.049014px;}
.ws1b_c00062{word-spacing:0.322092px;}
.ws5_c00062{word-spacing:0.343098px;}
.ws19_c00062{word-spacing:0.364104px;}
.ws1c_c00062{word-spacing:0.371106px;}
.ws18_c00062{word-spacing:0.385110px;}
.ws1d_c00062{word-spacing:0.399114px;}
.ws20_c00062{word-spacing:0.672364px;}
.ws1f_c00062{word-spacing:0.713290px;}
.ws13_c00062{word-spacing:1.470420px;}
.ws4_c00062{word-spacing:2.149614px;}
.ws15_c00062{word-spacing:5.419548px;}
.ws1a_c00062{word-spacing:6.469848px;}
.wsc_c00062{word-spacing:7.534152px;}
.wsd_c00062{word-spacing:7.597170px;}
.ws12_c00062{word-spacing:8.276364px;}
.ws8_c00062{word-spacing:11.504286px;}
.ws7_c00062{word-spacing:11.854386px;}
.ws9_c00062{word-spacing:11.889396px;}
.ws6_c00062{word-spacing:13.688910px;}
.ws11_c00062{word-spacing:15.110316px;}
.ws10_c00062{word-spacing:15.117318px;}
.wsb_c00062{word-spacing:20.186766px;}
.wsf_c00062{word-spacing:23.743782px;}
.wse_c00062{word-spacing:24.128892px;}
.ws17_c00062{word-spacing:26.243496px;}
._3_c00062{margin-left:-20.158758px;}
._1_c00062{margin-left:-13.681908px;}
._6_c00062{margin-left:-2.403594px;}
._0_c00062{margin-left:-1.288368px;}
._2_c00062{width:1.246356px;}
._4_c00062{width:5.622606px;}
._5_c00062{width:6.833952px;}
.fc0_c00062{color:rgb(0,0,0);}
.fs2_c00062{font-size:37.809600px;}
.fs1_c00062{font-size:46.562400px;}
.fs3_c00062{font-size:58.466400px;}
.fs0_c00062{font-size:70.020000px;}
.y0_c00062{bottom:0.000000px;}
.y2_c00062{bottom:109.740968px;}
.y1_c00062{bottom:129.810450px;}
.y20_c00062{bottom:153.120600px;}
.y1f_c00062{bottom:167.250902px;}
.y1e_c00062{bottom:193.260450px;}
.y1d_c00062{bottom:208.019564px;}
.y1c_c00062{bottom:260.760378px;}
.y1b_c00062{bottom:292.440927px;}
.y1a_c00062{bottom:324.029239px;}
.y19_c00062{bottom:355.709788px;}
.y18_c00062{bottom:387.390337px;}
.y17_c00062{bottom:417.630225px;}
.y16_c00062{bottom:447.780837px;}
.y15_c00062{bottom:478.020724px;}
.y14_c00062{bottom:509.610247px;}
.y13_c00062{bottom:539.760859px;}
.y12_c00062{bottom:570.000747px;}
.y11_c00062{bottom:626.340589px;}
.y10_c00062{bottom:656.669752px;}
.yf_c00062{bottom:707.249636px;}
.ye_c00062{bottom:737.489523px;}
.yd_c00062{bottom:767.729411px;}
.yc_c00062{bottom:797.880022px;}
.yb_c00062{bottom:828.119910px;}
.ya_c00062{bottom:858.270522px;}
.y9_c00062{bottom:888.510410px;}
.y8_c00062{bottom:939.000081px;}
.y7_c00062{bottom:969.239969px;}
.y6_c00062{bottom:999.479856px;}
.y5_c00062{bottom:1029.630468px;}
.y4_c00062{bottom:1080.211166px;}
.y3_c00062{bottom:1110.451053px;}
.h8_c00062{height:39.337949px;}
.h6_c00062{height:39.338549px;}
.h7_c00062{height:54.098549px;}
.h3_c00062{height:62.600889px;}
.h1_c00062{height:62.771836px;}
.h5_c00062{height:62.775382px;}
.h4_c00062{height:74.033628px;}
.h2_c00062{height:74.081284px;}
.h0_c00062{height:1263.000000px;}
.w0_c00062{width:892.500000px;}
.x0_c00062{left:0.000000px;}
.x2_c00062{left:82.709645px;}
.x3_c00062{left:110.429456px;}
.x1_c00062{left:436.680000px;}
@media print{
.v2_c00062{vertical-align:-13.120000pt;}
.v0_c00062{vertical-align:0.000000pt;}
.v1_c00062{vertical-align:28.482896pt;}
.lse_c00062{letter-spacing:-0.623642pt;}
.lsf_c00062{letter-spacing:-0.587263pt;}
.lsd_c00062{letter-spacing:-0.067217pt;}
.ls2_c00062{letter-spacing:-0.056016pt;}
.lsc_c00062{letter-spacing:-0.049792pt;}
.ls6_c00062{letter-spacing:-0.043568pt;}
.ls5_c00062{letter-spacing:-0.037344pt;}
.lsb_c00062{letter-spacing:-0.031120pt;}
.ls9_c00062{letter-spacing:-0.024896pt;}
.ls4_c00062{letter-spacing:-0.018672pt;}
.ls7_c00062{letter-spacing:-0.012448pt;}
.ls8_c00062{letter-spacing:-0.006224pt;}
.ls3_c00062{letter-spacing:0.000000pt;}
.ls0_c00062{letter-spacing:0.012448pt;}
.ls1_c00062{letter-spacing:0.018672pt;}
.lsa_c00062{letter-spacing:0.020694pt;}
.ws0_c00062{word-spacing:-11.526781pt;}
.ws2_c00062{word-spacing:-9.309564pt;}
.ws1_c00062{word-spacing:-9.242347pt;}
.wsa_c00062{word-spacing:-0.012448pt;}
.ws1e_c00062{word-spacing:-0.006224pt;}
.ws3_c00062{word-spacing:0.000000pt;}
.ws14_c00062{word-spacing:0.012448pt;}
.ws16_c00062{word-spacing:0.043568pt;}
.ws1b_c00062{word-spacing:0.286304pt;}
.ws5_c00062{word-spacing:0.304976pt;}
.ws19_c00062{word-spacing:0.323648pt;}
.ws1c_c00062{word-spacing:0.329872pt;}
.ws18_c00062{word-spacing:0.342320pt;}
.ws1d_c00062{word-spacing:0.354768pt;}
.ws20_c00062{word-spacing:0.597657pt;}
.ws1f_c00062{word-spacing:0.634036pt;}
.ws13_c00062{word-spacing:1.307040pt;}
.ws4_c00062{word-spacing:1.910768pt;}
.ws15_c00062{word-spacing:4.817376pt;}
.ws1a_c00062{word-spacing:5.750976pt;}
.wsc_c00062{word-spacing:6.697024pt;}
.wsd_c00062{word-spacing:6.753040pt;}
.ws12_c00062{word-spacing:7.356768pt;}
.ws8_c00062{word-spacing:10.226032pt;}
.ws7_c00062{word-spacing:10.537232pt;}
.ws9_c00062{word-spacing:10.568352pt;}
.ws6_c00062{word-spacing:12.167920pt;}
.ws11_c00062{word-spacing:13.431392pt;}
.ws10_c00062{word-spacing:13.437616pt;}
.wsb_c00062{word-spacing:17.943792pt;}
.wsf_c00062{word-spacing:21.105584pt;}
.wse_c00062{word-spacing:21.447904pt;}
.ws17_c00062{word-spacing:23.327552pt;}
._3_c00062{margin-left:-17.918896pt;}
._1_c00062{margin-left:-12.161696pt;}
._6_c00062{margin-left:-2.136528pt;}
._0_c00062{margin-left:-1.145216pt;}
._2_c00062{width:1.107872pt;}
._4_c00062{width:4.997872pt;}
._5_c00062{width:6.074624pt;}
.fs2_c00062{font-size:33.608533pt;}
.fs1_c00062{font-size:41.388800pt;}
.fs3_c00062{font-size:51.970133pt;}
.fs0_c00062{font-size:62.240000pt;}
.y0_c00062{bottom:0.000000pt;}
.y2_c00062{bottom:97.547527pt;}
.y1_c00062{bottom:115.387067pt;}
.y20_c00062{bottom:136.107200pt;}
.y1f_c00062{bottom:148.667468pt;}
.y1e_c00062{bottom:171.787067pt;}
.y1d_c00062{bottom:184.906279pt;}
.y1c_c00062{bottom:231.787003pt;}
.y1b_c00062{bottom:259.947491pt;}
.y1a_c00062{bottom:288.025991pt;}
.y19_c00062{bottom:316.186479pt;}
.y18_c00062{bottom:344.346967pt;}
.y17_c00062{bottom:371.226867pt;}
.y16_c00062{bottom:398.027411pt;}
.y15_c00062{bottom:424.907311pt;}
.y14_c00062{bottom:452.986887pt;}
.y13_c00062{bottom:479.787431pt;}
.y12_c00062{bottom:506.667331pt;}
.y11_c00062{bottom:556.747191pt;}
.y10_c00062{bottom:583.706447pt;}
.yf_c00062{bottom:628.666343pt;}
.ye_c00062{bottom:655.546243pt;}
.yd_c00062{bottom:682.426143pt;}
.yc_c00062{bottom:709.226687pt;}
.yb_c00062{bottom:736.106587pt;}
.ya_c00062{bottom:762.907131pt;}
.y9_c00062{bottom:789.787031pt;}
.y8_c00062{bottom:834.666739pt;}
.y7_c00062{bottom:861.546639pt;}
.y6_c00062{bottom:888.426539pt;}
.y5_c00062{bottom:915.227083pt;}
.y4_c00062{bottom:960.187703pt;}
.y3_c00062{bottom:987.067603pt;}
.h8_c00062{height:34.967066pt;}
.h6_c00062{height:34.967599pt;}
.h7_c00062{height:48.087599pt;}
.h3_c00062{height:55.645234pt;}
.h1_c00062{height:55.797187pt;}
.h5_c00062{height:55.800340pt;}
.h4_c00062{height:65.807670pt;}
.h2_c00062{height:65.850030pt;}
.h0_c00062{height:1122.666667pt;}
.w0_c00062{width:793.333333pt;}
.x0_c00062{left:0.000000pt;}
.x2_c00062{left:73.519684pt;}
.x3_c00062{left:98.159516pt;}
.x1_c00062{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_10de0949ee0fed8f73ce2d5d.woff2')format("woff");}.ff1_c00063{font-family:ff1_c00063;line-height:1.106934;font-style:normal;font-weight:normal;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_4f5e2f70847d6f7aca502e20.woff2')format("woff");}.ff2_c00063{font-family:ff2_c00063;line-height:1.104492;font-style:normal;font-weight:normal;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_d85bdc7899fbe31f448ed9a2.woff2')format("woff");}.ff3_c00063{font-family:ff3_c00063;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00063{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00063{vertical-align:-14.400000px;}
.v0_c00063{vertical-align:0.000000px;}
.v1_c00063{vertical-align:32.054364px;}
.ls16_c00063{letter-spacing:-0.128626px;}
.ls14_c00063{letter-spacing:-0.111086px;}
.ls15_c00063{letter-spacing:-0.093546px;}
.ls13_c00063{letter-spacing:-0.075619px;}
.ls6_c00063{letter-spacing:-0.063018px;}
.lsb_c00063{letter-spacing:-0.056016px;}
.ls17_c00063{letter-spacing:-0.052620px;}
.ls9_c00063{letter-spacing:-0.049014px;}
.ls8_c00063{letter-spacing:-0.042012px;}
.lsa_c00063{letter-spacing:-0.035010px;}
.lsd_c00063{letter-spacing:-0.028008px;}
.lsc_c00063{letter-spacing:-0.021006px;}
.ls12_c00063{letter-spacing:-0.014004px;}
.lsf_c00063{letter-spacing:-0.007002px;}
.ls7_c00063{letter-spacing:0.000000px;}
.ls1_c00063{letter-spacing:0.007002px;}
.ls3_c00063{letter-spacing:0.014004px;}
.ls4_c00063{letter-spacing:0.021006px;}
.ls11_c00063{letter-spacing:0.023281px;}
.ls0_c00063{letter-spacing:0.028008px;}
.ls2_c00063{letter-spacing:0.098028px;}
.ls5_c00063{letter-spacing:0.111086px;}
.ls10_c00063{letter-spacing:0.308088px;}
.lse_c00063{letter-spacing:0.336096px;}
.ls18_c00063{letter-spacing:0.537891px;}
.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:-12.967628px;}
.ws1_c00063{word-spacing:-10.397640px;}
.ws5_c00063{word-spacing:-0.399114px;}
.ws10_c00063{word-spacing:-0.322092px;}
.wsf_c00063{word-spacing:-0.112032px;}
.ws1b_c00063{word-spacing:-0.099393px;}
.ws4_c00063{word-spacing:-0.042012px;}
.ws14_c00063{word-spacing:-0.035010px;}
.wsa_c00063{word-spacing:-0.021006px;}
.ws15_c00063{word-spacing:-0.014004px;}
.wse_c00063{word-spacing:-0.007002px;}
.ws2_c00063{word-spacing:0.000000px;}
.ws9_c00063{word-spacing:0.007002px;}
.wsc_c00063{word-spacing:0.014004px;}
.ws7_c00063{word-spacing:0.021006px;}
.ws3_c00063{word-spacing:0.028008px;}
.ws6_c00063{word-spacing:0.035010px;}
.ws8_c00063{word-spacing:0.042012px;}
.wsd_c00063{word-spacing:0.336096px;}
.wsb_c00063{word-spacing:0.371106px;}
.ws17_c00063{word-spacing:2.268496px;}
.ws16_c00063{word-spacing:2.286036px;}
.ws1a_c00063{word-spacing:3.075333px;}
.ws11_c00063{word-spacing:4.691340px;}
.ws12_c00063{word-spacing:4.698342px;}
.ws19_c00063{word-spacing:5.104117px;}
.ws18_c00063{word-spacing:5.180123px;}
.ws13_c00063{word-spacing:5.370534px;}
._3_c00063{margin-left:-2.708154px;}
._1_c00063{margin-left:-1.071306px;}
._0_c00063{width:1.260360px;}
._2_c00063{width:5.930694px;}
.fc0_c00063{color:rgb(0,0,0);}
.fs2_c00063{font-size:37.809600px;}
.fs1_c00063{font-size:46.562400px;}
.fs3_c00063{font-size:58.466400px;}
.fs0_c00063{font-size:70.020000px;}
.y0_c00063{bottom:0.000000px;}
.y2_c00063{bottom:109.740968px;}
.y1_c00063{bottom:129.810450px;}
.y22_c00063{bottom:149.429270px;}
.y21_c00063{bottom:167.249828px;}
.y20_c00063{bottom:185.250171px;}
.y1f_c00063{bottom:203.070730px;}
.y1e_c00063{bottom:224.580450px;}
.y1d_c00063{bottom:240.778236px;}
.y1c_c00063{bottom:281.188529px;}
.y1b_c00063{bottom:312.869078px;}
.y1a_c00063{bottom:344.549627px;}
.y19_c00063{bottom:376.139150px;}
.y18_c00063{bottom:407.819698px;}
.y17_c00063{bottom:439.500248px;}
.y16_c00063{bottom:487.199622px;}
.y15_c00063{bottom:517.350234px;}
.y14_c00063{bottom:547.500846px;}
.y13_c00063{bottom:592.320648px;}
.y12_c00063{bottom:637.136859px;}
.y11_c00063{bottom:668.726382px;}
.y10_c00063{bottom:700.406931px;}
.yf_c00063{bottom:732.087480px;}
.ye_c00063{bottom:763.677003px;}
.yd_c00063{bottom:795.357552px;}
.yc_c00063{bottom:827.038101px;}
.yb_c00063{bottom:858.718650px;}
.ya_c00063{bottom:888.869262px;}
.y9_c00063{bottom:920.549811px;}
.y8_c00063{bottom:952.139334px;}
.y7_c00063{bottom:983.819883px;}
.y6_c00063{bottom:1015.500432px;}
.y5_c00063{bottom:1047.089955px;}
.y4_c00063{bottom:1078.770504px;}
.y3_c00063{bottom:1110.451053px;}
.h5_c00063{height:39.698549px;}
.h6_c00063{height:54.098549px;}
.h2_c00063{height:62.600889px;}
.h1_c00063{height:62.771836px;}
.h4_c00063{height:62.781292px;}
.h3_c00063{height:73.683150px;}
.h0_c00063{height:1263.000000px;}
.w0_c00063{width:892.500000px;}
.x0_c00063{left:0.000000px;}
.x2_c00063{left:82.709645px;}
.x4_c00063{left:135.270158px;}
.x3_c00063{left:143.999901px;}
.x5_c00063{left:146.879424px;}
.x1_c00063{left:436.680000px;}
@media print{
.v2_c00063{vertical-align:-12.800000pt;}
.v0_c00063{vertical-align:0.000000pt;}
.v1_c00063{vertical-align:28.492768pt;}
.ls16_c00063{letter-spacing:-0.114334pt;}
.ls14_c00063{letter-spacing:-0.098743pt;}
.ls15_c00063{letter-spacing:-0.083152pt;}
.ls13_c00063{letter-spacing:-0.067217pt;}
.ls6_c00063{letter-spacing:-0.056016pt;}
.lsb_c00063{letter-spacing:-0.049792pt;}
.ls17_c00063{letter-spacing:-0.046773pt;}
.ls9_c00063{letter-spacing:-0.043568pt;}
.ls8_c00063{letter-spacing:-0.037344pt;}
.lsa_c00063{letter-spacing:-0.031120pt;}
.lsd_c00063{letter-spacing:-0.024896pt;}
.lsc_c00063{letter-spacing:-0.018672pt;}
.ls12_c00063{letter-spacing:-0.012448pt;}
.lsf_c00063{letter-spacing:-0.006224pt;}
.ls7_c00063{letter-spacing:0.000000pt;}
.ls1_c00063{letter-spacing:0.006224pt;}
.ls3_c00063{letter-spacing:0.012448pt;}
.ls4_c00063{letter-spacing:0.018672pt;}
.ls11_c00063{letter-spacing:0.020694pt;}
.ls0_c00063{letter-spacing:0.024896pt;}
.ls2_c00063{letter-spacing:0.087136pt;}
.ls5_c00063{letter-spacing:0.098743pt;}
.ls10_c00063{letter-spacing:0.273856pt;}
.lse_c00063{letter-spacing:0.298752pt;}
.ls18_c00063{letter-spacing:0.478125pt;}
.ws0_c00063{word-spacing:-11.526781pt;}
.ws1_c00063{word-spacing:-9.242347pt;}
.ws5_c00063{word-spacing:-0.354768pt;}
.ws10_c00063{word-spacing:-0.286304pt;}
.wsf_c00063{word-spacing:-0.099584pt;}
.ws1b_c00063{word-spacing:-0.088349pt;}
.ws4_c00063{word-spacing:-0.037344pt;}
.ws14_c00063{word-spacing:-0.031120pt;}
.wsa_c00063{word-spacing:-0.018672pt;}
.ws15_c00063{word-spacing:-0.012448pt;}
.wse_c00063{word-spacing:-0.006224pt;}
.ws2_c00063{word-spacing:0.000000pt;}
.ws9_c00063{word-spacing:0.006224pt;}
.wsc_c00063{word-spacing:0.012448pt;}
.ws7_c00063{word-spacing:0.018672pt;}
.ws3_c00063{word-spacing:0.024896pt;}
.ws6_c00063{word-spacing:0.031120pt;}
.ws8_c00063{word-spacing:0.037344pt;}
.wsd_c00063{word-spacing:0.298752pt;}
.wsb_c00063{word-spacing:0.329872pt;}
.ws17_c00063{word-spacing:2.016441pt;}
.ws16_c00063{word-spacing:2.032032pt;}
.ws1a_c00063{word-spacing:2.733629pt;}
.ws11_c00063{word-spacing:4.170080pt;}
.ws12_c00063{word-spacing:4.176304pt;}
.ws19_c00063{word-spacing:4.536993pt;}
.ws18_c00063{word-spacing:4.604554pt;}
.ws13_c00063{word-spacing:4.773808pt;}
._3_c00063{margin-left:-2.407248pt;}
._1_c00063{margin-left:-0.952272pt;}
._0_c00063{width:1.120320pt;}
._2_c00063{width:5.271728pt;}
.fs2_c00063{font-size:33.608533pt;}
.fs1_c00063{font-size:41.388800pt;}
.fs3_c00063{font-size:51.970133pt;}
.fs0_c00063{font-size:62.240000pt;}
.y0_c00063{bottom:0.000000pt;}
.y2_c00063{bottom:97.547527pt;}
.y1_c00063{bottom:115.387067pt;}
.y22_c00063{bottom:132.826017pt;}
.y21_c00063{bottom:148.666514pt;}
.y20_c00063{bottom:164.666819pt;}
.y1f_c00063{bottom:180.507316pt;}
.y1e_c00063{bottom:199.627067pt;}
.y1d_c00063{bottom:214.025099pt;}
.y1c_c00063{bottom:249.945359pt;}
.y1b_c00063{bottom:278.105847pt;}
.y1a_c00063{bottom:306.266335pt;}
.y19_c00063{bottom:334.345911pt;}
.y18_c00063{bottom:362.506399pt;}
.y17_c00063{bottom:390.666887pt;}
.y16_c00063{bottom:433.066331pt;}
.y15_c00063{bottom:459.866875pt;}
.y14_c00063{bottom:486.667419pt;}
.y13_c00063{bottom:526.507243pt;}
.y12_c00063{bottom:566.343875pt;}
.y11_c00063{bottom:594.423451pt;}
.y10_c00063{bottom:622.583939pt;}
.yf_c00063{bottom:650.744427pt;}
.ye_c00063{bottom:678.824003pt;}
.yd_c00063{bottom:706.984491pt;}
.yc_c00063{bottom:735.144979pt;}
.yb_c00063{bottom:763.305467pt;}
.ya_c00063{bottom:790.106011pt;}
.y9_c00063{bottom:818.266499pt;}
.y8_c00063{bottom:846.346075pt;}
.y7_c00063{bottom:874.506563pt;}
.y6_c00063{bottom:902.667051pt;}
.y5_c00063{bottom:930.746627pt;}
.y4_c00063{bottom:958.907115pt;}
.y3_c00063{bottom:987.067603pt;}
.h5_c00063{height:35.287599pt;}
.h6_c00063{height:48.087599pt;}
.h2_c00063{height:55.645234pt;}
.h1_c00063{height:55.797187pt;}
.h4_c00063{height:55.805593pt;}
.h3_c00063{height:65.496134pt;}
.h0_c00063{height:1122.666667pt;}
.w0_c00063{width:793.333333pt;}
.x0_c00063{left:0.000000pt;}
.x2_c00063{left:73.519684pt;}
.x4_c00063{left:120.240140pt;}
.x3_c00063{left:127.999912pt;}
.x5_c00063{left:130.559488pt;}
.x1_c00063{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ae9eb10b2f7f76f123c09b0f.woff2')format("woff");}.ff1_c00064{font-family:ff1_c00064;line-height:1.106934;font-style:normal;font-weight:normal;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_309b6056807bbcc44193bbfe.woff2')format("woff");}.ff2_c00064{font-family:ff2_c00064;line-height:1.104492;font-style:normal;font-weight:normal;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_fe684835c2b7da68a27bbc97.woff2')format("woff");}.ff3_c00064{font-family:ff3_c00064;line-height:1.133301;font-style:normal;font-weight:normal;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_a8da60cfa9b95d68407911d5.woff2')format("woff");}.ff4_c00064{font-family:ff4_c00064;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00064;src:url('chunks/assets/font_d2ef0493caf4dc7a3c7550a1.woff2')format("woff");}.ff5_c00064{font-family:ff5_c00064;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00064{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00064{vertical-align:-14.760000px;}
.v0_c00064{vertical-align:0.000000px;}
.v1_c00064{vertical-align:32.420934px;}
.ls14_c00064{letter-spacing:-0.321565px;}
.ls10_c00064{letter-spacing:-0.099393px;}
.ls13_c00064{letter-spacing:-0.081853px;}
.lsf_c00064{letter-spacing:-0.075619px;}
.ls6_c00064{letter-spacing:-0.070020px;}
.ls4_c00064{letter-spacing:-0.063018px;}
.ls9_c00064{letter-spacing:-0.049014px;}
.lse_c00064{letter-spacing:-0.042012px;}
.ls7_c00064{letter-spacing:-0.035010px;}
.lsb_c00064{letter-spacing:-0.028008px;}
.ls8_c00064{letter-spacing:-0.021006px;}
.lsc_c00064{letter-spacing:-0.014004px;}
.lsa_c00064{letter-spacing:-0.007002px;}
.ls11_c00064{letter-spacing:-0.005847px;}
.ls5_c00064{letter-spacing:0.000000px;}
.ls3_c00064{letter-spacing:0.005847px;}
.ls0_c00064{letter-spacing:0.007002px;}
.ls1_c00064{letter-spacing:0.021006px;}
.lsd_c00064{letter-spacing:0.023281px;}
.ls15_c00064{letter-spacing:0.076006px;}
.ls12_c00064{letter-spacing:0.081853px;}
.ls16_c00064{letter-spacing:0.198786px;}
.ls2_c00064{letter-spacing:0.362492px;}
.sc__c00064{text-shadow:none;}
.sc0_c00064{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00064{-webkit-text-stroke:0px transparent;}
.sc0_c00064{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00064{word-spacing:-58.466400px;}
.ws0_c00064{word-spacing:-12.967628px;}
.ws1_c00064{word-spacing:-10.397640px;}
.ws20_c00064{word-spacing:-0.543738px;}
.ws21_c00064{word-spacing:-0.350798px;}
.wsa_c00064{word-spacing:-0.350100px;}
.ws5_c00064{word-spacing:-0.336096px;}
.ws3_c00064{word-spacing:0.000000px;}
.ws6_c00064{word-spacing:0.007002px;}
.ws10_c00064{word-spacing:0.014004px;}
.wsc_c00064{word-spacing:0.028008px;}
.ws1f_c00064{word-spacing:0.298179px;}
.ws12_c00064{word-spacing:0.336096px;}
.ws8_c00064{word-spacing:0.350100px;}
.ws11_c00064{word-spacing:0.357102px;}
.ws9_c00064{word-spacing:0.371106px;}
.wsb_c00064{word-spacing:0.378108px;}
.ws7_c00064{word-spacing:0.392112px;}
.ws4_c00064{word-spacing:0.413118px;}
.ws1c_c00064{word-spacing:6.214978px;}
.ws1d_c00064{word-spacing:6.413764px;}
.ws1e_c00064{word-spacing:6.817182px;}
.wsd_c00064{word-spacing:8.997570px;}
.wse_c00064{word-spacing:9.004572px;}
.ws1b_c00064{word-spacing:9.652803px;}
.ws1a_c00064{word-spacing:9.740502px;}
.ws19_c00064{word-spacing:9.834048px;}
.wsf_c00064{word-spacing:15.481422px;}
.ws18_c00064{word-spacing:16.195626px;}
.ws15_c00064{word-spacing:17.280936px;}
.ws14_c00064{word-spacing:18.324234px;}
.ws13_c00064{word-spacing:21.937266px;}
.ws16_c00064{word-spacing:24.843096px;}
.ws17_c00064{word-spacing:24.871104px;}
._3_c00064{margin-left:-2.706786px;}
._0_c00064{margin-left:-1.071306px;}
._1_c00064{width:1.379394px;}
._2_c00064{width:5.930694px;}
.fc0_c00064{color:rgb(0,0,0);}
.fs2_c00064{font-size:37.809600px;}
.fs1_c00064{font-size:46.562400px;}
.fs3_c00064{font-size:58.466400px;}
.fs0_c00064{font-size:70.020000px;}
.y0_c00064{bottom:0.000000px;}
.y2_c00064{bottom:109.740968px;}
.y1_c00064{bottom:129.810450px;}
.y22_c00064{bottom:149.429548px;}
.y21_c00064{bottom:167.250107px;}
.y20_c00064{bottom:188.940450px;}
.y1f_c00064{bottom:203.609912px;}
.y1e_c00064{bottom:228.090654px;}
.y1d_c00064{bottom:258.330542px;}
.y1c_c00064{bottom:288.481154px;}
.y1b_c00064{bottom:318.721041px;}
.y1a_c00064{bottom:348.780627px;}
.y19_c00064{bottom:399.445216px;}
.y18_c00064{bottom:431.125765px;}
.y17_c00064{bottom:462.806314px;}
.y16_c00064{bottom:494.486863px;}
.y15_c00064{bottom:526.167412px;}
.y14_c00064{bottom:557.756935px;}
.y13_c00064{bottom:589.437484px;}
.y12_c00064{bottom:621.027007px;}
.y11_c00064{bottom:652.707556px;}
.y10_c00064{bottom:703.377529px;}
.yf_c00064{bottom:733.528141px;}
.ye_c00064{bottom:763.768029px;}
.yd_c00064{bottom:793.918641px;}
.yc_c00064{bottom:825.599190px;}
.yb_c00064{bottom:857.279739px;}
.ya_c00064{bottom:888.869262px;}
.y9_c00064{bottom:920.549811px;}
.y8_c00064{bottom:952.139334px;}
.y7_c00064{bottom:983.819883px;}
.y6_c00064{bottom:1015.500432px;}
.y5_c00064{bottom:1047.089955px;}
.y4_c00064{bottom:1078.770504px;}
.y3_c00064{bottom:1110.451053px;}
.h5_c00064{height:39.338549px;}
.h6_c00064{height:54.098549px;}
.h2_c00064{height:62.600889px;}
.h1_c00064{height:62.771836px;}
.h4_c00064{height:62.773990px;}
.h3_c00064{height:74.049720px;}
.h0_c00064{height:1263.000000px;}
.w0_c00064{width:892.500000px;}
.x0_c00064{left:0.000000px;}
.x2_c00064{left:82.709645px;}
.x6_c00064{left:141.120328px;}
.x5_c00064{left:143.999901px;}
.x3_c00064{left:146.879474px;}
.x4_c00064{left:149.850072px;}
.x1_c00064{left:436.680000px;}
@media print{
.v2_c00064{vertical-align:-13.120000pt;}
.v0_c00064{vertical-align:0.000000pt;}
.v1_c00064{vertical-align:28.818608pt;}
.ls14_c00064{letter-spacing:-0.285836pt;}
.ls10_c00064{letter-spacing:-0.088349pt;}
.ls13_c00064{letter-spacing:-0.072758pt;}
.lsf_c00064{letter-spacing:-0.067217pt;}
.ls6_c00064{letter-spacing:-0.062240pt;}
.ls4_c00064{letter-spacing:-0.056016pt;}
.ls9_c00064{letter-spacing:-0.043568pt;}
.lse_c00064{letter-spacing:-0.037344pt;}
.ls7_c00064{letter-spacing:-0.031120pt;}
.lsb_c00064{letter-spacing:-0.024896pt;}
.ls8_c00064{letter-spacing:-0.018672pt;}
.lsc_c00064{letter-spacing:-0.012448pt;}
.lsa_c00064{letter-spacing:-0.006224pt;}
.ls11_c00064{letter-spacing:-0.005197pt;}
.ls5_c00064{letter-spacing:0.000000pt;}
.ls3_c00064{letter-spacing:0.005197pt;}
.ls0_c00064{letter-spacing:0.006224pt;}
.ls1_c00064{letter-spacing:0.018672pt;}
.lsd_c00064{letter-spacing:0.020694pt;}
.ls15_c00064{letter-spacing:0.067561pt;}
.ls12_c00064{letter-spacing:0.072758pt;}
.ls16_c00064{letter-spacing:0.176698pt;}
.ls2_c00064{letter-spacing:0.322215pt;}
.ws2_c00064{word-spacing:-51.970133pt;}
.ws0_c00064{word-spacing:-11.526781pt;}
.ws1_c00064{word-spacing:-9.242347pt;}
.ws20_c00064{word-spacing:-0.483322pt;}
.ws21_c00064{word-spacing:-0.311821pt;}
.wsa_c00064{word-spacing:-0.311200pt;}
.ws5_c00064{word-spacing:-0.298752pt;}
.ws3_c00064{word-spacing:0.000000pt;}
.ws6_c00064{word-spacing:0.006224pt;}
.ws10_c00064{word-spacing:0.012448pt;}
.wsc_c00064{word-spacing:0.024896pt;}
.ws1f_c00064{word-spacing:0.265048pt;}
.ws12_c00064{word-spacing:0.298752pt;}
.ws8_c00064{word-spacing:0.311200pt;}
.ws11_c00064{word-spacing:0.317424pt;}
.ws9_c00064{word-spacing:0.329872pt;}
.wsb_c00064{word-spacing:0.336096pt;}
.ws7_c00064{word-spacing:0.348544pt;}
.ws4_c00064{word-spacing:0.367216pt;}
.ws1c_c00064{word-spacing:5.524425pt;}
.ws1d_c00064{word-spacing:5.701124pt;}
.ws1e_c00064{word-spacing:6.059718pt;}
.wsd_c00064{word-spacing:7.997840pt;}
.wse_c00064{word-spacing:8.004064pt;}
.ws1b_c00064{word-spacing:8.580269pt;}
.ws1a_c00064{word-spacing:8.658224pt;}
.ws19_c00064{word-spacing:8.741376pt;}
.wsf_c00064{word-spacing:13.761264pt;}
.ws18_c00064{word-spacing:14.396112pt;}
.ws15_c00064{word-spacing:15.360832pt;}
.ws14_c00064{word-spacing:16.288208pt;}
.ws13_c00064{word-spacing:19.499792pt;}
.ws16_c00064{word-spacing:22.082752pt;}
.ws17_c00064{word-spacing:22.107648pt;}
._3_c00064{margin-left:-2.406032pt;}
._0_c00064{margin-left:-0.952272pt;}
._1_c00064{width:1.226128pt;}
._2_c00064{width:5.271728pt;}
.fs2_c00064{font-size:33.608533pt;}
.fs1_c00064{font-size:41.388800pt;}
.fs3_c00064{font-size:51.970133pt;}
.fs0_c00064{font-size:62.240000pt;}
.y0_c00064{bottom:0.000000pt;}
.y2_c00064{bottom:97.547527pt;}
.y1_c00064{bottom:115.387067pt;}
.y22_c00064{bottom:132.826265pt;}
.y21_c00064{bottom:148.666762pt;}
.y20_c00064{bottom:167.947067pt;}
.y1f_c00064{bottom:180.986588pt;}
.y1e_c00064{bottom:202.747248pt;}
.y1d_c00064{bottom:229.627148pt;}
.y1c_c00064{bottom:256.427692pt;}
.y1b_c00064{bottom:283.307592pt;}
.y1a_c00064{bottom:310.027224pt;}
.y19_c00064{bottom:355.062415pt;}
.y18_c00064{bottom:383.222903pt;}
.y17_c00064{bottom:411.383391pt;}
.y16_c00064{bottom:439.543879pt;}
.y15_c00064{bottom:467.704367pt;}
.y14_c00064{bottom:495.783943pt;}
.y13_c00064{bottom:523.944431pt;}
.y12_c00064{bottom:552.024007pt;}
.y11_c00064{bottom:580.184495pt;}
.y10_c00064{bottom:625.224471pt;}
.yf_c00064{bottom:652.025015pt;}
.ye_c00064{bottom:678.904915pt;}
.yd_c00064{bottom:705.705459pt;}
.yc_c00064{bottom:733.865947pt;}
.yb_c00064{bottom:762.026435pt;}
.ya_c00064{bottom:790.106011pt;}
.y9_c00064{bottom:818.266499pt;}
.y8_c00064{bottom:846.346075pt;}
.y7_c00064{bottom:874.506563pt;}
.y6_c00064{bottom:902.667051pt;}
.y5_c00064{bottom:930.746627pt;}
.y4_c00064{bottom:958.907115pt;}
.y3_c00064{bottom:987.067603pt;}
.h5_c00064{height:34.967599pt;}
.h6_c00064{height:48.087599pt;}
.h2_c00064{height:55.645234pt;}
.h1_c00064{height:55.797187pt;}
.h4_c00064{height:55.799102pt;}
.h3_c00064{height:65.821974pt;}
.h0_c00064{height:1122.666667pt;}
.w0_c00064{width:793.333333pt;}
.x0_c00064{left:0.000000pt;}
.x2_c00064{left:73.519684pt;}
.x6_c00064{left:125.440292pt;}
.x5_c00064{left:127.999912pt;}
.x3_c00064{left:130.559532pt;}
.x4_c00064{left:133.200064pt;}
.x1_c00064{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e39b37d774e27672db12d0f9.woff2')format("woff");}.ff1_c00065{font-family:ff1_c00065;line-height:1.106934;font-style:normal;font-weight:normal;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_dde865badac71e6a082a01ff.woff2')format("woff");}.ff2_c00065{font-family:ff2_c00065;line-height:1.104492;font-style:normal;font-weight:normal;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_c371231d03b08366af64c729.woff2')format("woff");}.ff3_c00065{font-family:ff3_c00065;line-height:1.133301;font-style:normal;font-weight:normal;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_2aec9147de737ef5505c5fb8.woff2')format("woff");}.ff4_c00065{font-family:ff4_c00065;line-height:1.133301;font-style:normal;font-weight:normal;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_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff5_c00065{font-family:ff5_c00065;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00065{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00065{vertical-align:-14.760000px;}
.v0_c00065{vertical-align:0.000000px;}
.v1_c00065{vertical-align:32.040684px;}
.ls25_c00065{letter-spacing:-0.286485px;}
.ls13_c00065{letter-spacing:-0.280080px;}
.ls23_c00065{letter-spacing:-0.268945px;}
.ls1c_c00065{letter-spacing:-0.228019px;}
.ls16_c00065{letter-spacing:-0.182052px;}
.lsf_c00065{letter-spacing:-0.084024px;}
.ls19_c00065{letter-spacing:-0.075619px;}
.ls21_c00065{letter-spacing:-0.064313px;}
.ls8_c00065{letter-spacing:-0.063018px;}
.lsc_c00065{letter-spacing:-0.056016px;}
.ls1b_c00065{letter-spacing:-0.052620px;}
.ls17_c00065{letter-spacing:-0.049014px;}
.lse_c00065{letter-spacing:-0.042012px;}
.ls1a_c00065{letter-spacing:-0.040926px;}
.ls1d_c00065{letter-spacing:-0.035080px;}
.lsb_c00065{letter-spacing:-0.035010px;}
.ls10_c00065{letter-spacing:-0.028008px;}
.lsa_c00065{letter-spacing:-0.021006px;}
.ls26_c00065{letter-spacing:-0.017540px;}
.ls11_c00065{letter-spacing:-0.014004px;}
.lsd_c00065{letter-spacing:-0.007002px;}
.ls9_c00065{letter-spacing:0.000000px;}
.ls7_c00065{letter-spacing:0.005847px;}
.ls2_c00065{letter-spacing:0.007002px;}
.ls5_c00065{letter-spacing:0.011693px;}
.ls1_c00065{letter-spacing:0.014004px;}
.ls12_c00065{letter-spacing:0.023281px;}
.ls1e_c00065{letter-spacing:0.070160px;}
.ls18_c00065{letter-spacing:0.084024px;}
.ls22_c00065{letter-spacing:0.093546px;}
.ls3_c00065{letter-spacing:0.119034px;}
.ls4_c00065{letter-spacing:0.163706px;}
.ls24_c00065{letter-spacing:0.321565px;}
.ls1f_c00065{letter-spacing:0.438498px;}
.ls15_c00065{letter-spacing:0.490140px;}
.ls20_c00065{letter-spacing:0.537891px;}
.ls14_c00065{letter-spacing:0.630180px;}
.ls6_c00065{letter-spacing:3.244807px;}
.ls0_c00065{letter-spacing:12.932694px;}
.sc__c00065{text-shadow:none;}
.sc0_c00065{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00065{-webkit-text-stroke:0px transparent;}
.sc0_c00065{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00065{word-spacing:-58.466400px;}
.ws1_c00065{word-spacing:-19.549584px;}
.ws0_c00065{word-spacing:-12.967628px;}
.ws4_c00065{word-spacing:-10.473259px;}
.ws2_c00065{word-spacing:-10.397640px;}
.ws2e_c00065{word-spacing:-1.145941px;}
.ws17_c00065{word-spacing:-0.147042px;}
.ws2d_c00065{word-spacing:-0.058466px;}
.ws16_c00065{word-spacing:-0.007002px;}
.ws5_c00065{word-spacing:0.000000px;}
.ws15_c00065{word-spacing:0.007002px;}
.ws11_c00065{word-spacing:0.028008px;}
.ws36_c00065{word-spacing:0.029233px;}
.ws26_c00065{word-spacing:0.035010px;}
.ws32_c00065{word-spacing:0.280639px;}
.ws14_c00065{word-spacing:0.329094px;}
.ws1e_c00065{word-spacing:0.371106px;}
.ws29_c00065{word-spacing:0.783450px;}
.ws33_c00065{word-spacing:0.999775px;}
.ws2a_c00065{word-spacing:1.134248px;}
.ws12_c00065{word-spacing:1.428408px;}
.ws2f_c00065{word-spacing:1.637059px;}
.ws31_c00065{word-spacing:2.210030px;}
.wsb_c00065{word-spacing:2.513718px;}
.ws30_c00065{word-spacing:2.519902px;}
.wsc_c00065{word-spacing:2.548728px;}
.ws35_c00065{word-spacing:2.929167px;}
.ws34_c00065{word-spacing:3.244885px;}
.ws2b_c00065{word-spacing:4.203734px;}
.ws2c_c00065{word-spacing:4.367440px;}
.ws25_c00065{word-spacing:5.405544px;}
.ws23_c00065{word-spacing:5.741640px;}
.ws22_c00065{word-spacing:5.783652px;}
.ws24_c00065{word-spacing:5.790654px;}
.ws18_c00065{word-spacing:6.448842px;}
.ws19_c00065{word-spacing:6.455844px;}
.ws1a_c00065{word-spacing:7.191054px;}
.ws1b_c00065{word-spacing:7.212060px;}
.ws21_c00065{word-spacing:7.898256px;}
.ws1c_c00065{word-spacing:8.990568px;}
.ws1d_c00065{word-spacing:9.032580px;}
.wsa_c00065{word-spacing:9.711774px;}
.ws9_c00065{word-spacing:9.760788px;}
.ws10_c00065{word-spacing:10.082880px;}
.wsf_c00065{word-spacing:10.446984px;}
.ws13_c00065{word-spacing:12.617604px;}
.ws6_c00065{word-spacing:13.324806px;}
.wse_c00065{word-spacing:13.331808px;}
.ws7_c00065{word-spacing:13.338810px;}
.wsd_c00065{word-spacing:13.387824px;}
.ws8_c00065{word-spacing:13.688910px;}
.ws28_c00065{word-spacing:14.610753px;}
.ws27_c00065{word-spacing:14.815386px;}
.ws1f_c00065{word-spacing:15.117318px;}
.ws20_c00065{word-spacing:15.138324px;}
._4_c00065{margin-left:-15.117318px;}
._2_c00065{margin-left:-6.476850px;}
._7_c00065{margin-left:-2.712924px;}
._1_c00065{margin-left:-1.008288px;}
._0_c00065{width:1.225350px;}
._6_c00065{width:5.930694px;}
._3_c00065{width:9.410688px;}
._5_c00065{width:15.103314px;}
.fc0_c00065{color:rgb(0,0,0);}
.fs2_c00065{font-size:37.809600px;}
.fs1_c00065{font-size:46.562400px;}
.fs3_c00065{font-size:58.466400px;}
.fs0_c00065{font-size:70.020000px;}
.y0_c00065{bottom:0.000000px;}
.y2_c00065{bottom:109.740968px;}
.y1_c00065{bottom:129.810450px;}
.y23_c00065{bottom:149.430343px;}
.y22_c00065{bottom:171.660730px;}
.y21_c00065{bottom:193.260450px;}
.y20_c00065{bottom:207.480451px;}
.y1f_c00065{bottom:225.390171px;}
.y1e_c00065{bottom:243.299891px;}
.y1d_c00065{bottom:264.810450px;}
.y1c_c00065{bottom:279.030451px;}
.y1b_c00065{bottom:296.940171px;}
.y1a_c00065{bottom:314.760730px;}
.y19_c00065{bottom:336.360450px;}
.y18_c00065{bottom:351.120396px;}
.y17_c00065{bottom:424.830675px;}
.y16_c00065{bottom:455.070563px;}
.y15_c00065{bottom:485.310913px;}
.y14_c00065{bottom:515.461525px;}
.y13_c00065{bottom:545.701413px;}
.y12_c00065{bottom:596.191084px;}
.y11_c00065{bottom:626.430972px;}
.y10_c00065{bottom:656.670859px;}
.yf_c00065{bottom:686.821471px;}
.ye_c00065{bottom:737.402169px;}
.yd_c00065{bottom:767.731332px;}
.yc_c00065{bottom:818.221003px;}
.yb_c00065{bottom:848.460891px;}
.ya_c00065{bottom:878.700779px;}
.y9_c00065{bottom:929.190279px;}
.y8_c00065{bottom:959.519442px;}
.y7_c00065{bottom:989.670054px;}
.y6_c00065{bottom:1019.909942px;}
.y5_c00065{bottom:1050.060553px;}
.y4_c00065{bottom:1080.300441px;}
.y3_c00065{bottom:1110.451053px;}
.h7_c00065{height:39.338549px;}
.h8_c00065{height:54.098549px;}
.h2_c00065{height:62.600889px;}
.h1_c00065{height:62.771836px;}
.h6_c00065{height:62.772052px;}
.h3_c00065{height:73.669470px;}
.h4_c00065{height:73.780610px;}
.h5_c00065{height:73.782164px;}
.h0_c00065{height:1263.000000px;}
.w0_c00065{width:892.500000px;}
.x0_c00065{left:0.000000px;}
.x2_c00065{left:82.709645px;}
.x1_c00065{left:436.680000px;}
@media print{
.v2_c00065{vertical-align:-13.120000pt;}
.v0_c00065{vertical-align:0.000000pt;}
.v1_c00065{vertical-align:28.480608pt;}
.ls25_c00065{letter-spacing:-0.254654pt;}
.ls13_c00065{letter-spacing:-0.248960pt;}
.ls23_c00065{letter-spacing:-0.239063pt;}
.ls1c_c00065{letter-spacing:-0.202684pt;}
.ls16_c00065{letter-spacing:-0.161824pt;}
.lsf_c00065{letter-spacing:-0.074688pt;}
.ls19_c00065{letter-spacing:-0.067217pt;}
.ls21_c00065{letter-spacing:-0.057167pt;}
.ls8_c00065{letter-spacing:-0.056016pt;}
.lsc_c00065{letter-spacing:-0.049792pt;}
.ls1b_c00065{letter-spacing:-0.046773pt;}
.ls17_c00065{letter-spacing:-0.043568pt;}
.lse_c00065{letter-spacing:-0.037344pt;}
.ls1a_c00065{letter-spacing:-0.036379pt;}
.ls1d_c00065{letter-spacing:-0.031182pt;}
.lsb_c00065{letter-spacing:-0.031120pt;}
.ls10_c00065{letter-spacing:-0.024896pt;}
.lsa_c00065{letter-spacing:-0.018672pt;}
.ls26_c00065{letter-spacing:-0.015591pt;}
.ls11_c00065{letter-spacing:-0.012448pt;}
.lsd_c00065{letter-spacing:-0.006224pt;}
.ls9_c00065{letter-spacing:0.000000pt;}
.ls7_c00065{letter-spacing:0.005197pt;}
.ls2_c00065{letter-spacing:0.006224pt;}
.ls5_c00065{letter-spacing:0.010394pt;}
.ls1_c00065{letter-spacing:0.012448pt;}
.ls12_c00065{letter-spacing:0.020694pt;}
.ls1e_c00065{letter-spacing:0.062364pt;}
.ls18_c00065{letter-spacing:0.074688pt;}
.ls22_c00065{letter-spacing:0.083152pt;}
.ls3_c00065{letter-spacing:0.105808pt;}
.ls4_c00065{letter-spacing:0.145516pt;}
.ls24_c00065{letter-spacing:0.285836pt;}
.ls1f_c00065{letter-spacing:0.389776pt;}
.ls15_c00065{letter-spacing:0.435680pt;}
.ls20_c00065{letter-spacing:0.478125pt;}
.ls14_c00065{letter-spacing:0.560160pt;}
.ls6_c00065{letter-spacing:2.884273pt;}
.ls0_c00065{letter-spacing:11.495728pt;}
.ws3_c00065{word-spacing:-51.970133pt;}
.ws1_c00065{word-spacing:-17.377408pt;}
.ws0_c00065{word-spacing:-11.526781pt;}
.ws4_c00065{word-spacing:-9.309564pt;}
.ws2_c00065{word-spacing:-9.242347pt;}
.ws2e_c00065{word-spacing:-1.018615pt;}
.ws17_c00065{word-spacing:-0.130704pt;}
.ws2d_c00065{word-spacing:-0.051970pt;}
.ws16_c00065{word-spacing:-0.006224pt;}
.ws5_c00065{word-spacing:0.000000pt;}
.ws15_c00065{word-spacing:0.006224pt;}
.ws11_c00065{word-spacing:0.024896pt;}
.ws36_c00065{word-spacing:0.025985pt;}
.ws26_c00065{word-spacing:0.031120pt;}
.ws32_c00065{word-spacing:0.249457pt;}
.ws14_c00065{word-spacing:0.292528pt;}
.ws1e_c00065{word-spacing:0.329872pt;}
.ws29_c00065{word-spacing:0.696400pt;}
.ws33_c00065{word-spacing:0.888689pt;}
.ws2a_c00065{word-spacing:1.008221pt;}
.ws12_c00065{word-spacing:1.269696pt;}
.ws2f_c00065{word-spacing:1.455164pt;}
.ws31_c00065{word-spacing:1.964471pt;}
.wsb_c00065{word-spacing:2.234416pt;}
.ws30_c00065{word-spacing:2.239913pt;}
.wsc_c00065{word-spacing:2.265536pt;}
.ws35_c00065{word-spacing:2.603704pt;}
.ws34_c00065{word-spacing:2.884342pt;}
.ws2b_c00065{word-spacing:3.736653pt;}
.ws2c_c00065{word-spacing:3.882169pt;}
.ws25_c00065{word-spacing:4.804928pt;}
.ws23_c00065{word-spacing:5.103680pt;}
.ws22_c00065{word-spacing:5.141024pt;}
.ws24_c00065{word-spacing:5.147248pt;}
.ws18_c00065{word-spacing:5.732304pt;}
.ws19_c00065{word-spacing:5.738528pt;}
.ws1a_c00065{word-spacing:6.392048pt;}
.ws1b_c00065{word-spacing:6.410720pt;}
.ws21_c00065{word-spacing:7.020672pt;}
.ws1c_c00065{word-spacing:7.991616pt;}
.ws1d_c00065{word-spacing:8.028960pt;}
.wsa_c00065{word-spacing:8.632688pt;}
.ws9_c00065{word-spacing:8.676256pt;}
.ws10_c00065{word-spacing:8.962560pt;}
.wsf_c00065{word-spacing:9.286208pt;}
.ws13_c00065{word-spacing:11.215648pt;}
.ws6_c00065{word-spacing:11.844272pt;}
.wse_c00065{word-spacing:11.850496pt;}
.ws7_c00065{word-spacing:11.856720pt;}
.wsd_c00065{word-spacing:11.900288pt;}
.ws8_c00065{word-spacing:12.167920pt;}
.ws28_c00065{word-spacing:12.987336pt;}
.ws27_c00065{word-spacing:13.169232pt;}
.ws1f_c00065{word-spacing:13.437616pt;}
.ws20_c00065{word-spacing:13.456288pt;}
._4_c00065{margin-left:-13.437616pt;}
._2_c00065{margin-left:-5.757200pt;}
._7_c00065{margin-left:-2.411488pt;}
._1_c00065{margin-left:-0.896256pt;}
._0_c00065{width:1.089200pt;}
._6_c00065{width:5.271728pt;}
._3_c00065{width:8.365056pt;}
._5_c00065{width:13.425168pt;}
.fs2_c00065{font-size:33.608533pt;}
.fs1_c00065{font-size:41.388800pt;}
.fs3_c00065{font-size:51.970133pt;}
.fs0_c00065{font-size:62.240000pt;}
.y0_c00065{bottom:0.000000pt;}
.y2_c00065{bottom:97.547527pt;}
.y1_c00065{bottom:115.387067pt;}
.y23_c00065{bottom:132.826972pt;}
.y22_c00065{bottom:152.587316pt;}
.y21_c00065{bottom:171.787067pt;}
.y20_c00065{bottom:184.427068pt;}
.y1f_c00065{bottom:200.346819pt;}
.y1e_c00065{bottom:216.266570pt;}
.y1d_c00065{bottom:235.387067pt;}
.y1c_c00065{bottom:248.027068pt;}
.y1b_c00065{bottom:263.946819pt;}
.y1a_c00065{bottom:279.787316pt;}
.y19_c00065{bottom:298.987067pt;}
.y18_c00065{bottom:312.107019pt;}
.y17_c00065{bottom:377.627267pt;}
.y16_c00065{bottom:404.507167pt;}
.y15_c00065{bottom:431.387479pt;}
.y14_c00065{bottom:458.188023pt;}
.y13_c00065{bottom:485.067923pt;}
.y12_c00065{bottom:529.947631pt;}
.y11_c00065{bottom:556.827531pt;}
.y10_c00065{bottom:583.707431pt;}
.yf_c00065{bottom:610.507975pt;}
.ye_c00065{bottom:655.468595pt;}
.yd_c00065{bottom:682.427851pt;}
.yc_c00065{bottom:727.307559pt;}
.yb_c00065{bottom:754.187459pt;}
.ya_c00065{bottom:781.067359pt;}
.y9_c00065{bottom:825.946915pt;}
.y8_c00065{bottom:852.906171pt;}
.y7_c00065{bottom:879.706715pt;}
.y6_c00065{bottom:906.586615pt;}
.y5_c00065{bottom:933.387159pt;}
.y4_c00065{bottom:960.267059pt;}
.y3_c00065{bottom:987.067603pt;}
.h7_c00065{height:34.967599pt;}
.h8_c00065{height:48.087599pt;}
.h2_c00065{height:55.645234pt;}
.h1_c00065{height:55.797187pt;}
.h6_c00065{height:55.797380pt;}
.h3_c00065{height:65.483974pt;}
.h4_c00065{height:65.582764pt;}
.h5_c00065{height:65.584146pt;}
.h0_c00065{height:1122.666667pt;}
.w0_c00065{width:793.333333pt;}
.x0_c00065{left:0.000000pt;}
.x2_c00065{left:73.519684pt;}
.x1_c00065{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_06dd54e4ae52919ed3843f4f.woff2')format("woff");}.ff1_c00066{font-family:ff1_c00066;line-height:1.106934;font-style:normal;font-weight:normal;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_38f3f59d762422b792a7e5b0.woff2')format("woff");}.ff2_c00066{font-family:ff2_c00066;line-height:1.104492;font-style:normal;font-weight:normal;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_9bd4e250e589751d5d20827e.woff2')format("woff");}.ff3_c00066{font-family:ff3_c00066;line-height:1.133301;font-style:normal;font-weight:normal;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_53f7f03fc1b603b69073b023.woff2')format("woff");}.ff4_c00066{font-family:ff4_c00066;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00066{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00066{vertical-align:-14.760000px;}
.v0_c00066{vertical-align:0.000000px;}
.v1_c00066{vertical-align:32.398686px;}
.ls10_c00066{letter-spacing:-0.169553px;}
.ls16_c00066{letter-spacing:-0.111086px;}
.ls15_c00066{letter-spacing:-0.099393px;}
.ls17_c00066{letter-spacing:-0.093546px;}
.lse_c00066{letter-spacing:-0.075619px;}
.ls13_c00066{letter-spacing:-0.064313px;}
.ls5_c00066{letter-spacing:-0.063018px;}
.lsd_c00066{letter-spacing:-0.042012px;}
.ls14_c00066{letter-spacing:-0.035080px;}
.ls7_c00066{letter-spacing:-0.035010px;}
.lsa_c00066{letter-spacing:-0.028008px;}
.ls8_c00066{letter-spacing:-0.021006px;}
.ls9_c00066{letter-spacing:-0.014004px;}
.lsc_c00066{letter-spacing:-0.007002px;}
.ls6_c00066{letter-spacing:0.000000px;}
.lsf_c00066{letter-spacing:0.005847px;}
.ls2_c00066{letter-spacing:0.007002px;}
.ls0_c00066{letter-spacing:0.014004px;}
.lsb_c00066{letter-spacing:0.023281px;}
.ls3_c00066{letter-spacing:0.028008px;}
.ls1_c00066{letter-spacing:0.035010px;}
.ls11_c00066{letter-spacing:0.058466px;}
.ls12_c00066{letter-spacing:0.181246px;}
.ls4_c00066{letter-spacing:0.335610px;}
.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:-12.967628px;}
.ws1_c00066{word-spacing:-10.397640px;}
.ws1c_c00066{word-spacing:-0.021006px;}
.ws2_c00066{word-spacing:0.000000px;}
.ws1d_c00066{word-spacing:0.005847px;}
.ws8_c00066{word-spacing:0.021006px;}
.ws22_c00066{word-spacing:0.046773px;}
.ws21_c00066{word-spacing:0.076006px;}
.ws25_c00066{word-spacing:0.105240px;}
.ws23_c00066{word-spacing:0.111086px;}
.ws10_c00066{word-spacing:0.336096px;}
.ws4_c00066{word-spacing:1.449414px;}
.ws16_c00066{word-spacing:3.606030px;}
.ws7_c00066{word-spacing:3.613032px;}
.ws17_c00066{word-spacing:3.620034px;}
.wsa_c00066{word-spacing:4.684338px;}
.wsb_c00066{word-spacing:4.691340px;}
.ws12_c00066{word-spacing:5.370534px;}
.ws11_c00066{word-spacing:5.377536px;}
.ws13_c00066{word-spacing:5.391540px;}
.ws24_c00066{word-spacing:5.525075px;}
.ws1b_c00066{word-spacing:6.854958px;}
.ws1a_c00066{word-spacing:6.868962px;}
.ws20_c00066{word-spacing:7.390153px;}
.ws1f_c00066{word-spacing:7.512932px;}
.ws1e_c00066{word-spacing:7.740951px;}
.ws5_c00066{word-spacing:8.997570px;}
.ws6_c00066{word-spacing:9.333666px;}
.ws9_c00066{word-spacing:10.075878px;}
.wsf_c00066{word-spacing:14.396112px;}
.ws15_c00066{word-spacing:14.718204px;}
.wse_c00066{word-spacing:14.760216px;}
.ws18_c00066{word-spacing:15.831522px;}
.ws3_c00066{word-spacing:20.900970px;}
.wsd_c00066{word-spacing:22.700484px;}
.ws14_c00066{word-spacing:26.999712px;}
.ws19_c00066{word-spacing:27.713916px;}
.wsc_c00066{word-spacing:35.290080px;}
._4_c00066{margin-left:-5.278443px;}
._3_c00066{margin-left:-2.711448px;}
._0_c00066{margin-left:-1.176336px;}
._1_c00066{width:1.463418px;}
._2_c00066{width:5.930694px;}
.fc0_c00066{color:rgb(0,0,0);}
.fs2_c00066{font-size:37.809600px;}
.fs1_c00066{font-size:46.562400px;}
.fs3_c00066{font-size:58.466400px;}
.fs0_c00066{font-size:70.020000px;}
.y0_c00066{bottom:0.000000px;}
.y2_c00066{bottom:109.740968px;}
.y1_c00066{bottom:129.810450px;}
.y23_c00066{bottom:149.429548px;}
.y22_c00066{bottom:167.250107px;}
.y21_c00066{bottom:188.940450px;}
.y20_c00066{bottom:203.069548px;}
.y1f_c00066{bottom:221.069891px;}
.y1e_c00066{bottom:242.580450px;}
.y1d_c00066{bottom:256.710107px;}
.y1c_c00066{bottom:278.400450px;}
.y1b_c00066{bottom:293.071309px;}
.y1a_c00066{bottom:375.061228px;}
.y19_c00066{bottom:405.390392px;}
.y18_c00066{bottom:435.541004px;}
.y17_c00066{bottom:465.780891px;}
.y16_c00066{bottom:495.840477px;}
.y15_c00066{bottom:546.508452px;}
.y14_c00066{bottom:576.748340px;}
.y13_c00066{bottom:606.898952px;}
.y12_c00066{bottom:637.138839px;}
.y11_c00066{bottom:667.289451px;}
.y10_c00066{bottom:697.529338px;}
.yf_c00066{bottom:727.679951px;}
.ye_c00066{bottom:757.919838px;}
.yd_c00066{bottom:788.069892px;}
.yc_c00066{bottom:818.309779px;}
.yb_c00066{bottom:848.460392px;}
.ya_c00066{bottom:878.700279px;}
.y9_c00066{bottom:908.850891px;}
.y8_c00066{bottom:939.090779px;}
.y7_c00066{bottom:989.580779px;}
.y6_c00066{bottom:1019.909942px;}
.y5_c00066{bottom:1050.060553px;}
.y4_c00066{bottom:1080.300441px;}
.y3_c00066{bottom:1110.451053px;}
.h6_c00066{height:39.338549px;}
.h7_c00066{height:54.098549px;}
.h3_c00066{height:62.600889px;}
.h1_c00066{height:62.771836px;}
.h2_c00066{height:74.141150px;}
.h4_c00066{height:74.144696px;}
.h5_c00066{height:74.150456px;}
.h0_c00066{height:1263.000000px;}
.w0_c00066{width:892.500000px;}
.x0_c00066{left:0.000000px;}
.x2_c00066{left:82.709645px;}
.x4_c00066{left:88.561226px;}
.x3_c00066{left:100.260353px;}
.x1_c00066{left:436.680000px;}
@media print{
.v2_c00066{vertical-align:-13.120000pt;}
.v0_c00066{vertical-align:0.000000pt;}
.v1_c00066{vertical-align:28.798832pt;}
.ls10_c00066{letter-spacing:-0.150713pt;}
.ls16_c00066{letter-spacing:-0.098743pt;}
.ls15_c00066{letter-spacing:-0.088349pt;}
.ls17_c00066{letter-spacing:-0.083152pt;}
.lse_c00066{letter-spacing:-0.067217pt;}
.ls13_c00066{letter-spacing:-0.057167pt;}
.ls5_c00066{letter-spacing:-0.056016pt;}
.lsd_c00066{letter-spacing:-0.037344pt;}
.ls14_c00066{letter-spacing:-0.031182pt;}
.ls7_c00066{letter-spacing:-0.031120pt;}
.lsa_c00066{letter-spacing:-0.024896pt;}
.ls8_c00066{letter-spacing:-0.018672pt;}
.ls9_c00066{letter-spacing:-0.012448pt;}
.lsc_c00066{letter-spacing:-0.006224pt;}
.ls6_c00066{letter-spacing:0.000000pt;}
.lsf_c00066{letter-spacing:0.005197pt;}
.ls2_c00066{letter-spacing:0.006224pt;}
.ls0_c00066{letter-spacing:0.012448pt;}
.lsb_c00066{letter-spacing:0.020694pt;}
.ls3_c00066{letter-spacing:0.024896pt;}
.ls1_c00066{letter-spacing:0.031120pt;}
.ls11_c00066{letter-spacing:0.051970pt;}
.ls12_c00066{letter-spacing:0.161107pt;}
.ls4_c00066{letter-spacing:0.298320pt;}
.ws0_c00066{word-spacing:-11.526781pt;}
.ws1_c00066{word-spacing:-9.242347pt;}
.ws1c_c00066{word-spacing:-0.018672pt;}
.ws2_c00066{word-spacing:0.000000pt;}
.ws1d_c00066{word-spacing:0.005197pt;}
.ws8_c00066{word-spacing:0.018672pt;}
.ws22_c00066{word-spacing:0.041576pt;}
.ws21_c00066{word-spacing:0.067561pt;}
.ws25_c00066{word-spacing:0.093546pt;}
.ws23_c00066{word-spacing:0.098743pt;}
.ws10_c00066{word-spacing:0.298752pt;}
.ws4_c00066{word-spacing:1.288368pt;}
.ws16_c00066{word-spacing:3.205360pt;}
.ws7_c00066{word-spacing:3.211584pt;}
.ws17_c00066{word-spacing:3.217808pt;}
.wsa_c00066{word-spacing:4.163856pt;}
.wsb_c00066{word-spacing:4.170080pt;}
.ws12_c00066{word-spacing:4.773808pt;}
.ws11_c00066{word-spacing:4.780032pt;}
.ws13_c00066{word-spacing:4.792480pt;}
.ws24_c00066{word-spacing:4.911178pt;}
.ws1b_c00066{word-spacing:6.093296pt;}
.ws1a_c00066{word-spacing:6.105744pt;}
.ws20_c00066{word-spacing:6.569025pt;}
.ws1f_c00066{word-spacing:6.678162pt;}
.ws1e_c00066{word-spacing:6.880846pt;}
.ws5_c00066{word-spacing:7.997840pt;}
.ws6_c00066{word-spacing:8.296592pt;}
.ws9_c00066{word-spacing:8.956336pt;}
.wsf_c00066{word-spacing:12.796544pt;}
.ws15_c00066{word-spacing:13.082848pt;}
.wse_c00066{word-spacing:13.120192pt;}
.ws18_c00066{word-spacing:14.072464pt;}
.ws3_c00066{word-spacing:18.578640pt;}
.wsd_c00066{word-spacing:20.178208pt;}
.ws14_c00066{word-spacing:23.999744pt;}
.ws19_c00066{word-spacing:24.634592pt;}
.wsc_c00066{word-spacing:31.368960pt;}
._4_c00066{margin-left:-4.691949pt;}
._3_c00066{margin-left:-2.410176pt;}
._0_c00066{margin-left:-1.045632pt;}
._1_c00066{width:1.300816pt;}
._2_c00066{width:5.271728pt;}
.fs2_c00066{font-size:33.608533pt;}
.fs1_c00066{font-size:41.388800pt;}
.fs3_c00066{font-size:51.970133pt;}
.fs0_c00066{font-size:62.240000pt;}
.y0_c00066{bottom:0.000000pt;}
.y2_c00066{bottom:97.547527pt;}
.y1_c00066{bottom:115.387067pt;}
.y23_c00066{bottom:132.826265pt;}
.y22_c00066{bottom:148.666762pt;}
.y21_c00066{bottom:167.947067pt;}
.y20_c00066{bottom:180.506265pt;}
.y1f_c00066{bottom:196.506570pt;}
.y1e_c00066{bottom:215.627067pt;}
.y1d_c00066{bottom:228.186762pt;}
.y1c_c00066{bottom:247.467067pt;}
.y1b_c00066{bottom:260.507831pt;}
.y1a_c00066{bottom:333.387759pt;}
.y19_c00066{bottom:360.347015pt;}
.y18_c00066{bottom:387.147559pt;}
.y17_c00066{bottom:414.027459pt;}
.y16_c00066{bottom:440.747091pt;}
.y15_c00066{bottom:485.785291pt;}
.y14_c00066{bottom:512.665191pt;}
.y13_c00066{bottom:539.465735pt;}
.y12_c00066{bottom:566.345635pt;}
.y11_c00066{bottom:593.146179pt;}
.y10_c00066{bottom:620.026079pt;}
.yf_c00066{bottom:646.826623pt;}
.ye_c00066{bottom:673.706523pt;}
.yd_c00066{bottom:700.506571pt;}
.yc_c00066{bottom:727.386471pt;}
.yb_c00066{bottom:754.187015pt;}
.ya_c00066{bottom:781.066915pt;}
.y9_c00066{bottom:807.867459pt;}
.y8_c00066{bottom:834.747359pt;}
.y7_c00066{bottom:879.627359pt;}
.y6_c00066{bottom:906.586615pt;}
.y5_c00066{bottom:933.387159pt;}
.y4_c00066{bottom:960.267059pt;}
.y3_c00066{bottom:987.067603pt;}
.h6_c00066{height:34.967599pt;}
.h7_c00066{height:48.087599pt;}
.h3_c00066{height:55.645234pt;}
.h1_c00066{height:55.797187pt;}
.h2_c00066{height:65.903245pt;}
.h4_c00066{height:65.906397pt;}
.h5_c00066{height:65.911516pt;}
.h0_c00066{height:1122.666667pt;}
.w0_c00066{width:793.333333pt;}
.x0_c00066{left:0.000000pt;}
.x2_c00066{left:73.519684pt;}
.x4_c00066{left:78.721090pt;}
.x3_c00066{left:89.120314pt;}
.x1_c00066{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5831cd3ec1386c99b27b883d.woff2')format("woff");}.ff1_c00067{font-family:ff1_c00067;line-height:1.106934;font-style:normal;font-weight:normal;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_b3477bb10e81b528186d8646.woff2')format("woff");}.ff2_c00067{font-family:ff2_c00067;line-height:1.104492;font-style:normal;font-weight:normal;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_3ee7ea88a23dea075274bbda.woff2')format("woff");}.ff3_c00067{font-family:ff3_c00067;line-height:1.133301;font-style:normal;font-weight:normal;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_104e5159bb5fe4fd45d9661d.woff2')format("woff");}.ff4_c00067{font-family:ff4_c00067;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00067;src:url('chunks/assets/font_2f2d138ff74aef5136b3b86e.woff2')format("woff");}.ff5_c00067{font-family:ff5_c00067;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00067;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff6_c00067{font-family:ff6_c00067;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00067{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00067{vertical-align:-14.760000px;}
.v0_c00067{vertical-align:0.000000px;}
.v1_c00067{vertical-align:32.398686px;}
.ls14_c00067{letter-spacing:-0.707443px;}
.ls10_c00067{letter-spacing:-0.169553px;}
.ls11_c00067{letter-spacing:-0.152013px;}
.ls15_c00067{letter-spacing:-0.105240px;}
.lsd_c00067{letter-spacing:-0.075619px;}
.ls3_c00067{letter-spacing:-0.063018px;}
.lsc_c00067{letter-spacing:-0.049014px;}
.lsf_c00067{letter-spacing:-0.046773px;}
.ls6_c00067{letter-spacing:-0.042012px;}
.ls8_c00067{letter-spacing:-0.035010px;}
.ls7_c00067{letter-spacing:-0.028008px;}
.lsa_c00067{letter-spacing:-0.021006px;}
.ls17_c00067{letter-spacing:-0.017540px;}
.ls5_c00067{letter-spacing:-0.014004px;}
.lsb_c00067{letter-spacing:-0.007002px;}
.lse_c00067{letter-spacing:-0.005847px;}
.ls4_c00067{letter-spacing:0.000000px;}
.ls0_c00067{letter-spacing:0.007002px;}
.ls1_c00067{letter-spacing:0.014004px;}
.ls9_c00067{letter-spacing:0.023281px;}
.ls13_c00067{letter-spacing:0.111086px;}
.ls16_c00067{letter-spacing:0.204632px;}
.ls2_c00067{letter-spacing:0.362492px;}
.ls12_c00067{letter-spacing:0.385878px;}
.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;}
}
.ws2_c00067{word-spacing:-58.466400px;}
.ws0_c00067{word-spacing:-12.967628px;}
.ws1_c00067{word-spacing:-10.397640px;}
.ws28_c00067{word-spacing:-0.374185px;}
.ws30_c00067{word-spacing:-0.344952px;}
.ws3_c00067{word-spacing:0.000000px;}
.ws15_c00067{word-spacing:0.007002px;}
.ws1a_c00067{word-spacing:0.014004px;}
.ws18_c00067{word-spacing:0.021006px;}
.ws2f_c00067{word-spacing:0.029233px;}
.ws11_c00067{word-spacing:0.049014px;}
.ws2d_c00067{word-spacing:0.058466px;}
.ws2c_c00067{word-spacing:0.116933px;}
.ws2e_c00067{word-spacing:0.169553px;}
.wsf_c00067{word-spacing:0.350100px;}
.wse_c00067{word-spacing:0.364104px;}
.ws12_c00067{word-spacing:0.371106px;}
.wsa_c00067{word-spacing:0.378108px;}
.ws1e_c00067{word-spacing:0.742212px;}
.ws22_c00067{word-spacing:1.449414px;}
.ws23_c00067{word-spacing:1.463418px;}
.wsb_c00067{word-spacing:1.806516px;}
.ws5_c00067{word-spacing:2.128608px;}
.ws4_c00067{word-spacing:2.499714px;}
.ws1f_c00067{word-spacing:3.220920px;}
.ws17_c00067{word-spacing:3.571020px;}
.ws16_c00067{word-spacing:3.627036px;}
.ws6_c00067{word-spacing:4.320234px;}
.ws8_c00067{word-spacing:5.412546px;}
.ws7_c00067{word-spacing:5.426550px;}
.ws19_c00067{word-spacing:7.205058px;}
.ws1c_c00067{word-spacing:7.562160px;}
.ws1b_c00067{word-spacing:7.576164px;}
.ws10_c00067{word-spacing:8.276364px;}
.ws24_c00067{word-spacing:9.021366px;}
.ws25_c00067{word-spacing:9.062292px;}
.ws27_c00067{word-spacing:9.167532px;}
.ws26_c00067{word-spacing:9.185071px;}
.ws21_c00067{word-spacing:9.375678px;}
.ws20_c00067{word-spacing:9.704772px;}
.ws29_c00067{word-spacing:10.342706px;}
.ws2a_c00067{word-spacing:10.605805px;}
.ws2b_c00067{word-spacing:11.161236px;}
.ws13_c00067{word-spacing:12.631608px;}
.ws14_c00067{word-spacing:12.960702px;}
.wsd_c00067{word-spacing:15.117318px;}
.wsc_c00067{word-spacing:15.131322px;}
.ws9_c00067{word-spacing:17.652042px;}
.ws1d_c00067{word-spacing:18.394254px;}
._3_c00067{margin-left:-2.709810px;}
._0_c00067{margin-left:-1.302372px;}
._1_c00067{width:1.043298px;}
._2_c00067{width:5.930694px;}
.fc0_c00067{color:rgb(0,0,0);}
.fs2_c00067{font-size:37.809600px;}
.fs1_c00067{font-size:46.562400px;}
.fs3_c00067{font-size:58.466400px;}
.fs0_c00067{font-size:70.020000px;}
.y0_c00067{bottom:0.000000px;}
.y2_c00067{bottom:109.740968px;}
.y1_c00067{bottom:129.810450px;}
.y1f_c00067{bottom:149.429891px;}
.y1e_c00067{bottom:170.940450px;}
.y1d_c00067{bottom:185.249891px;}
.y1c_c00067{bottom:206.760450px;}
.y1b_c00067{bottom:221.430888px;}
.y1a_c00067{bottom:313.860789px;}
.y19_c00067{bottom:344.100677px;}
.y18_c00067{bottom:374.251289px;}
.y17_c00067{bottom:404.491176px;}
.y16_c00067{bottom:434.641788px;}
.y15_c00067{bottom:464.881676px;}
.y14_c00067{bottom:515.371347px;}
.y13_c00067{bottom:545.700510px;}
.y12_c00067{bottom:575.851122px;}
.y11_c00067{bottom:606.091010px;}
.y10_c00067{bottom:656.580681px;}
.yf_c00067{bottom:686.820569px;}
.ye_c00067{bottom:717.060456px;}
.yd_c00067{bottom:767.641153px;}
.yc_c00067{bottom:797.881041px;}
.yb_c00067{bottom:828.120929px;}
.ya_c00067{bottom:878.611004px;}
.y9_c00067{bottom:908.850891px;}
.y8_c00067{bottom:939.090779px;}
.y7_c00067{bottom:989.580779px;}
.y6_c00067{bottom:1019.909942px;}
.y5_c00067{bottom:1050.060553px;}
.y4_c00067{bottom:1080.300441px;}
.y3_c00067{bottom:1110.451053px;}
.h5_c00067{height:39.338549px;}
.h6_c00067{height:54.098549px;}
.h2_c00067{height:62.600889px;}
.h1_c00067{height:62.771836px;}
.h4_c00067{height:73.780250px;}
.h3_c00067{height:74.027472px;}
.h0_c00067{height:1263.000000px;}
.w0_c00067{width:892.500000px;}
.x0_c00067{left:0.000000px;}
.x2_c00067{left:82.709645px;}
.x1_c00067{left:436.680000px;}
@media print{
.v2_c00067{vertical-align:-13.120000pt;}
.v0_c00067{vertical-align:0.000000pt;}
.v1_c00067{vertical-align:28.798832pt;}
.ls14_c00067{letter-spacing:-0.628839pt;}
.ls10_c00067{letter-spacing:-0.150713pt;}
.ls11_c00067{letter-spacing:-0.135122pt;}
.ls15_c00067{letter-spacing:-0.093546pt;}
.lsd_c00067{letter-spacing:-0.067217pt;}
.ls3_c00067{letter-spacing:-0.056016pt;}
.lsc_c00067{letter-spacing:-0.043568pt;}
.lsf_c00067{letter-spacing:-0.041576pt;}
.ls6_c00067{letter-spacing:-0.037344pt;}
.ls8_c00067{letter-spacing:-0.031120pt;}
.ls7_c00067{letter-spacing:-0.024896pt;}
.lsa_c00067{letter-spacing:-0.018672pt;}
.ls17_c00067{letter-spacing:-0.015591pt;}
.ls5_c00067{letter-spacing:-0.012448pt;}
.lsb_c00067{letter-spacing:-0.006224pt;}
.lse_c00067{letter-spacing:-0.005197pt;}
.ls4_c00067{letter-spacing:0.000000pt;}
.ls0_c00067{letter-spacing:0.006224pt;}
.ls1_c00067{letter-spacing:0.012448pt;}
.ls9_c00067{letter-spacing:0.020694pt;}
.ls13_c00067{letter-spacing:0.098743pt;}
.ls16_c00067{letter-spacing:0.181895pt;}
.ls2_c00067{letter-spacing:0.322215pt;}
.ls12_c00067{letter-spacing:0.343003pt;}
.ws2_c00067{word-spacing:-51.970133pt;}
.ws0_c00067{word-spacing:-11.526781pt;}
.ws1_c00067{word-spacing:-9.242347pt;}
.ws28_c00067{word-spacing:-0.332609pt;}
.ws30_c00067{word-spacing:-0.306624pt;}
.ws3_c00067{word-spacing:0.000000pt;}
.ws15_c00067{word-spacing:0.006224pt;}
.ws1a_c00067{word-spacing:0.012448pt;}
.ws18_c00067{word-spacing:0.018672pt;}
.ws2f_c00067{word-spacing:0.025985pt;}
.ws11_c00067{word-spacing:0.043568pt;}
.ws2d_c00067{word-spacing:0.051970pt;}
.ws2c_c00067{word-spacing:0.103940pt;}
.ws2e_c00067{word-spacing:0.150713pt;}
.wsf_c00067{word-spacing:0.311200pt;}
.wse_c00067{word-spacing:0.323648pt;}
.ws12_c00067{word-spacing:0.329872pt;}
.wsa_c00067{word-spacing:0.336096pt;}
.ws1e_c00067{word-spacing:0.659744pt;}
.ws22_c00067{word-spacing:1.288368pt;}
.ws23_c00067{word-spacing:1.300816pt;}
.wsb_c00067{word-spacing:1.605792pt;}
.ws5_c00067{word-spacing:1.892096pt;}
.ws4_c00067{word-spacing:2.221968pt;}
.ws1f_c00067{word-spacing:2.863040pt;}
.ws17_c00067{word-spacing:3.174240pt;}
.ws16_c00067{word-spacing:3.224032pt;}
.ws6_c00067{word-spacing:3.840208pt;}
.ws8_c00067{word-spacing:4.811152pt;}
.ws7_c00067{word-spacing:4.823600pt;}
.ws19_c00067{word-spacing:6.404496pt;}
.ws1c_c00067{word-spacing:6.721920pt;}
.ws1b_c00067{word-spacing:6.734368pt;}
.ws10_c00067{word-spacing:7.356768pt;}
.ws24_c00067{word-spacing:8.018992pt;}
.ws25_c00067{word-spacing:8.055371pt;}
.ws27_c00067{word-spacing:8.148917pt;}
.ws26_c00067{word-spacing:8.164508pt;}
.ws21_c00067{word-spacing:8.333936pt;}
.ws20_c00067{word-spacing:8.626464pt;}
.ws29_c00067{word-spacing:9.193517pt;}
.ws2a_c00067{word-spacing:9.427382pt;}
.ws2b_c00067{word-spacing:9.921098pt;}
.ws13_c00067{word-spacing:11.228096pt;}
.ws14_c00067{word-spacing:11.520624pt;}
.wsd_c00067{word-spacing:13.437616pt;}
.wsc_c00067{word-spacing:13.450064pt;}
.ws9_c00067{word-spacing:15.690704pt;}
.ws1d_c00067{word-spacing:16.350448pt;}
._3_c00067{margin-left:-2.408720pt;}
._0_c00067{margin-left:-1.157664pt;}
._1_c00067{width:0.927376pt;}
._2_c00067{width:5.271728pt;}
.fs2_c00067{font-size:33.608533pt;}
.fs1_c00067{font-size:41.388800pt;}
.fs3_c00067{font-size:51.970133pt;}
.fs0_c00067{font-size:62.240000pt;}
.y0_c00067{bottom:0.000000pt;}
.y2_c00067{bottom:97.547527pt;}
.y1_c00067{bottom:115.387067pt;}
.y1f_c00067{bottom:132.826570pt;}
.y1e_c00067{bottom:151.947067pt;}
.y1d_c00067{bottom:164.666570pt;}
.y1c_c00067{bottom:183.787067pt;}
.y1b_c00067{bottom:196.827456pt;}
.y1a_c00067{bottom:278.987368pt;}
.y19_c00067{bottom:305.867268pt;}
.y18_c00067{bottom:332.667812pt;}
.y17_c00067{bottom:359.547712pt;}
.y16_c00067{bottom:386.348256pt;}
.y15_c00067{bottom:413.228156pt;}
.y14_c00067{bottom:458.107864pt;}
.y13_c00067{bottom:485.067120pt;}
.y12_c00067{bottom:511.867664pt;}
.y11_c00067{bottom:538.747564pt;}
.y10_c00067{bottom:583.627272pt;}
.yf_c00067{bottom:610.507172pt;}
.ye_c00067{bottom:637.387072pt;}
.yd_c00067{bottom:682.347692pt;}
.yc_c00067{bottom:709.227592pt;}
.yb_c00067{bottom:736.107492pt;}
.ya_c00067{bottom:780.987559pt;}
.y9_c00067{bottom:807.867459pt;}
.y8_c00067{bottom:834.747359pt;}
.y7_c00067{bottom:879.627359pt;}
.y6_c00067{bottom:906.586615pt;}
.y5_c00067{bottom:933.387159pt;}
.y4_c00067{bottom:960.267059pt;}
.y3_c00067{bottom:987.067603pt;}
.h5_c00067{height:34.967599pt;}
.h6_c00067{height:48.087599pt;}
.h2_c00067{height:55.645234pt;}
.h1_c00067{height:55.797187pt;}
.h4_c00067{height:65.582444pt;}
.h3_c00067{height:65.802198pt;}
.h0_c00067{height:1122.666667pt;}
.w0_c00067{width:793.333333pt;}
.x0_c00067{left:0.000000pt;}
.x2_c00067{left:73.519684pt;}
.x1_c00067{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6c8e2cb9aa47b85ce194c9c5.woff2')format("woff");}.ff1_c00068{font-family:ff1_c00068;line-height:1.106934;font-style:normal;font-weight:normal;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_9160f5df5c7c4db9b70c3abc.woff2')format("woff");}.ff2_c00068{font-family:ff2_c00068;line-height:1.104492;font-style:normal;font-weight:normal;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_e5681c563f4e1e83ca24a93c.woff2')format("woff");}.ff3_c00068{font-family:ff3_c00068;line-height:1.133301;font-style:normal;font-weight:normal;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_0819f1f8970395ecff14b1be.woff2')format("woff");}.ff4_c00068{font-family:ff4_c00068;line-height:1.133301;font-style:normal;font-weight:normal;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_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff5_c00068{font-family:ff5_c00068;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00068{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00068{vertical-align:-14.760000px;}
.v0_c00068{vertical-align:0.000000px;}
.v1_c00068{vertical-align:32.037138px;}
.ls12_c00068{letter-spacing:-6.074659px;}
.ls14_c00068{letter-spacing:-0.152013px;}
.ls13_c00068{letter-spacing:-0.140319px;}
.ls16_c00068{letter-spacing:-0.134473px;}
.lsf_c00068{letter-spacing:-0.075619px;}
.ls5_c00068{letter-spacing:-0.063018px;}
.ls8_c00068{letter-spacing:-0.056016px;}
.lse_c00068{letter-spacing:-0.049014px;}
.ls18_c00068{letter-spacing:-0.035080px;}
.lsd_c00068{letter-spacing:-0.035010px;}
.lsb_c00068{letter-spacing:-0.028008px;}
.ls7_c00068{letter-spacing:-0.021006px;}
.ls17_c00068{letter-spacing:-0.017540px;}
.lsc_c00068{letter-spacing:-0.014004px;}
.ls10_c00068{letter-spacing:-0.011693px;}
.lsa_c00068{letter-spacing:-0.007002px;}
.ls15_c00068{letter-spacing:-0.005847px;}
.ls6_c00068{letter-spacing:0.000000px;}
.ls2_c00068{letter-spacing:0.007002px;}
.ls3_c00068{letter-spacing:0.011693px;}
.ls9_c00068{letter-spacing:0.023281px;}
.ls1_c00068{letter-spacing:0.028008px;}
.ls4_c00068{letter-spacing:0.029233px;}
.ls0_c00068{letter-spacing:0.035010px;}
.ls11_c00068{letter-spacing:0.070160px;}
.sc__c00068{text-shadow:none;}
.sc0_c00068{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00068{-webkit-text-stroke:0px transparent;}
.sc0_c00068{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00068{word-spacing:-58.466400px;}
.ws0_c00068{word-spacing:-12.967628px;}
.ws1_c00068{word-spacing:-10.397640px;}
.ws2c_c00068{word-spacing:-0.327412px;}
.ws24_c00068{word-spacing:-0.029233px;}
.ws13_c00068{word-spacing:-0.021006px;}
.ws10_c00068{word-spacing:-0.014004px;}
.ws3_c00068{word-spacing:0.000000px;}
.ws15_c00068{word-spacing:0.007002px;}
.ws19_c00068{word-spacing:0.014004px;}
.ws28_c00068{word-spacing:0.017540px;}
.ws16_c00068{word-spacing:0.021006px;}
.ws1f_c00068{word-spacing:0.035010px;}
.ws2d_c00068{word-spacing:0.046773px;}
.ws21_c00068{word-spacing:0.336096px;}
.wsf_c00068{word-spacing:0.350100px;}
.ws20_c00068{word-spacing:0.378108px;}
.ws6_c00068{word-spacing:0.399114px;}
.ws12_c00068{word-spacing:1.064304px;}
.ws11_c00068{word-spacing:1.078308px;}
.ws27_c00068{word-spacing:1.081628px;}
.ws25_c00068{word-spacing:1.233641px;}
.ws26_c00068{word-spacing:1.245334px;}
.ws1e_c00068{word-spacing:1.428408px;}
.ws1d_c00068{word-spacing:1.442412px;}
.ws1a_c00068{word-spacing:1.834524px;}
.wsc_c00068{word-spacing:2.114604px;}
.wsa_c00068{word-spacing:2.149614px;}
.wsb_c00068{word-spacing:2.534724px;}
.ws17_c00068{word-spacing:4.670334px;}
.ws18_c00068{word-spacing:4.684338px;}
.ws7_c00068{word-spacing:6.126750px;}
.ws8_c00068{word-spacing:6.133752px;}
.ws14_c00068{word-spacing:6.455844px;}
.ws9_c00068{word-spacing:8.297370px;}
.ws29_c00068{word-spacing:12.389030px;}
.ws5_c00068{word-spacing:12.554586px;}
.ws2b_c00068{word-spacing:12.581969px;}
.ws4_c00068{word-spacing:12.610602px;}
.ws2a_c00068{word-spacing:12.745675px;}
.ws23_c00068{word-spacing:17.943338px;}
.ws22_c00068{word-spacing:18.025191px;}
.wse_c00068{word-spacing:23.400684px;}
.wsd_c00068{word-spacing:23.757786px;}
.ws1c_c00068{word-spacing:29.870532px;}
.ws1b_c00068{word-spacing:29.898540px;}
._6_c00068{margin-left:-23.944930px;}
._2_c00068{margin-left:-6.476850px;}
._5_c00068{margin-left:-5.265289px;}
._4_c00068{margin-left:-2.712060px;}
._1_c00068{margin-left:-1.148328px;}
._0_c00068{width:1.092312px;}
._3_c00068{width:5.930694px;}
.fc0_c00068{color:rgb(0,0,0);}
.fs2_c00068{font-size:37.809600px;}
.fs1_c00068{font-size:46.562400px;}
.fs3_c00068{font-size:58.466400px;}
.fs0_c00068{font-size:70.020000px;}
.y0_c00068{bottom:0.000000px;}
.y2_c00068{bottom:109.740968px;}
.y1_c00068{bottom:129.810450px;}
.y1f_c00068{bottom:149.429891px;}
.y1e_c00068{bottom:170.940450px;}
.y1d_c00068{bottom:185.249891px;}
.y1c_c00068{bottom:206.760450px;}
.y1b_c00068{bottom:221.069891px;}
.y1a_c00068{bottom:242.580450px;}
.y19_c00068{bottom:257.249388px;}
.y18_c00068{bottom:312.959050px;}
.y17_c00068{bottom:363.539748px;}
.y16_c00068{bottom:414.209721px;}
.y15_c00068{bottom:464.790418px;}
.y14_c00068{bottom:495.030306px;}
.y13_c00068{bottom:545.611003px;}
.y12_c00068{bottom:575.850891px;}
.y11_c00068{bottom:606.090778px;}
.y10_c00068{bottom:656.580681px;}
.yf_c00068{bottom:686.820569px;}
.ye_c00068{bottom:717.060456px;}
.yd_c00068{bottom:747.211068px;}
.yc_c00068{bottom:797.791765px;}
.yb_c00068{bottom:828.120929px;}
.ya_c00068{bottom:878.608866px;}
.y9_c00068{bottom:908.848754px;}
.y8_c00068{bottom:939.088641px;}
.y7_c00068{bottom:969.239253px;}
.y6_c00068{bottom:999.479141px;}
.y5_c00068{bottom:1029.629752px;}
.y4_c00068{bottom:1080.211166px;}
.y3_c00068{bottom:1110.451053px;}
.h7_c00068{height:39.338549px;}
.h8_c00068{height:54.098549px;}
.h3_c00068{height:62.600889px;}
.h1_c00068{height:62.771836px;}
.h6_c00068{height:62.776084px;}
.h5_c00068{height:73.667862px;}
.h4_c00068{height:73.675122px;}
.h2_c00068{height:73.779602px;}
.h0_c00068{height:1263.000000px;}
.w0_c00068{width:892.500000px;}
.x0_c00068{left:0.000000px;}
.x2_c00068{left:82.709645px;}
.x1_c00068{left:436.680000px;}
@media print{
.v2_c00068{vertical-align:-13.120000pt;}
.v0_c00068{vertical-align:0.000000pt;}
.v1_c00068{vertical-align:28.477456pt;}
.ls12_c00068{letter-spacing:-5.399697pt;}
.ls14_c00068{letter-spacing:-0.135122pt;}
.ls13_c00068{letter-spacing:-0.124728pt;}
.ls16_c00068{letter-spacing:-0.119531pt;}
.lsf_c00068{letter-spacing:-0.067217pt;}
.ls5_c00068{letter-spacing:-0.056016pt;}
.ls8_c00068{letter-spacing:-0.049792pt;}
.lse_c00068{letter-spacing:-0.043568pt;}
.ls18_c00068{letter-spacing:-0.031182pt;}
.lsd_c00068{letter-spacing:-0.031120pt;}
.lsb_c00068{letter-spacing:-0.024896pt;}
.ls7_c00068{letter-spacing:-0.018672pt;}
.ls17_c00068{letter-spacing:-0.015591pt;}
.lsc_c00068{letter-spacing:-0.012448pt;}
.ls10_c00068{letter-spacing:-0.010394pt;}
.lsa_c00068{letter-spacing:-0.006224pt;}
.ls15_c00068{letter-spacing:-0.005197pt;}
.ls6_c00068{letter-spacing:0.000000pt;}
.ls2_c00068{letter-spacing:0.006224pt;}
.ls3_c00068{letter-spacing:0.010394pt;}
.ls9_c00068{letter-spacing:0.020694pt;}
.ls1_c00068{letter-spacing:0.024896pt;}
.ls4_c00068{letter-spacing:0.025985pt;}
.ls0_c00068{letter-spacing:0.031120pt;}
.ls11_c00068{letter-spacing:0.062364pt;}
.ws2_c00068{word-spacing:-51.970133pt;}
.ws0_c00068{word-spacing:-11.526781pt;}
.ws1_c00068{word-spacing:-9.242347pt;}
.ws2c_c00068{word-spacing:-0.291033pt;}
.ws24_c00068{word-spacing:-0.025985pt;}
.ws13_c00068{word-spacing:-0.018672pt;}
.ws10_c00068{word-spacing:-0.012448pt;}
.ws3_c00068{word-spacing:0.000000pt;}
.ws15_c00068{word-spacing:0.006224pt;}
.ws19_c00068{word-spacing:0.012448pt;}
.ws28_c00068{word-spacing:0.015591pt;}
.ws16_c00068{word-spacing:0.018672pt;}
.ws1f_c00068{word-spacing:0.031120pt;}
.ws2d_c00068{word-spacing:0.041576pt;}
.ws21_c00068{word-spacing:0.298752pt;}
.wsf_c00068{word-spacing:0.311200pt;}
.ws20_c00068{word-spacing:0.336096pt;}
.ws6_c00068{word-spacing:0.354768pt;}
.ws12_c00068{word-spacing:0.946048pt;}
.ws11_c00068{word-spacing:0.958496pt;}
.ws27_c00068{word-spacing:0.961447pt;}
.ws25_c00068{word-spacing:1.096570pt;}
.ws26_c00068{word-spacing:1.106964pt;}
.ws1e_c00068{word-spacing:1.269696pt;}
.ws1d_c00068{word-spacing:1.282144pt;}
.ws1a_c00068{word-spacing:1.630688pt;}
.wsc_c00068{word-spacing:1.879648pt;}
.wsa_c00068{word-spacing:1.910768pt;}
.wsb_c00068{word-spacing:2.253088pt;}
.ws17_c00068{word-spacing:4.151408pt;}
.ws18_c00068{word-spacing:4.163856pt;}
.ws7_c00068{word-spacing:5.446000pt;}
.ws8_c00068{word-spacing:5.452224pt;}
.ws14_c00068{word-spacing:5.738528pt;}
.ws9_c00068{word-spacing:7.375440pt;}
.ws29_c00068{word-spacing:11.012471pt;}
.ws5_c00068{word-spacing:11.159632pt;}
.ws2b_c00068{word-spacing:11.183973pt;}
.ws4_c00068{word-spacing:11.209424pt;}
.ws2a_c00068{word-spacing:11.329489pt;}
.ws23_c00068{word-spacing:15.949634pt;}
.ws22_c00068{word-spacing:16.022392pt;}
.wse_c00068{word-spacing:20.800608pt;}
.wsd_c00068{word-spacing:21.118032pt;}
.ws1c_c00068{word-spacing:26.551584pt;}
.ws1b_c00068{word-spacing:26.576480pt;}
._6_c00068{margin-left:-21.284382pt;}
._2_c00068{margin-left:-5.757200pt;}
._5_c00068{margin-left:-4.680257pt;}
._4_c00068{margin-left:-2.410720pt;}
._1_c00068{margin-left:-1.020736pt;}
._0_c00068{width:0.970944pt;}
._3_c00068{width:5.271728pt;}
.fs2_c00068{font-size:33.608533pt;}
.fs1_c00068{font-size:41.388800pt;}
.fs3_c00068{font-size:51.970133pt;}
.fs0_c00068{font-size:62.240000pt;}
.y0_c00068{bottom:0.000000pt;}
.y2_c00068{bottom:97.547527pt;}
.y1_c00068{bottom:115.387067pt;}
.y1f_c00068{bottom:132.826570pt;}
.y1e_c00068{bottom:151.947067pt;}
.y1d_c00068{bottom:164.666570pt;}
.y1c_c00068{bottom:183.787067pt;}
.y1b_c00068{bottom:196.506570pt;}
.y1a_c00068{bottom:215.627067pt;}
.y19_c00068{bottom:228.666123pt;}
.y18_c00068{bottom:278.185823pt;}
.y17_c00068{bottom:323.146443pt;}
.y16_c00068{bottom:368.186419pt;}
.y15_c00068{bottom:413.147039pt;}
.y14_c00068{bottom:440.026939pt;}
.y13_c00068{bottom:484.987559pt;}
.y12_c00068{bottom:511.867459pt;}
.y11_c00068{bottom:538.747359pt;}
.y10_c00068{bottom:583.627272pt;}
.yf_c00068{bottom:610.507172pt;}
.ye_c00068{bottom:637.387072pt;}
.yd_c00068{bottom:664.187616pt;}
.yc_c00068{bottom:709.148236pt;}
.yb_c00068{bottom:736.107492pt;}
.ya_c00068{bottom:780.985659pt;}
.y9_c00068{bottom:807.865559pt;}
.y8_c00068{bottom:834.745459pt;}
.y7_c00068{bottom:861.546003pt;}
.y6_c00068{bottom:888.425903pt;}
.y5_c00068{bottom:915.226447pt;}
.y4_c00068{bottom:960.187703pt;}
.y3_c00068{bottom:987.067603pt;}
.h7_c00068{height:34.967599pt;}
.h8_c00068{height:48.087599pt;}
.h3_c00068{height:55.645234pt;}
.h1_c00068{height:55.797187pt;}
.h6_c00068{height:55.800964pt;}
.h5_c00068{height:65.482544pt;}
.h4_c00068{height:65.488998pt;}
.h2_c00068{height:65.581868pt;}
.h0_c00068{height:1122.666667pt;}
.w0_c00068{width:793.333333pt;}
.x0_c00068{left:0.000000pt;}
.x2_c00068{left:73.519684pt;}
.x1_c00068{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_20d4f9a2bf719f59a93b8d39.woff2')format("woff");}.ff1_c00069{font-family:ff1_c00069;line-height:1.106934;font-style:normal;font-weight:normal;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_2f879d3c85529f96b81bdb3c.woff2')format("woff");}.ff2_c00069{font-family:ff2_c00069;line-height:1.133301;font-style:normal;font-weight:normal;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_8963be9ceb68afa5e50b684d.woff2')format("woff");}.ff3_c00069{font-family:ff3_c00069;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00069{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00069{vertical-align:-14.400000px;}
.v0_c00069{vertical-align:0.000000px;}
.v1_c00069{vertical-align:32.043960px;}
.ls10_c00069{letter-spacing:-0.140319px;}
.ls17_c00069{letter-spacing:-0.087700px;}
.ls15_c00069{letter-spacing:-0.081853px;}
.lsf_c00069{letter-spacing:-0.075619px;}
.ls5_c00069{letter-spacing:-0.063018px;}
.ls18_c00069{letter-spacing:-0.058466px;}
.lsc_c00069{letter-spacing:-0.049014px;}
.lsb_c00069{letter-spacing:-0.042012px;}
.ls11_c00069{letter-spacing:-0.040926px;}
.ls8_c00069{letter-spacing:-0.035010px;}
.ls13_c00069{letter-spacing:-0.029233px;}
.lsa_c00069{letter-spacing:-0.028008px;}
.lse_c00069{letter-spacing:-0.021006px;}
.ls9_c00069{letter-spacing:-0.014004px;}
.ls7_c00069{letter-spacing:-0.007002px;}
.ls6_c00069{letter-spacing:0.000000px;}
.ls4_c00069{letter-spacing:0.007002px;}
.ls2_c00069{letter-spacing:0.014004px;}
.ls0_c00069{letter-spacing:0.021006px;}
.lsd_c00069{letter-spacing:0.023281px;}
.ls1_c00069{letter-spacing:0.028008px;}
.ls3_c00069{letter-spacing:0.042012px;}
.ls12_c00069{letter-spacing:0.216326px;}
.ls16_c00069{letter-spacing:0.309872px;}
.ls14_c00069{letter-spacing:0.374185px;}
.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:-19.416546px;}
.ws1_c00069{word-spacing:-12.967628px;}
.ws2_c00069{word-spacing:-10.397640px;}
.ws24_c00069{word-spacing:-0.286485px;}
.ws6_c00069{word-spacing:-0.014004px;}
.ws4_c00069{word-spacing:-0.007002px;}
.ws3_c00069{word-spacing:0.000000px;}
.ws5_c00069{word-spacing:0.021006px;}
.ws23_c00069{word-spacing:0.099393px;}
.ws1a_c00069{word-spacing:0.364104px;}
.ws7_c00069{word-spacing:0.378108px;}
.ws17_c00069{word-spacing:0.714204px;}
.ws12_c00069{word-spacing:0.721206px;}
.ws18_c00069{word-spacing:1.386396px;}
.ws19_c00069{word-spacing:1.778508px;}
.wsb_c00069{word-spacing:2.156616px;}
.wsa_c00069{word-spacing:2.177622px;}
.ws10_c00069{word-spacing:3.613032px;}
.wsd_c00069{word-spacing:7.520148px;}
.wse_c00069{word-spacing:7.555158px;}
.ws1c_c00069{word-spacing:7.974817px;}
.ws1b_c00069{word-spacing:8.074210px;}
.ws1f_c00069{word-spacing:10.483026px;}
.ws11_c00069{word-spacing:10.811088px;}
.wsc_c00069{word-spacing:12.596598px;}
.ws13_c00069{word-spacing:14.011002px;}
.ws14_c00069{word-spacing:14.032008px;}
.ws8_c00069{word-spacing:16.167618px;}
.ws22_c00069{word-spacing:16.265352px;}
.ws20_c00069{word-spacing:16.557684px;}
.ws21_c00069{word-spacing:17.013722px;}
.ws1e_c00069{word-spacing:18.159664px;}
.ws1d_c00069{word-spacing:18.416916px;}
.ws9_c00069{word-spacing:20.158758px;}
.wsf_c00069{word-spacing:26.999712px;}
.ws15_c00069{word-spacing:36.025290px;}
.ws16_c00069{word-spacing:36.333378px;}
._3_c00069{margin-left:-2.707452px;}
._0_c00069{margin-left:-1.050300px;}
._1_c00069{width:1.092312px;}
._2_c00069{width:5.930694px;}
.fc0_c00069{color:rgb(0,0,0);}
.fs2_c00069{font-size:37.809600px;}
.fs1_c00069{font-size:46.562400px;}
.fs3_c00069{font-size:58.466400px;}
.fs0_c00069{font-size:70.020000px;}
.y0_c00069{bottom:0.000000px;}
.y2_c00069{bottom:109.740968px;}
.y1_c00069{bottom:129.810450px;}
.y1f_c00069{bottom:149.428647px;}
.y1e_c00069{bottom:167.249205px;}
.y1d_c00069{bottom:185.249548px;}
.y1c_c00069{bottom:203.070107px;}
.y1b_c00069{bottom:224.670450px;}
.y1a_c00069{bottom:239.431401px;}
.y19_c00069{bottom:262.382207px;}
.y18_c00069{bottom:292.622094px;}
.y17_c00069{bottom:343.111766px;}
.y16_c00069{bottom:373.440929px;}
.y15_c00069{bottom:423.929460px;}
.y14_c00069{bottom:454.169348px;}
.y13_c00069{bottom:484.409235px;}
.y12_c00069{bottom:514.559847px;}
.y11_c00069{bottom:544.799735px;}
.y10_c00069{bottom:574.950347px;}
.yf_c00069{bottom:625.440018px;}
.ye_c00069{bottom:655.769181px;}
.yd_c00069{bottom:685.919793px;}
.yc_c00069{bottom:716.159681px;}
.yb_c00069{bottom:746.310293px;}
.ya_c00069{bottom:796.980266px;}
.y9_c00069{bottom:827.220153px;}
.y8_c00069{bottom:877.709825px;}
.y7_c00069{bottom:908.040738px;}
.y6_c00069{bottom:958.530410px;}
.y5_c00069{bottom:1009.111107px;}
.y4_c00069{bottom:1059.781080px;}
.y3_c00069{bottom:1110.361778px;}
.h3_c00069{height:39.698549px;}
.h4_c00069{height:54.098549px;}
.h1_c00069{height:62.771836px;}
.h2_c00069{height:73.786424px;}
.h0_c00069{height:1263.000000px;}
.w0_c00069{width:892.500000px;}
.x0_c00069{left:0.000000px;}
.x2_c00069{left:82.709645px;}
.x1_c00069{left:436.680000px;}
@media print{
.v2_c00069{vertical-align:-12.800000pt;}
.v0_c00069{vertical-align:0.000000pt;}
.v1_c00069{vertical-align:28.483520pt;}
.ls10_c00069{letter-spacing:-0.124728pt;}
.ls17_c00069{letter-spacing:-0.077955pt;}
.ls15_c00069{letter-spacing:-0.072758pt;}
.lsf_c00069{letter-spacing:-0.067217pt;}
.ls5_c00069{letter-spacing:-0.056016pt;}
.ls18_c00069{letter-spacing:-0.051970pt;}
.lsc_c00069{letter-spacing:-0.043568pt;}
.lsb_c00069{letter-spacing:-0.037344pt;}
.ls11_c00069{letter-spacing:-0.036379pt;}
.ls8_c00069{letter-spacing:-0.031120pt;}
.ls13_c00069{letter-spacing:-0.025985pt;}
.lsa_c00069{letter-spacing:-0.024896pt;}
.lse_c00069{letter-spacing:-0.018672pt;}
.ls9_c00069{letter-spacing:-0.012448pt;}
.ls7_c00069{letter-spacing:-0.006224pt;}
.ls6_c00069{letter-spacing:0.000000pt;}
.ls4_c00069{letter-spacing:0.006224pt;}
.ls2_c00069{letter-spacing:0.012448pt;}
.ls0_c00069{letter-spacing:0.018672pt;}
.lsd_c00069{letter-spacing:0.020694pt;}
.ls1_c00069{letter-spacing:0.024896pt;}
.ls3_c00069{letter-spacing:0.037344pt;}
.ls12_c00069{letter-spacing:0.192289pt;}
.ls16_c00069{letter-spacing:0.275442pt;}
.ls14_c00069{letter-spacing:0.332609pt;}
.ws0_c00069{word-spacing:-17.259152pt;}
.ws1_c00069{word-spacing:-11.526781pt;}
.ws2_c00069{word-spacing:-9.242347pt;}
.ws24_c00069{word-spacing:-0.254654pt;}
.ws6_c00069{word-spacing:-0.012448pt;}
.ws4_c00069{word-spacing:-0.006224pt;}
.ws3_c00069{word-spacing:0.000000pt;}
.ws5_c00069{word-spacing:0.018672pt;}
.ws23_c00069{word-spacing:0.088349pt;}
.ws1a_c00069{word-spacing:0.323648pt;}
.ws7_c00069{word-spacing:0.336096pt;}
.ws17_c00069{word-spacing:0.634848pt;}
.ws12_c00069{word-spacing:0.641072pt;}
.ws18_c00069{word-spacing:1.232352pt;}
.ws19_c00069{word-spacing:1.580896pt;}
.wsb_c00069{word-spacing:1.916992pt;}
.wsa_c00069{word-spacing:1.935664pt;}
.ws10_c00069{word-spacing:3.211584pt;}
.wsd_c00069{word-spacing:6.684576pt;}
.wse_c00069{word-spacing:6.715696pt;}
.ws1c_c00069{word-spacing:7.088726pt;}
.ws1b_c00069{word-spacing:7.177075pt;}
.ws1f_c00069{word-spacing:9.318245pt;}
.ws11_c00069{word-spacing:9.609856pt;}
.wsc_c00069{word-spacing:11.196976pt;}
.ws13_c00069{word-spacing:12.454224pt;}
.ws14_c00069{word-spacing:12.472896pt;}
.ws8_c00069{word-spacing:14.371216pt;}
.ws22_c00069{word-spacing:14.458091pt;}
.ws20_c00069{word-spacing:14.717942pt;}
.ws21_c00069{word-spacing:15.123309pt;}
.ws1e_c00069{word-spacing:16.141923pt;}
.ws1d_c00069{word-spacing:16.370592pt;}
.ws9_c00069{word-spacing:17.918896pt;}
.wsf_c00069{word-spacing:23.999744pt;}
.ws15_c00069{word-spacing:32.022480pt;}
.ws16_c00069{word-spacing:32.296336pt;}
._3_c00069{margin-left:-2.406624pt;}
._0_c00069{margin-left:-0.933600pt;}
._1_c00069{width:0.970944pt;}
._2_c00069{width:5.271728pt;}
.fs2_c00069{font-size:33.608533pt;}
.fs1_c00069{font-size:41.388800pt;}
.fs3_c00069{font-size:51.970133pt;}
.fs0_c00069{font-size:62.240000pt;}
.y0_c00069{bottom:0.000000pt;}
.y2_c00069{bottom:97.547527pt;}
.y1_c00069{bottom:115.387067pt;}
.y1f_c00069{bottom:132.825464pt;}
.y1e_c00069{bottom:148.665960pt;}
.y1d_c00069{bottom:164.666265pt;}
.y1c_c00069{bottom:180.506762pt;}
.y1b_c00069{bottom:199.707067pt;}
.y1a_c00069{bottom:212.827912pt;}
.y19_c00069{bottom:233.228628pt;}
.y18_c00069{bottom:260.108528pt;}
.y17_c00069{bottom:304.988236pt;}
.y16_c00069{bottom:331.947492pt;}
.y15_c00069{bottom:376.826187pt;}
.y14_c00069{bottom:403.706087pt;}
.y13_c00069{bottom:430.585987pt;}
.y12_c00069{bottom:457.386531pt;}
.y11_c00069{bottom:484.266431pt;}
.y10_c00069{bottom:511.066975pt;}
.yf_c00069{bottom:555.946683pt;}
.ye_c00069{bottom:582.905939pt;}
.yd_c00069{bottom:609.706483pt;}
.yc_c00069{bottom:636.586383pt;}
.yb_c00069{bottom:663.386927pt;}
.ya_c00069{bottom:708.426903pt;}
.y9_c00069{bottom:735.306803pt;}
.y8_c00069{bottom:780.186511pt;}
.y7_c00069{bottom:807.147323pt;}
.y6_c00069{bottom:852.027031pt;}
.y5_c00069{bottom:896.987651pt;}
.y4_c00069{bottom:942.027627pt;}
.y3_c00069{bottom:986.988247pt;}
.h3_c00069{height:35.287599pt;}
.h4_c00069{height:48.087599pt;}
.h1_c00069{height:55.797187pt;}
.h2_c00069{height:65.587932pt;}
.h0_c00069{height:1122.666667pt;}
.w0_c00069{width:793.333333pt;}
.x0_c00069{left:0.000000pt;}
.x2_c00069{left:73.519684pt;}
.x1_c00069{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8c0f65da3cd82034ad5caebf.woff2')format("woff");}.ff1_c00070{font-family:ff1_c00070;line-height:1.106934;font-style:normal;font-weight:normal;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_910a84b3b0ba1135ca60455d.woff2')format("woff");}.ff2_c00070{font-family:ff2_c00070;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00070;src:url('chunks/assets/font_bca70f5dc3d078756e654c4c.woff2')format("woff");}.ff3_c00070{font-family:ff3_c00070;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00070{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00070{vertical-align:0.000000px;}
.ls8_c00070{letter-spacing:-0.070020px;}
.ls3_c00070{letter-spacing:-0.063018px;}
.ls7_c00070{letter-spacing:-0.056016px;}
.ls5_c00070{letter-spacing:-0.049014px;}
.lsd_c00070{letter-spacing:-0.042012px;}
.ls6_c00070{letter-spacing:-0.035010px;}
.lsa_c00070{letter-spacing:-0.028008px;}
.lsc_c00070{letter-spacing:-0.021006px;}
.ls9_c00070{letter-spacing:-0.014004px;}
.ls4_c00070{letter-spacing:0.000000px;}
.ls0_c00070{letter-spacing:0.028008px;}
.ls1_c00070{letter-spacing:0.049014px;}
.lsb_c00070{letter-spacing:0.252072px;}
.ls2_c00070{letter-spacing:226.056996px;}
.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;}
}
.ws11_c00070{word-spacing:-0.329094px;}
.wse_c00070{word-spacing:-0.266076px;}
.ws0_c00070{word-spacing:0.000000px;}
.ws10_c00070{word-spacing:0.007002px;}
.ws4_c00070{word-spacing:0.021006px;}
.wsf_c00070{word-spacing:0.035010px;}
.ws13_c00070{word-spacing:0.049014px;}
.wsb_c00070{word-spacing:0.413118px;}
.ws5_c00070{word-spacing:1.841526px;}
.ws6_c00070{word-spacing:1.855530px;}
.ws2_c00070{word-spacing:2.506716px;}
.ws3_c00070{word-spacing:2.555730px;}
.ws9_c00070{word-spacing:3.276936px;}
.ws1_c00070{word-spacing:9.032580px;}
.wsa_c00070{word-spacing:10.460988px;}
.ws7_c00070{word-spacing:13.275792px;}
.ws8_c00070{word-spacing:13.618890px;}
.wsc_c00070{word-spacing:25.200198px;}
.wsd_c00070{word-spacing:25.214202px;}
.ws12_c00070{word-spacing:292.732614px;}
._2_c00070{margin-left:-292.683600px;}
._1_c00070{margin-left:-1.099314px;}
._0_c00070{width:1.330380px;}
._3_c00070{width:195.523848px;}
.fc0_c00070{color:rgb(0,0,0);}
.fs0_c00070{font-size:70.020000px;}
.y0_c00070{bottom:0.000000px;}
.y2_c00070{bottom:109.740968px;}
.y1_c00070{bottom:129.810450px;}
.y1b_c00070{bottom:201.270450px;}
.y1a_c00070{bottom:240.240450px;}
.y19_c00070{bottom:279.120450px;}
.y18_c00070{bottom:318.090450px;}
.y17_c00070{bottom:357.060450px;}
.y16_c00070{bottom:396.030450px;}
.y15_c00070{bottom:434.910600px;}
.y14_c00070{bottom:473.880450px;}
.y13_c00070{bottom:512.850450px;}
.y12_c00070{bottom:551.820450px;}
.y11_c00070{bottom:590.700450px;}
.y10_c00070{bottom:629.670450px;}
.yf_c00070{bottom:686.730275px;}
.ye_c00070{bottom:717.059438px;}
.yd_c00070{bottom:767.640135px;}
.yc_c00070{bottom:818.220833px;}
.yb_c00070{bottom:848.460720px;}
.ya_c00070{bottom:878.700607px;}
.y9_c00070{bottom:908.851219px;}
.y8_c00070{bottom:939.091107px;}
.y7_c00070{bottom:969.241719px;}
.y6_c00070{bottom:999.481606px;}
.y5_c00070{bottom:1049.971278px;}
.y4_c00070{bottom:1080.300441px;}
.y3_c00070{bottom:1110.451053px;}
.h1_c00070{height:62.771836px;}
.h2_c00070{height:63.216299px;}
.h0_c00070{height:1263.000000px;}
.w0_c00070{width:892.500000px;}
.x0_c00070{left:0.000000px;}
.x2_c00070{left:82.709645px;}
.x4_c00070{left:277.559550px;}
.x5_c00070{left:332.010000px;}
.x3_c00070{left:413.729194px;}
.x1_c00070{left:436.680000px;}
@media print{
.v0_c00070{vertical-align:0.000000pt;}
.ls8_c00070{letter-spacing:-0.062240pt;}
.ls3_c00070{letter-spacing:-0.056016pt;}
.ls7_c00070{letter-spacing:-0.049792pt;}
.ls5_c00070{letter-spacing:-0.043568pt;}
.lsd_c00070{letter-spacing:-0.037344pt;}
.ls6_c00070{letter-spacing:-0.031120pt;}
.lsa_c00070{letter-spacing:-0.024896pt;}
.lsc_c00070{letter-spacing:-0.018672pt;}
.ls9_c00070{letter-spacing:-0.012448pt;}
.ls4_c00070{letter-spacing:0.000000pt;}
.ls0_c00070{letter-spacing:0.024896pt;}
.ls1_c00070{letter-spacing:0.043568pt;}
.lsb_c00070{letter-spacing:0.224064pt;}
.ls2_c00070{letter-spacing:200.939552pt;}
.ws11_c00070{word-spacing:-0.292528pt;}
.wse_c00070{word-spacing:-0.236512pt;}
.ws0_c00070{word-spacing:0.000000pt;}
.ws10_c00070{word-spacing:0.006224pt;}
.ws4_c00070{word-spacing:0.018672pt;}
.wsf_c00070{word-spacing:0.031120pt;}
.ws13_c00070{word-spacing:0.043568pt;}
.wsb_c00070{word-spacing:0.367216pt;}
.ws5_c00070{word-spacing:1.636912pt;}
.ws6_c00070{word-spacing:1.649360pt;}
.ws2_c00070{word-spacing:2.228192pt;}
.ws3_c00070{word-spacing:2.271760pt;}
.ws9_c00070{word-spacing:2.912832pt;}
.ws1_c00070{word-spacing:8.028960pt;}
.wsa_c00070{word-spacing:9.298656pt;}
.ws7_c00070{word-spacing:11.800704pt;}
.ws8_c00070{word-spacing:12.105680pt;}
.wsc_c00070{word-spacing:22.400176pt;}
.wsd_c00070{word-spacing:22.412624pt;}
.ws12_c00070{word-spacing:260.206768pt;}
._2_c00070{margin-left:-260.163200pt;}
._1_c00070{margin-left:-0.977168pt;}
._0_c00070{width:1.182560pt;}
._3_c00070{width:173.798976pt;}
.fs0_c00070{font-size:62.240000pt;}
.y0_c00070{bottom:0.000000pt;}
.y2_c00070{bottom:97.547527pt;}
.y1_c00070{bottom:115.387067pt;}
.y1b_c00070{bottom:178.907067pt;}
.y1a_c00070{bottom:213.547067pt;}
.y19_c00070{bottom:248.107067pt;}
.y18_c00070{bottom:282.747067pt;}
.y17_c00070{bottom:317.387067pt;}
.y16_c00070{bottom:352.027067pt;}
.y15_c00070{bottom:386.587200pt;}
.y14_c00070{bottom:421.227067pt;}
.y13_c00070{bottom:455.867067pt;}
.y12_c00070{bottom:490.507067pt;}
.y11_c00070{bottom:525.067067pt;}
.y10_c00070{bottom:559.707067pt;}
.yf_c00070{bottom:610.426911pt;}
.ye_c00070{bottom:637.386167pt;}
.yd_c00070{bottom:682.346787pt;}
.yc_c00070{bottom:727.307407pt;}
.yb_c00070{bottom:754.187307pt;}
.ya_c00070{bottom:781.067207pt;}
.y9_c00070{bottom:807.867751pt;}
.y8_c00070{bottom:834.747651pt;}
.y7_c00070{bottom:861.548195pt;}
.y6_c00070{bottom:888.428095pt;}
.y5_c00070{bottom:933.307803pt;}
.y4_c00070{bottom:960.267059pt;}
.y3_c00070{bottom:987.067603pt;}
.h1_c00070{height:55.797187pt;}
.h2_c00070{height:56.192266pt;}
.h0_c00070{height:1122.666667pt;}
.w0_c00070{width:793.333333pt;}
.x0_c00070{left:0.000000pt;}
.x2_c00070{left:73.519684pt;}
.x4_c00070{left:246.719600pt;}
.x5_c00070{left:295.120000pt;}
.x3_c00070{left:367.759284pt;}
.x1_c00070{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7905dee5dd6e5244a8cff5a3.woff2')format("woff");}.ff1_c00071{font-family:ff1_c00071;line-height:1.106934;font-style:normal;font-weight:normal;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_190dec8c960dbc48ba9cdd68.woff2')format("woff");}.ff2_c00071{font-family:ff2_c00071;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00071{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00071{vertical-align:0.000000px;}
.ls3_c00071{letter-spacing:-0.063018px;}
.ls5_c00071{letter-spacing:-0.056016px;}
.ls7_c00071{letter-spacing:-0.049014px;}
.ls9_c00071{letter-spacing:-0.042012px;}
.lsa_c00071{letter-spacing:-0.035010px;}
.ls6_c00071{letter-spacing:-0.028008px;}
.lsb_c00071{letter-spacing:-0.021006px;}
.ls4_c00071{letter-spacing:0.000000px;}
.ls2_c00071{letter-spacing:0.007002px;}
.ls1_c00071{letter-spacing:0.021006px;}
.ls0_c00071{letter-spacing:0.063018px;}
.ls8_c00071{letter-spacing:0.070020px;}
.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;}
}
.ws1_c00071{word-spacing:-19.528578px;}
.ws0_c00071{word-spacing:-19.465560px;}
.wsc_c00071{word-spacing:-0.035010px;}
.ws2_c00071{word-spacing:0.000000px;}
.wse_c00071{word-spacing:0.014004px;}
.wsd_c00071{word-spacing:0.021006px;}
.ws8_c00071{word-spacing:0.035010px;}
.ws4_c00071{word-spacing:0.042012px;}
.wsa_c00071{word-spacing:0.049014px;}
.ws9_c00071{word-spacing:0.343098px;}
.wsb_c00071{word-spacing:0.385110px;}
.ws7_c00071{word-spacing:0.406116px;}
.ws13_c00071{word-spacing:1.085310px;}
.ws12_c00071{word-spacing:1.463418px;}
.ws6_c00071{word-spacing:1.834524px;}
.ws11_c00071{word-spacing:3.255930px;}
.wsf_c00071{word-spacing:11.140182px;}
.ws10_c00071{word-spacing:11.168190px;}
.ws5_c00071{word-spacing:14.774220px;}
.ws3_c00071{word-spacing:292.732614px;}
._0_c00071{margin-left:-292.683600px;}
._4_c00071{margin-left:-1.057302px;}
._2_c00071{width:1.022292px;}
._3_c00071{width:55.441836px;}
._1_c00071{width:199.402956px;}
.fc0_c00071{color:rgb(0,0,0);}
.fs0_c00071{font-size:70.020000px;}
.y0_c00071{bottom:0.000000px;}
.y2_c00071{bottom:109.740968px;}
.y1_c00071{bottom:129.810450px;}
.y1d_c00071{bottom:157.980135px;}
.y1c_c00071{bottom:188.220022px;}
.y1b_c00071{bottom:218.370634px;}
.y1a_c00071{bottom:248.610522px;}
.y19_c00071{bottom:322.859730px;}
.y18_c00071{bottom:353.099618px;}
.y17_c00071{bottom:383.339505px;}
.y16_c00071{bottom:413.490117px;}
.y15_c00071{bottom:443.730004px;}
.y14_c00071{bottom:473.880616px;}
.y13_c00071{bottom:504.120504px;}
.y12_c00071{bottom:534.271116px;}
.y11_c00071{bottom:564.511004px;}
.y10_c00071{bottom:615.000675px;}
.yf_c00071{bottom:645.240563px;}
.ye_c00071{bottom:675.480450px;}
.yd_c00071{bottom:715.530450px;}
.yc_c00071{bottom:754.500450px;}
.yb_c00071{bottom:793.470450px;}
.ya_c00071{bottom:832.350450px;}
.y9_c00071{bottom:871.320450px;}
.y8_c00071{bottom:910.290600px;}
.y7_c00071{bottom:949.260450px;}
.y6_c00071{bottom:988.140450px;}
.y5_c00071{bottom:1027.110450px;}
.y4_c00071{bottom:1066.080450px;}
.y3_c00071{bottom:1104.961485px;}
.h1_c00071{height:62.771836px;}
.h2_c00071{height:63.216299px;}
.h0_c00071{height:1263.000000px;}
.w0_c00071{width:892.500000px;}
.x0_c00071{left:0.000000px;}
.x2_c00071{left:82.709645px;}
.x4_c00071{left:191.520000px;}
.x5_c00071{left:219.960373px;}
.x3_c00071{left:332.008852px;}
.x1_c00071{left:436.680000px;}
@media print{
.v0_c00071{vertical-align:0.000000pt;}
.ls3_c00071{letter-spacing:-0.056016pt;}
.ls5_c00071{letter-spacing:-0.049792pt;}
.ls7_c00071{letter-spacing:-0.043568pt;}
.ls9_c00071{letter-spacing:-0.037344pt;}
.lsa_c00071{letter-spacing:-0.031120pt;}
.ls6_c00071{letter-spacing:-0.024896pt;}
.lsb_c00071{letter-spacing:-0.018672pt;}
.ls4_c00071{letter-spacing:0.000000pt;}
.ls2_c00071{letter-spacing:0.006224pt;}
.ls1_c00071{letter-spacing:0.018672pt;}
.ls0_c00071{letter-spacing:0.056016pt;}
.ls8_c00071{letter-spacing:0.062240pt;}
.ws1_c00071{word-spacing:-17.358736pt;}
.ws0_c00071{word-spacing:-17.302720pt;}
.wsc_c00071{word-spacing:-0.031120pt;}
.ws2_c00071{word-spacing:0.000000pt;}
.wse_c00071{word-spacing:0.012448pt;}
.wsd_c00071{word-spacing:0.018672pt;}
.ws8_c00071{word-spacing:0.031120pt;}
.ws4_c00071{word-spacing:0.037344pt;}
.wsa_c00071{word-spacing:0.043568pt;}
.ws9_c00071{word-spacing:0.304976pt;}
.wsb_c00071{word-spacing:0.342320pt;}
.ws7_c00071{word-spacing:0.360992pt;}
.ws13_c00071{word-spacing:0.964720pt;}
.ws12_c00071{word-spacing:1.300816pt;}
.ws6_c00071{word-spacing:1.630688pt;}
.ws11_c00071{word-spacing:2.894160pt;}
.wsf_c00071{word-spacing:9.902384pt;}
.ws10_c00071{word-spacing:9.927280pt;}
.ws5_c00071{word-spacing:13.132640pt;}
.ws3_c00071{word-spacing:260.206768pt;}
._0_c00071{margin-left:-260.163200pt;}
._4_c00071{margin-left:-0.939824pt;}
._2_c00071{width:0.908704pt;}
._3_c00071{width:49.281632pt;}
._1_c00071{width:177.247072pt;}
.fs0_c00071{font-size:62.240000pt;}
.y0_c00071{bottom:0.000000pt;}
.y2_c00071{bottom:97.547527pt;}
.y1_c00071{bottom:115.387067pt;}
.y1d_c00071{bottom:140.426787pt;}
.y1c_c00071{bottom:167.306687pt;}
.y1b_c00071{bottom:194.107231pt;}
.y1a_c00071{bottom:220.987131pt;}
.y19_c00071{bottom:286.986427pt;}
.y18_c00071{bottom:313.866327pt;}
.y17_c00071{bottom:340.746227pt;}
.y16_c00071{bottom:367.546771pt;}
.y15_c00071{bottom:394.426671pt;}
.y14_c00071{bottom:421.227215pt;}
.y13_c00071{bottom:448.107115pt;}
.y12_c00071{bottom:474.907659pt;}
.y11_c00071{bottom:501.787559pt;}
.y10_c00071{bottom:546.667267pt;}
.yf_c00071{bottom:573.547167pt;}
.ye_c00071{bottom:600.427067pt;}
.yd_c00071{bottom:636.027067pt;}
.yc_c00071{bottom:670.667067pt;}
.yb_c00071{bottom:705.307067pt;}
.ya_c00071{bottom:739.867067pt;}
.y9_c00071{bottom:774.507067pt;}
.y8_c00071{bottom:809.147200pt;}
.y7_c00071{bottom:843.787067pt;}
.y6_c00071{bottom:878.347067pt;}
.y5_c00071{bottom:912.987067pt;}
.y4_c00071{bottom:947.627067pt;}
.y3_c00071{bottom:982.187987pt;}
.h1_c00071{height:55.797187pt;}
.h2_c00071{height:56.192266pt;}
.h0_c00071{height:1122.666667pt;}
.w0_c00071{width:793.333333pt;}
.x0_c00071{left:0.000000pt;}
.x2_c00071{left:73.519684pt;}
.x4_c00071{left:170.240000pt;}
.x5_c00071{left:195.520332pt;}
.x3_c00071{left:295.118980pt;}
.x1_c00071{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_896e55c1910083cb1d81af44.woff2')format("woff");}.ff1_c00072{font-family:ff1_c00072;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00072;src:url('chunks/assets/font_a1e1c15baf8adbc1bb06f10d.woff2')format("woff");}.ff2_c00072{font-family:ff2_c00072;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00072;src:url('chunks/assets/font_7b90340c24137d96ee562a36.woff2')format("woff");}.ff3_c00072{font-family:ff3_c00072;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00072;src:url('chunks/assets/font_4aa9d68aba191303563fa0e7.woff2')format("woff");}.ff4_c00072{font-family:ff4_c00072;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00072;src:url('chunks/assets/font_01828b4065f59217f20eba51.woff2')format("woff");}.ff5_c00072{font-family:ff5_c00072;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00072{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3_c00072{vertical-align:-14.760000px;}
.v0_c00072{vertical-align:0.000000px;}
.v1_c00072{vertical-align:32.039136px;}
.v2_c00072{vertical-align:60.120000px;}
.ls12_c00072{letter-spacing:-0.099393px;}
.ls10_c00072{letter-spacing:-0.077022px;}
.ls11_c00072{letter-spacing:-0.075619px;}
.ls6_c00072{letter-spacing:-0.063018px;}
.lsf_c00072{letter-spacing:-0.056016px;}
.ls9_c00072{letter-spacing:-0.049014px;}
.ls13_c00072{letter-spacing:-0.046773px;}
.lse_c00072{letter-spacing:-0.035010px;}
.ls15_c00072{letter-spacing:-0.029233px;}
.lsd_c00072{letter-spacing:-0.028008px;}
.lsa_c00072{letter-spacing:-0.021006px;}
.lsc_c00072{letter-spacing:-0.014004px;}
.ls14_c00072{letter-spacing:-0.011693px;}
.ls8_c00072{letter-spacing:-0.007002px;}
.ls7_c00072{letter-spacing:0.000000px;}
.ls3_c00072{letter-spacing:0.014004px;}
.ls5_c00072{letter-spacing:0.021006px;}
.lsb_c00072{letter-spacing:0.023281px;}
.ls0_c00072{letter-spacing:0.035010px;}
.ls2_c00072{letter-spacing:0.063018px;}
.ls4_c00072{letter-spacing:0.098028px;}
.ls1_c00072{letter-spacing:528.095682px;}
.sc__c00072{text-shadow:none;}
.sc0_c00072{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00072{-webkit-text-stroke:0px transparent;}
.sc0_c00072{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00072{word-spacing:-19.528578px;}
.ws1_c00072{word-spacing:-19.444554px;}
.ws0_c00072{word-spacing:-12.967628px;}
.ws3_c00072{word-spacing:-10.397640px;}
.ws9_c00072{word-spacing:-0.049014px;}
.ws19_c00072{word-spacing:-0.028008px;}
.ws4_c00072{word-spacing:0.000000px;}
.ws8_c00072{word-spacing:0.007002px;}
.wsa_c00072{word-spacing:0.014004px;}
.ws1d_c00072{word-spacing:0.040926px;}
.ws17_c00072{word-spacing:0.350100px;}
.wsc_c00072{word-spacing:0.378108px;}
.wsd_c00072{word-spacing:0.392112px;}
.ws7_c00072{word-spacing:5.790654px;}
.ws6_c00072{word-spacing:6.154758px;}
.ws16_c00072{word-spacing:7.247070px;}
.ws15_c00072{word-spacing:7.527150px;}
.ws12_c00072{word-spacing:8.605458px;}
.ws13_c00072{word-spacing:9.039582px;}
.ws18_c00072{word-spacing:9.739782px;}
.ws14_c00072{word-spacing:10.860102px;}
.ws5_c00072{word-spacing:15.474420px;}
.ws1c_c00072{word-spacing:28.104798px;}
.ws1a_c00072{word-spacing:28.192498px;}
.ws1b_c00072{word-spacing:28.502370px;}
.wse_c00072{word-spacing:37.411686px;}
.ws11_c00072{word-spacing:48.236778px;}
.wsb_c00072{word-spacing:92.209338px;}
.ws10_c00072{word-spacing:164.525994px;}
.wsf_c00072{word-spacing:164.869092px;}
._6_c00072{margin-left:-28.118322px;}
._5_c00072{margin-left:-2.709792px;}
._2_c00072{margin-left:-1.148328px;}
._0_c00072{width:1.148328px;}
._4_c00072{width:5.930694px;}
._3_c00072{width:29.989566px;}
._1_c00072{width:333.722322px;}
.fc0_c00072{color:rgb(0,0,0);}
.fs2_c00072{font-size:37.809600px;}
.fs1_c00072{font-size:46.562400px;}
.fs3_c00072{font-size:58.466400px;}
.fs0_c00072{font-size:70.020000px;}
.y0_c00072{bottom:0.000000px;}
.y15_c00072{bottom:3.780450px;}
.y2_c00072{bottom:109.740968px;}
.y1_c00072{bottom:129.810450px;}
.y1f_c00072{bottom:149.430343px;}
.y1e_c00072{bottom:171.660730px;}
.y1d_c00072{bottom:193.260450px;}
.y1c_c00072{bottom:208.019451px;}
.y1b_c00072{bottom:332.399478px;}
.y1a_c00072{bottom:362.550090px;}
.y19_c00072{bottom:413.220063px;}
.y18_c00072{bottom:443.459950px;}
.y17_c00072{bottom:473.610562px;}
.y16_c00072{bottom:503.850450px;}
.y14_c00072{bottom:530.220000px;}
.y13_c00072{bottom:534.000063px;}
.y12_c00072{bottom:564.239950px;}
.y11_c00072{bottom:594.390562px;}
.y10_c00072{bottom:624.630450px;}
.yf_c00072{bottom:669.990450px;}
.ye_c00072{bottom:706.800450px;}
.yd_c00072{bottom:743.520450px;}
.yc_c00072{bottom:780.330450px;}
.yb_c00072{bottom:817.050450px;}
.ya_c00072{bottom:853.950450px;}
.y9_c00072{bottom:869.070450px;}
.y8_c00072{bottom:938.999865px;}
.y7_c00072{bottom:969.239753px;}
.y6_c00072{bottom:1019.820666px;}
.y5_c00072{bottom:1050.060553px;}
.y4_c00072{bottom:1080.300441px;}
.y3_c00072{bottom:1110.451053px;}
.h6_c00072{height:19.440000px;}
.h8_c00072{height:39.338549px;}
.h9_c00072{height:54.098549px;}
.h5_c00072{height:62.600889px;}
.h1_c00072{height:62.771836px;}
.h7_c00072{height:62.775832px;}
.h3_c00072{height:63.216299px;}
.h2_c00072{height:74.077162px;}
.h4_c00072{height:122.720889px;}
.h0_c00072{height:1263.000000px;}
.w1_c00072{width:371.970000px;}
.w0_c00072{width:892.500000px;}
.x0_c00072{left:0.000000px;}
.x2_c00072{left:82.709645px;}
.x7_c00072{left:260.370000px;}
.x5_c00072{left:263.700000px;}
.x4_c00072{left:317.968767px;}
.x8_c00072{left:363.240000px;}
.x3_c00072{left:410.309393px;}
.x1_c00072{left:436.680000px;}
.x6_c00072{left:440.640000px;}
@media print{
.v3_c00072{vertical-align:-13.120000pt;}
.v0_c00072{vertical-align:0.000000pt;}
.v1_c00072{vertical-align:28.479232pt;}
.v2_c00072{vertical-align:53.440000pt;}
.ls12_c00072{letter-spacing:-0.088349pt;}
.ls10_c00072{letter-spacing:-0.068464pt;}
.ls11_c00072{letter-spacing:-0.067217pt;}
.ls6_c00072{letter-spacing:-0.056016pt;}
.lsf_c00072{letter-spacing:-0.049792pt;}
.ls9_c00072{letter-spacing:-0.043568pt;}
.ls13_c00072{letter-spacing:-0.041576pt;}
.lse_c00072{letter-spacing:-0.031120pt;}
.ls15_c00072{letter-spacing:-0.025985pt;}
.lsd_c00072{letter-spacing:-0.024896pt;}
.lsa_c00072{letter-spacing:-0.018672pt;}
.lsc_c00072{letter-spacing:-0.012448pt;}
.ls14_c00072{letter-spacing:-0.010394pt;}
.ls8_c00072{letter-spacing:-0.006224pt;}
.ls7_c00072{letter-spacing:0.000000pt;}
.ls3_c00072{letter-spacing:0.012448pt;}
.ls5_c00072{letter-spacing:0.018672pt;}
.lsb_c00072{letter-spacing:0.020694pt;}
.ls0_c00072{letter-spacing:0.031120pt;}
.ls2_c00072{letter-spacing:0.056016pt;}
.ls4_c00072{letter-spacing:0.087136pt;}
.ls1_c00072{letter-spacing:469.418384pt;}
.ws2_c00072{word-spacing:-17.358736pt;}
.ws1_c00072{word-spacing:-17.284048pt;}
.ws0_c00072{word-spacing:-11.526781pt;}
.ws3_c00072{word-spacing:-9.242347pt;}
.ws9_c00072{word-spacing:-0.043568pt;}
.ws19_c00072{word-spacing:-0.024896pt;}
.ws4_c00072{word-spacing:0.000000pt;}
.ws8_c00072{word-spacing:0.006224pt;}
.wsa_c00072{word-spacing:0.012448pt;}
.ws1d_c00072{word-spacing:0.036379pt;}
.ws17_c00072{word-spacing:0.311200pt;}
.wsc_c00072{word-spacing:0.336096pt;}
.wsd_c00072{word-spacing:0.348544pt;}
.ws7_c00072{word-spacing:5.147248pt;}
.ws6_c00072{word-spacing:5.470896pt;}
.ws16_c00072{word-spacing:6.441840pt;}
.ws15_c00072{word-spacing:6.690800pt;}
.ws12_c00072{word-spacing:7.649296pt;}
.ws13_c00072{word-spacing:8.035184pt;}
.ws18_c00072{word-spacing:8.657584pt;}
.ws14_c00072{word-spacing:9.653424pt;}
.ws5_c00072{word-spacing:13.755040pt;}
.ws1c_c00072{word-spacing:24.982043pt;}
.ws1a_c00072{word-spacing:25.059998pt;}
.ws1b_c00072{word-spacing:25.335440pt;}
.wse_c00072{word-spacing:33.254832pt;}
.ws11_c00072{word-spacing:42.877136pt;}
.wsb_c00072{word-spacing:81.963856pt;}
.ws10_c00072{word-spacing:146.245328pt;}
.wsf_c00072{word-spacing:146.550304pt;}
._6_c00072{margin-left:-24.994064pt;}
._5_c00072{margin-left:-2.408704pt;}
._2_c00072{margin-left:-1.020736pt;}
._0_c00072{width:1.020736pt;}
._4_c00072{width:5.271728pt;}
._3_c00072{width:26.657392pt;}
._1_c00072{width:296.642064pt;}
.fs2_c00072{font-size:33.608533pt;}
.fs1_c00072{font-size:41.388800pt;}
.fs3_c00072{font-size:51.970133pt;}
.fs0_c00072{font-size:62.240000pt;}
.y0_c00072{bottom:0.000000pt;}
.y15_c00072{bottom:3.360400pt;}
.y2_c00072{bottom:97.547527pt;}
.y1_c00072{bottom:115.387067pt;}
.y1f_c00072{bottom:132.826972pt;}
.y1e_c00072{bottom:152.587316pt;}
.y1d_c00072{bottom:171.787067pt;}
.y1c_c00072{bottom:184.906179pt;}
.y1b_c00072{bottom:295.466203pt;}
.y1a_c00072{bottom:322.266747pt;}
.y19_c00072{bottom:367.306723pt;}
.y18_c00072{bottom:394.186623pt;}
.y17_c00072{bottom:420.987167pt;}
.y16_c00072{bottom:447.867067pt;}
.y14_c00072{bottom:471.306667pt;}
.y13_c00072{bottom:474.666723pt;}
.y12_c00072{bottom:501.546623pt;}
.y11_c00072{bottom:528.347167pt;}
.y10_c00072{bottom:555.227067pt;}
.yf_c00072{bottom:595.547067pt;}
.ye_c00072{bottom:628.267067pt;}
.yd_c00072{bottom:660.907067pt;}
.yc_c00072{bottom:693.627067pt;}
.yb_c00072{bottom:726.267067pt;}
.ya_c00072{bottom:759.067067pt;}
.y9_c00072{bottom:772.507067pt;}
.y8_c00072{bottom:834.666547pt;}
.y7_c00072{bottom:861.546447pt;}
.y6_c00072{bottom:906.507259pt;}
.y5_c00072{bottom:933.387159pt;}
.y4_c00072{bottom:960.267059pt;}
.y3_c00072{bottom:987.067603pt;}
.h6_c00072{height:17.280000pt;}
.h8_c00072{height:34.967599pt;}
.h9_c00072{height:48.087599pt;}
.h5_c00072{height:55.645234pt;}
.h1_c00072{height:55.797187pt;}
.h7_c00072{height:55.800740pt;}
.h3_c00072{height:56.192266pt;}
.h2_c00072{height:65.846366pt;}
.h4_c00072{height:109.085234pt;}
.h0_c00072{height:1122.666667pt;}
.w1_c00072{width:330.640000pt;}
.w0_c00072{width:793.333333pt;}
.x0_c00072{left:0.000000pt;}
.x2_c00072{left:73.519684pt;}
.x7_c00072{left:231.440000pt;}
.x5_c00072{left:234.400000pt;}
.x4_c00072{left:282.638904pt;}
.x8_c00072{left:322.880000pt;}
.x3_c00072{left:364.719460pt;}
.x1_c00072{left:388.160000pt;}
.x6_c00072{left:391.680000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cb3df99925c765fc16b3b8b5.woff2')format("woff");}.ff1_c00073{font-family:ff1_c00073;line-height:1.106934;font-style:normal;font-weight:normal;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_71f4419739fd18aeb8508b0e.woff2')format("woff");}.ff2_c00073{font-family:ff2_c00073;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00073;src:url('chunks/assets/font_c2267d3d49ba6f2e68a4a3d0.woff2')format("woff");}.ff3_c00073{font-family:ff3_c00073;line-height:1.133301;font-style:normal;font-weight:normal;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_5e8f09c3ac9523d9e22a7c92.woff2')format("woff");}.ff4_c00073{font-family:ff4_c00073;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00073{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00073{vertical-align:-14.760000px;}
.v0_c00073{vertical-align:0.000000px;}
.v3_c00073{vertical-align:14.758880px;}
.v1_c00073{vertical-align:32.037138px;}
.ls1e_c00073{letter-spacing:-0.572971px;}
.ls17_c00073{letter-spacing:-0.233866px;}
.ls15_c00073{letter-spacing:-0.157859px;}
.ls16_c00073{letter-spacing:-0.152013px;}
.ls1c_c00073{letter-spacing:-0.116933px;}
.ls1d_c00073{letter-spacing:-0.099393px;}
.ls10_c00073{letter-spacing:-0.075619px;}
.ls1b_c00073{letter-spacing:-0.070160px;}
.ls1f_c00073{letter-spacing:-0.064313px;}
.ls6_c00073{letter-spacing:-0.063018px;}
.ls19_c00073{letter-spacing:-0.058466px;}
.ls14_c00073{letter-spacing:-0.052620px;}
.lsf_c00073{letter-spacing:-0.049014px;}
.ls20_c00073{letter-spacing:-0.046773px;}
.lsd_c00073{letter-spacing:-0.042012px;}
.ls11_c00073{letter-spacing:-0.035080px;}
.lsc_c00073{letter-spacing:-0.035010px;}
.ls13_c00073{letter-spacing:-0.029233px;}
.lsa_c00073{letter-spacing:-0.028008px;}
.ls12_c00073{letter-spacing:-0.023387px;}
.lse_c00073{letter-spacing:-0.021006px;}
.ls9_c00073{letter-spacing:-0.014004px;}
.ls8_c00073{letter-spacing:-0.007002px;}
.ls7_c00073{letter-spacing:0.000000px;}
.ls1_c00073{letter-spacing:0.007002px;}
.ls3_c00073{letter-spacing:0.011693px;}
.ls0_c00073{letter-spacing:0.014004px;}
.ls2_c00073{letter-spacing:0.021006px;}
.lsb_c00073{letter-spacing:0.023281px;}
.ls1a_c00073{letter-spacing:0.040926px;}
.ls4_c00073{letter-spacing:0.048830px;}
.ls5_c00073{letter-spacing:0.140319px;}
.ls18_c00073{letter-spacing:0.309872px;}
.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;}
}
.ws3_c00073{word-spacing:-16.130880px;}
.ws2_c00073{word-spacing:-16.095800px;}
.ws0_c00073{word-spacing:-12.967628px;}
.ws1_c00073{word-spacing:-10.397640px;}
.ws1e_c00073{word-spacing:-0.344952px;}
.ws23_c00073{word-spacing:-0.298179px;}
.ws2a_c00073{word-spacing:-0.128626px;}
.wsb_c00073{word-spacing:-0.007002px;}
.ws4_c00073{word-spacing:0.000000px;}
.ws6_c00073{word-spacing:0.014004px;}
.ws8_c00073{word-spacing:0.021006px;}
.ws1a_c00073{word-spacing:0.350100px;}
.ws12_c00073{word-spacing:0.364104px;}
.ws29_c00073{word-spacing:0.473578px;}
.wse_c00073{word-spacing:0.707202px;}
.ws16_c00073{word-spacing:1.071306px;}
.ws17_c00073{word-spacing:1.113318px;}
.ws14_c00073{word-spacing:1.792512px;}
.wsa_c00073{word-spacing:2.905830px;}
.ws9_c00073{word-spacing:3.234924px;}
.wsf_c00073{word-spacing:4.334238px;}
.ws13_c00073{word-spacing:5.069448px;}
.wsc_c00073{word-spacing:8.976564px;}
.ws24_c00073{word-spacing:9.003826px;}
.wsd_c00073{word-spacing:9.025578px;}
.ws25_c00073{word-spacing:9.073985px;}
.ws1c_c00073{word-spacing:9.395550px;}
.ws1d_c00073{word-spacing:9.401397px;}
.ws1b_c00073{word-spacing:9.407244px;}
.ws11_c00073{word-spacing:11.511288px;}
.ws10_c00073{word-spacing:11.889396px;}
.ws2c_c00073{word-spacing:14.119636px;}
.ws2b_c00073{word-spacing:14.984938px;}
.ws15_c00073{word-spacing:15.453414px;}
.ws26_c00073{word-spacing:16.171806px;}
.ws27_c00073{word-spacing:16.645384px;}
.ws28_c00073{word-spacing:16.692157px;}
.ws21_c00073{word-spacing:17.446374px;}
.ws1f_c00073{word-spacing:17.703626px;}
.ws20_c00073{word-spacing:17.808865px;}
.ws22_c00073{word-spacing:17.884872px;}
.ws19_c00073{word-spacing:19.045440px;}
.ws18_c00073{word-spacing:19.094454px;}
.ws5_c00073{word-spacing:20.151756px;}
.ws7_c00073{word-spacing:27.328806px;}
._2_c00073{margin-left:-8.997570px;}
._4_c00073{margin-left:-2.708748px;}
._0_c00073{margin-left:-1.043298px;}
._1_c00073{width:1.316376px;}
._3_c00073{width:5.930694px;}
.fc0_c00073{color:rgb(0,0,0);}
.fs2_c00073{font-size:37.809600px;}
.fs1_c00073{font-size:46.562400px;}
.fs3_c00073{font-size:58.466400px;}
.fs0_c00073{font-size:70.020000px;}
.y0_c00073{bottom:0.000000px;}
.y2_c00073{bottom:109.740968px;}
.y1_c00073{bottom:129.810450px;}
.y21_c00073{bottom:149.430903px;}
.y20_c00073{bottom:171.661290px;}
.y1f_c00073{bottom:189.571010px;}
.y1e_c00073{bottom:207.480730px;}
.y1d_c00073{bottom:225.390730px;}
.y1c_c00073{bottom:246.900450px;}
.y1b_c00073{bottom:265.530730px;}
.y1a_c00073{bottom:287.130450px;}
.y19_c00073{bottom:301.260730px;}
.y18_c00073{bottom:322.860450px;}
.y17_c00073{bottom:337.531028px;}
.y16_c00073{bottom:454.980825px;}
.y15_c00073{bottom:485.309988px;}
.y14_c00073{bottom:515.459451px;}
.y13_c00073{bottom:545.699338px;}
.y12_c00073{bottom:575.849950px;}
.y11_c00073{bottom:606.089838px;}
.y10_c00073{bottom:636.240450px;}
.yf_c00073{bottom:686.729559px;}
.ye_c00073{bottom:717.058722px;}
.yd_c00073{bottom:747.209334px;}
.yc_c00073{bottom:777.449222px;}
.yb_c00073{bottom:807.599834px;}
.ya_c00073{bottom:837.839721px;}
.y9_c00073{bottom:867.990333px;}
.y8_c00073{bottom:918.480005px;}
.y7_c00073{bottom:948.809168px;}
.y6_c00073{bottom:999.389865px;}
.y5_c00073{bottom:1029.629752px;}
.y4_c00073{bottom:1080.211166px;}
.y3_c00073{bottom:1110.451053px;}
.h5_c00073{height:39.338549px;}
.h7_c00073{height:39.698549px;}
.h6_c00073{height:54.098549px;}
.h1_c00073{height:62.771836px;}
.h2_c00073{height:73.779602px;}
.h4_c00073{height:73.786460px;}
.h3_c00073{height:74.441590px;}
.h0_c00073{height:1263.000000px;}
.w0_c00073{width:892.500000px;}
.x0_c00073{left:0.000000px;}
.x2_c00073{left:82.709645px;}
.x1_c00073{left:436.680000px;}
@media print{
.v2_c00073{vertical-align:-13.120000pt;}
.v0_c00073{vertical-align:0.000000pt;}
.v3_c00073{vertical-align:13.119004pt;}
.v1_c00073{vertical-align:28.477456pt;}
.ls1e_c00073{letter-spacing:-0.509307pt;}
.ls17_c00073{letter-spacing:-0.207881pt;}
.ls15_c00073{letter-spacing:-0.140319pt;}
.ls16_c00073{letter-spacing:-0.135122pt;}
.ls1c_c00073{letter-spacing:-0.103940pt;}
.ls1d_c00073{letter-spacing:-0.088349pt;}
.ls10_c00073{letter-spacing:-0.067217pt;}
.ls1b_c00073{letter-spacing:-0.062364pt;}
.ls1f_c00073{letter-spacing:-0.057167pt;}
.ls6_c00073{letter-spacing:-0.056016pt;}
.ls19_c00073{letter-spacing:-0.051970pt;}
.ls14_c00073{letter-spacing:-0.046773pt;}
.lsf_c00073{letter-spacing:-0.043568pt;}
.ls20_c00073{letter-spacing:-0.041576pt;}
.lsd_c00073{letter-spacing:-0.037344pt;}
.ls11_c00073{letter-spacing:-0.031182pt;}
.lsc_c00073{letter-spacing:-0.031120pt;}
.ls13_c00073{letter-spacing:-0.025985pt;}
.lsa_c00073{letter-spacing:-0.024896pt;}
.ls12_c00073{letter-spacing:-0.020788pt;}
.lse_c00073{letter-spacing:-0.018672pt;}
.ls9_c00073{letter-spacing:-0.012448pt;}
.ls8_c00073{letter-spacing:-0.006224pt;}
.ls7_c00073{letter-spacing:0.000000pt;}
.ls1_c00073{letter-spacing:0.006224pt;}
.ls3_c00073{letter-spacing:0.010394pt;}
.ls0_c00073{letter-spacing:0.012448pt;}
.ls2_c00073{letter-spacing:0.018672pt;}
.lsb_c00073{letter-spacing:0.020694pt;}
.ls1a_c00073{letter-spacing:0.036379pt;}
.ls4_c00073{letter-spacing:0.043405pt;}
.ls5_c00073{letter-spacing:0.124728pt;}
.ls18_c00073{letter-spacing:0.275442pt;}
.ws3_c00073{word-spacing:-14.338560pt;}
.ws2_c00073{word-spacing:-14.307378pt;}
.ws0_c00073{word-spacing:-11.526781pt;}
.ws1_c00073{word-spacing:-9.242347pt;}
.ws1e_c00073{word-spacing:-0.306624pt;}
.ws23_c00073{word-spacing:-0.265048pt;}
.ws2a_c00073{word-spacing:-0.114334pt;}
.wsb_c00073{word-spacing:-0.006224pt;}
.ws4_c00073{word-spacing:0.000000pt;}
.ws6_c00073{word-spacing:0.012448pt;}
.ws8_c00073{word-spacing:0.018672pt;}
.ws1a_c00073{word-spacing:0.311200pt;}
.ws12_c00073{word-spacing:0.323648pt;}
.ws29_c00073{word-spacing:0.420958pt;}
.wse_c00073{word-spacing:0.628624pt;}
.ws16_c00073{word-spacing:0.952272pt;}
.ws17_c00073{word-spacing:0.989616pt;}
.ws14_c00073{word-spacing:1.593344pt;}
.wsa_c00073{word-spacing:2.582960pt;}
.ws9_c00073{word-spacing:2.875488pt;}
.wsf_c00073{word-spacing:3.852656pt;}
.ws13_c00073{word-spacing:4.506176pt;}
.wsc_c00073{word-spacing:7.979168pt;}
.ws24_c00073{word-spacing:8.003401pt;}
.wsd_c00073{word-spacing:8.022736pt;}
.ws25_c00073{word-spacing:8.065765pt;}
.ws1c_c00073{word-spacing:8.351600pt;}
.ws1d_c00073{word-spacing:8.356797pt;}
.ws1b_c00073{word-spacing:8.361994pt;}
.ws11_c00073{word-spacing:10.232256pt;}
.ws10_c00073{word-spacing:10.568352pt;}
.ws2c_c00073{word-spacing:12.550787pt;}
.ws2b_c00073{word-spacing:13.319945pt;}
.ws15_c00073{word-spacing:13.736368pt;}
.ws26_c00073{word-spacing:14.374939pt;}
.ws27_c00073{word-spacing:14.795897pt;}
.ws28_c00073{word-spacing:14.837473pt;}
.ws21_c00073{word-spacing:15.507888pt;}
.ws1f_c00073{word-spacing:15.736556pt;}
.ws20_c00073{word-spacing:15.830103pt;}
.ws22_c00073{word-spacing:15.897664pt;}
.ws19_c00073{word-spacing:16.929280pt;}
.ws18_c00073{word-spacing:16.972848pt;}
.ws5_c00073{word-spacing:17.912672pt;}
.ws7_c00073{word-spacing:24.292272pt;}
._2_c00073{margin-left:-7.997840pt;}
._4_c00073{margin-left:-2.407776pt;}
._0_c00073{margin-left:-0.927376pt;}
._1_c00073{width:1.170112pt;}
._3_c00073{width:5.271728pt;}
.fs2_c00073{font-size:33.608533pt;}
.fs1_c00073{font-size:41.388800pt;}
.fs3_c00073{font-size:51.970133pt;}
.fs0_c00073{font-size:62.240000pt;}
.y0_c00073{bottom:0.000000pt;}
.y2_c00073{bottom:97.547527pt;}
.y1_c00073{bottom:115.387067pt;}
.y21_c00073{bottom:132.827469pt;}
.y20_c00073{bottom:152.587813pt;}
.y1f_c00073{bottom:168.507564pt;}
.y1e_c00073{bottom:184.427316pt;}
.y1d_c00073{bottom:200.347316pt;}
.y1c_c00073{bottom:219.467067pt;}
.y1b_c00073{bottom:236.027316pt;}
.y1a_c00073{bottom:255.227067pt;}
.y19_c00073{bottom:267.787316pt;}
.y18_c00073{bottom:286.987067pt;}
.y17_c00073{bottom:300.027580pt;}
.y16_c00073{bottom:404.427400pt;}
.y15_c00073{bottom:431.386656pt;}
.y14_c00073{bottom:458.186179pt;}
.y13_c00073{bottom:485.066079pt;}
.y12_c00073{bottom:511.866623pt;}
.y11_c00073{bottom:538.746523pt;}
.y10_c00073{bottom:565.547067pt;}
.yf_c00073{bottom:610.426275pt;}
.ye_c00073{bottom:637.385531pt;}
.yd_c00073{bottom:664.186075pt;}
.yc_c00073{bottom:691.065975pt;}
.yb_c00073{bottom:717.866519pt;}
.ya_c00073{bottom:744.746419pt;}
.y9_c00073{bottom:771.546963pt;}
.y8_c00073{bottom:816.426671pt;}
.y7_c00073{bottom:843.385927pt;}
.y6_c00073{bottom:888.346547pt;}
.y5_c00073{bottom:915.226447pt;}
.y4_c00073{bottom:960.187703pt;}
.y3_c00073{bottom:987.067603pt;}
.h5_c00073{height:34.967599pt;}
.h7_c00073{height:35.287599pt;}
.h6_c00073{height:48.087599pt;}
.h1_c00073{height:55.797187pt;}
.h2_c00073{height:65.581868pt;}
.h4_c00073{height:65.587964pt;}
.h3_c00073{height:66.170302pt;}
.h0_c00073{height:1122.666667pt;}
.w0_c00073{width:793.333333pt;}
.x0_c00073{left:0.000000pt;}
.x2_c00073{left:73.519684pt;}
.x1_c00073{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f847481866ec7774cf7fad12.woff2')format("woff");}.ff1_c00074{font-family:ff1_c00074;line-height:1.106934;font-style:normal;font-weight:normal;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_c7874d90b342045de9366651.woff2')format("woff");}.ff2_c00074{font-family:ff2_c00074;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00074;src:url('chunks/assets/font_297ac1349119c075bf51eccd.woff2')format("woff");}.ff3_c00074{font-family:ff3_c00074;line-height:1.133301;font-style:normal;font-weight:normal;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_b0593e6ff999012e2b0e5e08.woff2')format("woff");}.ff4_c00074{font-family:ff4_c00074;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00074{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00074{vertical-align:-14.400000px;}
.v0_c00074{vertical-align:0.000000px;}
.v1_c00074{vertical-align:32.391702px;}
.ls13_c00074{letter-spacing:-0.385878px;}
.lsf_c00074{letter-spacing:-0.268945px;}
.lse_c00074{letter-spacing:-0.222172px;}
.ls12_c00074{letter-spacing:-0.210479px;}
.ls15_c00074{letter-spacing:-0.187092px;}
.lsb_c00074{letter-spacing:-0.119034px;}
.ls14_c00074{letter-spacing:-0.099393px;}
.lsd_c00074{letter-spacing:-0.075619px;}
.ls10_c00074{letter-spacing:-0.070160px;}
.ls4_c00074{letter-spacing:-0.063018px;}
.lsc_c00074{letter-spacing:-0.042012px;}
.ls8_c00074{letter-spacing:-0.035010px;}
.ls11_c00074{letter-spacing:-0.023387px;}
.ls9_c00074{letter-spacing:-0.021006px;}
.ls6_c00074{letter-spacing:-0.014004px;}
.ls7_c00074{letter-spacing:-0.007002px;}
.ls5_c00074{letter-spacing:0.000000px;}
.ls3_c00074{letter-spacing:0.005847px;}
.ls0_c00074{letter-spacing:0.007002px;}
.lsa_c00074{letter-spacing:0.023281px;}
.ls1_c00074{letter-spacing:0.035010px;}
.ls2_c00074{letter-spacing:8.647181px;}
.sc__c00074{text-shadow:none;}
.sc0_c00074{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00074{-webkit-text-stroke:0px transparent;}
.sc0_c00074{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00074{word-spacing:-16.171806px;}
.ws0_c00074{word-spacing:-12.967628px;}
.ws1_c00074{word-spacing:-10.397640px;}
.ws21_c00074{word-spacing:-0.157859px;}
.ws12_c00074{word-spacing:-0.007002px;}
.ws3_c00074{word-spacing:0.000000px;}
.ws9_c00074{word-spacing:0.007002px;}
.wsa_c00074{word-spacing:0.014004px;}
.ws14_c00074{word-spacing:0.028008px;}
.ws20_c00074{word-spacing:0.116933px;}
.ws6_c00074{word-spacing:0.336096px;}
.ws15_c00074{word-spacing:0.364104px;}
.ws16_c00074{word-spacing:0.378108px;}
.ws13_c00074{word-spacing:0.462132px;}
.ws4_c00074{word-spacing:1.442412px;}
.ws1e_c00074{word-spacing:1.455813px;}
.ws1f_c00074{word-spacing:1.555206px;}
.ws11_c00074{word-spacing:2.506716px;}
.wsf_c00074{word-spacing:3.914118px;}
.wse_c00074{word-spacing:4.306230px;}
.ws1d_c00074{word-spacing:4.355747px;}
.ws1c_c00074{word-spacing:4.361593px;}
.wsd_c00074{word-spacing:4.670334px;}
.wsb_c00074{word-spacing:5.755644px;}
.ws1a_c00074{word-spacing:6.203285px;}
.ws1b_c00074{word-spacing:6.343604px;}
.ws5_c00074{word-spacing:6.469848px;}
.ws19_c00074{word-spacing:8.360695px;}
.ws17_c00074{word-spacing:8.875200px;}
.ws18_c00074{word-spacing:8.921973px;}
.ws10_c00074{word-spacing:12.239496px;}
.wsc_c00074{word-spacing:15.138324px;}
.ws7_c00074{word-spacing:28.820232px;}
.ws8_c00074{word-spacing:41.381820px;}
._7_c00074{margin-left:-2.709774px;}
._0_c00074{margin-left:-1.127322px;}
._1_c00074{width:1.106316px;}
._6_c00074{width:5.930694px;}
._5_c00074{width:26.873676px;}
._2_c00074{width:605.063826px;}
._4_c00074{width:668.831040px;}
._3_c00074{width:698.708574px;}
.fc0_c00074{color:rgb(0,0,0);}
.fs2_c00074{font-size:37.809600px;}
.fs1_c00074{font-size:46.562400px;}
.fs3_c00074{font-size:58.466400px;}
.fs0_c00074{font-size:70.020000px;}
.y0_c00074{bottom:0.000000px;}
.y2_c00074{bottom:109.740968px;}
.y1_c00074{bottom:129.810450px;}
.y1f_c00074{bottom:149.428647px;}
.y1e_c00074{bottom:167.249205px;}
.y1d_c00074{bottom:185.249548px;}
.y1c_c00074{bottom:203.070107px;}
.y1b_c00074{bottom:224.670450px;}
.y1a_c00074{bottom:239.430450px;}
.y19_c00074{bottom:279.120450px;}
.y18_c00074{bottom:315.930450px;}
.y17_c00074{bottom:352.650450px;}
.y16_c00074{bottom:389.458290px;}
.y15_c00074{bottom:444.357471px;}
.y14_c00074{bottom:474.597358px;}
.y13_c00074{bottom:525.178056px;}
.y12_c00074{bottom:575.758754px;}
.y11_c00074{bottom:606.089667px;}
.y10_c00074{bottom:636.240279px;}
.yf_c00074{bottom:666.480166px;}
.ye_c00074{bottom:696.630778px;}
.yd_c00074{bottom:747.122525px;}
.yc_c00074{bottom:777.451687px;}
.yb_c00074{bottom:828.032385px;}
.ya_c00074{bottom:858.272272px;}
.y9_c00074{bottom:888.512160px;}
.y8_c00074{bottom:939.001831px;}
.y7_c00074{bottom:969.241719px;}
.y6_c00074{bottom:999.481606px;}
.y5_c00074{bottom:1049.971278px;}
.y4_c00074{bottom:1080.300441px;}
.y3_c00074{bottom:1110.451053px;}
.h4_c00074{height:39.698549px;}
.h5_c00074{height:54.098549px;}
.h1_c00074{height:62.771836px;}
.h3_c00074{height:63.216299px;}
.h2_c00074{height:74.134166px;}
.h0_c00074{height:1263.000000px;}
.w0_c00074{width:892.500000px;}
.x0_c00074{left:0.000000px;}
.x2_c00074{left:82.709645px;}
.x4_c00074{left:159.479707px;}
.x5_c00074{left:208.709019px;}
.x3_c00074{left:415.259266px;}
.x1_c00074{left:436.680000px;}
@media print{
.v2_c00074{vertical-align:-12.800000pt;}
.v0_c00074{vertical-align:0.000000pt;}
.v1_c00074{vertical-align:28.792624pt;}
.ls13_c00074{letter-spacing:-0.343003pt;}
.lsf_c00074{letter-spacing:-0.239063pt;}
.lse_c00074{letter-spacing:-0.197487pt;}
.ls12_c00074{letter-spacing:-0.187092pt;}
.ls15_c00074{letter-spacing:-0.166304pt;}
.lsb_c00074{letter-spacing:-0.105808pt;}
.ls14_c00074{letter-spacing:-0.088349pt;}
.lsd_c00074{letter-spacing:-0.067217pt;}
.ls10_c00074{letter-spacing:-0.062364pt;}
.ls4_c00074{letter-spacing:-0.056016pt;}
.lsc_c00074{letter-spacing:-0.037344pt;}
.ls8_c00074{letter-spacing:-0.031120pt;}
.ls11_c00074{letter-spacing:-0.020788pt;}
.ls9_c00074{letter-spacing:-0.018672pt;}
.ls6_c00074{letter-spacing:-0.012448pt;}
.ls7_c00074{letter-spacing:-0.006224pt;}
.ls5_c00074{letter-spacing:0.000000pt;}
.ls3_c00074{letter-spacing:0.005197pt;}
.ls0_c00074{letter-spacing:0.006224pt;}
.lsa_c00074{letter-spacing:0.020694pt;}
.ls1_c00074{letter-spacing:0.031120pt;}
.ls2_c00074{letter-spacing:7.686383pt;}
.ws2_c00074{word-spacing:-14.374939pt;}
.ws0_c00074{word-spacing:-11.526781pt;}
.ws1_c00074{word-spacing:-9.242347pt;}
.ws21_c00074{word-spacing:-0.140319pt;}
.ws12_c00074{word-spacing:-0.006224pt;}
.ws3_c00074{word-spacing:0.000000pt;}
.ws9_c00074{word-spacing:0.006224pt;}
.wsa_c00074{word-spacing:0.012448pt;}
.ws14_c00074{word-spacing:0.024896pt;}
.ws20_c00074{word-spacing:0.103940pt;}
.ws6_c00074{word-spacing:0.298752pt;}
.ws15_c00074{word-spacing:0.323648pt;}
.ws16_c00074{word-spacing:0.336096pt;}
.ws13_c00074{word-spacing:0.410784pt;}
.ws4_c00074{word-spacing:1.282144pt;}
.ws1e_c00074{word-spacing:1.294056pt;}
.ws1f_c00074{word-spacing:1.382406pt;}
.ws11_c00074{word-spacing:2.228192pt;}
.wsf_c00074{word-spacing:3.479216pt;}
.wse_c00074{word-spacing:3.827760pt;}
.ws1d_c00074{word-spacing:3.871775pt;}
.ws1c_c00074{word-spacing:3.876972pt;}
.wsd_c00074{word-spacing:4.151408pt;}
.wsb_c00074{word-spacing:5.116128pt;}
.ws1a_c00074{word-spacing:5.514031pt;}
.ws1b_c00074{word-spacing:5.638759pt;}
.ws5_c00074{word-spacing:5.750976pt;}
.ws19_c00074{word-spacing:7.431729pt;}
.ws17_c00074{word-spacing:7.889066pt;}
.ws18_c00074{word-spacing:7.930642pt;}
.ws10_c00074{word-spacing:10.879552pt;}
.wsc_c00074{word-spacing:13.456288pt;}
.ws7_c00074{word-spacing:25.617984pt;}
.ws8_c00074{word-spacing:36.783840pt;}
._7_c00074{margin-left:-2.408688pt;}
._0_c00074{margin-left:-1.002064pt;}
._1_c00074{width:0.983392pt;}
._6_c00074{width:5.271728pt;}
._5_c00074{width:23.887712pt;}
._2_c00074{width:537.834512pt;}
._4_c00074{width:594.516480pt;}
._3_c00074{width:621.074288pt;}
.fs2_c00074{font-size:33.608533pt;}
.fs1_c00074{font-size:41.388800pt;}
.fs3_c00074{font-size:51.970133pt;}
.fs0_c00074{font-size:62.240000pt;}
.y0_c00074{bottom:0.000000pt;}
.y2_c00074{bottom:97.547527pt;}
.y1_c00074{bottom:115.387067pt;}
.y1f_c00074{bottom:132.825464pt;}
.y1e_c00074{bottom:148.665960pt;}
.y1d_c00074{bottom:164.666265pt;}
.y1c_c00074{bottom:180.506762pt;}
.y1b_c00074{bottom:199.707067pt;}
.y1a_c00074{bottom:212.827067pt;}
.y19_c00074{bottom:248.107067pt;}
.y18_c00074{bottom:280.827067pt;}
.y17_c00074{bottom:313.467067pt;}
.y16_c00074{bottom:346.185147pt;}
.y15_c00074{bottom:394.984419pt;}
.y14_c00074{bottom:421.864319pt;}
.y13_c00074{bottom:466.824939pt;}
.y12_c00074{bottom:511.785559pt;}
.y11_c00074{bottom:538.746371pt;}
.y10_c00074{bottom:565.546915pt;}
.yf_c00074{bottom:592.426815pt;}
.ye_c00074{bottom:619.227359pt;}
.yd_c00074{bottom:664.108911pt;}
.yc_c00074{bottom:691.068167pt;}
.yb_c00074{bottom:736.028787pt;}
.ya_c00074{bottom:762.908687pt;}
.y9_c00074{bottom:789.788587pt;}
.y8_c00074{bottom:834.668295pt;}
.y7_c00074{bottom:861.548195pt;}
.y6_c00074{bottom:888.428095pt;}
.y5_c00074{bottom:933.307803pt;}
.y4_c00074{bottom:960.267059pt;}
.y3_c00074{bottom:987.067603pt;}
.h4_c00074{height:35.287599pt;}
.h5_c00074{height:48.087599pt;}
.h1_c00074{height:55.797187pt;}
.h3_c00074{height:56.192266pt;}
.h2_c00074{height:65.897036pt;}
.h0_c00074{height:1122.666667pt;}
.w0_c00074{width:793.333333pt;}
.x0_c00074{left:0.000000pt;}
.x2_c00074{left:73.519684pt;}
.x4_c00074{left:141.759740pt;}
.x5_c00074{left:185.519128pt;}
.x3_c00074{left:369.119348pt;}
.x1_c00074{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_237486109066517b9febcb64.woff2')format("woff");}.ff1_c00075{font-family:ff1_c00075;line-height:1.106934;font-style:normal;font-weight:normal;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_a0146b6d7e5eef690154425a.woff2')format("woff");}.ff2_c00075{font-family:ff2_c00075;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00075;src:url('chunks/assets/font_52696f491f2f1c116e467b30.woff2')format("woff");}.ff3_c00075{font-family:ff3_c00075;line-height:1.104492;font-style:normal;font-weight:normal;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_47cf3ba3f8b4d29521dbd6b2.woff2')format("woff");}.ff4_c00075{font-family:ff4_c00075;line-height:1.133301;font-style:normal;font-weight:normal;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_add453020c0ef8f6a019b294.woff2')format("woff");}.ff5_c00075{font-family:ff5_c00075;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00075{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00075{vertical-align:-14.760000px;}
.v0_c00075{vertical-align:0.000000px;}
.v1_c00075{vertical-align:32.410818px;}
.ls14_c00075{letter-spacing:-0.140319px;}
.ls10_c00075{letter-spacing:-0.075619px;}
.ls9_c00075{letter-spacing:-0.070020px;}
.ls6_c00075{letter-spacing:-0.063018px;}
.ls12_c00075{letter-spacing:-0.052620px;}
.lsc_c00075{letter-spacing:-0.049014px;}
.ls8_c00075{letter-spacing:-0.035010px;}
.lsb_c00075{letter-spacing:-0.028008px;}
.ls13_c00075{letter-spacing:-0.023387px;}
.lsd_c00075{letter-spacing:-0.021006px;}
.lse_c00075{letter-spacing:-0.014004px;}
.lsa_c00075{letter-spacing:-0.007002px;}
.ls15_c00075{letter-spacing:-0.005847px;}
.ls7_c00075{letter-spacing:0.000000px;}
.ls2_c00075{letter-spacing:0.007002px;}
.ls3_c00075{letter-spacing:0.021006px;}
.lsf_c00075{letter-spacing:0.023281px;}
.ls1_c00075{letter-spacing:0.028008px;}
.ls5_c00075{letter-spacing:0.042012px;}
.ls0_c00075{letter-spacing:0.056016px;}
.ls11_c00075{letter-spacing:0.280639px;}
.ls4_c00075{letter-spacing:0.332388px;}
.sc__c00075{text-shadow:none;}
.sc0_c00075{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00075{-webkit-text-stroke:0px transparent;}
.sc0_c00075{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00075{word-spacing:-19.521576px;}
.ws1_c00075{word-spacing:-12.967628px;}
.ws2_c00075{word-spacing:-10.397640px;}
.ws5_c00075{word-spacing:-0.399114px;}
.ws19_c00075{word-spacing:-0.336096px;}
.ws20_c00075{word-spacing:-0.056016px;}
.ws3_c00075{word-spacing:0.000000px;}
.ws9_c00075{word-spacing:0.014004px;}
.ws26_c00075{word-spacing:0.017540px;}
.ws6_c00075{word-spacing:0.021006px;}
.ws25_c00075{word-spacing:0.152013px;}
.ws1e_c00075{word-spacing:0.322092px;}
.ws14_c00075{word-spacing:0.336096px;}
.ws13_c00075{word-spacing:0.350100px;}
.ws18_c00075{word-spacing:0.371106px;}
.ws23_c00075{word-spacing:0.397572px;}
.ws7_c00075{word-spacing:0.413118px;}
.ws24_c00075{word-spacing:0.514504px;}
.ws21_c00075{word-spacing:0.812683px;}
.ws22_c00075{word-spacing:1.508433px;}
.ws17_c00075{word-spacing:2.534724px;}
.ws1d_c00075{word-spacing:4.320234px;}
.ws12_c00075{word-spacing:4.670334px;}
.ws1b_c00075{word-spacing:4.677336px;}
.ws1a_c00075{word-spacing:6.455844px;}
.ws8_c00075{word-spacing:6.833952px;}
.ws4_c00075{word-spacing:8.626464px;}
.ws15_c00075{word-spacing:8.962560px;}
.ws16_c00075{word-spacing:8.990568px;}
.ws1f_c00075{word-spacing:9.004572px;}
.ws11_c00075{word-spacing:12.246498px;}
.ws1c_c00075{word-spacing:13.296798px;}
.ws10_c00075{word-spacing:20.480850px;}
.wsf_c00075{word-spacing:20.515860px;}
.wsb_c00075{word-spacing:21.636180px;}
.wsa_c00075{word-spacing:21.944268px;}
.wsd_c00075{word-spacing:22.308372px;}
.wse_c00075{word-spacing:22.329378px;}
.wsc_c00075{word-spacing:39.232206px;}
._3_c00075{margin-left:-12.239496px;}
._2_c00075{margin-left:-2.520720px;}
._1_c00075{margin-left:-1.176336px;}
._0_c00075{width:1.001286px;}
._4_c00075{width:5.930694px;}
.fc0_c00075{color:rgb(0,0,0);}
.fs2_c00075{font-size:37.809600px;}
.fs1_c00075{font-size:46.562400px;}
.fs3_c00075{font-size:58.466400px;}
.fs0_c00075{font-size:70.020000px;}
.y0_c00075{bottom:0.000000px;}
.y2_c00075{bottom:109.740968px;}
.y1_c00075{bottom:129.810450px;}
.y20_c00075{bottom:149.429161px;}
.y1f_c00075{bottom:171.659548px;}
.y1e_c00075{bottom:189.480107px;}
.y1d_c00075{bottom:211.170450px;}
.y1c_c00075{bottom:225.840333px;}
.y1b_c00075{bottom:252.300891px;}
.y1a_c00075{bottom:282.540778px;}
.y19_c00075{bottom:333.027745px;}
.y18_c00075{bottom:363.356908px;}
.y17_c00075{bottom:393.507520px;}
.y16_c00075{bottom:423.747408px;}
.y15_c00075{bottom:453.898020px;}
.y14_c00075{bottom:504.387692px;}
.y13_c00075{bottom:534.716855px;}
.y12_c00075{bottom:585.206526px;}
.y11_c00075{bottom:615.537440px;}
.y10_c00075{bottom:645.688052px;}
.yf_c00075{bottom:696.268749px;}
.ye_c00075{bottom:726.599663px;}
.yd_c00075{bottom:777.089334px;}
.yc_c00075{bottom:807.329222px;}
.yb_c00075{bottom:837.569109px;}
.ya_c00075{bottom:867.719721px;}
.y9_c00075{bottom:897.959609px;}
.y8_c00075{bottom:928.110220px;}
.y7_c00075{bottom:958.350108px;}
.y6_c00075{bottom:988.500720px;}
.y5_c00075{bottom:1018.651332px;}
.y4_c00075{bottom:1069.321305px;}
.y3_c00075{bottom:1099.561193px;}
.h6_c00075{height:39.338549px;}
.h7_c00075{height:54.098549px;}
.h3_c00075{height:62.600889px;}
.h1_c00075{height:62.771836px;}
.h5_c00075{height:62.772304px;}
.h2_c00075{height:63.216299px;}
.h4_c00075{height:74.153282px;}
.h0_c00075{height:1263.000000px;}
.w0_c00075{width:892.500000px;}
.x0_c00075{left:0.000000px;}
.x2_c00075{left:82.709645px;}
.x3_c00075{left:216.629896px;}
.x1_c00075{left:436.680000px;}
@media print{
.v2_c00075{vertical-align:-13.120000pt;}
.v0_c00075{vertical-align:0.000000pt;}
.v1_c00075{vertical-align:28.809616pt;}
.ls14_c00075{letter-spacing:-0.124728pt;}
.ls10_c00075{letter-spacing:-0.067217pt;}
.ls9_c00075{letter-spacing:-0.062240pt;}
.ls6_c00075{letter-spacing:-0.056016pt;}
.ls12_c00075{letter-spacing:-0.046773pt;}
.lsc_c00075{letter-spacing:-0.043568pt;}
.ls8_c00075{letter-spacing:-0.031120pt;}
.lsb_c00075{letter-spacing:-0.024896pt;}
.ls13_c00075{letter-spacing:-0.020788pt;}
.lsd_c00075{letter-spacing:-0.018672pt;}
.lse_c00075{letter-spacing:-0.012448pt;}
.lsa_c00075{letter-spacing:-0.006224pt;}
.ls15_c00075{letter-spacing:-0.005197pt;}
.ls7_c00075{letter-spacing:0.000000pt;}
.ls2_c00075{letter-spacing:0.006224pt;}
.ls3_c00075{letter-spacing:0.018672pt;}
.lsf_c00075{letter-spacing:0.020694pt;}
.ls1_c00075{letter-spacing:0.024896pt;}
.ls5_c00075{letter-spacing:0.037344pt;}
.ls0_c00075{letter-spacing:0.049792pt;}
.ls11_c00075{letter-spacing:0.249457pt;}
.ls4_c00075{letter-spacing:0.295456pt;}
.ws0_c00075{word-spacing:-17.352512pt;}
.ws1_c00075{word-spacing:-11.526781pt;}
.ws2_c00075{word-spacing:-9.242347pt;}
.ws5_c00075{word-spacing:-0.354768pt;}
.ws19_c00075{word-spacing:-0.298752pt;}
.ws20_c00075{word-spacing:-0.049792pt;}
.ws3_c00075{word-spacing:0.000000pt;}
.ws9_c00075{word-spacing:0.012448pt;}
.ws26_c00075{word-spacing:0.015591pt;}
.ws6_c00075{word-spacing:0.018672pt;}
.ws25_c00075{word-spacing:0.135122pt;}
.ws1e_c00075{word-spacing:0.286304pt;}
.ws14_c00075{word-spacing:0.298752pt;}
.ws13_c00075{word-spacing:0.311200pt;}
.ws18_c00075{word-spacing:0.329872pt;}
.ws23_c00075{word-spacing:0.353397pt;}
.ws7_c00075{word-spacing:0.367216pt;}
.ws24_c00075{word-spacing:0.457337pt;}
.ws21_c00075{word-spacing:0.722385pt;}
.ws22_c00075{word-spacing:1.340829pt;}
.ws17_c00075{word-spacing:2.253088pt;}
.ws1d_c00075{word-spacing:3.840208pt;}
.ws12_c00075{word-spacing:4.151408pt;}
.ws1b_c00075{word-spacing:4.157632pt;}
.ws1a_c00075{word-spacing:5.738528pt;}
.ws8_c00075{word-spacing:6.074624pt;}
.ws4_c00075{word-spacing:7.667968pt;}
.ws15_c00075{word-spacing:7.966720pt;}
.ws16_c00075{word-spacing:7.991616pt;}
.ws1f_c00075{word-spacing:8.004064pt;}
.ws11_c00075{word-spacing:10.885776pt;}
.ws1c_c00075{word-spacing:11.819376pt;}
.ws10_c00075{word-spacing:18.205200pt;}
.wsf_c00075{word-spacing:18.236320pt;}
.wsb_c00075{word-spacing:19.232160pt;}
.wsa_c00075{word-spacing:19.506016pt;}
.wsd_c00075{word-spacing:19.829664pt;}
.wse_c00075{word-spacing:19.848336pt;}
.wsc_c00075{word-spacing:34.873072pt;}
._3_c00075{margin-left:-10.879552pt;}
._2_c00075{margin-left:-2.240640pt;}
._1_c00075{margin-left:-1.045632pt;}
._0_c00075{width:0.890032pt;}
._4_c00075{width:5.271728pt;}
.fs2_c00075{font-size:33.608533pt;}
.fs1_c00075{font-size:41.388800pt;}
.fs3_c00075{font-size:51.970133pt;}
.fs0_c00075{font-size:62.240000pt;}
.y0_c00075{bottom:0.000000pt;}
.y2_c00075{bottom:97.547527pt;}
.y1_c00075{bottom:115.387067pt;}
.y20_c00075{bottom:132.825921pt;}
.y1f_c00075{bottom:152.586265pt;}
.y1e_c00075{bottom:168.426762pt;}
.y1d_c00075{bottom:187.707067pt;}
.y1c_c00075{bottom:200.746963pt;}
.y1b_c00075{bottom:224.267459pt;}
.y1a_c00075{bottom:251.147359pt;}
.y19_c00075{bottom:296.024663pt;}
.y18_c00075{bottom:322.983919pt;}
.y17_c00075{bottom:349.784463pt;}
.y16_c00075{bottom:376.664363pt;}
.y15_c00075{bottom:403.464907pt;}
.y14_c00075{bottom:448.344615pt;}
.y13_c00075{bottom:475.303871pt;}
.y12_c00075{bottom:520.183579pt;}
.y11_c00075{bottom:547.144391pt;}
.y10_c00075{bottom:573.944935pt;}
.yf_c00075{bottom:618.905555pt;}
.ye_c00075{bottom:645.866367pt;}
.yd_c00075{bottom:690.746075pt;}
.yc_c00075{bottom:717.625975pt;}
.yb_c00075{bottom:744.505875pt;}
.ya_c00075{bottom:771.306419pt;}
.y9_c00075{bottom:798.186319pt;}
.y8_c00075{bottom:824.986863pt;}
.y7_c00075{bottom:851.866763pt;}
.y6_c00075{bottom:878.667307pt;}
.y5_c00075{bottom:905.467851pt;}
.y4_c00075{bottom:950.507827pt;}
.y3_c00075{bottom:977.387727pt;}
.h6_c00075{height:34.967599pt;}
.h7_c00075{height:48.087599pt;}
.h3_c00075{height:55.645234pt;}
.h1_c00075{height:55.797187pt;}
.h5_c00075{height:55.797603pt;}
.h2_c00075{height:56.192266pt;}
.h4_c00075{height:65.914029pt;}
.h0_c00075{height:1122.666667pt;}
.w0_c00075{width:793.333333pt;}
.x0_c00075{left:0.000000pt;}
.x2_c00075{left:73.519684pt;}
.x3_c00075{left:192.559908pt;}
.x1_c00075{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e89c5ea2df4f3919b1bb9a7d.woff2')format("woff");}.ff1_c00076{font-family:ff1_c00076;line-height:1.106934;font-style:normal;font-weight:normal;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_857b540b6f3e2aa48b3b2bc5.woff2')format("woff");}.ff2_c00076{font-family:ff2_c00076;line-height:1.104492;font-style:normal;font-weight:normal;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_dbba5d185720c8a324db9a7e.woff2')format("woff");}.ff3_c00076{font-family:ff3_c00076;line-height:1.133301;font-style:normal;font-weight:normal;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_40b27f282457d2261ce45b28.woff2')format("woff");}.ff4_c00076{font-family:ff4_c00076;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00076{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00076{vertical-align:-14.760000px;}
.v0_c00076{vertical-align:0.000000px;}
.v1_c00076{vertical-align:32.040684px;}
.ls10_c00076{letter-spacing:-0.707443px;}
.lse_c00076{letter-spacing:-0.198786px;}
.ls16_c00076{letter-spacing:-0.076006px;}
.lsd_c00076{letter-spacing:-0.075619px;}
.ls12_c00076{letter-spacing:-0.064313px;}
.ls2_c00076{letter-spacing:-0.063018px;}
.lsc_c00076{letter-spacing:-0.056016px;}
.ls14_c00076{letter-spacing:-0.052620px;}
.lsa_c00076{letter-spacing:-0.049014px;}
.ls6_c00076{letter-spacing:-0.042012px;}
.lsb_c00076{letter-spacing:-0.035010px;}
.ls15_c00076{letter-spacing:-0.029233px;}
.ls8_c00076{letter-spacing:-0.028008px;}
.ls4_c00076{letter-spacing:-0.021006px;}
.ls11_c00076{letter-spacing:-0.017540px;}
.ls7_c00076{letter-spacing:-0.014004px;}
.ls5_c00076{letter-spacing:-0.007002px;}
.ls3_c00076{letter-spacing:0.000000px;}
.ls0_c00076{letter-spacing:0.007002px;}
.ls13_c00076{letter-spacing:0.017540px;}
.ls9_c00076{letter-spacing:0.023281px;}
.ls1_c00076{letter-spacing:0.058466px;}
.lsf_c00076{letter-spacing:1.455813px;}
.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:-19.465560px;}
.ws1_c00076{word-spacing:-12.967628px;}
.ws2_c00076{word-spacing:-10.397640px;}
.ws28_c00076{word-spacing:-0.362492px;}
.ws20_c00076{word-spacing:-0.344952px;}
.ws15_c00076{word-spacing:-0.336096px;}
.ws24_c00076{word-spacing:-0.292332px;}
.ws26_c00076{word-spacing:-0.046773px;}
.ws23_c00076{word-spacing:-0.005847px;}
.ws3_c00076{word-spacing:0.000000px;}
.wsc_c00076{word-spacing:0.014004px;}
.ws13_c00076{word-spacing:0.021006px;}
.ws21_c00076{word-spacing:0.029233px;}
.ws12_c00076{word-spacing:0.035010px;}
.ws25_c00076{word-spacing:0.040926px;}
.ws22_c00076{word-spacing:0.076006px;}
.ws27_c00076{word-spacing:0.087700px;}
.ws1b_c00076{word-spacing:0.364104px;}
.ws14_c00076{word-spacing:0.385110px;}
.ws11_c00076{word-spacing:0.735210px;}
.wsf_c00076{word-spacing:1.442412px;}
.ws1e_c00076{word-spacing:2.011244px;}
.ws1f_c00076{word-spacing:2.519902px;}
.ws4_c00076{word-spacing:4.684338px;}
.ws1c_c00076{word-spacing:5.048442px;}
.ws10_c00076{word-spacing:5.377536px;}
.wsb_c00076{word-spacing:6.105744px;}
.wsa_c00076{word-spacing:6.126750px;}
.ws1a_c00076{word-spacing:6.161760px;}
.ws16_c00076{word-spacing:6.504858px;}
.ws19_c00076{word-spacing:6.840954px;}
.ws17_c00076{word-spacing:11.525292px;}
.ws18_c00076{word-spacing:14.046012px;}
.ws1d_c00076{word-spacing:14.389110px;}
.ws6_c00076{word-spacing:17.287938px;}
.ws7_c00076{word-spacing:17.308944px;}
.wsd_c00076{word-spacing:18.359244px;}
.wse_c00076{word-spacing:18.373248px;}
.ws5_c00076{word-spacing:19.430550px;}
.ws8_c00076{word-spacing:19.780650px;}
.ws9_c00076{word-spacing:23.400684px;}
._3_c00076{margin-left:-2.706156px;}
._1_c00076{margin-left:-1.204344px;}
._0_c00076{width:1.015290px;}
._2_c00076{width:5.930694px;}
.fc0_c00076{color:rgb(0,0,0);}
.fs2_c00076{font-size:37.809600px;}
.fs1_c00076{font-size:46.562400px;}
.fs3_c00076{font-size:58.466400px;}
.fs0_c00076{font-size:70.020000px;}
.y0_c00076{bottom:0.000000px;}
.y2_c00076{bottom:109.740968px;}
.y1_c00076{bottom:129.810450px;}
.y20_c00076{bottom:153.120600px;}
.y1f_c00076{bottom:170.940450px;}
.y1e_c00076{bottom:188.940450px;}
.y1d_c00076{bottom:207.480730px;}
.y1c_c00076{bottom:229.080450px;}
.y1b_c00076{bottom:243.751765px;}
.y1a_c00076{bottom:313.861041px;}
.y19_c00076{bottom:344.100929px;}
.y18_c00076{bottom:394.590868px;}
.y17_c00076{bottom:424.830756px;}
.y16_c00076{bottom:455.070643px;}
.y15_c00076{bottom:485.310531px;}
.y14_c00076{bottom:515.461143px;}
.y13_c00076{bottom:565.950814px;}
.y12_c00076{bottom:596.279977px;}
.y11_c00076{bottom:626.430589px;}
.y10_c00076{bottom:677.011287px;}
.yf_c00076{bottom:707.340778px;}
.ye_c00076{bottom:757.830504px;}
.yd_c00076{bottom:788.070391px;}
.yc_c00076{bottom:818.310279px;}
.yb_c00076{bottom:848.460891px;}
.ya_c00076{bottom:878.700779px;}
.y9_c00076{bottom:929.190279px;}
.y8_c00076{bottom:959.519442px;}
.y7_c00076{bottom:989.670054px;}
.y6_c00076{bottom:1019.909942px;}
.y5_c00076{bottom:1050.060553px;}
.y4_c00076{bottom:1080.300441px;}
.y3_c00076{bottom:1110.451053px;}
.h9_c00076{height:39.337949px;}
.h7_c00076{height:39.338549px;}
.h8_c00076{height:54.098549px;}
.h2_c00076{height:62.600889px;}
.h1_c00076{height:62.771836px;}
.h6_c00076{height:73.667112px;}
.h5_c00076{height:73.781150px;}
.h4_c00076{height:73.782248px;}
.h3_c00076{height:73.783148px;}
.h0_c00076{height:1263.000000px;}
.w0_c00076{width:892.500000px;}
.x0_c00076{left:0.000000px;}
.x2_c00076{left:82.709645px;}
.x1_c00076{left:436.680000px;}
@media print{
.v2_c00076{vertical-align:-13.120000pt;}
.v0_c00076{vertical-align:0.000000pt;}
.v1_c00076{vertical-align:28.480608pt;}
.ls10_c00076{letter-spacing:-0.628839pt;}
.lse_c00076{letter-spacing:-0.176698pt;}
.ls16_c00076{letter-spacing:-0.067561pt;}
.lsd_c00076{letter-spacing:-0.067217pt;}
.ls12_c00076{letter-spacing:-0.057167pt;}
.ls2_c00076{letter-spacing:-0.056016pt;}
.lsc_c00076{letter-spacing:-0.049792pt;}
.ls14_c00076{letter-spacing:-0.046773pt;}
.lsa_c00076{letter-spacing:-0.043568pt;}
.ls6_c00076{letter-spacing:-0.037344pt;}
.lsb_c00076{letter-spacing:-0.031120pt;}
.ls15_c00076{letter-spacing:-0.025985pt;}
.ls8_c00076{letter-spacing:-0.024896pt;}
.ls4_c00076{letter-spacing:-0.018672pt;}
.ls11_c00076{letter-spacing:-0.015591pt;}
.ls7_c00076{letter-spacing:-0.012448pt;}
.ls5_c00076{letter-spacing:-0.006224pt;}
.ls3_c00076{letter-spacing:0.000000pt;}
.ls0_c00076{letter-spacing:0.006224pt;}
.ls13_c00076{letter-spacing:0.015591pt;}
.ls9_c00076{letter-spacing:0.020694pt;}
.ls1_c00076{letter-spacing:0.051970pt;}
.lsf_c00076{letter-spacing:1.294056pt;}
.ws0_c00076{word-spacing:-17.302720pt;}
.ws1_c00076{word-spacing:-11.526781pt;}
.ws2_c00076{word-spacing:-9.242347pt;}
.ws28_c00076{word-spacing:-0.322215pt;}
.ws20_c00076{word-spacing:-0.306624pt;}
.ws15_c00076{word-spacing:-0.298752pt;}
.ws24_c00076{word-spacing:-0.259851pt;}
.ws26_c00076{word-spacing:-0.041576pt;}
.ws23_c00076{word-spacing:-0.005197pt;}
.ws3_c00076{word-spacing:0.000000pt;}
.wsc_c00076{word-spacing:0.012448pt;}
.ws13_c00076{word-spacing:0.018672pt;}
.ws21_c00076{word-spacing:0.025985pt;}
.ws12_c00076{word-spacing:0.031120pt;}
.ws25_c00076{word-spacing:0.036379pt;}
.ws22_c00076{word-spacing:0.067561pt;}
.ws27_c00076{word-spacing:0.077955pt;}
.ws1b_c00076{word-spacing:0.323648pt;}
.ws14_c00076{word-spacing:0.342320pt;}
.ws11_c00076{word-spacing:0.653520pt;}
.wsf_c00076{word-spacing:1.282144pt;}
.ws1e_c00076{word-spacing:1.787773pt;}
.ws1f_c00076{word-spacing:2.239913pt;}
.ws4_c00076{word-spacing:4.163856pt;}
.ws1c_c00076{word-spacing:4.487504pt;}
.ws10_c00076{word-spacing:4.780032pt;}
.wsb_c00076{word-spacing:5.427328pt;}
.wsa_c00076{word-spacing:5.446000pt;}
.ws1a_c00076{word-spacing:5.477120pt;}
.ws16_c00076{word-spacing:5.782096pt;}
.ws19_c00076{word-spacing:6.080848pt;}
.ws17_c00076{word-spacing:10.244704pt;}
.ws18_c00076{word-spacing:12.485344pt;}
.ws1d_c00076{word-spacing:12.790320pt;}
.ws6_c00076{word-spacing:15.367056pt;}
.ws7_c00076{word-spacing:15.385728pt;}
.wsd_c00076{word-spacing:16.319328pt;}
.wse_c00076{word-spacing:16.331776pt;}
.ws5_c00076{word-spacing:17.271600pt;}
.ws8_c00076{word-spacing:17.582800pt;}
.ws9_c00076{word-spacing:20.800608pt;}
._3_c00076{margin-left:-2.405472pt;}
._1_c00076{margin-left:-1.070528pt;}
._0_c00076{width:0.902480pt;}
._2_c00076{width:5.271728pt;}
.fs2_c00076{font-size:33.608533pt;}
.fs1_c00076{font-size:41.388800pt;}
.fs3_c00076{font-size:51.970133pt;}
.fs0_c00076{font-size:62.240000pt;}
.y0_c00076{bottom:0.000000pt;}
.y2_c00076{bottom:97.547527pt;}
.y1_c00076{bottom:115.387067pt;}
.y20_c00076{bottom:136.107200pt;}
.y1f_c00076{bottom:151.947067pt;}
.y1e_c00076{bottom:167.947067pt;}
.y1d_c00076{bottom:184.427316pt;}
.y1c_c00076{bottom:203.627067pt;}
.y1b_c00076{bottom:216.668236pt;}
.y1a_c00076{bottom:278.987592pt;}
.y19_c00076{bottom:305.867492pt;}
.y18_c00076{bottom:350.747439pt;}
.y17_c00076{bottom:377.627339pt;}
.y16_c00076{bottom:404.507239pt;}
.y15_c00076{bottom:431.387139pt;}
.y14_c00076{bottom:458.187683pt;}
.y13_c00076{bottom:503.067391pt;}
.y12_c00076{bottom:530.026647pt;}
.y11_c00076{bottom:556.827191pt;}
.y10_c00076{bottom:601.787811pt;}
.yf_c00076{bottom:628.747359pt;}
.ye_c00076{bottom:673.627115pt;}
.yd_c00076{bottom:700.507015pt;}
.yc_c00076{bottom:727.386915pt;}
.yb_c00076{bottom:754.187459pt;}
.ya_c00076{bottom:781.067359pt;}
.y9_c00076{bottom:825.946915pt;}
.y8_c00076{bottom:852.906171pt;}
.y7_c00076{bottom:879.706715pt;}
.y6_c00076{bottom:906.586615pt;}
.y5_c00076{bottom:933.387159pt;}
.y4_c00076{bottom:960.267059pt;}
.y3_c00076{bottom:987.067603pt;}
.h9_c00076{height:34.967066pt;}
.h7_c00076{height:34.967599pt;}
.h8_c00076{height:48.087599pt;}
.h2_c00076{height:55.645234pt;}
.h1_c00076{height:55.797187pt;}
.h6_c00076{height:65.481878pt;}
.h5_c00076{height:65.583244pt;}
.h4_c00076{height:65.584221pt;}
.h3_c00076{height:65.585020pt;}
.h0_c00076{height:1122.666667pt;}
.w0_c00076{width:793.333333pt;}
.x0_c00076{left:0.000000pt;}
.x2_c00076{left:73.519684pt;}
.x1_c00076{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_665b02ad7c49c918b9ec01b9.woff2')format("woff");}.ff1_c00077{font-family:ff1_c00077;line-height:1.106934;font-style:normal;font-weight:normal;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_4b72df1e1872fe8c53ff9fa5.woff2')format("woff");}.ff2_c00077{font-family:ff2_c00077;line-height:1.104492;font-style:normal;font-weight:normal;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_71f4419739fd18aeb8508b0e.woff2')format("woff");}.ff3_c00077{font-family:ff3_c00077;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00077;src:url('chunks/assets/font_c3997db7dbf02609abb0d1e4.woff2')format("woff");}.ff4_c00077{font-family:ff4_c00077;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00077;src:url('chunks/assets/font_5a1d1464dd5008b44d172333.woff2')format("woff");}.ff5_c00077{font-family:ff5_c00077;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00077;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff6_c00077{font-family:ff6_c00077;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00077{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00077{vertical-align:-14.760000px;}
.v0_c00077{vertical-align:0.000000px;}
.v1_c00077{vertical-align:32.037138px;}
.ls1f_c00077{letter-spacing:-0.344952px;}
.ls11_c00077{letter-spacing:-0.286485px;}
.ls17_c00077{letter-spacing:-0.257252px;}
.ls19_c00077{letter-spacing:-0.181246px;}
.ls1c_c00077{letter-spacing:-0.081853px;}
.ls12_c00077{letter-spacing:-0.076006px;}
.ls10_c00077{letter-spacing:-0.075619px;}
.ls1a_c00077{letter-spacing:-0.070160px;}
.ls7_c00077{letter-spacing:-0.063018px;}
.lsf_c00077{letter-spacing:-0.042012px;}
.ls1d_c00077{letter-spacing:-0.035080px;}
.lsc_c00077{letter-spacing:-0.035010px;}
.lsa_c00077{letter-spacing:-0.028008px;}
.lsd_c00077{letter-spacing:-0.021006px;}
.ls15_c00077{letter-spacing:-0.017540px;}
.ls9_c00077{letter-spacing:-0.014004px;}
.ls1b_c00077{letter-spacing:-0.011693px;}
.lse_c00077{letter-spacing:-0.007002px;}
.ls8_c00077{letter-spacing:0.000000px;}
.ls6_c00077{letter-spacing:0.005847px;}
.ls0_c00077{letter-spacing:0.007002px;}
.ls2_c00077{letter-spacing:0.014004px;}
.ls1_c00077{letter-spacing:0.021006px;}
.lsb_c00077{letter-spacing:0.023281px;}
.ls5_c00077{letter-spacing:0.052620px;}
.ls1e_c00077{letter-spacing:0.064313px;}
.ls3_c00077{letter-spacing:0.091026px;}
.ls14_c00077{letter-spacing:0.099393px;}
.ls16_c00077{letter-spacing:0.286485px;}
.ls4_c00077{letter-spacing:0.362492px;}
.ls18_c00077{letter-spacing:0.385878px;}
.ls13_c00077{letter-spacing:0.456038px;}
.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:-19.472562px;}
.ws3_c00077{word-spacing:-16.195193px;}
.ws1_c00077{word-spacing:-12.967628px;}
.ws2_c00077{word-spacing:-10.397640px;}
.ws26_c00077{word-spacing:-0.730830px;}
.ws1f_c00077{word-spacing:-0.105030px;}
.ws11_c00077{word-spacing:-0.021006px;}
.ws4_c00077{word-spacing:0.000000px;}
.ws2f_c00077{word-spacing:0.005847px;}
.ws14_c00077{word-spacing:0.007002px;}
.wsc_c00077{word-spacing:0.021006px;}
.ws2c_c00077{word-spacing:0.093546px;}
.ws1a_c00077{word-spacing:0.329094px;}
.ws8_c00077{word-spacing:0.371106px;}
.ws24_c00077{word-spacing:2.245110px;}
.ws25_c00077{word-spacing:2.788847px;}
.ws23_c00077{word-spacing:2.794694px;}
.ws2b_c00077{word-spacing:3.987408px;}
.ws1d_c00077{word-spacing:4.299228px;}
.ws1e_c00077{word-spacing:4.320234px;}
.ws2a_c00077{word-spacing:4.332360px;}
.ws18_c00077{word-spacing:4.670334px;}
.ws17_c00077{word-spacing:4.684338px;}
.ws20_c00077{word-spacing:5.412546px;}
.ws9_c00077{word-spacing:6.861960px;}
.wse_c00077{word-spacing:7.163046px;}
.wsd_c00077{word-spacing:7.177050px;}
.wsf_c00077{word-spacing:7.184052px;}
.ws15_c00077{word-spacing:10.096884px;}
.ws19_c00077{word-spacing:11.147184px;}
.ws7_c00077{word-spacing:15.096312px;}
.ws6_c00077{word-spacing:15.103314px;}
.ws5_c00077{word-spacing:15.117318px;}
.ws12_c00077{word-spacing:15.453414px;}
.ws13_c00077{word-spacing:15.852528px;}
.wsa_c00077{word-spacing:17.617032px;}
.wsb_c00077{word-spacing:17.645040px;}
.ws21_c00077{word-spacing:19.738257px;}
.ws29_c00077{word-spacing:19.761643px;}
.ws28_c00077{word-spacing:19.884423px;}
.ws22_c00077{word-spacing:19.890269px;}
.ws27_c00077{word-spacing:19.995509px;}
.ws2e_c00077{word-spacing:20.106595px;}
.ws2d_c00077{word-spacing:20.205988px;}
.ws10_c00077{word-spacing:22.322376px;}
.ws1b_c00077{word-spacing:26.964702px;}
.ws1c_c00077{word-spacing:27.027720px;}
.ws16_c00077{word-spacing:27.734922px;}
._2_c00077{margin-left:-10.082880px;}
._4_c00077{margin-left:-2.709774px;}
._1_c00077{margin-left:-1.015290px;}
._0_c00077{width:1.162332px;}
._3_c00077{width:5.930694px;}
.fc0_c00077{color:rgb(0,0,0);}
.fs2_c00077{font-size:37.809600px;}
.fs1_c00077{font-size:46.562400px;}
.fs3_c00077{font-size:58.466400px;}
.fs0_c00077{font-size:70.020000px;}
.y0_c00077{bottom:0.000000px;}
.y2_c00077{bottom:109.740968px;}
.y1_c00077{bottom:129.810450px;}
.y21_c00077{bottom:153.839891px;}
.y20_c00077{bottom:175.350450px;}
.y1f_c00077{bottom:193.979548px;}
.y1e_c00077{bottom:211.800107px;}
.y1d_c00077{bottom:233.490450px;}
.y1c_c00077{bottom:247.620451px;}
.y1b_c00077{bottom:265.530171px;}
.y1a_c00077{bottom:283.439891px;}
.y19_c00077{bottom:304.950450px;}
.y18_c00077{bottom:319.710432px;}
.y17_c00077{bottom:383.971287px;}
.y16_c00077{bottom:414.300450px;}
.y15_c00077{bottom:464.789447px;}
.y14_c00077{bottom:495.029334px;}
.y13_c00077{bottom:525.269221px;}
.y12_c00077{bottom:575.758893px;}
.y11_c00077{bottom:606.089807px;}
.y10_c00077{bottom:636.240419px;}
.yf_c00077{bottom:666.480306px;}
.ye_c00077{bottom:696.630918px;}
.yd_c00077{bottom:747.120590px;}
.yc_c00077{bottom:777.449753px;}
.yb_c00077{bottom:828.030616px;}
.ya_c00077{bottom:858.270504px;}
.y9_c00077{bottom:888.510392px;}
.y8_c00077{bottom:918.569978px;}
.y7_c00077{bottom:969.150675px;}
.y6_c00077{bottom:999.479838px;}
.y5_c00077{bottom:1029.630450px;}
.y4_c00077{bottom:1080.211166px;}
.y3_c00077{bottom:1110.451053px;}
.h6_c00077{height:39.338549px;}
.h7_c00077{height:54.098549px;}
.h1_c00077{height:62.771836px;}
.h5_c00077{height:62.772508px;}
.h3_c00077{height:73.782398px;}
.h2_c00077{height:74.075164px;}
.h4_c00077{height:74.082040px;}
.h0_c00077{height:1263.000000px;}
.w0_c00077{width:892.500000px;}
.x0_c00077{left:0.000000px;}
.x2_c00077{left:82.709645px;}
.x1_c00077{left:436.680000px;}
@media print{
.v2_c00077{vertical-align:-13.120000pt;}
.v0_c00077{vertical-align:0.000000pt;}
.v1_c00077{vertical-align:28.477456pt;}
.ls1f_c00077{letter-spacing:-0.306624pt;}
.ls11_c00077{letter-spacing:-0.254654pt;}
.ls17_c00077{letter-spacing:-0.228669pt;}
.ls19_c00077{letter-spacing:-0.161107pt;}
.ls1c_c00077{letter-spacing:-0.072758pt;}
.ls12_c00077{letter-spacing:-0.067561pt;}
.ls10_c00077{letter-spacing:-0.067217pt;}
.ls1a_c00077{letter-spacing:-0.062364pt;}
.ls7_c00077{letter-spacing:-0.056016pt;}
.lsf_c00077{letter-spacing:-0.037344pt;}
.ls1d_c00077{letter-spacing:-0.031182pt;}
.lsc_c00077{letter-spacing:-0.031120pt;}
.lsa_c00077{letter-spacing:-0.024896pt;}
.lsd_c00077{letter-spacing:-0.018672pt;}
.ls15_c00077{letter-spacing:-0.015591pt;}
.ls9_c00077{letter-spacing:-0.012448pt;}
.ls1b_c00077{letter-spacing:-0.010394pt;}
.lse_c00077{letter-spacing:-0.006224pt;}
.ls8_c00077{letter-spacing:0.000000pt;}
.ls6_c00077{letter-spacing:0.005197pt;}
.ls0_c00077{letter-spacing:0.006224pt;}
.ls2_c00077{letter-spacing:0.012448pt;}
.ls1_c00077{letter-spacing:0.018672pt;}
.lsb_c00077{letter-spacing:0.020694pt;}
.ls5_c00077{letter-spacing:0.046773pt;}
.ls1e_c00077{letter-spacing:0.057167pt;}
.ls3_c00077{letter-spacing:0.080912pt;}
.ls14_c00077{letter-spacing:0.088349pt;}
.ls16_c00077{letter-spacing:0.254654pt;}
.ls4_c00077{letter-spacing:0.322215pt;}
.ls18_c00077{letter-spacing:0.343003pt;}
.ls13_c00077{letter-spacing:0.405367pt;}
.ws0_c00077{word-spacing:-17.308944pt;}
.ws3_c00077{word-spacing:-14.395727pt;}
.ws1_c00077{word-spacing:-11.526781pt;}
.ws2_c00077{word-spacing:-9.242347pt;}
.ws26_c00077{word-spacing:-0.649627pt;}
.ws1f_c00077{word-spacing:-0.093360pt;}
.ws11_c00077{word-spacing:-0.018672pt;}
.ws4_c00077{word-spacing:0.000000pt;}
.ws2f_c00077{word-spacing:0.005197pt;}
.ws14_c00077{word-spacing:0.006224pt;}
.wsc_c00077{word-spacing:0.018672pt;}
.ws2c_c00077{word-spacing:0.083152pt;}
.ws1a_c00077{word-spacing:0.292528pt;}
.ws8_c00077{word-spacing:0.329872pt;}
.ws24_c00077{word-spacing:1.995653pt;}
.ws25_c00077{word-spacing:2.478975pt;}
.ws23_c00077{word-spacing:2.484172pt;}
.ws2b_c00077{word-spacing:3.544363pt;}
.ws1d_c00077{word-spacing:3.821536pt;}
.ws1e_c00077{word-spacing:3.840208pt;}
.ws2a_c00077{word-spacing:3.850987pt;}
.ws18_c00077{word-spacing:4.151408pt;}
.ws17_c00077{word-spacing:4.163856pt;}
.ws20_c00077{word-spacing:4.811152pt;}
.ws9_c00077{word-spacing:6.099520pt;}
.wse_c00077{word-spacing:6.367152pt;}
.wsd_c00077{word-spacing:6.379600pt;}
.wsf_c00077{word-spacing:6.385824pt;}
.ws15_c00077{word-spacing:8.975008pt;}
.ws19_c00077{word-spacing:9.908608pt;}
.ws7_c00077{word-spacing:13.418944pt;}
.ws6_c00077{word-spacing:13.425168pt;}
.ws5_c00077{word-spacing:13.437616pt;}
.ws12_c00077{word-spacing:13.736368pt;}
.ws13_c00077{word-spacing:14.091136pt;}
.wsa_c00077{word-spacing:15.659584pt;}
.wsb_c00077{word-spacing:15.684480pt;}
.ws21_c00077{word-spacing:17.545117pt;}
.ws29_c00077{word-spacing:17.565905pt;}
.ws28_c00077{word-spacing:17.675042pt;}
.ws22_c00077{word-spacing:17.680239pt;}
.ws27_c00077{word-spacing:17.773786pt;}
.ws2e_c00077{word-spacing:17.872529pt;}
.ws2d_c00077{word-spacing:17.960878pt;}
.ws10_c00077{word-spacing:19.842112pt;}
.ws1b_c00077{word-spacing:23.968624pt;}
.ws1c_c00077{word-spacing:24.024640pt;}
.ws16_c00077{word-spacing:24.653264pt;}
._2_c00077{margin-left:-8.962560pt;}
._4_c00077{margin-left:-2.408688pt;}
._1_c00077{margin-left:-0.902480pt;}
._0_c00077{width:1.033184pt;}
._3_c00077{width:5.271728pt;}
.fs2_c00077{font-size:33.608533pt;}
.fs1_c00077{font-size:41.388800pt;}
.fs3_c00077{font-size:51.970133pt;}
.fs0_c00077{font-size:62.240000pt;}
.y0_c00077{bottom:0.000000pt;}
.y2_c00077{bottom:97.547527pt;}
.y1_c00077{bottom:115.387067pt;}
.y21_c00077{bottom:136.746570pt;}
.y20_c00077{bottom:155.867067pt;}
.y1f_c00077{bottom:172.426265pt;}
.y1e_c00077{bottom:188.266762pt;}
.y1d_c00077{bottom:207.547067pt;}
.y1c_c00077{bottom:220.107068pt;}
.y1b_c00077{bottom:236.026819pt;}
.y1a_c00077{bottom:251.946570pt;}
.y19_c00077{bottom:271.067067pt;}
.y18_c00077{bottom:284.187051pt;}
.y17_c00077{bottom:341.307811pt;}
.y16_c00077{bottom:368.267067pt;}
.y15_c00077{bottom:413.146175pt;}
.y14_c00077{bottom:440.026075pt;}
.y13_c00077{bottom:466.905975pt;}
.y12_c00077{bottom:511.785683pt;}
.y11_c00077{bottom:538.746495pt;}
.y10_c00077{bottom:565.547039pt;}
.yf_c00077{bottom:592.426939pt;}
.ye_c00077{bottom:619.227483pt;}
.yd_c00077{bottom:664.107191pt;}
.yc_c00077{bottom:691.066447pt;}
.yb_c00077{bottom:736.027215pt;}
.ya_c00077{bottom:762.907115pt;}
.y9_c00077{bottom:789.787015pt;}
.y8_c00077{bottom:816.506647pt;}
.y7_c00077{bottom:861.467267pt;}
.y6_c00077{bottom:888.426523pt;}
.y5_c00077{bottom:915.227067pt;}
.y4_c00077{bottom:960.187703pt;}
.y3_c00077{bottom:987.067603pt;}
.h6_c00077{height:34.967599pt;}
.h7_c00077{height:48.087599pt;}
.h1_c00077{height:55.797187pt;}
.h5_c00077{height:55.797785pt;}
.h3_c00077{height:65.584354pt;}
.h2_c00077{height:65.844590pt;}
.h4_c00077{height:65.850702pt;}
.h0_c00077{height:1122.666667pt;}
.w0_c00077{width:793.333333pt;}
.x0_c00077{left:0.000000pt;}
.x2_c00077{left:73.519684pt;}
.x1_c00077{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a4f7b6aa04cbf32d0e8a6c8b.woff2')format("woff");}.ff1_c00078{font-family:ff1_c00078;line-height:1.106934;font-style:normal;font-weight:normal;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_79d68d7a27af2443f3d8622a.woff2')format("woff");}.ff2_c00078{font-family:ff2_c00078;line-height:1.104492;font-style:normal;font-weight:normal;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_71f4419739fd18aeb8508b0e.woff2')format("woff");}.ff3_c00078{font-family:ff3_c00078;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00078;src:url('chunks/assets/font_eed3325c9ff9fe092fea68e7.woff2')format("woff");}.ff4_c00078{font-family:ff4_c00078;line-height:1.133301;font-style:normal;font-weight:normal;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_360af97ac122dbf6113286bb.woff2')format("woff");}.ff5_c00078{font-family:ff5_c00078;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00078{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00078{vertical-align:-14.760000px;}
.v0_c00078{vertical-align:0.000000px;}
.v1_c00078{vertical-align:32.042034px;}
.ls11_c00078{letter-spacing:-0.374185px;}
.ls10_c00078{letter-spacing:-0.140319px;}
.ls9_c00078{letter-spacing:-0.105030px;}
.lse_c00078{letter-spacing:-0.075619px;}
.ls3_c00078{letter-spacing:-0.063018px;}
.lsf_c00078{letter-spacing:-0.058466px;}
.lsd_c00078{letter-spacing:-0.049014px;}
.lsb_c00078{letter-spacing:-0.042012px;}
.ls7_c00078{letter-spacing:-0.035010px;}
.ls6_c00078{letter-spacing:-0.028008px;}
.ls5_c00078{letter-spacing:-0.021006px;}
.lsc_c00078{letter-spacing:-0.014004px;}
.lsa_c00078{letter-spacing:-0.007002px;}
.ls4_c00078{letter-spacing:0.000000px;}
.ls1_c00078{letter-spacing:0.014004px;}
.ls2_c00078{letter-spacing:0.017733px;}
.ls8_c00078{letter-spacing:0.023281px;}
.ls0_c00078{letter-spacing:0.028008px;}
.ls13_c00078{letter-spacing:0.315719px;}
.ls12_c00078{letter-spacing:11.892066px;}
.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:-19.465560px;}
.ws1_c00078{word-spacing:-12.967628px;}
.ws2_c00078{word-spacing:-10.397640px;}
.ws1f_c00078{word-spacing:-0.304025px;}
.ws7_c00078{word-spacing:-0.028008px;}
.ws12_c00078{word-spacing:-0.014004px;}
.ws3_c00078{word-spacing:0.000000px;}
.ws8_c00078{word-spacing:0.014004px;}
.ws1a_c00078{word-spacing:0.357102px;}
.ws17_c00078{word-spacing:0.364104px;}
.ws13_c00078{word-spacing:0.392112px;}
.ws4_c00078{word-spacing:2.170620px;}
.ws19_c00078{word-spacing:3.963132px;}
.ws1c_c00078{word-spacing:5.472455px;}
.ws1d_c00078{word-spacing:5.554308px;}
.ws16_c00078{word-spacing:5.762646px;}
.ws15_c00078{word-spacing:5.776650px;}
.ws1e_c00078{word-spacing:5.788174px;}
.ws9_c00078{word-spacing:8.297370px;}
.ws5_c00078{word-spacing:8.598456px;}
.wsf_c00078{word-spacing:8.626464px;}
.wsd_c00078{word-spacing:9.347670px;}
.wse_c00078{word-spacing:9.361674px;}
.ws11_c00078{word-spacing:10.103886px;}
.ws18_c00078{word-spacing:12.596598px;}
.wsa_c00078{word-spacing:13.674906px;}
.ws14_c00078{word-spacing:14.046012px;}
.ws10_c00078{word-spacing:15.117318px;}
.ws1b_c00078{word-spacing:18.016146px;}
.ws6_c00078{word-spacing:22.336380px;}
.wsc_c00078{word-spacing:31.326948px;}
.wsb_c00078{word-spacing:31.347954px;}
._5_c00078{margin-left:-12.932768px;}
._4_c00078{margin-left:-11.816059px;}
._0_c00078{margin-left:-2.163618px;}
._2_c00078{margin-left:-1.085310px;}
._1_c00078{width:1.001286px;}
._3_c00078{width:5.930694px;}
.fc0_c00078{color:rgb(0,0,0);}
.fs2_c00078{font-size:37.809600px;}
.fs1_c00078{font-size:46.562400px;}
.fs3_c00078{font-size:58.466400px;}
.fs0_c00078{font-size:70.020000px;}
.y0_c00078{bottom:0.000000px;}
.y2_c00078{bottom:109.740968px;}
.y1_c00078{bottom:129.810450px;}
.y1e_c00078{bottom:149.430623px;}
.y1d_c00078{bottom:171.661010px;}
.y1c_c00078{bottom:189.570730px;}
.y1b_c00078{bottom:211.170450px;}
.y1a_c00078{bottom:225.838137px;}
.y19_c00078{bottom:323.577304px;}
.y18_c00078{bottom:353.906467px;}
.y17_c00078{bottom:404.396139px;}
.y16_c00078{bottom:434.636026px;}
.y15_c00078{bottom:485.216724px;}
.y14_c00078{bottom:515.456611px;}
.y13_c00078{bottom:565.946283px;}
.y12_c00078{bottom:596.275446px;}
.y11_c00078{bottom:626.426058px;}
.y10_c00078{bottom:677.006755px;}
.yf_c00078{bottom:727.587453px;}
.ye_c00078{bottom:757.918367px;}
.yd_c00078{bottom:788.068978px;}
.yc_c00078{bottom:818.308866px;}
.yb_c00078{bottom:848.459478px;}
.ya_c00078{bottom:878.699365px;}
.y9_c00078{bottom:908.849978px;}
.y8_c00078{bottom:959.430675px;}
.y7_c00078{bottom:989.670562px;}
.y6_c00078{bottom:1019.909942px;}
.y5_c00078{bottom:1050.060553px;}
.y4_c00078{bottom:1080.300441px;}
.y3_c00078{bottom:1110.451053px;}
.h5_c00078{height:39.338549px;}
.h6_c00078{height:54.098549px;}
.h2_c00078{height:62.600889px;}
.h1_c00078{height:62.771836px;}
.h4_c00078{height:62.781088px;}
.h3_c00078{height:74.080060px;}
.h0_c00078{height:1263.000000px;}
.w0_c00078{width:892.500000px;}
.x0_c00078{left:0.000000px;}
.x2_c00078{left:82.709645px;}
.x1_c00078{left:436.680000px;}
@media print{
.v2_c00078{vertical-align:-13.120000pt;}
.v0_c00078{vertical-align:0.000000pt;}
.v1_c00078{vertical-align:28.481808pt;}
.ls11_c00078{letter-spacing:-0.332609pt;}
.ls10_c00078{letter-spacing:-0.124728pt;}
.ls9_c00078{letter-spacing:-0.093360pt;}
.lse_c00078{letter-spacing:-0.067217pt;}
.ls3_c00078{letter-spacing:-0.056016pt;}
.lsf_c00078{letter-spacing:-0.051970pt;}
.lsd_c00078{letter-spacing:-0.043568pt;}
.lsb_c00078{letter-spacing:-0.037344pt;}
.ls7_c00078{letter-spacing:-0.031120pt;}
.ls6_c00078{letter-spacing:-0.024896pt;}
.ls5_c00078{letter-spacing:-0.018672pt;}
.lsc_c00078{letter-spacing:-0.012448pt;}
.lsa_c00078{letter-spacing:-0.006224pt;}
.ls4_c00078{letter-spacing:0.000000pt;}
.ls1_c00078{letter-spacing:0.012448pt;}
.ls2_c00078{letter-spacing:0.015763pt;}
.ls8_c00078{letter-spacing:0.020694pt;}
.ls0_c00078{letter-spacing:0.024896pt;}
.ls13_c00078{letter-spacing:0.280639pt;}
.ls12_c00078{letter-spacing:10.570725pt;}
.ws0_c00078{word-spacing:-17.302720pt;}
.ws1_c00078{word-spacing:-11.526781pt;}
.ws2_c00078{word-spacing:-9.242347pt;}
.ws1f_c00078{word-spacing:-0.270245pt;}
.ws7_c00078{word-spacing:-0.024896pt;}
.ws12_c00078{word-spacing:-0.012448pt;}
.ws3_c00078{word-spacing:0.000000pt;}
.ws8_c00078{word-spacing:0.012448pt;}
.ws1a_c00078{word-spacing:0.317424pt;}
.ws17_c00078{word-spacing:0.323648pt;}
.ws13_c00078{word-spacing:0.348544pt;}
.ws4_c00078{word-spacing:1.929440pt;}
.ws19_c00078{word-spacing:3.522784pt;}
.ws1c_c00078{word-spacing:4.864404pt;}
.ws1d_c00078{word-spacing:4.937163pt;}
.ws16_c00078{word-spacing:5.122352pt;}
.ws15_c00078{word-spacing:5.134800pt;}
.ws1e_c00078{word-spacing:5.145043pt;}
.ws9_c00078{word-spacing:7.375440pt;}
.ws5_c00078{word-spacing:7.643072pt;}
.wsf_c00078{word-spacing:7.667968pt;}
.wsd_c00078{word-spacing:8.309040pt;}
.wse_c00078{word-spacing:8.321488pt;}
.ws11_c00078{word-spacing:8.981232pt;}
.ws18_c00078{word-spacing:11.196976pt;}
.wsa_c00078{word-spacing:12.155472pt;}
.ws14_c00078{word-spacing:12.485344pt;}
.ws10_c00078{word-spacing:13.437616pt;}
.ws1b_c00078{word-spacing:16.014352pt;}
.ws6_c00078{word-spacing:19.854560pt;}
.wsc_c00078{word-spacing:27.846176pt;}
.wsb_c00078{word-spacing:27.864848pt;}
._5_c00078{margin-left:-11.495793pt;}
._4_c00078{margin-left:-10.503164pt;}
._0_c00078{margin-left:-1.923216pt;}
._2_c00078{margin-left:-0.964720pt;}
._1_c00078{width:0.890032pt;}
._3_c00078{width:5.271728pt;}
.fs2_c00078{font-size:33.608533pt;}
.fs1_c00078{font-size:41.388800pt;}
.fs3_c00078{font-size:51.970133pt;}
.fs0_c00078{font-size:62.240000pt;}
.y0_c00078{bottom:0.000000pt;}
.y2_c00078{bottom:97.547527pt;}
.y1_c00078{bottom:115.387067pt;}
.y1e_c00078{bottom:132.827221pt;}
.y1d_c00078{bottom:152.587564pt;}
.y1c_c00078{bottom:168.507316pt;}
.y1b_c00078{bottom:187.707067pt;}
.y1a_c00078{bottom:200.745011pt;}
.y19_c00078{bottom:287.624271pt;}
.y18_c00078{bottom:314.583527pt;}
.y17_c00078{bottom:359.463235pt;}
.y16_c00078{bottom:386.343135pt;}
.y15_c00078{bottom:431.303755pt;}
.y14_c00078{bottom:458.183655pt;}
.y13_c00078{bottom:503.063363pt;}
.y12_c00078{bottom:530.022619pt;}
.y11_c00078{bottom:556.823163pt;}
.y10_c00078{bottom:601.783783pt;}
.yf_c00078{bottom:646.744403pt;}
.ye_c00078{bottom:673.705215pt;}
.yd_c00078{bottom:700.505759pt;}
.yc_c00078{bottom:727.385659pt;}
.yb_c00078{bottom:754.186203pt;}
.ya_c00078{bottom:781.066103pt;}
.y9_c00078{bottom:807.866647pt;}
.y8_c00078{bottom:852.827267pt;}
.y7_c00078{bottom:879.707167pt;}
.y6_c00078{bottom:906.586615pt;}
.y5_c00078{bottom:933.387159pt;}
.y4_c00078{bottom:960.267059pt;}
.y3_c00078{bottom:987.067603pt;}
.h5_c00078{height:34.967599pt;}
.h6_c00078{height:48.087599pt;}
.h2_c00078{height:55.645234pt;}
.h1_c00078{height:55.797187pt;}
.h4_c00078{height:55.805412pt;}
.h3_c00078{height:65.848942pt;}
.h0_c00078{height:1122.666667pt;}
.w0_c00078{width:793.333333pt;}
.x0_c00078{left:0.000000pt;}
.x2_c00078{left:73.519684pt;}
.x1_c00078{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_985c6b639f95792962c21d95.woff2')format("woff");}.ff1_c00079{font-family:ff1_c00079;line-height:1.106934;font-style:normal;font-weight:normal;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_b270d3fd29aeab0647643191.woff2')format("woff");}.ff2_c00079{font-family:ff2_c00079;line-height:1.104492;font-style:normal;font-weight:normal;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_5567481f2b8039746e90a2ec.woff2')format("woff");}.ff3_c00079{font-family:ff3_c00079;line-height:1.133301;font-style:normal;font-weight:normal;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_bc32b0bb536d4a0934df3f6e.woff2')format("woff");}.ff4_c00079{font-family:ff4_c00079;line-height:1.133301;font-style:normal;font-weight:normal;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_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff5_c00079{font-family:ff5_c00079;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00079;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff6_c00079{font-family:ff6_c00079;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00079{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00079{vertical-align:-14.760000px;}
.v0_c00079{vertical-align:0.000000px;}
.v1_c00079{vertical-align:32.397306px;}
.ls19_c00079{letter-spacing:-0.251406px;}
.ls13_c00079{letter-spacing:-0.134473px;}
.ls16_c00079{letter-spacing:-0.128626px;}
.ls12_c00079{letter-spacing:-0.116933px;}
.ls18_c00079{letter-spacing:-0.111086px;}
.ls11_c00079{letter-spacing:-0.075619px;}
.ls7_c00079{letter-spacing:-0.063018px;}
.lsc_c00079{letter-spacing:-0.056016px;}
.ls14_c00079{letter-spacing:-0.052620px;}
.ls10_c00079{letter-spacing:-0.042012px;}
.ls17_c00079{letter-spacing:-0.040926px;}
.lsb_c00079{letter-spacing:-0.035010px;}
.lsa_c00079{letter-spacing:-0.028008px;}
.ls15_c00079{letter-spacing:-0.023387px;}
.lse_c00079{letter-spacing:-0.021006px;}
.ls9_c00079{letter-spacing:-0.014004px;}
.lsf_c00079{letter-spacing:-0.007002px;}
.ls8_c00079{letter-spacing:0.000000px;}
.ls0_c00079{letter-spacing:0.007002px;}
.ls1_c00079{letter-spacing:0.014004px;}
.ls2_c00079{letter-spacing:0.021006px;}
.lsd_c00079{letter-spacing:0.023281px;}
.ls4_c00079{letter-spacing:0.028008px;}
.ls3_c00079{letter-spacing:0.035010px;}
.ls6_c00079{letter-spacing:0.111086px;}
.ls5_c00079{letter-spacing:0.126036px;}
.ls1a_c00079{letter-spacing:0.263099px;}
.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;}
}
.ws2_c00079{word-spacing:-58.466400px;}
.ws3_c00079{word-spacing:-16.084107px;}
.ws0_c00079{word-spacing:-12.967628px;}
.ws1_c00079{word-spacing:-10.397640px;}
.ws27_c00079{word-spacing:-0.251406px;}
.wsc_c00079{word-spacing:-0.028008px;}
.ws9_c00079{word-spacing:-0.021006px;}
.ws4_c00079{word-spacing:0.000000px;}
.ws6_c00079{word-spacing:0.014004px;}
.ws22_c00079{word-spacing:0.035080px;}
.wsd_c00079{word-spacing:0.042012px;}
.ws21_c00079{word-spacing:0.064313px;}
.ws26_c00079{word-spacing:0.263099px;}
.wse_c00079{word-spacing:0.343098px;}
.ws13_c00079{word-spacing:0.364104px;}
.ws10_c00079{word-spacing:0.371106px;}
.wsa_c00079{word-spacing:0.406116px;}
.ws19_c00079{word-spacing:1.428408px;}
.ws1a_c00079{word-spacing:1.442412px;}
.ws7_c00079{word-spacing:5.048442px;}
.ws8_c00079{word-spacing:5.062446px;}
.ws17_c00079{word-spacing:5.356530px;}
.ws18_c00079{word-spacing:5.391540px;}
.ws14_c00079{word-spacing:7.149042px;}
.ws15_c00079{word-spacing:7.191054px;}
.wsb_c00079{word-spacing:7.583166px;}
.ws1b_c00079{word-spacing:8.297370px;}
.ws5_c00079{word-spacing:8.640468px;}
.ws23_c00079{word-spacing:9.623569px;}
.ws25_c00079{word-spacing:9.775582px;}
.ws24_c00079{word-spacing:9.863282px;}
.ws1c_c00079{word-spacing:10.096884px;}
.ws1e_c00079{word-spacing:10.797084px;}
.wsf_c00079{word-spacing:11.483280px;}
.ws1f_c00079{word-spacing:11.652354px;}
.ws20_c00079{word-spacing:11.669893px;}
.ws16_c00079{word-spacing:15.481422px;}
.ws1d_c00079{word-spacing:16.230636px;}
.ws11_c00079{word-spacing:20.158758px;}
.ws12_c00079{word-spacing:33.826662px;}
._2_c00079{margin-left:-16.202628px;}
._4_c00079{margin-left:-2.707920px;}
._1_c00079{margin-left:-1.106316px;}
._0_c00079{width:1.099314px;}
._3_c00079{width:5.930694px;}
.fc0_c00079{color:rgb(0,0,0);}
.fs2_c00079{font-size:37.809600px;}
.fs1_c00079{font-size:46.562400px;}
.fs3_c00079{font-size:58.466400px;}
.fs0_c00079{font-size:70.020000px;}
.y0_c00079{bottom:0.000000px;}
.y2_c00079{bottom:109.740968px;}
.y1_c00079{bottom:129.810450px;}
.y1f_c00079{bottom:149.429647px;}
.y1e_c00079{bottom:187.770450px;}
.y1d_c00079{bottom:209.280600px;}
.y1c_c00079{bottom:243.930730px;}
.y1b_c00079{bottom:265.530450px;}
.y1a_c00079{bottom:280.198125px;}
.y19_c00079{bottom:303.148931px;}
.y18_c00079{bottom:333.388818px;}
.y17_c00079{bottom:363.628706px;}
.y16_c00079{bottom:414.209403px;}
.y15_c00079{bottom:444.449291px;}
.y14_c00079{bottom:474.599903px;}
.y13_c00079{bottom:525.181057px;}
.y12_c00079{bottom:555.420945px;}
.y11_c00079{bottom:585.660832px;}
.y10_c00079{bottom:615.811444px;}
.yf_c00079{bottom:646.051332px;}
.ye_c00079{bottom:696.541003px;}
.yd_c00079{bottom:726.870166px;}
.yc_c00079{bottom:757.020778px;}
.yb_c00079{bottom:807.511274px;}
.ya_c00079{bottom:837.840437px;}
.y9_c00079{bottom:867.991049px;}
.y8_c00079{bottom:918.480720px;}
.y7_c00079{bottom:948.809883px;}
.y6_c00079{bottom:999.390581px;}
.y5_c00079{bottom:1029.630468px;}
.y4_c00079{bottom:1080.211166px;}
.y3_c00079{bottom:1110.451053px;}
.h8_c00079{height:39.337949px;}
.h6_c00079{height:39.338549px;}
.h7_c00079{height:54.098549px;}
.h2_c00079{height:62.600889px;}
.h1_c00079{height:62.771836px;}
.h5_c00079{height:62.781136px;}
.h4_c00079{height:73.666356px;}
.h3_c00079{height:74.026092px;}
.h0_c00079{height:1263.000000px;}
.w0_c00079{width:892.500000px;}
.x0_c00079{left:0.000000px;}
.x2_c00079{left:82.709645px;}
.x1_c00079{left:436.680000px;}
@media print{
.v2_c00079{vertical-align:-13.120000pt;}
.v0_c00079{vertical-align:0.000000pt;}
.v1_c00079{vertical-align:28.797605pt;}
.ls19_c00079{letter-spacing:-0.223472pt;}
.ls13_c00079{letter-spacing:-0.119531pt;}
.ls16_c00079{letter-spacing:-0.114334pt;}
.ls12_c00079{letter-spacing:-0.103940pt;}
.ls18_c00079{letter-spacing:-0.098743pt;}
.ls11_c00079{letter-spacing:-0.067217pt;}
.ls7_c00079{letter-spacing:-0.056016pt;}
.lsc_c00079{letter-spacing:-0.049792pt;}
.ls14_c00079{letter-spacing:-0.046773pt;}
.ls10_c00079{letter-spacing:-0.037344pt;}
.ls17_c00079{letter-spacing:-0.036379pt;}
.lsb_c00079{letter-spacing:-0.031120pt;}
.lsa_c00079{letter-spacing:-0.024896pt;}
.ls15_c00079{letter-spacing:-0.020788pt;}
.lse_c00079{letter-spacing:-0.018672pt;}
.ls9_c00079{letter-spacing:-0.012448pt;}
.lsf_c00079{letter-spacing:-0.006224pt;}
.ls8_c00079{letter-spacing:0.000000pt;}
.ls0_c00079{letter-spacing:0.006224pt;}
.ls1_c00079{letter-spacing:0.012448pt;}
.ls2_c00079{letter-spacing:0.018672pt;}
.lsd_c00079{letter-spacing:0.020694pt;}
.ls4_c00079{letter-spacing:0.024896pt;}
.ls3_c00079{letter-spacing:0.031120pt;}
.ls6_c00079{letter-spacing:0.098743pt;}
.ls5_c00079{letter-spacing:0.112032pt;}
.ls1a_c00079{letter-spacing:0.233866pt;}
.ws2_c00079{word-spacing:-51.970133pt;}
.ws3_c00079{word-spacing:-14.296984pt;}
.ws0_c00079{word-spacing:-11.526781pt;}
.ws1_c00079{word-spacing:-9.242347pt;}
.ws27_c00079{word-spacing:-0.223472pt;}
.wsc_c00079{word-spacing:-0.024896pt;}
.ws9_c00079{word-spacing:-0.018672pt;}
.ws4_c00079{word-spacing:0.000000pt;}
.ws6_c00079{word-spacing:0.012448pt;}
.ws22_c00079{word-spacing:0.031182pt;}
.wsd_c00079{word-spacing:0.037344pt;}
.ws21_c00079{word-spacing:0.057167pt;}
.ws26_c00079{word-spacing:0.233866pt;}
.wse_c00079{word-spacing:0.304976pt;}
.ws13_c00079{word-spacing:0.323648pt;}
.ws10_c00079{word-spacing:0.329872pt;}
.wsa_c00079{word-spacing:0.360992pt;}
.ws19_c00079{word-spacing:1.269696pt;}
.ws1a_c00079{word-spacing:1.282144pt;}
.ws7_c00079{word-spacing:4.487504pt;}
.ws8_c00079{word-spacing:4.499952pt;}
.ws17_c00079{word-spacing:4.761360pt;}
.ws18_c00079{word-spacing:4.792480pt;}
.ws14_c00079{word-spacing:6.354704pt;}
.ws15_c00079{word-spacing:6.392048pt;}
.wsb_c00079{word-spacing:6.740592pt;}
.ws1b_c00079{word-spacing:7.375440pt;}
.ws5_c00079{word-spacing:7.680416pt;}
.ws23_c00079{word-spacing:8.554284pt;}
.ws25_c00079{word-spacing:8.689406pt;}
.ws24_c00079{word-spacing:8.767361pt;}
.ws1c_c00079{word-spacing:8.975008pt;}
.ws1e_c00079{word-spacing:9.597408pt;}
.wsf_c00079{word-spacing:10.207360pt;}
.ws1f_c00079{word-spacing:10.357648pt;}
.ws20_c00079{word-spacing:10.373239pt;}
.ws16_c00079{word-spacing:13.761264pt;}
.ws1d_c00079{word-spacing:14.427232pt;}
.ws11_c00079{word-spacing:17.918896pt;}
.ws12_c00079{word-spacing:30.068144pt;}
._2_c00079{margin-left:-14.402336pt;}
._4_c00079{margin-left:-2.407040pt;}
._1_c00079{margin-left:-0.983392pt;}
._0_c00079{width:0.977168pt;}
._3_c00079{width:5.271728pt;}
.fs2_c00079{font-size:33.608533pt;}
.fs1_c00079{font-size:41.388800pt;}
.fs3_c00079{font-size:51.970133pt;}
.fs0_c00079{font-size:62.240000pt;}
.y0_c00079{bottom:0.000000pt;}
.y2_c00079{bottom:97.547527pt;}
.y1_c00079{bottom:115.387067pt;}
.y1f_c00079{bottom:132.826352pt;}
.y1e_c00079{bottom:166.907067pt;}
.y1d_c00079{bottom:186.027200pt;}
.y1c_c00079{bottom:216.827316pt;}
.y1b_c00079{bottom:236.027067pt;}
.y1a_c00079{bottom:249.065000pt;}
.y19_c00079{bottom:269.465716pt;}
.y18_c00079{bottom:296.345616pt;}
.y17_c00079{bottom:323.225516pt;}
.y16_c00079{bottom:368.186136pt;}
.y15_c00079{bottom:395.066036pt;}
.y14_c00079{bottom:421.866580pt;}
.y13_c00079{bottom:466.827607pt;}
.y12_c00079{bottom:493.707507pt;}
.y11_c00079{bottom:520.587407pt;}
.y10_c00079{bottom:547.387951pt;}
.yf_c00079{bottom:574.267851pt;}
.ye_c00079{bottom:619.147559pt;}
.yd_c00079{bottom:646.106815pt;}
.yc_c00079{bottom:672.907359pt;}
.yb_c00079{bottom:717.787799pt;}
.ya_c00079{bottom:744.747055pt;}
.y9_c00079{bottom:771.547599pt;}
.y8_c00079{bottom:816.427307pt;}
.y7_c00079{bottom:843.386563pt;}
.y6_c00079{bottom:888.347183pt;}
.y5_c00079{bottom:915.227083pt;}
.y4_c00079{bottom:960.187703pt;}
.y3_c00079{bottom:987.067603pt;}
.h8_c00079{height:34.967066pt;}
.h6_c00079{height:34.967599pt;}
.h7_c00079{height:48.087599pt;}
.h2_c00079{height:55.645234pt;}
.h1_c00079{height:55.797187pt;}
.h5_c00079{height:55.805454pt;}
.h4_c00079{height:65.481206pt;}
.h3_c00079{height:65.800971pt;}
.h0_c00079{height:1122.666667pt;}
.w0_c00079{width:793.333333pt;}
.x0_c00079{left:0.000000pt;}
.x2_c00079{left:73.519684pt;}
.x1_c00079{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c28fc9702d43f3611ff3a59d.woff2')format("woff");}.ff1_c00080{font-family:ff1_c00080;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00080;src:url('chunks/assets/font_7807af8253016767feeb4017.woff2')format("woff");}.ff2_c00080{font-family:ff2_c00080;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00080;src:url('chunks/assets/font_08bb2fe1de6651f95c0cff6b.woff2')format("woff");}.ff3_c00080{font-family:ff3_c00080;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00080;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff4_c00080{font-family:ff4_c00080;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00080;src:url('chunks/assets/font_5b6a34455e8aab364625e413.woff2')format("woff");}.ff5_c00080{font-family:ff5_c00080;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00080{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00080{vertical-align:-14.760600px;}
.v0_c00080{vertical-align:0.000000px;}
.v1_c00080{vertical-align:32.037156px;}
.ls12_c00080{letter-spacing:-0.333258px;}
.ls11_c00080{letter-spacing:-0.134473px;}
.ls16_c00080{letter-spacing:-0.122779px;}
.ls13_c00080{letter-spacing:-0.111086px;}
.ls10_c00080{letter-spacing:-0.075619px;}
.ls5_c00080{letter-spacing:-0.063018px;}
.ls9_c00080{letter-spacing:-0.056016px;}
.lsc_c00080{letter-spacing:-0.049014px;}
.lsf_c00080{letter-spacing:-0.042012px;}
.lse_c00080{letter-spacing:-0.035010px;}
.ls7_c00080{letter-spacing:-0.028008px;}
.ls14_c00080{letter-spacing:-0.023387px;}
.lsb_c00080{letter-spacing:-0.021006px;}
.ls17_c00080{letter-spacing:-0.017540px;}
.lsa_c00080{letter-spacing:-0.014004px;}
.ls8_c00080{letter-spacing:-0.007002px;}
.ls6_c00080{letter-spacing:0.000000px;}
.ls1_c00080{letter-spacing:0.007002px;}
.ls15_c00080{letter-spacing:0.011693px;}
.ls0_c00080{letter-spacing:0.014004px;}
.ls3_c00080{letter-spacing:0.021006px;}
.lsd_c00080{letter-spacing:0.023281px;}
.ls4_c00080{letter-spacing:0.028008px;}
.ls2_c00080{letter-spacing:0.035010px;}
.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;}
}
.ws2_c00080{word-spacing:-58.466400px;}
.ws0_c00080{word-spacing:-12.967628px;}
.ws1_c00080{word-spacing:-10.397640px;}
.ws19_c00080{word-spacing:-0.014004px;}
.ws3_c00080{word-spacing:0.000000px;}
.ws14_c00080{word-spacing:0.007002px;}
.ws20_c00080{word-spacing:0.028008px;}
.ws2b_c00080{word-spacing:0.029233px;}
.wsb_c00080{word-spacing:0.035010px;}
.ws2a_c00080{word-spacing:0.134473px;}
.ws24_c00080{word-spacing:0.336096px;}
.ws25_c00080{word-spacing:0.385110px;}
.ws23_c00080{word-spacing:0.735210px;}
.ws9_c00080{word-spacing:3.234924px;}
.ws8_c00080{word-spacing:3.248928px;}
.wse_c00080{word-spacing:5.027436px;}
.wsd_c00080{word-spacing:5.433552px;}
.wsa_c00080{word-spacing:5.748642px;}
.ws1f_c00080{word-spacing:6.840954px;}
.ws28_c00080{word-spacing:6.963348px;}
.ws26_c00080{word-spacing:6.986735px;}
.wsc_c00080{word-spacing:7.177050px;}
.ws29_c00080{word-spacing:7.238140px;}
.ws17_c00080{word-spacing:7.527150px;}
.ws27_c00080{word-spacing:7.548012px;}
.ws18_c00080{word-spacing:7.583166px;}
.ws16_c00080{word-spacing:7.870248px;}
.ws15_c00080{word-spacing:7.926264px;}
.ws1a_c00080{word-spacing:8.598456px;}
.ws1b_c00080{word-spacing:8.605458px;}
.ws1d_c00080{word-spacing:12.610602px;}
.ws1c_c00080{word-spacing:12.967704px;}
.ws22_c00080{word-spacing:14.732208px;}
.ws21_c00080{word-spacing:14.767218px;}
.ws13_c00080{word-spacing:18.016146px;}
.ws4_c00080{word-spacing:18.695340px;}
.ws5_c00080{word-spacing:18.737352px;}
.ws1e_c00080{word-spacing:18.751356px;}
.ws12_c00080{word-spacing:21.580164px;}
.ws11_c00080{word-spacing:21.601170px;}
.ws10_c00080{word-spacing:24.450984px;}
.ws6_c00080{word-spacing:32.391252px;}
.ws7_c00080{word-spacing:32.440266px;}
.wsf_c00080{word-spacing:55.091736px;}
._2_c00080{margin-left:-8.640468px;}
._4_c00080{margin-left:-2.707776px;}
._0_c00080{margin-left:-1.127322px;}
._1_c00080{width:1.022292px;}
._3_c00080{width:5.930694px;}
.fc0_c00080{color:rgb(0,0,0);}
.fs2_c00080{font-size:37.809600px;}
.fs1_c00080{font-size:46.562400px;}
.fs3_c00080{font-size:58.466400px;}
.fs0_c00080{font-size:70.020000px;}
.y0_c00080{bottom:0.000000px;}
.y2_c00080{bottom:109.740968px;}
.y1_c00080{bottom:129.810450px;}
.y1f_c00080{bottom:149.429647px;}
.y1e_c00080{bottom:187.770450px;}
.y1d_c00080{bottom:209.280600px;}
.y1c_c00080{bottom:244.378214px;}
.y1b_c00080{bottom:283.708448px;}
.y1a_c00080{bottom:313.859060px;}
.y19_c00080{bottom:344.098947px;}
.y18_c00080{bottom:374.249559px;}
.y17_c00080{bottom:424.830257px;}
.y16_c00080{bottom:455.070144px;}
.y15_c00080{bottom:485.310032px;}
.y14_c00080{bottom:515.460644px;}
.y13_c00080{bottom:545.700531px;}
.y12_c00080{bottom:596.190202px;}
.y11_c00080{bottom:626.430090px;}
.y10_c00080{bottom:656.669977px;}
.yf_c00080{bottom:707.250675px;}
.ye_c00080{bottom:737.490563px;}
.yd_c00080{bottom:767.731161px;}
.yc_c00080{bottom:797.881773px;}
.yb_c00080{bottom:828.121660px;}
.ya_c00080{bottom:858.272272px;}
.y9_c00080{bottom:888.512160px;}
.y8_c00080{bottom:939.001831px;}
.y7_c00080{bottom:969.241719px;}
.y6_c00080{bottom:999.481606px;}
.y5_c00080{bottom:1049.971278px;}
.y4_c00080{bottom:1080.300441px;}
.y3_c00080{bottom:1110.451053px;}
.h5_c00080{height:39.337949px;}
.h6_c00080{height:54.098549px;}
.h2_c00080{height:62.600889px;}
.h1_c00080{height:62.771836px;}
.h4_c00080{height:62.780782px;}
.h3_c00080{height:73.665942px;}
.h0_c00080{height:1263.000000px;}
.w0_c00080{width:892.500000px;}
.x0_c00080{left:0.000000px;}
.x2_c00080{left:82.709645px;}
.x1_c00080{left:436.680000px;}
@media print{
.v2_c00080{vertical-align:-13.120533pt;}
.v0_c00080{vertical-align:0.000000pt;}
.v1_c00080{vertical-align:28.477472pt;}
.ls12_c00080{letter-spacing:-0.296230pt;}
.ls11_c00080{letter-spacing:-0.119531pt;}
.ls16_c00080{letter-spacing:-0.109137pt;}
.ls13_c00080{letter-spacing:-0.098743pt;}
.ls10_c00080{letter-spacing:-0.067217pt;}
.ls5_c00080{letter-spacing:-0.056016pt;}
.ls9_c00080{letter-spacing:-0.049792pt;}
.lsc_c00080{letter-spacing:-0.043568pt;}
.lsf_c00080{letter-spacing:-0.037344pt;}
.lse_c00080{letter-spacing:-0.031120pt;}
.ls7_c00080{letter-spacing:-0.024896pt;}
.ls14_c00080{letter-spacing:-0.020788pt;}
.lsb_c00080{letter-spacing:-0.018672pt;}
.ls17_c00080{letter-spacing:-0.015591pt;}
.lsa_c00080{letter-spacing:-0.012448pt;}
.ls8_c00080{letter-spacing:-0.006224pt;}
.ls6_c00080{letter-spacing:0.000000pt;}
.ls1_c00080{letter-spacing:0.006224pt;}
.ls15_c00080{letter-spacing:0.010394pt;}
.ls0_c00080{letter-spacing:0.012448pt;}
.ls3_c00080{letter-spacing:0.018672pt;}
.lsd_c00080{letter-spacing:0.020694pt;}
.ls4_c00080{letter-spacing:0.024896pt;}
.ls2_c00080{letter-spacing:0.031120pt;}
.ws2_c00080{word-spacing:-51.970133pt;}
.ws0_c00080{word-spacing:-11.526781pt;}
.ws1_c00080{word-spacing:-9.242347pt;}
.ws19_c00080{word-spacing:-0.012448pt;}
.ws3_c00080{word-spacing:0.000000pt;}
.ws14_c00080{word-spacing:0.006224pt;}
.ws20_c00080{word-spacing:0.024896pt;}
.ws2b_c00080{word-spacing:0.025985pt;}
.wsb_c00080{word-spacing:0.031120pt;}
.ws2a_c00080{word-spacing:0.119531pt;}
.ws24_c00080{word-spacing:0.298752pt;}
.ws25_c00080{word-spacing:0.342320pt;}
.ws23_c00080{word-spacing:0.653520pt;}
.ws9_c00080{word-spacing:2.875488pt;}
.ws8_c00080{word-spacing:2.887936pt;}
.wse_c00080{word-spacing:4.468832pt;}
.wsd_c00080{word-spacing:4.829824pt;}
.wsa_c00080{word-spacing:5.109904pt;}
.ws1f_c00080{word-spacing:6.080848pt;}
.ws28_c00080{word-spacing:6.189643pt;}
.ws26_c00080{word-spacing:6.210431pt;}
.wsc_c00080{word-spacing:6.379600pt;}
.ws29_c00080{word-spacing:6.433903pt;}
.ws17_c00080{word-spacing:6.690800pt;}
.ws27_c00080{word-spacing:6.709344pt;}
.ws18_c00080{word-spacing:6.740592pt;}
.ws16_c00080{word-spacing:6.995776pt;}
.ws15_c00080{word-spacing:7.045568pt;}
.ws1a_c00080{word-spacing:7.643072pt;}
.ws1b_c00080{word-spacing:7.649296pt;}
.ws1d_c00080{word-spacing:11.209424pt;}
.ws1c_c00080{word-spacing:11.526848pt;}
.ws22_c00080{word-spacing:13.095296pt;}
.ws21_c00080{word-spacing:13.126416pt;}
.ws13_c00080{word-spacing:16.014352pt;}
.ws4_c00080{word-spacing:16.618080pt;}
.ws5_c00080{word-spacing:16.655424pt;}
.ws1e_c00080{word-spacing:16.667872pt;}
.ws12_c00080{word-spacing:19.182368pt;}
.ws11_c00080{word-spacing:19.201040pt;}
.ws10_c00080{word-spacing:21.734208pt;}
.ws6_c00080{word-spacing:28.792224pt;}
.ws7_c00080{word-spacing:28.835792pt;}
.wsf_c00080{word-spacing:48.970432pt;}
._2_c00080{margin-left:-7.680416pt;}
._4_c00080{margin-left:-2.406912pt;}
._0_c00080{margin-left:-1.002064pt;}
._1_c00080{width:0.908704pt;}
._3_c00080{width:5.271728pt;}
.fs2_c00080{font-size:33.608533pt;}
.fs1_c00080{font-size:41.388800pt;}
.fs3_c00080{font-size:51.970133pt;}
.fs0_c00080{font-size:62.240000pt;}
.y0_c00080{bottom:0.000000pt;}
.y2_c00080{bottom:97.547527pt;}
.y1_c00080{bottom:115.387067pt;}
.y1f_c00080{bottom:132.826352pt;}
.y1e_c00080{bottom:166.907067pt;}
.y1d_c00080{bottom:186.027200pt;}
.y1c_c00080{bottom:217.225079pt;}
.y1b_c00080{bottom:252.185287pt;}
.y1a_c00080{bottom:278.985831pt;}
.y19_c00080{bottom:305.865731pt;}
.y18_c00080{bottom:332.666275pt;}
.y17_c00080{bottom:377.626895pt;}
.y16_c00080{bottom:404.506795pt;}
.y15_c00080{bottom:431.386695pt;}
.y14_c00080{bottom:458.187239pt;}
.y13_c00080{bottom:485.067139pt;}
.y12_c00080{bottom:529.946847pt;}
.y11_c00080{bottom:556.826747pt;}
.y10_c00080{bottom:583.706647pt;}
.yf_c00080{bottom:628.667267pt;}
.ye_c00080{bottom:655.547167pt;}
.yd_c00080{bottom:682.427699pt;}
.yc_c00080{bottom:709.228243pt;}
.yb_c00080{bottom:736.108143pt;}
.ya_c00080{bottom:762.908687pt;}
.y9_c00080{bottom:789.788587pt;}
.y8_c00080{bottom:834.668295pt;}
.y7_c00080{bottom:861.548195pt;}
.y6_c00080{bottom:888.428095pt;}
.y5_c00080{bottom:933.307803pt;}
.y4_c00080{bottom:960.267059pt;}
.y3_c00080{bottom:987.067603pt;}
.h5_c00080{height:34.967066pt;}
.h6_c00080{height:48.087599pt;}
.h2_c00080{height:55.645234pt;}
.h1_c00080{height:55.797187pt;}
.h4_c00080{height:55.805139pt;}
.h3_c00080{height:65.480838pt;}
.h0_c00080{height:1122.666667pt;}
.w0_c00080{width:793.333333pt;}
.x0_c00080{left:0.000000pt;}
.x2_c00080{left:73.519684pt;}
.x1_c00080{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bee11b602d27d1d8291626b3.woff2')format("woff");}.ff1_c00081{font-family:ff1_c00081;line-height:1.106934;font-style:normal;font-weight:normal;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_12619b62a1d3ba0a2b8771f5.woff2')format("woff");}.ff2_c00081{font-family:ff2_c00081;line-height:1.104492;font-style:normal;font-weight:normal;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_fd0e1c8eb65878f5f25fc50d.woff2')format("woff");}.ff3_c00081{font-family:ff3_c00081;line-height:1.133301;font-style:normal;font-weight:normal;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_228bded17c3410b0d3b6ff51.woff2')format("woff");}.ff4_c00081{font-family:ff4_c00081;line-height:1.133301;font-style:normal;font-weight:normal;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_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff5_c00081{font-family:ff5_c00081;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00081;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff6_c00081{font-family:ff6_c00081;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00081{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00081{vertical-align:-14.760000px;}
.v0_c00081{vertical-align:0.000000px;}
.v1_c00081{vertical-align:32.040684px;}
.ls1f_c00081{letter-spacing:-0.707443px;}
.ls25_c00081{letter-spacing:-0.286485px;}
.ls1b_c00081{letter-spacing:-0.198786px;}
.ls1c_c00081{letter-spacing:-0.175399px;}
.ls2c_c00081{letter-spacing:-0.169553px;}
.ls14_c00081{letter-spacing:-0.163706px;}
.ls16_c00081{letter-spacing:-0.152013px;}
.ls1e_c00081{letter-spacing:-0.134473px;}
.ls19_c00081{letter-spacing:-0.122779px;}
.lsc_c00081{letter-spacing:-0.119034px;}
.ls13_c00081{letter-spacing:-0.116933px;}
.ls27_c00081{letter-spacing:-0.105240px;}
.ls12_c00081{letter-spacing:-0.075619px;}
.ls18_c00081{letter-spacing:-0.070160px;}
.ls7_c00081{letter-spacing:-0.063018px;}
.ls23_c00081{letter-spacing:-0.058466px;}
.ls28_c00081{letter-spacing:-0.052620px;}
.ls29_c00081{letter-spacing:-0.046773px;}
.lsa_c00081{letter-spacing:-0.042012px;}
.ls22_c00081{letter-spacing:-0.040926px;}
.ls10_c00081{letter-spacing:-0.035010px;}
.ls26_c00081{letter-spacing:-0.029233px;}
.lsf_c00081{letter-spacing:-0.028008px;}
.ls17_c00081{letter-spacing:-0.023387px;}
.lsb_c00081{letter-spacing:-0.021006px;}
.lse_c00081{letter-spacing:-0.014004px;}
.ls20_c00081{letter-spacing:-0.011693px;}
.ls9_c00081{letter-spacing:-0.007002px;}
.ls8_c00081{letter-spacing:0.000000px;}
.ls2a_c00081{letter-spacing:0.005847px;}
.ls0_c00081{letter-spacing:0.007002px;}
.ls4_c00081{letter-spacing:0.011693px;}
.ls1_c00081{letter-spacing:0.014004px;}
.lsd_c00081{letter-spacing:0.023281px;}
.ls24_c00081{letter-spacing:0.023387px;}
.ls2_c00081{letter-spacing:0.035010px;}
.ls1a_c00081{letter-spacing:0.040926px;}
.ls21_c00081{letter-spacing:0.046773px;}
.ls5_c00081{letter-spacing:0.052620px;}
.ls3_c00081{letter-spacing:0.105240px;}
.ls2b_c00081{letter-spacing:0.216326px;}
.ls15_c00081{letter-spacing:0.321565px;}
.ls11_c00081{letter-spacing:0.343098px;}
.ls6_c00081{letter-spacing:0.362492px;}
.ls1d_c00081{letter-spacing:14.411968px;}
.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;}
}
.ws4_c00081{word-spacing:-58.466400px;}
.ws0_c00081{word-spacing:-19.346526px;}
.ws3_c00081{word-spacing:-16.142573px;}
.ws1_c00081{word-spacing:-12.967628px;}
.ws2_c00081{word-spacing:-10.397640px;}
.ws2b_c00081{word-spacing:-0.304025px;}
.ws2c_c00081{word-spacing:-0.286485px;}
.ws2f_c00081{word-spacing:-0.058466px;}
.ws5_c00081{word-spacing:0.000000px;}
.ws1d_c00081{word-spacing:0.021006px;}
.ws30_c00081{word-spacing:0.040926px;}
.ws35_c00081{word-spacing:0.181246px;}
.ws18_c00081{word-spacing:0.350100px;}
.ws36_c00081{word-spacing:0.719137px;}
.ws16_c00081{word-spacing:1.393398px;}
.ws1a_c00081{word-spacing:1.792512px;}
.ws19_c00081{word-spacing:1.806516px;}
.ws1e_c00081{word-spacing:2.654375px;}
.ws1f_c00081{word-spacing:2.695301px;}
.ws13_c00081{word-spacing:2.849814px;}
.ws22_c00081{word-spacing:2.917473px;}
.ws23_c00081{word-spacing:2.964246px;}
.ws11_c00081{word-spacing:3.248928px;}
.wsd_c00081{word-spacing:4.670334px;}
.wsc_c00081{word-spacing:4.691340px;}
.ws9_c00081{word-spacing:4.705344px;}
.ws24_c00081{word-spacing:5.010570px;}
.ws14_c00081{word-spacing:5.034438px;}
.ws2e_c00081{word-spacing:5.402295px;}
.ws26_c00081{word-spacing:5.589388px;}
.ws25_c00081{word-spacing:5.612774px;}
.ws1c_c00081{word-spacing:5.734638px;}
.ws1b_c00081{word-spacing:5.741640px;}
.ws2d_c00081{word-spacing:5.747247px;}
.wsf_c00081{word-spacing:5.748642px;}
.ws10_c00081{word-spacing:5.755644px;}
.ws28_c00081{word-spacing:6.144819px;}
.ws8_c00081{word-spacing:7.177050px;}
.ws20_c00081{word-spacing:7.612325px;}
.ws21_c00081{word-spacing:8.085903px;}
.ws32_c00081{word-spacing:8.962899px;}
.ws34_c00081{word-spacing:9.009672px;}
.ws33_c00081{word-spacing:9.062292px;}
.ws31_c00081{word-spacing:9.120758px;}
.ws2a_c00081{word-spacing:12.149318px;}
.ws29_c00081{word-spacing:12.207784px;}
.ws7_c00081{word-spacing:12.589596px;}
.ws15_c00081{word-spacing:13.695912px;}
.ws27_c00081{word-spacing:14.546440px;}
.ws17_c00081{word-spacing:15.124320px;}
.ws12_c00081{word-spacing:15.138324px;}
.wsb_c00081{word-spacing:18.716346px;}
.ws6_c00081{word-spacing:22.672476px;}
.wse_c00081{word-spacing:23.386680px;}
.wsa_c00081{word-spacing:27.006714px;}
._4_c00081{margin-left:-14.786153px;}
._5_c00081{margin-left:-13.517432px;}
._3_c00081{margin-left:-2.712006px;}
._0_c00081{margin-left:-1.309374px;}
._1_c00081{width:1.295370px;}
._2_c00081{width:5.930694px;}
.fc0_c00081{color:rgb(0,0,0);}
.fs2_c00081{font-size:37.809600px;}
.fs1_c00081{font-size:46.562400px;}
.fs3_c00081{font-size:58.466400px;}
.fs0_c00081{font-size:70.020000px;}
.y0_c00081{bottom:0.000000px;}
.y2_c00081{bottom:109.740968px;}
.y1_c00081{bottom:129.810450px;}
.y25_c00081{bottom:149.429891px;}
.y24_c00081{bottom:170.940450px;}
.y23_c00081{bottom:189.570730px;}
.y22_c00081{bottom:211.170450px;}
.y21_c00081{bottom:229.799894px;}
.y20_c00081{bottom:247.620453px;}
.y1f_c00081{bottom:265.530173px;}
.y1e_c00081{bottom:283.439893px;}
.y1d_c00081{bottom:301.260451px;}
.y1c_c00081{bottom:319.170171px;}
.y1b_c00081{bottom:337.079891px;}
.y1a_c00081{bottom:358.590450px;}
.y19_c00081{bottom:373.349862px;}
.y18_c00081{bottom:435.451003px;}
.y17_c00081{bottom:465.780166px;}
.y16_c00081{bottom:495.930778px;}
.y15_c00081{bottom:546.419118px;}
.y14_c00081{bottom:576.748281px;}
.y13_c00081{bottom:606.898893px;}
.y12_c00081{bottom:637.138780px;}
.y11_c00081{bottom:667.289392px;}
.y10_c00081{bottom:697.529280px;}
.yf_c00081{bottom:727.679892px;}
.ye_c00081{bottom:757.919779px;}
.yd_c00081{bottom:788.070391px;}
.yc_c00081{bottom:818.310279px;}
.yb_c00081{bottom:848.460891px;}
.ya_c00081{bottom:878.700779px;}
.y9_c00081{bottom:929.190279px;}
.y8_c00081{bottom:959.519442px;}
.y7_c00081{bottom:989.670054px;}
.y6_c00081{bottom:1019.909942px;}
.y5_c00081{bottom:1050.060553px;}
.y4_c00081{bottom:1080.300441px;}
.y3_c00081{bottom:1110.451053px;}
.h7_c00081{height:39.338549px;}
.h8_c00081{height:54.098549px;}
.h4_c00081{height:62.600889px;}
.h1_c00081{height:62.771836px;}
.h6_c00081{height:62.774188px;}
.h2_c00081{height:73.783148px;}
.h5_c00081{height:74.140250px;}
.h3_c00081{height:74.147792px;}
.h0_c00081{height:1263.000000px;}
.w0_c00081{width:892.500000px;}
.x0_c00081{left:0.000000px;}
.x2_c00081{left:82.709645px;}
.x1_c00081{left:436.680000px;}
@media print{
.v2_c00081{vertical-align:-13.120000pt;}
.v0_c00081{vertical-align:0.000000pt;}
.v1_c00081{vertical-align:28.480608pt;}
.ls1f_c00081{letter-spacing:-0.628839pt;}
.ls25_c00081{letter-spacing:-0.254654pt;}
.ls1b_c00081{letter-spacing:-0.176698pt;}
.ls1c_c00081{letter-spacing:-0.155910pt;}
.ls2c_c00081{letter-spacing:-0.150713pt;}
.ls14_c00081{letter-spacing:-0.145516pt;}
.ls16_c00081{letter-spacing:-0.135122pt;}
.ls1e_c00081{letter-spacing:-0.119531pt;}
.ls19_c00081{letter-spacing:-0.109137pt;}
.lsc_c00081{letter-spacing:-0.105808pt;}
.ls13_c00081{letter-spacing:-0.103940pt;}
.ls27_c00081{letter-spacing:-0.093546pt;}
.ls12_c00081{letter-spacing:-0.067217pt;}
.ls18_c00081{letter-spacing:-0.062364pt;}
.ls7_c00081{letter-spacing:-0.056016pt;}
.ls23_c00081{letter-spacing:-0.051970pt;}
.ls28_c00081{letter-spacing:-0.046773pt;}
.ls29_c00081{letter-spacing:-0.041576pt;}
.lsa_c00081{letter-spacing:-0.037344pt;}
.ls22_c00081{letter-spacing:-0.036379pt;}
.ls10_c00081{letter-spacing:-0.031120pt;}
.ls26_c00081{letter-spacing:-0.025985pt;}
.lsf_c00081{letter-spacing:-0.024896pt;}
.ls17_c00081{letter-spacing:-0.020788pt;}
.lsb_c00081{letter-spacing:-0.018672pt;}
.lse_c00081{letter-spacing:-0.012448pt;}
.ls20_c00081{letter-spacing:-0.010394pt;}
.ls9_c00081{letter-spacing:-0.006224pt;}
.ls8_c00081{letter-spacing:0.000000pt;}
.ls2a_c00081{letter-spacing:0.005197pt;}
.ls0_c00081{letter-spacing:0.006224pt;}
.ls4_c00081{letter-spacing:0.010394pt;}
.ls1_c00081{letter-spacing:0.012448pt;}
.lsd_c00081{letter-spacing:0.020694pt;}
.ls24_c00081{letter-spacing:0.020788pt;}
.ls2_c00081{letter-spacing:0.031120pt;}
.ls1a_c00081{letter-spacing:0.036379pt;}
.ls21_c00081{letter-spacing:0.041576pt;}
.ls5_c00081{letter-spacing:0.046773pt;}
.ls3_c00081{letter-spacing:0.093546pt;}
.ls2b_c00081{letter-spacing:0.192289pt;}
.ls15_c00081{letter-spacing:0.285836pt;}
.ls11_c00081{letter-spacing:0.304976pt;}
.ls6_c00081{letter-spacing:0.322215pt;}
.ls1d_c00081{letter-spacing:12.810638pt;}
.ws4_c00081{word-spacing:-51.970133pt;}
.ws0_c00081{word-spacing:-17.196912pt;}
.ws3_c00081{word-spacing:-14.348954pt;}
.ws1_c00081{word-spacing:-11.526781pt;}
.ws2_c00081{word-spacing:-9.242347pt;}
.ws2b_c00081{word-spacing:-0.270245pt;}
.ws2c_c00081{word-spacing:-0.254654pt;}
.ws2f_c00081{word-spacing:-0.051970pt;}
.ws5_c00081{word-spacing:0.000000pt;}
.ws1d_c00081{word-spacing:0.018672pt;}
.ws30_c00081{word-spacing:0.036379pt;}
.ws35_c00081{word-spacing:0.161107pt;}
.ws18_c00081{word-spacing:0.311200pt;}
.ws36_c00081{word-spacing:0.639233pt;}
.ws16_c00081{word-spacing:1.238576pt;}
.ws1a_c00081{word-spacing:1.593344pt;}
.ws19_c00081{word-spacing:1.605792pt;}
.ws1e_c00081{word-spacing:2.359444pt;}
.ws1f_c00081{word-spacing:2.395823pt;}
.ws13_c00081{word-spacing:2.533168pt;}
.ws22_c00081{word-spacing:2.593310pt;}
.ws23_c00081{word-spacing:2.634886pt;}
.ws11_c00081{word-spacing:2.887936pt;}
.wsd_c00081{word-spacing:4.151408pt;}
.wsc_c00081{word-spacing:4.170080pt;}
.ws9_c00081{word-spacing:4.182528pt;}
.ws24_c00081{word-spacing:4.453840pt;}
.ws14_c00081{word-spacing:4.475056pt;}
.ws2e_c00081{word-spacing:4.802040pt;}
.ws26_c00081{word-spacing:4.968345pt;}
.ws25_c00081{word-spacing:4.989133pt;}
.ws1c_c00081{word-spacing:5.097456pt;}
.ws1b_c00081{word-spacing:5.103680pt;}
.ws2d_c00081{word-spacing:5.108664pt;}
.wsf_c00081{word-spacing:5.109904pt;}
.ws10_c00081{word-spacing:5.116128pt;}
.ws28_c00081{word-spacing:5.462061pt;}
.ws8_c00081{word-spacing:6.379600pt;}
.ws20_c00081{word-spacing:6.766511pt;}
.ws21_c00081{word-spacing:7.187469pt;}
.ws32_c00081{word-spacing:7.967021pt;}
.ws34_c00081{word-spacing:8.008598pt;}
.ws33_c00081{word-spacing:8.055371pt;}
.ws31_c00081{word-spacing:8.107341pt;}
.ws2a_c00081{word-spacing:10.799394pt;}
.ws29_c00081{word-spacing:10.851364pt;}
.ws7_c00081{word-spacing:11.190752pt;}
.ws15_c00081{word-spacing:12.174144pt;}
.ws27_c00081{word-spacing:12.930169pt;}
.ws17_c00081{word-spacing:13.443840pt;}
.ws12_c00081{word-spacing:13.456288pt;}
.wsb_c00081{word-spacing:16.636752pt;}
.ws6_c00081{word-spacing:20.153312pt;}
.wse_c00081{word-spacing:20.788160pt;}
.wsa_c00081{word-spacing:24.005968pt;}
._4_c00081{margin-left:-13.143247pt;}
._5_c00081{margin-left:-12.015495pt;}
._3_c00081{margin-left:-2.410672pt;}
._0_c00081{margin-left:-1.163888pt;}
._1_c00081{width:1.151440pt;}
._2_c00081{width:5.271728pt;}
.fs2_c00081{font-size:33.608533pt;}
.fs1_c00081{font-size:41.388800pt;}
.fs3_c00081{font-size:51.970133pt;}
.fs0_c00081{font-size:62.240000pt;}
.y0_c00081{bottom:0.000000pt;}
.y2_c00081{bottom:97.547527pt;}
.y1_c00081{bottom:115.387067pt;}
.y25_c00081{bottom:132.826570pt;}
.y24_c00081{bottom:151.947067pt;}
.y23_c00081{bottom:168.507316pt;}
.y22_c00081{bottom:187.707067pt;}
.y21_c00081{bottom:204.266572pt;}
.y20_c00081{bottom:220.107069pt;}
.y1f_c00081{bottom:236.026820pt;}
.y1e_c00081{bottom:251.946571pt;}
.y1d_c00081{bottom:267.787068pt;}
.y1c_c00081{bottom:283.706819pt;}
.y1b_c00081{bottom:299.626570pt;}
.y1a_c00081{bottom:318.747067pt;}
.y19_c00081{bottom:331.866544pt;}
.y18_c00081{bottom:387.067559pt;}
.y17_c00081{bottom:414.026815pt;}
.y16_c00081{bottom:440.827359pt;}
.y15_c00081{bottom:485.705883pt;}
.y14_c00081{bottom:512.665139pt;}
.y13_c00081{bottom:539.465683pt;}
.y12_c00081{bottom:566.345583pt;}
.y11_c00081{bottom:593.146127pt;}
.y10_c00081{bottom:620.026027pt;}
.yf_c00081{bottom:646.826571pt;}
.ye_c00081{bottom:673.706471pt;}
.yd_c00081{bottom:700.507015pt;}
.yc_c00081{bottom:727.386915pt;}
.yb_c00081{bottom:754.187459pt;}
.ya_c00081{bottom:781.067359pt;}
.y9_c00081{bottom:825.946915pt;}
.y8_c00081{bottom:852.906171pt;}
.y7_c00081{bottom:879.706715pt;}
.y6_c00081{bottom:906.586615pt;}
.y5_c00081{bottom:933.387159pt;}
.y4_c00081{bottom:960.267059pt;}
.y3_c00081{bottom:987.067603pt;}
.h7_c00081{height:34.967599pt;}
.h8_c00081{height:48.087599pt;}
.h4_c00081{height:55.645234pt;}
.h1_c00081{height:55.797187pt;}
.h6_c00081{height:55.799278pt;}
.h2_c00081{height:65.585020pt;}
.h5_c00081{height:65.902445pt;}
.h3_c00081{height:65.909149pt;}
.h0_c00081{height:1122.666667pt;}
.w0_c00081{width:793.333333pt;}
.x0_c00081{left:0.000000pt;}
.x2_c00081{left:73.519684pt;}
.x1_c00081{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_33474914f811ef520ca5554a.woff2')format("woff");}.ff1_c00082{font-family:ff1_c00082;line-height:1.106934;font-style:normal;font-weight:normal;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_a47e8fec80767d99ed0983da.woff2')format("woff");}.ff2_c00082{font-family:ff2_c00082;line-height:1.104492;font-style:normal;font-weight:normal;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_584e7dc436147bb9a4f90533.woff2')format("woff");}.ff3_c00082{font-family:ff3_c00082;line-height:1.133301;font-style:normal;font-weight:normal;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_3114dc3bd36e2bd02a8777b6.woff2')format("woff");}.ff4_c00082{font-family:ff4_c00082;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00082{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00082{vertical-align:-14.760000px;}
.v0_c00082{vertical-align:0.000000px;}
.v1_c00082{vertical-align:32.037138px;}
.lsd_c00082{letter-spacing:-0.707443px;}
.lse_c00082{letter-spacing:-0.116933px;}
.ls10_c00082{letter-spacing:-0.111086px;}
.lsc_c00082{letter-spacing:-0.075619px;}
.ls3_c00082{letter-spacing:-0.063018px;}
.lsb_c00082{letter-spacing:-0.042012px;}
.ls11_c00082{letter-spacing:-0.040926px;}
.ls9_c00082{letter-spacing:-0.035010px;}
.lsa_c00082{letter-spacing:-0.028008px;}
.ls5_c00082{letter-spacing:-0.021006px;}
.ls6_c00082{letter-spacing:-0.014004px;}
.ls12_c00082{letter-spacing:-0.011693px;}
.ls8_c00082{letter-spacing:-0.007002px;}
.ls4_c00082{letter-spacing:0.000000px;}
.ls0_c00082{letter-spacing:0.007002px;}
.ls2_c00082{letter-spacing:0.014004px;}
.ls7_c00082{letter-spacing:0.023281px;}
.ls1_c00082{letter-spacing:0.035010px;}
.lsf_c00082{letter-spacing:0.058466px;}
.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:-19.465560px;}
.ws1_c00082{word-spacing:-12.967628px;}
.ws2_c00082{word-spacing:-10.397640px;}
.ws29_c00082{word-spacing:-0.304025px;}
.ws3_c00082{word-spacing:0.000000px;}
.ws2a_c00082{word-spacing:0.023387px;}
.ws6_c00082{word-spacing:0.336096px;}
.wsa_c00082{word-spacing:0.364104px;}
.ws1c_c00082{word-spacing:0.700200px;}
.ws8_c00082{word-spacing:0.707202px;}
.ws25_c00082{word-spacing:0.719137px;}
.ws9_c00082{word-spacing:0.721206px;}
.ws1a_c00082{word-spacing:1.050300px;}
.ws17_c00082{word-spacing:1.428408px;}
.ws21_c00082{word-spacing:1.456416px;}
.ws22_c00082{word-spacing:1.470420px;}
.wse_c00082{word-spacing:4.320234px;}
.ws11_c00082{word-spacing:5.377536px;}
.ws12_c00082{word-spacing:5.391540px;}
.wsc_c00082{word-spacing:6.847956px;}
.ws7_c00082{word-spacing:7.191054px;}
.ws13_c00082{word-spacing:9.004572px;}
.ws23_c00082{word-spacing:10.068876px;}
.ws24_c00082{word-spacing:10.096884px;}
.ws18_c00082{word-spacing:11.147184px;}
.ws19_c00082{word-spacing:11.525292px;}
.ws1b_c00082{word-spacing:12.596598px;}
.wsf_c00082{word-spacing:13.268790px;}
.ws10_c00082{word-spacing:13.331808px;}
.ws15_c00082{word-spacing:15.131322px;}
.ws5_c00082{word-spacing:16.202628px;}
.ws4_c00082{word-spacing:16.209630px;}
.wsb_c00082{word-spacing:17.659044px;}
.ws14_c00082{word-spacing:21.608172px;}
.ws16_c00082{word-spacing:22.322376px;}
.wsd_c00082{word-spacing:23.057586px;}
.ws1f_c00082{word-spacing:23.757786px;}
.ws1e_c00082{word-spacing:27.349812px;}
.ws1d_c00082{word-spacing:27.384822px;}
.ws20_c00082{word-spacing:27.713916px;}
.ws27_c00082{word-spacing:29.472912px;}
.ws28_c00082{word-spacing:29.642465px;}
.ws26_c00082{word-spacing:30.016650px;}
._3_c00082{margin-left:-7.424448px;}
._1_c00082{margin-left:-1.218348px;}
._0_c00082{width:1.211346px;}
._2_c00082{width:5.930694px;}
.fc0_c00082{color:rgb(0,0,0);}
.fs3_c00082{font-size:37.809600px;}
.fs1_c00082{font-size:46.562400px;}
.fs2_c00082{font-size:58.466400px;}
.fs0_c00082{font-size:70.020000px;}
.y0_c00082{bottom:0.000000px;}
.y2_c00082{bottom:109.740968px;}
.y1_c00082{bottom:129.810450px;}
.y22_c00082{bottom:149.430343px;}
.y21_c00082{bottom:171.660730px;}
.y20_c00082{bottom:193.260450px;}
.y1f_c00082{bottom:211.170450px;}
.y1e_c00082{bottom:225.390450px;}
.y1d_c00082{bottom:243.746058px;}
.y1c_c00082{bottom:294.326755px;}
.y1b_c00082{bottom:324.566643px;}
.y1a_c00082{bottom:354.806530px;}
.y19_c00082{bottom:384.957143px;}
.y18_c00082{bottom:415.197030px;}
.y17_c00082{bottom:445.347642px;}
.y16_c00082{bottom:475.587529px;}
.y15_c00082{bottom:505.738141px;}
.y14_c00082{bottom:535.888754px;}
.y13_c00082{bottom:566.039365px;}
.y12_c00082{bottom:596.279253px;}
.y11_c00082{bottom:626.429865px;}
.y10_c00082{bottom:656.669752px;}
.yf_c00082{bottom:707.248920px;}
.ye_c00082{bottom:737.488808px;}
.yd_c00082{bottom:767.728695px;}
.yc_c00082{bottom:797.879307px;}
.yb_c00082{bottom:828.119195px;}
.ya_c00082{bottom:858.269807px;}
.y9_c00082{bottom:888.509694px;}
.y8_c00082{bottom:918.569280px;}
.y7_c00082{bottom:969.149978px;}
.y6_c00082{bottom:999.479141px;}
.y5_c00082{bottom:1029.629752px;}
.y4_c00082{bottom:1080.211166px;}
.y3_c00082{bottom:1110.451053px;}
.h6_c00082{height:39.338549px;}
.h5_c00082{height:54.098549px;}
.h1_c00082{height:62.771836px;}
.h4_c00082{height:62.789404px;}
.h2_c00082{height:73.779602px;}
.h3_c00082{height:73.788584px;}
.h0_c00082{height:1263.000000px;}
.w0_c00082{width:892.500000px;}
.x0_c00082{left:0.000000px;}
.x2_c00082{left:82.709645px;}
.x1_c00082{left:436.680000px;}
@media print{
.v2_c00082{vertical-align:-13.120000pt;}
.v0_c00082{vertical-align:0.000000pt;}
.v1_c00082{vertical-align:28.477456pt;}
.lsd_c00082{letter-spacing:-0.628839pt;}
.lse_c00082{letter-spacing:-0.103940pt;}
.ls10_c00082{letter-spacing:-0.098743pt;}
.lsc_c00082{letter-spacing:-0.067217pt;}
.ls3_c00082{letter-spacing:-0.056016pt;}
.lsb_c00082{letter-spacing:-0.037344pt;}
.ls11_c00082{letter-spacing:-0.036379pt;}
.ls9_c00082{letter-spacing:-0.031120pt;}
.lsa_c00082{letter-spacing:-0.024896pt;}
.ls5_c00082{letter-spacing:-0.018672pt;}
.ls6_c00082{letter-spacing:-0.012448pt;}
.ls12_c00082{letter-spacing:-0.010394pt;}
.ls8_c00082{letter-spacing:-0.006224pt;}
.ls4_c00082{letter-spacing:0.000000pt;}
.ls0_c00082{letter-spacing:0.006224pt;}
.ls2_c00082{letter-spacing:0.012448pt;}
.ls7_c00082{letter-spacing:0.020694pt;}
.ls1_c00082{letter-spacing:0.031120pt;}
.lsf_c00082{letter-spacing:0.051970pt;}
.ws0_c00082{word-spacing:-17.302720pt;}
.ws1_c00082{word-spacing:-11.526781pt;}
.ws2_c00082{word-spacing:-9.242347pt;}
.ws29_c00082{word-spacing:-0.270245pt;}
.ws3_c00082{word-spacing:0.000000pt;}
.ws2a_c00082{word-spacing:0.020788pt;}
.ws6_c00082{word-spacing:0.298752pt;}
.wsa_c00082{word-spacing:0.323648pt;}
.ws1c_c00082{word-spacing:0.622400pt;}
.ws8_c00082{word-spacing:0.628624pt;}
.ws25_c00082{word-spacing:0.639233pt;}
.ws9_c00082{word-spacing:0.641072pt;}
.ws1a_c00082{word-spacing:0.933600pt;}
.ws17_c00082{word-spacing:1.269696pt;}
.ws21_c00082{word-spacing:1.294592pt;}
.ws22_c00082{word-spacing:1.307040pt;}
.wse_c00082{word-spacing:3.840208pt;}
.ws11_c00082{word-spacing:4.780032pt;}
.ws12_c00082{word-spacing:4.792480pt;}
.wsc_c00082{word-spacing:6.087072pt;}
.ws7_c00082{word-spacing:6.392048pt;}
.ws13_c00082{word-spacing:8.004064pt;}
.ws23_c00082{word-spacing:8.950112pt;}
.ws24_c00082{word-spacing:8.975008pt;}
.ws18_c00082{word-spacing:9.908608pt;}
.ws19_c00082{word-spacing:10.244704pt;}
.ws1b_c00082{word-spacing:11.196976pt;}
.wsf_c00082{word-spacing:11.794480pt;}
.ws10_c00082{word-spacing:11.850496pt;}
.ws15_c00082{word-spacing:13.450064pt;}
.ws5_c00082{word-spacing:14.402336pt;}
.ws4_c00082{word-spacing:14.408560pt;}
.wsb_c00082{word-spacing:15.696928pt;}
.ws14_c00082{word-spacing:19.207264pt;}
.ws16_c00082{word-spacing:19.842112pt;}
.wsd_c00082{word-spacing:20.495632pt;}
.ws1f_c00082{word-spacing:21.118032pt;}
.ws1e_c00082{word-spacing:24.310944pt;}
.ws1d_c00082{word-spacing:24.342064pt;}
.ws20_c00082{word-spacing:24.634592pt;}
.ws27_c00082{word-spacing:26.198144pt;}
.ws28_c00082{word-spacing:26.348858pt;}
.ws26_c00082{word-spacing:26.681466pt;}
._3_c00082{margin-left:-6.599509pt;}
._1_c00082{margin-left:-1.082976pt;}
._0_c00082{width:1.076752pt;}
._2_c00082{width:5.271728pt;}
.fs3_c00082{font-size:33.608533pt;}
.fs1_c00082{font-size:41.388800pt;}
.fs2_c00082{font-size:51.970133pt;}
.fs0_c00082{font-size:62.240000pt;}
.y0_c00082{bottom:0.000000pt;}
.y2_c00082{bottom:97.547527pt;}
.y1_c00082{bottom:115.387067pt;}
.y22_c00082{bottom:132.826972pt;}
.y21_c00082{bottom:152.587316pt;}
.y20_c00082{bottom:171.787067pt;}
.y1f_c00082{bottom:187.707067pt;}
.y1e_c00082{bottom:200.347067pt;}
.y1d_c00082{bottom:216.663163pt;}
.y1c_c00082{bottom:261.623783pt;}
.y1b_c00082{bottom:288.503683pt;}
.y1a_c00082{bottom:315.383583pt;}
.y19_c00082{bottom:342.184127pt;}
.y18_c00082{bottom:369.064027pt;}
.y17_c00082{bottom:395.864571pt;}
.y16_c00082{bottom:422.744471pt;}
.y15_c00082{bottom:449.545015pt;}
.y14_c00082{bottom:476.345559pt;}
.y13_c00082{bottom:503.146103pt;}
.y12_c00082{bottom:530.026003pt;}
.y11_c00082{bottom:556.826547pt;}
.y10_c00082{bottom:583.706447pt;}
.yf_c00082{bottom:628.665707pt;}
.ye_c00082{bottom:655.545607pt;}
.yd_c00082{bottom:682.425507pt;}
.yc_c00082{bottom:709.226051pt;}
.yb_c00082{bottom:736.105951pt;}
.ya_c00082{bottom:762.906495pt;}
.y9_c00082{bottom:789.786395pt;}
.y8_c00082{bottom:816.506027pt;}
.y7_c00082{bottom:861.466647pt;}
.y6_c00082{bottom:888.425903pt;}
.y5_c00082{bottom:915.226447pt;}
.y4_c00082{bottom:960.187703pt;}
.y3_c00082{bottom:987.067603pt;}
.h6_c00082{height:34.967599pt;}
.h5_c00082{height:48.087599pt;}
.h1_c00082{height:55.797187pt;}
.h4_c00082{height:55.812804pt;}
.h2_c00082{height:65.581868pt;}
.h3_c00082{height:65.589852pt;}
.h0_c00082{height:1122.666667pt;}
.w0_c00082{width:793.333333pt;}
.x0_c00082{left:0.000000pt;}
.x2_c00082{left:73.519684pt;}
.x1_c00082{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b0db68ac3dfacae8b4b844e0.woff2')format("woff");}.ff1_c00083{font-family:ff1_c00083;line-height:1.106934;font-style:normal;font-weight:normal;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_71f4419739fd18aeb8508b0e.woff2')format("woff");}.ff2_c00083{font-family:ff2_c00083;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00083{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00083{vertical-align:0.000000px;}
.ls1_c00083{letter-spacing:-0.063018px;}
.ls3_c00083{letter-spacing:-0.021006px;}
.ls4_c00083{letter-spacing:-0.014004px;}
.ls5_c00083{letter-spacing:-0.007002px;}
.ls2_c00083{letter-spacing:0.000000px;}
.ls0_c00083{letter-spacing:0.007002px;}
.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;}
}
.ws7_c00083{word-spacing:-0.014004px;}
.ws0_c00083{word-spacing:0.000000px;}
.ws5_c00083{word-spacing:3.227922px;}
.ws6_c00083{word-spacing:9.711774px;}
.ws3_c00083{word-spacing:10.797084px;}
.ws4_c00083{word-spacing:11.525292px;}
.ws2_c00083{word-spacing:19.059444px;}
.ws1_c00083{word-spacing:19.444554px;}
._0_c00083{margin-left:-1.029294px;}
._1_c00083{width:1.106316px;}
.fc0_c00083{color:rgb(0,0,0);}
.fs0_c00083{font-size:70.020000px;}
.y0_c00083{bottom:0.000000px;}
.y2_c00083{bottom:109.740968px;}
.y1_c00083{bottom:129.810450px;}
.y2d_c00083{bottom:153.745037px;}
.y2c_c00083{bottom:173.814519px;}
.y2b_c00083{bottom:193.975028px;}
.y2a_c00083{bottom:214.135536px;}
.y29_c00083{bottom:234.205019px;}
.y28_c00083{bottom:254.365527px;}
.y27_c00083{bottom:274.526036px;}
.y26_c00083{bottom:294.595518px;}
.y25_c00083{bottom:314.756027px;}
.y24_c00083{bottom:334.916535px;}
.y23_c00083{bottom:354.986018px;}
.y22_c00083{bottom:375.146526px;}
.y21_c00083{bottom:395.307035px;}
.y20_c00083{bottom:415.376517px;}
.y1f_c00083{bottom:435.537026px;}
.y1e_c00083{bottom:455.697534px;}
.y1d_c00083{bottom:475.767017px;}
.y1c_c00083{bottom:495.927525px;}
.y1b_c00083{bottom:516.088034px;}
.y1a_c00083{bottom:536.157516px;}
.y19_c00083{bottom:556.318025px;}
.y18_c00083{bottom:576.478533px;}
.y17_c00083{bottom:596.639042px;}
.y16_c00083{bottom:616.708524px;}
.y15_c00083{bottom:636.869033px;}
.y14_c00083{bottom:657.029541px;}
.y13_c00083{bottom:677.099024px;}
.y12_c00083{bottom:697.259532px;}
.y11_c00083{bottom:717.420041px;}
.y10_c00083{bottom:737.489523px;}
.yf_c00083{bottom:757.650032px;}
.ye_c00083{bottom:777.810540px;}
.yd_c00083{bottom:797.880022px;}
.yc_c00083{bottom:818.040531px;}
.yb_c00083{bottom:838.201039px;}
.ya_c00083{bottom:858.270522px;}
.y9_c00083{bottom:908.760194px;}
.y8_c00083{bottom:939.089357px;}
.y7_c00083{bottom:969.239969px;}
.y6_c00083{bottom:999.479856px;}
.y5_c00083{bottom:1029.630468px;}
.y4_c00083{bottom:1080.211166px;}
.y3_c00083{bottom:1110.451053px;}
.h1_c00083{height:62.771836px;}
.h2_c00083{height:63.216299px;}
.h0_c00083{height:1263.000000px;}
.w0_c00083{width:892.500000px;}
.x0_c00083{left:0.000000px;}
.x2_c00083{left:82.709645px;}
.x1_c00083{left:436.680000px;}
@media print{
.v0_c00083{vertical-align:0.000000pt;}
.ls1_c00083{letter-spacing:-0.056016pt;}
.ls3_c00083{letter-spacing:-0.018672pt;}
.ls4_c00083{letter-spacing:-0.012448pt;}
.ls5_c00083{letter-spacing:-0.006224pt;}
.ls2_c00083{letter-spacing:0.000000pt;}
.ls0_c00083{letter-spacing:0.006224pt;}
.ws7_c00083{word-spacing:-0.012448pt;}
.ws0_c00083{word-spacing:0.000000pt;}
.ws5_c00083{word-spacing:2.869264pt;}
.ws6_c00083{word-spacing:8.632688pt;}
.ws3_c00083{word-spacing:9.597408pt;}
.ws4_c00083{word-spacing:10.244704pt;}
.ws2_c00083{word-spacing:16.941728pt;}
.ws1_c00083{word-spacing:17.284048pt;}
._0_c00083{margin-left:-0.914928pt;}
._1_c00083{width:0.983392pt;}
.fs0_c00083{font-size:62.240000pt;}
.y0_c00083{bottom:0.000000pt;}
.y2_c00083{bottom:97.547527pt;}
.y1_c00083{bottom:115.387067pt;}
.y2d_c00083{bottom:136.662255pt;}
.y2c_c00083{bottom:154.501795pt;}
.y2b_c00083{bottom:172.422247pt;}
.y2a_c00083{bottom:190.342699pt;}
.y29_c00083{bottom:208.182239pt;}
.y28_c00083{bottom:226.102691pt;}
.y27_c00083{bottom:244.023143pt;}
.y26_c00083{bottom:261.862683pt;}
.y25_c00083{bottom:279.783135pt;}
.y24_c00083{bottom:297.703587pt;}
.y23_c00083{bottom:315.543127pt;}
.y22_c00083{bottom:333.463579pt;}
.y21_c00083{bottom:351.384031pt;}
.y20_c00083{bottom:369.223571pt;}
.y1f_c00083{bottom:387.144023pt;}
.y1e_c00083{bottom:405.064475pt;}
.y1d_c00083{bottom:422.904015pt;}
.y1c_c00083{bottom:440.824467pt;}
.y1b_c00083{bottom:458.744919pt;}
.y1a_c00083{bottom:476.584459pt;}
.y19_c00083{bottom:494.504911pt;}
.y18_c00083{bottom:512.425363pt;}
.y17_c00083{bottom:530.345815pt;}
.y16_c00083{bottom:548.185355pt;}
.y15_c00083{bottom:566.105807pt;}
.y14_c00083{bottom:584.026259pt;}
.y13_c00083{bottom:601.865799pt;}
.y12_c00083{bottom:619.786251pt;}
.y11_c00083{bottom:637.706703pt;}
.y10_c00083{bottom:655.546243pt;}
.yf_c00083{bottom:673.466695pt;}
.ye_c00083{bottom:691.387147pt;}
.yd_c00083{bottom:709.226687pt;}
.yc_c00083{bottom:727.147139pt;}
.yb_c00083{bottom:745.067591pt;}
.ya_c00083{bottom:762.907131pt;}
.y9_c00083{bottom:807.786839pt;}
.y8_c00083{bottom:834.746095pt;}
.y7_c00083{bottom:861.546639pt;}
.y6_c00083{bottom:888.426539pt;}
.y5_c00083{bottom:915.227083pt;}
.y4_c00083{bottom:960.187703pt;}
.y3_c00083{bottom:987.067603pt;}
.h1_c00083{height:55.797187pt;}
.h2_c00083{height:56.192266pt;}
.h0_c00083{height:1122.666667pt;}
.w0_c00083{width:793.333333pt;}
.x0_c00083{left:0.000000pt;}
.x2_c00083{left:73.519684pt;}
.x1_c00083{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5dd6057c375849b7d1cc2965.woff2')format("woff");}.ff1_c00084{font-family:ff1_c00084;line-height:1.106934;font-style:normal;font-weight:normal;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_dfebff5588c9cf1114558922.woff2')format("woff");}.ff2_c00084{font-family:ff2_c00084;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00084{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00084{vertical-align:0.000000px;}
.ls9_c00084{letter-spacing:-0.203058px;}
.lsb_c00084{letter-spacing:-0.189929px;}
.lsa_c00084{letter-spacing:-0.098763px;}
.ls11_c00084{letter-spacing:-0.077022px;}
.ls7_c00084{letter-spacing:-0.063018px;}
.ls14_c00084{letter-spacing:-0.053180px;}
.ls13_c00084{letter-spacing:-0.049014px;}
.ls10_c00084{letter-spacing:-0.042012px;}
.ls12_c00084{letter-spacing:-0.035010px;}
.lsf_c00084{letter-spacing:-0.028008px;}
.lse_c00084{letter-spacing:-0.021006px;}
.lsc_c00084{letter-spacing:-0.014004px;}
.lsd_c00084{letter-spacing:-0.007002px;}
.ls8_c00084{letter-spacing:0.000000px;}
.ls5_c00084{letter-spacing:0.014004px;}
.ls2_c00084{letter-spacing:0.021006px;}
.ls6_c00084{letter-spacing:0.028008px;}
.ls4_c00084{letter-spacing:0.035010px;}
.ls0_c00084{letter-spacing:0.042012px;}
.ls3_c00084{letter-spacing:0.049014px;}
.ls1_c00084{letter-spacing:0.140040px;}
.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;}
}
.ws3_c00084{word-spacing:-0.154044px;}
.ws5_c00084{word-spacing:-0.129151px;}
.ws2_c00084{word-spacing:-0.056016px;}
.ws4_c00084{word-spacing:-0.035010px;}
.ws0_c00084{word-spacing:0.000000px;}
.ws1c_c00084{word-spacing:0.007597px;}
.ws16_c00084{word-spacing:0.021006px;}
.ws1_c00084{word-spacing:0.189054px;}
.ws6_c00084{word-spacing:0.319080px;}
.ws1b_c00084{word-spacing:0.392112px;}
.wsc_c00084{word-spacing:0.686196px;}
.wsd_c00084{word-spacing:0.707202px;}
.ws8_c00084{word-spacing:1.435410px;}
.wsf_c00084{word-spacing:2.513718px;}
.ws10_c00084{word-spacing:2.814804px;}
.ws1e_c00084{word-spacing:3.921120px;}
.wsa_c00084{word-spacing:4.642326px;}
.ws1d_c00084{word-spacing:4.677336px;}
.wsb_c00084{word-spacing:4.684338px;}
.ws14_c00084{word-spacing:7.590168px;}
.ws15_c00084{word-spacing:7.625178px;}
.ws18_c00084{word-spacing:8.255358px;}
.ws13_c00084{word-spacing:9.725778px;}
.ws1a_c00084{word-spacing:12.239496px;}
.wse_c00084{word-spacing:12.974706px;}
.ws17_c00084{word-spacing:14.403114px;}
.ws19_c00084{word-spacing:18.023148px;}
.ws7_c00084{word-spacing:19.801656px;}
.ws12_c00084{word-spacing:20.473848px;}
.ws11_c00084{word-spacing:20.529864px;}
.ws9_c00084{word-spacing:22.686480px;}
._3_c00084{margin-left:-7.730208px;}
._2_c00084{margin-left:-4.677336px;}
._1_c00084{margin-left:-1.232352px;}
._0_c00084{width:1.281366px;}
.fc0_c00084{color:rgb(0,0,0);}
.fs0_c00084{font-size:70.020000px;}
.fs1_c00084{font-size:75.971400px;}
.y0_c00084{bottom:0.000000px;}
.y2_c00084{bottom:109.740968px;}
.y1_c00084{bottom:129.810450px;}
.y23_c00084{bottom:157.890932px;}
.y22_c00084{bottom:188.130819px;}
.y21_c00084{bottom:227.100450px;}
.y20_c00084{bottom:256.260450px;}
.y1f_c00084{bottom:305.399204px;}
.y1e_c00084{bottom:335.639091px;}
.y1d_c00084{bottom:365.698677px;}
.y1c_c00084{bottom:395.938565px;}
.y1b_c00084{bottom:426.089177px;}
.y1a_c00084{bottom:470.908979px;}
.y19_c00084{bottom:501.148866px;}
.y18_c00084{bottom:531.299478px;}
.y17_c00084{bottom:561.539366px;}
.y16_c00084{bottom:591.689978px;}
.y15_c00084{bottom:621.929865px;}
.y14_c00084{bottom:652.080477px;}
.y13_c00084{bottom:682.320365px;}
.y12_c00084{bottom:712.470977px;}
.y11_c00084{bottom:742.710864px;}
.y10_c00084{bottom:772.770450px;}
.yf_c00084{bottom:807.870450px;}
.ye_c00084{bottom:856.920886px;}
.yd_c00084{bottom:891.661310px;}
.yc_c00084{bottom:911.730792px;}
.yb_c00084{bottom:949.440063px;}
.ya_c00084{bottom:969.509546px;}
.y9_c00084{bottom:989.670054px;}
.y8_c00084{bottom:1009.830563px;}
.y7_c00084{bottom:1029.900045px;}
.y6_c00084{bottom:1050.060553px;}
.y5_c00084{bottom:1070.221062px;}
.y4_c00084{bottom:1090.290545px;}
.y3_c00084{bottom:1110.451053px;}
.h1_c00084{height:62.771836px;}
.h2_c00084{height:63.216299px;}
.h3_c00084{height:68.589413px;}
.h0_c00084{height:1263.000000px;}
.w0_c00084{width:892.500000px;}
.x0_c00084{left:0.000000px;}
.x2_c00084{left:82.709645px;}
.x1_c00084{left:436.680000px;}
@media print{
.v0_c00084{vertical-align:0.000000pt;}
.ls9_c00084{letter-spacing:-0.180496pt;}
.lsb_c00084{letter-spacing:-0.168825pt;}
.lsa_c00084{letter-spacing:-0.087789pt;}
.ls11_c00084{letter-spacing:-0.068464pt;}
.ls7_c00084{letter-spacing:-0.056016pt;}
.ls14_c00084{letter-spacing:-0.047271pt;}
.ls13_c00084{letter-spacing:-0.043568pt;}
.ls10_c00084{letter-spacing:-0.037344pt;}
.ls12_c00084{letter-spacing:-0.031120pt;}
.lsf_c00084{letter-spacing:-0.024896pt;}
.lse_c00084{letter-spacing:-0.018672pt;}
.lsc_c00084{letter-spacing:-0.012448pt;}
.lsd_c00084{letter-spacing:-0.006224pt;}
.ls8_c00084{letter-spacing:0.000000pt;}
.ls5_c00084{letter-spacing:0.012448pt;}
.ls2_c00084{letter-spacing:0.018672pt;}
.ls6_c00084{letter-spacing:0.024896pt;}
.ls4_c00084{letter-spacing:0.031120pt;}
.ls0_c00084{letter-spacing:0.037344pt;}
.ls3_c00084{letter-spacing:0.043568pt;}
.ls1_c00084{letter-spacing:0.124480pt;}
.ws3_c00084{word-spacing:-0.136928pt;}
.ws5_c00084{word-spacing:-0.114801pt;}
.ws2_c00084{word-spacing:-0.049792pt;}
.ws4_c00084{word-spacing:-0.031120pt;}
.ws0_c00084{word-spacing:0.000000pt;}
.ws1c_c00084{word-spacing:0.006753pt;}
.ws16_c00084{word-spacing:0.018672pt;}
.ws1_c00084{word-spacing:0.168048pt;}
.ws6_c00084{word-spacing:0.283627pt;}
.ws1b_c00084{word-spacing:0.348544pt;}
.wsc_c00084{word-spacing:0.609952pt;}
.wsd_c00084{word-spacing:0.628624pt;}
.ws8_c00084{word-spacing:1.275920pt;}
.wsf_c00084{word-spacing:2.234416pt;}
.ws10_c00084{word-spacing:2.502048pt;}
.ws1e_c00084{word-spacing:3.485440pt;}
.wsa_c00084{word-spacing:4.126512pt;}
.ws1d_c00084{word-spacing:4.157632pt;}
.wsb_c00084{word-spacing:4.163856pt;}
.ws14_c00084{word-spacing:6.746816pt;}
.ws15_c00084{word-spacing:6.777936pt;}
.ws18_c00084{word-spacing:7.338096pt;}
.ws13_c00084{word-spacing:8.645136pt;}
.ws1a_c00084{word-spacing:10.879552pt;}
.wse_c00084{word-spacing:11.533072pt;}
.ws17_c00084{word-spacing:12.802768pt;}
.ws19_c00084{word-spacing:16.020576pt;}
.ws7_c00084{word-spacing:17.601472pt;}
.ws12_c00084{word-spacing:18.198976pt;}
.ws11_c00084{word-spacing:18.248768pt;}
.ws9_c00084{word-spacing:20.165760pt;}
._3_c00084{margin-left:-6.871296pt;}
._2_c00084{margin-left:-4.157632pt;}
._1_c00084{margin-left:-1.095424pt;}
._0_c00084{width:1.138992pt;}
.fs0_c00084{font-size:62.240000pt;}
.fs1_c00084{font-size:67.530133pt;}
.y0_c00084{bottom:0.000000pt;}
.y2_c00084{bottom:97.547527pt;}
.y1_c00084{bottom:115.387067pt;}
.y23_c00084{bottom:140.347495pt;}
.y22_c00084{bottom:167.227395pt;}
.y21_c00084{bottom:201.867067pt;}
.y20_c00084{bottom:227.787067pt;}
.y1f_c00084{bottom:271.465959pt;}
.y1e_c00084{bottom:298.345859pt;}
.y1d_c00084{bottom:325.065491pt;}
.y1c_c00084{bottom:351.945391pt;}
.y1b_c00084{bottom:378.745935pt;}
.y1a_c00084{bottom:418.585759pt;}
.y19_c00084{bottom:445.465659pt;}
.y18_c00084{bottom:472.266203pt;}
.y17_c00084{bottom:499.146103pt;}
.y16_c00084{bottom:525.946647pt;}
.y15_c00084{bottom:552.826547pt;}
.y14_c00084{bottom:579.627091pt;}
.y13_c00084{bottom:606.506991pt;}
.y12_c00084{bottom:633.307535pt;}
.y11_c00084{bottom:660.187435pt;}
.y10_c00084{bottom:686.907067pt;}
.yf_c00084{bottom:718.107067pt;}
.ye_c00084{bottom:761.707455pt;}
.yd_c00084{bottom:792.587831pt;}
.yc_c00084{bottom:810.427371pt;}
.yb_c00084{bottom:843.946723pt;}
.ya_c00084{bottom:861.786263pt;}
.y9_c00084{bottom:879.706715pt;}
.y8_c00084{bottom:897.627167pt;}
.y7_c00084{bottom:915.466707pt;}
.y6_c00084{bottom:933.387159pt;}
.y5_c00084{bottom:951.307611pt;}
.y4_c00084{bottom:969.147151pt;}
.y3_c00084{bottom:987.067603pt;}
.h1_c00084{height:55.797187pt;}
.h2_c00084{height:56.192266pt;}
.h3_c00084{height:60.968367pt;}
.h0_c00084{height:1122.666667pt;}
.w0_c00084{width:793.333333pt;}
.x0_c00084{left:0.000000pt;}
.x2_c00084{left:73.519684pt;}
.x1_c00084{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_01e8eb40e89025fa446ed669.woff2')format("woff");}.ff1_c00085{font-family:ff1_c00085;line-height:1.106934;font-style:normal;font-weight:normal;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_25a303ebdd4a27c463f08efe.woff2')format("woff");}.ff2_c00085{font-family:ff2_c00085;line-height:1.104492;font-style:normal;font-weight:normal;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_bbca7f8a7ae4be3f47782412.woff2')format("woff");}.ff3_c00085{font-family:ff3_c00085;line-height:1.133301;font-style:normal;font-weight:normal;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_797dd4fcd283109a556d1b60.woff2')format("woff");}.ff4_c00085{font-family:ff4_c00085;line-height:1.133301;font-style:normal;font-weight:normal;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_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff5_c00085{font-family:ff5_c00085;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00085{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00085{vertical-align:-32.040000px;}
.v3_c00085{vertical-align:-14.400000px;}
.v0_c00085{vertical-align:0.000000px;}
.v1_c00085{vertical-align:32.044032px;}
.ls1a_c00085{letter-spacing:-0.333258px;}
.ls19_c00085{letter-spacing:-0.204632px;}
.ls1b_c00085{letter-spacing:-0.111086px;}
.ls17_c00085{letter-spacing:-0.105240px;}
.ls11_c00085{letter-spacing:-0.075619px;}
.ls9_c00085{letter-spacing:-0.063018px;}
.ls16_c00085{letter-spacing:-0.052620px;}
.ls13_c00085{letter-spacing:-0.046773px;}
.ls10_c00085{letter-spacing:-0.042012px;}
.ls1c_c00085{letter-spacing:-0.040926px;}
.ls15_c00085{letter-spacing:-0.035080px;}
.lse_c00085{letter-spacing:-0.035010px;}
.lsc_c00085{letter-spacing:-0.028008px;}
.lsf_c00085{letter-spacing:-0.021006px;}
.ls18_c00085{letter-spacing:-0.017540px;}
.lsb_c00085{letter-spacing:-0.014004px;}
.lsd_c00085{letter-spacing:-0.007002px;}
.ls14_c00085{letter-spacing:-0.005847px;}
.lsa_c00085{letter-spacing:0.000000px;}
.ls5_c00085{letter-spacing:0.014004px;}
.ls4_c00085{letter-spacing:0.023281px;}
.ls2_c00085{letter-spacing:0.028008px;}
.ls1_c00085{letter-spacing:0.035010px;}
.ls0_c00085{letter-spacing:0.042012px;}
.ls3_c00085{letter-spacing:0.049014px;}
.ls6_c00085{letter-spacing:0.076006px;}
.ls7_c00085{letter-spacing:0.204632px;}
.ls8_c00085{letter-spacing:0.362492px;}
.ls1d_c00085{letter-spacing:0.461885px;}
.ls12_c00085{letter-spacing:0.508658px;}
.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:-12.967628px;}
.ws1_c00085{word-spacing:-10.397640px;}
.ws26_c00085{word-spacing:-0.327412px;}
.ws25_c00085{word-spacing:-0.192939px;}
.ws18_c00085{word-spacing:-0.063018px;}
.ws17_c00085{word-spacing:-0.014004px;}
.ws1d_c00085{word-spacing:-0.007002px;}
.ws2_c00085{word-spacing:0.000000px;}
.ws11_c00085{word-spacing:0.028008px;}
.ws2d_c00085{word-spacing:0.029233px;}
.ws2a_c00085{word-spacing:0.052620px;}
.ws2b_c00085{word-spacing:0.058466px;}
.ws24_c00085{word-spacing:0.116933px;}
.ws29_c00085{word-spacing:0.122779px;}
.ws27_c00085{word-spacing:0.216326px;}
.ws28_c00085{word-spacing:0.344952px;}
.wsb_c00085{word-spacing:0.378108px;}
.ws15_c00085{word-spacing:1.442412px;}
.ws1f_c00085{word-spacing:3.297505px;}
.ws1c_c00085{word-spacing:3.571020px;}
.ws1b_c00085{word-spacing:3.592026px;}
.ws5_c00085{word-spacing:4.313232px;}
.ws4_c00085{word-spacing:4.334238px;}
.ws20_c00085{word-spacing:4.700699px;}
.ws21_c00085{word-spacing:5.086577px;}
.ws22_c00085{word-spacing:5.104117px;}
.ws10_c00085{word-spacing:7.170048px;}
.wsf_c00085{word-spacing:7.191054px;}
.ws1e_c00085{word-spacing:7.425233px;}
.ws1a_c00085{word-spacing:7.569162px;}
.ws3_c00085{word-spacing:7.919262px;}
.ws12_c00085{word-spacing:8.276364px;}
.ws14_c00085{word-spacing:8.640468px;}
.ws13_c00085{word-spacing:8.661474px;}
.wse_c00085{word-spacing:9.375678px;}
.ws7_c00085{word-spacing:10.741068px;}
.ws8_c00085{word-spacing:11.112174px;}
.ws6_c00085{word-spacing:11.161188px;}
.ws23_c00085{word-spacing:11.459414px;}
.ws16_c00085{word-spacing:14.396112px;}
.wsc_c00085{word-spacing:18.317232px;}
.wsd_c00085{word-spacing:18.359244px;}
.wsa_c00085{word-spacing:19.444554px;}
.ws9_c00085{word-spacing:19.458558px;}
.ws2c_c00085{word-spacing:19.709023px;}
.ws19_c00085{word-spacing:19.794654px;}
._3_c00085{margin-left:-2.711550px;}
._1_c00085{margin-left:-1.127322px;}
._0_c00085{width:1.085310px;}
._2_c00085{width:5.930694px;}
._4_c00085{width:20.562633px;}
.fc0_c00085{color:rgb(0,0,0);}
.fs2_c00085{font-size:37.809600px;}
.fs1_c00085{font-size:46.562400px;}
.fs3_c00085{font-size:58.466400px;}
.fs0_c00085{font-size:70.020000px;}
.y0_c00085{bottom:0.000000px;}
.y2_c00085{bottom:109.740968px;}
.y1_c00085{bottom:129.810450px;}
.y24_c00085{bottom:149.429647px;}
.y23_c00085{bottom:187.770450px;}
.y22_c00085{bottom:205.590450px;}
.y21_c00085{bottom:227.280600px;}
.y20_c00085{bottom:265.530450px;}
.y1f_c00085{bottom:279.750731px;}
.y1e_c00085{bottom:297.480667px;}
.y1d_c00085{bottom:315.481010px;}
.y1c_c00085{bottom:333.390730px;}
.y1b_c00085{bottom:354.900450px;}
.y1a_c00085{bottom:369.660351px;}
.y19_c00085{bottom:446.249977px;}
.y18_c00085{bottom:476.400589px;}
.y17_c00085{bottom:506.640477px;}
.y16_c00085{bottom:536.791089px;}
.y15_c00085{bottom:567.030976px;}
.y14_c00085{bottom:597.090562px;}
.y13_c00085{bottom:627.328839px;}
.y12_c00085{bottom:657.479451px;}
.y11_c00085{bottom:687.719338px;}
.y10_c00085{bottom:717.869950px;}
.yf_c00085{bottom:748.109838px;}
.ye_c00085{bottom:778.259676px;}
.yd_c00085{bottom:808.499564px;}
.yc_c00085{bottom:838.650176px;}
.yb_c00085{bottom:868.890063px;}
.ya_c00085{bottom:899.040675px;}
.y9_c00085{bottom:929.280563px;}
.y8_c00085{bottom:959.519442px;}
.y7_c00085{bottom:989.670054px;}
.y6_c00085{bottom:1019.909942px;}
.y5_c00085{bottom:1050.060553px;}
.y4_c00085{bottom:1080.300441px;}
.y3_c00085{bottom:1110.451053px;}
.ha_c00085{height:39.337949px;}
.h9_c00085{height:39.338549px;}
.h7_c00085{height:39.698549px;}
.h8_c00085{height:54.098549px;}
.h2_c00085{height:62.600889px;}
.h1_c00085{height:62.771836px;}
.h6_c00085{height:62.772232px;}
.h3_c00085{height:73.786496px;}
.h5_c00085{height:73.788908px;}
.h4_c00085{height:74.032482px;}
.h0_c00085{height:1263.000000px;}
.w0_c00085{width:892.500000px;}
.x0_c00085{left:0.000000px;}
.x2_c00085{left:82.709645px;}
.x1_c00085{left:436.680000px;}
@media print{
.v2_c00085{vertical-align:-28.480000pt;}
.v3_c00085{vertical-align:-12.800000pt;}
.v0_c00085{vertical-align:0.000000pt;}
.v1_c00085{vertical-align:28.483584pt;}
.ls1a_c00085{letter-spacing:-0.296230pt;}
.ls19_c00085{letter-spacing:-0.181895pt;}
.ls1b_c00085{letter-spacing:-0.098743pt;}
.ls17_c00085{letter-spacing:-0.093546pt;}
.ls11_c00085{letter-spacing:-0.067217pt;}
.ls9_c00085{letter-spacing:-0.056016pt;}
.ls16_c00085{letter-spacing:-0.046773pt;}
.ls13_c00085{letter-spacing:-0.041576pt;}
.ls10_c00085{letter-spacing:-0.037344pt;}
.ls1c_c00085{letter-spacing:-0.036379pt;}
.ls15_c00085{letter-spacing:-0.031182pt;}
.lse_c00085{letter-spacing:-0.031120pt;}
.lsc_c00085{letter-spacing:-0.024896pt;}
.lsf_c00085{letter-spacing:-0.018672pt;}
.ls18_c00085{letter-spacing:-0.015591pt;}
.lsb_c00085{letter-spacing:-0.012448pt;}
.lsd_c00085{letter-spacing:-0.006224pt;}
.ls14_c00085{letter-spacing:-0.005197pt;}
.lsa_c00085{letter-spacing:0.000000pt;}
.ls5_c00085{letter-spacing:0.012448pt;}
.ls4_c00085{letter-spacing:0.020694pt;}
.ls2_c00085{letter-spacing:0.024896pt;}
.ls1_c00085{letter-spacing:0.031120pt;}
.ls0_c00085{letter-spacing:0.037344pt;}
.ls3_c00085{letter-spacing:0.043568pt;}
.ls6_c00085{letter-spacing:0.067561pt;}
.ls7_c00085{letter-spacing:0.181895pt;}
.ls8_c00085{letter-spacing:0.322215pt;}
.ls1d_c00085{letter-spacing:0.410564pt;}
.ls12_c00085{letter-spacing:0.452140pt;}
.ws0_c00085{word-spacing:-11.526781pt;}
.ws1_c00085{word-spacing:-9.242347pt;}
.ws26_c00085{word-spacing:-0.291033pt;}
.ws25_c00085{word-spacing:-0.171501pt;}
.ws18_c00085{word-spacing:-0.056016pt;}
.ws17_c00085{word-spacing:-0.012448pt;}
.ws1d_c00085{word-spacing:-0.006224pt;}
.ws2_c00085{word-spacing:0.000000pt;}
.ws11_c00085{word-spacing:0.024896pt;}
.ws2d_c00085{word-spacing:0.025985pt;}
.ws2a_c00085{word-spacing:0.046773pt;}
.ws2b_c00085{word-spacing:0.051970pt;}
.ws24_c00085{word-spacing:0.103940pt;}
.ws29_c00085{word-spacing:0.109137pt;}
.ws27_c00085{word-spacing:0.192289pt;}
.ws28_c00085{word-spacing:0.306624pt;}
.wsb_c00085{word-spacing:0.336096pt;}
.ws15_c00085{word-spacing:1.282144pt;}
.ws1f_c00085{word-spacing:2.931116pt;}
.ws1c_c00085{word-spacing:3.174240pt;}
.ws1b_c00085{word-spacing:3.192912pt;}
.ws5_c00085{word-spacing:3.833984pt;}
.ws4_c00085{word-spacing:3.852656pt;}
.ws20_c00085{word-spacing:4.178399pt;}
.ws21_c00085{word-spacing:4.521402pt;}
.ws22_c00085{word-spacing:4.536993pt;}
.ws10_c00085{word-spacing:6.373376pt;}
.wsf_c00085{word-spacing:6.392048pt;}
.ws1e_c00085{word-spacing:6.600207pt;}
.ws1a_c00085{word-spacing:6.728144pt;}
.ws3_c00085{word-spacing:7.039344pt;}
.ws12_c00085{word-spacing:7.356768pt;}
.ws14_c00085{word-spacing:7.680416pt;}
.ws13_c00085{word-spacing:7.699088pt;}
.wse_c00085{word-spacing:8.333936pt;}
.ws7_c00085{word-spacing:9.547616pt;}
.ws8_c00085{word-spacing:9.877488pt;}
.ws6_c00085{word-spacing:9.921056pt;}
.ws23_c00085{word-spacing:10.186146pt;}
.ws16_c00085{word-spacing:12.796544pt;}
.wsc_c00085{word-spacing:16.281984pt;}
.wsd_c00085{word-spacing:16.319328pt;}
.wsa_c00085{word-spacing:17.284048pt;}
.ws9_c00085{word-spacing:17.296496pt;}
.ws2c_c00085{word-spacing:17.519132pt;}
.ws19_c00085{word-spacing:17.595248pt;}
._3_c00085{margin-left:-2.410267pt;}
._1_c00085{margin-left:-1.002064pt;}
._0_c00085{width:0.964720pt;}
._2_c00085{width:5.271728pt;}
._4_c00085{width:18.277896pt;}
.fs2_c00085{font-size:33.608533pt;}
.fs1_c00085{font-size:41.388800pt;}
.fs3_c00085{font-size:51.970133pt;}
.fs0_c00085{font-size:62.240000pt;}
.y0_c00085{bottom:0.000000pt;}
.y2_c00085{bottom:97.547527pt;}
.y1_c00085{bottom:115.387067pt;}
.y24_c00085{bottom:132.826352pt;}
.y23_c00085{bottom:166.907067pt;}
.y22_c00085{bottom:182.747067pt;}
.y21_c00085{bottom:202.027200pt;}
.y20_c00085{bottom:236.027067pt;}
.y1f_c00085{bottom:248.667317pt;}
.y1e_c00085{bottom:264.427260pt;}
.y1d_c00085{bottom:280.427564pt;}
.y1c_c00085{bottom:296.347316pt;}
.y1b_c00085{bottom:315.467067pt;}
.y1a_c00085{bottom:328.586979pt;}
.y19_c00085{bottom:396.666647pt;}
.y18_c00085{bottom:423.467191pt;}
.y17_c00085{bottom:450.347091pt;}
.y16_c00085{bottom:477.147635pt;}
.y15_c00085{bottom:504.027535pt;}
.y14_c00085{bottom:530.747167pt;}
.y13_c00085{bottom:557.625635pt;}
.y12_c00085{bottom:584.426179pt;}
.y11_c00085{bottom:611.306079pt;}
.y10_c00085{bottom:638.106623pt;}
.yf_c00085{bottom:664.986523pt;}
.ye_c00085{bottom:691.786379pt;}
.yd_c00085{bottom:718.666279pt;}
.yc_c00085{bottom:745.466823pt;}
.yb_c00085{bottom:772.346723pt;}
.ya_c00085{bottom:799.147267pt;}
.y9_c00085{bottom:826.027167pt;}
.y8_c00085{bottom:852.906171pt;}
.y7_c00085{bottom:879.706715pt;}
.y6_c00085{bottom:906.586615pt;}
.y5_c00085{bottom:933.387159pt;}
.y4_c00085{bottom:960.267059pt;}
.y3_c00085{bottom:987.067603pt;}
.ha_c00085{height:34.967066pt;}
.h9_c00085{height:34.967599pt;}
.h7_c00085{height:35.287599pt;}
.h8_c00085{height:48.087599pt;}
.h2_c00085{height:55.645234pt;}
.h1_c00085{height:55.797187pt;}
.h6_c00085{height:55.797540pt;}
.h3_c00085{height:65.587997pt;}
.h5_c00085{height:65.590140pt;}
.h4_c00085{height:65.806651pt;}
.h0_c00085{height:1122.666667pt;}
.w0_c00085{width:793.333333pt;}
.x0_c00085{left:0.000000pt;}
.x2_c00085{left:73.519684pt;}
.x1_c00085{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6eaa392baf9e9c32f2326c6a.woff2')format("woff");}.ff1_c00086{font-family:ff1_c00086;line-height:1.106934;font-style:normal;font-weight:normal;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_a06c6361fa277e8e022c9c72.woff2')format("woff");}.ff2_c00086{font-family:ff2_c00086;line-height:1.104492;font-style:normal;font-weight:normal;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_8a253df68e5c6ac4e13c2098.woff2')format("woff");}.ff3_c00086{font-family:ff3_c00086;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00086;src:url('chunks/assets/font_7eb0e5e65fdba038c3ed933d.woff2')format("woff");}.ff4_c00086{font-family:ff4_c00086;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00086;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff5_c00086{font-family:ff5_c00086;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00086;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff6_c00086{font-family:ff6_c00086;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00086{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00086{vertical-align:-14.400000px;}
.v0_c00086{vertical-align:0.000000px;}
.v1_c00086{vertical-align:32.409126px;}
.ls19_c00086{letter-spacing:-0.707443px;}
.ls1b_c00086{letter-spacing:-0.602204px;}
.ls10_c00086{letter-spacing:-0.335249px;}
.ls13_c00086{letter-spacing:-0.122779px;}
.ls14_c00086{letter-spacing:-0.093546px;}
.ls11_c00086{letter-spacing:-0.075619px;}
.ls6_c00086{letter-spacing:-0.063018px;}
.lsb_c00086{letter-spacing:-0.056016px;}
.lsa_c00086{letter-spacing:-0.042012px;}
.ls16_c00086{letter-spacing:-0.040926px;}
.lsc_c00086{letter-spacing:-0.035010px;}
.ls8_c00086{letter-spacing:-0.028008px;}
.lsf_c00086{letter-spacing:-0.021006px;}
.ls12_c00086{letter-spacing:-0.017540px;}
.ls9_c00086{letter-spacing:-0.014004px;}
.ls1a_c00086{letter-spacing:-0.011693px;}
.lse_c00086{letter-spacing:-0.007002px;}
.ls7_c00086{letter-spacing:0.000000px;}
.ls2_c00086{letter-spacing:0.007002px;}
.ls0_c00086{letter-spacing:0.014004px;}
.ls17_c00086{letter-spacing:0.017540px;}
.ls5_c00086{letter-spacing:0.021006px;}
.ls4_c00086{letter-spacing:0.023281px;}
.ls1_c00086{letter-spacing:0.028008px;}
.ls18_c00086{letter-spacing:0.064313px;}
.ls3_c00086{letter-spacing:0.330768px;}
.ls15_c00086{letter-spacing:0.537891px;}
.lsd_c00086{letter-spacing:0.707202px;}
.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;}
}
.ws3_c00086{word-spacing:-58.466400px;}
.ws4_c00086{word-spacing:-16.101647px;}
.ws0_c00086{word-spacing:-12.967628px;}
.ws1_c00086{word-spacing:-12.609098px;}
.ws2_c00086{word-spacing:-10.397640px;}
.ws1d_c00086{word-spacing:-0.035010px;}
.ws28_c00086{word-spacing:-0.014004px;}
.ws17_c00086{word-spacing:-0.007002px;}
.ws5_c00086{word-spacing:0.000000px;}
.ws32_c00086{word-spacing:0.023387px;}
.ws33_c00086{word-spacing:0.257252px;}
.ws8_c00086{word-spacing:1.813518px;}
.ws11_c00086{word-spacing:2.135610px;}
.wsb_c00086{word-spacing:2.142612px;}
.ws10_c00086{word-spacing:2.170620px;}
.ws9_c00086{word-spacing:2.177622px;}
.wsa_c00086{word-spacing:2.548728px;}
.ws2c_c00086{word-spacing:2.987633px;}
.ws2f_c00086{word-spacing:3.233192px;}
.ws2e_c00086{word-spacing:3.291658px;}
.ws2d_c00086{word-spacing:3.373511px;}
.ws16_c00086{word-spacing:3.578022px;}
.ws15_c00086{word-spacing:3.592026px;}
.ws7_c00086{word-spacing:3.599028px;}
.ws2b_c00086{word-spacing:3.794469px;}
.ws29_c00086{word-spacing:3.993255px;}
.ws2a_c00086{word-spacing:4.098495px;}
.wse_c00086{word-spacing:7.191054px;}
.ws27_c00086{word-spacing:8.290368px;}
.ws26_c00086{word-spacing:8.304372px;}
.ws1c_c00086{word-spacing:8.626464px;}
.ws14_c00086{word-spacing:8.976564px;}
.ws23_c00086{word-spacing:9.725778px;}
.ws1e_c00086{word-spacing:10.460988px;}
.wsf_c00086{word-spacing:11.182194px;}
.ws30_c00086{word-spacing:11.827753px;}
.ws1f_c00086{word-spacing:11.896398px;}
.ws1b_c00086{word-spacing:12.232494px;}
.ws31_c00086{word-spacing:12.599509px;}
.ws13_c00086{word-spacing:13.296798px;}
.ws12_c00086{word-spacing:13.639896px;}
.ws25_c00086{word-spacing:14.046012px;}
.ws24_c00086{word-spacing:14.403114px;}
.ws1a_c00086{word-spacing:16.923834px;}
.ws18_c00086{word-spacing:19.416546px;}
.ws19_c00086{word-spacing:19.458558px;}
.ws6_c00086{word-spacing:23.050584px;}
.ws20_c00086{word-spacing:27.720918px;}
.wsc_c00086{word-spacing:28.442124px;}
.wsd_c00086{word-spacing:28.463130px;}
.ws21_c00086{word-spacing:38.840094px;}
.ws22_c00086{word-spacing:38.910114px;}
._2_c00086{margin-left:-28.442124px;}
._0_c00086{margin-left:-23.036580px;}
._5_c00086{margin-left:-2.708814px;}
._3_c00086{margin-left:-1.281366px;}
._1_c00086{width:1.015290px;}
._6_c00086{width:2.027764px;}
._4_c00086{width:5.930694px;}
.fc0_c00086{color:rgb(0,0,0);}
.fs2_c00086{font-size:37.809600px;}
.fs1_c00086{font-size:46.562400px;}
.fs3_c00086{font-size:58.466400px;}
.fs0_c00086{font-size:70.020000px;}
.y0_c00086{bottom:0.000000px;}
.y2_c00086{bottom:109.740968px;}
.y1_c00086{bottom:129.810450px;}
.y25_c00086{bottom:153.120600px;}
.y24_c00086{bottom:167.249205px;}
.y23_c00086{bottom:185.249548px;}
.y22_c00086{bottom:203.070107px;}
.y21_c00086{bottom:224.670450px;}
.y20_c00086{bottom:239.427763px;}
.y1f_c00086{bottom:265.077840px;}
.y1e_c00086{bottom:295.228452px;}
.y1d_c00086{bottom:325.468339px;}
.y1c_c00086{bottom:355.618951px;}
.y1b_c00086{bottom:385.858839px;}
.y1a_c00086{bottom:416.009451px;}
.y19_c00086{bottom:446.249338px;}
.y18_c00086{bottom:476.399950px;}
.y17_c00086{bottom:506.639838px;}
.y16_c00086{bottom:536.789977px;}
.y15_c00086{bottom:567.029865px;}
.y14_c00086{bottom:597.089451px;}
.y13_c00086{bottom:627.329338px;}
.y12_c00086{bottom:657.479950px;}
.y11_c00086{bottom:687.719838px;}
.y10_c00086{bottom:717.868169px;}
.yf_c00086{bottom:748.108056px;}
.ye_c00086{bottom:778.258668px;}
.yd_c00086{bottom:808.498556px;}
.yc_c00086{bottom:838.649168px;}
.yb_c00086{bottom:868.889055px;}
.ya_c00086{bottom:899.039667px;}
.y9_c00086{bottom:929.279555px;}
.y8_c00086{bottom:959.519442px;}
.y7_c00086{bottom:989.670054px;}
.y6_c00086{bottom:1019.909942px;}
.y5_c00086{bottom:1050.060553px;}
.y4_c00086{bottom:1080.300441px;}
.y3_c00086{bottom:1110.451053px;}
.h8_c00086{height:39.337949px;}
.h6_c00086{height:39.698549px;}
.h7_c00086{height:54.098549px;}
.h2_c00086{height:62.600889px;}
.h1_c00086{height:62.771836px;}
.h5_c00086{height:62.782582px;}
.h4_c00086{height:74.030676px;}
.h3_c00086{height:74.151590px;}
.h0_c00086{height:1263.000000px;}
.w0_c00086{width:892.500000px;}
.x0_c00086{left:0.000000px;}
.x2_c00086{left:82.709645px;}
.x1_c00086{left:436.680000px;}
@media print{
.v2_c00086{vertical-align:-12.800000pt;}
.v0_c00086{vertical-align:0.000000pt;}
.v1_c00086{vertical-align:28.808112pt;}
.ls19_c00086{letter-spacing:-0.628839pt;}
.ls1b_c00086{letter-spacing:-0.535292pt;}
.ls10_c00086{letter-spacing:-0.297999pt;}
.ls13_c00086{letter-spacing:-0.109137pt;}
.ls14_c00086{letter-spacing:-0.083152pt;}
.ls11_c00086{letter-spacing:-0.067217pt;}
.ls6_c00086{letter-spacing:-0.056016pt;}
.lsb_c00086{letter-spacing:-0.049792pt;}
.lsa_c00086{letter-spacing:-0.037344pt;}
.ls16_c00086{letter-spacing:-0.036379pt;}
.lsc_c00086{letter-spacing:-0.031120pt;}
.ls8_c00086{letter-spacing:-0.024896pt;}
.lsf_c00086{letter-spacing:-0.018672pt;}
.ls12_c00086{letter-spacing:-0.015591pt;}
.ls9_c00086{letter-spacing:-0.012448pt;}
.ls1a_c00086{letter-spacing:-0.010394pt;}
.lse_c00086{letter-spacing:-0.006224pt;}
.ls7_c00086{letter-spacing:0.000000pt;}
.ls2_c00086{letter-spacing:0.006224pt;}
.ls0_c00086{letter-spacing:0.012448pt;}
.ls17_c00086{letter-spacing:0.015591pt;}
.ls5_c00086{letter-spacing:0.018672pt;}
.ls4_c00086{letter-spacing:0.020694pt;}
.ls1_c00086{letter-spacing:0.024896pt;}
.ls18_c00086{letter-spacing:0.057167pt;}
.ls3_c00086{letter-spacing:0.294016pt;}
.ls15_c00086{letter-spacing:0.478125pt;}
.lsd_c00086{letter-spacing:0.628624pt;}
.ws3_c00086{word-spacing:-51.970133pt;}
.ws4_c00086{word-spacing:-14.312575pt;}
.ws0_c00086{word-spacing:-11.526781pt;}
.ws1_c00086{word-spacing:-11.208087pt;}
.ws2_c00086{word-spacing:-9.242347pt;}
.ws1d_c00086{word-spacing:-0.031120pt;}
.ws28_c00086{word-spacing:-0.012448pt;}
.ws17_c00086{word-spacing:-0.006224pt;}
.ws5_c00086{word-spacing:0.000000pt;}
.ws32_c00086{word-spacing:0.020788pt;}
.ws33_c00086{word-spacing:0.228669pt;}
.ws8_c00086{word-spacing:1.612016pt;}
.ws11_c00086{word-spacing:1.898320pt;}
.wsb_c00086{word-spacing:1.904544pt;}
.ws10_c00086{word-spacing:1.929440pt;}
.ws9_c00086{word-spacing:1.935664pt;}
.wsa_c00086{word-spacing:2.265536pt;}
.ws2c_c00086{word-spacing:2.655674pt;}
.ws2f_c00086{word-spacing:2.873948pt;}
.ws2e_c00086{word-spacing:2.925919pt;}
.ws2d_c00086{word-spacing:2.998677pt;}
.ws16_c00086{word-spacing:3.180464pt;}
.ws15_c00086{word-spacing:3.192912pt;}
.ws7_c00086{word-spacing:3.199136pt;}
.ws2b_c00086{word-spacing:3.372862pt;}
.ws29_c00086{word-spacing:3.549560pt;}
.ws2a_c00086{word-spacing:3.643106pt;}
.wse_c00086{word-spacing:6.392048pt;}
.ws27_c00086{word-spacing:7.369216pt;}
.ws26_c00086{word-spacing:7.381664pt;}
.ws1c_c00086{word-spacing:7.667968pt;}
.ws14_c00086{word-spacing:7.979168pt;}
.ws23_c00086{word-spacing:8.645136pt;}
.ws1e_c00086{word-spacing:9.298656pt;}
.wsf_c00086{word-spacing:9.939728pt;}
.ws30_c00086{word-spacing:10.513558pt;}
.ws1f_c00086{word-spacing:10.574576pt;}
.ws1b_c00086{word-spacing:10.873328pt;}
.ws31_c00086{word-spacing:11.199564pt;}
.ws13_c00086{word-spacing:11.819376pt;}
.ws12_c00086{word-spacing:12.124352pt;}
.ws25_c00086{word-spacing:12.485344pt;}
.ws24_c00086{word-spacing:12.802768pt;}
.ws1a_c00086{word-spacing:15.043408pt;}
.ws18_c00086{word-spacing:17.259152pt;}
.ws19_c00086{word-spacing:17.296496pt;}
.ws6_c00086{word-spacing:20.489408pt;}
.ws20_c00086{word-spacing:24.640816pt;}
.wsc_c00086{word-spacing:25.281888pt;}
.wsd_c00086{word-spacing:25.300560pt;}
.ws21_c00086{word-spacing:34.524528pt;}
.ws22_c00086{word-spacing:34.586768pt;}
._2_c00086{margin-left:-25.281888pt;}
._0_c00086{margin-left:-20.476960pt;}
._5_c00086{margin-left:-2.407835pt;}
._3_c00086{margin-left:-1.138992pt;}
._1_c00086{width:0.902480pt;}
._6_c00086{width:1.802457pt;}
._4_c00086{width:5.271728pt;}
.fs2_c00086{font-size:33.608533pt;}
.fs1_c00086{font-size:41.388800pt;}
.fs3_c00086{font-size:51.970133pt;}
.fs0_c00086{font-size:62.240000pt;}
.y0_c00086{bottom:0.000000pt;}
.y2_c00086{bottom:97.547527pt;}
.y1_c00086{bottom:115.387067pt;}
.y25_c00086{bottom:136.107200pt;}
.y24_c00086{bottom:148.665960pt;}
.y23_c00086{bottom:164.666265pt;}
.y22_c00086{bottom:180.506762pt;}
.y21_c00086{bottom:199.707067pt;}
.y20_c00086{bottom:212.824679pt;}
.y1f_c00086{bottom:235.624747pt;}
.y1e_c00086{bottom:262.425291pt;}
.y1d_c00086{bottom:289.305191pt;}
.y1c_c00086{bottom:316.105735pt;}
.y1b_c00086{bottom:342.985635pt;}
.y1a_c00086{bottom:369.786179pt;}
.y19_c00086{bottom:396.666079pt;}
.y18_c00086{bottom:423.466623pt;}
.y17_c00086{bottom:450.346523pt;}
.y16_c00086{bottom:477.146647pt;}
.y15_c00086{bottom:504.026547pt;}
.y14_c00086{bottom:530.746179pt;}
.y13_c00086{bottom:557.626079pt;}
.y12_c00086{bottom:584.426623pt;}
.y11_c00086{bottom:611.306523pt;}
.y10_c00086{bottom:638.105039pt;}
.yf_c00086{bottom:664.984939pt;}
.ye_c00086{bottom:691.785483pt;}
.yd_c00086{bottom:718.665383pt;}
.yc_c00086{bottom:745.465927pt;}
.yb_c00086{bottom:772.345827pt;}
.ya_c00086{bottom:799.146371pt;}
.y9_c00086{bottom:826.026271pt;}
.y8_c00086{bottom:852.906171pt;}
.y7_c00086{bottom:879.706715pt;}
.y6_c00086{bottom:906.586615pt;}
.y5_c00086{bottom:933.387159pt;}
.y4_c00086{bottom:960.267059pt;}
.y3_c00086{bottom:987.067603pt;}
.h8_c00086{height:34.967066pt;}
.h6_c00086{height:35.287599pt;}
.h7_c00086{height:48.087599pt;}
.h2_c00086{height:55.645234pt;}
.h1_c00086{height:55.797187pt;}
.h5_c00086{height:55.806739pt;}
.h4_c00086{height:65.805046pt;}
.h3_c00086{height:65.912524pt;}
.h0_c00086{height:1122.666667pt;}
.w0_c00086{width:793.333333pt;}
.x0_c00086{left:0.000000pt;}
.x2_c00086{left:73.519684pt;}
.x1_c00086{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0262eed0402fb5e6843a5068.woff2')format("woff");}.ff1_c00087{font-family:ff1_c00087;line-height:1.106934;font-style:normal;font-weight:normal;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_dac409ba096044a37655808c.woff2')format("woff");}.ff2_c00087{font-family:ff2_c00087;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00087{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00087{vertical-align:0.000000px;}
.ls8_c00087{letter-spacing:-0.112032px;}
.ls2_c00087{letter-spacing:-0.063018px;}
.ls4_c00087{letter-spacing:-0.049014px;}
.ls9_c00087{letter-spacing:-0.035010px;}
.lsa_c00087{letter-spacing:-0.028008px;}
.ls7_c00087{letter-spacing:-0.021006px;}
.ls5_c00087{letter-spacing:-0.014004px;}
.ls6_c00087{letter-spacing:-0.007002px;}
.ls3_c00087{letter-spacing:0.000000px;}
.ls1_c00087{letter-spacing:0.007002px;}
.ls0_c00087{letter-spacing:0.098028px;}
.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;}
}
.ws1b_c00087{word-spacing:-0.364104px;}
.ws8_c00087{word-spacing:-0.112032px;}
.ws15_c00087{word-spacing:-0.021006px;}
.ws13_c00087{word-spacing:-0.007002px;}
.ws0_c00087{word-spacing:0.000000px;}
.ws4_c00087{word-spacing:0.007002px;}
.ws1c_c00087{word-spacing:0.014004px;}
.wsf_c00087{word-spacing:0.021006px;}
.ws1_c00087{word-spacing:0.035010px;}
.ws3_c00087{word-spacing:0.350100px;}
.ws16_c00087{word-spacing:0.378108px;}
.wsa_c00087{word-spacing:0.742212px;}
.ws17_c00087{word-spacing:1.078308px;}
.ws14_c00087{word-spacing:2.912832px;}
.ws18_c00087{word-spacing:3.255930px;}
.ws19_c00087{word-spacing:3.585024px;}
.ws2_c00087{word-spacing:3.963132px;}
.ws9_c00087{word-spacing:3.970134px;}
.ws10_c00087{word-spacing:4.684338px;}
.ws1a_c00087{word-spacing:5.412546px;}
.ws12_c00087{word-spacing:6.833952px;}
.wsd_c00087{word-spacing:7.562160px;}
.wse_c00087{word-spacing:7.583166px;}
.wsc_c00087{word-spacing:8.654472px;}
.wsb_c00087{word-spacing:8.675478px;}
.ws6_c00087{word-spacing:10.425978px;}
.ws5_c00087{word-spacing:10.895112px;}
.ws11_c00087{word-spacing:14.046012px;}
.ws7_c00087{word-spacing:24.107886px;}
._1_c00087{margin-left:-1.204344px;}
._0_c00087{width:1.141326px;}
.fc0_c00087{color:rgb(0,0,0);}
.fs0_c00087{font-size:70.020000px;}
.y0_c00087{bottom:0.000000px;}
.y2_c00087{bottom:109.740968px;}
.y1_c00087{bottom:129.810450px;}
.y1d_c00087{bottom:164.907975px;}
.y1c_c00087{bottom:195.147863px;}
.y1b_c00087{bottom:225.298475px;}
.y1a_c00087{bottom:255.538362px;}
.y19_c00087{bottom:285.688974px;}
.y18_c00087{bottom:315.928862px;}
.y17_c00087{bottom:346.079474px;}
.y16_c00087{bottom:376.319361px;}
.y15_c00087{bottom:406.469973px;}
.y14_c00087{bottom:456.959645px;}
.y13_c00087{bottom:487.288808px;}
.y12_c00087{bottom:537.869505px;}
.y11_c00087{bottom:568.109393px;}
.y10_c00087{bottom:598.349280px;}
.yf_c00087{bottom:628.499892px;}
.ye_c00087{bottom:679.080590px;}
.yd_c00087{bottom:709.320477px;}
.yc_c00087{bottom:739.560365px;}
.yb_c00087{bottom:790.050036px;}
.ya_c00087{bottom:820.289924px;}
.y9_c00087{bottom:870.959897px;}
.y8_c00087{bottom:901.110509px;}
.y7_c00087{bottom:931.261121px;}
.y6_c00087{bottom:978.960495px;}
.y5_c00087{bottom:1029.541193px;}
.y4_c00087{bottom:1059.781080px;}
.y3_c00087{bottom:1110.451053px;}
.h2_c00087{height:62.600889px;}
.h1_c00087{height:62.771836px;}
.h0_c00087{height:1263.000000px;}
.w0_c00087{width:892.500000px;}
.x0_c00087{left:0.000000px;}
.x2_c00087{left:82.709645px;}
.x1_c00087{left:436.680000px;}
@media print{
.v0_c00087{vertical-align:0.000000pt;}
.ls8_c00087{letter-spacing:-0.099584pt;}
.ls2_c00087{letter-spacing:-0.056016pt;}
.ls4_c00087{letter-spacing:-0.043568pt;}
.ls9_c00087{letter-spacing:-0.031120pt;}
.lsa_c00087{letter-spacing:-0.024896pt;}
.ls7_c00087{letter-spacing:-0.018672pt;}
.ls5_c00087{letter-spacing:-0.012448pt;}
.ls6_c00087{letter-spacing:-0.006224pt;}
.ls3_c00087{letter-spacing:0.000000pt;}
.ls1_c00087{letter-spacing:0.006224pt;}
.ls0_c00087{letter-spacing:0.087136pt;}
.ws1b_c00087{word-spacing:-0.323648pt;}
.ws8_c00087{word-spacing:-0.099584pt;}
.ws15_c00087{word-spacing:-0.018672pt;}
.ws13_c00087{word-spacing:-0.006224pt;}
.ws0_c00087{word-spacing:0.000000pt;}
.ws4_c00087{word-spacing:0.006224pt;}
.ws1c_c00087{word-spacing:0.012448pt;}
.wsf_c00087{word-spacing:0.018672pt;}
.ws1_c00087{word-spacing:0.031120pt;}
.ws3_c00087{word-spacing:0.311200pt;}
.ws16_c00087{word-spacing:0.336096pt;}
.wsa_c00087{word-spacing:0.659744pt;}
.ws17_c00087{word-spacing:0.958496pt;}
.ws14_c00087{word-spacing:2.589184pt;}
.ws18_c00087{word-spacing:2.894160pt;}
.ws19_c00087{word-spacing:3.186688pt;}
.ws2_c00087{word-spacing:3.522784pt;}
.ws9_c00087{word-spacing:3.529008pt;}
.ws10_c00087{word-spacing:4.163856pt;}
.ws1a_c00087{word-spacing:4.811152pt;}
.ws12_c00087{word-spacing:6.074624pt;}
.wsd_c00087{word-spacing:6.721920pt;}
.wse_c00087{word-spacing:6.740592pt;}
.wsc_c00087{word-spacing:7.692864pt;}
.wsb_c00087{word-spacing:7.711536pt;}
.ws6_c00087{word-spacing:9.267536pt;}
.ws5_c00087{word-spacing:9.684544pt;}
.ws11_c00087{word-spacing:12.485344pt;}
.ws7_c00087{word-spacing:21.429232pt;}
._1_c00087{margin-left:-1.070528pt;}
._0_c00087{width:1.014512pt;}
.fs0_c00087{font-size:62.240000pt;}
.y0_c00087{bottom:0.000000pt;}
.y2_c00087{bottom:97.547527pt;}
.y1_c00087{bottom:115.387067pt;}
.y1d_c00087{bottom:146.584867pt;}
.y1c_c00087{bottom:173.464767pt;}
.y1b_c00087{bottom:200.265311pt;}
.y1a_c00087{bottom:227.145211pt;}
.y19_c00087{bottom:253.945755pt;}
.y18_c00087{bottom:280.825655pt;}
.y17_c00087{bottom:307.626199pt;}
.y16_c00087{bottom:334.506099pt;}
.y15_c00087{bottom:361.306643pt;}
.y14_c00087{bottom:406.186351pt;}
.y13_c00087{bottom:433.145607pt;}
.y12_c00087{bottom:478.106227pt;}
.y11_c00087{bottom:504.986127pt;}
.y10_c00087{bottom:531.866027pt;}
.yf_c00087{bottom:558.666571pt;}
.ye_c00087{bottom:603.627191pt;}
.yd_c00087{bottom:630.507091pt;}
.yc_c00087{bottom:657.386991pt;}
.yb_c00087{bottom:702.266699pt;}
.ya_c00087{bottom:729.146599pt;}
.y9_c00087{bottom:774.186575pt;}
.y8_c00087{bottom:800.987119pt;}
.y7_c00087{bottom:827.787663pt;}
.y6_c00087{bottom:870.187107pt;}
.y5_c00087{bottom:915.147727pt;}
.y4_c00087{bottom:942.027627pt;}
.y3_c00087{bottom:987.067603pt;}
.h2_c00087{height:55.645234pt;}
.h1_c00087{height:55.797187pt;}
.h0_c00087{height:1122.666667pt;}
.w0_c00087{width:793.333333pt;}
.x0_c00087{left:0.000000pt;}
.x2_c00087{left:73.519684pt;}
.x1_c00087{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8f34473574afee987ed9dd09.woff2')format("woff");}.ff1_c00088{font-family:ff1_c00088;line-height:1.106934;font-style:normal;font-weight:normal;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_57169d03c4541cc417d5eb47.woff2')format("woff");}.ff2_c00088{font-family:ff2_c00088;line-height:1.104492;font-style:normal;font-weight:normal;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_813ff4bf9c3e8f05a0736507.woff2')format("woff");}.ff3_c00088{font-family:ff3_c00088;line-height:1.133301;font-style:normal;font-weight:normal;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_26ffa4ee59ec8cf855a18969.woff2')format("woff");}.ff4_c00088{font-family:ff4_c00088;line-height:1.133301;font-style:normal;font-weight:normal;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_81be5ad71e4e8dfbeaa32d87.woff2')format("woff");}.ff5_c00088{font-family:ff5_c00088;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00088;src:url('chunks/assets/font_2ca4e01742e4710788893934.woff2')format("woff");}.ff6_c00088{font-family:ff6_c00088;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00088;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff7_c00088{font-family:ff7_c00088;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00088{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00088{vertical-align:-14.760000px;}
.v0_c00088{vertical-align:0.000000px;}
.v1_c00088{vertical-align:32.045580px;}
.ls10_c00088{letter-spacing:-0.707443px;}
.ls16_c00088{letter-spacing:-0.152013px;}
.ls11_c00088{letter-spacing:-0.116933px;}
.ls14_c00088{letter-spacing:-0.076006px;}
.lse_c00088{letter-spacing:-0.075619px;}
.ls5_c00088{letter-spacing:-0.063018px;}
.lsc_c00088{letter-spacing:-0.056016px;}
.ls17_c00088{letter-spacing:-0.052620px;}
.lsf_c00088{letter-spacing:-0.046773px;}
.lsd_c00088{letter-spacing:-0.042012px;}
.ls8_c00088{letter-spacing:-0.035010px;}
.ls13_c00088{letter-spacing:-0.029233px;}
.lsb_c00088{letter-spacing:-0.028008px;}
.ls9_c00088{letter-spacing:-0.021006px;}
.ls7_c00088{letter-spacing:-0.014004px;}
.ls19_c00088{letter-spacing:-0.011693px;}
.lsa_c00088{letter-spacing:-0.007002px;}
.ls6_c00088{letter-spacing:0.000000px;}
.ls1_c00088{letter-spacing:0.007002px;}
.ls3_c00088{letter-spacing:0.017540px;}
.ls0_c00088{letter-spacing:0.023281px;}
.ls2_c00088{letter-spacing:0.035080px;}
.ls12_c00088{letter-spacing:0.081853px;}
.ls4_c00088{letter-spacing:0.268945px;}
.ls15_c00088{letter-spacing:0.350798px;}
.ls18_c00088{letter-spacing:0.473578px;}
.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;}
}
.ws4_c00088{word-spacing:-58.466400px;}
.ws0_c00088{word-spacing:-19.409544px;}
.ws5_c00088{word-spacing:-16.195193px;}
.ws3_c00088{word-spacing:-16.165960px;}
.ws1_c00088{word-spacing:-12.967628px;}
.ws2_c00088{word-spacing:-10.397640px;}
.ws25_c00088{word-spacing:-0.339105px;}
.ws2d_c00088{word-spacing:-0.099393px;}
.ws14_c00088{word-spacing:-0.021006px;}
.ws6_c00088{word-spacing:0.000000px;}
.ws2e_c00088{word-spacing:0.023387px;}
.ws1d_c00088{word-spacing:0.028008px;}
.ws2b_c00088{word-spacing:0.040926px;}
.ws2c_c00088{word-spacing:0.064313px;}
.ws24_c00088{word-spacing:0.087700px;}
.ws29_c00088{word-spacing:0.163706px;}
.ws1c_c00088{word-spacing:0.343098px;}
.wsb_c00088{word-spacing:0.350100px;}
.ws22_c00088{word-spacing:0.356645px;}
.ws23_c00088{word-spacing:0.648977px;}
.ws2a_c00088{word-spacing:0.719137px;}
.wsc_c00088{word-spacing:0.735210px;}
.ws21_c00088{word-spacing:0.847763px;}
.ws9_c00088{word-spacing:2.163618px;}
.ws8_c00088{word-spacing:2.863818px;}
.ws19_c00088{word-spacing:3.956130px;}
.ws18_c00088{word-spacing:3.963132px;}
.wsf_c00088{word-spacing:4.320234px;}
.ws10_c00088{word-spacing:4.362246px;}
.ws1a_c00088{word-spacing:4.691340px;}
.wsd_c00088{word-spacing:6.847956px;}
.ws16_c00088{word-spacing:7.191054px;}
.ws15_c00088{word-spacing:7.212060px;}
.wsa_c00088{word-spacing:9.011574px;}
.ws13_c00088{word-spacing:10.453986px;}
.ws12_c00088{word-spacing:10.776078px;}
.ws17_c00088{word-spacing:12.232494px;}
.ws7_c00088{word-spacing:12.981708px;}
.ws1b_c00088{word-spacing:14.410116px;}
.wse_c00088{word-spacing:17.266932px;}
.ws1f_c00088{word-spacing:19.779183px;}
.ws1e_c00088{word-spacing:20.217681px;}
.ws20_c00088{word-spacing:20.521706px;}
.ws11_c00088{word-spacing:33.497568px;}
.ws26_c00088{word-spacing:34.962907px;}
.ws27_c00088{word-spacing:34.980447px;}
.ws28_c00088{word-spacing:35.050607px;}
._3_c00088{margin-left:-2.708730px;}
._1_c00088{margin-left:-1.288368px;}
._0_c00088{width:1.190340px;}
._4_c00088{width:2.337350px;}
._2_c00088{width:5.930694px;}
.fc0_c00088{color:rgb(0,0,0);}
.fs2_c00088{font-size:37.809600px;}
.fs1_c00088{font-size:46.562400px;}
.fs3_c00088{font-size:58.466400px;}
.fs0_c00088{font-size:70.020000px;}
.y0_c00088{bottom:0.000000px;}
.y2_c00088{bottom:109.740968px;}
.y1_c00088{bottom:129.810450px;}
.y23_c00088{bottom:149.429647px;}
.y22_c00088{bottom:187.770450px;}
.y21_c00088{bottom:205.590450px;}
.y20_c00088{bottom:227.280600px;}
.y1f_c00088{bottom:261.840730px;}
.y1e_c00088{bottom:283.440450px;}
.y1d_c00088{bottom:318.000450px;}
.y1c_c00088{bottom:335.910450px;}
.y1b_c00088{bottom:357.510450px;}
.y1a_c00088{bottom:392.610760px;}
.y19_c00088{bottom:428.700819px;}
.y18_c00088{bottom:467.669734px;}
.y17_c00088{bottom:497.909622px;}
.y16_c00088{bottom:528.060234px;}
.y15_c00088{bottom:558.300121px;}
.y14_c00088{bottom:588.359707px;}
.y13_c00088{bottom:618.599595px;}
.y12_c00088{bottom:648.750207px;}
.y11_c00088{bottom:687.719838px;}
.y10_c00088{bottom:717.869563px;}
.yf_c00088{bottom:748.109451px;}
.ye_c00088{bottom:778.260063px;}
.yd_c00088{bottom:808.499950px;}
.yc_c00088{bottom:838.650562px;}
.yb_c00088{bottom:868.889055px;}
.ya_c00088{bottom:899.039667px;}
.y9_c00088{bottom:929.279555px;}
.y8_c00088{bottom:959.519442px;}
.y7_c00088{bottom:989.670054px;}
.y6_c00088{bottom:1019.909942px;}
.y5_c00088{bottom:1050.060553px;}
.y4_c00088{bottom:1080.300441px;}
.y3_c00088{bottom:1110.451053px;}
.h8_c00088{height:39.337949px;}
.h6_c00088{height:39.338549px;}
.h7_c00088{height:54.098549px;}
.h2_c00088{height:62.600889px;}
.h1_c00088{height:62.771836px;}
.h3_c00088{height:73.674366px;}
.h4_c00088{height:74.032332px;}
.h5_c00088{height:74.145926px;}
.h0_c00088{height:1263.000000px;}
.w0_c00088{width:892.500000px;}
.x0_c00088{left:0.000000px;}
.x2_c00088{left:82.709645px;}
.x1_c00088{left:436.680000px;}
@media print{
.v2_c00088{vertical-align:-13.120000pt;}
.v0_c00088{vertical-align:0.000000pt;}
.v1_c00088{vertical-align:28.484960pt;}
.ls10_c00088{letter-spacing:-0.628839pt;}
.ls16_c00088{letter-spacing:-0.135122pt;}
.ls11_c00088{letter-spacing:-0.103940pt;}
.ls14_c00088{letter-spacing:-0.067561pt;}
.lse_c00088{letter-spacing:-0.067217pt;}
.ls5_c00088{letter-spacing:-0.056016pt;}
.lsc_c00088{letter-spacing:-0.049792pt;}
.ls17_c00088{letter-spacing:-0.046773pt;}
.lsf_c00088{letter-spacing:-0.041576pt;}
.lsd_c00088{letter-spacing:-0.037344pt;}
.ls8_c00088{letter-spacing:-0.031120pt;}
.ls13_c00088{letter-spacing:-0.025985pt;}
.lsb_c00088{letter-spacing:-0.024896pt;}
.ls9_c00088{letter-spacing:-0.018672pt;}
.ls7_c00088{letter-spacing:-0.012448pt;}
.ls19_c00088{letter-spacing:-0.010394pt;}
.lsa_c00088{letter-spacing:-0.006224pt;}
.ls6_c00088{letter-spacing:0.000000pt;}
.ls1_c00088{letter-spacing:0.006224pt;}
.ls3_c00088{letter-spacing:0.015591pt;}
.ls0_c00088{letter-spacing:0.020694pt;}
.ls2_c00088{letter-spacing:0.031182pt;}
.ls12_c00088{letter-spacing:0.072758pt;}
.ls4_c00088{letter-spacing:0.239063pt;}
.ls15_c00088{letter-spacing:0.311821pt;}
.ls18_c00088{letter-spacing:0.420958pt;}
.ws4_c00088{word-spacing:-51.970133pt;}
.ws0_c00088{word-spacing:-17.252928pt;}
.ws5_c00088{word-spacing:-14.395727pt;}
.ws3_c00088{word-spacing:-14.369742pt;}
.ws1_c00088{word-spacing:-11.526781pt;}
.ws2_c00088{word-spacing:-9.242347pt;}
.ws25_c00088{word-spacing:-0.301427pt;}
.ws2d_c00088{word-spacing:-0.088349pt;}
.ws14_c00088{word-spacing:-0.018672pt;}
.ws6_c00088{word-spacing:0.000000pt;}
.ws2e_c00088{word-spacing:0.020788pt;}
.ws1d_c00088{word-spacing:0.024896pt;}
.ws2b_c00088{word-spacing:0.036379pt;}
.ws2c_c00088{word-spacing:0.057167pt;}
.ws24_c00088{word-spacing:0.077955pt;}
.ws29_c00088{word-spacing:0.145516pt;}
.ws1c_c00088{word-spacing:0.304976pt;}
.wsb_c00088{word-spacing:0.311200pt;}
.ws22_c00088{word-spacing:0.317018pt;}
.ws23_c00088{word-spacing:0.576868pt;}
.ws2a_c00088{word-spacing:0.639233pt;}
.wsc_c00088{word-spacing:0.653520pt;}
.ws21_c00088{word-spacing:0.753567pt;}
.ws9_c00088{word-spacing:1.923216pt;}
.ws8_c00088{word-spacing:2.545616pt;}
.ws19_c00088{word-spacing:3.516560pt;}
.ws18_c00088{word-spacing:3.522784pt;}
.wsf_c00088{word-spacing:3.840208pt;}
.ws10_c00088{word-spacing:3.877552pt;}
.ws1a_c00088{word-spacing:4.170080pt;}
.wsd_c00088{word-spacing:6.087072pt;}
.ws16_c00088{word-spacing:6.392048pt;}
.ws15_c00088{word-spacing:6.410720pt;}
.wsa_c00088{word-spacing:8.010288pt;}
.ws13_c00088{word-spacing:9.292432pt;}
.ws12_c00088{word-spacing:9.578736pt;}
.ws17_c00088{word-spacing:10.873328pt;}
.ws7_c00088{word-spacing:11.539296pt;}
.ws1b_c00088{word-spacing:12.808992pt;}
.wse_c00088{word-spacing:15.348384pt;}
.ws1f_c00088{word-spacing:17.581496pt;}
.ws1e_c00088{word-spacing:17.971272pt;}
.ws20_c00088{word-spacing:18.241517pt;}
.ws11_c00088{word-spacing:29.775616pt;}
.ws26_c00088{word-spacing:31.078140pt;}
.ws27_c00088{word-spacing:31.093731pt;}
.ws28_c00088{word-spacing:31.156095pt;}
._3_c00088{margin-left:-2.407760pt;}
._1_c00088{margin-left:-1.145216pt;}
._0_c00088{width:1.058080pt;}
._4_c00088{width:2.077645pt;}
._2_c00088{width:5.271728pt;}
.fs2_c00088{font-size:33.608533pt;}
.fs1_c00088{font-size:41.388800pt;}
.fs3_c00088{font-size:51.970133pt;}
.fs0_c00088{font-size:62.240000pt;}
.y0_c00088{bottom:0.000000pt;}
.y2_c00088{bottom:97.547527pt;}
.y1_c00088{bottom:115.387067pt;}
.y23_c00088{bottom:132.826352pt;}
.y22_c00088{bottom:166.907067pt;}
.y21_c00088{bottom:182.747067pt;}
.y20_c00088{bottom:202.027200pt;}
.y1f_c00088{bottom:232.747316pt;}
.y1e_c00088{bottom:251.947067pt;}
.y1d_c00088{bottom:282.667067pt;}
.y1c_c00088{bottom:298.587067pt;}
.y1b_c00088{bottom:317.787067pt;}
.y1a_c00088{bottom:348.987343pt;}
.y19_c00088{bottom:381.067395pt;}
.y18_c00088{bottom:415.706431pt;}
.y17_c00088{bottom:442.586331pt;}
.y16_c00088{bottom:469.386875pt;}
.y15_c00088{bottom:496.266775pt;}
.y14_c00088{bottom:522.986407pt;}
.y13_c00088{bottom:549.866307pt;}
.y12_c00088{bottom:576.666851pt;}
.y11_c00088{bottom:611.306523pt;}
.y10_c00088{bottom:638.106279pt;}
.yf_c00088{bottom:664.986179pt;}
.ye_c00088{bottom:691.786723pt;}
.yd_c00088{bottom:718.666623pt;}
.yc_c00088{bottom:745.467167pt;}
.yb_c00088{bottom:772.345827pt;}
.ya_c00088{bottom:799.146371pt;}
.y9_c00088{bottom:826.026271pt;}
.y8_c00088{bottom:852.906171pt;}
.y7_c00088{bottom:879.706715pt;}
.y6_c00088{bottom:906.586615pt;}
.y5_c00088{bottom:933.387159pt;}
.y4_c00088{bottom:960.267059pt;}
.y3_c00088{bottom:987.067603pt;}
.h8_c00088{height:34.967066pt;}
.h6_c00088{height:34.967599pt;}
.h7_c00088{height:48.087599pt;}
.h2_c00088{height:55.645234pt;}
.h1_c00088{height:55.797187pt;}
.h3_c00088{height:65.488326pt;}
.h4_c00088{height:65.806518pt;}
.h5_c00088{height:65.907490pt;}
.h0_c00088{height:1122.666667pt;}
.w0_c00088{width:793.333333pt;}
.x0_c00088{left:0.000000pt;}
.x2_c00088{left:73.519684pt;}
.x1_c00088{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fe764512aabe1d7fdb4d1ccb.woff2')format("woff");}.ff1_c00089{font-family:ff1_c00089;line-height:1.106934;font-style:normal;font-weight:normal;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_e2f73980735a216c1d1ce306.woff2')format("woff");}.ff2_c00089{font-family:ff2_c00089;line-height:1.104492;font-style:normal;font-weight:normal;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_2abd51ddc39caae067287112.woff2')format("woff");}.ff3_c00089{font-family:ff3_c00089;line-height:1.133301;font-style:normal;font-weight:normal;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_aecebd3a6182cac71534c46c.woff2')format("woff");}.ff4_c00089{font-family:ff4_c00089;line-height:1.133301;font-style:normal;font-weight:normal;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_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff5_c00089{font-family:ff5_c00089;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00089{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00089{vertical-align:-14.760600px;}
.v0_c00089{vertical-align:0.000000px;}
.v1_c00089{vertical-align:32.046984px;}
.ls10_c00089{letter-spacing:-0.152013px;}
.ls12_c00089{letter-spacing:-0.134473px;}
.ls11_c00089{letter-spacing:-0.116933px;}
.lsd_c00089{letter-spacing:-0.075619px;}
.ls6_c00089{letter-spacing:-0.063018px;}
.ls9_c00089{letter-spacing:-0.035010px;}
.lsb_c00089{letter-spacing:-0.028008px;}
.lsc_c00089{letter-spacing:-0.021006px;}
.lsa_c00089{letter-spacing:-0.014004px;}
.ls8_c00089{letter-spacing:-0.007002px;}
.lse_c00089{letter-spacing:-0.005847px;}
.ls7_c00089{letter-spacing:0.000000px;}
.ls1_c00089{letter-spacing:0.007002px;}
.ls0_c00089{letter-spacing:0.014004px;}
.ls4_c00089{letter-spacing:0.023281px;}
.ls2_c00089{letter-spacing:0.049014px;}
.ls3_c00089{letter-spacing:0.084024px;}
.lsf_c00089{letter-spacing:0.093546px;}
.ls5_c00089{letter-spacing:0.128626px;}
.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;}
}
.ws2_c00089{word-spacing:-58.466400px;}
.ws0_c00089{word-spacing:-12.967628px;}
.ws1_c00089{word-spacing:-10.397640px;}
.ws1c_c00089{word-spacing:-0.364104px;}
.ws3_c00089{word-spacing:0.000000px;}
.ws14_c00089{word-spacing:0.007002px;}
.ws22_c00089{word-spacing:0.146166px;}
.wsf_c00089{word-spacing:0.294084px;}
.ws6_c00089{word-spacing:0.357102px;}
.ws9_c00089{word-spacing:0.693198px;}
.wsa_c00089{word-spacing:0.707202px;}
.ws5_c00089{word-spacing:1.099314px;}
.ws11_c00089{word-spacing:1.428408px;}
.ws10_c00089{word-spacing:1.463418px;}
.ws1b_c00089{word-spacing:3.248928px;}
.wsb_c00089{word-spacing:6.098742px;}
.wsc_c00089{word-spacing:6.133752px;}
.ws17_c00089{word-spacing:6.833952px;}
.ws13_c00089{word-spacing:6.854958px;}
.ws7_c00089{word-spacing:7.191054px;}
.ws16_c00089{word-spacing:7.198056px;}
.ws12_c00089{word-spacing:7.933266px;}
.ws15_c00089{word-spacing:8.248356px;}
.ws8_c00089{word-spacing:8.269362px;}
.ws18_c00089{word-spacing:9.690768px;}
.ws19_c00089{word-spacing:9.711774px;}
.ws4_c00089{word-spacing:10.790082px;}
.ws1e_c00089{word-spacing:11.441874px;}
.ws1d_c00089{word-spacing:11.541267px;}
.ws1f_c00089{word-spacing:11.687433px;}
.wsd_c00089{word-spacing:14.396112px;}
.wse_c00089{word-spacing:15.859530px;}
.ws1a_c00089{word-spacing:22.329378px;}
.ws20_c00089{word-spacing:31.449077px;}
.ws21_c00089{word-spacing:31.466616px;}
._3_c00089{margin-left:-2.709126px;}
._0_c00089{margin-left:-1.106316px;}
._1_c00089{width:1.113318px;}
._2_c00089{width:5.930694px;}
.fc0_c00089{color:rgb(0,0,0);}
.fs2_c00089{font-size:37.809600px;}
.fs1_c00089{font-size:46.562400px;}
.fs3_c00089{font-size:58.466400px;}
.fs0_c00089{font-size:70.020000px;}
.y0_c00089{bottom:0.000000px;}
.y2_c00089{bottom:109.740968px;}
.y1_c00089{bottom:129.810450px;}
.y1f_c00089{bottom:169.860450px;}
.y1e_c00089{bottom:187.770450px;}
.y1d_c00089{bottom:209.280600px;}
.y1c_c00089{bottom:244.380671px;}
.y1b_c00089{bottom:333.300819px;}
.y1a_c00089{bottom:372.268704px;}
.y19_c00089{bottom:402.508592px;}
.y18_c00089{bottom:432.659204px;}
.y17_c00089{bottom:462.899091px;}
.y16_c00089{bottom:493.049703px;}
.y15_c00089{bottom:523.289591px;}
.y14_c00089{bottom:562.078920px;}
.y13_c00089{bottom:601.048551px;}
.y12_c00089{bottom:631.288439px;}
.y11_c00089{bottom:661.439051px;}
.y10_c00089{bottom:691.678938px;}
.yf_c00089{bottom:721.829550px;}
.ye_c00089{bottom:760.799181px;}
.yd_c00089{bottom:799.768812px;}
.yc_c00089{bottom:829.919424px;}
.yb_c00089{bottom:860.159311px;}
.ya_c00089{bottom:890.309923px;}
.y9_c00089{bottom:920.549811px;}
.y8_c00089{bottom:950.700423px;}
.y7_c00089{bottom:980.940311px;}
.y6_c00089{bottom:1011.090923px;}
.y5_c00089{bottom:1050.060553px;}
.y4_c00089{bottom:1080.300441px;}
.y3_c00089{bottom:1110.451053px;}
.h4_c00089{height:39.337949px;}
.h5_c00089{height:54.098549px;}
.h2_c00089{height:62.600889px;}
.h1_c00089{height:62.771836px;}
.h3_c00089{height:73.789448px;}
.h0_c00089{height:1263.000000px;}
.w0_c00089{width:892.500000px;}
.x0_c00089{left:0.000000px;}
.x2_c00089{left:82.709645px;}
.x1_c00089{left:436.680000px;}
@media print{
.v2_c00089{vertical-align:-13.120533pt;}
.v0_c00089{vertical-align:0.000000pt;}
.v1_c00089{vertical-align:28.486208pt;}
.ls10_c00089{letter-spacing:-0.135122pt;}
.ls12_c00089{letter-spacing:-0.119531pt;}
.ls11_c00089{letter-spacing:-0.103940pt;}
.lsd_c00089{letter-spacing:-0.067217pt;}
.ls6_c00089{letter-spacing:-0.056016pt;}
.ls9_c00089{letter-spacing:-0.031120pt;}
.lsb_c00089{letter-spacing:-0.024896pt;}
.lsc_c00089{letter-spacing:-0.018672pt;}
.lsa_c00089{letter-spacing:-0.012448pt;}
.ls8_c00089{letter-spacing:-0.006224pt;}
.lse_c00089{letter-spacing:-0.005197pt;}
.ls7_c00089{letter-spacing:0.000000pt;}
.ls1_c00089{letter-spacing:0.006224pt;}
.ls0_c00089{letter-spacing:0.012448pt;}
.ls4_c00089{letter-spacing:0.020694pt;}
.ls2_c00089{letter-spacing:0.043568pt;}
.ls3_c00089{letter-spacing:0.074688pt;}
.lsf_c00089{letter-spacing:0.083152pt;}
.ls5_c00089{letter-spacing:0.114334pt;}
.ws2_c00089{word-spacing:-51.970133pt;}
.ws0_c00089{word-spacing:-11.526781pt;}
.ws1_c00089{word-spacing:-9.242347pt;}
.ws1c_c00089{word-spacing:-0.323648pt;}
.ws3_c00089{word-spacing:0.000000pt;}
.ws14_c00089{word-spacing:0.006224pt;}
.ws22_c00089{word-spacing:0.129925pt;}
.wsf_c00089{word-spacing:0.261408pt;}
.ws6_c00089{word-spacing:0.317424pt;}
.ws9_c00089{word-spacing:0.616176pt;}
.wsa_c00089{word-spacing:0.628624pt;}
.ws5_c00089{word-spacing:0.977168pt;}
.ws11_c00089{word-spacing:1.269696pt;}
.ws10_c00089{word-spacing:1.300816pt;}
.ws1b_c00089{word-spacing:2.887936pt;}
.wsb_c00089{word-spacing:5.421104pt;}
.wsc_c00089{word-spacing:5.452224pt;}
.ws17_c00089{word-spacing:6.074624pt;}
.ws13_c00089{word-spacing:6.093296pt;}
.ws7_c00089{word-spacing:6.392048pt;}
.ws16_c00089{word-spacing:6.398272pt;}
.ws12_c00089{word-spacing:7.051792pt;}
.ws15_c00089{word-spacing:7.331872pt;}
.ws8_c00089{word-spacing:7.350544pt;}
.ws18_c00089{word-spacing:8.614016pt;}
.ws19_c00089{word-spacing:8.632688pt;}
.ws4_c00089{word-spacing:9.591184pt;}
.ws1e_c00089{word-spacing:10.170555pt;}
.ws1d_c00089{word-spacing:10.258904pt;}
.ws1f_c00089{word-spacing:10.388830pt;}
.wsd_c00089{word-spacing:12.796544pt;}
.wse_c00089{word-spacing:14.097360pt;}
.ws1a_c00089{word-spacing:19.848336pt;}
.ws20_c00089{word-spacing:27.954735pt;}
.ws21_c00089{word-spacing:27.970326pt;}
._3_c00089{margin-left:-2.408112pt;}
._0_c00089{margin-left:-0.983392pt;}
._1_c00089{width:0.989616pt;}
._2_c00089{width:5.271728pt;}
.fs2_c00089{font-size:33.608533pt;}
.fs1_c00089{font-size:41.388800pt;}
.fs3_c00089{font-size:51.970133pt;}
.fs0_c00089{font-size:62.240000pt;}
.y0_c00089{bottom:0.000000pt;}
.y2_c00089{bottom:97.547527pt;}
.y1_c00089{bottom:115.387067pt;}
.y1f_c00089{bottom:150.987067pt;}
.y1e_c00089{bottom:166.907067pt;}
.y1d_c00089{bottom:186.027200pt;}
.y1c_c00089{bottom:217.227263pt;}
.y1b_c00089{bottom:296.267395pt;}
.y1a_c00089{bottom:330.905515pt;}
.y19_c00089{bottom:357.785415pt;}
.y18_c00089{bottom:384.585959pt;}
.y17_c00089{bottom:411.465859pt;}
.y16_c00089{bottom:438.266403pt;}
.y15_c00089{bottom:465.146303pt;}
.y14_c00089{bottom:499.625707pt;}
.y13_c00089{bottom:534.265379pt;}
.y12_c00089{bottom:561.145279pt;}
.y11_c00089{bottom:587.945823pt;}
.y10_c00089{bottom:614.825723pt;}
.yf_c00089{bottom:641.626267pt;}
.ye_c00089{bottom:676.265939pt;}
.yd_c00089{bottom:710.905611pt;}
.yc_c00089{bottom:737.706155pt;}
.yb_c00089{bottom:764.586055pt;}
.ya_c00089{bottom:791.386599pt;}
.y9_c00089{bottom:818.266499pt;}
.y8_c00089{bottom:845.067043pt;}
.y7_c00089{bottom:871.946943pt;}
.y6_c00089{bottom:898.747487pt;}
.y5_c00089{bottom:933.387159pt;}
.y4_c00089{bottom:960.267059pt;}
.y3_c00089{bottom:987.067603pt;}
.h4_c00089{height:34.967066pt;}
.h5_c00089{height:48.087599pt;}
.h2_c00089{height:55.645234pt;}
.h1_c00089{height:55.797187pt;}
.h3_c00089{height:65.590620pt;}
.h0_c00089{height:1122.666667pt;}
.w0_c00089{width:793.333333pt;}
.x0_c00089{left:0.000000pt;}
.x2_c00089{left:73.519684pt;}
.x1_c00089{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_911ae6ec60eabfa2d96a0c9f.woff2')format("woff");}.ff1_c00090{font-family:ff1_c00090;line-height:1.106934;font-style:normal;font-weight:normal;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_6a1917c36b039bbf82fc0389.woff2')format("woff");}.ff2_c00090{font-family:ff2_c00090;line-height:1.104492;font-style:normal;font-weight:normal;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_0fbefa7d64caf366dfb69863.woff2')format("woff");}.ff3_c00090{font-family:ff3_c00090;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00090;src:url('chunks/assets/font_5ec5291604a79aa5c617852c.woff2')format("woff");}.ff4_c00090{font-family:ff4_c00090;line-height:1.133301;font-style:normal;font-weight:normal;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_eb6d2d0e1bc4a08ac83f932f.woff2')format("woff");}.ff5_c00090{font-family:ff5_c00090;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00090{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00090{vertical-align:-32.040000px;}
.v3_c00090{vertical-align:-14.760000px;}
.v0_c00090{vertical-align:0.000000px;}
.v1_c00090{vertical-align:32.397588px;}
.ls17_c00090{letter-spacing:-0.134473px;}
.ls14_c00090{letter-spacing:-0.075619px;}
.ls9_c00090{letter-spacing:-0.063018px;}
.lsd_c00090{letter-spacing:-0.056016px;}
.ls19_c00090{letter-spacing:-0.052620px;}
.ls12_c00090{letter-spacing:-0.049014px;}
.ls16_c00090{letter-spacing:-0.046773px;}
.ls10_c00090{letter-spacing:-0.042012px;}
.ls1e_c00090{letter-spacing:-0.035080px;}
.ls11_c00090{letter-spacing:-0.035010px;}
.lsc_c00090{letter-spacing:-0.028008px;}
.ls13_c00090{letter-spacing:-0.021006px;}
.lsf_c00090{letter-spacing:-0.014004px;}
.ls18_c00090{letter-spacing:-0.011693px;}
.lsb_c00090{letter-spacing:-0.007002px;}
.ls1b_c00090{letter-spacing:-0.005847px;}
.lsa_c00090{letter-spacing:0.000000px;}
.ls5_c00090{letter-spacing:0.007002px;}
.ls6_c00090{letter-spacing:0.007597px;}
.ls3_c00090{letter-spacing:0.014004px;}
.ls4_c00090{letter-spacing:0.021006px;}
.ls1_c00090{letter-spacing:0.023281px;}
.ls7_c00090{letter-spacing:0.035010px;}
.ls2_c00090{letter-spacing:0.049014px;}
.ls1c_c00090{letter-spacing:0.058466px;}
.ls0_c00090{letter-spacing:0.084024px;}
.lse_c00090{letter-spacing:0.105030px;}
.ls15_c00090{letter-spacing:0.140319px;}
.ls1d_c00090{letter-spacing:0.204632px;}
.ls1a_c00090{letter-spacing:0.315719px;}
.ls8_c00090{letter-spacing:0.331884px;}
.sc__c00090{text-shadow:none;}
.sc0_c00090{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00090{-webkit-text-stroke:0px transparent;}
.sc0_c00090{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00090{word-spacing:-19.423548px;}
.ws0_c00090{word-spacing:-12.967628px;}
.ws2_c00090{word-spacing:-10.397640px;}
.ws25_c00090{word-spacing:-0.304025px;}
.ws29_c00090{word-spacing:-0.192939px;}
.wsf_c00090{word-spacing:-0.053180px;}
.ws28_c00090{word-spacing:-0.046773px;}
.ws3_c00090{word-spacing:0.000000px;}
.ws1f_c00090{word-spacing:0.014004px;}
.ws26_c00090{word-spacing:0.017540px;}
.ws15_c00090{word-spacing:0.021006px;}
.ws27_c00090{word-spacing:0.023387px;}
.ws2a_c00090{word-spacing:0.046773px;}
.ws24_c00090{word-spacing:0.064313px;}
.wsd_c00090{word-spacing:0.336096px;}
.wse_c00090{word-spacing:0.350100px;}
.ws19_c00090{word-spacing:1.792512px;}
.ws14_c00090{word-spacing:4.306230px;}
.ws20_c00090{word-spacing:5.273669px;}
.ws21_c00090{word-spacing:5.460762px;}
.ws1e_c00090{word-spacing:6.098742px;}
.ws1d_c00090{word-spacing:6.112746px;}
.wsb_c00090{word-spacing:6.448842px;}
.wsa_c00090{word-spacing:6.462846px;}
.ws13_c00090{word-spacing:6.791940px;}
.ws12_c00090{word-spacing:6.833952px;}
.ws1a_c00090{word-spacing:6.868962px;}
.wsc_c00090{word-spacing:7.919262px;}
.ws1b_c00090{word-spacing:12.204486px;}
.ws11_c00090{word-spacing:12.946698px;}
.ws10_c00090{word-spacing:13.296798px;}
.ws9_c00090{word-spacing:14.725206px;}
.ws8_c00090{word-spacing:15.089310px;}
.ws23_c00090{word-spacing:15.867781px;}
.ws22_c00090{word-spacing:15.990560px;}
.ws1c_c00090{word-spacing:16.566732px;}
.ws7_c00090{word-spacing:16.958844px;}
.ws6_c00090{word-spacing:17.217918px;}
.ws18_c00090{word-spacing:17.645040px;}
.ws4_c00090{word-spacing:20.515860px;}
.ws5_c00090{word-spacing:20.893968px;}
.ws17_c00090{word-spacing:24.499998px;}
.ws16_c00090{word-spacing:24.514002px;}
._2_c00090{margin-left:-6.476850px;}
._4_c00090{margin-left:-2.711646px;}
._1_c00090{margin-left:-1.228608px;}
._0_c00090{width:1.155330px;}
._3_c00090{width:5.930694px;}
.fc0_c00090{color:rgb(0,0,0);}
.fs3_c00090{font-size:37.809600px;}
.fs1_c00090{font-size:46.562400px;}
.fs4_c00090{font-size:58.466400px;}
.fs0_c00090{font-size:70.020000px;}
.fs2_c00090{font-size:75.971400px;}
.y0_c00090{bottom:0.000000px;}
.y2_c00090{bottom:109.740968px;}
.y1_c00090{bottom:129.810450px;}
.y22_c00090{bottom:149.430730px;}
.y21_c00090{bottom:171.030450px;}
.y20_c00090{bottom:209.280600px;}
.y1f_c00090{bottom:227.280600px;}
.y1e_c00090{bottom:261.840450px;}
.y1d_c00090{bottom:279.660450px;}
.y1c_c00090{bottom:301.260450px;}
.y1b_c00090{bottom:316.020366px;}
.y1a_c00090{bottom:351.480245px;}
.y19_c00090{bottom:390.359077px;}
.y18_c00090{bottom:420.598965px;}
.y17_c00090{bottom:450.749577px;}
.y16_c00090{bottom:480.989464px;}
.y15_c00090{bottom:511.140076px;}
.y14_c00090{bottom:541.379964px;}
.y13_c00090{bottom:571.530576px;}
.y12_c00090{bottom:601.770464px;}
.y11_c00090{bottom:640.740094px;}
.y10_c00090{bottom:679.620432px;}
.yf_c00090{bottom:709.860320px;}
.ye_c00090{bottom:740.010932px;}
.yd_c00090{bottom:770.250819px;}
.yc_c00090{bottom:809.220450px;}
.yb_c00090{bottom:838.380450px;}
.ya_c00090{bottom:887.430360px;}
.y9_c00090{bottom:917.670248px;}
.y8_c00090{bottom:947.729834px;}
.y7_c00090{bottom:983.819892px;}
.y6_c00090{bottom:1019.909951px;}
.y5_c00090{bottom:1050.060563px;}
.y4_c00090{bottom:1080.299838px;}
.y3_c00090{bottom:1110.451053px;}
.hb_c00090{height:39.337949px;}
.h9_c00090{height:39.338549px;}
.ha_c00090{height:54.098549px;}
.h5_c00090{height:62.600889px;}
.h1_c00090{height:62.771836px;}
.h8_c00090{height:62.772172px;}
.h4_c00090{height:68.589413px;}
.h3_c00090{height:73.784912px;}
.h6_c00090{height:74.028858px;}
.h2_c00090{height:74.140052px;}
.h7_c00090{height:74.148554px;}
.h0_c00090{height:1263.000000px;}
.w0_c00090{width:892.500000px;}
.x0_c00090{left:0.000000px;}
.x2_c00090{left:82.709645px;}
.x1_c00090{left:436.680000px;}
@media print{
.v2_c00090{vertical-align:-28.480000pt;}
.v3_c00090{vertical-align:-13.120000pt;}
.v0_c00090{vertical-align:0.000000pt;}
.v1_c00090{vertical-align:28.797856pt;}
.ls17_c00090{letter-spacing:-0.119531pt;}
.ls14_c00090{letter-spacing:-0.067217pt;}
.ls9_c00090{letter-spacing:-0.056016pt;}
.lsd_c00090{letter-spacing:-0.049792pt;}
.ls19_c00090{letter-spacing:-0.046773pt;}
.ls12_c00090{letter-spacing:-0.043568pt;}
.ls16_c00090{letter-spacing:-0.041576pt;}
.ls10_c00090{letter-spacing:-0.037344pt;}
.ls1e_c00090{letter-spacing:-0.031182pt;}
.ls11_c00090{letter-spacing:-0.031120pt;}
.lsc_c00090{letter-spacing:-0.024896pt;}
.ls13_c00090{letter-spacing:-0.018672pt;}
.lsf_c00090{letter-spacing:-0.012448pt;}
.ls18_c00090{letter-spacing:-0.010394pt;}
.lsb_c00090{letter-spacing:-0.006224pt;}
.ls1b_c00090{letter-spacing:-0.005197pt;}
.lsa_c00090{letter-spacing:0.000000pt;}
.ls5_c00090{letter-spacing:0.006224pt;}
.ls6_c00090{letter-spacing:0.006753pt;}
.ls3_c00090{letter-spacing:0.012448pt;}
.ls4_c00090{letter-spacing:0.018672pt;}
.ls1_c00090{letter-spacing:0.020694pt;}
.ls7_c00090{letter-spacing:0.031120pt;}
.ls2_c00090{letter-spacing:0.043568pt;}
.ls1c_c00090{letter-spacing:0.051970pt;}
.ls0_c00090{letter-spacing:0.074688pt;}
.lse_c00090{letter-spacing:0.093360pt;}
.ls15_c00090{letter-spacing:0.124728pt;}
.ls1d_c00090{letter-spacing:0.181895pt;}
.ls1a_c00090{letter-spacing:0.280639pt;}
.ls8_c00090{letter-spacing:0.295008pt;}
.ws1_c00090{word-spacing:-17.265376pt;}
.ws0_c00090{word-spacing:-11.526781pt;}
.ws2_c00090{word-spacing:-9.242347pt;}
.ws25_c00090{word-spacing:-0.270245pt;}
.ws29_c00090{word-spacing:-0.171501pt;}
.wsf_c00090{word-spacing:-0.047271pt;}
.ws28_c00090{word-spacing:-0.041576pt;}
.ws3_c00090{word-spacing:0.000000pt;}
.ws1f_c00090{word-spacing:0.012448pt;}
.ws26_c00090{word-spacing:0.015591pt;}
.ws15_c00090{word-spacing:0.018672pt;}
.ws27_c00090{word-spacing:0.020788pt;}
.ws2a_c00090{word-spacing:0.041576pt;}
.ws24_c00090{word-spacing:0.057167pt;}
.wsd_c00090{word-spacing:0.298752pt;}
.wse_c00090{word-spacing:0.311200pt;}
.ws19_c00090{word-spacing:1.593344pt;}
.ws14_c00090{word-spacing:3.827760pt;}
.ws20_c00090{word-spacing:4.687706pt;}
.ws21_c00090{word-spacing:4.854010pt;}
.ws1e_c00090{word-spacing:5.421104pt;}
.ws1d_c00090{word-spacing:5.433552pt;}
.wsb_c00090{word-spacing:5.732304pt;}
.wsa_c00090{word-spacing:5.744752pt;}
.ws13_c00090{word-spacing:6.037280pt;}
.ws12_c00090{word-spacing:6.074624pt;}
.ws1a_c00090{word-spacing:6.105744pt;}
.wsc_c00090{word-spacing:7.039344pt;}
.ws1b_c00090{word-spacing:10.848432pt;}
.ws11_c00090{word-spacing:11.508176pt;}
.ws10_c00090{word-spacing:11.819376pt;}
.ws9_c00090{word-spacing:13.089072pt;}
.ws8_c00090{word-spacing:13.412720pt;}
.ws23_c00090{word-spacing:14.104694pt;}
.ws22_c00090{word-spacing:14.213831pt;}
.ws1c_c00090{word-spacing:14.725984pt;}
.ws7_c00090{word-spacing:15.074528pt;}
.ws6_c00090{word-spacing:15.304816pt;}
.ws18_c00090{word-spacing:15.684480pt;}
.ws4_c00090{word-spacing:18.236320pt;}
.ws5_c00090{word-spacing:18.572416pt;}
.ws17_c00090{word-spacing:21.777776pt;}
.ws16_c00090{word-spacing:21.790224pt;}
._2_c00090{margin-left:-5.757200pt;}
._4_c00090{margin-left:-2.410352pt;}
._1_c00090{margin-left:-1.092096pt;}
._0_c00090{width:1.026960pt;}
._3_c00090{width:5.271728pt;}
.fs3_c00090{font-size:33.608533pt;}
.fs1_c00090{font-size:41.388800pt;}
.fs4_c00090{font-size:51.970133pt;}
.fs0_c00090{font-size:62.240000pt;}
.fs2_c00090{font-size:67.530133pt;}
.y0_c00090{bottom:0.000000pt;}
.y2_c00090{bottom:97.547527pt;}
.y1_c00090{bottom:115.387067pt;}
.y22_c00090{bottom:132.827316pt;}
.y21_c00090{bottom:152.027067pt;}
.y20_c00090{bottom:186.027200pt;}
.y1f_c00090{bottom:202.027200pt;}
.y1e_c00090{bottom:232.747067pt;}
.y1d_c00090{bottom:248.587067pt;}
.y1c_c00090{bottom:267.787067pt;}
.y1b_c00090{bottom:280.906992pt;}
.y1a_c00090{bottom:312.426884pt;}
.y19_c00090{bottom:346.985847pt;}
.y18_c00090{bottom:373.865747pt;}
.y17_c00090{bottom:400.666291pt;}
.y16_c00090{bottom:427.546191pt;}
.y15_c00090{bottom:454.346735pt;}
.y14_c00090{bottom:481.226635pt;}
.y13_c00090{bottom:508.027179pt;}
.y12_c00090{bottom:534.907079pt;}
.y11_c00090{bottom:569.546751pt;}
.y10_c00090{bottom:604.107051pt;}
.yf_c00090{bottom:630.986951pt;}
.ye_c00090{bottom:657.787495pt;}
.yd_c00090{bottom:684.667395pt;}
.yc_c00090{bottom:719.307067pt;}
.yb_c00090{bottom:745.227067pt;}
.ya_c00090{bottom:788.826987pt;}
.y9_c00090{bottom:815.706887pt;}
.y8_c00090{bottom:842.426519pt;}
.y7_c00090{bottom:874.506571pt;}
.y6_c00090{bottom:906.586623pt;}
.y5_c00090{bottom:933.387167pt;}
.y4_c00090{bottom:960.266523pt;}
.y3_c00090{bottom:987.067603pt;}
.hb_c00090{height:34.967066pt;}
.h9_c00090{height:34.967599pt;}
.ha_c00090{height:48.087599pt;}
.h5_c00090{height:55.645234pt;}
.h1_c00090{height:55.797187pt;}
.h8_c00090{height:55.797486pt;}
.h4_c00090{height:60.968367pt;}
.h3_c00090{height:65.586588pt;}
.h6_c00090{height:65.803430pt;}
.h2_c00090{height:65.902269pt;}
.h7_c00090{height:65.909826pt;}
.h0_c00090{height:1122.666667pt;}
.w0_c00090{width:793.333333pt;}
.x0_c00090{left:0.000000pt;}
.x2_c00090{left:73.519684pt;}
.x1_c00090{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ad8acc58812a22053722f864.woff2')format("woff");}.ff1_c00091{font-family:ff1_c00091;line-height:1.106934;font-style:normal;font-weight:normal;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_df71eb7fb379287561c45bbe.woff2')format("woff");}.ff2_c00091{font-family:ff2_c00091;line-height:1.104492;font-style:normal;font-weight:normal;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_0f60f5d8581871b137f295dc.woff2')format("woff");}.ff3_c00091{font-family:ff3_c00091;line-height:1.133301;font-style:normal;font-weight:normal;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_7dbeb1f9cc51ba868ce895ad.woff2')format("woff");}.ff4_c00091{font-family:ff4_c00091;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00091{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00091{vertical-align:-14.760000px;}
.v0_c00091{vertical-align:0.000000px;}
.v1_c00091{vertical-align:32.044032px;}
.ls14_c00091{letter-spacing:-0.707443px;}
.ls15_c00091{letter-spacing:-0.152013px;}
.ls11_c00091{letter-spacing:-0.076006px;}
.lsf_c00091{letter-spacing:-0.075619px;}
.ls5_c00091{letter-spacing:-0.063018px;}
.ls10_c00091{letter-spacing:-0.052620px;}
.lsa_c00091{letter-spacing:-0.049014px;}
.lsc_c00091{letter-spacing:-0.042012px;}
.ls12_c00091{letter-spacing:-0.040926px;}
.ls7_c00091{letter-spacing:-0.035010px;}
.ls17_c00091{letter-spacing:-0.029233px;}
.lsd_c00091{letter-spacing:-0.028008px;}
.ls9_c00091{letter-spacing:-0.021006px;}
.lsb_c00091{letter-spacing:-0.014004px;}
.ls13_c00091{letter-spacing:-0.011693px;}
.ls8_c00091{letter-spacing:-0.007002px;}
.ls6_c00091{letter-spacing:0.000000px;}
.ls0_c00091{letter-spacing:0.007002px;}
.ls2_c00091{letter-spacing:0.014004px;}
.ls1_c00091{letter-spacing:0.023281px;}
.ls4_c00091{letter-spacing:0.084024px;}
.ls16_c00091{letter-spacing:0.210479px;}
.lse_c00091{letter-spacing:0.343098px;}
.ls3_c00091{letter-spacing:5.734638px;}
.sc__c00091{text-shadow:none;}
.sc0_c00091{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00091{-webkit-text-stroke:0px transparent;}
.sc0_c00091{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00091{word-spacing:-19.549584px;}
.ws2_c00091{word-spacing:-19.472562px;}
.ws1_c00091{word-spacing:-12.967628px;}
.ws3_c00091{word-spacing:-10.397640px;}
.ws21_c00091{word-spacing:-0.364104px;}
.ws19_c00091{word-spacing:-0.098028px;}
.ws20_c00091{word-spacing:-0.014004px;}
.ws18_c00091{word-spacing:-0.007002px;}
.ws4_c00091{word-spacing:0.000000px;}
.ws22_c00091{word-spacing:0.035010px;}
.ws2b_c00091{word-spacing:0.040926px;}
.ws23_c00091{word-spacing:0.064313px;}
.ws10_c00091{word-spacing:0.693198px;}
.wsd_c00091{word-spacing:0.700200px;}
.wse_c00091{word-spacing:0.714204px;}
.ws2a_c00091{word-spacing:0.882843px;}
.ws29_c00091{word-spacing:1.245334px;}
.ws25_c00091{word-spacing:1.496740px;}
.ws26_c00091{word-spacing:1.824152px;}
.ws24_c00091{word-spacing:1.888465px;}
.wsf_c00091{word-spacing:3.262932px;}
.ws1d_c00091{word-spacing:3.606030px;}
.ws1c_c00091{word-spacing:3.991140px;}
.ws11_c00091{word-spacing:5.069448px;}
.ws13_c00091{word-spacing:5.748642px;}
.ws14_c00091{word-spacing:5.755644px;}
.ws28_c00091{word-spacing:6.209132px;}
.wsb_c00091{word-spacing:6.455844px;}
.wsa_c00091{word-spacing:6.469848px;}
.ws7_c00091{word-spacing:6.826950px;}
.ws27_c00091{word-spacing:6.840569px;}
.ws6_c00091{word-spacing:7.191054px;}
.ws5_c00091{word-spacing:7.219062px;}
.ws17_c00091{word-spacing:8.647470px;}
.ws16_c00091{word-spacing:10.061874px;}
.ws15_c00091{word-spacing:10.453986px;}
.wsc_c00091{word-spacing:10.783080px;}
.ws12_c00091{word-spacing:11.147184px;}
.ws1f_c00091{word-spacing:16.573734px;}
.ws1e_c00091{word-spacing:16.944840px;}
.ws8_c00091{word-spacing:23.764788px;}
.ws9_c00091{word-spacing:24.156900px;}
.ws1b_c00091{word-spacing:35.976276px;}
.ws1a_c00091{word-spacing:36.340380px;}
._2_c00091{margin-left:-36.515430px;}
._4_c00091{margin-left:-2.706804px;}
._1_c00091{margin-left:-1.302372px;}
._0_c00091{width:1.057302px;}
._5_c00091{width:2.282802px;}
._3_c00091{width:5.930694px;}
.fc0_c00091{color:rgb(0,0,0);}
.fs2_c00091{font-size:37.809600px;}
.fs1_c00091{font-size:46.562400px;}
.fs3_c00091{font-size:58.466400px;}
.fs0_c00091{font-size:70.020000px;}
.y0_c00091{bottom:0.000000px;}
.y2_c00091{bottom:109.740968px;}
.y1_c00091{bottom:129.810450px;}
.y22_c00091{bottom:149.428647px;}
.y21_c00091{bottom:167.249205px;}
.y20_c00091{bottom:185.249548px;}
.y1f_c00091{bottom:203.070107px;}
.y1e_c00091{bottom:224.670450px;}
.y1d_c00091{bottom:251.310450px;}
.y1c_c00091{bottom:265.980499px;}
.y1b_c00091{bottom:324.569734px;}
.y1a_c00091{bottom:363.539365px;}
.y19_c00091{bottom:402.508996px;}
.y18_c00091{bottom:441.389352px;}
.y17_c00091{bottom:471.629239px;}
.y16_c00091{bottom:501.779851px;}
.y15_c00091{bottom:532.019739px;}
.y14_c00091{bottom:570.900095px;}
.y13_c00091{bottom:609.779303px;}
.y12_c00091{bottom:648.748934px;}
.y11_c00091{bottom:687.718565px;}
.y10_c00091{bottom:717.869177px;}
.yf_c00091{bottom:748.109064px;}
.ye_c00091{bottom:778.259676px;}
.yd_c00091{bottom:808.499564px;}
.yc_c00091{bottom:838.650176px;}
.yb_c00091{bottom:868.890063px;}
.ya_c00091{bottom:899.040675px;}
.y9_c00091{bottom:929.280563px;}
.y8_c00091{bottom:959.519442px;}
.y7_c00091{bottom:989.670054px;}
.y6_c00091{bottom:1019.909942px;}
.y5_c00091{bottom:1050.060553px;}
.y4_c00091{bottom:1080.300441px;}
.y3_c00091{bottom:1110.451053px;}
.h5_c00091{height:39.338549px;}
.h6_c00091{height:39.698549px;}
.h7_c00091{height:54.098549px;}
.h2_c00091{height:62.600889px;}
.h1_c00091{height:62.771836px;}
.h3_c00091{height:73.786496px;}
.h4_c00091{height:74.147054px;}
.h0_c00091{height:1263.000000px;}
.w0_c00091{width:892.500000px;}
.x0_c00091{left:0.000000px;}
.x2_c00091{left:82.709645px;}
.x1_c00091{left:436.680000px;}
@media print{
.v2_c00091{vertical-align:-13.120000pt;}
.v0_c00091{vertical-align:0.000000pt;}
.v1_c00091{vertical-align:28.483584pt;}
.ls14_c00091{letter-spacing:-0.628839pt;}
.ls15_c00091{letter-spacing:-0.135122pt;}
.ls11_c00091{letter-spacing:-0.067561pt;}
.lsf_c00091{letter-spacing:-0.067217pt;}
.ls5_c00091{letter-spacing:-0.056016pt;}
.ls10_c00091{letter-spacing:-0.046773pt;}
.lsa_c00091{letter-spacing:-0.043568pt;}
.lsc_c00091{letter-spacing:-0.037344pt;}
.ls12_c00091{letter-spacing:-0.036379pt;}
.ls7_c00091{letter-spacing:-0.031120pt;}
.ls17_c00091{letter-spacing:-0.025985pt;}
.lsd_c00091{letter-spacing:-0.024896pt;}
.ls9_c00091{letter-spacing:-0.018672pt;}
.lsb_c00091{letter-spacing:-0.012448pt;}
.ls13_c00091{letter-spacing:-0.010394pt;}
.ls8_c00091{letter-spacing:-0.006224pt;}
.ls6_c00091{letter-spacing:0.000000pt;}
.ls0_c00091{letter-spacing:0.006224pt;}
.ls2_c00091{letter-spacing:0.012448pt;}
.ls1_c00091{letter-spacing:0.020694pt;}
.ls4_c00091{letter-spacing:0.074688pt;}
.ls16_c00091{letter-spacing:0.187092pt;}
.lse_c00091{letter-spacing:0.304976pt;}
.ls3_c00091{letter-spacing:5.097456pt;}
.ws0_c00091{word-spacing:-17.377408pt;}
.ws2_c00091{word-spacing:-17.308944pt;}
.ws1_c00091{word-spacing:-11.526781pt;}
.ws3_c00091{word-spacing:-9.242347pt;}
.ws21_c00091{word-spacing:-0.323648pt;}
.ws19_c00091{word-spacing:-0.087136pt;}
.ws20_c00091{word-spacing:-0.012448pt;}
.ws18_c00091{word-spacing:-0.006224pt;}
.ws4_c00091{word-spacing:0.000000pt;}
.ws22_c00091{word-spacing:0.031120pt;}
.ws2b_c00091{word-spacing:0.036379pt;}
.ws23_c00091{word-spacing:0.057167pt;}
.ws10_c00091{word-spacing:0.616176pt;}
.wsd_c00091{word-spacing:0.622400pt;}
.wse_c00091{word-spacing:0.634848pt;}
.ws2a_c00091{word-spacing:0.784749pt;}
.ws29_c00091{word-spacing:1.106964pt;}
.ws25_c00091{word-spacing:1.330435pt;}
.ws26_c00091{word-spacing:1.621468pt;}
.ws24_c00091{word-spacing:1.678635pt;}
.wsf_c00091{word-spacing:2.900384pt;}
.ws1d_c00091{word-spacing:3.205360pt;}
.ws1c_c00091{word-spacing:3.547680pt;}
.ws11_c00091{word-spacing:4.506176pt;}
.ws13_c00091{word-spacing:5.109904pt;}
.ws14_c00091{word-spacing:5.116128pt;}
.ws28_c00091{word-spacing:5.519228pt;}
.wsb_c00091{word-spacing:5.738528pt;}
.wsa_c00091{word-spacing:5.750976pt;}
.ws7_c00091{word-spacing:6.068400pt;}
.ws27_c00091{word-spacing:6.080506pt;}
.ws6_c00091{word-spacing:6.392048pt;}
.ws5_c00091{word-spacing:6.416944pt;}
.ws17_c00091{word-spacing:7.686640pt;}
.ws16_c00091{word-spacing:8.943888pt;}
.ws15_c00091{word-spacing:9.292432pt;}
.wsc_c00091{word-spacing:9.584960pt;}
.ws12_c00091{word-spacing:9.908608pt;}
.ws1f_c00091{word-spacing:14.732208pt;}
.ws1e_c00091{word-spacing:15.062080pt;}
.ws8_c00091{word-spacing:21.124256pt;}
.ws9_c00091{word-spacing:21.472800pt;}
.ws1b_c00091{word-spacing:31.978912pt;}
.ws1a_c00091{word-spacing:32.302560pt;}
._2_c00091{margin-left:-32.458160pt;}
._4_c00091{margin-left:-2.406048pt;}
._1_c00091{margin-left:-1.157664pt;}
._0_c00091{width:0.939824pt;}
._5_c00091{width:2.029157pt;}
._3_c00091{width:5.271728pt;}
.fs2_c00091{font-size:33.608533pt;}
.fs1_c00091{font-size:41.388800pt;}
.fs3_c00091{font-size:51.970133pt;}
.fs0_c00091{font-size:62.240000pt;}
.y0_c00091{bottom:0.000000pt;}
.y2_c00091{bottom:97.547527pt;}
.y1_c00091{bottom:115.387067pt;}
.y22_c00091{bottom:132.825464pt;}
.y21_c00091{bottom:148.665960pt;}
.y20_c00091{bottom:164.666265pt;}
.y1f_c00091{bottom:180.506762pt;}
.y1e_c00091{bottom:199.707067pt;}
.y1d_c00091{bottom:223.387067pt;}
.y1c_c00091{bottom:236.427111pt;}
.y1b_c00091{bottom:288.506431pt;}
.y1a_c00091{bottom:323.146103pt;}
.y19_c00091{bottom:357.785775pt;}
.y18_c00091{bottom:392.346091pt;}
.y17_c00091{bottom:419.225991pt;}
.y16_c00091{bottom:446.026535pt;}
.y15_c00091{bottom:472.906435pt;}
.y14_c00091{bottom:507.466751pt;}
.y13_c00091{bottom:542.026047pt;}
.y12_c00091{bottom:576.665719pt;}
.y11_c00091{bottom:611.305391pt;}
.y10_c00091{bottom:638.105935pt;}
.yf_c00091{bottom:664.985835pt;}
.ye_c00091{bottom:691.786379pt;}
.yd_c00091{bottom:718.666279pt;}
.yc_c00091{bottom:745.466823pt;}
.yb_c00091{bottom:772.346723pt;}
.ya_c00091{bottom:799.147267pt;}
.y9_c00091{bottom:826.027167pt;}
.y8_c00091{bottom:852.906171pt;}
.y7_c00091{bottom:879.706715pt;}
.y6_c00091{bottom:906.586615pt;}
.y5_c00091{bottom:933.387159pt;}
.y4_c00091{bottom:960.267059pt;}
.y3_c00091{bottom:987.067603pt;}
.h5_c00091{height:34.967599pt;}
.h6_c00091{height:35.287599pt;}
.h7_c00091{height:48.087599pt;}
.h2_c00091{height:55.645234pt;}
.h1_c00091{height:55.797187pt;}
.h3_c00091{height:65.587997pt;}
.h4_c00091{height:65.908492pt;}
.h0_c00091{height:1122.666667pt;}
.w0_c00091{width:793.333333pt;}
.x0_c00091{left:0.000000pt;}
.x2_c00091{left:73.519684pt;}
.x1_c00091{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0f5a3519ce499760bada0671.woff2')format("woff");}.ff1_c00092{font-family:ff1_c00092;line-height:1.106934;font-style:normal;font-weight:normal;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_7083d52b44ac11f5ede3437d.woff2')format("woff");}.ff2_c00092{font-family:ff2_c00092;line-height:1.104492;font-style:normal;font-weight:normal;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_71f4419739fd18aeb8508b0e.woff2')format("woff");}.ff3_c00092{font-family:ff3_c00092;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00092;src:url('chunks/assets/font_4a728915eff339add1964bad.woff2')format("woff");}.ff4_c00092{font-family:ff4_c00092;line-height:1.133301;font-style:normal;font-weight:normal;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_3d9c2c5e153533def1f3817a.woff2')format("woff");}.ff5_c00092{font-family:ff5_c00092;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00092{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00092{vertical-align:-14.760000px;}
.v0_c00092{vertical-align:0.000000px;}
.v1_c00092{vertical-align:32.396112px;}
.ls6_c00092{letter-spacing:-0.335249px;}
.lsd_c00092{letter-spacing:-0.309872px;}
.lse_c00092{letter-spacing:-0.122779px;}
.lsb_c00092{letter-spacing:-0.075619px;}
.ls2_c00092{letter-spacing:-0.063018px;}
.lsa_c00092{letter-spacing:-0.042012px;}
.lsc_c00092{letter-spacing:-0.040926px;}
.ls9_c00092{letter-spacing:-0.035010px;}
.ls5_c00092{letter-spacing:-0.028008px;}
.ls7_c00092{letter-spacing:-0.021006px;}
.ls8_c00092{letter-spacing:-0.014004px;}
.ls4_c00092{letter-spacing:-0.007002px;}
.ls3_c00092{letter-spacing:0.000000px;}
.ls0_c00092{letter-spacing:0.014004px;}
.lsf_c00092{letter-spacing:0.029233px;}
.ls1_c00092{letter-spacing:0.056016px;}
.sc__c00092{text-shadow:none;}
.sc0_c00092{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00092{-webkit-text-stroke:0px transparent;}
.sc0_c00092{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00092{word-spacing:-16.224426px;}
.ws0_c00092{word-spacing:-10.397640px;}
.ws9_c00092{word-spacing:-0.336096px;}
.wse_c00092{word-spacing:-0.028008px;}
.ws3_c00092{word-spacing:-0.007002px;}
.ws2_c00092{word-spacing:0.000000px;}
.ws4_c00092{word-spacing:0.014004px;}
.wsb_c00092{word-spacing:0.021006px;}
.wsd_c00092{word-spacing:0.028008px;}
.ws10_c00092{word-spacing:0.287082px;}
.ws7_c00092{word-spacing:0.357102px;}
.ws5_c00092{word-spacing:0.358530px;}
.wsa_c00092{word-spacing:0.371106px;}
.wsc_c00092{word-spacing:0.378108px;}
.wsf_c00092{word-spacing:0.385110px;}
.ws6_c00092{word-spacing:9.725778px;}
.ws8_c00092{word-spacing:17.988138px;}
.ws13_c00092{word-spacing:18.855414px;}
.ws11_c00092{word-spacing:19.136053px;}
.ws12_c00092{word-spacing:19.404998px;}
._3_c00092{margin-left:-2.707812px;}
._1_c00092{margin-left:-1.288368px;}
._0_c00092{width:1.015290px;}
._2_c00092{width:5.930694px;}
.fc0_c00092{color:rgb(0,0,0);}
.fs2_c00092{font-size:37.809600px;}
.fs1_c00092{font-size:46.562400px;}
.fs3_c00092{font-size:58.466400px;}
.fs0_c00092{font-size:70.020000px;}
.y0_c00092{bottom:0.000000px;}
.y2_c00092{bottom:109.740968px;}
.y1_c00092{bottom:129.810450px;}
.y29_c00092{bottom:149.429891px;}
.y28_c00092{bottom:170.940450px;}
.y27_c00092{bottom:185.695941px;}
.y26_c00092{bottom:225.206477px;}
.y25_c00092{bottom:245.366985px;}
.y24_c00092{bottom:265.527493px;}
.y23_c00092{bottom:285.596976px;}
.y22_c00092{bottom:305.757485px;}
.y21_c00092{bottom:335.908097px;}
.y20_c00092{bottom:374.877727px;}
.y1f_c00092{bottom:403.767979px;}
.y1e_c00092{bottom:423.928488px;}
.y1d_c00092{bottom:443.997970px;}
.y1c_c00092{bottom:464.158479px;}
.y1b_c00092{bottom:484.318987px;}
.y1a_c00092{bottom:504.388470px;}
.y19_c00092{bottom:524.548978px;}
.y18_c00092{bottom:544.618461px;}
.y17_c00092{bottom:564.778970px;}
.y16_c00092{bottom:584.848452px;}
.y15_c00092{bottom:605.008960px;}
.y14_c00092{bottom:625.169469px;}
.y13_c00092{bottom:645.238951px;}
.y12_c00092{bottom:665.399460px;}
.y11_c00092{bottom:685.559968px;}
.y10_c00092{bottom:705.629451px;}
.yf_c00092{bottom:725.789959px;}
.ye_c00092{bottom:745.950468px;}
.yd_c00092{bottom:766.019950px;}
.yc_c00092{bottom:786.180459px;}
.yb_c00092{bottom:816.331071px;}
.ya_c00092{bottom:855.300702px;}
.y9_c00092{bottom:885.540589px;}
.y8_c00092{bottom:924.510221px;}
.y7_c00092{bottom:963.390576px;}
.y6_c00092{bottom:993.630463px;}
.y5_c00092{bottom:1032.600094px;}
.y4_c00092{bottom:1071.481422px;}
.y3_c00092{bottom:1110.451053px;}
.h6_c00092{height:39.338549px;}
.h7_c00092{height:54.098549px;}
.h2_c00092{height:62.600889px;}
.h1_c00092{height:62.771836px;}
.h5_c00092{height:62.790472px;}
.h4_c00092{height:63.216299px;}
.h3_c00092{height:74.024898px;}
.h0_c00092{height:1263.000000px;}
.w0_c00092{width:892.500000px;}
.x0_c00092{left:0.000000px;}
.x2_c00092{left:82.709645px;}
.x1_c00092{left:436.680000px;}
@media print{
.v2_c00092{vertical-align:-13.120000pt;}
.v0_c00092{vertical-align:0.000000pt;}
.v1_c00092{vertical-align:28.796544pt;}
.ls6_c00092{letter-spacing:-0.297999pt;}
.lsd_c00092{letter-spacing:-0.275442pt;}
.lse_c00092{letter-spacing:-0.109137pt;}
.lsb_c00092{letter-spacing:-0.067217pt;}
.ls2_c00092{letter-spacing:-0.056016pt;}
.lsa_c00092{letter-spacing:-0.037344pt;}
.lsc_c00092{letter-spacing:-0.036379pt;}
.ls9_c00092{letter-spacing:-0.031120pt;}
.ls5_c00092{letter-spacing:-0.024896pt;}
.ls7_c00092{letter-spacing:-0.018672pt;}
.ls8_c00092{letter-spacing:-0.012448pt;}
.ls4_c00092{letter-spacing:-0.006224pt;}
.ls3_c00092{letter-spacing:0.000000pt;}
.ls0_c00092{letter-spacing:0.012448pt;}
.lsf_c00092{letter-spacing:0.025985pt;}
.ls1_c00092{letter-spacing:0.049792pt;}
.ws1_c00092{word-spacing:-14.421712pt;}
.ws0_c00092{word-spacing:-9.242347pt;}
.ws9_c00092{word-spacing:-0.298752pt;}
.wse_c00092{word-spacing:-0.024896pt;}
.ws3_c00092{word-spacing:-0.006224pt;}
.ws2_c00092{word-spacing:0.000000pt;}
.ws4_c00092{word-spacing:0.012448pt;}
.wsb_c00092{word-spacing:0.018672pt;}
.wsd_c00092{word-spacing:0.024896pt;}
.ws10_c00092{word-spacing:0.255184pt;}
.ws7_c00092{word-spacing:0.317424pt;}
.ws5_c00092{word-spacing:0.318694pt;}
.wsa_c00092{word-spacing:0.329872pt;}
.wsc_c00092{word-spacing:0.336096pt;}
.wsf_c00092{word-spacing:0.342320pt;}
.ws6_c00092{word-spacing:8.645136pt;}
.ws8_c00092{word-spacing:15.989456pt;}
.ws13_c00092{word-spacing:16.760368pt;}
.ws11_c00092{word-spacing:17.009825pt;}
.ws12_c00092{word-spacing:17.248887pt;}
._3_c00092{margin-left:-2.406944pt;}
._1_c00092{margin-left:-1.145216pt;}
._0_c00092{width:0.902480pt;}
._2_c00092{width:5.271728pt;}
.fs2_c00092{font-size:33.608533pt;}
.fs1_c00092{font-size:41.388800pt;}
.fs3_c00092{font-size:51.970133pt;}
.fs0_c00092{font-size:62.240000pt;}
.y0_c00092{bottom:0.000000pt;}
.y2_c00092{bottom:97.547527pt;}
.y1_c00092{bottom:115.387067pt;}
.y29_c00092{bottom:132.826570pt;}
.y28_c00092{bottom:151.947067pt;}
.y27_c00092{bottom:165.063059pt;}
.y26_c00092{bottom:200.183535pt;}
.y25_c00092{bottom:218.103987pt;}
.y24_c00092{bottom:236.024439pt;}
.y23_c00092{bottom:253.863979pt;}
.y22_c00092{bottom:271.784431pt;}
.y21_c00092{bottom:298.584975pt;}
.y20_c00092{bottom:333.224647pt;}
.y1f_c00092{bottom:358.904871pt;}
.y1e_c00092{bottom:376.825323pt;}
.y1d_c00092{bottom:394.664863pt;}
.y1c_c00092{bottom:412.585315pt;}
.y1b_c00092{bottom:430.505767pt;}
.y1a_c00092{bottom:448.345307pt;}
.y19_c00092{bottom:466.265759pt;}
.y18_c00092{bottom:484.105299pt;}
.y17_c00092{bottom:502.025751pt;}
.y16_c00092{bottom:519.865291pt;}
.y15_c00092{bottom:537.785743pt;}
.y14_c00092{bottom:555.706195pt;}
.y13_c00092{bottom:573.545735pt;}
.y12_c00092{bottom:591.466187pt;}
.y11_c00092{bottom:609.386639pt;}
.y10_c00092{bottom:627.226179pt;}
.yf_c00092{bottom:645.146631pt;}
.ye_c00092{bottom:663.067083pt;}
.yd_c00092{bottom:680.906623pt;}
.yc_c00092{bottom:698.827075pt;}
.yb_c00092{bottom:725.627619pt;}
.ya_c00092{bottom:760.267291pt;}
.y9_c00092{bottom:787.147191pt;}
.y8_c00092{bottom:821.786863pt;}
.y7_c00092{bottom:856.347179pt;}
.y6_c00092{bottom:883.227079pt;}
.y5_c00092{bottom:917.866751pt;}
.y4_c00092{bottom:952.427931pt;}
.y3_c00092{bottom:987.067603pt;}
.h6_c00092{height:34.967599pt;}
.h7_c00092{height:48.087599pt;}
.h2_c00092{height:55.645234pt;}
.h1_c00092{height:55.797187pt;}
.h5_c00092{height:55.813753pt;}
.h4_c00092{height:56.192266pt;}
.h3_c00092{height:65.799910pt;}
.h0_c00092{height:1122.666667pt;}
.w0_c00092{width:793.333333pt;}
.x0_c00092{left:0.000000pt;}
.x2_c00092{left:73.519684pt;}
.x1_c00092{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e0719f71f931e18ea6f591b4.woff2')format("woff");}.ff1_c00093{font-family:ff1_c00093;line-height:1.106934;font-style:normal;font-weight:normal;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_3d6f062f67c4d262b9e3b942.woff2')format("woff");}.ff2_c00093{font-family:ff2_c00093;line-height:1.104492;font-style:normal;font-weight:normal;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_90804f09193d275e1512b367.woff2')format("woff");}.ff3_c00093{font-family:ff3_c00093;line-height:1.133301;font-style:normal;font-weight:normal;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_671549afda25fca06adbd77f.woff2')format("woff");}.ff4_c00093{font-family:ff4_c00093;line-height:1.133301;font-style:normal;font-weight:normal;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_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff5_c00093{font-family:ff5_c00093;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00093{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00093{vertical-align:-14.760000px;}
.v0_c00093{vertical-align:0.000000px;}
.v1_c00093{vertical-align:32.407614px;}
.ls14_c00093{letter-spacing:-0.707443px;}
.lsb_c00093{letter-spacing:-0.280080px;}
.ls18_c00093{letter-spacing:-0.181246px;}
.ls1c_c00093{letter-spacing:-0.175399px;}
.ls12_c00093{letter-spacing:-0.152013px;}
.lse_c00093{letter-spacing:-0.146166px;}
.ls16_c00093{letter-spacing:-0.134473px;}
.ls1e_c00093{letter-spacing:-0.128626px;}
.ls1b_c00093{letter-spacing:-0.122779px;}
.ls17_c00093{letter-spacing:-0.099393px;}
.ls13_c00093{letter-spacing:-0.087700px;}
.lsc_c00093{letter-spacing:-0.075619px;}
.ls4_c00093{letter-spacing:-0.063018px;}
.ls15_c00093{letter-spacing:-0.052620px;}
.ls8_c00093{letter-spacing:-0.049014px;}
.lsf_c00093{letter-spacing:-0.035080px;}
.ls6_c00093{letter-spacing:-0.035010px;}
.ls10_c00093{letter-spacing:-0.029233px;}
.ls7_c00093{letter-spacing:-0.028008px;}
.lsa_c00093{letter-spacing:-0.014004px;}
.ls9_c00093{letter-spacing:-0.007002px;}
.ls5_c00093{letter-spacing:0.000000px;}
.ls0_c00093{letter-spacing:0.014004px;}
.ls1_c00093{letter-spacing:0.023281px;}
.ls2_c00093{letter-spacing:0.052620px;}
.ls1d_c00093{letter-spacing:0.058466px;}
.ls3_c00093{letter-spacing:0.105240px;}
.lsd_c00093{letter-spacing:0.292332px;}
.ls19_c00093{letter-spacing:0.385878px;}
.ls11_c00093{letter-spacing:0.491118px;}
.ls1a_c00093{letter-spacing:0.537891px;}
.sc__c00093{text-shadow:none;}
.sc0_c00093{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00093{-webkit-text-stroke:0px transparent;}
.sc0_c00093{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00093{word-spacing:-58.466400px;}
.ws0_c00093{word-spacing:-19.465560px;}
.ws1_c00093{word-spacing:-19.185480px;}
.ws2_c00093{word-spacing:-12.967628px;}
.ws3_c00093{word-spacing:-10.397640px;}
.ws26_c00093{word-spacing:-0.730830px;}
.ws10_c00093{word-spacing:-0.371106px;}
.ws2a_c00093{word-spacing:-0.046773px;}
.ws19_c00093{word-spacing:-0.007002px;}
.ws5_c00093{word-spacing:0.000000px;}
.ws9_c00093{word-spacing:0.014004px;}
.ws7_c00093{word-spacing:0.021006px;}
.ws2b_c00093{word-spacing:0.140319px;}
.ws6_c00093{word-spacing:0.329094px;}
.wsb_c00093{word-spacing:0.358530px;}
.ws15_c00093{word-spacing:0.371106px;}
.ws8_c00093{word-spacing:0.378108px;}
.wsa_c00093{word-spacing:0.392112px;}
.ws24_c00093{word-spacing:1.192715px;}
.ws25_c00093{word-spacing:1.274568px;}
.ws16_c00093{word-spacing:1.449414px;}
.ws14_c00093{word-spacing:1.792512px;}
.ws17_c00093{word-spacing:1.820520px;}
.ws27_c00093{word-spacing:3.075333px;}
.ws1e_c00093{word-spacing:3.122106px;}
.ws28_c00093{word-spacing:3.373511px;}
.ws29_c00093{word-spacing:3.426131px;}
.ws1d_c00093{word-spacing:4.724085px;}
.ws1c_c00093{word-spacing:4.729932px;}
.wsd_c00093{word-spacing:6.833952px;}
.wse_c00093{word-spacing:6.840954px;}
.ws1f_c00093{word-spacing:7.162134px;}
.ws13_c00093{word-spacing:7.212060px;}
.ws20_c00093{word-spacing:7.366766px;}
.ws18_c00093{word-spacing:7.548156px;}
.ws1a_c00093{word-spacing:13.400499px;}
.ws1b_c00093{word-spacing:13.838997px;}
.wsf_c00093{word-spacing:14.053014px;}
.ws23_c00093{word-spacing:14.827079px;}
.ws22_c00093{word-spacing:14.862159px;}
.ws21_c00093{word-spacing:14.926472px;}
.wsc_c00093{word-spacing:17.273934px;}
.ws12_c00093{word-spacing:18.345240px;}
.ws11_c00093{word-spacing:18.352242px;}
._3_c00093{margin-left:-2.710674px;}
._0_c00093{margin-left:-1.148328px;}
._1_c00093{width:1.022292px;}
._4_c00093{width:3.976752px;}
._2_c00093{width:5.930694px;}
.fc0_c00093{color:rgb(0,0,0);}
.fs2_c00093{font-size:37.809600px;}
.fs1_c00093{font-size:46.562400px;}
.fs3_c00093{font-size:58.466400px;}
.fs0_c00093{font-size:70.020000px;}
.y0_c00093{bottom:0.000000px;}
.y2_c00093{bottom:109.740968px;}
.y1_c00093{bottom:129.810450px;}
.y2c_c00093{bottom:149.428990px;}
.y2b_c00093{bottom:167.249548px;}
.y2a_c00093{bottom:185.249891px;}
.y29_c00093{bottom:206.760450px;}
.y28_c00093{bottom:221.066971px;}
.y27_c00093{bottom:238.887529px;}
.y26_c00093{bottom:256.708088px;}
.y25_c00093{bottom:274.708431px;}
.y24_c00093{bottom:292.528990px;}
.y23_c00093{bottom:310.349548px;}
.y22_c00093{bottom:328.349891px;}
.y21_c00093{bottom:349.860450px;}
.y20_c00093{bottom:373.348776px;}
.y1f_c00093{bottom:426.089590px;}
.y1e_c00093{bottom:456.329478px;}
.y1d_c00093{bottom:486.480090px;}
.y1c_c00093{bottom:516.719977px;}
.y1b_c00093{bottom:546.870589px;}
.y1a_c00093{bottom:577.110477px;}
.y19_c00093{bottom:607.170063px;}
.y18_c00093{bottom:637.409950px;}
.y17_c00093{bottom:667.560562px;}
.y16_c00093{bottom:697.798839px;}
.y15_c00093{bottom:727.949451px;}
.y14_c00093{bottom:758.189338px;}
.y13_c00093{bottom:788.339950px;}
.y12_c00093{bottom:808.500459px;}
.y11_c00093{bottom:828.660967px;}
.y10_c00093{bottom:848.728546px;}
.yf_c00093{bottom:868.889055px;}
.ye_c00093{bottom:889.049563px;}
.yd_c00093{bottom:909.119046px;}
.yc_c00093{bottom:929.279555px;}
.yb_c00093{bottom:949.440063px;}
.ya_c00093{bottom:969.509546px;}
.y9_c00093{bottom:989.670054px;}
.y8_c00093{bottom:1009.830563px;}
.y7_c00093{bottom:1029.900045px;}
.y6_c00093{bottom:1050.060553px;}
.y5_c00093{bottom:1070.221062px;}
.y4_c00093{bottom:1090.290545px;}
.y3_c00093{bottom:1110.451053px;}
.h6_c00093{height:39.338549px;}
.h7_c00093{height:54.098549px;}
.h2_c00093{height:62.600889px;}
.h1_c00093{height:62.771836px;}
.h5_c00093{height:62.778532px;}
.h4_c00093{height:73.788908px;}
.h3_c00093{height:74.150078px;}
.h0_c00093{height:1263.000000px;}
.w0_c00093{width:892.500000px;}
.x0_c00093{left:0.000000px;}
.x2_c00093{left:82.709645px;}
.x1_c00093{left:436.680000px;}
@media print{
.v2_c00093{vertical-align:-13.120000pt;}
.v0_c00093{vertical-align:0.000000pt;}
.v1_c00093{vertical-align:28.806768pt;}
.ls14_c00093{letter-spacing:-0.628839pt;}
.lsb_c00093{letter-spacing:-0.248960pt;}
.ls18_c00093{letter-spacing:-0.161107pt;}
.ls1c_c00093{letter-spacing:-0.155910pt;}
.ls12_c00093{letter-spacing:-0.135122pt;}
.lse_c00093{letter-spacing:-0.129925pt;}
.ls16_c00093{letter-spacing:-0.119531pt;}
.ls1e_c00093{letter-spacing:-0.114334pt;}
.ls1b_c00093{letter-spacing:-0.109137pt;}
.ls17_c00093{letter-spacing:-0.088349pt;}
.ls13_c00093{letter-spacing:-0.077955pt;}
.lsc_c00093{letter-spacing:-0.067217pt;}
.ls4_c00093{letter-spacing:-0.056016pt;}
.ls15_c00093{letter-spacing:-0.046773pt;}
.ls8_c00093{letter-spacing:-0.043568pt;}
.lsf_c00093{letter-spacing:-0.031182pt;}
.ls6_c00093{letter-spacing:-0.031120pt;}
.ls10_c00093{letter-spacing:-0.025985pt;}
.ls7_c00093{letter-spacing:-0.024896pt;}
.lsa_c00093{letter-spacing:-0.012448pt;}
.ls9_c00093{letter-spacing:-0.006224pt;}
.ls5_c00093{letter-spacing:0.000000pt;}
.ls0_c00093{letter-spacing:0.012448pt;}
.ls1_c00093{letter-spacing:0.020694pt;}
.ls2_c00093{letter-spacing:0.046773pt;}
.ls1d_c00093{letter-spacing:0.051970pt;}
.ls3_c00093{letter-spacing:0.093546pt;}
.lsd_c00093{letter-spacing:0.259851pt;}
.ls19_c00093{letter-spacing:0.343003pt;}
.ls11_c00093{letter-spacing:0.436549pt;}
.ls1a_c00093{letter-spacing:0.478125pt;}
.ws4_c00093{word-spacing:-51.970133pt;}
.ws0_c00093{word-spacing:-17.302720pt;}
.ws1_c00093{word-spacing:-17.053760pt;}
.ws2_c00093{word-spacing:-11.526781pt;}
.ws3_c00093{word-spacing:-9.242347pt;}
.ws26_c00093{word-spacing:-0.649627pt;}
.ws10_c00093{word-spacing:-0.329872pt;}
.ws2a_c00093{word-spacing:-0.041576pt;}
.ws19_c00093{word-spacing:-0.006224pt;}
.ws5_c00093{word-spacing:0.000000pt;}
.ws9_c00093{word-spacing:0.012448pt;}
.ws7_c00093{word-spacing:0.018672pt;}
.ws2b_c00093{word-spacing:0.124728pt;}
.ws6_c00093{word-spacing:0.292528pt;}
.wsb_c00093{word-spacing:0.318694pt;}
.ws15_c00093{word-spacing:0.329872pt;}
.ws8_c00093{word-spacing:0.336096pt;}
.wsa_c00093{word-spacing:0.348544pt;}
.ws24_c00093{word-spacing:1.060191pt;}
.ws25_c00093{word-spacing:1.132949pt;}
.ws16_c00093{word-spacing:1.288368pt;}
.ws14_c00093{word-spacing:1.593344pt;}
.ws17_c00093{word-spacing:1.618240pt;}
.ws27_c00093{word-spacing:2.733629pt;}
.ws1e_c00093{word-spacing:2.775205pt;}
.ws28_c00093{word-spacing:2.998677pt;}
.ws29_c00093{word-spacing:3.045450pt;}
.ws1d_c00093{word-spacing:4.199187pt;}
.ws1c_c00093{word-spacing:4.204384pt;}
.wsd_c00093{word-spacing:6.074624pt;}
.wse_c00093{word-spacing:6.080848pt;}
.ws1f_c00093{word-spacing:6.366341pt;}
.ws13_c00093{word-spacing:6.410720pt;}
.ws20_c00093{word-spacing:6.548237pt;}
.ws18_c00093{word-spacing:6.709472pt;}
.ws1a_c00093{word-spacing:11.911555pt;}
.ws1b_c00093{word-spacing:12.301331pt;}
.wsf_c00093{word-spacing:12.491568pt;}
.ws23_c00093{word-spacing:13.179626pt;}
.ws22_c00093{word-spacing:13.210808pt;}
.ws21_c00093{word-spacing:13.267975pt;}
.wsc_c00093{word-spacing:15.354608pt;}
.ws12_c00093{word-spacing:16.306880pt;}
.ws11_c00093{word-spacing:16.313104pt;}
._3_c00093{margin-left:-2.409488pt;}
._0_c00093{margin-left:-1.020736pt;}
._1_c00093{width:0.908704pt;}
._4_c00093{width:3.534891pt;}
._2_c00093{width:5.271728pt;}
.fs2_c00093{font-size:33.608533pt;}
.fs1_c00093{font-size:41.388800pt;}
.fs3_c00093{font-size:51.970133pt;}
.fs0_c00093{font-size:62.240000pt;}
.y0_c00093{bottom:0.000000pt;}
.y2_c00093{bottom:97.547527pt;}
.y1_c00093{bottom:115.387067pt;}
.y2c_c00093{bottom:132.825769pt;}
.y2b_c00093{bottom:148.666265pt;}
.y2a_c00093{bottom:164.666570pt;}
.y29_c00093{bottom:183.787067pt;}
.y28_c00093{bottom:196.503974pt;}
.y27_c00093{bottom:212.344471pt;}
.y26_c00093{bottom:228.184967pt;}
.y25_c00093{bottom:244.185272pt;}
.y24_c00093{bottom:260.025769pt;}
.y23_c00093{bottom:275.866265pt;}
.y22_c00093{bottom:291.866570pt;}
.y21_c00093{bottom:310.987067pt;}
.y20_c00093{bottom:331.865579pt;}
.y1f_c00093{bottom:378.746303pt;}
.y1e_c00093{bottom:405.626203pt;}
.y1d_c00093{bottom:432.426747pt;}
.y1c_c00093{bottom:459.306647pt;}
.y1b_c00093{bottom:486.107191pt;}
.y1a_c00093{bottom:512.987091pt;}
.y19_c00093{bottom:539.706723pt;}
.y18_c00093{bottom:566.586623pt;}
.y17_c00093{bottom:593.387167pt;}
.y16_c00093{bottom:620.265635pt;}
.y15_c00093{bottom:647.066179pt;}
.y14_c00093{bottom:673.946079pt;}
.y13_c00093{bottom:700.746623pt;}
.y12_c00093{bottom:718.667075pt;}
.y11_c00093{bottom:736.587527pt;}
.y10_c00093{bottom:754.425375pt;}
.yf_c00093{bottom:772.345827pt;}
.ye_c00093{bottom:790.266279pt;}
.yd_c00093{bottom:808.105819pt;}
.yc_c00093{bottom:826.026271pt;}
.yb_c00093{bottom:843.946723pt;}
.ya_c00093{bottom:861.786263pt;}
.y9_c00093{bottom:879.706715pt;}
.y8_c00093{bottom:897.627167pt;}
.y7_c00093{bottom:915.466707pt;}
.y6_c00093{bottom:933.387159pt;}
.y5_c00093{bottom:951.307611pt;}
.y4_c00093{bottom:969.147151pt;}
.y3_c00093{bottom:987.067603pt;}
.h6_c00093{height:34.967599pt;}
.h7_c00093{height:48.087599pt;}
.h2_c00093{height:55.645234pt;}
.h1_c00093{height:55.797187pt;}
.h5_c00093{height:55.803139pt;}
.h4_c00093{height:65.590140pt;}
.h3_c00093{height:65.911181pt;}
.h0_c00093{height:1122.666667pt;}
.w0_c00093{width:793.333333pt;}
.x0_c00093{left:0.000000pt;}
.x2_c00093{left:73.519684pt;}
.x1_c00093{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d99dc74de902e3dfd8e8eff6.woff2')format("woff");}.ff1_c00094{font-family:ff1_c00094;line-height:1.106934;font-style:normal;font-weight:normal;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_213713d788957c2bddbf6772.woff2')format("woff");}.ff2_c00094{font-family:ff2_c00094;line-height:1.104492;font-style:normal;font-weight:normal;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_2ef682f6be52ef4b4fa989a5.woff2')format("woff");}.ff3_c00094{font-family:ff3_c00094;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00094;src:url('chunks/assets/font_3146f054281aba3d3a9ce8ad.woff2')format("woff");}.ff4_c00094{font-family:ff4_c00094;line-height:1.133301;font-style:normal;font-weight:normal;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_f4bea056aa8e82dcfa643a72.woff2')format("woff");}.ff5_c00094{font-family:ff5_c00094;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00094{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00094{vertical-align:-14.760600px;}
.v0_c00094{vertical-align:0.000000px;}
.v1_c00094{vertical-align:32.053464px;}
.ls11_c00094{letter-spacing:-0.707443px;}
.lsf_c00094{letter-spacing:-0.075619px;}
.ls7_c00094{letter-spacing:-0.063018px;}
.lse_c00094{letter-spacing:-0.042012px;}
.lsb_c00094{letter-spacing:-0.035010px;}
.ls9_c00094{letter-spacing:-0.028008px;}
.lsd_c00094{letter-spacing:-0.021006px;}
.lsc_c00094{letter-spacing:-0.014004px;}
.lsa_c00094{letter-spacing:-0.007002px;}
.ls8_c00094{letter-spacing:0.000000px;}
.ls2_c00094{letter-spacing:0.007002px;}
.ls3_c00094{letter-spacing:0.014004px;}
.ls4_c00094{letter-spacing:0.021006px;}
.ls6_c00094{letter-spacing:0.023281px;}
.ls5_c00094{letter-spacing:0.035010px;}
.ls0_c00094{letter-spacing:0.049014px;}
.ls1_c00094{letter-spacing:0.336096px;}
.ls10_c00094{letter-spacing:0.467731px;}
.sc__c00094{text-shadow:none;}
.sc0_c00094{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00094{-webkit-text-stroke:0px transparent;}
.sc0_c00094{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00094{word-spacing:-19.465560px;}
.ws0_c00094{word-spacing:-12.967628px;}
.ws2_c00094{word-spacing:-10.397640px;}
.ws2a_c00094{word-spacing:-0.456038px;}
.ws7_c00094{word-spacing:-0.063018px;}
.wse_c00094{word-spacing:-0.049014px;}
.ws17_c00094{word-spacing:-0.021006px;}
.ws1d_c00094{word-spacing:-0.014004px;}
.ws3_c00094{word-spacing:0.000000px;}
.ws1c_c00094{word-spacing:0.007002px;}
.ws24_c00094{word-spacing:0.343098px;}
.ws25_c00094{word-spacing:0.672192px;}
.ws23_c00094{word-spacing:0.700200px;}
.ws12_c00094{word-spacing:0.714204px;}
.ws19_c00094{word-spacing:0.721206px;}
.wsa_c00094{word-spacing:1.050300px;}
.ws5_c00094{word-spacing:1.071306px;}
.ws1a_c00094{word-spacing:1.085310px;}
.ws14_c00094{word-spacing:1.092312px;}
.ws6_c00094{word-spacing:1.099314px;}
.ws15_c00094{word-spacing:1.414404px;}
.ws1e_c00094{word-spacing:1.764504px;}
.ws22_c00094{word-spacing:1.792512px;}
.ws1f_c00094{word-spacing:1.820520px;}
.ws28_c00094{word-spacing:2.114604px;}
.ws29_c00094{word-spacing:2.163618px;}
.wsc_c00094{word-spacing:2.506716px;}
.wsd_c00094{word-spacing:2.870820px;}
.ws1b_c00094{word-spacing:3.578022px;}
.ws11_c00094{word-spacing:4.341240px;}
.ws16_c00094{word-spacing:5.020434px;}
.wsf_c00094{word-spacing:8.283366px;}
.ws10_c00094{word-spacing:8.290368px;}
.ws18_c00094{word-spacing:9.347670px;}
.ws13_c00094{word-spacing:9.718776px;}
.ws21_c00094{word-spacing:11.539296px;}
.ws4_c00094{word-spacing:12.253500px;}
.ws20_c00094{word-spacing:13.681908px;}
.wsb_c00094{word-spacing:15.432408px;}
.ws8_c00094{word-spacing:15.460416px;}
.ws9_c00094{word-spacing:15.474420px;}
.ws26_c00094{word-spacing:28.071018px;}
.ws27_c00094{word-spacing:28.106028px;}
._3_c00094{margin-left:-2.711790px;}
._1_c00094{margin-left:-1.071306px;}
._0_c00094{width:1.099314px;}
._2_c00094{width:5.930694px;}
.fc0_c00094{color:rgb(0,0,0);}
.fs2_c00094{font-size:37.809600px;}
.fs1_c00094{font-size:46.562400px;}
.fs3_c00094{font-size:58.466400px;}
.fs0_c00094{font-size:70.020000px;}
.y0_c00094{bottom:0.000000px;}
.y2_c00094{bottom:109.740968px;}
.y1_c00094{bottom:129.810450px;}
.y23_c00094{bottom:153.120600px;}
.y22_c00094{bottom:167.787412px;}
.y21_c00094{bottom:204.687952px;}
.y20_c00094{bottom:234.838564px;}
.y1f_c00094{bottom:265.078452px;}
.y1e_c00094{bottom:295.229064px;}
.y1d_c00094{bottom:325.468951px;}
.y1c_c00094{bottom:355.619563px;}
.y1b_c00094{bottom:385.859451px;}
.y1a_c00094{bottom:416.010063px;}
.y19_c00094{bottom:446.249950px;}
.y18_c00094{bottom:476.400562px;}
.y17_c00094{bottom:506.637084px;}
.y16_c00094{bottom:536.787696px;}
.y15_c00094{bottom:567.027584px;}
.y14_c00094{bottom:597.087170px;}
.y13_c00094{bottom:627.327057px;}
.y12_c00094{bottom:657.477669px;}
.y11_c00094{bottom:687.717557px;}
.y10_c00094{bottom:717.868169px;}
.yf_c00094{bottom:748.108056px;}
.ye_c00094{bottom:778.258668px;}
.yd_c00094{bottom:808.498556px;}
.yc_c00094{bottom:838.649168px;}
.yb_c00094{bottom:868.889055px;}
.ya_c00094{bottom:899.039667px;}
.y9_c00094{bottom:929.279555px;}
.y8_c00094{bottom:959.519442px;}
.y7_c00094{bottom:989.670054px;}
.y6_c00094{bottom:1019.909942px;}
.y5_c00094{bottom:1050.060553px;}
.y4_c00094{bottom:1080.300441px;}
.y3_c00094{bottom:1110.451053px;}
.h6_c00094{height:39.337949px;}
.h2_c00094{height:62.600889px;}
.h1_c00094{height:62.771836px;}
.h5_c00094{height:62.784586px;}
.h4_c00094{height:73.028672px;}
.h3_c00094{height:73.682250px;}
.h0_c00094{height:1263.000000px;}
.w0_c00094{width:892.500000px;}
.x0_c00094{left:0.000000px;}
.x2_c00094{left:82.709645px;}
.x1_c00094{left:436.680000px;}
@media print{
.v2_c00094{vertical-align:-13.120533pt;}
.v0_c00094{vertical-align:0.000000pt;}
.v1_c00094{vertical-align:28.491968pt;}
.ls11_c00094{letter-spacing:-0.628839pt;}
.lsf_c00094{letter-spacing:-0.067217pt;}
.ls7_c00094{letter-spacing:-0.056016pt;}
.lse_c00094{letter-spacing:-0.037344pt;}
.lsb_c00094{letter-spacing:-0.031120pt;}
.ls9_c00094{letter-spacing:-0.024896pt;}
.lsd_c00094{letter-spacing:-0.018672pt;}
.lsc_c00094{letter-spacing:-0.012448pt;}
.lsa_c00094{letter-spacing:-0.006224pt;}
.ls8_c00094{letter-spacing:0.000000pt;}
.ls2_c00094{letter-spacing:0.006224pt;}
.ls3_c00094{letter-spacing:0.012448pt;}
.ls4_c00094{letter-spacing:0.018672pt;}
.ls6_c00094{letter-spacing:0.020694pt;}
.ls5_c00094{letter-spacing:0.031120pt;}
.ls0_c00094{letter-spacing:0.043568pt;}
.ls1_c00094{letter-spacing:0.298752pt;}
.ls10_c00094{letter-spacing:0.415761pt;}
.ws1_c00094{word-spacing:-17.302720pt;}
.ws0_c00094{word-spacing:-11.526781pt;}
.ws2_c00094{word-spacing:-9.242347pt;}
.ws2a_c00094{word-spacing:-0.405367pt;}
.ws7_c00094{word-spacing:-0.056016pt;}
.wse_c00094{word-spacing:-0.043568pt;}
.ws17_c00094{word-spacing:-0.018672pt;}
.ws1d_c00094{word-spacing:-0.012448pt;}
.ws3_c00094{word-spacing:0.000000pt;}
.ws1c_c00094{word-spacing:0.006224pt;}
.ws24_c00094{word-spacing:0.304976pt;}
.ws25_c00094{word-spacing:0.597504pt;}
.ws23_c00094{word-spacing:0.622400pt;}
.ws12_c00094{word-spacing:0.634848pt;}
.ws19_c00094{word-spacing:0.641072pt;}
.wsa_c00094{word-spacing:0.933600pt;}
.ws5_c00094{word-spacing:0.952272pt;}
.ws1a_c00094{word-spacing:0.964720pt;}
.ws14_c00094{word-spacing:0.970944pt;}
.ws6_c00094{word-spacing:0.977168pt;}
.ws15_c00094{word-spacing:1.257248pt;}
.ws1e_c00094{word-spacing:1.568448pt;}
.ws22_c00094{word-spacing:1.593344pt;}
.ws1f_c00094{word-spacing:1.618240pt;}
.ws28_c00094{word-spacing:1.879648pt;}
.ws29_c00094{word-spacing:1.923216pt;}
.wsc_c00094{word-spacing:2.228192pt;}
.wsd_c00094{word-spacing:2.551840pt;}
.ws1b_c00094{word-spacing:3.180464pt;}
.ws11_c00094{word-spacing:3.858880pt;}
.ws16_c00094{word-spacing:4.462608pt;}
.wsf_c00094{word-spacing:7.362992pt;}
.ws10_c00094{word-spacing:7.369216pt;}
.ws18_c00094{word-spacing:8.309040pt;}
.ws13_c00094{word-spacing:8.638912pt;}
.ws21_c00094{word-spacing:10.257152pt;}
.ws4_c00094{word-spacing:10.892000pt;}
.ws20_c00094{word-spacing:12.161696pt;}
.wsb_c00094{word-spacing:13.717696pt;}
.ws8_c00094{word-spacing:13.742592pt;}
.ws9_c00094{word-spacing:13.755040pt;}
.ws26_c00094{word-spacing:24.952016pt;}
.ws27_c00094{word-spacing:24.983136pt;}
._3_c00094{margin-left:-2.410480pt;}
._1_c00094{margin-left:-0.952272pt;}
._0_c00094{width:0.977168pt;}
._2_c00094{width:5.271728pt;}
.fs2_c00094{font-size:33.608533pt;}
.fs1_c00094{font-size:41.388800pt;}
.fs3_c00094{font-size:51.970133pt;}
.fs0_c00094{font-size:62.240000pt;}
.y0_c00094{bottom:0.000000pt;}
.y2_c00094{bottom:97.547527pt;}
.y1_c00094{bottom:115.387067pt;}
.y23_c00094{bottom:136.107200pt;}
.y22_c00094{bottom:149.144367pt;}
.y21_c00094{bottom:181.944847pt;}
.y20_c00094{bottom:208.745391pt;}
.y1f_c00094{bottom:235.625291pt;}
.y1e_c00094{bottom:262.425835pt;}
.y1d_c00094{bottom:289.305735pt;}
.y1c_c00094{bottom:316.106279pt;}
.y1b_c00094{bottom:342.986179pt;}
.y1a_c00094{bottom:369.786723pt;}
.y19_c00094{bottom:396.666623pt;}
.y18_c00094{bottom:423.467167pt;}
.y17_c00094{bottom:450.344075pt;}
.y16_c00094{bottom:477.144619pt;}
.y15_c00094{bottom:504.024519pt;}
.y14_c00094{bottom:530.744151pt;}
.y13_c00094{bottom:557.624051pt;}
.y12_c00094{bottom:584.424595pt;}
.y11_c00094{bottom:611.304495pt;}
.y10_c00094{bottom:638.105039pt;}
.yf_c00094{bottom:664.984939pt;}
.ye_c00094{bottom:691.785483pt;}
.yd_c00094{bottom:718.665383pt;}
.yc_c00094{bottom:745.465927pt;}
.yb_c00094{bottom:772.345827pt;}
.ya_c00094{bottom:799.146371pt;}
.y9_c00094{bottom:826.026271pt;}
.y8_c00094{bottom:852.906171pt;}
.y7_c00094{bottom:879.706715pt;}
.y6_c00094{bottom:906.586615pt;}
.y5_c00094{bottom:933.387159pt;}
.y4_c00094{bottom:960.267059pt;}
.y3_c00094{bottom:987.067603pt;}
.h6_c00094{height:34.967066pt;}
.h2_c00094{height:55.645234pt;}
.h1_c00094{height:55.797187pt;}
.h5_c00094{height:55.808521pt;}
.h4_c00094{height:64.914375pt;}
.h3_c00094{height:65.495334pt;}
.h0_c00094{height:1122.666667pt;}
.w0_c00094{width:793.333333pt;}
.x0_c00094{left:0.000000pt;}
.x2_c00094{left:73.519684pt;}
.x1_c00094{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_57a0127b7285779bac9257fe.woff2')format("woff");}.ff1_c00095{font-family:ff1_c00095;line-height:1.106934;font-style:normal;font-weight:normal;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_a48655aee468f4a7c62579ce.woff2')format("woff");}.ff2_c00095{font-family:ff2_c00095;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00095{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00095{vertical-align:0.000000px;}
.ls4_c00095{letter-spacing:-0.063018px;}
.lsb_c00095{letter-spacing:-0.049014px;}
.ls7_c00095{letter-spacing:-0.042012px;}
.lsc_c00095{letter-spacing:-0.035010px;}
.ls6_c00095{letter-spacing:-0.028008px;}
.ls8_c00095{letter-spacing:-0.021006px;}
.ls9_c00095{letter-spacing:-0.014004px;}
.lsa_c00095{letter-spacing:-0.007002px;}
.ls5_c00095{letter-spacing:0.000000px;}
.ls2_c00095{letter-spacing:0.007002px;}
.ls0_c00095{letter-spacing:0.014004px;}
.ls1_c00095{letter-spacing:0.021006px;}
.ls3_c00095{letter-spacing:0.028008px;}
.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;}
}
.ws1e_c00095{word-spacing:-0.021006px;}
.ws0_c00095{word-spacing:0.000000px;}
.ws5_c00095{word-spacing:0.007002px;}
.ws11_c00095{word-spacing:0.021006px;}
.ws4_c00095{word-spacing:0.329094px;}
.ws8_c00095{word-spacing:0.357102px;}
.ws3_c00095{word-spacing:0.371106px;}
.ws16_c00095{word-spacing:2.114604px;}
.ws15_c00095{word-spacing:2.128608px;}
.ws1_c00095{word-spacing:2.177622px;}
.ws10_c00095{word-spacing:2.877822px;}
.ws19_c00095{word-spacing:4.327236px;}
.wsa_c00095{word-spacing:4.677336px;}
.ws1c_c00095{word-spacing:4.999428px;}
.wsf_c00095{word-spacing:5.041440px;}
.ws1a_c00095{word-spacing:6.112746px;}
.wsc_c00095{word-spacing:7.527150px;}
.wsb_c00095{word-spacing:7.576164px;}
.ws2_c00095{word-spacing:7.891254px;}
.ws18_c00095{word-spacing:7.898256px;}
.ws17_c00095{word-spacing:8.955558px;}
.ws12_c00095{word-spacing:9.711774px;}
.ws9_c00095{word-spacing:11.154186px;}
.ws7_c00095{word-spacing:11.525292px;}
.wse_c00095{word-spacing:13.317804px;}
.wsd_c00095{word-spacing:13.653900px;}
.ws1d_c00095{word-spacing:15.502428px;}
.ws1b_c00095{word-spacing:17.673048px;}
.ws13_c00095{word-spacing:19.423548px;}
.ws14_c00095{word-spacing:19.437552px;}
.ws6_c00095{word-spacing:27.013716px;}
._1_c00095{margin-left:-1.071306px;}
._0_c00095{width:1.120320px;}
._2_c00095{width:5.580594px;}
.fc0_c00095{color:rgb(0,0,0);}
.fs0_c00095{font-size:70.020000px;}
.y0_c00095{bottom:0.000000px;}
.y2_c00095{bottom:109.740968px;}
.y1_c00095{bottom:129.810450px;}
.y20_c00095{bottom:151.677696px;}
.y1f_c00095{bottom:186.237818px;}
.y1e_c00095{bottom:216.477705px;}
.y1d_c00095{bottom:246.628317px;}
.y1c_c00095{bottom:276.868205px;}
.y1b_c00095{bottom:307.018817px;}
.y1a_c00095{bottom:337.258704px;}
.y19_c00095{bottom:367.498592px;}
.y18_c00095{bottom:397.649204px;}
.y17_c00095{bottom:427.889091px;}
.y16_c00095{bottom:458.039703px;}
.y15_c00095{bottom:488.279591px;}
.y14_c00095{bottom:518.339177px;}
.y13_c00095{bottom:548.579064px;}
.y12_c00095{bottom:578.729676px;}
.y11_c00095{bottom:635.158794px;}
.y10_c00095{bottom:665.398682px;}
.yf_c00095{bottom:695.549294px;}
.ye_c00095{bottom:725.789181px;}
.yd_c00095{bottom:755.939793px;}
.yc_c00095{bottom:786.179681px;}
.yb_c00095{bottom:816.330293px;}
.ya_c00095{bottom:846.570180px;}
.y9_c00095{bottom:902.999298px;}
.y8_c00095{bottom:933.239185px;}
.y7_c00095{bottom:963.389797px;}
.y6_c00095{bottom:1019.909942px;}
.y5_c00095{bottom:1050.060553px;}
.y4_c00095{bottom:1080.300441px;}
.y3_c00095{bottom:1110.451053px;}
.h2_c00095{height:62.600889px;}
.h1_c00095{height:62.771836px;}
.h0_c00095{height:1263.000000px;}
.w0_c00095{width:892.500000px;}
.x0_c00095{left:0.000000px;}
.x2_c00095{left:82.709645px;}
.x3_c00095{left:111.869474px;}
.x1_c00095{left:436.680000px;}
@media print{
.v0_c00095{vertical-align:0.000000pt;}
.ls4_c00095{letter-spacing:-0.056016pt;}
.lsb_c00095{letter-spacing:-0.043568pt;}
.ls7_c00095{letter-spacing:-0.037344pt;}
.lsc_c00095{letter-spacing:-0.031120pt;}
.ls6_c00095{letter-spacing:-0.024896pt;}
.ls8_c00095{letter-spacing:-0.018672pt;}
.ls9_c00095{letter-spacing:-0.012448pt;}
.lsa_c00095{letter-spacing:-0.006224pt;}
.ls5_c00095{letter-spacing:0.000000pt;}
.ls2_c00095{letter-spacing:0.006224pt;}
.ls0_c00095{letter-spacing:0.012448pt;}
.ls1_c00095{letter-spacing:0.018672pt;}
.ls3_c00095{letter-spacing:0.024896pt;}
.ws1e_c00095{word-spacing:-0.018672pt;}
.ws0_c00095{word-spacing:0.000000pt;}
.ws5_c00095{word-spacing:0.006224pt;}
.ws11_c00095{word-spacing:0.018672pt;}
.ws4_c00095{word-spacing:0.292528pt;}
.ws8_c00095{word-spacing:0.317424pt;}
.ws3_c00095{word-spacing:0.329872pt;}
.ws16_c00095{word-spacing:1.879648pt;}
.ws15_c00095{word-spacing:1.892096pt;}
.ws1_c00095{word-spacing:1.935664pt;}
.ws10_c00095{word-spacing:2.558064pt;}
.ws19_c00095{word-spacing:3.846432pt;}
.wsa_c00095{word-spacing:4.157632pt;}
.ws1c_c00095{word-spacing:4.443936pt;}
.wsf_c00095{word-spacing:4.481280pt;}
.ws1a_c00095{word-spacing:5.433552pt;}
.wsc_c00095{word-spacing:6.690800pt;}
.wsb_c00095{word-spacing:6.734368pt;}
.ws2_c00095{word-spacing:7.014448pt;}
.ws18_c00095{word-spacing:7.020672pt;}
.ws17_c00095{word-spacing:7.960496pt;}
.ws12_c00095{word-spacing:8.632688pt;}
.ws9_c00095{word-spacing:9.914832pt;}
.ws7_c00095{word-spacing:10.244704pt;}
.wse_c00095{word-spacing:11.838048pt;}
.wsd_c00095{word-spacing:12.136800pt;}
.ws1d_c00095{word-spacing:13.779936pt;}
.ws1b_c00095{word-spacing:15.709376pt;}
.ws13_c00095{word-spacing:17.265376pt;}
.ws14_c00095{word-spacing:17.277824pt;}
.ws6_c00095{word-spacing:24.012192pt;}
._1_c00095{margin-left:-0.952272pt;}
._0_c00095{width:0.995840pt;}
._2_c00095{width:4.960528pt;}
.fs0_c00095{font-size:62.240000pt;}
.y0_c00095{bottom:0.000000pt;}
.y2_c00095{bottom:97.547527pt;}
.y1_c00095{bottom:115.387067pt;}
.y20_c00095{bottom:134.824619pt;}
.y1f_c00095{bottom:165.544727pt;}
.y1e_c00095{bottom:192.424627pt;}
.y1d_c00095{bottom:219.225171pt;}
.y1c_c00095{bottom:246.105071pt;}
.y1b_c00095{bottom:272.905615pt;}
.y1a_c00095{bottom:299.785515pt;}
.y19_c00095{bottom:326.665415pt;}
.y18_c00095{bottom:353.465959pt;}
.y17_c00095{bottom:380.345859pt;}
.y16_c00095{bottom:407.146403pt;}
.y15_c00095{bottom:434.026303pt;}
.y14_c00095{bottom:460.745935pt;}
.y13_c00095{bottom:487.625835pt;}
.y12_c00095{bottom:514.426379pt;}
.y11_c00095{bottom:564.585595pt;}
.y10_c00095{bottom:591.465495pt;}
.yf_c00095{bottom:618.266039pt;}
.ye_c00095{bottom:645.145939pt;}
.yd_c00095{bottom:671.946483pt;}
.yc_c00095{bottom:698.826383pt;}
.yb_c00095{bottom:725.626927pt;}
.ya_c00095{bottom:752.506827pt;}
.y9_c00095{bottom:802.666043pt;}
.y8_c00095{bottom:829.545943pt;}
.y7_c00095{bottom:856.346487pt;}
.y6_c00095{bottom:906.586615pt;}
.y5_c00095{bottom:933.387159pt;}
.y4_c00095{bottom:960.267059pt;}
.y3_c00095{bottom:987.067603pt;}
.h2_c00095{height:55.645234pt;}
.h1_c00095{height:55.797187pt;}
.h0_c00095{height:1122.666667pt;}
.w0_c00095{width:793.333333pt;}
.x0_c00095{left:0.000000pt;}
.x2_c00095{left:73.519684pt;}
.x3_c00095{left:99.439532pt;}
.x1_c00095{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_569f441afcd6daad3025a06a.woff2')format("woff");}.ff1_c00096{font-family:ff1_c00096;line-height:1.106934;font-style:normal;font-weight:normal;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_66c0e0d966bcf5566e4a498a.woff2')format("woff");}.ff2_c00096{font-family:ff2_c00096;line-height:1.104492;font-style:normal;font-weight:normal;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_a116562e8ba540f1d2a60ba4.woff2')format("woff");}.ff3_c00096{font-family:ff3_c00096;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00096{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00096{vertical-align:-14.760000px;}
.v0_c00096{vertical-align:0.000000px;}
.v1_c00096{vertical-align:32.046066px;}
.lse_c00096{letter-spacing:-0.075619px;}
.ls6_c00096{letter-spacing:-0.063018px;}
.lsb_c00096{letter-spacing:-0.049014px;}
.ls8_c00096{letter-spacing:-0.035010px;}
.ls9_c00096{letter-spacing:-0.028008px;}
.lsc_c00096{letter-spacing:-0.021006px;}
.lsa_c00096{letter-spacing:-0.014004px;}
.lsd_c00096{letter-spacing:-0.007002px;}
.ls7_c00096{letter-spacing:0.000000px;}
.ls2_c00096{letter-spacing:0.007002px;}
.ls4_c00096{letter-spacing:0.014004px;}
.ls1_c00096{letter-spacing:0.021006px;}
.ls3_c00096{letter-spacing:0.023281px;}
.ls0_c00096{letter-spacing:0.105030px;}
.ls5_c00096{letter-spacing:0.336096px;}
.lsf_c00096{letter-spacing:0.514504px;}
.sc__c00096{text-shadow:none;}
.sc0_c00096{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00096{-webkit-text-stroke:0px transparent;}
.sc0_c00096{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00096{word-spacing:-12.967628px;}
.ws1_c00096{word-spacing:-10.397640px;}
.ws1f_c00096{word-spacing:-0.502811px;}
.ws17_c00096{word-spacing:-0.007002px;}
.ws2_c00096{word-spacing:0.000000px;}
.wsc_c00096{word-spacing:0.007002px;}
.ws16_c00096{word-spacing:0.014004px;}
.ws3_c00096{word-spacing:0.238068px;}
.ws14_c00096{word-spacing:0.322092px;}
.ws13_c00096{word-spacing:0.350100px;}
.ws6_c00096{word-spacing:0.378108px;}
.wsd_c00096{word-spacing:0.693198px;}
.ws1c_c00096{word-spacing:0.700200px;}
.ws12_c00096{word-spacing:0.735210px;}
.wse_c00096{word-spacing:0.742212px;}
.ws1b_c00096{word-spacing:1.085310px;}
.ws9_c00096{word-spacing:1.778508px;}
.wsa_c00096{word-spacing:1.813518px;}
.wsb_c00096{word-spacing:1.834524px;}
.ws15_c00096{word-spacing:2.891826px;}
.ws18_c00096{word-spacing:3.241926px;}
.ws11_c00096{word-spacing:3.248928px;}
.ws8_c00096{word-spacing:3.963132px;}
.ws5_c00096{word-spacing:6.140754px;}
.ws19_c00096{word-spacing:7.912260px;}
.ws4_c00096{word-spacing:9.326664px;}
.ws1d_c00096{word-spacing:9.718776px;}
.ws1e_c00096{word-spacing:9.739782px;}
.ws7_c00096{word-spacing:10.096884px;}
.ws10_c00096{word-spacing:10.783080px;}
.wsf_c00096{word-spacing:11.490282px;}
.ws1a_c00096{word-spacing:15.845526px;}
._3_c00096{margin-left:-2.709342px;}
._0_c00096{margin-left:-1.001286px;}
._1_c00096{width:1.036296px;}
._2_c00096{width:5.930694px;}
.fc0_c00096{color:rgb(0,0,0);}
.fs2_c00096{font-size:37.809600px;}
.fs1_c00096{font-size:46.562400px;}
.fs3_c00096{font-size:58.466400px;}
.fs0_c00096{font-size:70.020000px;}
.y0_c00096{bottom:0.000000px;}
.y2_c00096{bottom:109.740968px;}
.y1_c00096{bottom:129.810450px;}
.y1f_c00096{bottom:149.429891px;}
.y1e_c00096{bottom:170.940450px;}
.y1d_c00096{bottom:211.887660px;}
.y1c_c00096{bottom:297.117755px;}
.y1b_c00096{bottom:327.268367px;}
.y1a_c00096{bottom:357.508254px;}
.y19_c00096{bottom:387.658866px;}
.y18_c00096{bottom:417.898754px;}
.y17_c00096{bottom:448.049366px;}
.y16_c00096{bottom:488.548934px;}
.y15_c00096{bottom:539.308182px;}
.y14_c00096{bottom:569.458794px;}
.y13_c00096{bottom:599.698682px;}
.y12_c00096{bottom:629.849294px;}
.y11_c00096{bottom:660.089181px;}
.y10_c00096{bottom:690.239793px;}
.yf_c00096{bottom:720.479681px;}
.ye_c00096{bottom:750.630292px;}
.yd_c00096{bottom:780.780905px;}
.yc_c00096{bottom:834.328934px;}
.yb_c00096{bottom:864.479546px;}
.ya_c00096{bottom:894.719433px;}
.y9_c00096{bottom:924.870045px;}
.y8_c00096{bottom:955.109933px;}
.y7_c00096{bottom:985.260545px;}
.y6_c00096{bottom:1015.500432px;}
.y5_c00096{bottom:1045.651044px;}
.y4_c00096{bottom:1075.890932px;}
.y3_c00096{bottom:1110.451053px;}
.h5_c00096{height:39.338549px;}
.h6_c00096{height:54.098549px;}
.h2_c00096{height:62.600889px;}
.h1_c00096{height:62.771836px;}
.h4_c00096{height:62.782996px;}
.h3_c00096{height:73.788530px;}
.h0_c00096{height:1263.000000px;}
.w0_c00096{width:892.500000px;}
.x0_c00096{left:0.000000px;}
.x2_c00096{left:82.709645px;}
.x3_c00096{left:111.869474px;}
.x1_c00096{left:436.680000px;}
@media print{
.v2_c00096{vertical-align:-13.120000pt;}
.v0_c00096{vertical-align:0.000000pt;}
.v1_c00096{vertical-align:28.485392pt;}
.lse_c00096{letter-spacing:-0.067217pt;}
.ls6_c00096{letter-spacing:-0.056016pt;}
.lsb_c00096{letter-spacing:-0.043568pt;}
.ls8_c00096{letter-spacing:-0.031120pt;}
.ls9_c00096{letter-spacing:-0.024896pt;}
.lsc_c00096{letter-spacing:-0.018672pt;}
.lsa_c00096{letter-spacing:-0.012448pt;}
.lsd_c00096{letter-spacing:-0.006224pt;}
.ls7_c00096{letter-spacing:0.000000pt;}
.ls2_c00096{letter-spacing:0.006224pt;}
.ls4_c00096{letter-spacing:0.012448pt;}
.ls1_c00096{letter-spacing:0.018672pt;}
.ls3_c00096{letter-spacing:0.020694pt;}
.ls0_c00096{letter-spacing:0.093360pt;}
.ls5_c00096{letter-spacing:0.298752pt;}
.lsf_c00096{letter-spacing:0.457337pt;}
.ws0_c00096{word-spacing:-11.526781pt;}
.ws1_c00096{word-spacing:-9.242347pt;}
.ws1f_c00096{word-spacing:-0.446943pt;}
.ws17_c00096{word-spacing:-0.006224pt;}
.ws2_c00096{word-spacing:0.000000pt;}
.wsc_c00096{word-spacing:0.006224pt;}
.ws16_c00096{word-spacing:0.012448pt;}
.ws3_c00096{word-spacing:0.211616pt;}
.ws14_c00096{word-spacing:0.286304pt;}
.ws13_c00096{word-spacing:0.311200pt;}
.ws6_c00096{word-spacing:0.336096pt;}
.wsd_c00096{word-spacing:0.616176pt;}
.ws1c_c00096{word-spacing:0.622400pt;}
.ws12_c00096{word-spacing:0.653520pt;}
.wse_c00096{word-spacing:0.659744pt;}
.ws1b_c00096{word-spacing:0.964720pt;}
.ws9_c00096{word-spacing:1.580896pt;}
.wsa_c00096{word-spacing:1.612016pt;}
.wsb_c00096{word-spacing:1.630688pt;}
.ws15_c00096{word-spacing:2.570512pt;}
.ws18_c00096{word-spacing:2.881712pt;}
.ws11_c00096{word-spacing:2.887936pt;}
.ws8_c00096{word-spacing:3.522784pt;}
.ws5_c00096{word-spacing:5.458448pt;}
.ws19_c00096{word-spacing:7.033120pt;}
.ws4_c00096{word-spacing:8.290368pt;}
.ws1d_c00096{word-spacing:8.638912pt;}
.ws1e_c00096{word-spacing:8.657584pt;}
.ws7_c00096{word-spacing:8.975008pt;}
.ws10_c00096{word-spacing:9.584960pt;}
.wsf_c00096{word-spacing:10.213584pt;}
.ws1a_c00096{word-spacing:14.084912pt;}
._3_c00096{margin-left:-2.408304pt;}
._0_c00096{margin-left:-0.890032pt;}
._1_c00096{width:0.921152pt;}
._2_c00096{width:5.271728pt;}
.fs2_c00096{font-size:33.608533pt;}
.fs1_c00096{font-size:41.388800pt;}
.fs3_c00096{font-size:51.970133pt;}
.fs0_c00096{font-size:62.240000pt;}
.y0_c00096{bottom:0.000000pt;}
.y2_c00096{bottom:97.547527pt;}
.y1_c00096{bottom:115.387067pt;}
.y1f_c00096{bottom:132.826570pt;}
.y1e_c00096{bottom:151.947067pt;}
.y1d_c00096{bottom:188.344587pt;}
.y1c_c00096{bottom:264.104671pt;}
.y1b_c00096{bottom:290.905215pt;}
.y1a_c00096{bottom:317.785115pt;}
.y19_c00096{bottom:344.585659pt;}
.y18_c00096{bottom:371.465559pt;}
.y17_c00096{bottom:398.266103pt;}
.y16_c00096{bottom:434.265719pt;}
.y15_c00096{bottom:479.385051pt;}
.y14_c00096{bottom:506.185595pt;}
.y13_c00096{bottom:533.065495pt;}
.y12_c00096{bottom:559.866039pt;}
.y11_c00096{bottom:586.745939pt;}
.y10_c00096{bottom:613.546483pt;}
.yf_c00096{bottom:640.426383pt;}
.ye_c00096{bottom:667.226927pt;}
.yd_c00096{bottom:694.027471pt;}
.yc_c00096{bottom:741.625719pt;}
.yb_c00096{bottom:768.426263pt;}
.ya_c00096{bottom:795.306163pt;}
.y9_c00096{bottom:822.106707pt;}
.y8_c00096{bottom:848.986607pt;}
.y7_c00096{bottom:875.787151pt;}
.y6_c00096{bottom:902.667051pt;}
.y5_c00096{bottom:929.467595pt;}
.y4_c00096{bottom:956.347495pt;}
.y3_c00096{bottom:987.067603pt;}
.h5_c00096{height:34.967599pt;}
.h6_c00096{height:48.087599pt;}
.h2_c00096{height:55.645234pt;}
.h1_c00096{height:55.797187pt;}
.h4_c00096{height:55.807107pt;}
.h3_c00096{height:65.589804pt;}
.h0_c00096{height:1122.666667pt;}
.w0_c00096{width:793.333333pt;}
.x0_c00096{left:0.000000pt;}
.x2_c00096{left:73.519684pt;}
.x3_c00096{left:99.439532pt;}
.x1_c00096{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3d2ea1655ab1c8842f1d52e9.woff2')format("woff");}.ff1_c00097{font-family:ff1_c00097;line-height:1.106934;font-style:normal;font-weight:normal;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_6ec157fe47c9b7962c0a4983.woff2')format("woff");}.ff2_c00097{font-family:ff2_c00097;line-height:1.104492;font-style:normal;font-weight:normal;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_2ad0784e8838f3e358834f15.woff2')format("woff");}.ff3_c00097{font-family:ff3_c00097;line-height:1.133301;font-style:normal;font-weight:normal;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_8419547e2e99de4758f88204.woff2')format("woff");}.ff4_c00097{font-family:ff4_c00097;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00097{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00097{vertical-align:-14.760000px;}
.v0_c00097{vertical-align:0.000000px;}
.v1_c00097{vertical-align:32.037138px;}
.ls19_c00097{letter-spacing:-0.707443px;}
.lsd_c00097{letter-spacing:-0.140040px;}
.ls17_c00097{letter-spacing:-0.134473px;}
.ls13_c00097{letter-spacing:-0.122779px;}
.ls16_c00097{letter-spacing:-0.116933px;}
.ls18_c00097{letter-spacing:-0.087700px;}
.ls11_c00097{letter-spacing:-0.075619px;}
.ls7_c00097{letter-spacing:-0.063018px;}
.lsf_c00097{letter-spacing:-0.049014px;}
.lsc_c00097{letter-spacing:-0.042012px;}
.ls12_c00097{letter-spacing:-0.040926px;}
.ls10_c00097{letter-spacing:-0.035010px;}
.lse_c00097{letter-spacing:-0.028008px;}
.ls9_c00097{letter-spacing:-0.021006px;}
.lsa_c00097{letter-spacing:-0.014004px;}
.lsb_c00097{letter-spacing:-0.007002px;}
.ls8_c00097{letter-spacing:0.000000px;}
.ls2_c00097{letter-spacing:0.007002px;}
.ls1a_c00097{letter-spacing:0.011693px;}
.ls3_c00097{letter-spacing:0.014004px;}
.ls1_c00097{letter-spacing:0.023281px;}
.ls0_c00097{letter-spacing:0.042012px;}
.ls6_c00097{letter-spacing:0.087700px;}
.ls5_c00097{letter-spacing:0.093546px;}
.ls14_c00097{letter-spacing:0.286485px;}
.ls1d_c00097{letter-spacing:0.327412px;}
.ls1c_c00097{letter-spacing:0.344952px;}
.ls1b_c00097{letter-spacing:6.495617px;}
.ls4_c00097{letter-spacing:12.575592px;}
.ls15_c00097{letter-spacing:18.732635px;}
.sc__c00097{text-shadow:none;}
.sc0_c00097{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00097{-webkit-text-stroke:0px transparent;}
.sc0_c00097{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00097{word-spacing:-19.465560px;}
.ws0_c00097{word-spacing:-12.967628px;}
.ws2_c00097{word-spacing:-10.397640px;}
.ws22_c00097{word-spacing:-0.315719px;}
.ws1b_c00097{word-spacing:-0.274792px;}
.ws3_c00097{word-spacing:0.000000px;}
.ws5_c00097{word-spacing:0.007002px;}
.wsf_c00097{word-spacing:0.014004px;}
.ws11_c00097{word-spacing:0.021006px;}
.ws7_c00097{word-spacing:1.785510px;}
.ws12_c00097{word-spacing:2.912832px;}
.ws17_c00097{word-spacing:3.255930px;}
.ws9_c00097{word-spacing:3.935124px;}
.ws8_c00097{word-spacing:3.956130px;}
.ws13_c00097{word-spacing:3.970134px;}
.ws18_c00097{word-spacing:4.238814px;}
.ws19_c00097{word-spacing:4.373287px;}
.ws1a_c00097{word-spacing:4.455140px;}
.ws21_c00097{word-spacing:5.788174px;}
.ws20_c00097{word-spacing:6.045426px;}
.ws1e_c00097{word-spacing:6.939962px;}
.ws1d_c00097{word-spacing:6.986735px;}
.wse_c00097{word-spacing:7.198056px;}
.ws10_c00097{word-spacing:7.233066px;}
.ws1f_c00097{word-spacing:7.559706px;}
.wsd_c00097{word-spacing:8.633466px;}
.ws15_c00097{word-spacing:9.704772px;}
.ws16_c00097{word-spacing:9.732780px;}
.ws6_c00097{word-spacing:11.882394px;}
.wsc_c00097{word-spacing:12.582594px;}
.wsb_c00097{word-spacing:12.958316px;}
.wsa_c00097{word-spacing:12.988710px;}
.ws1c_c00097{word-spacing:18.849567px;}
.ws4_c00097{word-spacing:20.102742px;}
.ws14_c00097{word-spacing:23.421690px;}
._4_c00097{margin-left:-18.754597px;}
._6_c00097{margin-left:-7.717265px;}
._5_c00097{margin-left:-6.482500px;}
._2_c00097{margin-left:-2.877822px;}
._0_c00097{margin-left:-1.470420px;}
._1_c00097{width:1.001286px;}
._3_c00097{width:5.930694px;}
.fc0_c00097{color:rgb(0,0,0);}
.fs2_c00097{font-size:37.809600px;}
.fs1_c00097{font-size:46.562400px;}
.fs3_c00097{font-size:58.466400px;}
.fs0_c00097{font-size:70.020000px;}
.y0_c00097{bottom:0.000000px;}
.y2_c00097{bottom:109.740968px;}
.y1_c00097{bottom:129.810450px;}
.y21_c00097{bottom:149.429891px;}
.y20_c00097{bottom:170.940450px;}
.y1f_c00097{bottom:205.589548px;}
.y1e_c00097{bottom:223.589891px;}
.y1d_c00097{bottom:245.100450px;}
.y1c_c00097{bottom:279.749891px;}
.y1b_c00097{bottom:301.260450px;}
.y1a_c00097{bottom:316.019618px;}
.y19_c00097{bottom:373.259217px;}
.y18_c00097{bottom:403.409829px;}
.y17_c00097{bottom:433.649717px;}
.y16_c00097{bottom:463.800328px;}
.y15_c00097{bottom:494.040216px;}
.y14_c00097{bottom:524.190828px;}
.y13_c00097{bottom:554.430716px;}
.y12_c00097{bottom:593.400347px;}
.y11_c00097{bottom:632.280702px;}
.y10_c00097{bottom:662.520589px;}
.yf_c00097{bottom:701.490220px;}
.ye_c00097{bottom:740.370576px;}
.yd_c00097{bottom:770.610464px;}
.yc_c00097{bottom:809.580094px;}
.yb_c00097{bottom:848.459951px;}
.ya_c00097{bottom:878.699838px;}
.y9_c00097{bottom:908.848754px;}
.y8_c00097{bottom:939.088641px;}
.y7_c00097{bottom:969.239253px;}
.y6_c00097{bottom:999.479141px;}
.y5_c00097{bottom:1029.629752px;}
.y4_c00097{bottom:1080.211166px;}
.y3_c00097{bottom:1110.451053px;}
.h7_c00097{height:39.338549px;}
.h8_c00097{height:54.098549px;}
.h2_c00097{height:62.600889px;}
.h1_c00097{height:62.771836px;}
.h6_c00097{height:62.775166px;}
.h3_c00097{height:73.779602px;}
.h5_c00097{height:74.030784px;}
.h4_c00097{height:74.149250px;}
.h0_c00097{height:1263.000000px;}
.w0_c00097{width:892.500000px;}
.x0_c00097{left:0.000000px;}
.x2_c00097{left:82.709645px;}
.x1_c00097{left:436.680000px;}
@media print{
.v2_c00097{vertical-align:-13.120000pt;}
.v0_c00097{vertical-align:0.000000pt;}
.v1_c00097{vertical-align:28.477456pt;}
.ls19_c00097{letter-spacing:-0.628839pt;}
.lsd_c00097{letter-spacing:-0.124480pt;}
.ls17_c00097{letter-spacing:-0.119531pt;}
.ls13_c00097{letter-spacing:-0.109137pt;}
.ls16_c00097{letter-spacing:-0.103940pt;}
.ls18_c00097{letter-spacing:-0.077955pt;}
.ls11_c00097{letter-spacing:-0.067217pt;}
.ls7_c00097{letter-spacing:-0.056016pt;}
.lsf_c00097{letter-spacing:-0.043568pt;}
.lsc_c00097{letter-spacing:-0.037344pt;}
.ls12_c00097{letter-spacing:-0.036379pt;}
.ls10_c00097{letter-spacing:-0.031120pt;}
.lse_c00097{letter-spacing:-0.024896pt;}
.ls9_c00097{letter-spacing:-0.018672pt;}
.lsa_c00097{letter-spacing:-0.012448pt;}
.lsb_c00097{letter-spacing:-0.006224pt;}
.ls8_c00097{letter-spacing:0.000000pt;}
.ls2_c00097{letter-spacing:0.006224pt;}
.ls1a_c00097{letter-spacing:0.010394pt;}
.ls3_c00097{letter-spacing:0.012448pt;}
.ls1_c00097{letter-spacing:0.020694pt;}
.ls0_c00097{letter-spacing:0.037344pt;}
.ls6_c00097{letter-spacing:0.077955pt;}
.ls5_c00097{letter-spacing:0.083152pt;}
.ls14_c00097{letter-spacing:0.254654pt;}
.ls1d_c00097{letter-spacing:0.291033pt;}
.ls1c_c00097{letter-spacing:0.306624pt;}
.ls1b_c00097{letter-spacing:5.773882pt;}
.ls4_c00097{letter-spacing:11.178304pt;}
.ls15_c00097{letter-spacing:16.651231pt;}
.ws1_c00097{word-spacing:-17.302720pt;}
.ws0_c00097{word-spacing:-11.526781pt;}
.ws2_c00097{word-spacing:-9.242347pt;}
.ws22_c00097{word-spacing:-0.280639pt;}
.ws1b_c00097{word-spacing:-0.244260pt;}
.ws3_c00097{word-spacing:0.000000pt;}
.ws5_c00097{word-spacing:0.006224pt;}
.wsf_c00097{word-spacing:0.012448pt;}
.ws11_c00097{word-spacing:0.018672pt;}
.ws7_c00097{word-spacing:1.587120pt;}
.ws12_c00097{word-spacing:2.589184pt;}
.ws17_c00097{word-spacing:2.894160pt;}
.ws9_c00097{word-spacing:3.497888pt;}
.ws8_c00097{word-spacing:3.516560pt;}
.ws13_c00097{word-spacing:3.529008pt;}
.ws18_c00097{word-spacing:3.767835pt;}
.ws19_c00097{word-spacing:3.887366pt;}
.ws1a_c00097{word-spacing:3.960124pt;}
.ws21_c00097{word-spacing:5.145043pt;}
.ws20_c00097{word-spacing:5.373712pt;}
.ws1e_c00097{word-spacing:6.168855pt;}
.ws1d_c00097{word-spacing:6.210431pt;}
.wse_c00097{word-spacing:6.398272pt;}
.ws10_c00097{word-spacing:6.429392pt;}
.ws1f_c00097{word-spacing:6.719738pt;}
.wsd_c00097{word-spacing:7.674192pt;}
.ws15_c00097{word-spacing:8.626464pt;}
.ws16_c00097{word-spacing:8.651360pt;}
.ws6_c00097{word-spacing:10.562128pt;}
.wsc_c00097{word-spacing:11.184528pt;}
.wsb_c00097{word-spacing:11.518503pt;}
.wsa_c00097{word-spacing:11.545520pt;}
.ws1c_c00097{word-spacing:16.755171pt;}
.ws4_c00097{word-spacing:17.869104pt;}
.ws14_c00097{word-spacing:20.819280pt;}
._4_c00097{margin-left:-16.670753pt;}
._6_c00097{margin-left:-6.859791pt;}
._5_c00097{margin-left:-5.762222pt;}
._2_c00097{margin-left:-2.558064pt;}
._0_c00097{margin-left:-1.307040pt;}
._1_c00097{width:0.890032pt;}
._3_c00097{width:5.271728pt;}
.fs2_c00097{font-size:33.608533pt;}
.fs1_c00097{font-size:41.388800pt;}
.fs3_c00097{font-size:51.970133pt;}
.fs0_c00097{font-size:62.240000pt;}
.y0_c00097{bottom:0.000000pt;}
.y2_c00097{bottom:97.547527pt;}
.y1_c00097{bottom:115.387067pt;}
.y21_c00097{bottom:132.826570pt;}
.y20_c00097{bottom:151.947067pt;}
.y1f_c00097{bottom:182.746265pt;}
.y1e_c00097{bottom:198.746570pt;}
.y1d_c00097{bottom:217.867067pt;}
.y1c_c00097{bottom:248.666570pt;}
.y1b_c00097{bottom:267.787067pt;}
.y1a_c00097{bottom:280.906327pt;}
.y19_c00097{bottom:331.785971pt;}
.y18_c00097{bottom:358.586515pt;}
.y17_c00097{bottom:385.466415pt;}
.y16_c00097{bottom:412.266959pt;}
.y15_c00097{bottom:439.146859pt;}
.y14_c00097{bottom:465.947403pt;}
.y13_c00097{bottom:492.827303pt;}
.y12_c00097{bottom:527.466975pt;}
.y11_c00097{bottom:562.027291pt;}
.y10_c00097{bottom:588.907191pt;}
.yf_c00097{bottom:623.546863pt;}
.ye_c00097{bottom:658.107179pt;}
.yd_c00097{bottom:684.987079pt;}
.yc_c00097{bottom:719.626751pt;}
.yb_c00097{bottom:754.186623pt;}
.ya_c00097{bottom:781.066523pt;}
.y9_c00097{bottom:807.865559pt;}
.y8_c00097{bottom:834.745459pt;}
.y7_c00097{bottom:861.546003pt;}
.y6_c00097{bottom:888.425903pt;}
.y5_c00097{bottom:915.226447pt;}
.y4_c00097{bottom:960.187703pt;}
.y3_c00097{bottom:987.067603pt;}
.h7_c00097{height:34.967599pt;}
.h8_c00097{height:48.087599pt;}
.h2_c00097{height:55.645234pt;}
.h1_c00097{height:55.797187pt;}
.h6_c00097{height:55.800147pt;}
.h3_c00097{height:65.581868pt;}
.h5_c00097{height:65.805142pt;}
.h4_c00097{height:65.910444pt;}
.h0_c00097{height:1122.666667pt;}
.w0_c00097{width:793.333333pt;}
.x0_c00097{left:0.000000pt;}
.x2_c00097{left:73.519684pt;}
.x1_c00097{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2a46be51adc16e71a804c4d7.woff2')format("woff");}.ff1_c00098{font-family:ff1_c00098;line-height:1.106934;font-style:normal;font-weight:normal;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_9c39eede58a9fabc08b7df96.woff2')format("woff");}.ff2_c00098{font-family:ff2_c00098;line-height:1.104492;font-style:normal;font-weight:normal;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_5e7c2457469d03c7ff30ed59.woff2')format("woff");}.ff3_c00098{font-family:ff3_c00098;line-height:1.133301;font-style:normal;font-weight:normal;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_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff4_c00098{font-family:ff4_c00098;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00098;src:url('chunks/assets/font_b90120c0c2ea7cacb7d818e2.woff2')format("woff");}.ff5_c00098{font-family:ff5_c00098;line-height:1.133301;font-style:normal;font-weight:normal;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_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff6_c00098{font-family:ff6_c00098;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00098{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00098{vertical-align:-14.760000px;}
.v0_c00098{vertical-align:0.000000px;}
.v1_c00098{vertical-align:32.052960px;}
.ls21_c00098{letter-spacing:-0.268945px;}
.ls1b_c00098{letter-spacing:-0.210479px;}
.ls1a_c00098{letter-spacing:-0.146166px;}
.ls1f_c00098{letter-spacing:-0.122779px;}
.ls16_c00098{letter-spacing:-0.087700px;}
.ls13_c00098{letter-spacing:-0.075619px;}
.ls19_c00098{letter-spacing:-0.070160px;}
.ls20_c00098{letter-spacing:-0.064313px;}
.lsa_c00098{letter-spacing:-0.063018px;}
.ls11_c00098{letter-spacing:-0.056016px;}
.ls1e_c00098{letter-spacing:-0.052620px;}
.lsd_c00098{letter-spacing:-0.042012px;}
.ls18_c00098{letter-spacing:-0.040926px;}
.ls1d_c00098{letter-spacing:-0.035080px;}
.ls10_c00098{letter-spacing:-0.035010px;}
.lsc_c00098{letter-spacing:-0.028008px;}
.ls1c_c00098{letter-spacing:-0.023387px;}
.lsf_c00098{letter-spacing:-0.021006px;}
.ls22_c00098{letter-spacing:-0.017540px;}
.lse_c00098{letter-spacing:-0.014004px;}
.ls17_c00098{letter-spacing:-0.011693px;}
.ls12_c00098{letter-spacing:-0.007002px;}
.lsb_c00098{letter-spacing:0.000000px;}
.ls3_c00098{letter-spacing:0.007002px;}
.ls7_c00098{letter-spacing:0.011693px;}
.ls0_c00098{letter-spacing:0.014004px;}
.ls8_c00098{letter-spacing:0.017540px;}
.ls4_c00098{letter-spacing:0.023281px;}
.ls1_c00098{letter-spacing:0.056016px;}
.ls2_c00098{letter-spacing:0.070020px;}
.ls14_c00098{letter-spacing:0.087700px;}
.ls15_c00098{letter-spacing:0.204632px;}
.ls9_c00098{letter-spacing:0.210479px;}
.ls6_c00098{letter-spacing:0.362492px;}
.ls5_c00098{letter-spacing:10.442099px;}
.sc__c00098{text-shadow:none;}
.sc0_c00098{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00098{-webkit-text-stroke:0px transparent;}
.sc0_c00098{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00098{word-spacing:-58.466400px;}
.ws3_c00098{word-spacing:-16.206886px;}
.ws0_c00098{word-spacing:-12.967628px;}
.ws1_c00098{word-spacing:-10.397640px;}
.ws4_c00098{word-spacing:0.000000px;}
.ws2a_c00098{word-spacing:0.029233px;}
.ws19_c00098{word-spacing:0.286485px;}
.ws18_c00098{word-spacing:0.350100px;}
.ws16_c00098{word-spacing:0.357102px;}
.ws8_c00098{word-spacing:0.364104px;}
.ws14_c00098{word-spacing:0.399114px;}
.ws15_c00098{word-spacing:0.700200px;}
.ws7_c00098{word-spacing:1.078308px;}
.ws6_c00098{word-spacing:1.106316px;}
.ws26_c00098{word-spacing:1.145941px;}
.ws27_c00098{word-spacing:1.216101px;}
.ws24_c00098{word-spacing:1.601979px;}
.ws23_c00098{word-spacing:1.794918px;}
.ws22_c00098{word-spacing:1.800765px;}
.ws25_c00098{word-spacing:1.847538px;}
.ws21_c00098{word-spacing:2.022937px;}
.ws1b_c00098{word-spacing:2.262650px;}
.ws1a_c00098{word-spacing:2.326963px;}
.ws9_c00098{word-spacing:3.248928px;}
.ws28_c00098{word-spacing:4.040028px;}
.ws17_c00098{word-spacing:4.306230px;}
.ws29_c00098{word-spacing:4.601306px;}
.ws1c_c00098{word-spacing:4.706545px;}
.ws1d_c00098{word-spacing:4.735778px;}
.ws1e_c00098{word-spacing:5.121657px;}
.wsa_c00098{word-spacing:7.576164px;}
.ws5_c00098{word-spacing:8.654472px;}
.wse_c00098{word-spacing:9.004572px;}
.wsd_c00098{word-spacing:10.082880px;}
.wsc_c00098{word-spacing:10.446984px;}
.ws1f_c00098{word-spacing:10.453792px;}
.ws20_c00098{word-spacing:10.599958px;}
.wsb_c00098{word-spacing:21.251070px;}
.ws11_c00098{word-spacing:21.517146px;}
.ws10_c00098{word-spacing:21.531150px;}
.wsf_c00098{word-spacing:21.573162px;}
.ws13_c00098{word-spacing:26.278506px;}
.ws12_c00098{word-spacing:35.290080px;}
._3_c00098{margin-left:-2.706420px;}
._1_c00098{margin-left:-1.232352px;}
._0_c00098{width:1.008288px;}
._2_c00098{width:5.930694px;}
._4_c00098{width:10.126380px;}
.fc0_c00098{color:rgb(0,0,0);}
.fs2_c00098{font-size:37.809600px;}
.fs1_c00098{font-size:46.562400px;}
.fs3_c00098{font-size:58.466400px;}
.fs0_c00098{font-size:70.020000px;}
.y0_c00098{bottom:0.000000px;}
.y2_c00098{bottom:109.740968px;}
.y1_c00098{bottom:129.810450px;}
.y24_c00098{bottom:169.860450px;}
.y23_c00098{bottom:187.770450px;}
.y22_c00098{bottom:205.590450px;}
.y21_c00098{bottom:223.590450px;}
.y20_c00098{bottom:241.410450px;}
.y1f_c00098{bottom:259.320450px;}
.y1e_c00098{bottom:277.230450px;}
.y1d_c00098{bottom:298.740450px;}
.y1c_c00098{bottom:333.839716px;}
.y1b_c00098{bottom:368.310562px;}
.y1a_c00098{bottom:398.547210px;}
.y19_c00098{bottom:428.697822px;}
.y18_c00098{bottom:458.937710px;}
.y17_c00098{bottom:489.088322px;}
.y16_c00098{bottom:528.057953px;}
.y15_c00098{bottom:558.297840px;}
.y14_c00098{bottom:597.087170px;}
.y13_c00098{bottom:627.327057px;}
.y12_c00098{bottom:657.477669px;}
.y11_c00098{bottom:687.717557px;}
.y10_c00098{bottom:717.868169px;}
.yf_c00098{bottom:748.108056px;}
.ye_c00098{bottom:778.258668px;}
.yd_c00098{bottom:808.498556px;}
.yc_c00098{bottom:838.649168px;}
.yb_c00098{bottom:868.889055px;}
.ya_c00098{bottom:899.039667px;}
.y9_c00098{bottom:929.279555px;}
.y8_c00098{bottom:959.519442px;}
.y7_c00098{bottom:989.670054px;}
.y6_c00098{bottom:1019.909942px;}
.y5_c00098{bottom:1050.060553px;}
.y4_c00098{bottom:1080.300441px;}
.y3_c00098{bottom:1110.451053px;}
.h5_c00098{height:39.338549px;}
.h6_c00098{height:54.098549px;}
.h2_c00098{height:62.600889px;}
.h1_c00098{height:62.771836px;}
.h4_c00098{height:62.774770px;}
.h3_c00098{height:73.681746px;}
.h0_c00098{height:1263.000000px;}
.w0_c00098{width:892.500000px;}
.x0_c00098{left:0.000000px;}
.x2_c00098{left:82.709645px;}
.x1_c00098{left:436.680000px;}
@media print{
.v2_c00098{vertical-align:-13.120000pt;}
.v0_c00098{vertical-align:0.000000pt;}
.v1_c00098{vertical-align:28.491520pt;}
.ls21_c00098{letter-spacing:-0.239063pt;}
.ls1b_c00098{letter-spacing:-0.187092pt;}
.ls1a_c00098{letter-spacing:-0.129925pt;}
.ls1f_c00098{letter-spacing:-0.109137pt;}
.ls16_c00098{letter-spacing:-0.077955pt;}
.ls13_c00098{letter-spacing:-0.067217pt;}
.ls19_c00098{letter-spacing:-0.062364pt;}
.ls20_c00098{letter-spacing:-0.057167pt;}
.lsa_c00098{letter-spacing:-0.056016pt;}
.ls11_c00098{letter-spacing:-0.049792pt;}
.ls1e_c00098{letter-spacing:-0.046773pt;}
.lsd_c00098{letter-spacing:-0.037344pt;}
.ls18_c00098{letter-spacing:-0.036379pt;}
.ls1d_c00098{letter-spacing:-0.031182pt;}
.ls10_c00098{letter-spacing:-0.031120pt;}
.lsc_c00098{letter-spacing:-0.024896pt;}
.ls1c_c00098{letter-spacing:-0.020788pt;}
.lsf_c00098{letter-spacing:-0.018672pt;}
.ls22_c00098{letter-spacing:-0.015591pt;}
.lse_c00098{letter-spacing:-0.012448pt;}
.ls17_c00098{letter-spacing:-0.010394pt;}
.ls12_c00098{letter-spacing:-0.006224pt;}
.lsb_c00098{letter-spacing:0.000000pt;}
.ls3_c00098{letter-spacing:0.006224pt;}
.ls7_c00098{letter-spacing:0.010394pt;}
.ls0_c00098{letter-spacing:0.012448pt;}
.ls8_c00098{letter-spacing:0.015591pt;}
.ls4_c00098{letter-spacing:0.020694pt;}
.ls1_c00098{letter-spacing:0.049792pt;}
.ls2_c00098{letter-spacing:0.062240pt;}
.ls14_c00098{letter-spacing:0.077955pt;}
.ls15_c00098{letter-spacing:0.181895pt;}
.ls9_c00098{letter-spacing:0.187092pt;}
.ls6_c00098{letter-spacing:0.322215pt;}
.ls5_c00098{letter-spacing:9.281866pt;}
.ws2_c00098{word-spacing:-51.970133pt;}
.ws3_c00098{word-spacing:-14.406121pt;}
.ws0_c00098{word-spacing:-11.526781pt;}
.ws1_c00098{word-spacing:-9.242347pt;}
.ws4_c00098{word-spacing:0.000000pt;}
.ws2a_c00098{word-spacing:0.025985pt;}
.ws19_c00098{word-spacing:0.254654pt;}
.ws18_c00098{word-spacing:0.311200pt;}
.ws16_c00098{word-spacing:0.317424pt;}
.ws8_c00098{word-spacing:0.323648pt;}
.ws14_c00098{word-spacing:0.354768pt;}
.ws15_c00098{word-spacing:0.622400pt;}
.ws7_c00098{word-spacing:0.958496pt;}
.ws6_c00098{word-spacing:0.983392pt;}
.ws26_c00098{word-spacing:1.018615pt;}
.ws27_c00098{word-spacing:1.080979pt;}
.ws24_c00098{word-spacing:1.423982pt;}
.ws23_c00098{word-spacing:1.595483pt;}
.ws22_c00098{word-spacing:1.600680pt;}
.ws25_c00098{word-spacing:1.642256pt;}
.ws21_c00098{word-spacing:1.798167pt;}
.ws1b_c00098{word-spacing:2.011244pt;}
.ws1a_c00098{word-spacing:2.068411pt;}
.ws9_c00098{word-spacing:2.887936pt;}
.ws28_c00098{word-spacing:3.591136pt;}
.ws17_c00098{word-spacing:3.827760pt;}
.ws29_c00098{word-spacing:4.090049pt;}
.ws1c_c00098{word-spacing:4.183596pt;}
.ws1d_c00098{word-spacing:4.209581pt;}
.ws1e_c00098{word-spacing:4.552584pt;}
.wsa_c00098{word-spacing:6.734368pt;}
.ws5_c00098{word-spacing:7.692864pt;}
.wse_c00098{word-spacing:8.004064pt;}
.wsd_c00098{word-spacing:8.962560pt;}
.wsc_c00098{word-spacing:9.286208pt;}
.ws1f_c00098{word-spacing:9.292260pt;}
.ws20_c00098{word-spacing:9.422185pt;}
.wsb_c00098{word-spacing:18.889840pt;}
.ws11_c00098{word-spacing:19.126352pt;}
.ws10_c00098{word-spacing:19.138800pt;}
.wsf_c00098{word-spacing:19.176144pt;}
.ws13_c00098{word-spacing:23.358672pt;}
.ws12_c00098{word-spacing:31.368960pt;}
._3_c00098{margin-left:-2.405707pt;}
._1_c00098{margin-left:-1.095424pt;}
._0_c00098{width:0.896256pt;}
._2_c00098{width:5.271728pt;}
._4_c00098{width:9.001227pt;}
.fs2_c00098{font-size:33.608533pt;}
.fs1_c00098{font-size:41.388800pt;}
.fs3_c00098{font-size:51.970133pt;}
.fs0_c00098{font-size:62.240000pt;}
.y0_c00098{bottom:0.000000pt;}
.y2_c00098{bottom:97.547527pt;}
.y1_c00098{bottom:115.387067pt;}
.y24_c00098{bottom:150.987067pt;}
.y23_c00098{bottom:166.907067pt;}
.y22_c00098{bottom:182.747067pt;}
.y21_c00098{bottom:198.747067pt;}
.y20_c00098{bottom:214.587067pt;}
.y1f_c00098{bottom:230.507067pt;}
.y1e_c00098{bottom:246.427067pt;}
.y1d_c00098{bottom:265.547067pt;}
.y1c_c00098{bottom:296.746415pt;}
.y1b_c00098{bottom:327.387167pt;}
.y1a_c00098{bottom:354.264187pt;}
.y19_c00098{bottom:381.064731pt;}
.y18_c00098{bottom:407.944631pt;}
.y17_c00098{bottom:434.745175pt;}
.y16_c00098{bottom:469.384847pt;}
.y15_c00098{bottom:496.264747pt;}
.y14_c00098{bottom:530.744151pt;}
.y13_c00098{bottom:557.624051pt;}
.y12_c00098{bottom:584.424595pt;}
.y11_c00098{bottom:611.304495pt;}
.y10_c00098{bottom:638.105039pt;}
.yf_c00098{bottom:664.984939pt;}
.ye_c00098{bottom:691.785483pt;}
.yd_c00098{bottom:718.665383pt;}
.yc_c00098{bottom:745.465927pt;}
.yb_c00098{bottom:772.345827pt;}
.ya_c00098{bottom:799.146371pt;}
.y9_c00098{bottom:826.026271pt;}
.y8_c00098{bottom:852.906171pt;}
.y7_c00098{bottom:879.706715pt;}
.y6_c00098{bottom:906.586615pt;}
.y5_c00098{bottom:933.387159pt;}
.y4_c00098{bottom:960.267059pt;}
.y3_c00098{bottom:987.067603pt;}
.h5_c00098{height:34.967599pt;}
.h6_c00098{height:48.087599pt;}
.h2_c00098{height:55.645234pt;}
.h1_c00098{height:55.797187pt;}
.h4_c00098{height:55.799796pt;}
.h3_c00098{height:65.494886pt;}
.h0_c00098{height:1122.666667pt;}
.w0_c00098{width:793.333333pt;}
.x0_c00098{left:0.000000pt;}
.x2_c00098{left:73.519684pt;}
.x1_c00098{left:388.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6a4d9c28b697064a60c90c06.woff2')format("woff");}.ff1_c00099{font-family:ff1_c00099;line-height:1.106934;font-style:normal;font-weight:normal;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_a3f1c918d66f04d307bd06e2.woff2')format("woff");}.ff2_c00099{font-family:ff2_c00099;line-height:1.104492;font-style:normal;font-weight:normal;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_fa923034a81815f3b61802dc.woff2')format("woff");}.ff3_c00099{font-family:ff3_c00099;line-height:1.133301;font-style:normal;font-weight:normal;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_78f354ea05e862aedbd63d97.woff2')format("woff");}.ff4_c00099{font-family:ff4_c00099;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00099{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00099{vertical-align:-14.760000px;}
.v0_c00099{vertical-align:0.000000px;}
.v1_c00099{vertical-align:32.412588px;}
.lse_c00099{letter-spacing:-0.116933px;}
.ls10_c00099{letter-spacing:-0.076006px;}
.lsd_c00099{letter-spacing:-0.075619px;}
.lsb_c00099{letter-spacing:-0.070020px;}
.ls5_c00099{letter-spacing:-0.063018px;}
.lsf_c00099{letter-spacing:-0.052620px;}
.lsc_c00099{letter-spacing:-0.042012px;}
.ls8_c00099{letter-spacing:-0.028008px;}
.lsa_c00099{letter-spacing:-0.021006px;}
.ls9_c00099{letter-spacing:-0.014004px;}
.ls7_c00099{letter-spacing:-0.007002px;}
.ls6_c00099{letter-spacing:0.000000px;}
.ls1_c00099{letter-spacing:0.007002px;}
.ls0_c00099{letter-spacing:0.014004px;}
.ls2_c00099{letter-spacing:0.021006px;}
.ls4_c00099{letter-spacing:0.023281px;}
.ls3_c00099{letter-spacing:0.042012px;}
.ls11_c00099{letter-spacing:0.479424px;}
.sc__c00099{text-shadow:none;}
.sc0_c00099{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00099{-webkit-text-stroke:0px transparent;}
.sc0_c00099{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00099{word-spacing:-19.486566px;}
.ws1_c00099{word-spacing:-12.967628px;}
.ws2_c00099{word-spacing:-10.397640px;}
.ws25_c00099{word-spacing:-0.467731px;}
.ws10_c00099{word-spacing:-0.028008px;}
.ws3_c00099{word-spacing:0.000000px;}
.ws11_c00099{word-spacing:0.007002px;}
.ws12_c00099{word-spacing:0.014004px;}
.ws24_c00099{word-spacing:0.087700px;}
.wsd_c00099{word-spacing:0.343098px;}
.wsc_c00099{word-spacing:0.371106px;}
.ws1b_c00099{word-spacing:0.707202px;}
.wsb_c00099{word-spacing:1.442412px;}
.wsa_c00099{word-spacing:1.792512px;}
.ws1d_c00099{word-spacing:1.799514px;}
.ws13_c00099{word-spacing:3.248928px;}
.ws20_c00099{word-spacing:3.585024px;}
.ws1a_c00099{word-spacing:3.991140px;}
.ws21_c00099{word-spacing:5.755644px;}
.wse_c00099{word-spacing:6.812946px;}
.wsf_c00099{word-spacing:6.833952px;}
.ws4_c00099{word-spacing:9.711774px;}
.ws18_c00099{word-spacing:9.725778px;}
.ws5_c00099{word-spacing:9.732780px;}
.ws15_c00099{word-spacing:10.047870px;}
.ws19_c00099{word-spacing:11.504286px;}
.ws1f_c00099{word-spacing:12.974706px;}
.ws9_c00099{word-spacing:18.002142px;}
.ws6_c00099{word-spacing:20.144754px;}
.ws1e_c00099{word-spacing:21.244068px;}
.ws14_c00099{word-spacing:21.580164px;}
.ws17_c00099{word-spacing:27.349812px;}
.ws16_c00099{word-spacing:27.699912px;}
.ws1c_c00099{word-spacing:30.906828px;}
.ws23_c00099{word-spacing:32.103900px;}
.ws22_c00099{word-spacing:32.174060px;}
.ws7_c00099{word-spacing:32.391252px;}
.ws8_c00099{word-spacing:32.398254px;}
._3_c00099{margin-left:-2.709774px;}
._0_c00099{margin-left:-1.274364px;}
._1_c00099{width:1.260360px;}
._2_c00099{width:5.930694px;}
.fc0_c00099{color:rgb(0,0,0);}
.fs2_c00099{font-size:37.809600px;}
.fs1_c00099{font-size:46.562400px;}
.fs3_c00099{font-size:58.466400px;}
.fs0_c00099{font-size:70.020000px;}
.y0_c00099{bottom:0.000000px;}
.y2_c00099{bottom:109.740968px;}
.y1_c00099{bottom:129.810450px;}
.y24_c00099{bottom:149.429548px;}
.y23_c00099{bottom:167.250107px;}
.y22_c00099{bottom:188.940450px;}
.y21_c00099{bottom:203.609275px;}
.y20_c00099{bottom:226.108452px;}
.y1f_c00099{bottom:256.259064px;}
.y1e_c00099{bottom:286.498951px;}
.y1d_c00099{bottom:316.649563px;}
.y1c_c00099{bottom:346.889451px;}
.y1b_c00099{bottom:377.040063px;}
.y1a_c00099{bottom:407.279950px;}
.y19_c00099{bottom:437.519838px;}
.y18_c00099{bottom:467.667453px;}
.y17_c00099{bottom:497.907341px;}
.y16_c00099{bottom:528.057953px;}
.y15_c00099{bottom:558.297840px;}
.y14_c00099{bottom:588.357426px;}
.y13_c00099{bottom:618.597314px;}
.y12_c00099{bottom:648.747926px;}
.y11_c00099{bottom:678.987813px;}
.y10_c00099{bottom:709.138425px;}
.yf_c00099{bottom:739.378313px;}
.ye_c00099{bottom:769.528925px;}
.yd_c00099{bottom:799.768812px;}
.yc_c00099{bottom:829.919424px;}
.yb_c00099{bottom:860.159311px;}
.ya_c00099{bottom:899.039667px;}
.y9_c00099{bottom:929.279555px;}
.y8_c00099{bottom:959.519442px;}
.y7_c00099{bottom:989.670054px;}
.y6_c00099{bottom:1019.909942px;}
.y5_c00099{bottom:1050.060553px;}
.y4_c00099{bottom:1080.300441px;}
.y3_c00099{bottom:1110.451053px;}
.h5_c00099{height:39.338549px;}
.h6_c00099{height:54.098549px;}
.h2_c00099{height:62.600889px;}
.h1_c00099{height:62.771836px;}
.h4_c00099{height:62.776534px;}
.h3_c00099{height:74.155052px;}
.h0_c00099{height:1263.000000px;}
.w0_c00099{width:892.500000px;}
.x0_c00099{left:0.000000px;}
.x2_c00099{left:82.710059px;}
.x1_c00099{left:431.730000px;}
@media print{
.v2_c00099{vertical-align:-13.120000pt;}
.v0_c00099{vertical-align:0.000000pt;}
.v1_c00099{vertical-align:28.811189pt;}
.lse_c00099{letter-spacing:-0.103940pt;}
.ls10_c00099{letter-spacing:-0.067561pt;}
.lsd_c00099{letter-spacing:-0.067217pt;}
.lsb_c00099{letter-spacing:-0.062240pt;}
.ls5_c00099{letter-spacing:-0.056016pt;}
.lsf_c00099{letter-spacing:-0.046773pt;}
.lsc_c00099{letter-spacing:-0.037344pt;}
.ls8_c00099{letter-spacing:-0.024896pt;}
.lsa_c00099{letter-spacing:-0.018672pt;}
.ls9_c00099{letter-spacing:-0.012448pt;}
.ls7_c00099{letter-spacing:-0.006224pt;}
.ls6_c00099{letter-spacing:0.000000pt;}
.ls1_c00099{letter-spacing:0.006224pt;}
.ls0_c00099{letter-spacing:0.012448pt;}
.ls2_c00099{letter-spacing:0.018672pt;}
.ls4_c00099{letter-spacing:0.020694pt;}
.ls3_c00099{letter-spacing:0.037344pt;}
.ls11_c00099{letter-spacing:0.426155pt;}
.ws0_c00099{word-spacing:-17.321392pt;}
.ws1_c00099{word-spacing:-11.526781pt;}
.ws2_c00099{word-spacing:-9.242347pt;}
.ws25_c00099{word-spacing:-0.415761pt;}
.ws10_c00099{word-spacing:-0.024896pt;}
.ws3_c00099{word-spacing:0.000000pt;}
.ws11_c00099{word-spacing:0.006224pt;}
.ws12_c00099{word-spacing:0.012448pt;}
.ws24_c00099{word-spacing:0.077955pt;}
.wsd_c00099{word-spacing:0.304976pt;}
.wsc_c00099{word-spacing:0.329872pt;}
.ws1b_c00099{word-spacing:0.628624pt;}
.wsb_c00099{word-spacing:1.282144pt;}
.wsa_c00099{word-spacing:1.593344pt;}
.ws1d_c00099{word-spacing:1.599568pt;}
.ws13_c00099{word-spacing:2.887936pt;}
.ws20_c00099{word-spacing:3.186688pt;}
.ws1a_c00099{word-spacing:3.547680pt;}
.ws21_c00099{word-spacing:5.116128pt;}
.wse_c00099{word-spacing:6.055952pt;}
.wsf_c00099{word-spacing:6.074624pt;}
.ws4_c00099{word-spacing:8.632688pt;}
.ws18_c00099{word-spacing:8.645136pt;}
.ws5_c00099{word-spacing:8.651360pt;}
.ws15_c00099{word-spacing:8.931440pt;}
.ws19_c00099{word-spacing:10.226032pt;}
.ws1f_c00099{word-spacing:11.533072pt;}
.ws9_c00099{word-spacing:16.001904pt;}
.ws6_c00099{word-spacing:17.906448pt;}
.ws1e_c00099{word-spacing:18.883616pt;}
.ws14_c00099{word-spacing:19.182368pt;}
.ws17_c00099{word-spacing:24.310944pt;}
.ws16_c00099{word-spacing:24.622144pt;}
.ws1c_c00099{word-spacing:27.472736pt;}
.ws23_c00099{word-spacing:28.536800pt;}
.ws22_c00099{word-spacing:28.599164pt;}
.ws7_c00099{word-spacing:28.792224pt;}
.ws8_c00099{word-spacing:28.798448pt;}
._3_c00099{margin-left:-2.408688pt;}
._0_c00099{margin-left:-1.132768pt;}
._1_c00099{width:1.120320pt;}
._2_c00099{width:5.271728pt;}
.fs2_c00099{font-size:33.608533pt;}
.fs1_c00099{font-size:41.388800pt;}
.fs3_c00099{font-size:51.970133pt;}
.fs0_c00099{font-size:62.240000pt;}
.y0_c00099{bottom:0.000000pt;}
.y2_c00099{bottom:97.547527pt;}
.y1_c00099{bottom:115.387067pt;}
.y24_c00099{bottom:132.826265pt;}
.y23_c00099{bottom:148.666762pt;}
.y22_c00099{bottom:167.947067pt;}
.y21_c00099{bottom:180.986023pt;}
.y20_c00099{bottom:200.985291pt;}
.y1f_c00099{bottom:227.785835pt;}
.y1e_c00099{bottom:254.665735pt;}
.y1d_c00099{bottom:281.466279pt;}
.y1c_c00099{bottom:308.346179pt;}
.y1b_c00099{bottom:335.146723pt;}
.y1a_c00099{bottom:362.026623pt;}
.y19_c00099{bottom:388.906523pt;}
.y18_c00099{bottom:415.704403pt;}
.y17_c00099{bottom:442.584303pt;}
.y16_c00099{bottom:469.384847pt;}
.y15_c00099{bottom:496.264747pt;}
.y14_c00099{bottom:522.984379pt;}
.y13_c00099{bottom:549.864279pt;}
.y12_c00099{bottom:576.664823pt;}
.y11_c00099{bottom:603.544723pt;}
.y10_c00099{bottom:630.345267pt;}
.yf_c00099{bottom:657.225167pt;}
.ye_c00099{bottom:684.025711pt;}
.yd_c00099{bottom:710.905611pt;}
.yc_c00099{bottom:737.706155pt;}
.yb_c00099{bottom:764.586055pt;}
.ya_c00099{bottom:799.146371pt;}
.y9_c00099{bottom:826.026271pt;}
.y8_c00099{bottom:852.906171pt;}
.y7_c00099{bottom:879.706715pt;}
.y6_c00099{bottom:906.586615pt;}
.y5_c00099{bottom:933.387159pt;}
.y4_c00099{bottom:960.267059pt;}
.y3_c00099{bottom:987.067603pt;}
.h5_c00099{height:34.967599pt;}
.h6_c00099{height:48.087599pt;}
.h2_c00099{height:55.645234pt;}
.h1_c00099{height:55.797187pt;}
.h4_c00099{height:55.801364pt;}
.h3_c00099{height:65.915602pt;}
.h0_c00099{height:1122.666667pt;}
.w0_c00099{width:793.333333pt;}
.x0_c00099{left:0.000000pt;}
.x2_c00099{left:73.520052pt;}
.x1_c00099{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_937da0ecc06421c80a528db9.woff2')format("woff");}.ff1_c00100{font-family:ff1_c00100;line-height:1.106934;font-style:normal;font-weight:normal;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_e34095032fbdd4b5025a95c4.woff2')format("woff");}.ff2_c00100{font-family:ff2_c00100;line-height:1.104492;font-style:normal;font-weight:normal;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_276ae858ac4f417b78d92f9d.woff2')format("woff");}.ff3_c00100{font-family:ff3_c00100;line-height:1.133301;font-style:normal;font-weight:normal;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_56eebb771dbc9cdea07f00ca.woff2')format("woff");}.ff4_c00100{font-family:ff4_c00100;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00100{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00100{vertical-align:-14.760000px;}
.v0_c00100{vertical-align:0.000000px;}
.v1_c00100{vertical-align:32.409126px;}
.ls10_c00100{letter-spacing:-0.707443px;}
.ls13_c00100{letter-spacing:-0.116933px;}
.ls12_c00100{letter-spacing:-0.093546px;}
.ls15_c00100{letter-spacing:-0.087700px;}
.ls11_c00100{letter-spacing:-0.076006px;}
.lsf_c00100{letter-spacing:-0.075619px;}
.ls7_c00100{letter-spacing:-0.063018px;}
.lse_c00100{letter-spacing:-0.049014px;}
.lsd_c00100{letter-spacing:-0.042012px;}
.ls16_c00100{letter-spacing:-0.040926px;}
.lsa_c00100{letter-spacing:-0.028008px;}
.lsc_c00100{letter-spacing:-0.021006px;}
.ls9_c00100{letter-spacing:-0.014004px;}
.lsb_c00100{letter-spacing:-0.007002px;}
.ls8_c00100{letter-spacing:0.000000px;}
.ls3_c00100{letter-spacing:0.007002px;}
.ls2_c00100{letter-spacing:0.014004px;}
.ls6_c00100{letter-spacing:0.021006px;}
.ls4_c00100{letter-spacing:0.023281px;}
.ls5_c00100{letter-spacing:0.028008px;}
.ls0_c00100{letter-spacing:0.035010px;}
.ls14_c00100{letter-spacing:0.046773px;}
.ls1_c00100{letter-spacing:0.056016px;}
.sc__c00100{text-shadow:none;}
.sc0_c00100{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00100{-webkit-text-stroke:0px transparent;}
.sc0_c00100{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00100{word-spacing:-12.967628px;}
.ws1_c00100{word-spacing:-10.397640px;}
.ws4_c00100{word-spacing:-0.406116px;}
.ws27_c00100{word-spacing:-0.304025px;}
.ws24_c00100{word-spacing:-0.035080px;}
.ws1f_c00100{word-spacing:-0.014004px;}
.ws2_c00100{word-spacing:0.000000px;}
.ws10_c00100{word-spacing:0.007002px;}
.ws13_c00100{word-spacing:0.028008px;}
.ws26_c00100{word-spacing:0.052620px;}
.ws25_c00100{word-spacing:0.099393px;}
.ws22_c00100{word-spacing:0.105240px;}
.ws23_c00100{word-spacing:0.128626px;}
.ws5_c00100{word-spacing:0.672192px;}
.ws15_c00100{word-spacing:0.679194px;}
.ws16_c00100{word-spacing:0.735210px;}
.wsd_c00100{word-spacing:1.050300px;}
.wsc_c00100{word-spacing:1.442412px;}
.wse_c00100{word-spacing:2.156616px;}
.ws1e_c00100{word-spacing:5.776650px;}
.ws14_c00100{word-spacing:6.133752px;}
.wsa_c00100{word-spacing:6.476850px;}
.ws19_c00100{word-spacing:7.520148px;}
.ws1a_c00100{word-spacing:7.555158px;}
.ws1c_c00100{word-spacing:7.870248px;}
.ws1d_c00100{word-spacing:7.954272px;}
.ws11_c00100{word-spacing:9.340668px;}
.ws12_c00100{word-spacing:9.704772px;}
.ws1b_c00100{word-spacing:11.175192px;}
.ws8_c00100{word-spacing:12.239496px;}
.ws9_c00100{word-spacing:12.253500px;}
.ws7_c00100{word-spacing:12.932694px;}
.ws6_c00100{word-spacing:13.247784px;}
.ws3_c00100{word-spacing:17.280936px;}
.wsf_c00100{word-spacing:19.423548px;}
.ws17_c00100{word-spacing:22.644468px;}
.ws18_c00100{word-spacing:22.672476px;}
.wsb_c00100{word-spacing:34.512858px;}
.ws21_c00100{word-spacing:36.447954px;}
.ws20_c00100{word-spacing:37.079391px;}
._2_c00100{margin-left:-11.161188px;}
._4_c00100{margin-left:-2.711178px;}
._1_c00100{margin-left:-1.106316px;}
._0_c00100{width:1.162332px;}
._5_c00100{width:2.176274px;}
._3_c00100{width:5.930694px;}
.fc0_c00100{color:rgb(0,0,0);}
.fs2_c00100{font-size:37.809600px;}
.fs1_c00100{font-size:46.562400px;}
.fs3_c00100{font-size:58.466400px;}
.fs0_c00100{font-size:70.020000px;}
.y0_c00100{bottom:0.000000px;}
.y2_c00100{bottom:109.740968px;}
.y1_c00100{bottom:129.810450px;}
.y25_c00100{bottom:149.429548px;}
.y24_c00100{bottom:167.250107px;}
.y23_c00100{bottom:188.940450px;}
.y22_c00100{bottom:203.069548px;}
.y21_c00100{bottom:221.069891px;}
.y20_c00100{bottom:242.580450px;}
.y1f_c00100{bottom:257.248965px;}
.y1e_c00100{bottom:295.229563px;}
.y1d_c00100{bottom:325.469451px;}
.y1c_c00100{bottom:355.620063px;}
.y1b_c00100{bottom:385.859950px;}
.y1a_c00100{bottom:416.010562px;}
.y19_c00100{bottom:446.248866px;}
.y18_c00100{bottom:476.399478px;}
.y17_c00100{bottom:506.639365px;}
.y16_c00100{bottom:536.789977px;}
.y15_c00100{bottom:567.029865px;}
.y14_c00100{bottom:597.089451px;}
.y13_c00100{bottom:627.329338px;}
.y12_c00100{bottom:657.479950px;}
.y11_c00100{bottom:687.719838px;}
.y10_c00100{bottom:717.868169px;}
.yf_c00100{bottom:748.108056px;}
.ye_c00100{bottom:778.258668px;}
.yd_c00100{bottom:808.498556px;}
.yc_c00100{bottom:838.649168px;}
.yb_c00100{bottom:868.889055px;}
.ya_c00100{bottom:899.039667px;}
.y9_c00100{bottom:929.279555px;}
.y8_c00100{bottom:959.519442px;}
.y7_c00100{bottom:989.670054px;}
.y6_c00100{bottom:1019.909942px;}
.y5_c00100{bottom:1050.060553px;}
.y4_c00100{bottom:1080.300441px;}
.y3_c00100{bottom:1110.451053px;}
.h6_c00100{height:39.338549px;}
.h7_c00100{height:54.098549px;}
.h2_c00100{height:62.600889px;}
.h1_c00100{height:62.771836px;}
.h5_c00100{height:62.777776px;}
.h4_c00100{height:73.788800px;}
.h3_c00100{height:74.151590px;}
.h0_c00100{height:1263.000000px;}
.w0_c00100{width:892.500000px;}
.x0_c00100{left:0.000000px;}
.x2_c00100{left:82.710059px;}
.x1_c00100{left:431.730000px;}
@media print{
.v2_c00100{vertical-align:-13.120000pt;}
.v0_c00100{vertical-align:0.000000pt;}
.v1_c00100{vertical-align:28.808112pt;}
.ls10_c00100{letter-spacing:-0.628839pt;}
.ls13_c00100{letter-spacing:-0.103940pt;}
.ls12_c00100{letter-spacing:-0.083152pt;}
.ls15_c00100{letter-spacing:-0.077955pt;}
.ls11_c00100{letter-spacing:-0.067561pt;}
.lsf_c00100{letter-spacing:-0.067217pt;}
.ls7_c00100{letter-spacing:-0.056016pt;}
.lse_c00100{letter-spacing:-0.043568pt;}
.lsd_c00100{letter-spacing:-0.037344pt;}
.ls16_c00100{letter-spacing:-0.036379pt;}
.lsa_c00100{letter-spacing:-0.024896pt;}
.lsc_c00100{letter-spacing:-0.018672pt;}
.ls9_c00100{letter-spacing:-0.012448pt;}
.lsb_c00100{letter-spacing:-0.006224pt;}
.ls8_c00100{letter-spacing:0.000000pt;}
.ls3_c00100{letter-spacing:0.006224pt;}
.ls2_c00100{letter-spacing:0.012448pt;}
.ls6_c00100{letter-spacing:0.018672pt;}
.ls4_c00100{letter-spacing:0.020694pt;}
.ls5_c00100{letter-spacing:0.024896pt;}
.ls0_c00100{letter-spacing:0.031120pt;}
.ls14_c00100{letter-spacing:0.041576pt;}
.ls1_c00100{letter-spacing:0.049792pt;}
.ws0_c00100{word-spacing:-11.526781pt;}
.ws1_c00100{word-spacing:-9.242347pt;}
.ws4_c00100{word-spacing:-0.360992pt;}
.ws27_c00100{word-spacing:-0.270245pt;}
.ws24_c00100{word-spacing:-0.031182pt;}
.ws1f_c00100{word-spacing:-0.012448pt;}
.ws2_c00100{word-spacing:0.000000pt;}
.ws10_c00100{word-spacing:0.006224pt;}
.ws13_c00100{word-spacing:0.024896pt;}
.ws26_c00100{word-spacing:0.046773pt;}
.ws25_c00100{word-spacing:0.088349pt;}
.ws22_c00100{word-spacing:0.093546pt;}
.ws23_c00100{word-spacing:0.114334pt;}
.ws5_c00100{word-spacing:0.597504pt;}
.ws15_c00100{word-spacing:0.603728pt;}
.ws16_c00100{word-spacing:0.653520pt;}
.wsd_c00100{word-spacing:0.933600pt;}
.wsc_c00100{word-spacing:1.282144pt;}
.wse_c00100{word-spacing:1.916992pt;}
.ws1e_c00100{word-spacing:5.134800pt;}
.ws14_c00100{word-spacing:5.452224pt;}
.wsa_c00100{word-spacing:5.757200pt;}
.ws19_c00100{word-spacing:6.684576pt;}
.ws1a_c00100{word-spacing:6.715696pt;}
.ws1c_c00100{word-spacing:6.995776pt;}
.ws1d_c00100{word-spacing:7.070464pt;}
.ws11_c00100{word-spacing:8.302816pt;}
.ws12_c00100{word-spacing:8.626464pt;}
.ws1b_c00100{word-spacing:9.933504pt;}
.ws8_c00100{word-spacing:10.879552pt;}
.ws9_c00100{word-spacing:10.892000pt;}
.ws7_c00100{word-spacing:11.495728pt;}
.ws6_c00100{word-spacing:11.775808pt;}
.ws3_c00100{word-spacing:15.360832pt;}
.wsf_c00100{word-spacing:17.265376pt;}
.ws17_c00100{word-spacing:20.128416pt;}
.ws18_c00100{word-spacing:20.153312pt;}
.wsb_c00100{word-spacing:30.678096pt;}
.ws21_c00100{word-spacing:32.398181pt;}
.ws20_c00100{word-spacing:32.959459pt;}
._2_c00100{margin-left:-9.921056pt;}
._4_c00100{margin-left:-2.409936pt;}
._1_c00100{margin-left:-0.983392pt;}
._0_c00100{width:1.033184pt;}
._5_c00100{width:1.934466pt;}
._3_c00100{width:5.271728pt;}
.fs2_c00100{font-size:33.608533pt;}
.fs1_c00100{font-size:41.388800pt;}
.fs3_c00100{font-size:51.970133pt;}
.fs0_c00100{font-size:62.240000pt;}
.y0_c00100{bottom:0.000000pt;}
.y2_c00100{bottom:97.547527pt;}
.y1_c00100{bottom:115.387067pt;}
.y25_c00100{bottom:132.826265pt;}
.y24_c00100{bottom:148.666762pt;}
.y23_c00100{bottom:167.947067pt;}
.y22_c00100{bottom:180.506265pt;}
.y21_c00100{bottom:196.506570pt;}
.y20_c00100{bottom:215.627067pt;}
.y1f_c00100{bottom:228.665747pt;}
.y1e_c00100{bottom:262.426279pt;}
.y1d_c00100{bottom:289.306179pt;}
.y1c_c00100{bottom:316.106723pt;}
.y1b_c00100{bottom:342.986623pt;}
.y1a_c00100{bottom:369.787167pt;}
.y19_c00100{bottom:396.665659pt;}
.y18_c00100{bottom:423.466203pt;}
.y17_c00100{bottom:450.346103pt;}
.y16_c00100{bottom:477.146647pt;}
.y15_c00100{bottom:504.026547pt;}
.y14_c00100{bottom:530.746179pt;}
.y13_c00100{bottom:557.626079pt;}
.y12_c00100{bottom:584.426623pt;}
.y11_c00100{bottom:611.306523pt;}
.y10_c00100{bottom:638.105039pt;}
.yf_c00100{bottom:664.984939pt;}
.ye_c00100{bottom:691.785483pt;}
.yd_c00100{bottom:718.665383pt;}
.yc_c00100{bottom:745.465927pt;}
.yb_c00100{bottom:772.345827pt;}
.ya_c00100{bottom:799.146371pt;}
.y9_c00100{bottom:826.026271pt;}
.y8_c00100{bottom:852.906171pt;}
.y7_c00100{bottom:879.706715pt;}
.y6_c00100{bottom:906.586615pt;}
.y5_c00100{bottom:933.387159pt;}
.y4_c00100{bottom:960.267059pt;}
.y3_c00100{bottom:987.067603pt;}
.h6_c00100{height:34.967599pt;}
.h7_c00100{height:48.087599pt;}
.h2_c00100{height:55.645234pt;}
.h1_c00100{height:55.797187pt;}
.h5_c00100{height:55.802467pt;}
.h4_c00100{height:65.590045pt;}
.h3_c00100{height:65.912524pt;}
.h0_c00100{height:1122.666667pt;}
.w0_c00100{width:793.333333pt;}
.x0_c00100{left:0.000000pt;}
.x2_c00100{left:73.520052pt;}
.x1_c00100{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fba083c789cf6570e87e041b.woff2')format("woff");}.ff1_c00101{font-family:ff1_c00101;line-height:1.106934;font-style:normal;font-weight:normal;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_96314b1e9d4a1780afd6482a.woff2')format("woff");}.ff2_c00101{font-family:ff2_c00101;line-height:1.104492;font-style:normal;font-weight:normal;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_459b63ac491a9d1505aae7b8.woff2')format("woff");}.ff3_c00101{font-family:ff3_c00101;line-height:1.133301;font-style:normal;font-weight:normal;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_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff4_c00101{font-family:ff4_c00101;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00101;src:url('chunks/assets/font_d54cdde169e342482e3d3f01.woff2')format("woff");}.ff5_c00101{font-family:ff5_c00101;line-height:1.133301;font-style:normal;font-weight:normal;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_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff6_c00101{font-family:ff6_c00101;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00101{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00101{vertical-align:-14.760000px;}
.v0_c00101{vertical-align:0.000000px;}
.v1_c00101{vertical-align:32.036868px;}
.ls17_c00101{letter-spacing:-0.467731px;}
.ls1c_c00101{letter-spacing:-0.339105px;}
.ls14_c00101{letter-spacing:-0.268945px;}
.ls13_c00101{letter-spacing:-0.198786px;}
.ls1b_c00101{letter-spacing:-0.187092px;}
.ls18_c00101{letter-spacing:-0.140319px;}
.ls19_c00101{letter-spacing:-0.099393px;}
.ls1a_c00101{letter-spacing:-0.081853px;}
.ls10_c00101{letter-spacing:-0.075619px;}
.ls8_c00101{letter-spacing:-0.063018px;}
.ls15_c00101{letter-spacing:-0.052620px;}
.lse_c00101{letter-spacing:-0.049014px;}
.lsa_c00101{letter-spacing:-0.035010px;}
.lsf_c00101{letter-spacing:-0.028008px;}
.lsc_c00101{letter-spacing:-0.021006px;}
.lsb_c00101{letter-spacing:-0.014004px;}
.ls16_c00101{letter-spacing:-0.011693px;}
.lsd_c00101{letter-spacing:-0.007002px;}
.ls9_c00101{letter-spacing:0.000000px;}
.ls1_c00101{letter-spacing:0.007002px;}
.ls6_c00101{letter-spacing:0.011693px;}
.ls2_c00101{letter-spacing:0.014004px;}
.ls3_c00101{letter-spacing:0.021006px;}
.ls0_c00101{letter-spacing:0.023281px;}
.ls4_c00101{letter-spacing:0.084024px;}
.ls5_c00101{letter-spacing:0.099393px;}
.ls7_c00101{letter-spacing:0.362492px;}
.ls11_c00101{letter-spacing:0.444345px;}
.ls12_c00101{letter-spacing:25.573203px;}
.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:-58.466400px;}
.ws1_c00101{word-spacing:-19.465560px;}
.ws4_c00101{word-spacing:-16.206886px;}
.ws0_c00101{word-spacing:-12.967628px;}
.ws2_c00101{word-spacing:-10.397640px;}
.ws31_c00101{word-spacing:-0.707443px;}
.ws23_c00101{word-spacing:-0.432651px;}
.ws17_c00101{word-spacing:-0.028008px;}
.wsf_c00101{word-spacing:-0.007002px;}
.ws5_c00101{word-spacing:0.000000px;}
.wsc_c00101{word-spacing:0.007002px;}
.ws1d_c00101{word-spacing:0.014004px;}
.ws30_c00101{word-spacing:0.350798px;}
.ws11_c00101{word-spacing:1.085310px;}
.ws12_c00101{word-spacing:1.113318px;}
.ws2d_c00101{word-spacing:1.911851px;}
.ws2c_c00101{word-spacing:1.952778px;}
.ws18_c00101{word-spacing:2.492712px;}
.ws6_c00101{word-spacing:2.506716px;}
.ws7_c00101{word-spacing:2.541726px;}
.ws20_c00101{word-spacing:2.877822px;}
.ws1e_c00101{word-spacing:3.213918px;}
.ws10_c00101{word-spacing:3.220920px;}
.wsd_c00101{word-spacing:3.248928px;}
.ws22_c00101{word-spacing:3.935124px;}
.ws21_c00101{word-spacing:3.970134px;}
.ws14_c00101{word-spacing:6.126750px;}
.ws1f_c00101{word-spacing:7.555158px;}
.ws8_c00101{word-spacing:8.283366px;}
.ws15_c00101{word-spacing:8.626464px;}
.ws16_c00101{word-spacing:8.640468px;}
.ws1a_c00101{word-spacing:8.983566px;}
.ws19_c00101{word-spacing:9.361674px;}
.ws2f_c00101{word-spacing:10.635038px;}
.ws2e_c00101{word-spacing:10.640885px;}
.ws25_c00101{word-spacing:11.447721px;}
.ws27_c00101{word-spacing:13.955930px;}
.ws2a_c00101{word-spacing:14.067016px;}
.ws26_c00101{word-spacing:14.324268px;}
.ws28_c00101{word-spacing:14.464587px;}
.ws29_c00101{word-spacing:14.762766px;}
.ws2b_c00101{word-spacing:14.879699px;}
.ws1b_c00101{word-spacing:15.082308px;}
.ws1c_c00101{word-spacing:15.103314px;}
.wsa_c00101{word-spacing:16.223634px;}
.ws9_c00101{word-spacing:16.559730px;}
.wsb_c00101{word-spacing:22.686480px;}
.wse_c00101{word-spacing:24.829092px;}
.ws24_c00101{word-spacing:25.771989px;}
.ws13_c00101{word-spacing:29.527434px;}
._5_c00101{margin-left:-26.720269px;}
._4_c00101{margin-left:-25.571779px;}
._6_c00101{margin-left:-24.547193px;}
._3_c00101{margin-left:-2.706408px;}
._1_c00101{margin-left:-1.106316px;}
._0_c00101{width:1.169334px;}
._2_c00101{width:5.930694px;}
._7_c00101{width:10.214080px;}
.fc0_c00101{color:rgb(0,0,0);}
.fs2_c00101{font-size:37.809600px;}
.fs1_c00101{font-size:46.562400px;}
.fs3_c00101{font-size:58.466400px;}
.fs0_c00101{font-size:70.020000px;}
.y0_c00101{bottom:0.000000px;}
.y2_c00101{bottom:109.740968px;}
.y1_c00101{bottom:129.810450px;}
.y25_c00101{bottom:149.428088px;}
.y24_c00101{bottom:167.248647px;}
.y23_c00101{bottom:185.248990px;}
.y22_c00101{bottom:203.069548px;}
.y21_c00101{bottom:221.069891px;}
.y20_c00101{bottom:242.580450px;}
.y1f_c00101{bottom:260.400450px;}
.y1e_c00101{bottom:275.159740px;}
.y1d_c00101{bottom:300.629516px;}
.y1c_c00101{bottom:330.780127px;}
.y1b_c00101{bottom:361.020015px;}
.y1a_c00101{bottom:391.170627px;}
.y19_c00101{bottom:441.836292px;}
.y18_c00101{bottom:472.076179px;}
.y17_c00101{bottom:502.226791px;}
.y16_c00101{bottom:532.466679px;}
.y15_c00101{bottom:562.617291px;}
.y14_c00101{bottom:592.767903px;}
.y13_c00101{bottom:622.918515px;}
.y12_c00101{bottom:653.158402px;}
.y11_c00101{bottom:683.309014px;}
.y10_c00101{bottom:713.548902px;}
.yf_c00101{bottom:743.699514px;}
.ye_c00101{bottom:773.939401px;}
.yd_c00101{bottom:804.090013px;}
.yc_c00101{bottom:834.329901px;}
.yb_c00101{bottom:866.011233px;}
.ya_c00101{bottom:896.161845px;}
.y9_c00101{bottom:926.401733px;}
.y8_c00101{bottom:957.991256px;}
.y7_c00101{bottom:989.671805px;}
.y6_c00101{bottom:1019.911692px;}
.y5_c00101{bottom:1050.062304px;}
.y4_c00101{bottom:1080.302192px;}
.y3_c00101{bottom:1110.361778px;}
.h6_c00101{height:39.338549px;}
.h7_c00101{height:54.098549px;}
.h2_c00101{height:62.600889px;}
.h1_c00101{height:62.771836px;}
.h5_c00101{height:62.774674px;}
.h3_c00101{height:73.779332px;}
.h4_c00101{height:74.159696px;}
.h0_c00101{height:1263.000000px;}
.w0_c00101{width:892.500000px;}
.x0_c00101{left:0.000000px;}
.x2_c00101{left:82.710059px;}
.x3_c00101{left:84.419726px;}
.x1_c00101{left:431.730000px;}
@media print{
.v2_c00101{vertical-align:-13.120000pt;}
.v0_c00101{vertical-align:0.000000pt;}
.v1_c00101{vertical-align:28.477216pt;}
.ls17_c00101{letter-spacing:-0.415761pt;}
.ls1c_c00101{letter-spacing:-0.301427pt;}
.ls14_c00101{letter-spacing:-0.239063pt;}
.ls13_c00101{letter-spacing:-0.176698pt;}
.ls1b_c00101{letter-spacing:-0.166304pt;}
.ls18_c00101{letter-spacing:-0.124728pt;}
.ls19_c00101{letter-spacing:-0.088349pt;}
.ls1a_c00101{letter-spacing:-0.072758pt;}
.ls10_c00101{letter-spacing:-0.067217pt;}
.ls8_c00101{letter-spacing:-0.056016pt;}
.ls15_c00101{letter-spacing:-0.046773pt;}
.lse_c00101{letter-spacing:-0.043568pt;}
.lsa_c00101{letter-spacing:-0.031120pt;}
.lsf_c00101{letter-spacing:-0.024896pt;}
.lsc_c00101{letter-spacing:-0.018672pt;}
.lsb_c00101{letter-spacing:-0.012448pt;}
.ls16_c00101{letter-spacing:-0.010394pt;}
.lsd_c00101{letter-spacing:-0.006224pt;}
.ls9_c00101{letter-spacing:0.000000pt;}
.ls1_c00101{letter-spacing:0.006224pt;}
.ls6_c00101{letter-spacing:0.010394pt;}
.ls2_c00101{letter-spacing:0.012448pt;}
.ls3_c00101{letter-spacing:0.018672pt;}
.ls0_c00101{letter-spacing:0.020694pt;}
.ls4_c00101{letter-spacing:0.074688pt;}
.ls5_c00101{letter-spacing:0.088349pt;}
.ls7_c00101{letter-spacing:0.322215pt;}
.ls11_c00101{letter-spacing:0.394973pt;}
.ls12_c00101{letter-spacing:22.731736pt;}
.ws3_c00101{word-spacing:-51.970133pt;}
.ws1_c00101{word-spacing:-17.302720pt;}
.ws4_c00101{word-spacing:-14.406121pt;}
.ws0_c00101{word-spacing:-11.526781pt;}
.ws2_c00101{word-spacing:-9.242347pt;}
.ws31_c00101{word-spacing:-0.628839pt;}
.ws23_c00101{word-spacing:-0.384579pt;}
.ws17_c00101{word-spacing:-0.024896pt;}
.wsf_c00101{word-spacing:-0.006224pt;}
.ws5_c00101{word-spacing:0.000000pt;}
.wsc_c00101{word-spacing:0.006224pt;}
.ws1d_c00101{word-spacing:0.012448pt;}
.ws30_c00101{word-spacing:0.311821pt;}
.ws11_c00101{word-spacing:0.964720pt;}
.ws12_c00101{word-spacing:0.989616pt;}
.ws2d_c00101{word-spacing:1.699423pt;}
.ws2c_c00101{word-spacing:1.735802pt;}
.ws18_c00101{word-spacing:2.215744pt;}
.ws6_c00101{word-spacing:2.228192pt;}
.ws7_c00101{word-spacing:2.259312pt;}
.ws20_c00101{word-spacing:2.558064pt;}
.ws1e_c00101{word-spacing:2.856816pt;}
.ws10_c00101{word-spacing:2.863040pt;}
.wsd_c00101{word-spacing:2.887936pt;}
.ws22_c00101{word-spacing:3.497888pt;}
.ws21_c00101{word-spacing:3.529008pt;}
.ws14_c00101{word-spacing:5.446000pt;}
.ws1f_c00101{word-spacing:6.715696pt;}
.ws8_c00101{word-spacing:7.362992pt;}
.ws15_c00101{word-spacing:7.667968pt;}
.ws16_c00101{word-spacing:7.680416pt;}
.ws1a_c00101{word-spacing:7.985392pt;}
.ws19_c00101{word-spacing:8.321488pt;}
.ws2f_c00101{word-spacing:9.453367pt;}
.ws2e_c00101{word-spacing:9.458564pt;}
.ws25_c00101{word-spacing:10.175752pt;}
.ws27_c00101{word-spacing:12.405271pt;}
.ws2a_c00101{word-spacing:12.504014pt;}
.ws26_c00101{word-spacing:12.732683pt;}
.ws28_c00101{word-spacing:12.857411pt;}
.ws29_c00101{word-spacing:13.122459pt;}
.ws2b_c00101{word-spacing:13.226399pt;}
.ws1b_c00101{word-spacing:13.406496pt;}
.ws1c_c00101{word-spacing:13.425168pt;}
.wsa_c00101{word-spacing:14.421008pt;}
.ws9_c00101{word-spacing:14.719760pt;}
.wsb_c00101{word-spacing:20.165760pt;}
.wse_c00101{word-spacing:22.070304pt;}
.ws24_c00101{word-spacing:22.908435pt;}
.ws13_c00101{word-spacing:26.246608pt;}
._5_c00101{margin-left:-23.751350pt;}
._4_c00101{margin-left:-22.730470pt;}
._6_c00101{margin-left:-21.819727pt;}
._3_c00101{margin-left:-2.405696pt;}
._1_c00101{margin-left:-0.983392pt;}
._0_c00101{width:1.039408pt;}
._2_c00101{width:5.271728pt;}
._7_c00101{width:9.079182pt;}
.fs2_c00101{font-size:33.608533pt;}
.fs1_c00101{font-size:41.388800pt;}
.fs3_c00101{font-size:51.970133pt;}
.fs0_c00101{font-size:62.240000pt;}
.y0_c00101{bottom:0.000000pt;}
.y2_c00101{bottom:97.547527pt;}
.y1_c00101{bottom:115.387067pt;}
.y25_c00101{bottom:132.824967pt;}
.y24_c00101{bottom:148.665464pt;}
.y23_c00101{bottom:164.665769pt;}
.y22_c00101{bottom:180.506265pt;}
.y21_c00101{bottom:196.506570pt;}
.y20_c00101{bottom:215.627067pt;}
.y1f_c00101{bottom:231.467067pt;}
.y1e_c00101{bottom:244.586436pt;}
.y1d_c00101{bottom:267.226236pt;}
.y1c_c00101{bottom:294.026780pt;}
.y1b_c00101{bottom:320.906680pt;}
.y1a_c00101{bottom:347.707224pt;}
.y19_c00101{bottom:392.743371pt;}
.y18_c00101{bottom:419.623271pt;}
.y17_c00101{bottom:446.423815pt;}
.y16_c00101{bottom:473.303715pt;}
.y15_c00101{bottom:500.104259pt;}
.y14_c00101{bottom:526.904803pt;}
.y13_c00101{bottom:553.705347pt;}
.y12_c00101{bottom:580.585247pt;}
.y11_c00101{bottom:607.385791pt;}
.y10_c00101{bottom:634.265691pt;}
.yf_c00101{bottom:661.066235pt;}
.ye_c00101{bottom:687.946135pt;}
.yd_c00101{bottom:714.746679pt;}
.yc_c00101{bottom:741.626579pt;}
.yb_c00101{bottom:769.787763pt;}
.ya_c00101{bottom:796.588307pt;}
.y9_c00101{bottom:823.468207pt;}
.y8_c00101{bottom:851.547783pt;}
.y7_c00101{bottom:879.708271pt;}
.y6_c00101{bottom:906.588171pt;}
.y5_c00101{bottom:933.388715pt;}
.y4_c00101{bottom:960.268615pt;}
.y3_c00101{bottom:986.988247pt;}
.h6_c00101{height:34.967599pt;}
.h7_c00101{height:48.087599pt;}
.h2_c00101{height:55.645234pt;}
.h1_c00101{height:55.797187pt;}
.h5_c00101{height:55.799710pt;}
.h3_c00101{height:65.581629pt;}
.h4_c00101{height:65.919730pt;}
.h0_c00101{height:1122.666667pt;}
.w0_c00101{width:793.333333pt;}
.x0_c00101{left:0.000000pt;}
.x2_c00101{left:73.520052pt;}
.x3_c00101{left:75.039756pt;}
.x1_c00101{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4e2c48fd81fba9f826755933.woff2')format("woff");}.ff1_c00102{font-family:ff1_c00102;line-height:1.106934;font-style:normal;font-weight:normal;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_3ad59185a9c7bf9719ad4e59.woff2')format("woff");}.ff2_c00102{font-family:ff2_c00102;line-height:1.104492;font-style:normal;font-weight:normal;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_71f4419739fd18aeb8508b0e.woff2')format("woff");}.ff3_c00102{font-family:ff3_c00102;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00102;src:url('chunks/assets/font_6a05fa75787c60a6eea2c0a8.woff2')format("woff");}.ff4_c00102{font-family:ff4_c00102;line-height:1.133301;font-style:normal;font-weight:normal;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_025e303eb85501fc5235dbef.woff2')format("woff");}.ff5_c00102{font-family:ff5_c00102;line-height:1.133301;font-style:normal;font-weight:normal;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_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff6_c00102{font-family:ff6_c00102;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00102{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00102{vertical-align:-32.040000px;}
.v3_c00102{vertical-align:-14.760000px;}
.v0_c00102{vertical-align:0.000000px;}
.v1_c00102{vertical-align:32.397588px;}
.lsf_c00102{letter-spacing:-0.075619px;}
.ls6_c00102{letter-spacing:-0.063018px;}
.lsc_c00102{letter-spacing:-0.056016px;}
.lsd_c00102{letter-spacing:-0.042012px;}
.lse_c00102{letter-spacing:-0.035010px;}
.lsb_c00102{letter-spacing:-0.021006px;}
.ls8_c00102{letter-spacing:-0.014004px;}
.ls14_c00102{letter-spacing:-0.011693px;}
.lsa_c00102{letter-spacing:-0.007002px;}
.ls7_c00102{letter-spacing:0.000000px;}
.ls2_c00102{letter-spacing:0.007002px;}
.ls4_c00102{letter-spacing:0.011693px;}
.ls3_c00102{letter-spacing:0.014004px;}
.ls5_c00102{letter-spacing:0.017540px;}
.ls0_c00102{letter-spacing:0.021006px;}
.ls1_c00102{letter-spacing:0.023281px;}
.ls12_c00102{letter-spacing:0.029233px;}
.ls13_c00102{letter-spacing:0.052620px;}
.ls9_c00102{letter-spacing:0.084024px;}
.ls10_c00102{letter-spacing:0.111086px;}
.ls11_c00102{letter-spacing:0.257252px;}
.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;}
}
.ws3_c00102{word-spacing:-58.466400px;}
.ws0_c00102{word-spacing:-19.549584px;}
.ws1_c00102{word-spacing:-12.967628px;}
.ws2_c00102{word-spacing:-10.397640px;}
.ws1d_c00102{word-spacing:-0.099393px;}
.wsc_c00102{word-spacing:-0.035010px;}
.ws1e_c00102{word-spacing:-0.005847px;}
.ws4_c00102{word-spacing:0.000000px;}
.ws17_c00102{word-spacing:0.021006px;}
.ws21_c00102{word-spacing:0.023387px;}
.ws1f_c00102{word-spacing:0.116933px;}
.ws20_c00102{word-spacing:0.701597px;}
.ws18_c00102{word-spacing:2.156616px;}
.ws5_c00102{word-spacing:2.842812px;}
.ws7_c00102{word-spacing:2.856816px;}
.ws6_c00102{word-spacing:2.877822px;}
.ws8_c00102{word-spacing:3.227922px;}
.ws9_c00102{word-spacing:3.241926px;}
.ws1a_c00102{word-spacing:4.327236px;}
.ws15_c00102{word-spacing:4.684338px;}
.ws16_c00102{word-spacing:6.140754px;}
.ws19_c00102{word-spacing:6.476850px;}
.ws14_c00102{word-spacing:6.483852px;}
.ws13_c00102{word-spacing:6.504858px;}
.wsa_c00102{word-spacing:6.833952px;}
.wsb_c00102{word-spacing:6.847956px;}
.wsd_c00102{word-spacing:7.562160px;}
.wsf_c00102{word-spacing:9.361674px;}
.ws11_c00102{word-spacing:10.432980px;}
.ws10_c00102{word-spacing:10.797084px;}
.ws1b_c00102{word-spacing:15.481422px;}
.ws1c_c00102{word-spacing:21.930264px;}
.wse_c00102{word-spacing:22.007286px;}
.ws12_c00102{word-spacing:33.882678px;}
._3_c00102{margin-left:-2.711304px;}
._1_c00102{margin-left:-1.015290px;}
._0_c00102{width:1.323378px;}
._2_c00102{width:5.930694px;}
.fc0_c00102{color:rgb(0,0,0);}
.fs2_c00102{font-size:37.809600px;}
.fs1_c00102{font-size:46.562400px;}
.fs3_c00102{font-size:58.466400px;}
.fs0_c00102{font-size:70.020000px;}
.y0_c00102{bottom:0.000000px;}
.y2_c00102{bottom:109.740968px;}
.y1_c00102{bottom:129.810450px;}
.y1f_c00102{bottom:149.429891px;}
.y1e_c00102{bottom:170.940450px;}
.y1d_c00102{bottom:188.940450px;}
.y1c_c00102{bottom:203.604312px;}
.y1b_c00102{bottom:242.754245px;}
.y1a_c00102{bottom:293.424218px;}
.y19_c00102{bottom:344.004915px;}
.y18_c00102{bottom:394.585613px;}
.y17_c00102{bottom:445.255586px;}
.y16_c00102{bottom:495.836283px;}
.y15_c00102{bottom:526.165446px;}
.y14_c00102{bottom:556.316058px;}
.y13_c00102{bottom:586.555946px;}
.y12_c00102{bottom:616.706558px;}
.y11_c00102{bottom:646.946445px;}
.y10_c00102{bottom:677.097057px;}
.yf_c00102{bottom:727.586728px;}
.ye_c00102{bottom:757.917642px;}
.yd_c00102{bottom:788.068254px;}
.yc_c00102{bottom:818.308142px;}
.yb_c00102{bottom:848.458754px;}
.ya_c00102{bottom:878.698641px;}
.y9_c00102{bottom:908.849253px;}
.y8_c00102{bottom:939.089140px;}
.y7_c00102{bottom:969.239753px;}
.y6_c00102{bottom:1019.820063px;}
.y5_c00102{bottom:1050.059951px;}
.y4_c00102{bottom:1080.299838px;}
.y3_c00102{bottom:1110.451053px;}
.h6_c00102{height:39.338549px;}
.h7_c00102{height:54.098549px;}
.h1_c00102{height:62.771836px;}
.h5_c00102{height:62.796388px;}
.h4_c00102{height:63.216299px;}
.h3_c00102{height:73.670334px;}
.h2_c00102{height:74.140052px;}
.h0_c00102{height:1263.000000px;}
.w0_c00102{width:892.500000px;}
.x0_c00102{left:0.000000px;}
.x2_c00102{left:82.710059px;}
.x1_c00102{left:431.730000px;}
@media print{
.v2_c00102{vertical-align:-28.480000pt;}
.v3_c00102{vertical-align:-13.120000pt;}
.v0_c00102{vertical-align:0.000000pt;}
.v1_c00102{vertical-align:28.797856pt;}
.lsf_c00102{letter-spacing:-0.067217pt;}
.ls6_c00102{letter-spacing:-0.056016pt;}
.lsc_c00102{letter-spacing:-0.049792pt;}
.lsd_c00102{letter-spacing:-0.037344pt;}
.lse_c00102{letter-spacing:-0.031120pt;}
.lsb_c00102{letter-spacing:-0.018672pt;}
.ls8_c00102{letter-spacing:-0.012448pt;}
.ls14_c00102{letter-spacing:-0.010394pt;}
.lsa_c00102{letter-spacing:-0.006224pt;}
.ls7_c00102{letter-spacing:0.000000pt;}
.ls2_c00102{letter-spacing:0.006224pt;}
.ls4_c00102{letter-spacing:0.010394pt;}
.ls3_c00102{letter-spacing:0.012448pt;}
.ls5_c00102{letter-spacing:0.015591pt;}
.ls0_c00102{letter-spacing:0.018672pt;}
.ls1_c00102{letter-spacing:0.020694pt;}
.ls12_c00102{letter-spacing:0.025985pt;}
.ls13_c00102{letter-spacing:0.046773pt;}
.ls9_c00102{letter-spacing:0.074688pt;}
.ls10_c00102{letter-spacing:0.098743pt;}
.ls11_c00102{letter-spacing:0.228669pt;}
.ws3_c00102{word-spacing:-51.970133pt;}
.ws0_c00102{word-spacing:-17.377408pt;}
.ws1_c00102{word-spacing:-11.526781pt;}
.ws2_c00102{word-spacing:-9.242347pt;}
.ws1d_c00102{word-spacing:-0.088349pt;}
.wsc_c00102{word-spacing:-0.031120pt;}
.ws1e_c00102{word-spacing:-0.005197pt;}
.ws4_c00102{word-spacing:0.000000pt;}
.ws17_c00102{word-spacing:0.018672pt;}
.ws21_c00102{word-spacing:0.020788pt;}
.ws1f_c00102{word-spacing:0.103940pt;}
.ws20_c00102{word-spacing:0.623642pt;}
.ws18_c00102{word-spacing:1.916992pt;}
.ws5_c00102{word-spacing:2.526944pt;}
.ws7_c00102{word-spacing:2.539392pt;}
.ws6_c00102{word-spacing:2.558064pt;}
.ws8_c00102{word-spacing:2.869264pt;}
.ws9_c00102{word-spacing:2.881712pt;}
.ws1a_c00102{word-spacing:3.846432pt;}
.ws15_c00102{word-spacing:4.163856pt;}
.ws16_c00102{word-spacing:5.458448pt;}
.ws19_c00102{word-spacing:5.757200pt;}
.ws14_c00102{word-spacing:5.763424pt;}
.ws13_c00102{word-spacing:5.782096pt;}
.wsa_c00102{word-spacing:6.074624pt;}
.wsb_c00102{word-spacing:6.087072pt;}
.wsd_c00102{word-spacing:6.721920pt;}
.wsf_c00102{word-spacing:8.321488pt;}
.ws11_c00102{word-spacing:9.273760pt;}
.ws10_c00102{word-spacing:9.597408pt;}
.ws1b_c00102{word-spacing:13.761264pt;}
.ws1c_c00102{word-spacing:19.493568pt;}
.wse_c00102{word-spacing:19.562032pt;}
.ws12_c00102{word-spacing:30.117936pt;}
._3_c00102{margin-left:-2.410048pt;}
._1_c00102{margin-left:-0.902480pt;}
._0_c00102{width:1.176336pt;}
._2_c00102{width:5.271728pt;}
.fs2_c00102{font-size:33.608533pt;}
.fs1_c00102{font-size:41.388800pt;}
.fs3_c00102{font-size:51.970133pt;}
.fs0_c00102{font-size:62.240000pt;}
.y0_c00102{bottom:0.000000pt;}
.y2_c00102{bottom:97.547527pt;}
.y1_c00102{bottom:115.387067pt;}
.y1f_c00102{bottom:132.826570pt;}
.y1e_c00102{bottom:151.947067pt;}
.y1d_c00102{bottom:167.947067pt;}
.y1c_c00102{bottom:180.981611pt;}
.y1b_c00102{bottom:215.781551pt;}
.y1a_c00102{bottom:260.821527pt;}
.y19_c00102{bottom:305.782147pt;}
.y18_c00102{bottom:350.742767pt;}
.y17_c00102{bottom:395.782743pt;}
.y16_c00102{bottom:440.743363pt;}
.y15_c00102{bottom:467.702619pt;}
.y14_c00102{bottom:494.503163pt;}
.y13_c00102{bottom:521.383063pt;}
.y12_c00102{bottom:548.183607pt;}
.y11_c00102{bottom:575.063507pt;}
.y10_c00102{bottom:601.864051pt;}
.yf_c00102{bottom:646.743759pt;}
.ye_c00102{bottom:673.704571pt;}
.yd_c00102{bottom:700.505115pt;}
.yc_c00102{bottom:727.385015pt;}
.yb_c00102{bottom:754.185559pt;}
.ya_c00102{bottom:781.065459pt;}
.y9_c00102{bottom:807.866003pt;}
.y8_c00102{bottom:834.745903pt;}
.y7_c00102{bottom:861.546447pt;}
.y6_c00102{bottom:906.506723pt;}
.y5_c00102{bottom:933.386623pt;}
.y4_c00102{bottom:960.266523pt;}
.y3_c00102{bottom:987.067603pt;}
.h6_c00102{height:34.967599pt;}
.h7_c00102{height:48.087599pt;}
.h1_c00102{height:55.797187pt;}
.h5_c00102{height:55.819011pt;}
.h4_c00102{height:56.192266pt;}
.h3_c00102{height:65.484742pt;}
.h2_c00102{height:65.902269pt;}
.h0_c00102{height:1122.666667pt;}
.w0_c00102{width:793.333333pt;}
.x0_c00102{left:0.000000pt;}
.x2_c00102{left:73.520052pt;}
.x1_c00102{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2ed4fbf3f4ed6cddcd1be3ab.woff2')format("woff");}.ff1_c00103{font-family:ff1_c00103;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00103;src:url('chunks/assets/font_3761348ec60faf725755ccd4.woff2')format("woff");}.ff2_c00103{font-family:ff2_c00103;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00103;src:url('chunks/assets/font_a50b575516f933fea20c820f.woff2')format("woff");}.ff3_c00103{font-family:ff3_c00103;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00103;src:url('chunks/assets/font_7e2e3ea324bd10f2e29e65b7.woff2')format("woff");}.ff4_c00103{font-family:ff4_c00103;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00103;src:url('chunks/assets/font_813e76e8fb6a4bc9a8082e4f.woff2')format("woff");}.ff5_c00103{font-family:ff5_c00103;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00103{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00103{vertical-align:-14.760600px;}
.v0_c00103{vertical-align:0.000000px;}
.v1_c00103{vertical-align:32.036454px;}
.ls8_c00103{letter-spacing:-0.151943px;}
.ls10_c00103{letter-spacing:-0.075619px;}
.ls6_c00103{letter-spacing:-0.063018px;}
.lsf_c00103{letter-spacing:-0.056016px;}
.ls12_c00103{letter-spacing:-0.052620px;}
.lsb_c00103{letter-spacing:-0.042012px;}
.lse_c00103{letter-spacing:-0.035010px;}
.ls11_c00103{letter-spacing:-0.029233px;}
.ls9_c00103{letter-spacing:-0.028008px;}
.lsc_c00103{letter-spacing:-0.021006px;}
.ls14_c00103{letter-spacing:-0.017540px;}
.lsd_c00103{letter-spacing:-0.014004px;}
.lsa_c00103{letter-spacing:-0.007002px;}
.ls7_c00103{letter-spacing:0.000000px;}
.ls0_c00103{letter-spacing:0.007002px;}
.ls3_c00103{letter-spacing:0.014004px;}
.ls5_c00103{letter-spacing:0.023281px;}
.ls2_c00103{letter-spacing:0.035010px;}
.ls1_c00103{letter-spacing:0.042012px;}
.ls4_c00103{letter-spacing:0.084024px;}
.ls13_c00103{letter-spacing:0.461885px;}
.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;}
}
.ws2_c00103{word-spacing:-16.195193px;}
.ws0_c00103{word-spacing:-12.967628px;}
.ws1_c00103{word-spacing:-10.397640px;}
.ws15_c00103{word-spacing:-0.098028px;}
.wsa_c00103{word-spacing:-0.007002px;}
.ws3_c00103{word-spacing:0.000000px;}
.ws1f_c00103{word-spacing:0.029233px;}
.ws1c_c00103{word-spacing:0.040926px;}
.ws1d_c00103{word-spacing:0.064313px;}
.ws4_c00103{word-spacing:0.106360px;}
.wsf_c00103{word-spacing:0.357102px;}
.ws10_c00103{word-spacing:0.693198px;}
.ws11_c00103{word-spacing:0.721206px;}
.ws14_c00103{word-spacing:1.442412px;}
.ws7_c00103{word-spacing:1.456416px;}
.ws8_c00103{word-spacing:1.743498px;}
.ws9_c00103{word-spacing:2.114604px;}
.ws18_c00103{word-spacing:2.541726px;}
.ws12_c00103{word-spacing:5.370534px;}
.ws13_c00103{word-spacing:6.469848px;}
.ws6_c00103{word-spacing:6.819948px;}
.wsb_c00103{word-spacing:9.011574px;}
.ws5_c00103{word-spacing:10.811088px;}
.wsd_c00103{word-spacing:13.688910px;}
.wse_c00103{word-spacing:14.382108px;}
.ws19_c00103{word-spacing:15.481422px;}
.ws1a_c00103{word-spacing:15.831522px;}
.ws16_c00103{word-spacing:16.944840px;}
.ws17_c00103{word-spacing:16.951842px;}
.ws1b_c00103{word-spacing:17.280936px;}
.ws1e_c00103{word-spacing:19.709023px;}
.wsc_c00103{word-spacing:22.329378px;}
._3_c00103{margin-left:-2.707326px;}
._1_c00103{margin-left:-1.358388px;}
._0_c00103{width:1.218348px;}
._2_c00103{width:5.930694px;}
.fc0_c00103{color:rgb(0,0,0);}
.fs3_c00103{font-size:37.809600px;}
.fs2_c00103{font-size:46.562400px;}
.fs4_c00103{font-size:58.466400px;}
.fs0_c00103{font-size:70.020000px;}
.fs1_c00103{font-size:75.971400px;}
.y0_c00103{bottom:0.000000px;}
.y2_c00103{bottom:109.740968px;}
.y1_c00103{bottom:129.810450px;}
.y1d_c00103{bottom:149.429647px;}
.y1c_c00103{bottom:187.770450px;}
.y1b_c00103{bottom:205.590450px;}
.y1a_c00103{bottom:227.280600px;}
.y19_c00103{bottom:262.380409px;}
.y18_c00103{bottom:382.709779px;}
.y17_c00103{bottom:412.860391px;}
.y16_c00103{bottom:443.100279px;}
.y15_c00103{bottom:473.250891px;}
.y14_c00103{bottom:503.490778px;}
.y13_c00103{bottom:553.981336px;}
.y12_c00103{bottom:584.221224px;}
.y11_c00103{bottom:614.461112px;}
.y10_c00103{bottom:644.611724px;}
.yf_c00103{bottom:674.851611px;}
.ye_c00103{bottom:725.341283px;}
.yd_c00103{bottom:755.670446px;}
.yc_c00103{bottom:785.821058px;}
.yb_c00103{bottom:836.310729px;}
.ya_c00103{bottom:866.639892px;}
.y9_c00103{bottom:896.790504px;}
.y8_c00103{bottom:947.371202px;}
.y7_c00103{bottom:977.700364px;}
.y6_c00103{bottom:1007.850977px;}
.y5_c00103{bottom:1038.090864px;}
.y4_c00103{bottom:1068.150450px;}
.y3_c00103{bottom:1109.100450px;}
.h6_c00103{height:39.337949px;}
.h7_c00103{height:54.098549px;}
.h3_c00103{height:62.600889px;}
.h1_c00103{height:62.771836px;}
.h5_c00103{height:62.771998px;}
.h2_c00103{height:68.589413px;}
.h4_c00103{height:73.778918px;}
.h0_c00103{height:1263.000000px;}
.w0_c00103{width:892.500000px;}
.x0_c00103{left:0.000000px;}
.x2_c00103{left:82.710059px;}
.x1_c00103{left:431.730000px;}
@media print{
.v2_c00103{vertical-align:-13.120533pt;}
.v0_c00103{vertical-align:0.000000pt;}
.v1_c00103{vertical-align:28.476848pt;}
.ls8_c00103{letter-spacing:-0.135060pt;}
.ls10_c00103{letter-spacing:-0.067217pt;}
.ls6_c00103{letter-spacing:-0.056016pt;}
.lsf_c00103{letter-spacing:-0.049792pt;}
.ls12_c00103{letter-spacing:-0.046773pt;}
.lsb_c00103{letter-spacing:-0.037344pt;}
.lse_c00103{letter-spacing:-0.031120pt;}
.ls11_c00103{letter-spacing:-0.025985pt;}
.ls9_c00103{letter-spacing:-0.024896pt;}
.lsc_c00103{letter-spacing:-0.018672pt;}
.ls14_c00103{letter-spacing:-0.015591pt;}
.lsd_c00103{letter-spacing:-0.012448pt;}
.lsa_c00103{letter-spacing:-0.006224pt;}
.ls7_c00103{letter-spacing:0.000000pt;}
.ls0_c00103{letter-spacing:0.006224pt;}
.ls3_c00103{letter-spacing:0.012448pt;}
.ls5_c00103{letter-spacing:0.020694pt;}
.ls2_c00103{letter-spacing:0.031120pt;}
.ls1_c00103{letter-spacing:0.037344pt;}
.ls4_c00103{letter-spacing:0.074688pt;}
.ls13_c00103{letter-spacing:0.410564pt;}
.ws2_c00103{word-spacing:-14.395727pt;}
.ws0_c00103{word-spacing:-11.526781pt;}
.ws1_c00103{word-spacing:-9.242347pt;}
.ws15_c00103{word-spacing:-0.087136pt;}
.wsa_c00103{word-spacing:-0.006224pt;}
.ws3_c00103{word-spacing:0.000000pt;}
.ws1f_c00103{word-spacing:0.025985pt;}
.ws1c_c00103{word-spacing:0.036379pt;}
.ws1d_c00103{word-spacing:0.057167pt;}
.ws4_c00103{word-spacing:0.094542pt;}
.wsf_c00103{word-spacing:0.317424pt;}
.ws10_c00103{word-spacing:0.616176pt;}
.ws11_c00103{word-spacing:0.641072pt;}
.ws14_c00103{word-spacing:1.282144pt;}
.ws7_c00103{word-spacing:1.294592pt;}
.ws8_c00103{word-spacing:1.549776pt;}
.ws9_c00103{word-spacing:1.879648pt;}
.ws18_c00103{word-spacing:2.259312pt;}
.ws12_c00103{word-spacing:4.773808pt;}
.ws13_c00103{word-spacing:5.750976pt;}
.ws6_c00103{word-spacing:6.062176pt;}
.wsb_c00103{word-spacing:8.010288pt;}
.ws5_c00103{word-spacing:9.609856pt;}
.wsd_c00103{word-spacing:12.167920pt;}
.wse_c00103{word-spacing:12.784096pt;}
.ws19_c00103{word-spacing:13.761264pt;}
.ws1a_c00103{word-spacing:14.072464pt;}
.ws16_c00103{word-spacing:15.062080pt;}
.ws17_c00103{word-spacing:15.068304pt;}
.ws1b_c00103{word-spacing:15.360832pt;}
.ws1e_c00103{word-spacing:17.519132pt;}
.wsc_c00103{word-spacing:19.848336pt;}
._3_c00103{margin-left:-2.406512pt;}
._1_c00103{margin-left:-1.207456pt;}
._0_c00103{width:1.082976pt;}
._2_c00103{width:5.271728pt;}
.fs3_c00103{font-size:33.608533pt;}
.fs2_c00103{font-size:41.388800pt;}
.fs4_c00103{font-size:51.970133pt;}
.fs0_c00103{font-size:62.240000pt;}
.fs1_c00103{font-size:67.530133pt;}
.y0_c00103{bottom:0.000000pt;}
.y2_c00103{bottom:97.547527pt;}
.y1_c00103{bottom:115.387067pt;}
.y1d_c00103{bottom:132.826352pt;}
.y1c_c00103{bottom:166.907067pt;}
.y1b_c00103{bottom:182.747067pt;}
.y1a_c00103{bottom:202.027200pt;}
.y19_c00103{bottom:233.227031pt;}
.y18_c00103{bottom:340.186471pt;}
.y17_c00103{bottom:366.987015pt;}
.y16_c00103{bottom:393.866915pt;}
.y15_c00103{bottom:420.667459pt;}
.y14_c00103{bottom:447.547359pt;}
.y13_c00103{bottom:492.427855pt;}
.y12_c00103{bottom:519.307755pt;}
.y11_c00103{bottom:546.187655pt;}
.y10_c00103{bottom:572.988199pt;}
.yf_c00103{bottom:599.868099pt;}
.ye_c00103{bottom:644.747807pt;}
.yd_c00103{bottom:671.707063pt;}
.yc_c00103{bottom:698.507607pt;}
.yb_c00103{bottom:743.387315pt;}
.ya_c00103{bottom:770.346571pt;}
.y9_c00103{bottom:797.147115pt;}
.y8_c00103{bottom:842.107735pt;}
.y7_c00103{bottom:869.066991pt;}
.y6_c00103{bottom:895.867535pt;}
.y5_c00103{bottom:922.747435pt;}
.y4_c00103{bottom:949.467067pt;}
.y3_c00103{bottom:985.867067pt;}
.h6_c00103{height:34.967066pt;}
.h7_c00103{height:48.087599pt;}
.h3_c00103{height:55.645234pt;}
.h1_c00103{height:55.797187pt;}
.h5_c00103{height:55.797332pt;}
.h2_c00103{height:60.968367pt;}
.h4_c00103{height:65.581260pt;}
.h0_c00103{height:1122.666667pt;}
.w0_c00103{width:793.333333pt;}
.x0_c00103{left:0.000000pt;}
.x2_c00103{left:73.520052pt;}
.x1_c00103{left:383.760000pt;}
}





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

.ir_c00104:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00104{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00104;src:url('chunks/assets/font_7058fe4089756b442ff711df.woff2')format("woff");}.ff1_c00104{font-family:ff1_c00104;line-height:1.106934;font-style:normal;font-weight:normal;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_1e547f520477eda250c6a386.woff2')format("woff");}.ff2_c00104{font-family:ff2_c00104;line-height:1.104492;font-style:normal;font-weight:normal;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_f552fe46a57a983e3c13c50c.woff2')format("woff");}.ff3_c00104{font-family:ff3_c00104;line-height:1.133301;font-style:normal;font-weight:normal;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_f50a9714413d5c4ccb3c81c3.woff2')format("woff");}.ff4_c00104{font-family:ff4_c00104;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00104{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00104{vertical-align:-14.760000px;}
.v0_c00104{vertical-align:0.000000px;}
.v1_c00104{vertical-align:32.042034px;}
.lsf_c00104{letter-spacing:-0.140319px;}
.ls10_c00104{letter-spacing:-0.122779px;}
.lse_c00104{letter-spacing:-0.075619px;}
.lsd_c00104{letter-spacing:-0.070020px;}
.ls5_c00104{letter-spacing:-0.063018px;}
.lsc_c00104{letter-spacing:-0.049014px;}
.lsb_c00104{letter-spacing:-0.042012px;}
.ls13_c00104{letter-spacing:-0.029233px;}
.ls8_c00104{letter-spacing:-0.028008px;}
.ls7_c00104{letter-spacing:-0.021006px;}
.lsa_c00104{letter-spacing:-0.014004px;}
.ls9_c00104{letter-spacing:-0.007002px;}
.ls6_c00104{letter-spacing:0.000000px;}
.ls0_c00104{letter-spacing:0.007002px;}
.ls1_c00104{letter-spacing:0.021006px;}
.ls4_c00104{letter-spacing:0.023281px;}
.ls3_c00104{letter-spacing:0.042012px;}
.ls11_c00104{letter-spacing:0.292332px;}
.ls2_c00104{letter-spacing:0.336096px;}
.ls12_c00104{letter-spacing:2.174950px;}
.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:-12.967628px;}
.ws1_c00104{word-spacing:-10.397640px;}
.ws7_c00104{word-spacing:-0.014004px;}
.ws2_c00104{word-spacing:0.000000px;}
.wsb_c00104{word-spacing:0.007002px;}
.ws23_c00104{word-spacing:0.035010px;}
.ws2c_c00104{word-spacing:0.040926px;}
.ws2a_c00104{word-spacing:0.134473px;}
.ws11_c00104{word-spacing:0.350100px;}
.ws29_c00104{word-spacing:0.514504px;}
.ws27_c00104{word-spacing:0.707202px;}
.ws28_c00104{word-spacing:1.092312px;}
.ws2b_c00104{word-spacing:1.520126px;}
.ws22_c00104{word-spacing:3.185910px;}
.ws21_c00104{word-spacing:3.234924px;}
.ws1c_c00104{word-spacing:3.578022px;}
.ws1d_c00104{word-spacing:3.613032px;}
.ws18_c00104{word-spacing:3.949128px;}
.ws1a_c00104{word-spacing:4.656330px;}
.ws19_c00104{word-spacing:4.691340px;}
.ws3_c00104{word-spacing:5.020434px;}
.ws4_c00104{word-spacing:5.048442px;}
.ws12_c00104{word-spacing:5.405544px;}
.ws20_c00104{word-spacing:5.454558px;}
.ws14_c00104{word-spacing:5.748642px;}
.ws10_c00104{word-spacing:5.755644px;}
.ws13_c00104{word-spacing:5.790654px;}
.ws24_c00104{word-spacing:6.112746px;}
.ws26_c00104{word-spacing:6.441840px;}
.ws25_c00104{word-spacing:6.462846px;}
.ws16_c00104{word-spacing:6.483852px;}
.ws15_c00104{word-spacing:6.511860px;}
.ws5_c00104{word-spacing:8.605458px;}
.ws6_c00104{word-spacing:8.619462px;}
.ws1f_c00104{word-spacing:9.718776px;}
.ws1b_c00104{word-spacing:10.082880px;}
.wsf_c00104{word-spacing:10.467990px;}
.wsd_c00104{word-spacing:11.518290px;}
.wse_c00104{word-spacing:11.882394px;}
.ws1e_c00104{word-spacing:11.889396px;}
.ws17_c00104{word-spacing:15.845526px;}
.wsc_c00104{word-spacing:17.631036px;}
.wsa_c00104{word-spacing:30.605742px;}
.ws9_c00104{word-spacing:30.612744px;}
.ws8_c00104{word-spacing:39.218202px;}
._3_c00104{margin-left:-2.707488px;}
._1_c00104{margin-left:-1.015290px;}
._0_c00104{width:1.050300px;}
._2_c00104{width:5.930694px;}
.fc0_c00104{color:rgb(0,0,0);}
.fs2_c00104{font-size:37.809600px;}
.fs1_c00104{font-size:46.562400px;}
.fs3_c00104{font-size:58.466400px;}
.fs0_c00104{font-size:70.020000px;}
.y0_c00104{bottom:0.000000px;}
.y2_c00104{bottom:109.740968px;}
.y1_c00104{bottom:129.810450px;}
.y21_c00104{bottom:149.340387px;}
.y20_c00104{bottom:167.160946px;}
.y1f_c00104{bottom:188.940450px;}
.y1e_c00104{bottom:203.610288px;}
.y1d_c00104{bottom:243.659978px;}
.y1c_c00104{bottom:273.899865px;}
.y1b_c00104{bottom:304.050477px;}
.y1a_c00104{bottom:354.719942px;}
.y19_c00104{bottom:384.959829px;}
.y18_c00104{bottom:415.199717px;}
.y17_c00104{bottom:445.350329px;}
.y16_c00104{bottom:475.590216px;}
.y15_c00104{bottom:505.740828px;}
.y14_c00104{bottom:535.891440px;}
.y13_c00104{bottom:566.042052px;}
.y12_c00104{bottom:596.281940px;}
.y11_c00104{bottom:626.432552px;}
.y10_c00104{bottom:656.672439px;}
.yf_c00104{bottom:686.823051px;}
.ye_c00104{bottom:717.062939px;}
.yd_c00104{bottom:767.643636px;}
.yc_c00104{bottom:797.883524px;}
.yb_c00104{bottom:828.123411px;}
.ya_c00104{bottom:858.274023px;}
.y9_c00104{bottom:888.513911px;}
.y8_c00104{bottom:939.003582px;}
.y7_c00104{bottom:969.243470px;}
.y6_c00104{bottom:999.483357px;}
.y5_c00104{bottom:1049.973029px;}
.y4_c00104{bottom:1080.302192px;}
.y3_c00104{bottom:1110.361778px;}
.h5_c00104{height:39.338549px;}
.h6_c00104{height:54.098549px;}
.h2_c00104{height:62.600889px;}
.h1_c00104{height:62.771836px;}
.h4_c00104{height:62.772484px;}
.h3_c00104{height:73.670820px;}
.h0_c00104{height:1263.000000px;}
.w0_c00104{width:892.500000px;}
.x0_c00104{left:0.000000px;}
.x2_c00104{left:82.710059px;}
.x1_c00104{left:431.730000px;}
@media print{
.v2_c00104{vertical-align:-13.120000pt;}
.v0_c00104{vertical-align:0.000000pt;}
.v1_c00104{vertical-align:28.481808pt;}
.lsf_c00104{letter-spacing:-0.124728pt;}
.ls10_c00104{letter-spacing:-0.109137pt;}
.lse_c00104{letter-spacing:-0.067217pt;}
.lsd_c00104{letter-spacing:-0.062240pt;}
.ls5_c00104{letter-spacing:-0.056016pt;}
.lsc_c00104{letter-spacing:-0.043568pt;}
.lsb_c00104{letter-spacing:-0.037344pt;}
.ls13_c00104{letter-spacing:-0.025985pt;}
.ls8_c00104{letter-spacing:-0.024896pt;}
.ls7_c00104{letter-spacing:-0.018672pt;}
.lsa_c00104{letter-spacing:-0.012448pt;}
.ls9_c00104{letter-spacing:-0.006224pt;}
.ls6_c00104{letter-spacing:0.000000pt;}
.ls0_c00104{letter-spacing:0.006224pt;}
.ls1_c00104{letter-spacing:0.018672pt;}
.ls4_c00104{letter-spacing:0.020694pt;}
.ls3_c00104{letter-spacing:0.037344pt;}
.ls11_c00104{letter-spacing:0.259851pt;}
.ls2_c00104{letter-spacing:0.298752pt;}
.ls12_c00104{letter-spacing:1.933289pt;}
.ws0_c00104{word-spacing:-11.526781pt;}
.ws1_c00104{word-spacing:-9.242347pt;}
.ws7_c00104{word-spacing:-0.012448pt;}
.ws2_c00104{word-spacing:0.000000pt;}
.wsb_c00104{word-spacing:0.006224pt;}
.ws23_c00104{word-spacing:0.031120pt;}
.ws2c_c00104{word-spacing:0.036379pt;}
.ws2a_c00104{word-spacing:0.119531pt;}
.ws11_c00104{word-spacing:0.311200pt;}
.ws29_c00104{word-spacing:0.457337pt;}
.ws27_c00104{word-spacing:0.628624pt;}
.ws28_c00104{word-spacing:0.970944pt;}
.ws2b_c00104{word-spacing:1.351223pt;}
.ws22_c00104{word-spacing:2.831920pt;}
.ws21_c00104{word-spacing:2.875488pt;}
.ws1c_c00104{word-spacing:3.180464pt;}
.ws1d_c00104{word-spacing:3.211584pt;}
.ws18_c00104{word-spacing:3.510336pt;}
.ws1a_c00104{word-spacing:4.138960pt;}
.ws19_c00104{word-spacing:4.170080pt;}
.ws3_c00104{word-spacing:4.462608pt;}
.ws4_c00104{word-spacing:4.487504pt;}
.ws12_c00104{word-spacing:4.804928pt;}
.ws20_c00104{word-spacing:4.848496pt;}
.ws14_c00104{word-spacing:5.109904pt;}
.ws10_c00104{word-spacing:5.116128pt;}
.ws13_c00104{word-spacing:5.147248pt;}
.ws24_c00104{word-spacing:5.433552pt;}
.ws26_c00104{word-spacing:5.726080pt;}
.ws25_c00104{word-spacing:5.744752pt;}
.ws16_c00104{word-spacing:5.763424pt;}
.ws15_c00104{word-spacing:5.788320pt;}
.ws5_c00104{word-spacing:7.649296pt;}
.ws6_c00104{word-spacing:7.661744pt;}
.ws1f_c00104{word-spacing:8.638912pt;}
.ws1b_c00104{word-spacing:8.962560pt;}
.wsf_c00104{word-spacing:9.304880pt;}
.wsd_c00104{word-spacing:10.238480pt;}
.wse_c00104{word-spacing:10.562128pt;}
.ws1e_c00104{word-spacing:10.568352pt;}
.ws17_c00104{word-spacing:14.084912pt;}
.wsc_c00104{word-spacing:15.672032pt;}
.wsa_c00104{word-spacing:27.205104pt;}
.ws9_c00104{word-spacing:27.211328pt;}
.ws8_c00104{word-spacing:34.860624pt;}
._3_c00104{margin-left:-2.406656pt;}
._1_c00104{margin-left:-0.902480pt;}
._0_c00104{width:0.933600pt;}
._2_c00104{width:5.271728pt;}
.fs2_c00104{font-size:33.608533pt;}
.fs1_c00104{font-size:41.388800pt;}
.fs3_c00104{font-size:51.970133pt;}
.fs0_c00104{font-size:62.240000pt;}
.y0_c00104{bottom:0.000000pt;}
.y2_c00104{bottom:97.547527pt;}
.y1_c00104{bottom:115.387067pt;}
.y21_c00104{bottom:132.747011pt;}
.y20_c00104{bottom:148.587507pt;}
.y1f_c00104{bottom:167.947067pt;}
.y1e_c00104{bottom:180.986923pt;}
.y1d_c00104{bottom:216.586647pt;}
.y1c_c00104{bottom:243.466547pt;}
.y1b_c00104{bottom:270.267091pt;}
.y1a_c00104{bottom:315.306615pt;}
.y19_c00104{bottom:342.186515pt;}
.y18_c00104{bottom:369.066415pt;}
.y17_c00104{bottom:395.866959pt;}
.y16_c00104{bottom:422.746859pt;}
.y15_c00104{bottom:449.547403pt;}
.y14_c00104{bottom:476.347947pt;}
.y13_c00104{bottom:503.148491pt;}
.y12_c00104{bottom:530.028391pt;}
.y11_c00104{bottom:556.828935pt;}
.y10_c00104{bottom:583.708835pt;}
.yf_c00104{bottom:610.509379pt;}
.ye_c00104{bottom:637.389279pt;}
.yd_c00104{bottom:682.349899pt;}
.yc_c00104{bottom:709.229799pt;}
.yb_c00104{bottom:736.109699pt;}
.ya_c00104{bottom:762.910243pt;}
.y9_c00104{bottom:789.790143pt;}
.y8_c00104{bottom:834.669851pt;}
.y7_c00104{bottom:861.549751pt;}
.y6_c00104{bottom:888.429651pt;}
.y5_c00104{bottom:933.309359pt;}
.y4_c00104{bottom:960.268615pt;}
.y3_c00104{bottom:986.988247pt;}
.h5_c00104{height:34.967599pt;}
.h6_c00104{height:48.087599pt;}
.h2_c00104{height:55.645234pt;}
.h1_c00104{height:55.797187pt;}
.h4_c00104{height:55.797763pt;}
.h3_c00104{height:65.485174pt;}
.h0_c00104{height:1122.666667pt;}
.w0_c00104{width:793.333333pt;}
.x0_c00104{left:0.000000pt;}
.x2_c00104{left:73.520052pt;}
.x1_c00104{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_73c3f0629662917a86980668.woff2')format("woff");}.ff1_c00105{font-family:ff1_c00105;line-height:1.106934;font-style:normal;font-weight:normal;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_95ec4afe684ca722fff686c1.woff2')format("woff");}.ff2_c00105{font-family:ff2_c00105;line-height:1.104492;font-style:normal;font-weight:normal;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_1c132a8b6adc858238f58c56.woff2')format("woff");}.ff3_c00105{font-family:ff3_c00105;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00105;src:url('chunks/assets/font_26de51d3053cc0e793e3644f.woff2')format("woff");}.ff4_c00105{font-family:ff4_c00105;line-height:1.133301;font-style:normal;font-weight:normal;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_7dbe3bde8b5a3da55a876127.woff2')format("woff");}.ff5_c00105{font-family:ff5_c00105;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00105;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff6_c00105{font-family:ff6_c00105;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00105{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00105{vertical-align:-14.760000px;}
.v0_c00105{vertical-align:0.000000px;}
.v1_c00105{vertical-align:32.407614px;}
.ls1c_c00105{letter-spacing:-0.602204px;}
.lse_c00105{letter-spacing:-0.434124px;}
.ls1e_c00105{letter-spacing:-0.321565px;}
.ls17_c00105{letter-spacing:-0.286485px;}
.ls12_c00105{letter-spacing:-0.268945px;}
.ls1b_c00105{letter-spacing:-0.169553px;}
.ls1a_c00105{letter-spacing:-0.134473px;}
.ls1d_c00105{letter-spacing:-0.128626px;}
.ls16_c00105{letter-spacing:-0.122779px;}
.ls19_c00105{letter-spacing:-0.099393px;}
.ls21_c00105{letter-spacing:-0.076006px;}
.ls10_c00105{letter-spacing:-0.075619px;}
.ls22_c00105{letter-spacing:-0.064313px;}
.ls6_c00105{letter-spacing:-0.063018px;}
.lsf_c00105{letter-spacing:-0.049014px;}
.lsa_c00105{letter-spacing:-0.042012px;}
.lsb_c00105{letter-spacing:-0.035010px;}
.ls13_c00105{letter-spacing:-0.029233px;}
.lsd_c00105{letter-spacing:-0.028008px;}
.ls9_c00105{letter-spacing:-0.021006px;}
.ls8_c00105{letter-spacing:-0.014004px;}
.lsc_c00105{letter-spacing:-0.007002px;}
.ls7_c00105{letter-spacing:0.000000px;}
.ls23_c00105{letter-spacing:0.005847px;}
.ls0_c00105{letter-spacing:0.007002px;}
.ls15_c00105{letter-spacing:0.011693px;}
.ls3_c00105{letter-spacing:0.014004px;}
.ls1_c00105{letter-spacing:0.021006px;}
.ls2_c00105{letter-spacing:0.023281px;}
.ls5_c00105{letter-spacing:0.056016px;}
.ls4_c00105{letter-spacing:0.084024px;}
.ls20_c00105{letter-spacing:0.146166px;}
.ls11_c00105{letter-spacing:0.403418px;}
.ls18_c00105{letter-spacing:0.450191px;}
.ls1f_c00105{letter-spacing:0.532044px;}
.ls14_c00105{letter-spacing:38.535204px;}
.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;}
}
.ws1_c00105{word-spacing:-70.020000px;}
.ws4_c00105{word-spacing:-58.466400px;}
.ws2_c00105{word-spacing:-19.031436px;}
.ws0_c00105{word-spacing:-12.967628px;}
.ws3_c00105{word-spacing:-10.397640px;}
.ws23_c00105{word-spacing:-0.029233px;}
.ws5_c00105{word-spacing:0.000000px;}
.ws34_c00105{word-spacing:0.005847px;}
.ws13_c00105{word-spacing:0.007002px;}
.ws25_c00105{word-spacing:0.040926px;}
.ws33_c00105{word-spacing:0.076006px;}
.ws30_c00105{word-spacing:0.140319px;}
.ws24_c00105{word-spacing:0.280639px;}
.wsa_c00105{word-spacing:0.364104px;}
.ws14_c00105{word-spacing:0.371106px;}
.ws20_c00105{word-spacing:0.378108px;}
.ws1f_c00105{word-spacing:1.442412px;}
.ws18_c00105{word-spacing:2.849814px;}
.ws19_c00105{word-spacing:2.926836px;}
.ws17_c00105{word-spacing:3.234924px;}
.ws15_c00105{word-spacing:3.585024px;}
.ws2c_c00105{word-spacing:5.297056px;}
.wse_c00105{word-spacing:5.398542px;}
.wsf_c00105{word-spacing:5.419548px;}
.ws1e_c00105{word-spacing:7.919262px;}
.ws12_c00105{word-spacing:7.940268px;}
.wsd_c00105{word-spacing:8.283366px;}
.wsc_c00105{word-spacing:8.304372px;}
.ws10_c00105{word-spacing:8.990568px;}
.ws11_c00105{word-spacing:9.389682px;}
.ws9_c00105{word-spacing:10.404972px;}
.ws8_c00105{word-spacing:10.439982px;}
.ws22_c00105{word-spacing:11.553300px;}
.ws2e_c00105{word-spacing:12.213631px;}
.ws2f_c00105{word-spacing:12.283791px;}
.ws2d_c00105{word-spacing:12.383184px;}
.ws16_c00105{word-spacing:14.004000px;}
.ws21_c00105{word-spacing:15.103314px;}
.ws2a_c00105{word-spacing:20.305381px;}
.ws2b_c00105{word-spacing:20.702952px;}
.ws31_c00105{word-spacing:20.720492px;}
.ws32_c00105{word-spacing:20.749725px;}
.ws6_c00105{word-spacing:23.736780px;}
.ws7_c00105{word-spacing:23.743782px;}
.ws1b_c00105{word-spacing:33.385536px;}
.ws1a_c00105{word-spacing:33.840666px;}
.wsb_c00105{word-spacing:36.389394px;}
.ws29_c00105{word-spacing:38.272105px;}
.ws26_c00105{word-spacing:38.523511px;}
.ws28_c00105{word-spacing:38.821690px;}
.ws27_c00105{word-spacing:39.014629px;}
.ws1d_c00105{word-spacing:46.010142px;}
.ws1c_c00105{word-spacing:46.423260px;}
._8_c00105{margin-left:-39.629800px;}
._7_c00105{margin-left:-38.457774px;}
._3_c00105{margin-left:-2.905830px;}
._0_c00105{margin-left:-1.295370px;}
._1_c00105{width:1.183338px;}
._6_c00105{width:5.930694px;}
._5_c00105{width:11.203200px;}
._9_c00105{width:38.923652px;}
._4_c00105{width:45.625032px;}
._2_c00105{width:49.945266px;}
.fc0_c00105{color:rgb(0,0,0);}
.fs2_c00105{font-size:37.809600px;}
.fs1_c00105{font-size:46.562400px;}
.fs3_c00105{font-size:58.466400px;}
.fs0_c00105{font-size:70.020000px;}
.y0_c00105{bottom:0.000000px;}
.y2_c00105{bottom:109.740968px;}
.y1_c00105{bottom:129.810450px;}
.y25_c00105{bottom:149.429891px;}
.y24_c00105{bottom:170.940450px;}
.y23_c00105{bottom:185.248431px;}
.y22_c00105{bottom:203.068990px;}
.y21_c00105{bottom:221.069333px;}
.y20_c00105{bottom:238.889891px;}
.y1f_c00105{bottom:260.400450px;}
.y1e_c00105{bottom:278.400450px;}
.y1d_c00105{bottom:293.070049px;}
.y1c_c00105{bottom:373.440756px;}
.y1b_c00105{bottom:403.591368px;}
.y1a_c00105{bottom:433.831255px;}
.y19_c00105{bottom:463.981867px;}
.y18_c00105{bottom:494.221755px;}
.y17_c00105{bottom:524.281341px;}
.y16_c00105{bottom:555.690562px;}
.y15_c00105{bottom:585.929338px;}
.y14_c00105{bottom:616.079950px;}
.y13_c00105{bottom:646.319838px;}
.y12_c00105{bottom:676.468996px;}
.y11_c00105{bottom:706.708884px;}
.y10_c00105{bottom:736.768470px;}
.yf_c00105{bottom:768.268717px;}
.ye_c00105{bottom:798.419330px;}
.yd_c00105{bottom:818.579838px;}
.yc_c00105{bottom:848.728546px;}
.yb_c00105{bottom:878.968434px;}
.ya_c00105{bottom:909.119046px;}
.y9_c00105{bottom:939.358934px;}
.y8_c00105{bottom:969.509546px;}
.y7_c00105{bottom:999.749433px;}
.y6_c00105{bottom:1019.909942px;}
.y5_c00105{bottom:1050.060553px;}
.y4_c00105{bottom:1080.300441px;}
.y3_c00105{bottom:1110.451053px;}
.h7_c00105{height:39.338549px;}
.h8_c00105{height:54.098549px;}
.h2_c00105{height:62.600889px;}
.h1_c00105{height:62.771836px;}
.h6_c00105{height:62.773438px;}
.h5_c00105{height:73.673232px;}
.h4_c00105{height:74.034600px;}
.h3_c00105{height:74.036400px;}
.h0_c00105{height:1263.000000px;}
.w0_c00105{width:892.500000px;}
.x0_c00105{left:0.000000px;}
.x2_c00105{left:82.710059px;}
.x3_c00105{left:108.989456px;}
.x4_c00105{left:135.269712px;}
.x1_c00105{left:431.730000px;}
@media print{
.v2_c00105{vertical-align:-13.120000pt;}
.v0_c00105{vertical-align:0.000000pt;}
.v1_c00105{vertical-align:28.806768pt;}
.ls1c_c00105{letter-spacing:-0.535292pt;}
.lse_c00105{letter-spacing:-0.385888pt;}
.ls1e_c00105{letter-spacing:-0.285836pt;}
.ls17_c00105{letter-spacing:-0.254654pt;}
.ls12_c00105{letter-spacing:-0.239063pt;}
.ls1b_c00105{letter-spacing:-0.150713pt;}
.ls1a_c00105{letter-spacing:-0.119531pt;}
.ls1d_c00105{letter-spacing:-0.114334pt;}
.ls16_c00105{letter-spacing:-0.109137pt;}
.ls19_c00105{letter-spacing:-0.088349pt;}
.ls21_c00105{letter-spacing:-0.067561pt;}
.ls10_c00105{letter-spacing:-0.067217pt;}
.ls22_c00105{letter-spacing:-0.057167pt;}
.ls6_c00105{letter-spacing:-0.056016pt;}
.lsf_c00105{letter-spacing:-0.043568pt;}
.lsa_c00105{letter-spacing:-0.037344pt;}
.lsb_c00105{letter-spacing:-0.031120pt;}
.ls13_c00105{letter-spacing:-0.025985pt;}
.lsd_c00105{letter-spacing:-0.024896pt;}
.ls9_c00105{letter-spacing:-0.018672pt;}
.ls8_c00105{letter-spacing:-0.012448pt;}
.lsc_c00105{letter-spacing:-0.006224pt;}
.ls7_c00105{letter-spacing:0.000000pt;}
.ls23_c00105{letter-spacing:0.005197pt;}
.ls0_c00105{letter-spacing:0.006224pt;}
.ls15_c00105{letter-spacing:0.010394pt;}
.ls3_c00105{letter-spacing:0.012448pt;}
.ls1_c00105{letter-spacing:0.018672pt;}
.ls2_c00105{letter-spacing:0.020694pt;}
.ls5_c00105{letter-spacing:0.049792pt;}
.ls4_c00105{letter-spacing:0.074688pt;}
.ls20_c00105{letter-spacing:0.129925pt;}
.ls11_c00105{letter-spacing:0.358594pt;}
.ls18_c00105{letter-spacing:0.400170pt;}
.ls1f_c00105{letter-spacing:0.472928pt;}
.ls14_c00105{letter-spacing:34.253515pt;}
.ws1_c00105{word-spacing:-62.240000pt;}
.ws4_c00105{word-spacing:-51.970133pt;}
.ws2_c00105{word-spacing:-16.916832pt;}
.ws0_c00105{word-spacing:-11.526781pt;}
.ws3_c00105{word-spacing:-9.242347pt;}
.ws23_c00105{word-spacing:-0.025985pt;}
.ws5_c00105{word-spacing:0.000000pt;}
.ws34_c00105{word-spacing:0.005197pt;}
.ws13_c00105{word-spacing:0.006224pt;}
.ws25_c00105{word-spacing:0.036379pt;}
.ws33_c00105{word-spacing:0.067561pt;}
.ws30_c00105{word-spacing:0.124728pt;}
.ws24_c00105{word-spacing:0.249457pt;}
.wsa_c00105{word-spacing:0.323648pt;}
.ws14_c00105{word-spacing:0.329872pt;}
.ws20_c00105{word-spacing:0.336096pt;}
.ws1f_c00105{word-spacing:1.282144pt;}
.ws18_c00105{word-spacing:2.533168pt;}
.ws19_c00105{word-spacing:2.601632pt;}
.ws17_c00105{word-spacing:2.875488pt;}
.ws15_c00105{word-spacing:3.186688pt;}
.ws2c_c00105{word-spacing:4.708494pt;}
.wse_c00105{word-spacing:4.798704pt;}
.wsf_c00105{word-spacing:4.817376pt;}
.ws1e_c00105{word-spacing:7.039344pt;}
.ws12_c00105{word-spacing:7.058016pt;}
.wsd_c00105{word-spacing:7.362992pt;}
.wsc_c00105{word-spacing:7.381664pt;}
.ws10_c00105{word-spacing:7.991616pt;}
.ws11_c00105{word-spacing:8.346384pt;}
.ws9_c00105{word-spacing:9.248864pt;}
.ws8_c00105{word-spacing:9.279984pt;}
.ws22_c00105{word-spacing:10.269600pt;}
.ws2e_c00105{word-spacing:10.856561pt;}
.ws2f_c00105{word-spacing:10.918925pt;}
.ws2d_c00105{word-spacing:11.007274pt;}
.ws16_c00105{word-spacing:12.448000pt;}
.ws21_c00105{word-spacing:13.425168pt;}
.ws2a_c00105{word-spacing:18.049227pt;}
.ws2b_c00105{word-spacing:18.402624pt;}
.ws31_c00105{word-spacing:18.418215pt;}
.ws32_c00105{word-spacing:18.444200pt;}
.ws6_c00105{word-spacing:21.099360pt;}
.ws7_c00105{word-spacing:21.105584pt;}
.ws1b_c00105{word-spacing:29.676032pt;}
.ws1a_c00105{word-spacing:30.080592pt;}
.wsb_c00105{word-spacing:32.346128pt;}
.ws29_c00105{word-spacing:34.019649pt;}
.ws26_c00105{word-spacing:34.243121pt;}
.ws28_c00105{word-spacing:34.508169pt;}
.ws27_c00105{word-spacing:34.679670pt;}
.ws1d_c00105{word-spacing:40.897904pt;}
.ws1c_c00105{word-spacing:41.265120pt;}
._8_c00105{margin-left:-35.226489pt;}
._7_c00105{margin-left:-34.184688pt;}
._3_c00105{margin-left:-2.582960pt;}
._0_c00105{margin-left:-1.151440pt;}
._1_c00105{width:1.051856pt;}
._6_c00105{width:5.271728pt;}
._5_c00105{width:9.958400pt;}
._9_c00105{width:34.598802pt;}
._4_c00105{width:40.555584pt;}
._2_c00105{width:44.395792pt;}
.fs2_c00105{font-size:33.608533pt;}
.fs1_c00105{font-size:41.388800pt;}
.fs3_c00105{font-size:51.970133pt;}
.fs0_c00105{font-size:62.240000pt;}
.y0_c00105{bottom:0.000000pt;}
.y2_c00105{bottom:97.547527pt;}
.y1_c00105{bottom:115.387067pt;}
.y25_c00105{bottom:132.826570pt;}
.y24_c00105{bottom:151.947067pt;}
.y23_c00105{bottom:164.665272pt;}
.y22_c00105{bottom:180.505769pt;}
.y21_c00105{bottom:196.506073pt;}
.y20_c00105{bottom:212.346570pt;}
.y1f_c00105{bottom:231.467067pt;}
.y1e_c00105{bottom:247.467067pt;}
.y1d_c00105{bottom:260.506711pt;}
.y1c_c00105{bottom:331.947339pt;}
.y1b_c00105{bottom:358.747883pt;}
.y1a_c00105{bottom:385.627783pt;}
.y19_c00105{bottom:412.428327pt;}
.y18_c00105{bottom:439.308227pt;}
.y17_c00105{bottom:466.027859pt;}
.y16_c00105{bottom:493.947167pt;}
.y15_c00105{bottom:520.826079pt;}
.y14_c00105{bottom:547.626623pt;}
.y13_c00105{bottom:574.506523pt;}
.y12_c00105{bottom:601.305775pt;}
.y11_c00105{bottom:628.185675pt;}
.y10_c00105{bottom:654.905307pt;}
.yf_c00105{bottom:682.905527pt;}
.ye_c00105{bottom:709.706071pt;}
.yd_c00105{bottom:727.626523pt;}
.yc_c00105{bottom:754.425375pt;}
.yb_c00105{bottom:781.305275pt;}
.ya_c00105{bottom:808.105819pt;}
.y9_c00105{bottom:834.985719pt;}
.y8_c00105{bottom:861.786263pt;}
.y7_c00105{bottom:888.666163pt;}
.y6_c00105{bottom:906.586615pt;}
.y5_c00105{bottom:933.387159pt;}
.y4_c00105{bottom:960.267059pt;}
.y3_c00105{bottom:987.067603pt;}
.h7_c00105{height:34.967599pt;}
.h8_c00105{height:48.087599pt;}
.h2_c00105{height:55.645234pt;}
.h1_c00105{height:55.797187pt;}
.h6_c00105{height:55.798612pt;}
.h5_c00105{height:65.487318pt;}
.h4_c00105{height:65.808534pt;}
.h3_c00105{height:65.810134pt;}
.h0_c00105{height:1122.666667pt;}
.w0_c00105{width:793.333333pt;}
.x0_c00105{left:0.000000pt;}
.x2_c00105{left:73.520052pt;}
.x3_c00105{left:96.879516pt;}
.x4_c00105{left:120.239744pt;}
.x1_c00105{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_015fca339ea245574855eea7.woff2')format("woff");}.ff1_c00106{font-family:ff1_c00106;line-height:1.106934;font-style:normal;font-weight:normal;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_253159c3e8be2b7fc41d52bd.woff2')format("woff");}.ff2_c00106{font-family:ff2_c00106;line-height:1.104492;font-style:normal;font-weight:normal;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_15c3a9d7ae55b87e362880df.woff2')format("woff");}.ff3_c00106{font-family:ff3_c00106;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00106;src:url('chunks/assets/font_3106489caffe586da5f3e183.woff2')format("woff");}.ff4_c00106{font-family:ff4_c00106;line-height:1.133301;font-style:normal;font-weight:normal;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_4fa3cce629a32866fdc82a5e.woff2')format("woff");}.ff5_c00106{font-family:ff5_c00106;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00106{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00106{vertical-align:-32.040000px;}
.v3_c00106{vertical-align:-14.760000px;}
.v0_c00106{vertical-align:0.000000px;}
.v1_c00106{vertical-align:32.040036px;}
.ls1a_c00106{letter-spacing:-0.707443px;}
.ls16_c00106{letter-spacing:-0.344952px;}
.ls13_c00106{letter-spacing:-0.274792px;}
.ls15_c00106{letter-spacing:-0.146166px;}
.ls10_c00106{letter-spacing:-0.075619px;}
.ls7_c00106{letter-spacing:-0.063018px;}
.lse_c00106{letter-spacing:-0.042012px;}
.lsd_c00106{letter-spacing:-0.035010px;}
.lsa_c00106{letter-spacing:-0.028008px;}
.lsc_c00106{letter-spacing:-0.021006px;}
.lsb_c00106{letter-spacing:-0.014004px;}
.ls9_c00106{letter-spacing:-0.007002px;}
.ls8_c00106{letter-spacing:0.000000px;}
.ls14_c00106{letter-spacing:0.005847px;}
.ls4_c00106{letter-spacing:0.007002px;}
.ls2_c00106{letter-spacing:0.014004px;}
.ls6_c00106{letter-spacing:0.017540px;}
.ls3_c00106{letter-spacing:0.021006px;}
.ls0_c00106{letter-spacing:0.023281px;}
.ls5_c00106{letter-spacing:0.035010px;}
.ls12_c00106{letter-spacing:0.040926px;}
.ls1_c00106{letter-spacing:0.084024px;}
.ls11_c00106{letter-spacing:0.333258px;}
.lsf_c00106{letter-spacing:0.343098px;}
.ls19_c00106{letter-spacing:0.350798px;}
.ls18_c00106{letter-spacing:0.356645px;}
.ls17_c00106{letter-spacing:10.453792px;}
.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;}
}
.ws1_c00106{word-spacing:-70.020000px;}
.ws0_c00106{word-spacing:-12.967628px;}
.ws2_c00106{word-spacing:-10.397640px;}
.ws27_c00106{word-spacing:-0.339105px;}
.ws16_c00106{word-spacing:-0.014004px;}
.ws3_c00106{word-spacing:0.000000px;}
.ws21_c00106{word-spacing:0.005847px;}
.ws12_c00106{word-spacing:0.007002px;}
.ws26_c00106{word-spacing:0.011693px;}
.wsa_c00106{word-spacing:0.014004px;}
.ws1d_c00106{word-spacing:0.028008px;}
.ws11_c00106{word-spacing:0.308088px;}
.wsd_c00106{word-spacing:0.329094px;}
.ws13_c00106{word-spacing:0.350100px;}
.ws24_c00106{word-spacing:0.356645px;}
.ws6_c00106{word-spacing:0.371106px;}
.wsb_c00106{word-spacing:0.378108px;}
.ws28_c00106{word-spacing:0.719137px;}
.wsc_c00106{word-spacing:1.078308px;}
.ws1c_c00106{word-spacing:1.435410px;}
.ws1e_c00106{word-spacing:1.479200px;}
.ws1f_c00106{word-spacing:1.771532px;}
.ws1b_c00106{word-spacing:1.792512px;}
.ws20_c00106{word-spacing:2.087250px;}
.ws14_c00106{word-spacing:3.613032px;}
.ws15_c00106{word-spacing:3.963132px;}
.ws9_c00106{word-spacing:4.684338px;}
.ws1a_c00106{word-spacing:5.769648px;}
.ws8_c00106{word-spacing:6.119748px;}
.ws7_c00106{word-spacing:6.133752px;}
.ws18_c00106{word-spacing:8.976564px;}
.ws19_c00106{word-spacing:9.389682px;}
.ws25_c00106{word-spacing:10.453792px;}
.ws22_c00106{word-spacing:10.792897px;}
.ws23_c00106{word-spacing:10.956603px;}
.ws10_c00106{word-spacing:12.575592px;}
.wse_c00106{word-spacing:15.803514px;}
.ws5_c00106{word-spacing:15.824520px;}
.wsf_c00106{word-spacing:15.838524px;}
.ws4_c00106{word-spacing:16.195626px;}
.ws17_c00106{word-spacing:27.363816px;}
._7_c00106{margin-left:-11.018595px;}
._8_c00106{margin-left:-9.865603px;}
._3_c00106{margin-left:-6.119748px;}
._5_c00106{margin-left:-2.712204px;}
._0_c00106{margin-left:-1.204344px;}
._1_c00106{width:1.085310px;}
._9_c00106{width:2.161648px;}
._4_c00106{width:5.930694px;}
._6_c00106{width:11.453412px;}
._2_c00106{width:47.424546px;}
.fc0_c00106{color:rgb(0,0,0);}
.fs2_c00106{font-size:37.809600px;}
.fs1_c00106{font-size:46.562400px;}
.fs3_c00106{font-size:58.466400px;}
.fs0_c00106{font-size:70.020000px;}
.y0_c00106{bottom:0.000000px;}
.y2_c00106{bottom:109.740968px;}
.y1_c00106{bottom:129.810450px;}
.y22_c00106{bottom:153.120600px;}
.y21_c00106{bottom:170.940450px;}
.y20_c00106{bottom:185.249891px;}
.y1f_c00106{bottom:206.760450px;}
.y1e_c00106{bottom:221.069891px;}
.y1d_c00106{bottom:242.580450px;}
.y1c_c00106{bottom:257.251107px;}
.y1b_c00106{bottom:323.221314px;}
.y1a_c00106{bottom:353.550477px;}
.y19_c00106{bottom:404.215671px;}
.y18_c00106{bottom:434.366283px;}
.y17_c00106{bottom:464.516895px;}
.y16_c00106{bottom:494.756783px;}
.y15_c00106{bottom:524.907395px;}
.y14_c00106{bottom:555.147282px;}
.y13_c00106{bottom:585.297894px;}
.y12_c00106{bottom:615.537781px;}
.y11_c00106{bottom:645.688394px;}
.y10_c00106{bottom:675.928281px;}
.yf_c00106{bottom:706.078893px;}
.ye_c00106{bottom:736.318781px;}
.yd_c00106{bottom:766.469393px;}
.yc_c00106{bottom:796.709280px;}
.yb_c00106{bottom:826.859892px;}
.ya_c00106{bottom:877.440590px;}
.y9_c00106{bottom:928.110563px;}
.y8_c00106{bottom:958.350117px;}
.y7_c00106{bottom:988.500729px;}
.y6_c00106{bottom:1018.651341px;}
.y5_c00106{bottom:1050.060563px;}
.y4_c00106{bottom:1080.300441px;}
.y3_c00106{bottom:1110.451053px;}
.h9_c00106{height:39.337949px;}
.h7_c00106{height:39.338549px;}
.h8_c00106{height:54.098549px;}
.h2_c00106{height:62.600889px;}
.h1_c00106{height:62.771836px;}
.h3_c00106{height:73.782500px;}
.h4_c00106{height:73.783796px;}
.h5_c00106{height:73.801580px;}
.h6_c00106{height:74.139008px;}
.h0_c00106{height:1263.000000px;}
.w0_c00106{width:892.500000px;}
.x0_c00106{left:0.000000px;}
.x2_c00106{left:82.710059px;}
.x4_c00106{left:108.990495px;}
.x3_c00106{left:135.270572px;}
.x1_c00106{left:431.730000px;}
@media print{
.v2_c00106{vertical-align:-28.480000pt;}
.v3_c00106{vertical-align:-13.120000pt;}
.v0_c00106{vertical-align:0.000000pt;}
.v1_c00106{vertical-align:28.480032pt;}
.ls1a_c00106{letter-spacing:-0.628839pt;}
.ls16_c00106{letter-spacing:-0.306624pt;}
.ls13_c00106{letter-spacing:-0.244260pt;}
.ls15_c00106{letter-spacing:-0.129925pt;}
.ls10_c00106{letter-spacing:-0.067217pt;}
.ls7_c00106{letter-spacing:-0.056016pt;}
.lse_c00106{letter-spacing:-0.037344pt;}
.lsd_c00106{letter-spacing:-0.031120pt;}
.lsa_c00106{letter-spacing:-0.024896pt;}
.lsc_c00106{letter-spacing:-0.018672pt;}
.lsb_c00106{letter-spacing:-0.012448pt;}
.ls9_c00106{letter-spacing:-0.006224pt;}
.ls8_c00106{letter-spacing:0.000000pt;}
.ls14_c00106{letter-spacing:0.005197pt;}
.ls4_c00106{letter-spacing:0.006224pt;}
.ls2_c00106{letter-spacing:0.012448pt;}
.ls6_c00106{letter-spacing:0.015591pt;}
.ls3_c00106{letter-spacing:0.018672pt;}
.ls0_c00106{letter-spacing:0.020694pt;}
.ls5_c00106{letter-spacing:0.031120pt;}
.ls12_c00106{letter-spacing:0.036379pt;}
.ls1_c00106{letter-spacing:0.074688pt;}
.ls11_c00106{letter-spacing:0.296230pt;}
.lsf_c00106{letter-spacing:0.304976pt;}
.ls19_c00106{letter-spacing:0.311821pt;}
.ls18_c00106{letter-spacing:0.317018pt;}
.ls17_c00106{letter-spacing:9.292260pt;}
.ws1_c00106{word-spacing:-62.240000pt;}
.ws0_c00106{word-spacing:-11.526781pt;}
.ws2_c00106{word-spacing:-9.242347pt;}
.ws27_c00106{word-spacing:-0.301427pt;}
.ws16_c00106{word-spacing:-0.012448pt;}
.ws3_c00106{word-spacing:0.000000pt;}
.ws21_c00106{word-spacing:0.005197pt;}
.ws12_c00106{word-spacing:0.006224pt;}
.ws26_c00106{word-spacing:0.010394pt;}
.wsa_c00106{word-spacing:0.012448pt;}
.ws1d_c00106{word-spacing:0.024896pt;}
.ws11_c00106{word-spacing:0.273856pt;}
.wsd_c00106{word-spacing:0.292528pt;}
.ws13_c00106{word-spacing:0.311200pt;}
.ws24_c00106{word-spacing:0.317018pt;}
.ws6_c00106{word-spacing:0.329872pt;}
.wsb_c00106{word-spacing:0.336096pt;}
.ws28_c00106{word-spacing:0.639233pt;}
.wsc_c00106{word-spacing:0.958496pt;}
.ws1c_c00106{word-spacing:1.275920pt;}
.ws1e_c00106{word-spacing:1.314844pt;}
.ws1f_c00106{word-spacing:1.574695pt;}
.ws1b_c00106{word-spacing:1.593344pt;}
.ws20_c00106{word-spacing:1.855334pt;}
.ws14_c00106{word-spacing:3.211584pt;}
.ws15_c00106{word-spacing:3.522784pt;}
.ws9_c00106{word-spacing:4.163856pt;}
.ws1a_c00106{word-spacing:5.128576pt;}
.ws8_c00106{word-spacing:5.439776pt;}
.ws7_c00106{word-spacing:5.452224pt;}
.ws18_c00106{word-spacing:7.979168pt;}
.ws19_c00106{word-spacing:8.346384pt;}
.ws25_c00106{word-spacing:9.292260pt;}
.ws22_c00106{word-spacing:9.593687pt;}
.ws23_c00106{word-spacing:9.739203pt;}
.ws10_c00106{word-spacing:11.178304pt;}
.wse_c00106{word-spacing:14.047568pt;}
.ws5_c00106{word-spacing:14.066240pt;}
.wsf_c00106{word-spacing:14.078688pt;}
.ws4_c00106{word-spacing:14.396112pt;}
.ws17_c00106{word-spacing:24.323392pt;}
._7_c00106{margin-left:-9.794307pt;}
._8_c00106{margin-left:-8.769425pt;}
._3_c00106{margin-left:-5.439776pt;}
._5_c00106{margin-left:-2.410848pt;}
._0_c00106{margin-left:-1.070528pt;}
._1_c00106{width:0.964720pt;}
._9_c00106{width:1.921465pt;}
._4_c00106{width:5.271728pt;}
._6_c00106{width:10.180810pt;}
._2_c00106{width:42.155152pt;}
.fs2_c00106{font-size:33.608533pt;}
.fs1_c00106{font-size:41.388800pt;}
.fs3_c00106{font-size:51.970133pt;}
.fs0_c00106{font-size:62.240000pt;}
.y0_c00106{bottom:0.000000pt;}
.y2_c00106{bottom:97.547527pt;}
.y1_c00106{bottom:115.387067pt;}
.y22_c00106{bottom:136.107200pt;}
.y21_c00106{bottom:151.947067pt;}
.y20_c00106{bottom:164.666570pt;}
.y1f_c00106{bottom:183.787067pt;}
.y1e_c00106{bottom:196.506570pt;}
.y1d_c00106{bottom:215.627067pt;}
.y1c_c00106{bottom:228.667651pt;}
.y1b_c00106{bottom:287.307835pt;}
.y1a_c00106{bottom:314.267091pt;}
.y19_c00106{bottom:359.302819pt;}
.y18_c00106{bottom:386.103363pt;}
.y17_c00106{bottom:412.903907pt;}
.y16_c00106{bottom:439.783807pt;}
.y15_c00106{bottom:466.584351pt;}
.y14_c00106{bottom:493.464251pt;}
.y13_c00106{bottom:520.264795pt;}
.y12_c00106{bottom:547.144695pt;}
.y11_c00106{bottom:573.945239pt;}
.y10_c00106{bottom:600.825139pt;}
.yf_c00106{bottom:627.625683pt;}
.ye_c00106{bottom:654.505583pt;}
.yd_c00106{bottom:681.306127pt;}
.yc_c00106{bottom:708.186027pt;}
.yb_c00106{bottom:734.986571pt;}
.ya_c00106{bottom:779.947191pt;}
.y9_c00106{bottom:824.987167pt;}
.y8_c00106{bottom:851.866771pt;}
.y7_c00106{bottom:878.667315pt;}
.y6_c00106{bottom:905.467859pt;}
.y5_c00106{bottom:933.387167pt;}
.y4_c00106{bottom:960.267059pt;}
.y3_c00106{bottom:987.067603pt;}
.h9_c00106{height:34.967066pt;}
.h7_c00106{height:34.967599pt;}
.h8_c00106{height:48.087599pt;}
.h2_c00106{height:55.645234pt;}
.h1_c00106{height:55.797187pt;}
.h3_c00106{height:65.584445pt;}
.h4_c00106{height:65.585596pt;}
.h5_c00106{height:65.601404pt;}
.h6_c00106{height:65.901341pt;}
.h0_c00106{height:1122.666667pt;}
.w0_c00106{width:793.333333pt;}
.x0_c00106{left:0.000000pt;}
.x2_c00106{left:73.520052pt;}
.x4_c00106{left:96.880440pt;}
.x3_c00106{left:120.240508pt;}
.x1_c00106{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_dad9620a0cbfff99c55e0123.woff2')format("woff");}.ff1_c00107{font-family:ff1_c00107;line-height:1.106934;font-style:normal;font-weight:normal;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_c92f609c110073dace4f4385.woff2')format("woff");}.ff2_c00107{font-family:ff2_c00107;line-height:1.104492;font-style:normal;font-weight:normal;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_e430de2672f07a986f5e6a3a.woff2')format("woff");}.ff3_c00107{font-family:ff3_c00107;line-height:1.133301;font-style:normal;font-weight:normal;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_d0d88764e218abb1c676129a.woff2')format("woff");}.ff4_c00107{font-family:ff4_c00107;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00107{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00107{vertical-align:-14.760600px;}
.v0_c00107{vertical-align:0.000000px;}
.v1_c00107{vertical-align:32.417910px;}
.ls12_c00107{letter-spacing:-0.157859px;}
.ls11_c00107{letter-spacing:-0.075619px;}
.lsd_c00107{letter-spacing:-0.070020px;}
.ls8_c00107{letter-spacing:-0.063018px;}
.lse_c00107{letter-spacing:-0.042012px;}
.lsa_c00107{letter-spacing:-0.035010px;}
.ls10_c00107{letter-spacing:-0.028008px;}
.lsb_c00107{letter-spacing:-0.021006px;}
.lsc_c00107{letter-spacing:-0.014004px;}
.lsf_c00107{letter-spacing:-0.007002px;}
.ls9_c00107{letter-spacing:0.000000px;}
.ls7_c00107{letter-spacing:0.005847px;}
.ls1_c00107{letter-spacing:0.007002px;}
.ls2_c00107{letter-spacing:0.021006px;}
.ls5_c00107{letter-spacing:0.023281px;}
.ls0_c00107{letter-spacing:0.028008px;}
.ls6_c00107{letter-spacing:0.056016px;}
.ls3_c00107{letter-spacing:0.077022px;}
.ls4_c00107{letter-spacing:0.098028px;}
.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:-19.563588px;}
.ws1_c00107{word-spacing:-12.967628px;}
.ws2_c00107{word-spacing:-10.397640px;}
.wsb_c00107{word-spacing:-0.014004px;}
.ws3_c00107{word-spacing:0.000000px;}
.ws24_c00107{word-spacing:0.021006px;}
.ws13_c00107{word-spacing:0.028008px;}
.ws28_c00107{word-spacing:0.169553px;}
.ws1f_c00107{word-spacing:0.378108px;}
.ws12_c00107{word-spacing:0.679194px;}
.ws5_c00107{word-spacing:0.728208px;}
.ws4_c00107{word-spacing:0.742212px;}
.ws11_c00107{word-spacing:0.987282px;}
.wsc_c00107{word-spacing:1.407402px;}
.ws9_c00107{word-spacing:1.449414px;}
.ws10_c00107{word-spacing:2.142612px;}
.wsf_c00107{word-spacing:2.219634px;}
.ws15_c00107{word-spacing:2.863818px;}
.ws6_c00107{word-spacing:3.557016px;}
.ws14_c00107{word-spacing:3.578022px;}
.ws25_c00107{word-spacing:5.020434px;}
.ws26_c00107{word-spacing:5.412546px;}
.ws22_c00107{word-spacing:7.128036px;}
.ws23_c00107{word-spacing:7.184052px;}
.ws27_c00107{word-spacing:7.912260px;}
.wsd_c00107{word-spacing:8.976564px;}
.wse_c00107{word-spacing:8.983566px;}
.ws20_c00107{word-spacing:10.075878px;}
.ws1b_c00107{word-spacing:10.432980px;}
.ws1a_c00107{word-spacing:10.804086px;}
.ws21_c00107{word-spacing:11.518290px;}
.ws7_c00107{word-spacing:13.660902px;}
.ws8_c00107{word-spacing:13.681908px;}
.ws1e_c00107{word-spacing:14.039010px;}
.ws1d_c00107{word-spacing:14.760216px;}
.ws1c_c00107{word-spacing:15.117318px;}
.ws19_c00107{word-spacing:17.624034px;}
.ws17_c00107{word-spacing:25.536294px;}
.ws16_c00107{word-spacing:25.543296px;}
.ws18_c00107{word-spacing:25.928406px;}
.wsa_c00107{word-spacing:35.269074px;}
._3_c00107{margin-left:-7.272294px;}
._1_c00107{margin-left:-1.365390px;}
._0_c00107{width:1.043298px;}
._2_c00107{width:5.930694px;}
.fc0_c00107{color:rgb(0,0,0);}
.fs3_c00107{font-size:37.809600px;}
.fs1_c00107{font-size:46.562400px;}
.fs2_c00107{font-size:58.466400px;}
.fs0_c00107{font-size:70.020000px;}
.y0_c00107{bottom:0.000000px;}
.y2_c00107{bottom:109.740968px;}
.y1_c00107{bottom:129.810450px;}
.y22_c00107{bottom:153.120600px;}
.y21_c00107{bottom:167.250450px;}
.y20_c00107{bottom:185.698039px;}
.y1f_c00107{bottom:244.558602px;}
.y1e_c00107{bottom:274.798489px;}
.y1d_c00107{bottom:304.949101px;}
.y1c_c00107{bottom:335.188989px;}
.y1b_c00107{bottom:365.339601px;}
.y1a_c00107{bottom:395.579488px;}
.y19_c00107{bottom:425.730100px;}
.y18_c00107{bottom:455.969988px;}
.y17_c00107{bottom:486.115973px;}
.y16_c00107{bottom:516.355860px;}
.y15_c00107{bottom:546.506472px;}
.y14_c00107{bottom:576.746360px;}
.y13_c00107{bottom:606.896972px;}
.y12_c00107{bottom:637.136859px;}
.y11_c00107{bottom:667.287471px;}
.y10_c00107{bottom:697.527359px;}
.yf_c00107{bottom:727.677971px;}
.ye_c00107{bottom:757.917858px;}
.yd_c00107{bottom:788.068470px;}
.yc_c00107{bottom:818.308358px;}
.yb_c00107{bottom:848.458970px;}
.ya_c00107{bottom:878.698857px;}
.y9_c00107{bottom:908.849469px;}
.y8_c00107{bottom:959.430167px;}
.y7_c00107{bottom:989.670054px;}
.y6_c00107{bottom:1019.909942px;}
.y5_c00107{bottom:1050.060553px;}
.y4_c00107{bottom:1080.300441px;}
.y3_c00107{bottom:1110.451053px;}
.h6_c00107{height:39.337949px;}
.h5_c00107{height:54.098549px;}
.h2_c00107{height:62.600889px;}
.h1_c00107{height:62.771836px;}
.h4_c00107{height:62.782078px;}
.h3_c00107{height:74.046696px;}
.h0_c00107{height:1263.000000px;}
.w0_c00107{width:892.500000px;}
.x0_c00107{left:0.000000px;}
.x2_c00107{left:82.710059px;}
.x1_c00107{left:431.730000px;}
@media print{
.v2_c00107{vertical-align:-13.120533pt;}
.v0_c00107{vertical-align:0.000000pt;}
.v1_c00107{vertical-align:28.815920pt;}
.ls12_c00107{letter-spacing:-0.140319pt;}
.ls11_c00107{letter-spacing:-0.067217pt;}
.lsd_c00107{letter-spacing:-0.062240pt;}
.ls8_c00107{letter-spacing:-0.056016pt;}
.lse_c00107{letter-spacing:-0.037344pt;}
.lsa_c00107{letter-spacing:-0.031120pt;}
.ls10_c00107{letter-spacing:-0.024896pt;}
.lsb_c00107{letter-spacing:-0.018672pt;}
.lsc_c00107{letter-spacing:-0.012448pt;}
.lsf_c00107{letter-spacing:-0.006224pt;}
.ls9_c00107{letter-spacing:0.000000pt;}
.ls7_c00107{letter-spacing:0.005197pt;}
.ls1_c00107{letter-spacing:0.006224pt;}
.ls2_c00107{letter-spacing:0.018672pt;}
.ls5_c00107{letter-spacing:0.020694pt;}
.ls0_c00107{letter-spacing:0.024896pt;}
.ls6_c00107{letter-spacing:0.049792pt;}
.ls3_c00107{letter-spacing:0.068464pt;}
.ls4_c00107{letter-spacing:0.087136pt;}
.ws0_c00107{word-spacing:-17.389856pt;}
.ws1_c00107{word-spacing:-11.526781pt;}
.ws2_c00107{word-spacing:-9.242347pt;}
.wsb_c00107{word-spacing:-0.012448pt;}
.ws3_c00107{word-spacing:0.000000pt;}
.ws24_c00107{word-spacing:0.018672pt;}
.ws13_c00107{word-spacing:0.024896pt;}
.ws28_c00107{word-spacing:0.150713pt;}
.ws1f_c00107{word-spacing:0.336096pt;}
.ws12_c00107{word-spacing:0.603728pt;}
.ws5_c00107{word-spacing:0.647296pt;}
.ws4_c00107{word-spacing:0.659744pt;}
.ws11_c00107{word-spacing:0.877584pt;}
.wsc_c00107{word-spacing:1.251024pt;}
.ws9_c00107{word-spacing:1.288368pt;}
.ws10_c00107{word-spacing:1.904544pt;}
.wsf_c00107{word-spacing:1.973008pt;}
.ws15_c00107{word-spacing:2.545616pt;}
.ws6_c00107{word-spacing:3.161792pt;}
.ws14_c00107{word-spacing:3.180464pt;}
.ws25_c00107{word-spacing:4.462608pt;}
.ws26_c00107{word-spacing:4.811152pt;}
.ws22_c00107{word-spacing:6.336032pt;}
.ws23_c00107{word-spacing:6.385824pt;}
.ws27_c00107{word-spacing:7.033120pt;}
.wsd_c00107{word-spacing:7.979168pt;}
.wse_c00107{word-spacing:7.985392pt;}
.ws20_c00107{word-spacing:8.956336pt;}
.ws1b_c00107{word-spacing:9.273760pt;}
.ws1a_c00107{word-spacing:9.603632pt;}
.ws21_c00107{word-spacing:10.238480pt;}
.ws7_c00107{word-spacing:12.143024pt;}
.ws8_c00107{word-spacing:12.161696pt;}
.ws1e_c00107{word-spacing:12.479120pt;}
.ws1d_c00107{word-spacing:13.120192pt;}
.ws1c_c00107{word-spacing:13.437616pt;}
.ws19_c00107{word-spacing:15.665808pt;}
.ws17_c00107{word-spacing:22.698928pt;}
.ws16_c00107{word-spacing:22.705152pt;}
.ws18_c00107{word-spacing:23.047472pt;}
.wsa_c00107{word-spacing:31.350288pt;}
._3_c00107{margin-left:-6.464261pt;}
._1_c00107{margin-left:-1.213680pt;}
._0_c00107{width:0.927376pt;}
._2_c00107{width:5.271728pt;}
.fs3_c00107{font-size:33.608533pt;}
.fs1_c00107{font-size:41.388800pt;}
.fs2_c00107{font-size:51.970133pt;}
.fs0_c00107{font-size:62.240000pt;}
.y0_c00107{bottom:0.000000pt;}
.y2_c00107{bottom:97.547527pt;}
.y1_c00107{bottom:115.387067pt;}
.y22_c00107{bottom:136.107200pt;}
.y21_c00107{bottom:148.667067pt;}
.y20_c00107{bottom:165.064924pt;}
.y1f_c00107{bottom:217.385424pt;}
.y1e_c00107{bottom:244.265324pt;}
.y1d_c00107{bottom:271.065868pt;}
.y1c_c00107{bottom:297.945768pt;}
.y1b_c00107{bottom:324.746312pt;}
.y1a_c00107{bottom:351.626212pt;}
.y19_c00107{bottom:378.426756pt;}
.y18_c00107{bottom:405.306656pt;}
.y17_c00107{bottom:432.103087pt;}
.y16_c00107{bottom:458.982987pt;}
.y15_c00107{bottom:485.783531pt;}
.y14_c00107{bottom:512.663431pt;}
.y13_c00107{bottom:539.463975pt;}
.y12_c00107{bottom:566.343875pt;}
.y11_c00107{bottom:593.144419pt;}
.y10_c00107{bottom:620.024319pt;}
.yf_c00107{bottom:646.824863pt;}
.ye_c00107{bottom:673.704763pt;}
.yd_c00107{bottom:700.505307pt;}
.yc_c00107{bottom:727.385207pt;}
.yb_c00107{bottom:754.185751pt;}
.ya_c00107{bottom:781.065651pt;}
.y9_c00107{bottom:807.866195pt;}
.y8_c00107{bottom:852.826815pt;}
.y7_c00107{bottom:879.706715pt;}
.y6_c00107{bottom:906.586615pt;}
.y5_c00107{bottom:933.387159pt;}
.y4_c00107{bottom:960.267059pt;}
.y3_c00107{bottom:987.067603pt;}
.h6_c00107{height:34.967066pt;}
.h5_c00107{height:48.087599pt;}
.h2_c00107{height:55.645234pt;}
.h1_c00107{height:55.797187pt;}
.h4_c00107{height:55.806292pt;}
.h3_c00107{height:65.819286pt;}
.h0_c00107{height:1122.666667pt;}
.w0_c00107{width:793.333333pt;}
.x0_c00107{left:0.000000pt;}
.x2_c00107{left:73.520052pt;}
.x1_c00107{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fd5fea134205f525f41351c0.woff2')format("woff");}.ff1_c00108{font-family:ff1_c00108;line-height:1.106934;font-style:normal;font-weight:normal;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_e60249ec319369fe7efe0e22.woff2')format("woff");}.ff2_c00108{font-family:ff2_c00108;line-height:1.104492;font-style:normal;font-weight:normal;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_71f4419739fd18aeb8508b0e.woff2')format("woff");}.ff3_c00108{font-family:ff3_c00108;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00108;src:url('chunks/assets/font_22c44e56aae52907aedc7a95.woff2')format("woff");}.ff4_c00108{font-family:ff4_c00108;line-height:1.133301;font-style:normal;font-weight:normal;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_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff5_c00108{font-family:ff5_c00108;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00108{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00108{vertical-align:-14.760000px;}
.v0_c00108{vertical-align:0.000000px;}
.v1_c00108{vertical-align:32.041584px;}
.ls15_c00108{letter-spacing:-0.654824px;}
.lse_c00108{letter-spacing:-0.335249px;}
.ls18_c00108{letter-spacing:-0.239712px;}
.ls12_c00108{letter-spacing:-0.105240px;}
.ls16_c00108{letter-spacing:-0.087700px;}
.ls17_c00108{letter-spacing:-0.076006px;}
.ls11_c00108{letter-spacing:-0.075619px;}
.ls8_c00108{letter-spacing:-0.063018px;}
.ls14_c00108{letter-spacing:-0.052620px;}
.ls10_c00108{letter-spacing:-0.042012px;}
.ls13_c00108{letter-spacing:-0.035080px;}
.lsc_c00108{letter-spacing:-0.035010px;}
.lsf_c00108{letter-spacing:-0.028008px;}
.lsb_c00108{letter-spacing:-0.021006px;}
.lsd_c00108{letter-spacing:-0.014004px;}
.ls19_c00108{letter-spacing:-0.011693px;}
.lsa_c00108{letter-spacing:-0.007002px;}
.ls9_c00108{letter-spacing:0.000000px;}
.ls1_c00108{letter-spacing:0.007002px;}
.ls0_c00108{letter-spacing:0.014004px;}
.ls5_c00108{letter-spacing:0.021006px;}
.ls3_c00108{letter-spacing:0.023281px;}
.ls6_c00108{letter-spacing:0.028008px;}
.ls2_c00108{letter-spacing:0.056016px;}
.ls4_c00108{letter-spacing:0.063018px;}
.ls1a_c00108{letter-spacing:0.315719px;}
.ls7_c00108{letter-spacing:0.362492px;}
.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;}
}
.ws3_c00108{word-spacing:-58.466400px;}
.ws0_c00108{word-spacing:-12.967628px;}
.ws1_c00108{word-spacing:-12.609098px;}
.ws2_c00108{word-spacing:-10.397640px;}
.wsc_c00108{word-spacing:-0.336096px;}
.ws27_c00108{word-spacing:-0.304025px;}
.ws10_c00108{word-spacing:-0.028008px;}
.ws7_c00108{word-spacing:-0.021006px;}
.ws4_c00108{word-spacing:0.000000px;}
.ws21_c00108{word-spacing:0.046773px;}
.ws22_c00108{word-spacing:0.064313px;}
.ws20_c00108{word-spacing:0.116933px;}
.ws19_c00108{word-spacing:0.322092px;}
.ws15_c00108{word-spacing:0.343098px;}
.ws1f_c00108{word-spacing:0.357102px;}
.ws1b_c00108{word-spacing:0.385110px;}
.ws18_c00108{word-spacing:0.707202px;}
.ws11_c00108{word-spacing:1.099314px;}
.wse_c00108{word-spacing:1.799514px;}
.wsf_c00108{word-spacing:2.079594px;}
.ws8_c00108{word-spacing:6.098742px;}
.ws9_c00108{word-spacing:6.126750px;}
.ws6_c00108{word-spacing:6.812946px;}
.ws5_c00108{word-spacing:6.833952px;}
.ws1e_c00108{word-spacing:7.877250px;}
.ws25_c00108{word-spacing:8.009897px;}
.ws24_c00108{word-spacing:8.021590px;}
.ws26_c00108{word-spacing:8.173603px;}
.ws1d_c00108{word-spacing:8.269362px;}
.ws23_c00108{word-spacing:8.588714px;}
.ws1c_c00108{word-spacing:10.797084px;}
.ws14_c00108{word-spacing:11.525292px;}
.ws16_c00108{word-spacing:12.960702px;}
.wsa_c00108{word-spacing:21.531150px;}
.wsb_c00108{word-spacing:21.580164px;}
.ws12_c00108{word-spacing:21.930264px;}
.ws13_c00108{word-spacing:21.972276px;}
.wsd_c00108{word-spacing:24.822090px;}
.ws1a_c00108{word-spacing:26.285508px;}
.ws17_c00108{word-spacing:41.409828px;}
._3_c00108{margin-left:-2.708130px;}
._0_c00108{margin-left:-1.099314px;}
._1_c00108{width:1.197342px;}
._2_c00108{width:5.930694px;}
.fc0_c00108{color:rgb(0,0,0);}
.fs2_c00108{font-size:37.809600px;}
.fs1_c00108{font-size:46.562400px;}
.fs3_c00108{font-size:58.466400px;}
.fs0_c00108{font-size:70.020000px;}
.y0_c00108{bottom:0.000000px;}
.y2_c00108{bottom:109.740968px;}
.y1_c00108{bottom:129.810450px;}
.y23_c00108{bottom:169.860450px;}
.y22_c00108{bottom:191.460600px;}
.y21_c00108{bottom:229.710600px;}
.y20_c00108{bottom:247.620450px;}
.y1f_c00108{bottom:262.379699px;}
.y1e_c00108{bottom:289.109834px;}
.y1d_c00108{bottom:328.079465px;}
.y1c_c00108{bottom:367.049096px;}
.y1b_c00108{bottom:405.929451px;}
.y1a_c00108{bottom:436.169338px;}
.y19_c00108{bottom:466.319951px;}
.y18_c00108{bottom:496.559838px;}
.y17_c00108{bottom:526.706719px;}
.y16_c00108{bottom:556.946607px;}
.y15_c00108{bottom:587.097219px;}
.y14_c00108{bottom:617.247831px;}
.y13_c00108{bottom:647.487718px;}
.y12_c00108{bottom:677.638330px;}
.y11_c00108{bottom:707.878218px;}
.y10_c00108{bottom:738.028830px;}
.yf_c00108{bottom:768.268717px;}
.ye_c00108{bottom:798.419330px;}
.yd_c00108{bottom:818.579838px;}
.yc_c00108{bottom:848.728943px;}
.yb_c00108{bottom:878.968830px;}
.ya_c00108{bottom:909.119442px;}
.y9_c00108{bottom:929.279951px;}
.y8_c00108{bottom:959.519838px;}
.y7_c00108{bottom:989.670054px;}
.y6_c00108{bottom:1019.909942px;}
.y5_c00108{bottom:1050.060553px;}
.y4_c00108{bottom:1080.300441px;}
.y3_c00108{bottom:1110.451053px;}
.h9_c00108{height:39.337949px;}
.h8_c00108{height:39.338549px;}
.ha_c00108{height:54.098549px;}
.h3_c00108{height:62.600889px;}
.h1_c00108{height:62.771836px;}
.h7_c00108{height:62.774842px;}
.h6_c00108{height:63.216299px;}
.h2_c00108{height:73.784048px;}
.h4_c00108{height:74.034816px;}
.h5_c00108{height:74.043708px;}
.h0_c00108{height:1263.000000px;}
.w0_c00108{width:892.500000px;}
.x0_c00108{left:0.000000px;}
.x2_c00108{left:82.710059px;}
.x3_c00108{left:85.589136px;}
.x1_c00108{left:431.730000px;}
@media print{
.v2_c00108{vertical-align:-13.120000pt;}
.v0_c00108{vertical-align:0.000000pt;}
.v1_c00108{vertical-align:28.481408pt;}
.ls15_c00108{letter-spacing:-0.582065pt;}
.lse_c00108{letter-spacing:-0.297999pt;}
.ls18_c00108{letter-spacing:-0.213078pt;}
.ls12_c00108{letter-spacing:-0.093546pt;}
.ls16_c00108{letter-spacing:-0.077955pt;}
.ls17_c00108{letter-spacing:-0.067561pt;}
.ls11_c00108{letter-spacing:-0.067217pt;}
.ls8_c00108{letter-spacing:-0.056016pt;}
.ls14_c00108{letter-spacing:-0.046773pt;}
.ls10_c00108{letter-spacing:-0.037344pt;}
.ls13_c00108{letter-spacing:-0.031182pt;}
.lsc_c00108{letter-spacing:-0.031120pt;}
.lsf_c00108{letter-spacing:-0.024896pt;}
.lsb_c00108{letter-spacing:-0.018672pt;}
.lsd_c00108{letter-spacing:-0.012448pt;}
.ls19_c00108{letter-spacing:-0.010394pt;}
.lsa_c00108{letter-spacing:-0.006224pt;}
.ls9_c00108{letter-spacing:0.000000pt;}
.ls1_c00108{letter-spacing:0.006224pt;}
.ls0_c00108{letter-spacing:0.012448pt;}
.ls5_c00108{letter-spacing:0.018672pt;}
.ls3_c00108{letter-spacing:0.020694pt;}
.ls6_c00108{letter-spacing:0.024896pt;}
.ls2_c00108{letter-spacing:0.049792pt;}
.ls4_c00108{letter-spacing:0.056016pt;}
.ls1a_c00108{letter-spacing:0.280639pt;}
.ls7_c00108{letter-spacing:0.322215pt;}
.ws3_c00108{word-spacing:-51.970133pt;}
.ws0_c00108{word-spacing:-11.526781pt;}
.ws1_c00108{word-spacing:-11.208087pt;}
.ws2_c00108{word-spacing:-9.242347pt;}
.wsc_c00108{word-spacing:-0.298752pt;}
.ws27_c00108{word-spacing:-0.270245pt;}
.ws10_c00108{word-spacing:-0.024896pt;}
.ws7_c00108{word-spacing:-0.018672pt;}
.ws4_c00108{word-spacing:0.000000pt;}
.ws21_c00108{word-spacing:0.041576pt;}
.ws22_c00108{word-spacing:0.057167pt;}
.ws20_c00108{word-spacing:0.103940pt;}
.ws19_c00108{word-spacing:0.286304pt;}
.ws15_c00108{word-spacing:0.304976pt;}
.ws1f_c00108{word-spacing:0.317424pt;}
.ws1b_c00108{word-spacing:0.342320pt;}
.ws18_c00108{word-spacing:0.628624pt;}
.ws11_c00108{word-spacing:0.977168pt;}
.wse_c00108{word-spacing:1.599568pt;}
.wsf_c00108{word-spacing:1.848528pt;}
.ws8_c00108{word-spacing:5.421104pt;}
.ws9_c00108{word-spacing:5.446000pt;}
.ws6_c00108{word-spacing:6.055952pt;}
.ws5_c00108{word-spacing:6.074624pt;}
.ws1e_c00108{word-spacing:7.002000pt;}
.ws25_c00108{word-spacing:7.119908pt;}
.ws24_c00108{word-spacing:7.130302pt;}
.ws26_c00108{word-spacing:7.265425pt;}
.ws1d_c00108{word-spacing:7.350544pt;}
.ws23_c00108{word-spacing:7.634413pt;}
.ws1c_c00108{word-spacing:9.597408pt;}
.ws14_c00108{word-spacing:10.244704pt;}
.ws16_c00108{word-spacing:11.520624pt;}
.wsa_c00108{word-spacing:19.138800pt;}
.wsb_c00108{word-spacing:19.182368pt;}
.ws12_c00108{word-spacing:19.493568pt;}
.ws13_c00108{word-spacing:19.530912pt;}
.wsd_c00108{word-spacing:22.064080pt;}
.ws1a_c00108{word-spacing:23.364896pt;}
.ws17_c00108{word-spacing:36.808736pt;}
._3_c00108{margin-left:-2.407227pt;}
._0_c00108{margin-left:-0.977168pt;}
._1_c00108{width:1.064304pt;}
._2_c00108{width:5.271728pt;}
.fs2_c00108{font-size:33.608533pt;}
.fs1_c00108{font-size:41.388800pt;}
.fs3_c00108{font-size:51.970133pt;}
.fs0_c00108{font-size:62.240000pt;}
.y0_c00108{bottom:0.000000pt;}
.y2_c00108{bottom:97.547527pt;}
.y1_c00108{bottom:115.387067pt;}
.y23_c00108{bottom:150.987067pt;}
.y22_c00108{bottom:170.187200pt;}
.y21_c00108{bottom:204.187200pt;}
.y20_c00108{bottom:220.107067pt;}
.y1f_c00108{bottom:233.226399pt;}
.y1e_c00108{bottom:256.986519pt;}
.y1d_c00108{bottom:291.626191pt;}
.y1c_c00108{bottom:326.265863pt;}
.y1b_c00108{bottom:360.826179pt;}
.y1a_c00108{bottom:387.706079pt;}
.y19_c00108{bottom:414.506623pt;}
.y18_c00108{bottom:441.386523pt;}
.y17_c00108{bottom:468.183751pt;}
.y16_c00108{bottom:495.063651pt;}
.y15_c00108{bottom:521.864195pt;}
.y14_c00108{bottom:548.664739pt;}
.y13_c00108{bottom:575.544639pt;}
.y12_c00108{bottom:602.345183pt;}
.y11_c00108{bottom:629.225083pt;}
.y10_c00108{bottom:656.025627pt;}
.yf_c00108{bottom:682.905527pt;}
.ye_c00108{bottom:709.706071pt;}
.yd_c00108{bottom:727.626523pt;}
.yc_c00108{bottom:754.425727pt;}
.yb_c00108{bottom:781.305627pt;}
.ya_c00108{bottom:808.106171pt;}
.y9_c00108{bottom:826.026623pt;}
.y8_c00108{bottom:852.906523pt;}
.y7_c00108{bottom:879.706715pt;}
.y6_c00108{bottom:906.586615pt;}
.y5_c00108{bottom:933.387159pt;}
.y4_c00108{bottom:960.267059pt;}
.y3_c00108{bottom:987.067603pt;}
.h9_c00108{height:34.967066pt;}
.h8_c00108{height:34.967599pt;}
.ha_c00108{height:48.087599pt;}
.h3_c00108{height:55.645234pt;}
.h1_c00108{height:55.797187pt;}
.h7_c00108{height:55.799859pt;}
.h6_c00108{height:56.192266pt;}
.h2_c00108{height:65.585821pt;}
.h4_c00108{height:65.808726pt;}
.h5_c00108{height:65.816630pt;}
.h0_c00108{height:1122.666667pt;}
.w0_c00108{width:793.333333pt;}
.x0_c00108{left:0.000000pt;}
.x2_c00108{left:73.520052pt;}
.x3_c00108{left:76.079232pt;}
.x1_c00108{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b59363e66b10323f383b7495.woff2')format("woff");}.ff1_c00109{font-family:ff1_c00109;line-height:1.106934;font-style:normal;font-weight:normal;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_12fc71f3acddfc52a3923cb4.woff2')format("woff");}.ff2_c00109{font-family:ff2_c00109;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00109;src:url('chunks/assets/font_aeea3803fe12300dafe0ee8d.woff2')format("woff");}.ff3_c00109{font-family:ff3_c00109;line-height:1.104492;font-style:normal;font-weight:normal;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_a51edb628a9848bb35b49348.woff2')format("woff");}.ff4_c00109{font-family:ff4_c00109;line-height:1.133301;font-style:normal;font-weight:normal;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_308c7fb2061cac595fc7ae0b.woff2')format("woff");}.ff5_c00109{font-family:ff5_c00109;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00109;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff6_c00109{font-family:ff6_c00109;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00109;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff7_c00109{font-family:ff7_c00109;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00109{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00109{vertical-align:-14.760000px;}
.v0_c00109{vertical-align:0.000000px;}
.v1_c00109{vertical-align:32.050440px;}
.ls9_c00109{letter-spacing:-0.203058px;}
.lsa_c00109{letter-spacing:-0.113957px;}
.ls14_c00109{letter-spacing:-0.099393px;}
.ls15_c00109{letter-spacing:-0.081853px;}
.ls13_c00109{letter-spacing:-0.075619px;}
.ls7_c00109{letter-spacing:-0.063018px;}
.ls11_c00109{letter-spacing:-0.049014px;}
.lse_c00109{letter-spacing:-0.042012px;}
.ls12_c00109{letter-spacing:-0.035010px;}
.lsd_c00109{letter-spacing:-0.028008px;}
.lsf_c00109{letter-spacing:-0.021006px;}
.lsb_c00109{letter-spacing:-0.014004px;}
.lsc_c00109{letter-spacing:-0.007002px;}
.ls8_c00109{letter-spacing:0.000000px;}
.ls5_c00109{letter-spacing:0.007002px;}
.ls2_c00109{letter-spacing:0.014004px;}
.ls4_c00109{letter-spacing:0.023281px;}
.ls3_c00109{letter-spacing:0.035010px;}
.ls1_c00109{letter-spacing:0.075971px;}
.ls6_c00109{letter-spacing:0.105240px;}
.ls0_c00109{letter-spacing:0.147042px;}
.ls16_c00109{letter-spacing:0.274792px;}
.ls10_c00109{letter-spacing:0.343098px;}
.sc__c00109{text-shadow:none;}
.sc0_c00109{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00109{-webkit-text-stroke:0px transparent;}
.sc0_c00109{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00109{word-spacing:-58.466400px;}
.ws3_c00109{word-spacing:-16.469985px;}
.ws0_c00109{word-spacing:-12.967628px;}
.ws1_c00109{word-spacing:-10.397640px;}
.ws6_c00109{word-spacing:-0.161046px;}
.ws8_c00109{word-spacing:-0.121554px;}
.ws1f_c00109{word-spacing:-0.021006px;}
.ws4_c00109{word-spacing:0.000000px;}
.ws16_c00109{word-spacing:0.014004px;}
.ws5_c00109{word-spacing:0.189054px;}
.ws7_c00109{word-spacing:0.243108px;}
.ws13_c00109{word-spacing:0.357102px;}
.ws1e_c00109{word-spacing:0.378108px;}
.ws12_c00109{word-spacing:0.385110px;}
.ws17_c00109{word-spacing:2.912832px;}
.ws18_c00109{word-spacing:3.234924px;}
.wsd_c00109{word-spacing:4.691340px;}
.wsc_c00109{word-spacing:5.013432px;}
.ws22_c00109{word-spacing:6.747023px;}
.ws24_c00109{word-spacing:6.934115px;}
.ws21_c00109{word-spacing:6.951655px;}
.ws23_c00109{word-spacing:7.296607px;}
.wsb_c00109{word-spacing:7.912260px;}
.wsa_c00109{word-spacing:7.919262px;}
.ws20_c00109{word-spacing:9.382680px;}
.ws1a_c00109{word-spacing:12.218490px;}
.ws19_c00109{word-spacing:12.596598px;}
.ws1b_c00109{word-spacing:12.946698px;}
.ws1c_c00109{word-spacing:13.331808px;}
.ws9_c00109{word-spacing:14.760216px;}
.ws10_c00109{word-spacing:17.231922px;}
.ws11_c00109{word-spacing:17.294940px;}
.wse_c00109{word-spacing:17.610030px;}
.wsf_c00109{word-spacing:17.638038px;}
.ws15_c00109{word-spacing:18.002142px;}
.ws14_c00109{word-spacing:18.009144px;}
.ws1d_c00109{word-spacing:25.543296px;}
._3_c00109{margin-left:-2.710332px;}
._1_c00109{margin-left:-1.302372px;}
._0_c00109{width:1.281366px;}
._2_c00109{width:5.930694px;}
.fc0_c00109{color:rgb(0,0,0);}
.fs3_c00109{font-size:37.809600px;}
.fs2_c00109{font-size:46.562400px;}
.fs4_c00109{font-size:58.466400px;}
.fs0_c00109{font-size:70.020000px;}
.fs1_c00109{font-size:75.971400px;}
.y0_c00109{bottom:0.000000px;}
.y2_c00109{bottom:109.740968px;}
.y1_c00109{bottom:129.810450px;}
.y22_c00109{bottom:149.429891px;}
.y21_c00109{bottom:170.940450px;}
.y20_c00109{bottom:185.698771px;}
.y1f_c00109{bottom:259.858704px;}
.y1e_c00109{bottom:290.098591px;}
.y1d_c00109{bottom:320.249203px;}
.y1c_c00109{bottom:350.489091px;}
.y1b_c00109{bottom:380.548677px;}
.y1a_c00109{bottom:410.788565px;}
.y19_c00109{bottom:440.939176px;}
.y18_c00109{bottom:471.179064px;}
.y17_c00109{bottom:501.329676px;}
.y16_c00109{bottom:531.569563px;}
.y15_c00109{bottom:561.720175px;}
.y14_c00109{bottom:591.960063px;}
.y13_c00109{bottom:622.110675px;}
.y12_c00109{bottom:652.350563px;}
.y11_c00109{bottom:682.587840px;}
.y10_c00109{bottom:712.738452px;}
.yf_c00109{bottom:742.978340px;}
.ye_c00109{bottom:773.128952px;}
.yd_c00109{bottom:803.368839px;}
.yc_c00109{bottom:833.519451px;}
.yb_c00109{bottom:863.759339px;}
.ya_c00109{bottom:893.909951px;}
.y9_c00109{bottom:924.149838px;}
.y8_c00109{bottom:954.300450px;}
.y7_c00109{bottom:979.050450px;}
.y6_c00109{bottom:1018.110428px;}
.y5_c00109{bottom:1042.591170px;}
.y4_c00109{bottom:1090.290545px;}
.y3_c00109{bottom:1110.451053px;}
.h7_c00109{height:39.338549px;}
.h8_c00109{height:54.098549px;}
.h4_c00109{height:62.600889px;}
.h1_c00109{height:62.771836px;}
.h6_c00109{height:62.779150px;}
.h2_c00109{height:63.216299px;}
.h3_c00109{height:68.589413px;}
.h5_c00109{height:73.679226px;}
.h0_c00109{height:1263.000000px;}
.w0_c00109{width:892.500000px;}
.x0_c00109{left:0.000000px;}
.x2_c00109{left:82.710059px;}
.x1_c00109{left:431.730000px;}
@media print{
.v2_c00109{vertical-align:-13.120000pt;}
.v0_c00109{vertical-align:0.000000pt;}
.v1_c00109{vertical-align:28.489280pt;}
.ls9_c00109{letter-spacing:-0.180496pt;}
.lsa_c00109{letter-spacing:-0.101295pt;}
.ls14_c00109{letter-spacing:-0.088349pt;}
.ls15_c00109{letter-spacing:-0.072758pt;}
.ls13_c00109{letter-spacing:-0.067217pt;}
.ls7_c00109{letter-spacing:-0.056016pt;}
.ls11_c00109{letter-spacing:-0.043568pt;}
.lse_c00109{letter-spacing:-0.037344pt;}
.ls12_c00109{letter-spacing:-0.031120pt;}
.lsd_c00109{letter-spacing:-0.024896pt;}
.lsf_c00109{letter-spacing:-0.018672pt;}
.lsb_c00109{letter-spacing:-0.012448pt;}
.lsc_c00109{letter-spacing:-0.006224pt;}
.ls8_c00109{letter-spacing:0.000000pt;}
.ls5_c00109{letter-spacing:0.006224pt;}
.ls2_c00109{letter-spacing:0.012448pt;}
.ls4_c00109{letter-spacing:0.020694pt;}
.ls3_c00109{letter-spacing:0.031120pt;}
.ls1_c00109{letter-spacing:0.067530pt;}
.ls6_c00109{letter-spacing:0.093546pt;}
.ls0_c00109{letter-spacing:0.130704pt;}
.ls16_c00109{letter-spacing:0.244260pt;}
.ls10_c00109{letter-spacing:0.304976pt;}
.ws2_c00109{word-spacing:-51.970133pt;}
.ws3_c00109{word-spacing:-14.639987pt;}
.ws0_c00109{word-spacing:-11.526781pt;}
.ws1_c00109{word-spacing:-9.242347pt;}
.ws6_c00109{word-spacing:-0.143152pt;}
.ws8_c00109{word-spacing:-0.108048pt;}
.ws1f_c00109{word-spacing:-0.018672pt;}
.ws4_c00109{word-spacing:0.000000pt;}
.ws16_c00109{word-spacing:0.012448pt;}
.ws5_c00109{word-spacing:0.168048pt;}
.ws7_c00109{word-spacing:0.216096pt;}
.ws13_c00109{word-spacing:0.317424pt;}
.ws1e_c00109{word-spacing:0.336096pt;}
.ws12_c00109{word-spacing:0.342320pt;}
.ws17_c00109{word-spacing:2.589184pt;}
.ws18_c00109{word-spacing:2.875488pt;}
.wsd_c00109{word-spacing:4.170080pt;}
.wsc_c00109{word-spacing:4.456384pt;}
.ws22_c00109{word-spacing:5.997353pt;}
.ws24_c00109{word-spacing:6.163658pt;}
.ws21_c00109{word-spacing:6.179249pt;}
.ws23_c00109{word-spacing:6.485873pt;}
.wsb_c00109{word-spacing:7.033120pt;}
.wsa_c00109{word-spacing:7.039344pt;}
.ws20_c00109{word-spacing:8.340160pt;}
.ws1a_c00109{word-spacing:10.860880pt;}
.ws19_c00109{word-spacing:11.196976pt;}
.ws1b_c00109{word-spacing:11.508176pt;}
.ws1c_c00109{word-spacing:11.850496pt;}
.ws9_c00109{word-spacing:13.120192pt;}
.ws10_c00109{word-spacing:15.317264pt;}
.ws11_c00109{word-spacing:15.373280pt;}
.wse_c00109{word-spacing:15.653360pt;}
.wsf_c00109{word-spacing:15.678256pt;}
.ws15_c00109{word-spacing:16.001904pt;}
.ws14_c00109{word-spacing:16.008128pt;}
.ws1d_c00109{word-spacing:22.705152pt;}
._3_c00109{margin-left:-2.409184pt;}
._1_c00109{margin-left:-1.157664pt;}
._0_c00109{width:1.138992pt;}
._2_c00109{width:5.271728pt;}
.fs3_c00109{font-size:33.608533pt;}
.fs2_c00109{font-size:41.388800pt;}
.fs4_c00109{font-size:51.970133pt;}
.fs0_c00109{font-size:62.240000pt;}
.fs1_c00109{font-size:67.530133pt;}
.y0_c00109{bottom:0.000000pt;}
.y2_c00109{bottom:97.547527pt;}
.y1_c00109{bottom:115.387067pt;}
.y22_c00109{bottom:132.826570pt;}
.y21_c00109{bottom:151.947067pt;}
.y20_c00109{bottom:165.065575pt;}
.y1f_c00109{bottom:230.985515pt;}
.y1e_c00109{bottom:257.865415pt;}
.y1d_c00109{bottom:284.665959pt;}
.y1c_c00109{bottom:311.545859pt;}
.y1b_c00109{bottom:338.265491pt;}
.y1a_c00109{bottom:365.145391pt;}
.y19_c00109{bottom:391.945935pt;}
.y18_c00109{bottom:418.825835pt;}
.y17_c00109{bottom:445.626379pt;}
.y16_c00109{bottom:472.506279pt;}
.y15_c00109{bottom:499.306823pt;}
.y14_c00109{bottom:526.186723pt;}
.y13_c00109{bottom:552.987267pt;}
.y12_c00109{bottom:579.867167pt;}
.y11_c00109{bottom:606.744747pt;}
.y10_c00109{bottom:633.545291pt;}
.yf_c00109{bottom:660.425191pt;}
.ye_c00109{bottom:687.225735pt;}
.yd_c00109{bottom:714.105635pt;}
.yc_c00109{bottom:740.906179pt;}
.yb_c00109{bottom:767.786079pt;}
.ya_c00109{bottom:794.586623pt;}
.y9_c00109{bottom:821.466523pt;}
.y8_c00109{bottom:848.267067pt;}
.y7_c00109{bottom:870.267067pt;}
.y6_c00109{bottom:904.987047pt;}
.y5_c00109{bottom:926.747707pt;}
.y4_c00109{bottom:969.147151pt;}
.y3_c00109{bottom:987.067603pt;}
.h7_c00109{height:34.967599pt;}
.h8_c00109{height:48.087599pt;}
.h4_c00109{height:55.645234pt;}
.h1_c00109{height:55.797187pt;}
.h6_c00109{height:55.803689pt;}
.h2_c00109{height:56.192266pt;}
.h3_c00109{height:60.968367pt;}
.h5_c00109{height:65.492646pt;}
.h0_c00109{height:1122.666667pt;}
.w0_c00109{width:793.333333pt;}
.x0_c00109{left:0.000000pt;}
.x2_c00109{left:73.520052pt;}
.x1_c00109{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bf28607212e3ef39da1fb960.woff2')format("woff");}.ff1_c00110{font-family:ff1_c00110;line-height:1.106934;font-style:normal;font-weight:normal;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_b381efc75436354f5f994848.woff2')format("woff");}.ff2_c00110{font-family:ff2_c00110;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00110;src:url('chunks/assets/font_93bb9ddd0bb6ac8df9defb42.woff2')format("woff");}.ff3_c00110{font-family:ff3_c00110;line-height:1.104492;font-style:normal;font-weight:normal;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_ee2fac491582276b41291b2c.woff2')format("woff");}.ff4_c00110{font-family:ff4_c00110;line-height:1.133301;font-style:normal;font-weight:normal;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_696b9e8d8050b304f410e422.woff2')format("woff");}.ff5_c00110{font-family:ff5_c00110;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00110;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff6_c00110{font-family:ff6_c00110;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00110;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff7_c00110{font-family:ff7_c00110;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00110{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00110{vertical-align:-14.760000px;}
.v0_c00110{vertical-align:0.000000px;}
.v1_c00110{vertical-align:32.407992px;}
.ls9_c00110{letter-spacing:-0.379857px;}
.ls15_c00110{letter-spacing:-0.163706px;}
.lsa_c00110{letter-spacing:-0.106360px;}
.ls14_c00110{letter-spacing:-0.081853px;}
.ls8_c00110{letter-spacing:-0.075971px;}
.ls12_c00110{letter-spacing:-0.075619px;}
.ls6_c00110{letter-spacing:-0.063018px;}
.lsc_c00110{letter-spacing:-0.049014px;}
.ls13_c00110{letter-spacing:-0.046773px;}
.ls11_c00110{letter-spacing:-0.042012px;}
.lsf_c00110{letter-spacing:-0.035010px;}
.ls10_c00110{letter-spacing:-0.028008px;}
.lsd_c00110{letter-spacing:-0.021006px;}
.lsb_c00110{letter-spacing:-0.014004px;}
.lse_c00110{letter-spacing:-0.007002px;}
.ls7_c00110{letter-spacing:0.000000px;}
.ls3_c00110{letter-spacing:0.007002px;}
.ls0_c00110{letter-spacing:0.014004px;}
.ls1_c00110{letter-spacing:0.023281px;}
.ls16_c00110{letter-spacing:0.023387px;}
.ls2_c00110{letter-spacing:0.049014px;}
.ls5_c00110{letter-spacing:0.105240px;}
.ls4_c00110{letter-spacing:0.362492px;}
.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;}
}
.ws3_c00110{word-spacing:-58.466400px;}
.ws4_c00110{word-spacing:-16.218579px;}
.ws2_c00110{word-spacing:-16.113340px;}
.ws0_c00110{word-spacing:-12.967628px;}
.ws1_c00110{word-spacing:-10.397640px;}
.ws10_c00110{word-spacing:-0.028008px;}
.ws25_c00110{word-spacing:-0.021006px;}
.ws6_c00110{word-spacing:-0.007597px;}
.ws5_c00110{word-spacing:0.000000px;}
.ws18_c00110{word-spacing:0.028008px;}
.ws7_c00110{word-spacing:0.129151px;}
.ws9_c00110{word-spacing:0.235511px;}
.ws14_c00110{word-spacing:0.357102px;}
.ws8_c00110{word-spacing:0.752117px;}
.wsc_c00110{word-spacing:1.449414px;}
.ws1f_c00110{word-spacing:2.135610px;}
.wse_c00110{word-spacing:2.870820px;}
.wsd_c00110{word-spacing:2.891826px;}
.wsf_c00110{word-spacing:2.898828px;}
.ws23_c00110{word-spacing:5.426550px;}
.ws20_c00110{word-spacing:6.455844px;}
.ws21_c00110{word-spacing:6.483852px;}
.ws17_c00110{word-spacing:7.919262px;}
.ws1a_c00110{word-spacing:9.732780px;}
.ws1c_c00110{word-spacing:11.154186px;}
.ws15_c00110{word-spacing:13.695912px;}
.ws16_c00110{word-spacing:13.709916px;}
.ws19_c00110{word-spacing:16.202628px;}
.ws28_c00110{word-spacing:16.259506px;}
.ws11_c00110{word-spacing:16.531722px;}
.ws26_c00110{word-spacing:16.621998px;}
.ws27_c00110{word-spacing:16.657077px;}
.ws1d_c00110{word-spacing:16.853814px;}
.ws1e_c00110{word-spacing:16.902828px;}
.ws24_c00110{word-spacing:18.359244px;}
.ws13_c00110{word-spacing:20.144754px;}
.ws12_c00110{word-spacing:20.151756px;}
.wsa_c00110{word-spacing:22.679478px;}
.wsb_c00110{word-spacing:22.714488px;}
.ws1b_c00110{word-spacing:27.692910px;}
.ws22_c00110{word-spacing:29.170332px;}
._0_c00110{margin-left:-1.739745px;}
._1_c00110{width:1.375082px;}
._2_c00110{width:5.930694px;}
.fc0_c00110{color:rgb(0,0,0);}
.fs3_c00110{font-size:37.809600px;}
.fs2_c00110{font-size:46.562400px;}
.fs4_c00110{font-size:58.466400px;}
.fs0_c00110{font-size:70.020000px;}
.fs1_c00110{font-size:75.971400px;}
.y0_c00110{bottom:0.000000px;}
.y2_c00110{bottom:109.740968px;}
.y1_c00110{bottom:129.810450px;}
.y24_c00110{bottom:149.429891px;}
.y23_c00110{bottom:170.940450px;}
.y22_c00110{bottom:185.695509px;}
.y21_c00110{bottom:217.104731px;}
.y20_c00110{bottom:247.255343px;}
.y1f_c00110{bottom:277.405955px;}
.y1e_c00110{bottom:307.556567px;}
.y1d_c00110{bottom:337.796454px;}
.y1c_c00110{bottom:367.947066px;}
.y1b_c00110{bottom:398.186954px;}
.y1a_c00110{bottom:428.337566px;}
.y19_c00110{bottom:458.577453px;}
.y18_c00110{bottom:488.728065px;}
.y17_c00110{bottom:518.967953px;}
.y16_c00110{bottom:549.118565px;}
.y15_c00110{bottom:579.358452px;}
.y14_c00110{bottom:609.509064px;}
.y13_c00110{bottom:639.748952px;}
.y12_c00110{bottom:669.899564px;}
.y11_c00110{bottom:700.139451px;}
.y10_c00110{bottom:730.379339px;}
.yf_c00110{bottom:760.529951px;}
.ye_c00110{bottom:790.769838px;}
.yd_c00110{bottom:820.918452px;}
.yc_c00110{bottom:851.158340px;}
.yb_c00110{bottom:881.308951px;}
.ya_c00110{bottom:911.548839px;}
.y9_c00110{bottom:941.699451px;}
.y8_c00110{bottom:971.939339px;}
.y7_c00110{bottom:1002.089950px;}
.y6_c00110{bottom:1032.329838px;}
.y5_c00110{bottom:1062.480450px;}
.y4_c00110{bottom:1087.230183px;}
.y3_c00110{bottom:1109.100450px;}
.h6_c00110{height:39.338549px;}
.h7_c00110{height:54.098549px;}
.h3_c00110{height:62.600889px;}
.h1_c00110{height:62.771836px;}
.h5_c00110{height:62.792200px;}
.h2_c00110{height:68.589413px;}
.h4_c00110{height:74.150456px;}
.h0_c00110{height:1263.000000px;}
.w0_c00110{width:892.500000px;}
.x0_c00110{left:0.000000px;}
.x2_c00110{left:82.710059px;}
.x3_c00110{left:84.240000px;}
.x1_c00110{left:431.730000px;}
@media print{
.v2_c00110{vertical-align:-13.120000pt;}
.v0_c00110{vertical-align:0.000000pt;}
.v1_c00110{vertical-align:28.807104pt;}
.ls9_c00110{letter-spacing:-0.337651pt;}
.ls15_c00110{letter-spacing:-0.145516pt;}
.lsa_c00110{letter-spacing:-0.094542pt;}
.ls14_c00110{letter-spacing:-0.072758pt;}
.ls8_c00110{letter-spacing:-0.067530pt;}
.ls12_c00110{letter-spacing:-0.067217pt;}
.ls6_c00110{letter-spacing:-0.056016pt;}
.lsc_c00110{letter-spacing:-0.043568pt;}
.ls13_c00110{letter-spacing:-0.041576pt;}
.ls11_c00110{letter-spacing:-0.037344pt;}
.lsf_c00110{letter-spacing:-0.031120pt;}
.ls10_c00110{letter-spacing:-0.024896pt;}
.lsd_c00110{letter-spacing:-0.018672pt;}
.lsb_c00110{letter-spacing:-0.012448pt;}
.lse_c00110{letter-spacing:-0.006224pt;}
.ls7_c00110{letter-spacing:0.000000pt;}
.ls3_c00110{letter-spacing:0.006224pt;}
.ls0_c00110{letter-spacing:0.012448pt;}
.ls1_c00110{letter-spacing:0.020694pt;}
.ls16_c00110{letter-spacing:0.020788pt;}
.ls2_c00110{letter-spacing:0.043568pt;}
.ls5_c00110{letter-spacing:0.093546pt;}
.ls4_c00110{letter-spacing:0.322215pt;}
.ws3_c00110{word-spacing:-51.970133pt;}
.ws4_c00110{word-spacing:-14.416515pt;}
.ws2_c00110{word-spacing:-14.322969pt;}
.ws0_c00110{word-spacing:-11.526781pt;}
.ws1_c00110{word-spacing:-9.242347pt;}
.ws10_c00110{word-spacing:-0.024896pt;}
.ws25_c00110{word-spacing:-0.018672pt;}
.ws6_c00110{word-spacing:-0.006753pt;}
.ws5_c00110{word-spacing:0.000000pt;}
.ws18_c00110{word-spacing:0.024896pt;}
.ws7_c00110{word-spacing:0.114801pt;}
.ws9_c00110{word-spacing:0.209343pt;}
.ws14_c00110{word-spacing:0.317424pt;}
.ws8_c00110{word-spacing:0.668548pt;}
.wsc_c00110{word-spacing:1.288368pt;}
.ws1f_c00110{word-spacing:1.898320pt;}
.wse_c00110{word-spacing:2.551840pt;}
.wsd_c00110{word-spacing:2.570512pt;}
.wsf_c00110{word-spacing:2.576736pt;}
.ws23_c00110{word-spacing:4.823600pt;}
.ws20_c00110{word-spacing:5.738528pt;}
.ws21_c00110{word-spacing:5.763424pt;}
.ws17_c00110{word-spacing:7.039344pt;}
.ws1a_c00110{word-spacing:8.651360pt;}
.ws1c_c00110{word-spacing:9.914832pt;}
.ws15_c00110{word-spacing:12.174144pt;}
.ws16_c00110{word-spacing:12.186592pt;}
.ws19_c00110{word-spacing:14.402336pt;}
.ws28_c00110{word-spacing:14.452894pt;}
.ws11_c00110{word-spacing:14.694864pt;}
.ws26_c00110{word-spacing:14.775109pt;}
.ws27_c00110{word-spacing:14.806291pt;}
.ws1d_c00110{word-spacing:14.981168pt;}
.ws1e_c00110{word-spacing:15.024736pt;}
.ws24_c00110{word-spacing:16.319328pt;}
.ws13_c00110{word-spacing:17.906448pt;}
.ws12_c00110{word-spacing:17.912672pt;}
.wsa_c00110{word-spacing:20.159536pt;}
.wsb_c00110{word-spacing:20.190656pt;}
.ws1b_c00110{word-spacing:24.615920pt;}
.ws22_c00110{word-spacing:25.929184pt;}
._0_c00110{margin-left:-1.546440pt;}
._1_c00110{width:1.222295pt;}
._2_c00110{width:5.271728pt;}
.fs3_c00110{font-size:33.608533pt;}
.fs2_c00110{font-size:41.388800pt;}
.fs4_c00110{font-size:51.970133pt;}
.fs0_c00110{font-size:62.240000pt;}
.fs1_c00110{font-size:67.530133pt;}
.y0_c00110{bottom:0.000000pt;}
.y2_c00110{bottom:97.547527pt;}
.y1_c00110{bottom:115.387067pt;}
.y24_c00110{bottom:132.826570pt;}
.y23_c00110{bottom:151.947067pt;}
.y22_c00110{bottom:165.062675pt;}
.y21_c00110{bottom:192.981983pt;}
.y20_c00110{bottom:219.782527pt;}
.y1f_c00110{bottom:246.583071pt;}
.y1e_c00110{bottom:273.383615pt;}
.y1d_c00110{bottom:300.263515pt;}
.y1c_c00110{bottom:327.064059pt;}
.y1b_c00110{bottom:353.943959pt;}
.y1a_c00110{bottom:380.744503pt;}
.y19_c00110{bottom:407.624403pt;}
.y18_c00110{bottom:434.424947pt;}
.y17_c00110{bottom:461.304847pt;}
.y16_c00110{bottom:488.105391pt;}
.y15_c00110{bottom:514.985291pt;}
.y14_c00110{bottom:541.785835pt;}
.y13_c00110{bottom:568.665735pt;}
.y12_c00110{bottom:595.466279pt;}
.y11_c00110{bottom:622.346179pt;}
.y10_c00110{bottom:649.226079pt;}
.yf_c00110{bottom:676.026623pt;}
.ye_c00110{bottom:702.906523pt;}
.yd_c00110{bottom:729.705291pt;}
.yc_c00110{bottom:756.585191pt;}
.yb_c00110{bottom:783.385735pt;}
.ya_c00110{bottom:810.265635pt;}
.y9_c00110{bottom:837.066179pt;}
.y8_c00110{bottom:863.946079pt;}
.y7_c00110{bottom:890.746623pt;}
.y6_c00110{bottom:917.626523pt;}
.y5_c00110{bottom:944.427067pt;}
.y4_c00110{bottom:966.426830pt;}
.y3_c00110{bottom:985.867067pt;}
.h6_c00110{height:34.967599pt;}
.h7_c00110{height:48.087599pt;}
.h3_c00110{height:55.645234pt;}
.h1_c00110{height:55.797187pt;}
.h5_c00110{height:55.815289pt;}
.h2_c00110{height:60.968367pt;}
.h4_c00110{height:65.911517pt;}
.h0_c00110{height:1122.666667pt;}
.w0_c00110{width:793.333333pt;}
.x0_c00110{left:0.000000pt;}
.x2_c00110{left:73.520052pt;}
.x3_c00110{left:74.880000pt;}
.x1_c00110{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1a4342f5f7cf0d1c4c52f9b5.woff2')format("woff");}.ff1_c00111{font-family:ff1_c00111;line-height:1.106934;font-style:normal;font-weight:normal;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_fd43c610b4192e19cdefce82.woff2')format("woff");}.ff2_c00111{font-family:ff2_c00111;line-height:1.104492;font-style:normal;font-weight:normal;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_1c7d8031066ae76e3b87c0c9.woff2')format("woff");}.ff3_c00111{font-family:ff3_c00111;line-height:1.133301;font-style:normal;font-weight:normal;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_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff4_c00111{font-family:ff4_c00111;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00111;src:url('chunks/assets/font_d6376e2d1b693bcbc41c5939.woff2')format("woff");}.ff5_c00111{font-family:ff5_c00111;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00111;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff6_c00111{font-family:ff6_c00111;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00111{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00111{vertical-align:-14.760000px;}
.v0_c00111{vertical-align:0.000000px;}
.v1_c00111{vertical-align:32.040036px;}
.ls16_c00111{letter-spacing:-0.450191px;}
.lsb_c00111{letter-spacing:-0.335249px;}
.ls23_c00111{letter-spacing:-0.298179px;}
.ls17_c00111{letter-spacing:-0.257252px;}
.ls20_c00111{letter-spacing:-0.251406px;}
.ls21_c00111{letter-spacing:-0.198786px;}
.ls19_c00111{letter-spacing:-0.128626px;}
.ls24_c00111{letter-spacing:-0.087700px;}
.lsf_c00111{letter-spacing:-0.075619px;}
.ls4_c00111{letter-spacing:-0.063018px;}
.ls18_c00111{letter-spacing:-0.058466px;}
.ls1b_c00111{letter-spacing:-0.052620px;}
.ls1f_c00111{letter-spacing:-0.046773px;}
.lse_c00111{letter-spacing:-0.042012px;}
.ls12_c00111{letter-spacing:-0.040926px;}
.ls6_c00111{letter-spacing:-0.035010px;}
.ls14_c00111{letter-spacing:-0.029233px;}
.ls7_c00111{letter-spacing:-0.028008px;}
.ls13_c00111{letter-spacing:-0.023387px;}
.lsd_c00111{letter-spacing:-0.021006px;}
.ls1a_c00111{letter-spacing:-0.017540px;}
.ls8_c00111{letter-spacing:-0.014004px;}
.ls22_c00111{letter-spacing:-0.011693px;}
.ls9_c00111{letter-spacing:-0.007002px;}
.ls15_c00111{letter-spacing:-0.005847px;}
.ls5_c00111{letter-spacing:0.000000px;}
.ls1_c00111{letter-spacing:0.014004px;}
.ls3_c00111{letter-spacing:0.017540px;}
.ls0_c00111{letter-spacing:0.023281px;}
.ls1e_c00111{letter-spacing:0.070160px;}
.lsa_c00111{letter-spacing:0.084024px;}
.ls25_c00111{letter-spacing:0.099393px;}
.ls2_c00111{letter-spacing:0.128626px;}
.ls1d_c00111{letter-spacing:0.263099px;}
.ls1c_c00111{letter-spacing:0.321565px;}
.lsc_c00111{letter-spacing:0.343098px;}
.ls11_c00111{letter-spacing:0.356645px;}
.ls10_c00111{letter-spacing:0.479424px;}
.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;}
}
.ws4_c00111{word-spacing:-58.466400px;}
.ws1_c00111{word-spacing:-19.549584px;}
.ws7_c00111{word-spacing:-16.458292px;}
.ws5_c00111{word-spacing:-16.154266px;}
.ws8_c00111{word-spacing:-16.107493px;}
.ws6_c00111{word-spacing:-15.745002px;}
.ws0_c00111{word-spacing:-12.967628px;}
.ws2_c00111{word-spacing:-12.609098px;}
.ws3_c00111{word-spacing:-10.397640px;}
.ws38_c00111{word-spacing:-0.362492px;}
.ws39_c00111{word-spacing:-0.251406px;}
.ws31_c00111{word-spacing:-0.116933px;}
.ws22_c00111{word-spacing:-0.028008px;}
.wsf_c00111{word-spacing:-0.007002px;}
.ws9_c00111{word-spacing:0.000000px;}
.wsc_c00111{word-spacing:0.014004px;}
.ws1b_c00111{word-spacing:0.021006px;}
.ws37_c00111{word-spacing:0.029233px;}
.ws2b_c00111{word-spacing:0.040926px;}
.ws2c_c00111{word-spacing:0.064313px;}
.ws29_c00111{word-spacing:0.140319px;}
.ws11_c00111{word-spacing:0.371106px;}
.ws3a_c00111{word-spacing:0.374185px;}
.ws1f_c00111{word-spacing:0.385110px;}
.ws2a_c00111{word-spacing:0.391725px;}
.ws10_c00111{word-spacing:0.728208px;}
.wsd_c00111{word-spacing:1.442412px;}
.ws23_c00111{word-spacing:2.771307px;}
.wsb_c00111{word-spacing:4.691340px;}
.wsa_c00111{word-spacing:4.698342px;}
.wse_c00111{word-spacing:6.497856px;}
.ws1a_c00111{word-spacing:7.534152px;}
.ws13_c00111{word-spacing:7.569162px;}
.ws18_c00111{word-spacing:8.997570px;}
.ws17_c00111{word-spacing:9.004572px;}
.ws2f_c00111{word-spacing:9.302004px;}
.ws1c_c00111{word-spacing:9.354672px;}
.ws2e_c00111{word-spacing:9.752196px;}
.ws2d_c00111{word-spacing:9.763889px;}
.ws30_c00111{word-spacing:9.781429px;}
.ws12_c00111{word-spacing:10.446984px;}
.ws1e_c00111{word-spacing:11.504286px;}
.ws14_c00111{word-spacing:12.575592px;}
.ws15_c00111{word-spacing:12.610602px;}
.ws25_c00111{word-spacing:13.722064px;}
.ws1d_c00111{word-spacing:14.053014px;}
.ws26_c00111{word-spacing:14.061169px;}
.ws24_c00111{word-spacing:14.078709px;}
.ws28_c00111{word-spacing:14.113789px;}
.ws27_c00111{word-spacing:14.312575px;}
.ws34_c00111{word-spacing:14.423661px;}
.ws36_c00111{word-spacing:14.470434px;}
.ws33_c00111{word-spacing:14.610753px;}
.ws35_c00111{word-spacing:14.710146px;}
.ws32_c00111{word-spacing:15.025865px;}
.ws16_c00111{word-spacing:19.801656px;}
.ws20_c00111{word-spacing:29.170332px;}
.ws21_c00111{word-spacing:29.520432px;}
.ws19_c00111{word-spacing:39.596310px;}
._3_c00111{margin-left:-2.709486px;}
._1_c00111{margin-left:-1.617462px;}
._0_c00111{width:1.001286px;}
._2_c00111{width:5.930694px;}
.fc0_c00111{color:rgb(0,0,0);}
.fs2_c00111{font-size:37.809600px;}
.fs1_c00111{font-size:46.562400px;}
.fs3_c00111{font-size:58.466400px;}
.fs0_c00111{font-size:70.020000px;}
.y0_c00111{bottom:0.000000px;}
.y2_c00111{bottom:109.740968px;}
.y1_c00111{bottom:129.810450px;}
.y27_c00111{bottom:149.429891px;}
.y26_c00111{bottom:170.940450px;}
.y25_c00111{bottom:185.249548px;}
.y24_c00111{bottom:203.070107px;}
.y23_c00111{bottom:224.670450px;}
.y22_c00111{bottom:238.889548px;}
.y21_c00111{bottom:256.710107px;}
.y20_c00111{bottom:278.400450px;}
.y1f_c00111{bottom:292.529548px;}
.y1e_c00111{bottom:310.350107px;}
.y1d_c00111{bottom:332.040450px;}
.y1c_c00111{bottom:346.710668px;}
.y1b_c00111{bottom:385.859365px;}
.y1a_c00111{bottom:416.009977px;}
.y19_c00111{bottom:446.249865px;}
.y18_c00111{bottom:476.400477px;}
.y17_c00111{bottom:506.640365px;}
.y16_c00111{bottom:536.790976px;}
.y15_c00111{bottom:567.030864px;}
.y14_c00111{bottom:597.088178px;}
.y13_c00111{bottom:627.328065px;}
.y12_c00111{bottom:657.478677px;}
.y11_c00111{bottom:687.718565px;}
.y10_c00111{bottom:717.869177px;}
.yf_c00111{bottom:748.109064px;}
.ye_c00111{bottom:778.259676px;}
.yd_c00111{bottom:808.499564px;}
.yc_c00111{bottom:838.650176px;}
.yb_c00111{bottom:868.890063px;}
.ya_c00111{bottom:899.040675px;}
.y9_c00111{bottom:929.280563px;}
.y8_c00111{bottom:959.519451px;}
.y7_c00111{bottom:989.670063px;}
.y6_c00111{bottom:1019.909951px;}
.y5_c00111{bottom:1050.060563px;}
.y4_c00111{bottom:1080.300441px;}
.y3_c00111{bottom:1110.451053px;}
.h7_c00111{height:39.338549px;}
.h9_c00111{height:39.698549px;}
.h8_c00111{height:54.098549px;}
.h3_c00111{height:62.600889px;}
.h1_c00111{height:62.771836px;}
.h6_c00111{height:73.673724px;}
.h2_c00111{height:73.782500px;}
.h4_c00111{height:73.786460px;}
.h5_c00111{height:74.037876px;}
.h0_c00111{height:1263.000000px;}
.w0_c00111{width:892.500000px;}
.x0_c00111{left:0.000000px;}
.x2_c00111{left:82.710059px;}
.x1_c00111{left:431.730000px;}
@media print{
.v2_c00111{vertical-align:-13.120000pt;}
.v0_c00111{vertical-align:0.000000pt;}
.v1_c00111{vertical-align:28.480032pt;}
.ls16_c00111{letter-spacing:-0.400170pt;}
.lsb_c00111{letter-spacing:-0.297999pt;}
.ls23_c00111{letter-spacing:-0.265048pt;}
.ls17_c00111{letter-spacing:-0.228669pt;}
.ls20_c00111{letter-spacing:-0.223472pt;}
.ls21_c00111{letter-spacing:-0.176698pt;}
.ls19_c00111{letter-spacing:-0.114334pt;}
.ls24_c00111{letter-spacing:-0.077955pt;}
.lsf_c00111{letter-spacing:-0.067217pt;}
.ls4_c00111{letter-spacing:-0.056016pt;}
.ls18_c00111{letter-spacing:-0.051970pt;}
.ls1b_c00111{letter-spacing:-0.046773pt;}
.ls1f_c00111{letter-spacing:-0.041576pt;}
.lse_c00111{letter-spacing:-0.037344pt;}
.ls12_c00111{letter-spacing:-0.036379pt;}
.ls6_c00111{letter-spacing:-0.031120pt;}
.ls14_c00111{letter-spacing:-0.025985pt;}
.ls7_c00111{letter-spacing:-0.024896pt;}
.ls13_c00111{letter-spacing:-0.020788pt;}
.lsd_c00111{letter-spacing:-0.018672pt;}
.ls1a_c00111{letter-spacing:-0.015591pt;}
.ls8_c00111{letter-spacing:-0.012448pt;}
.ls22_c00111{letter-spacing:-0.010394pt;}
.ls9_c00111{letter-spacing:-0.006224pt;}
.ls15_c00111{letter-spacing:-0.005197pt;}
.ls5_c00111{letter-spacing:0.000000pt;}
.ls1_c00111{letter-spacing:0.012448pt;}
.ls3_c00111{letter-spacing:0.015591pt;}
.ls0_c00111{letter-spacing:0.020694pt;}
.ls1e_c00111{letter-spacing:0.062364pt;}
.lsa_c00111{letter-spacing:0.074688pt;}
.ls25_c00111{letter-spacing:0.088349pt;}
.ls2_c00111{letter-spacing:0.114334pt;}
.ls1d_c00111{letter-spacing:0.233866pt;}
.ls1c_c00111{letter-spacing:0.285836pt;}
.lsc_c00111{letter-spacing:0.304976pt;}
.ls11_c00111{letter-spacing:0.317018pt;}
.ls10_c00111{letter-spacing:0.426155pt;}
.ws4_c00111{word-spacing:-51.970133pt;}
.ws1_c00111{word-spacing:-17.377408pt;}
.ws7_c00111{word-spacing:-14.629593pt;}
.ws5_c00111{word-spacing:-14.359348pt;}
.ws8_c00111{word-spacing:-14.317772pt;}
.ws6_c00111{word-spacing:-13.995557pt;}
.ws0_c00111{word-spacing:-11.526781pt;}
.ws2_c00111{word-spacing:-11.208087pt;}
.ws3_c00111{word-spacing:-9.242347pt;}
.ws38_c00111{word-spacing:-0.322215pt;}
.ws39_c00111{word-spacing:-0.223472pt;}
.ws31_c00111{word-spacing:-0.103940pt;}
.ws22_c00111{word-spacing:-0.024896pt;}
.wsf_c00111{word-spacing:-0.006224pt;}
.ws9_c00111{word-spacing:0.000000pt;}
.wsc_c00111{word-spacing:0.012448pt;}
.ws1b_c00111{word-spacing:0.018672pt;}
.ws37_c00111{word-spacing:0.025985pt;}
.ws2b_c00111{word-spacing:0.036379pt;}
.ws2c_c00111{word-spacing:0.057167pt;}
.ws29_c00111{word-spacing:0.124728pt;}
.ws11_c00111{word-spacing:0.329872pt;}
.ws3a_c00111{word-spacing:0.332609pt;}
.ws1f_c00111{word-spacing:0.342320pt;}
.ws2a_c00111{word-spacing:0.348200pt;}
.ws10_c00111{word-spacing:0.647296pt;}
.wsd_c00111{word-spacing:1.282144pt;}
.ws23_c00111{word-spacing:2.463384pt;}
.wsb_c00111{word-spacing:4.170080pt;}
.wsa_c00111{word-spacing:4.176304pt;}
.wse_c00111{word-spacing:5.775872pt;}
.ws1a_c00111{word-spacing:6.697024pt;}
.ws13_c00111{word-spacing:6.728144pt;}
.ws18_c00111{word-spacing:7.997840pt;}
.ws17_c00111{word-spacing:8.004064pt;}
.ws2f_c00111{word-spacing:8.268448pt;}
.ws1c_c00111{word-spacing:8.315264pt;}
.ws2e_c00111{word-spacing:8.668618pt;}
.ws2d_c00111{word-spacing:8.679012pt;}
.ws30_c00111{word-spacing:8.694603pt;}
.ws12_c00111{word-spacing:9.286208pt;}
.ws1e_c00111{word-spacing:10.226032pt;}
.ws14_c00111{word-spacing:11.178304pt;}
.ws15_c00111{word-spacing:11.209424pt;}
.ws25_c00111{word-spacing:12.197390pt;}
.ws1d_c00111{word-spacing:12.491568pt;}
.ws26_c00111{word-spacing:12.498817pt;}
.ws24_c00111{word-spacing:12.514408pt;}
.ws28_c00111{word-spacing:12.545590pt;}
.ws27_c00111{word-spacing:12.722289pt;}
.ws34_c00111{word-spacing:12.821032pt;}
.ws36_c00111{word-spacing:12.862608pt;}
.ws33_c00111{word-spacing:12.987336pt;}
.ws35_c00111{word-spacing:13.075686pt;}
.ws32_c00111{word-spacing:13.356324pt;}
.ws16_c00111{word-spacing:17.601472pt;}
.ws20_c00111{word-spacing:25.929184pt;}
.ws21_c00111{word-spacing:26.240384pt;}
.ws19_c00111{word-spacing:35.196720pt;}
._3_c00111{margin-left:-2.408432pt;}
._1_c00111{margin-left:-1.437744pt;}
._0_c00111{width:0.890032pt;}
._2_c00111{width:5.271728pt;}
.fs2_c00111{font-size:33.608533pt;}
.fs1_c00111{font-size:41.388800pt;}
.fs3_c00111{font-size:51.970133pt;}
.fs0_c00111{font-size:62.240000pt;}
.y0_c00111{bottom:0.000000pt;}
.y2_c00111{bottom:97.547527pt;}
.y1_c00111{bottom:115.387067pt;}
.y27_c00111{bottom:132.826570pt;}
.y26_c00111{bottom:151.947067pt;}
.y25_c00111{bottom:164.666265pt;}
.y24_c00111{bottom:180.506762pt;}
.y23_c00111{bottom:199.707067pt;}
.y22_c00111{bottom:212.346265pt;}
.y21_c00111{bottom:228.186762pt;}
.y20_c00111{bottom:247.467067pt;}
.y1f_c00111{bottom:260.026265pt;}
.y1e_c00111{bottom:275.866762pt;}
.y1d_c00111{bottom:295.147067pt;}
.y1c_c00111{bottom:308.187260pt;}
.y1b_c00111{bottom:342.986103pt;}
.y1a_c00111{bottom:369.786647pt;}
.y19_c00111{bottom:396.666547pt;}
.y18_c00111{bottom:423.467091pt;}
.y17_c00111{bottom:450.346991pt;}
.y16_c00111{bottom:477.147535pt;}
.y15_c00111{bottom:504.027435pt;}
.y14_c00111{bottom:530.745047pt;}
.y13_c00111{bottom:557.624947pt;}
.y12_c00111{bottom:584.425491pt;}
.y11_c00111{bottom:611.305391pt;}
.y10_c00111{bottom:638.105935pt;}
.yf_c00111{bottom:664.985835pt;}
.ye_c00111{bottom:691.786379pt;}
.yd_c00111{bottom:718.666279pt;}
.yc_c00111{bottom:745.466823pt;}
.yb_c00111{bottom:772.346723pt;}
.ya_c00111{bottom:799.147267pt;}
.y9_c00111{bottom:826.027167pt;}
.y8_c00111{bottom:852.906179pt;}
.y7_c00111{bottom:879.706723pt;}
.y6_c00111{bottom:906.586623pt;}
.y5_c00111{bottom:933.387167pt;}
.y4_c00111{bottom:960.267059pt;}
.y3_c00111{bottom:987.067603pt;}
.h7_c00111{height:34.967599pt;}
.h9_c00111{height:35.287599pt;}
.h8_c00111{height:48.087599pt;}
.h3_c00111{height:55.645234pt;}
.h1_c00111{height:55.797187pt;}
.h6_c00111{height:65.487755pt;}
.h2_c00111{height:65.584445pt;}
.h4_c00111{height:65.587964pt;}
.h5_c00111{height:65.811446pt;}
.h0_c00111{height:1122.666667pt;}
.w0_c00111{width:793.333333pt;}
.x0_c00111{left:0.000000pt;}
.x2_c00111{left:73.520052pt;}
.x1_c00111{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_206ec2d4f5927722800a1d70.woff2')format("woff");}.ff1_c00112{font-family:ff1_c00112;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00112;src:url('chunks/assets/font_71f4419739fd18aeb8508b0e.woff2')format("woff");}.ff2_c00112{font-family:ff2_c00112;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00112;src:url('chunks/assets/font_600184873ca1f1977fe0ff77.woff2')format("woff");}.ff3_c00112{font-family:ff3_c00112;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00112;src:url('chunks/assets/font_135a09bac1b754bba0ef15eb.woff2')format("woff");}.ff4_c00112{font-family:ff4_c00112;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00112;src:url('chunks/assets/font_b70a6b62e094eb5c396fe91e.woff2')format("woff");}.ff5_c00112{font-family:ff5_c00112;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00112;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff6_c00112{font-family:ff6_c00112;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00112;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff7_c00112{font-family:ff7_c00112;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00112{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00112{vertical-align:-14.760000px;}
.v0_c00112{vertical-align:0.000000px;}
.v1_c00112{vertical-align:32.053572px;}
.ls15_c00112{letter-spacing:-0.456038px;}
.lse_c00112{letter-spacing:-0.105030px;}
.lsf_c00112{letter-spacing:-0.075619px;}
.ls6_c00112{letter-spacing:-0.063018px;}
.lsd_c00112{letter-spacing:-0.042012px;}
.ls9_c00112{letter-spacing:-0.035010px;}
.lsc_c00112{letter-spacing:-0.028008px;}
.ls16_c00112{letter-spacing:-0.023387px;}
.lsa_c00112{letter-spacing:-0.021006px;}
.ls14_c00112{letter-spacing:-0.017540px;}
.ls8_c00112{letter-spacing:-0.014004px;}
.lsb_c00112{letter-spacing:-0.007002px;}
.ls10_c00112{letter-spacing:-0.005847px;}
.ls7_c00112{letter-spacing:0.000000px;}
.ls5_c00112{letter-spacing:0.005847px;}
.ls1_c00112{letter-spacing:0.007002px;}
.ls11_c00112{letter-spacing:0.011693px;}
.ls2_c00112{letter-spacing:0.021006px;}
.ls3_c00112{letter-spacing:0.023281px;}
.ls17_c00112{letter-spacing:0.093546px;}
.ls13_c00112{letter-spacing:0.146166px;}
.ls4_c00112{letter-spacing:0.336096px;}
.ls12_c00112{letter-spacing:0.350798px;}
.ls0_c00112{letter-spacing:4.292226px;}
.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;}
}
.ws2_c00112{word-spacing:-58.466400px;}
.ws0_c00112{word-spacing:-12.967628px;}
.ws1_c00112{word-spacing:-10.397640px;}
.ws26_c00112{word-spacing:-0.713290px;}
.ws27_c00112{word-spacing:-0.491118px;}
.ws9_c00112{word-spacing:-0.350100px;}
.ws2b_c00112{word-spacing:-0.081853px;}
.ws21_c00112{word-spacing:-0.007002px;}
.ws3_c00112{word-spacing:0.000000px;}
.wsd_c00112{word-spacing:0.007002px;}
.ws2c_c00112{word-spacing:0.011693px;}
.ws1d_c00112{word-spacing:0.091026px;}
.ws14_c00112{word-spacing:0.357102px;}
.ws1c_c00112{word-spacing:0.385110px;}
.ws13_c00112{word-spacing:1.057302px;}
.ws16_c00112{word-spacing:2.149614px;}
.wsc_c00112{word-spacing:2.499714px;}
.ws2a_c00112{word-spacing:2.554982px;}
.ws15_c00112{word-spacing:2.898828px;}
.ws28_c00112{word-spacing:2.911627px;}
.ws29_c00112{word-spacing:3.350125px;}
.ws7_c00112{word-spacing:3.956130px;}
.ws8_c00112{word-spacing:4.334238px;}
.ws5_c00112{word-spacing:4.698342px;}
.ws4_c00112{word-spacing:5.398542px;}
.ws25_c00112{word-spacing:5.419835px;}
.ws22_c00112{word-spacing:5.770634px;}
.ws1e_c00112{word-spacing:6.084738px;}
.ws1f_c00112{word-spacing:6.098742px;}
.ws24_c00112{word-spacing:6.121432px;}
.ws23_c00112{word-spacing:6.138972px;}
.ws20_c00112{word-spacing:7.177050px;}
.ws10_c00112{word-spacing:7.555158px;}
.ws11_c00112{word-spacing:8.248356px;}
.ws12_c00112{word-spacing:8.668476px;}
.ws17_c00112{word-spacing:8.962560px;}
.ws19_c00112{word-spacing:8.976564px;}
.ws18_c00112{word-spacing:8.997570px;}
.wsb_c00112{word-spacing:9.025578px;}
.wsf_c00112{word-spacing:9.361674px;}
.wse_c00112{word-spacing:9.704772px;}
.ws1b_c00112{word-spacing:11.140182px;}
.ws1a_c00112{word-spacing:11.504286px;}
.ws6_c00112{word-spacing:15.124320px;}
.wsa_c00112{word-spacing:15.502428px;}
._1_c00112{margin-left:-5.118462px;}
._3_c00112{margin-left:-2.877822px;}
._2_c00112{margin-left:-1.029294px;}
._0_c00112{width:1.141326px;}
._4_c00112{width:5.930694px;}
.fc0_c00112{color:rgb(0,0,0);}
.fs2_c00112{font-size:37.809600px;}
.fs1_c00112{font-size:46.562400px;}
.fs3_c00112{font-size:58.466400px;}
.fs0_c00112{font-size:70.020000px;}
.y0_c00112{bottom:0.000000px;}
.y2_c00112{bottom:109.740968px;}
.y1_c00112{bottom:129.810450px;}
.y23_c00112{bottom:149.429647px;}
.y22_c00112{bottom:187.770450px;}
.y21_c00112{bottom:209.280600px;}
.y20_c00112{bottom:243.930730px;}
.y1f_c00112{bottom:265.530450px;}
.y1e_c00112{bottom:280.200770px;}
.y1d_c00112{bottom:325.468978px;}
.y1c_c00112{bottom:355.619590px;}
.y1b_c00112{bottom:385.859478px;}
.y1a_c00112{bottom:416.010090px;}
.y19_c00112{bottom:446.249977px;}
.y18_c00112{bottom:476.400589px;}
.y17_c00112{bottom:506.640477px;}
.y16_c00112{bottom:536.791089px;}
.y15_c00112{bottom:567.030976px;}
.y14_c00112{bottom:597.090562px;}
.y13_c00112{bottom:627.327057px;}
.y12_c00112{bottom:657.477669px;}
.y11_c00112{bottom:687.717557px;}
.y10_c00112{bottom:717.868169px;}
.yf_c00112{bottom:748.108056px;}
.ye_c00112{bottom:778.258668px;}
.yd_c00112{bottom:808.498556px;}
.yc_c00112{bottom:838.649168px;}
.yb_c00112{bottom:868.889055px;}
.ya_c00112{bottom:899.039667px;}
.y9_c00112{bottom:929.279555px;}
.y8_c00112{bottom:959.519442px;}
.y7_c00112{bottom:989.670054px;}
.y6_c00112{bottom:1019.909942px;}
.y5_c00112{bottom:1050.060553px;}
.y4_c00112{bottom:1080.300441px;}
.y3_c00112{bottom:1110.451053px;}
.h8_c00112{height:39.337949px;}
.h6_c00112{height:39.338549px;}
.h7_c00112{height:54.098549px;}
.h3_c00112{height:62.600889px;}
.h1_c00112{height:62.771836px;}
.h2_c00112{height:63.216299px;}
.h5_c00112{height:73.674672px;}
.h4_c00112{height:73.682358px;}
.h0_c00112{height:1263.000000px;}
.w0_c00112{width:892.500000px;}
.x0_c00112{left:0.000000px;}
.x2_c00112{left:82.710059px;}
.x1_c00112{left:431.730000px;}
@media print{
.v2_c00112{vertical-align:-13.120000pt;}
.v0_c00112{vertical-align:0.000000pt;}
.v1_c00112{vertical-align:28.492064pt;}
.ls15_c00112{letter-spacing:-0.405367pt;}
.lse_c00112{letter-spacing:-0.093360pt;}
.lsf_c00112{letter-spacing:-0.067217pt;}
.ls6_c00112{letter-spacing:-0.056016pt;}
.lsd_c00112{letter-spacing:-0.037344pt;}
.ls9_c00112{letter-spacing:-0.031120pt;}
.lsc_c00112{letter-spacing:-0.024896pt;}
.ls16_c00112{letter-spacing:-0.020788pt;}
.lsa_c00112{letter-spacing:-0.018672pt;}
.ls14_c00112{letter-spacing:-0.015591pt;}
.ls8_c00112{letter-spacing:-0.012448pt;}
.lsb_c00112{letter-spacing:-0.006224pt;}
.ls10_c00112{letter-spacing:-0.005197pt;}
.ls7_c00112{letter-spacing:0.000000pt;}
.ls5_c00112{letter-spacing:0.005197pt;}
.ls1_c00112{letter-spacing:0.006224pt;}
.ls11_c00112{letter-spacing:0.010394pt;}
.ls2_c00112{letter-spacing:0.018672pt;}
.ls3_c00112{letter-spacing:0.020694pt;}
.ls17_c00112{letter-spacing:0.083152pt;}
.ls13_c00112{letter-spacing:0.129925pt;}
.ls4_c00112{letter-spacing:0.298752pt;}
.ls12_c00112{letter-spacing:0.311821pt;}
.ls0_c00112{letter-spacing:3.815312pt;}
.ws2_c00112{word-spacing:-51.970133pt;}
.ws0_c00112{word-spacing:-11.526781pt;}
.ws1_c00112{word-spacing:-9.242347pt;}
.ws26_c00112{word-spacing:-0.634036pt;}
.ws27_c00112{word-spacing:-0.436549pt;}
.ws9_c00112{word-spacing:-0.311200pt;}
.ws2b_c00112{word-spacing:-0.072758pt;}
.ws21_c00112{word-spacing:-0.006224pt;}
.ws3_c00112{word-spacing:0.000000pt;}
.wsd_c00112{word-spacing:0.006224pt;}
.ws2c_c00112{word-spacing:0.010394pt;}
.ws1d_c00112{word-spacing:0.080912pt;}
.ws14_c00112{word-spacing:0.317424pt;}
.ws1c_c00112{word-spacing:0.342320pt;}
.ws13_c00112{word-spacing:0.939824pt;}
.ws16_c00112{word-spacing:1.910768pt;}
.wsc_c00112{word-spacing:2.221968pt;}
.ws2a_c00112{word-spacing:2.271095pt;}
.ws15_c00112{word-spacing:2.576736pt;}
.ws28_c00112{word-spacing:2.588113pt;}
.ws29_c00112{word-spacing:2.977889pt;}
.ws7_c00112{word-spacing:3.516560pt;}
.ws8_c00112{word-spacing:3.852656pt;}
.ws5_c00112{word-spacing:4.176304pt;}
.ws4_c00112{word-spacing:4.798704pt;}
.ws25_c00112{word-spacing:4.817631pt;}
.ws22_c00112{word-spacing:5.129452pt;}
.ws1e_c00112{word-spacing:5.408656pt;}
.ws1f_c00112{word-spacing:5.421104pt;}
.ws24_c00112{word-spacing:5.441273pt;}
.ws23_c00112{word-spacing:5.456864pt;}
.ws20_c00112{word-spacing:6.379600pt;}
.ws10_c00112{word-spacing:6.715696pt;}
.ws11_c00112{word-spacing:7.331872pt;}
.ws12_c00112{word-spacing:7.705312pt;}
.ws17_c00112{word-spacing:7.966720pt;}
.ws19_c00112{word-spacing:7.979168pt;}
.ws18_c00112{word-spacing:7.997840pt;}
.wsb_c00112{word-spacing:8.022736pt;}
.wsf_c00112{word-spacing:8.321488pt;}
.wse_c00112{word-spacing:8.626464pt;}
.ws1b_c00112{word-spacing:9.902384pt;}
.ws1a_c00112{word-spacing:10.226032pt;}
.ws6_c00112{word-spacing:13.443840pt;}
.wsa_c00112{word-spacing:13.779936pt;}
._1_c00112{margin-left:-4.549744pt;}
._3_c00112{margin-left:-2.558064pt;}
._2_c00112{margin-left:-0.914928pt;}
._0_c00112{width:1.014512pt;}
._4_c00112{width:5.271728pt;}
.fs2_c00112{font-size:33.608533pt;}
.fs1_c00112{font-size:41.388800pt;}
.fs3_c00112{font-size:51.970133pt;}
.fs0_c00112{font-size:62.240000pt;}
.y0_c00112{bottom:0.000000pt;}
.y2_c00112{bottom:97.547527pt;}
.y1_c00112{bottom:115.387067pt;}
.y23_c00112{bottom:132.826352pt;}
.y22_c00112{bottom:166.907067pt;}
.y21_c00112{bottom:186.027200pt;}
.y20_c00112{bottom:216.827316pt;}
.y1f_c00112{bottom:236.027067pt;}
.y1e_c00112{bottom:249.067351pt;}
.y1d_c00112{bottom:289.305759pt;}
.y1c_c00112{bottom:316.106303pt;}
.y1b_c00112{bottom:342.986203pt;}
.y1a_c00112{bottom:369.786747pt;}
.y19_c00112{bottom:396.666647pt;}
.y18_c00112{bottom:423.467191pt;}
.y17_c00112{bottom:450.347091pt;}
.y16_c00112{bottom:477.147635pt;}
.y15_c00112{bottom:504.027535pt;}
.y14_c00112{bottom:530.747167pt;}
.y13_c00112{bottom:557.624051pt;}
.y12_c00112{bottom:584.424595pt;}
.y11_c00112{bottom:611.304495pt;}
.y10_c00112{bottom:638.105039pt;}
.yf_c00112{bottom:664.984939pt;}
.ye_c00112{bottom:691.785483pt;}
.yd_c00112{bottom:718.665383pt;}
.yc_c00112{bottom:745.465927pt;}
.yb_c00112{bottom:772.345827pt;}
.ya_c00112{bottom:799.146371pt;}
.y9_c00112{bottom:826.026271pt;}
.y8_c00112{bottom:852.906171pt;}
.y7_c00112{bottom:879.706715pt;}
.y6_c00112{bottom:906.586615pt;}
.y5_c00112{bottom:933.387159pt;}
.y4_c00112{bottom:960.267059pt;}
.y3_c00112{bottom:987.067603pt;}
.h8_c00112{height:34.967066pt;}
.h6_c00112{height:34.967599pt;}
.h7_c00112{height:48.087599pt;}
.h3_c00112{height:55.645234pt;}
.h1_c00112{height:55.797187pt;}
.h2_c00112{height:56.192266pt;}
.h5_c00112{height:65.488598pt;}
.h4_c00112{height:65.495430pt;}
.h0_c00112{height:1122.666667pt;}
.w0_c00112{width:793.333333pt;}
.x0_c00112{left:0.000000pt;}
.x2_c00112{left:73.520052pt;}
.x1_c00112{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a4806452436f0dfab904b931.woff2')format("woff");}.ff1_c00113{font-family:ff1_c00113;line-height:1.106934;font-style:normal;font-weight:normal;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_b99dd9dd678c293349c95b7a.woff2')format("woff");}.ff2_c00113{font-family:ff2_c00113;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00113{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00113{vertical-align:0.000000px;}
.lsc_c00113{letter-spacing:-0.077022px;}
.ls5_c00113{letter-spacing:-0.063018px;}
.lsb_c00113{letter-spacing:-0.049014px;}
.lsa_c00113{letter-spacing:-0.035010px;}
.lsd_c00113{letter-spacing:-0.028008px;}
.ls8_c00113{letter-spacing:-0.021006px;}
.ls7_c00113{letter-spacing:-0.014004px;}
.ls9_c00113{letter-spacing:-0.007002px;}
.ls6_c00113{letter-spacing:0.000000px;}
.ls0_c00113{letter-spacing:0.007002px;}
.ls3_c00113{letter-spacing:0.014004px;}
.ls4_c00113{letter-spacing:0.021006px;}
.ls1_c00113{letter-spacing:0.028008px;}
.ls2_c00113{letter-spacing:0.035010px;}
.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:-19.444554px;}
.ws1_c00113{word-spacing:0.000000px;}
.ws5_c00113{word-spacing:0.007002px;}
.wsb_c00113{word-spacing:0.063018px;}
.ws11_c00113{word-spacing:0.308088px;}
.ws4_c00113{word-spacing:0.315090px;}
.ws1f_c00113{word-spacing:0.350100px;}
.ws3_c00113{word-spacing:0.357102px;}
.ws17_c00113{word-spacing:0.378108px;}
.wse_c00113{word-spacing:1.036296px;}
.ws1e_c00113{word-spacing:5.048442px;}
.ws1d_c00113{word-spacing:6.798942px;}
.ws1c_c00113{word-spacing:6.826950px;}
.wsd_c00113{word-spacing:7.205058px;}
.ws14_c00113{word-spacing:7.527150px;}
.ws8_c00113{word-spacing:7.562160px;}
.ws7_c00113{word-spacing:7.583166px;}
.wsf_c00113{word-spacing:7.905258px;}
.ws10_c00113{word-spacing:7.919262px;}
.ws13_c00113{word-spacing:8.255358px;}
.ws12_c00113{word-spacing:8.262360px;}
.wsc_c00113{word-spacing:9.354672px;}
.ws16_c00113{word-spacing:12.197484px;}
.ws6_c00113{word-spacing:12.232494px;}
.ws15_c00113{word-spacing:12.610602px;}
.ws9_c00113{word-spacing:13.688910px;}
.wsa_c00113{word-spacing:13.716918px;}
.ws1a_c00113{word-spacing:14.753214px;}
.ws1b_c00113{word-spacing:14.774220px;}
.ws19_c00113{word-spacing:25.151184px;}
.ws18_c00113{word-spacing:25.571304px;}
.ws2_c00113{word-spacing:38.496996px;}
._2_c00113{margin-left:-7.919262px;}
._0_c00113{margin-left:-1.232352px;}
._1_c00113{width:1.344384px;}
.fc0_c00113{color:rgb(0,0,0);}
.fs0_c00113{font-size:70.020000px;}
.y0_c00113{bottom:0.000000px;}
.y2_c00113{bottom:109.740968px;}
.y1_c00113{bottom:129.810450px;}
.y20_c00113{bottom:234.835199px;}
.y1f_c00113{bottom:265.075086px;}
.y1e_c00113{bottom:295.225698px;}
.y1d_c00113{bottom:325.465586px;}
.y1c_c00113{bottom:355.616198px;}
.y1b_c00113{bottom:385.856085px;}
.y1a_c00113{bottom:416.006697px;}
.y19_c00113{bottom:446.246585px;}
.y18_c00113{bottom:476.397197px;}
.y17_c00113{bottom:506.637084px;}
.y16_c00113{bottom:536.787696px;}
.y15_c00113{bottom:567.027584px;}
.y14_c00113{bottom:597.087170px;}
.y13_c00113{bottom:627.327057px;}
.y12_c00113{bottom:657.477669px;}
.y11_c00113{bottom:687.717557px;}
.y10_c00113{bottom:717.868169px;}
.yf_c00113{bottom:748.108056px;}
.ye_c00113{bottom:778.258668px;}
.yd_c00113{bottom:808.498556px;}
.yc_c00113{bottom:838.649168px;}
.yb_c00113{bottom:868.889055px;}
.ya_c00113{bottom:899.039667px;}
.y9_c00113{bottom:929.279555px;}
.y8_c00113{bottom:959.519442px;}
.y7_c00113{bottom:989.670054px;}
.y6_c00113{bottom:1019.909942px;}
.y5_c00113{bottom:1050.060553px;}
.y4_c00113{bottom:1080.300441px;}
.y3_c00113{bottom:1110.451053px;}
.h1_c00113{height:62.771836px;}
.h0_c00113{height:1263.000000px;}
.w0_c00113{width:892.500000px;}
.x0_c00113{left:0.000000px;}
.x2_c00113{left:82.710059px;}
.x3_c00113{left:88.560230px;}
.x1_c00113{left:431.730000px;}
@media print{
.v0_c00113{vertical-align:0.000000pt;}
.lsc_c00113{letter-spacing:-0.068464pt;}
.ls5_c00113{letter-spacing:-0.056016pt;}
.lsb_c00113{letter-spacing:-0.043568pt;}
.lsa_c00113{letter-spacing:-0.031120pt;}
.lsd_c00113{letter-spacing:-0.024896pt;}
.ls8_c00113{letter-spacing:-0.018672pt;}
.ls7_c00113{letter-spacing:-0.012448pt;}
.ls9_c00113{letter-spacing:-0.006224pt;}
.ls6_c00113{letter-spacing:0.000000pt;}
.ls0_c00113{letter-spacing:0.006224pt;}
.ls3_c00113{letter-spacing:0.012448pt;}
.ls4_c00113{letter-spacing:0.018672pt;}
.ls1_c00113{letter-spacing:0.024896pt;}
.ls2_c00113{letter-spacing:0.031120pt;}
.ws0_c00113{word-spacing:-17.284048pt;}
.ws1_c00113{word-spacing:0.000000pt;}
.ws5_c00113{word-spacing:0.006224pt;}
.wsb_c00113{word-spacing:0.056016pt;}
.ws11_c00113{word-spacing:0.273856pt;}
.ws4_c00113{word-spacing:0.280080pt;}
.ws1f_c00113{word-spacing:0.311200pt;}
.ws3_c00113{word-spacing:0.317424pt;}
.ws17_c00113{word-spacing:0.336096pt;}
.wse_c00113{word-spacing:0.921152pt;}
.ws1e_c00113{word-spacing:4.487504pt;}
.ws1d_c00113{word-spacing:6.043504pt;}
.ws1c_c00113{word-spacing:6.068400pt;}
.wsd_c00113{word-spacing:6.404496pt;}
.ws14_c00113{word-spacing:6.690800pt;}
.ws8_c00113{word-spacing:6.721920pt;}
.ws7_c00113{word-spacing:6.740592pt;}
.wsf_c00113{word-spacing:7.026896pt;}
.ws10_c00113{word-spacing:7.039344pt;}
.ws13_c00113{word-spacing:7.338096pt;}
.ws12_c00113{word-spacing:7.344320pt;}
.wsc_c00113{word-spacing:8.315264pt;}
.ws16_c00113{word-spacing:10.842208pt;}
.ws6_c00113{word-spacing:10.873328pt;}
.ws15_c00113{word-spacing:11.209424pt;}
.ws9_c00113{word-spacing:12.167920pt;}
.wsa_c00113{word-spacing:12.192816pt;}
.ws1a_c00113{word-spacing:13.113968pt;}
.ws1b_c00113{word-spacing:13.132640pt;}
.ws19_c00113{word-spacing:22.356608pt;}
.ws18_c00113{word-spacing:22.730048pt;}
.ws2_c00113{word-spacing:34.219552pt;}
._2_c00113{margin-left:-7.039344pt;}
._0_c00113{margin-left:-1.095424pt;}
._1_c00113{width:1.195008pt;}
.fs0_c00113{font-size:62.240000pt;}
.y0_c00113{bottom:0.000000pt;}
.y2_c00113{bottom:97.547527pt;}
.y1_c00113{bottom:115.387067pt;}
.y20_c00113{bottom:208.742399pt;}
.y1f_c00113{bottom:235.622299pt;}
.y1e_c00113{bottom:262.422843pt;}
.y1d_c00113{bottom:289.302743pt;}
.y1c_c00113{bottom:316.103287pt;}
.y1b_c00113{bottom:342.983187pt;}
.y1a_c00113{bottom:369.783731pt;}
.y19_c00113{bottom:396.663631pt;}
.y18_c00113{bottom:423.464175pt;}
.y17_c00113{bottom:450.344075pt;}
.y16_c00113{bottom:477.144619pt;}
.y15_c00113{bottom:504.024519pt;}
.y14_c00113{bottom:530.744151pt;}
.y13_c00113{bottom:557.624051pt;}
.y12_c00113{bottom:584.424595pt;}
.y11_c00113{bottom:611.304495pt;}
.y10_c00113{bottom:638.105039pt;}
.yf_c00113{bottom:664.984939pt;}
.ye_c00113{bottom:691.785483pt;}
.yd_c00113{bottom:718.665383pt;}
.yc_c00113{bottom:745.465927pt;}
.yb_c00113{bottom:772.345827pt;}
.ya_c00113{bottom:799.146371pt;}
.y9_c00113{bottom:826.026271pt;}
.y8_c00113{bottom:852.906171pt;}
.y7_c00113{bottom:879.706715pt;}
.y6_c00113{bottom:906.586615pt;}
.y5_c00113{bottom:933.387159pt;}
.y4_c00113{bottom:960.267059pt;}
.y3_c00113{bottom:987.067603pt;}
.h1_c00113{height:55.797187pt;}
.h0_c00113{height:1122.666667pt;}
.w0_c00113{width:793.333333pt;}
.x0_c00113{left:0.000000pt;}
.x2_c00113{left:73.520052pt;}
.x3_c00113{left:78.720204pt;}
.x1_c00113{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bdd02e60512e54d7c477935a.woff2')format("woff");}.ff1_c00114{font-family:ff1_c00114;line-height:1.106934;font-style:normal;font-weight:normal;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_b468b8d091c262112843dbec.woff2')format("woff");}.ff2_c00114{font-family:ff2_c00114;line-height:1.104492;font-style:normal;font-weight:normal;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_b4d614332ca05083dd8e7c32.woff2')format("woff");}.ff3_c00114{font-family:ff3_c00114;line-height:1.133301;font-style:normal;font-weight:normal;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_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff4_c00114{font-family:ff4_c00114;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00114;src:url('chunks/assets/font_1e003623ff25edee4059724e.woff2')format("woff");}.ff5_c00114{font-family:ff5_c00114;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00114;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff6_c00114{font-family:ff6_c00114;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00114{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00114{vertical-align:-32.400000px;}
.v3_c00114{vertical-align:-14.760000px;}
.v0_c00114{vertical-align:0.000000px;}
.v1_c00114{vertical-align:32.403132px;}
.ls13_c00114{letter-spacing:-1.064088px;}
.ls14_c00114{letter-spacing:-0.268945px;}
.ls17_c00114{letter-spacing:-0.128626px;}
.ls11_c00114{letter-spacing:-0.075619px;}
.lsf_c00114{letter-spacing:-0.070020px;}
.ls8_c00114{letter-spacing:-0.063018px;}
.ls15_c00114{letter-spacing:-0.058466px;}
.lsd_c00114{letter-spacing:-0.049014px;}
.ls10_c00114{letter-spacing:-0.042012px;}
.lse_c00114{letter-spacing:-0.035010px;}
.lsb_c00114{letter-spacing:-0.028008px;}
.lsc_c00114{letter-spacing:-0.021006px;}
.lsa_c00114{letter-spacing:-0.014004px;}
.ls16_c00114{letter-spacing:-0.011693px;}
.ls9_c00114{letter-spacing:0.000000px;}
.ls4_c00114{letter-spacing:0.007002px;}
.ls3_c00114{letter-spacing:0.015653px;}
.ls5_c00114{letter-spacing:0.021006px;}
.ls2_c00114{letter-spacing:0.023281px;}
.ls0_c00114{letter-spacing:0.028008px;}
.ls7_c00114{letter-spacing:0.029233px;}
.ls1_c00114{letter-spacing:0.049014px;}
.ls6_c00114{letter-spacing:0.233866px;}
.ls12_c00114{letter-spacing:0.245559px;}
.sc__c00114{text-shadow:none;}
.sc0_c00114{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00114{-webkit-text-stroke:0px transparent;}
.sc0_c00114{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00114{word-spacing:-58.466400px;}
.ws1_c00114{word-spacing:-19.465560px;}
.ws4_c00114{word-spacing:-16.429058px;}
.ws5_c00114{word-spacing:-16.136726px;}
.ws0_c00114{word-spacing:-12.967628px;}
.ws2_c00114{word-spacing:-10.397640px;}
.ws25_c00114{word-spacing:-0.333258px;}
.ws22_c00114{word-spacing:-0.233866px;}
.wsd_c00114{word-spacing:-0.063018px;}
.ws17_c00114{word-spacing:-0.042012px;}
.ws6_c00114{word-spacing:0.000000px;}
.ws1e_c00114{word-spacing:0.056016px;}
.ws26_c00114{word-spacing:0.140319px;}
.ws24_c00114{word-spacing:0.280639px;}
.ws9_c00114{word-spacing:0.315090px;}
.ws14_c00114{word-spacing:0.336096px;}
.ws10_c00114{word-spacing:0.357102px;}
.ws23_c00114{word-spacing:1.438273px;}
.wsc_c00114{word-spacing:1.785510px;}
.ws1f_c00114{word-spacing:2.184624px;}
.wsa_c00114{word-spacing:2.527722px;}
.wsf_c00114{word-spacing:3.227922px;}
.ws8_c00114{word-spacing:4.691340px;}
.wsb_c00114{word-spacing:4.712346px;}
.ws15_c00114{word-spacing:5.762646px;}
.ws16_c00114{word-spacing:6.483852px;}
.ws21_c00114{word-spacing:6.847956px;}
.ws7_c00114{word-spacing:7.198056px;}
.ws13_c00114{word-spacing:7.527150px;}
.ws12_c00114{word-spacing:7.541154px;}
.wse_c00114{word-spacing:7.548156px;}
.ws20_c00114{word-spacing:11.518290px;}
.ws1a_c00114{word-spacing:12.939696px;}
.ws19_c00114{word-spacing:12.981708px;}
.ws18_c00114{word-spacing:13.282794px;}
.ws1c_c00114{word-spacing:22.259358px;}
.ws1d_c00114{word-spacing:22.287366px;}
.ws11_c00114{word-spacing:23.764788px;}
.ws1b_c00114{word-spacing:32.020146px;}
._3_c00114{margin-left:-13.317804px;}
._0_c00114{margin-left:-6.840954px;}
._5_c00114{margin-left:-2.711592px;}
._1_c00114{margin-left:-1.183338px;}
._2_c00114{width:1.246356px;}
._4_c00114{width:5.930694px;}
.fc0_c00114{color:rgb(0,0,0);}
.fs2_c00114{font-size:37.809600px;}
.fs1_c00114{font-size:46.562400px;}
.fs3_c00114{font-size:58.466400px;}
.fs0_c00114{font-size:70.020000px;}
.y0_c00114{bottom:0.000000px;}
.y2_c00114{bottom:109.740968px;}
.y1_c00114{bottom:129.810450px;}
.y23_c00114{bottom:153.120600px;}
.y22_c00114{bottom:170.940450px;}
.y21_c00114{bottom:185.699415px;}
.y20_c00114{bottom:234.839451px;}
.y1f_c00114{bottom:265.079339px;}
.y1e_c00114{bottom:295.229951px;}
.y1d_c00114{bottom:325.469838px;}
.y1c_c00114{bottom:355.618479px;}
.y1b_c00114{bottom:385.858366px;}
.y1a_c00114{bottom:416.008979px;}
.y19_c00114{bottom:446.248866px;}
.y18_c00114{bottom:476.399478px;}
.y17_c00114{bottom:506.639365px;}
.y16_c00114{bottom:536.789977px;}
.y15_c00114{bottom:567.029865px;}
.y14_c00114{bottom:597.089451px;}
.y13_c00114{bottom:627.329338px;}
.y12_c00114{bottom:657.479950px;}
.y11_c00114{bottom:687.719838px;}
.y10_c00114{bottom:717.870450px;}
.yf_c00114{bottom:748.109339px;}
.ye_c00114{bottom:778.259951px;}
.yd_c00114{bottom:808.499838px;}
.yc_c00114{bottom:846.750450px;}
.yb_c00114{bottom:868.889988px;}
.ya_c00114{bottom:899.039667px;}
.y9_c00114{bottom:929.279555px;}
.y8_c00114{bottom:959.519442px;}
.y7_c00114{bottom:989.670054px;}
.y6_c00114{bottom:1019.909942px;}
.y5_c00114{bottom:1050.060553px;}
.y4_c00114{bottom:1080.300441px;}
.y3_c00114{bottom:1110.451053px;}
.h9_c00114{height:39.337949px;}
.h8_c00114{height:39.338549px;}
.h4_c00114{height:41.742464px;}
.h2_c00114{height:62.600889px;}
.h1_c00114{height:62.771836px;}
.h7_c00114{height:62.776576px;}
.h5_c00114{height:73.786910px;}
.h3_c00114{height:74.031918px;}
.h6_c00114{height:74.150348px;}
.h0_c00114{height:1263.000000px;}
.w0_c00114{width:892.500000px;}
.x0_c00114{left:0.000000px;}
.x2_c00114{left:82.710059px;}
.x3_c00114{left:88.560230px;}
.x1_c00114{left:431.730000px;}
@media print{
.v2_c00114{vertical-align:-28.800000pt;}
.v3_c00114{vertical-align:-13.120000pt;}
.v0_c00114{vertical-align:0.000000pt;}
.v1_c00114{vertical-align:28.802784pt;}
.ls13_c00114{letter-spacing:-0.945856pt;}
.ls14_c00114{letter-spacing:-0.239063pt;}
.ls17_c00114{letter-spacing:-0.114334pt;}
.ls11_c00114{letter-spacing:-0.067217pt;}
.lsf_c00114{letter-spacing:-0.062240pt;}
.ls8_c00114{letter-spacing:-0.056016pt;}
.ls15_c00114{letter-spacing:-0.051970pt;}
.lsd_c00114{letter-spacing:-0.043568pt;}
.ls10_c00114{letter-spacing:-0.037344pt;}
.lse_c00114{letter-spacing:-0.031120pt;}
.lsb_c00114{letter-spacing:-0.024896pt;}
.lsc_c00114{letter-spacing:-0.018672pt;}
.lsa_c00114{letter-spacing:-0.012448pt;}
.ls16_c00114{letter-spacing:-0.010394pt;}
.ls9_c00114{letter-spacing:0.000000pt;}
.ls4_c00114{letter-spacing:0.006224pt;}
.ls3_c00114{letter-spacing:0.013914pt;}
.ls5_c00114{letter-spacing:0.018672pt;}
.ls2_c00114{letter-spacing:0.020694pt;}
.ls0_c00114{letter-spacing:0.024896pt;}
.ls7_c00114{letter-spacing:0.025985pt;}
.ls1_c00114{letter-spacing:0.043568pt;}
.ls6_c00114{letter-spacing:0.207881pt;}
.ls12_c00114{letter-spacing:0.218275pt;}
.ws3_c00114{word-spacing:-51.970133pt;}
.ws1_c00114{word-spacing:-17.302720pt;}
.ws4_c00114{word-spacing:-14.603607pt;}
.ws5_c00114{word-spacing:-14.343757pt;}
.ws0_c00114{word-spacing:-11.526781pt;}
.ws2_c00114{word-spacing:-9.242347pt;}
.ws25_c00114{word-spacing:-0.296230pt;}
.ws22_c00114{word-spacing:-0.207881pt;}
.wsd_c00114{word-spacing:-0.056016pt;}
.ws17_c00114{word-spacing:-0.037344pt;}
.ws6_c00114{word-spacing:0.000000pt;}
.ws1e_c00114{word-spacing:0.049792pt;}
.ws26_c00114{word-spacing:0.124728pt;}
.ws24_c00114{word-spacing:0.249457pt;}
.ws9_c00114{word-spacing:0.280080pt;}
.ws14_c00114{word-spacing:0.298752pt;}
.ws10_c00114{word-spacing:0.317424pt;}
.ws23_c00114{word-spacing:1.278465pt;}
.wsc_c00114{word-spacing:1.587120pt;}
.ws1f_c00114{word-spacing:1.941888pt;}
.wsa_c00114{word-spacing:2.246864pt;}
.wsf_c00114{word-spacing:2.869264pt;}
.ws8_c00114{word-spacing:4.170080pt;}
.wsb_c00114{word-spacing:4.188752pt;}
.ws15_c00114{word-spacing:5.122352pt;}
.ws16_c00114{word-spacing:5.763424pt;}
.ws21_c00114{word-spacing:6.087072pt;}
.ws7_c00114{word-spacing:6.398272pt;}
.ws13_c00114{word-spacing:6.690800pt;}
.ws12_c00114{word-spacing:6.703248pt;}
.wse_c00114{word-spacing:6.709472pt;}
.ws20_c00114{word-spacing:10.238480pt;}
.ws1a_c00114{word-spacing:11.501952pt;}
.ws19_c00114{word-spacing:11.539296pt;}
.ws18_c00114{word-spacing:11.806928pt;}
.ws1c_c00114{word-spacing:19.786096pt;}
.ws1d_c00114{word-spacing:19.810992pt;}
.ws11_c00114{word-spacing:21.124256pt;}
.ws1b_c00114{word-spacing:28.462352pt;}
._3_c00114{margin-left:-11.838048pt;}
._0_c00114{margin-left:-6.080848pt;}
._5_c00114{margin-left:-2.410304pt;}
._1_c00114{margin-left:-1.051856pt;}
._2_c00114{width:1.107872pt;}
._4_c00114{width:5.271728pt;}
.fs2_c00114{font-size:33.608533pt;}
.fs1_c00114{font-size:41.388800pt;}
.fs3_c00114{font-size:51.970133pt;}
.fs0_c00114{font-size:62.240000pt;}
.y0_c00114{bottom:0.000000pt;}
.y2_c00114{bottom:97.547527pt;}
.y1_c00114{bottom:115.387067pt;}
.y23_c00114{bottom:136.107200pt;}
.y22_c00114{bottom:151.947067pt;}
.y21_c00114{bottom:165.066147pt;}
.y20_c00114{bottom:208.746179pt;}
.y1f_c00114{bottom:235.626079pt;}
.y1e_c00114{bottom:262.426623pt;}
.y1d_c00114{bottom:289.306523pt;}
.y1c_c00114{bottom:316.105315pt;}
.y1b_c00114{bottom:342.985215pt;}
.y1a_c00114{bottom:369.785759pt;}
.y19_c00114{bottom:396.665659pt;}
.y18_c00114{bottom:423.466203pt;}
.y17_c00114{bottom:450.346103pt;}
.y16_c00114{bottom:477.146647pt;}
.y15_c00114{bottom:504.026547pt;}
.y14_c00114{bottom:530.746179pt;}
.y13_c00114{bottom:557.626079pt;}
.y12_c00114{bottom:584.426623pt;}
.y11_c00114{bottom:611.306523pt;}
.y10_c00114{bottom:638.107067pt;}
.yf_c00114{bottom:664.986079pt;}
.ye_c00114{bottom:691.786623pt;}
.yd_c00114{bottom:718.666523pt;}
.yc_c00114{bottom:752.667067pt;}
.yb_c00114{bottom:772.346656pt;}
.ya_c00114{bottom:799.146371pt;}
.y9_c00114{bottom:826.026271pt;}
.y8_c00114{bottom:852.906171pt;}
.y7_c00114{bottom:879.706715pt;}
.y6_c00114{bottom:906.586615pt;}
.y5_c00114{bottom:933.387159pt;}
.y4_c00114{bottom:960.267059pt;}
.y3_c00114{bottom:987.067603pt;}
.h9_c00114{height:34.967066pt;}
.h8_c00114{height:34.967599pt;}
.h4_c00114{height:37.104412pt;}
.h2_c00114{height:55.645234pt;}
.h1_c00114{height:55.797187pt;}
.h7_c00114{height:55.801401pt;}
.h5_c00114{height:65.588364pt;}
.h3_c00114{height:65.806150pt;}
.h6_c00114{height:65.911421pt;}
.h0_c00114{height:1122.666667pt;}
.w0_c00114{width:793.333333pt;}
.x0_c00114{left:0.000000pt;}
.x2_c00114{left:73.520052pt;}
.x3_c00114{left:78.720204pt;}
.x1_c00114{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_110eb196d6ca8843d9acf4f9.woff2')format("woff");}.ff1_c00115{font-family:ff1_c00115;line-height:1.106934;font-style:normal;font-weight:normal;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_ed9f3be192f82d65e235c1dc.woff2')format("woff");}.ff2_c00115{font-family:ff2_c00115;line-height:1.104492;font-style:normal;font-weight:normal;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_dd4e737ab7c717483ee072a6.woff2')format("woff");}.ff3_c00115{font-family:ff3_c00115;line-height:1.133301;font-style:normal;font-weight:normal;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_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff4_c00115{font-family:ff4_c00115;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00115;src:url('chunks/assets/font_8c370f11863768fa58afa7d3.woff2')format("woff");}.ff5_c00115{font-family:ff5_c00115;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00115{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00115{vertical-align:-14.760000px;}
.v0_c00115{vertical-align:0.000000px;}
.v1_c00115{vertical-align:32.053464px;}
.ls15_c00115{letter-spacing:-0.707443px;}
.ls12_c00115{letter-spacing:-0.344952px;}
.ls11_c00115{letter-spacing:-0.152013px;}
.ls14_c00115{letter-spacing:-0.116933px;}
.ls13_c00115{letter-spacing:-0.087700px;}
.lsd_c00115{letter-spacing:-0.075619px;}
.lse_c00115{letter-spacing:-0.070160px;}
.ls4_c00115{letter-spacing:-0.063018px;}
.lsb_c00115{letter-spacing:-0.056016px;}
.ls7_c00115{letter-spacing:-0.049014px;}
.ls9_c00115{letter-spacing:-0.035010px;}
.lsa_c00115{letter-spacing:-0.028008px;}
.lsc_c00115{letter-spacing:-0.021006px;}
.ls8_c00115{letter-spacing:-0.014004px;}
.ls6_c00115{letter-spacing:-0.007002px;}
.ls5_c00115{letter-spacing:0.000000px;}
.ls0_c00115{letter-spacing:0.014004px;}
.ls1_c00115{letter-spacing:0.021006px;}
.ls3_c00115{letter-spacing:0.023281px;}
.ls10_c00115{letter-spacing:0.070160px;}
.ls2_c00115{letter-spacing:0.203058px;}
.lsf_c00115{letter-spacing:0.537891px;}
.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;}
}
.ws2_c00115{word-spacing:-58.466400px;}
.ws3_c00115{word-spacing:-16.107493px;}
.ws0_c00115{word-spacing:-12.967628px;}
.ws1_c00115{word-spacing:-10.397640px;}
.ws9_c00115{word-spacing:-0.035010px;}
.ws4_c00115{word-spacing:0.000000px;}
.ws1a_c00115{word-spacing:0.007002px;}
.wsc_c00115{word-spacing:0.014004px;}
.ws6_c00115{word-spacing:0.035010px;}
.ws17_c00115{word-spacing:0.350100px;}
.ws27_c00115{word-spacing:0.362492px;}
.ws8_c00115{word-spacing:0.378108px;}
.ws15_c00115{word-spacing:1.813518px;}
.ws1e_c00115{word-spacing:3.227922px;}
.ws12_c00115{word-spacing:3.620034px;}
.ws1f_c00115{word-spacing:4.341240px;}
.ws11_c00115{word-spacing:4.677336px;}
.ws24_c00115{word-spacing:4.811785px;}
.ws25_c00115{word-spacing:4.817631px;}
.ws26_c00115{word-spacing:5.402295px;}
.ws7_c00115{word-spacing:6.091740px;}
.ws19_c00115{word-spacing:6.497856px;}
.wsa_c00115{word-spacing:7.548156px;}
.wsb_c00115{word-spacing:7.576164px;}
.ws1c_c00115{word-spacing:8.255358px;}
.ws1d_c00115{word-spacing:8.283366px;}
.ws16_c00115{word-spacing:9.368676px;}
.ws1b_c00115{word-spacing:9.704772px;}
.ws22_c00115{word-spacing:10.383633px;}
.ws21_c00115{word-spacing:10.635038px;}
.ws20_c00115{word-spacing:10.880597px;}
.ws23_c00115{word-spacing:10.962450px;}
.ws5_c00115{word-spacing:11.511288px;}
.wsf_c00115{word-spacing:14.767218px;}
.wse_c00115{word-spacing:14.774220px;}
.ws18_c00115{word-spacing:17.995140px;}
.ws10_c00115{word-spacing:30.213630px;}
.ws13_c00115{word-spacing:30.241638px;}
.ws14_c00115{word-spacing:30.255642px;}
.wsd_c00115{word-spacing:33.826662px;}
._4_c00115{margin-left:-2.707254px;}
._0_c00115{margin-left:-1.232352px;}
._1_c00115{width:1.099314px;}
._5_c00115{width:2.115173px;}
._3_c00115{width:5.930694px;}
._2_c00115{width:156.956832px;}
.fc0_c00115{color:rgb(0,0,0);}
.fs2_c00115{font-size:37.809600px;}
.fs1_c00115{font-size:46.562400px;}
.fs3_c00115{font-size:58.466400px;}
.fs0_c00115{font-size:70.020000px;}
.y0_c00115{bottom:0.000000px;}
.y2_c00115{bottom:109.740968px;}
.y1_c00115{bottom:129.810450px;}
.y24_c00115{bottom:149.429548px;}
.y23_c00115{bottom:167.250107px;}
.y22_c00115{bottom:188.940450px;}
.y21_c00115{bottom:203.607894px;}
.y20_c00115{bottom:234.838564px;}
.y1f_c00115{bottom:265.078452px;}
.y1e_c00115{bottom:295.229064px;}
.y1d_c00115{bottom:325.468951px;}
.y1c_c00115{bottom:355.619563px;}
.y1b_c00115{bottom:385.859451px;}
.y1a_c00115{bottom:416.010063px;}
.y19_c00115{bottom:446.249950px;}
.y18_c00115{bottom:476.400562px;}
.y17_c00115{bottom:506.637084px;}
.y16_c00115{bottom:536.787696px;}
.y15_c00115{bottom:567.027584px;}
.y14_c00115{bottom:597.087170px;}
.y13_c00115{bottom:627.327057px;}
.y12_c00115{bottom:657.477669px;}
.y11_c00115{bottom:687.717557px;}
.y10_c00115{bottom:717.868169px;}
.yf_c00115{bottom:748.108056px;}
.ye_c00115{bottom:778.258668px;}
.yd_c00115{bottom:808.498556px;}
.yc_c00115{bottom:838.649168px;}
.yb_c00115{bottom:868.889055px;}
.ya_c00115{bottom:899.039667px;}
.y9_c00115{bottom:929.279555px;}
.y8_c00115{bottom:959.519442px;}
.y7_c00115{bottom:989.670054px;}
.y6_c00115{bottom:1019.909942px;}
.y5_c00115{bottom:1050.060553px;}
.y4_c00115{bottom:1080.300441px;}
.y3_c00115{bottom:1110.451053px;}
.h5_c00115{height:39.338549px;}
.h6_c00115{height:54.098549px;}
.h2_c00115{height:62.600889px;}
.h1_c00115{height:62.771836px;}
.h4_c00115{height:62.782060px;}
.h3_c00115{height:73.682250px;}
.h0_c00115{height:1263.000000px;}
.w0_c00115{width:892.500000px;}
.x0_c00115{left:0.000000px;}
.x2_c00115{left:82.710059px;}
.x1_c00115{left:431.730000px;}
@media print{
.v2_c00115{vertical-align:-13.120000pt;}
.v0_c00115{vertical-align:0.000000pt;}
.v1_c00115{vertical-align:28.491968pt;}
.ls15_c00115{letter-spacing:-0.628839pt;}
.ls12_c00115{letter-spacing:-0.306624pt;}
.ls11_c00115{letter-spacing:-0.135122pt;}
.ls14_c00115{letter-spacing:-0.103940pt;}
.ls13_c00115{letter-spacing:-0.077955pt;}
.lsd_c00115{letter-spacing:-0.067217pt;}
.lse_c00115{letter-spacing:-0.062364pt;}
.ls4_c00115{letter-spacing:-0.056016pt;}
.lsb_c00115{letter-spacing:-0.049792pt;}
.ls7_c00115{letter-spacing:-0.043568pt;}
.ls9_c00115{letter-spacing:-0.031120pt;}
.lsa_c00115{letter-spacing:-0.024896pt;}
.lsc_c00115{letter-spacing:-0.018672pt;}
.ls8_c00115{letter-spacing:-0.012448pt;}
.ls6_c00115{letter-spacing:-0.006224pt;}
.ls5_c00115{letter-spacing:0.000000pt;}
.ls0_c00115{letter-spacing:0.012448pt;}
.ls1_c00115{letter-spacing:0.018672pt;}
.ls3_c00115{letter-spacing:0.020694pt;}
.ls10_c00115{letter-spacing:0.062364pt;}
.ls2_c00115{letter-spacing:0.180496pt;}
.lsf_c00115{letter-spacing:0.478125pt;}
.ws2_c00115{word-spacing:-51.970133pt;}
.ws3_c00115{word-spacing:-14.317772pt;}
.ws0_c00115{word-spacing:-11.526781pt;}
.ws1_c00115{word-spacing:-9.242347pt;}
.ws9_c00115{word-spacing:-0.031120pt;}
.ws4_c00115{word-spacing:0.000000pt;}
.ws1a_c00115{word-spacing:0.006224pt;}
.wsc_c00115{word-spacing:0.012448pt;}
.ws6_c00115{word-spacing:0.031120pt;}
.ws17_c00115{word-spacing:0.311200pt;}
.ws27_c00115{word-spacing:0.322215pt;}
.ws8_c00115{word-spacing:0.336096pt;}
.ws15_c00115{word-spacing:1.612016pt;}
.ws1e_c00115{word-spacing:2.869264pt;}
.ws12_c00115{word-spacing:3.217808pt;}
.ws1f_c00115{word-spacing:3.858880pt;}
.ws11_c00115{word-spacing:4.157632pt;}
.ws24_c00115{word-spacing:4.277142pt;}
.ws25_c00115{word-spacing:4.282339pt;}
.ws26_c00115{word-spacing:4.802040pt;}
.ws7_c00115{word-spacing:5.414880pt;}
.ws19_c00115{word-spacing:5.775872pt;}
.wsa_c00115{word-spacing:6.709472pt;}
.wsb_c00115{word-spacing:6.734368pt;}
.ws1c_c00115{word-spacing:7.338096pt;}
.ws1d_c00115{word-spacing:7.362992pt;}
.ws16_c00115{word-spacing:8.327712pt;}
.ws1b_c00115{word-spacing:8.626464pt;}
.ws22_c00115{word-spacing:9.229896pt;}
.ws21_c00115{word-spacing:9.453367pt;}
.ws20_c00115{word-spacing:9.671642pt;}
.ws23_c00115{word-spacing:9.744400pt;}
.ws5_c00115{word-spacing:10.232256pt;}
.wsf_c00115{word-spacing:13.126416pt;}
.wse_c00115{word-spacing:13.132640pt;}
.ws18_c00115{word-spacing:15.995680pt;}
.ws10_c00115{word-spacing:26.856560pt;}
.ws13_c00115{word-spacing:26.881456pt;}
.ws14_c00115{word-spacing:26.893904pt;}
.wsd_c00115{word-spacing:30.068144pt;}
._4_c00115{margin-left:-2.406448pt;}
._0_c00115{margin-left:-1.095424pt;}
._1_c00115{width:0.977168pt;}
._5_c00115{width:1.880153pt;}
._3_c00115{width:5.271728pt;}
._2_c00115{width:139.517184pt;}
.fs2_c00115{font-size:33.608533pt;}
.fs1_c00115{font-size:41.388800pt;}
.fs3_c00115{font-size:51.970133pt;}
.fs0_c00115{font-size:62.240000pt;}
.y0_c00115{bottom:0.000000pt;}
.y2_c00115{bottom:97.547527pt;}
.y1_c00115{bottom:115.387067pt;}
.y24_c00115{bottom:132.826265pt;}
.y23_c00115{bottom:148.666762pt;}
.y22_c00115{bottom:167.947067pt;}
.y21_c00115{bottom:180.984795pt;}
.y20_c00115{bottom:208.745391pt;}
.y1f_c00115{bottom:235.625291pt;}
.y1e_c00115{bottom:262.425835pt;}
.y1d_c00115{bottom:289.305735pt;}
.y1c_c00115{bottom:316.106279pt;}
.y1b_c00115{bottom:342.986179pt;}
.y1a_c00115{bottom:369.786723pt;}
.y19_c00115{bottom:396.666623pt;}
.y18_c00115{bottom:423.467167pt;}
.y17_c00115{bottom:450.344075pt;}
.y16_c00115{bottom:477.144619pt;}
.y15_c00115{bottom:504.024519pt;}
.y14_c00115{bottom:530.744151pt;}
.y13_c00115{bottom:557.624051pt;}
.y12_c00115{bottom:584.424595pt;}
.y11_c00115{bottom:611.304495pt;}
.y10_c00115{bottom:638.105039pt;}
.yf_c00115{bottom:664.984939pt;}
.ye_c00115{bottom:691.785483pt;}
.yd_c00115{bottom:718.665383pt;}
.yc_c00115{bottom:745.465927pt;}
.yb_c00115{bottom:772.345827pt;}
.ya_c00115{bottom:799.146371pt;}
.y9_c00115{bottom:826.026271pt;}
.y8_c00115{bottom:852.906171pt;}
.y7_c00115{bottom:879.706715pt;}
.y6_c00115{bottom:906.586615pt;}
.y5_c00115{bottom:933.387159pt;}
.y4_c00115{bottom:960.267059pt;}
.y3_c00115{bottom:987.067603pt;}
.h5_c00115{height:34.967599pt;}
.h6_c00115{height:48.087599pt;}
.h2_c00115{height:55.645234pt;}
.h1_c00115{height:55.797187pt;}
.h4_c00115{height:55.806276pt;}
.h3_c00115{height:65.495334pt;}
.h0_c00115{height:1122.666667pt;}
.w0_c00115{width:793.333333pt;}
.x0_c00115{left:0.000000pt;}
.x2_c00115{left:73.520052pt;}
.x1_c00115{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a04351e2ad945bbeca1d77d2.woff2')format("woff");}.ff1_c00116{font-family:ff1_c00116;line-height:1.106934;font-style:normal;font-weight:normal;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_0ed80305058a69d235ad299c.woff2')format("woff");}.ff2_c00116{font-family:ff2_c00116;line-height:1.104492;font-style:normal;font-weight:normal;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_11c41d1e59bc87fb364717d0.woff2')format("woff");}.ff3_c00116{font-family:ff3_c00116;line-height:1.133301;font-style:normal;font-weight:normal;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_10ae202e2305a2bc28bea12d.woff2')format("woff");}.ff4_c00116{font-family:ff4_c00116;line-height:1.133301;font-style:normal;font-weight:normal;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_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff5_c00116{font-family:ff5_c00116;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00116;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff6_c00116{font-family:ff6_c00116;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00116{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00116{vertical-align:-14.760000px;}
.v0_c00116{vertical-align:0.000000px;}
.v1_c00116{vertical-align:32.399586px;}
.lsc_c00116{letter-spacing:-0.335249px;}
.ls13_c00116{letter-spacing:-0.268945px;}
.ls1e_c00116{letter-spacing:-0.251406px;}
.ls23_c00116{letter-spacing:-0.239712px;}
.ls1d_c00116{letter-spacing:-0.181246px;}
.ls12_c00116{letter-spacing:-0.175399px;}
.ls1c_c00116{letter-spacing:-0.146166px;}
.ls22_c00116{letter-spacing:-0.105240px;}
.ls18_c00116{letter-spacing:-0.087700px;}
.ls1f_c00116{letter-spacing:-0.076006px;}
.ls11_c00116{letter-spacing:-0.075619px;}
.ls21_c00116{letter-spacing:-0.064313px;}
.ls7_c00116{letter-spacing:-0.063018px;}
.lse_c00116{letter-spacing:-0.056016px;}
.ls15_c00116{letter-spacing:-0.046773px;}
.lsa_c00116{letter-spacing:-0.042012px;}
.ls10_c00116{letter-spacing:-0.035010px;}
.lsf_c00116{letter-spacing:-0.028008px;}
.ls9_c00116{letter-spacing:-0.021006px;}
.ls19_c00116{letter-spacing:-0.017540px;}
.lsd_c00116{letter-spacing:-0.014004px;}
.ls14_c00116{letter-spacing:-0.011693px;}
.lsb_c00116{letter-spacing:-0.007002px;}
.ls24_c00116{letter-spacing:-0.005847px;}
.ls8_c00116{letter-spacing:0.000000px;}
.ls16_c00116{letter-spacing:0.005847px;}
.ls2_c00116{letter-spacing:0.007002px;}
.ls4_c00116{letter-spacing:0.011693px;}
.ls0_c00116{letter-spacing:0.021006px;}
.ls1_c00116{letter-spacing:0.023281px;}
.ls5_c00116{letter-spacing:0.023387px;}
.ls3_c00116{letter-spacing:0.028008px;}
.ls6_c00116{letter-spacing:0.146166px;}
.ls1a_c00116{letter-spacing:0.263099px;}
.ls17_c00116{letter-spacing:0.321565px;}
.ls20_c00116{letter-spacing:0.344952px;}
.ls1b_c00116{letter-spacing:0.473578px;}
.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;}
}
.ws4_c00116{word-spacing:-58.466400px;}
.ws0_c00116{word-spacing:-19.458558px;}
.ws5_c00116{word-spacing:-16.107493px;}
.ws6_c00116{word-spacing:-16.013947px;}
.ws2_c00116{word-spacing:-12.967628px;}
.ws1_c00116{word-spacing:-12.609098px;}
.ws3_c00116{word-spacing:-10.397640px;}
.ws2e_c00116{word-spacing:-0.689904px;}
.ws28_c00116{word-spacing:-0.344952px;}
.ws2d_c00116{word-spacing:-0.268945px;}
.ws30_c00116{word-spacing:-0.011693px;}
.ws7_c00116{word-spacing:0.000000px;}
.wsf_c00116{word-spacing:0.007002px;}
.ws35_c00116{word-spacing:0.017540px;}
.ws22_c00116{word-spacing:0.021006px;}
.ws2f_c00116{word-spacing:0.076006px;}
.ws34_c00116{word-spacing:0.251406px;}
.ws1a_c00116{word-spacing:0.385110px;}
.wsa_c00116{word-spacing:1.106316px;}
.ws8_c00116{word-spacing:1.449414px;}
.ws17_c00116{word-spacing:1.778508px;}
.ws18_c00116{word-spacing:1.799514px;}
.wse_c00116{word-spacing:2.842812px;}
.ws11_c00116{word-spacing:2.863818px;}
.ws12_c00116{word-spacing:2.919834px;}
.wsc_c00116{word-spacing:3.234924px;}
.ws1e_c00116{word-spacing:3.255930px;}
.wsd_c00116{word-spacing:3.592026px;}
.ws31_c00116{word-spacing:4.706545px;}
.ws20_c00116{word-spacing:4.999428px;}
.ws21_c00116{word-spacing:5.027436px;}
.ws33_c00116{word-spacing:5.156736px;}
.ws32_c00116{word-spacing:5.267823px;}
.ws1f_c00116{word-spacing:5.398542px;}
.ws14_c00116{word-spacing:7.198056px;}
.ws13_c00116{word-spacing:7.212060px;}
.ws19_c00116{word-spacing:10.089882px;}
.ws27_c00116{word-spacing:11.582194px;}
.ws26_c00116{word-spacing:11.903759px;}
.ws10_c00116{word-spacing:12.239496px;}
.ws25_c00116{word-spacing:12.242864px;}
.ws23_c00116{word-spacing:12.429957px;}
.ws2b_c00116{word-spacing:12.500116px;}
.ws24_c00116{word-spacing:12.523503px;}
.ws2a_c00116{word-spacing:13.073087px;}
.ws2c_c00116{word-spacing:13.119860px;}
.ws29_c00116{word-spacing:13.353726px;}
.ws1b_c00116{word-spacing:14.417118px;}
.ws1c_c00116{word-spacing:17.259930px;}
.ws1d_c00116{word-spacing:17.308944px;}
.ws9_c00116{word-spacing:18.751356px;}
.ws15_c00116{word-spacing:21.608172px;}
.ws16_c00116{word-spacing:22.308372px;}
.wsb_c00116{word-spacing:22.322376px;}
._1_c00116{margin-left:-2.310660px;}
._2_c00116{margin-left:-1.001286px;}
._0_c00116{width:1.127322px;}
._3_c00116{width:5.930694px;}
._4_c00116{width:11.962552px;}
.fc0_c00116{color:rgb(0,0,0);}
.fs2_c00116{font-size:37.809600px;}
.fs1_c00116{font-size:46.562400px;}
.fs3_c00116{font-size:58.466400px;}
.fs0_c00116{font-size:70.020000px;}
.y0_c00116{bottom:0.000000px;}
.y2_c00116{bottom:109.740968px;}
.y1_c00116{bottom:129.810450px;}
.y24_c00116{bottom:149.429891px;}
.y23_c00116{bottom:170.940450px;}
.y22_c00116{bottom:185.249891px;}
.y21_c00116{bottom:206.760450px;}
.y20_c00116{bottom:221.069891px;}
.y1f_c00116{bottom:242.580450px;}
.y1e_c00116{bottom:257.249352px;}
.y1d_c00116{bottom:325.469838px;}
.y1c_c00116{bottom:355.617593px;}
.y1b_c00116{bottom:385.857480px;}
.y1a_c00116{bottom:416.008092px;}
.y19_c00116{bottom:446.247979px;}
.y18_c00116{bottom:476.398592px;}
.y17_c00116{bottom:506.638479px;}
.y16_c00116{bottom:536.789091px;}
.y15_c00116{bottom:567.028978px;}
.y14_c00116{bottom:597.088565px;}
.y13_c00116{bottom:627.328452px;}
.y12_c00116{bottom:657.479064px;}
.y11_c00116{bottom:687.718952px;}
.y10_c00116{bottom:717.869563px;}
.yf_c00116{bottom:748.109451px;}
.ye_c00116{bottom:778.260063px;}
.yd_c00116{bottom:808.499950px;}
.yc_c00116{bottom:838.650562px;}
.yb_c00116{bottom:868.888951px;}
.ya_c00116{bottom:899.039563px;}
.y9_c00116{bottom:929.279451px;}
.y8_c00116{bottom:959.519339px;}
.y7_c00116{bottom:989.669950px;}
.y6_c00116{bottom:1019.909838px;}
.y5_c00116{bottom:1050.060553px;}
.y4_c00116{bottom:1080.300441px;}
.y3_c00116{bottom:1110.451053px;}
.h7_c00116{height:39.338549px;}
.h8_c00116{height:54.098549px;}
.h2_c00116{height:62.600889px;}
.h1_c00116{height:62.771836px;}
.h6_c00116{height:62.776228px;}
.h4_c00116{height:73.674780px;}
.h3_c00116{height:74.028372px;}
.h5_c00116{height:74.040216px;}
.h0_c00116{height:1263.000000px;}
.w0_c00116{width:892.500000px;}
.x0_c00116{left:0.000000px;}
.x2_c00116{left:82.710059px;}
.x1_c00116{left:431.730000px;}
@media print{
.v2_c00116{vertical-align:-13.120000pt;}
.v0_c00116{vertical-align:0.000000pt;}
.v1_c00116{vertical-align:28.799632pt;}
.lsc_c00116{letter-spacing:-0.297999pt;}
.ls13_c00116{letter-spacing:-0.239063pt;}
.ls1e_c00116{letter-spacing:-0.223472pt;}
.ls23_c00116{letter-spacing:-0.213078pt;}
.ls1d_c00116{letter-spacing:-0.161107pt;}
.ls12_c00116{letter-spacing:-0.155910pt;}
.ls1c_c00116{letter-spacing:-0.129925pt;}
.ls22_c00116{letter-spacing:-0.093546pt;}
.ls18_c00116{letter-spacing:-0.077955pt;}
.ls1f_c00116{letter-spacing:-0.067561pt;}
.ls11_c00116{letter-spacing:-0.067217pt;}
.ls21_c00116{letter-spacing:-0.057167pt;}
.ls7_c00116{letter-spacing:-0.056016pt;}
.lse_c00116{letter-spacing:-0.049792pt;}
.ls15_c00116{letter-spacing:-0.041576pt;}
.lsa_c00116{letter-spacing:-0.037344pt;}
.ls10_c00116{letter-spacing:-0.031120pt;}
.lsf_c00116{letter-spacing:-0.024896pt;}
.ls9_c00116{letter-spacing:-0.018672pt;}
.ls19_c00116{letter-spacing:-0.015591pt;}
.lsd_c00116{letter-spacing:-0.012448pt;}
.ls14_c00116{letter-spacing:-0.010394pt;}
.lsb_c00116{letter-spacing:-0.006224pt;}
.ls24_c00116{letter-spacing:-0.005197pt;}
.ls8_c00116{letter-spacing:0.000000pt;}
.ls16_c00116{letter-spacing:0.005197pt;}
.ls2_c00116{letter-spacing:0.006224pt;}
.ls4_c00116{letter-spacing:0.010394pt;}
.ls0_c00116{letter-spacing:0.018672pt;}
.ls1_c00116{letter-spacing:0.020694pt;}
.ls5_c00116{letter-spacing:0.020788pt;}
.ls3_c00116{letter-spacing:0.024896pt;}
.ls6_c00116{letter-spacing:0.129925pt;}
.ls1a_c00116{letter-spacing:0.233866pt;}
.ls17_c00116{letter-spacing:0.285836pt;}
.ls20_c00116{letter-spacing:0.306624pt;}
.ls1b_c00116{letter-spacing:0.420958pt;}
.ws4_c00116{word-spacing:-51.970133pt;}
.ws0_c00116{word-spacing:-17.296496pt;}
.ws5_c00116{word-spacing:-14.317772pt;}
.ws6_c00116{word-spacing:-14.234620pt;}
.ws2_c00116{word-spacing:-11.526781pt;}
.ws1_c00116{word-spacing:-11.208087pt;}
.ws3_c00116{word-spacing:-9.242347pt;}
.ws2e_c00116{word-spacing:-0.613248pt;}
.ws28_c00116{word-spacing:-0.306624pt;}
.ws2d_c00116{word-spacing:-0.239063pt;}
.ws30_c00116{word-spacing:-0.010394pt;}
.ws7_c00116{word-spacing:0.000000pt;}
.wsf_c00116{word-spacing:0.006224pt;}
.ws35_c00116{word-spacing:0.015591pt;}
.ws22_c00116{word-spacing:0.018672pt;}
.ws2f_c00116{word-spacing:0.067561pt;}
.ws34_c00116{word-spacing:0.223472pt;}
.ws1a_c00116{word-spacing:0.342320pt;}
.wsa_c00116{word-spacing:0.983392pt;}
.ws8_c00116{word-spacing:1.288368pt;}
.ws17_c00116{word-spacing:1.580896pt;}
.ws18_c00116{word-spacing:1.599568pt;}
.wse_c00116{word-spacing:2.526944pt;}
.ws11_c00116{word-spacing:2.545616pt;}
.ws12_c00116{word-spacing:2.595408pt;}
.wsc_c00116{word-spacing:2.875488pt;}
.ws1e_c00116{word-spacing:2.894160pt;}
.wsd_c00116{word-spacing:3.192912pt;}
.ws31_c00116{word-spacing:4.183596pt;}
.ws20_c00116{word-spacing:4.443936pt;}
.ws21_c00116{word-spacing:4.468832pt;}
.ws33_c00116{word-spacing:4.583766pt;}
.ws32_c00116{word-spacing:4.682509pt;}
.ws1f_c00116{word-spacing:4.798704pt;}
.ws14_c00116{word-spacing:6.398272pt;}
.ws13_c00116{word-spacing:6.410720pt;}
.ws19_c00116{word-spacing:8.968784pt;}
.ws27_c00116{word-spacing:10.295283pt;}
.ws26_c00116{word-spacing:10.581119pt;}
.ws10_c00116{word-spacing:10.879552pt;}
.ws25_c00116{word-spacing:10.882546pt;}
.ws23_c00116{word-spacing:11.048850pt;}
.ws2b_c00116{word-spacing:11.111215pt;}
.ws24_c00116{word-spacing:11.132003pt;}
.ws2a_c00116{word-spacing:11.620522pt;}
.ws2c_c00116{word-spacing:11.662098pt;}
.ws29_c00116{word-spacing:11.869978pt;}
.ws1b_c00116{word-spacing:12.815216pt;}
.ws1c_c00116{word-spacing:15.342160pt;}
.ws1d_c00116{word-spacing:15.385728pt;}
.ws9_c00116{word-spacing:16.667872pt;}
.ws15_c00116{word-spacing:19.207264pt;}
.ws16_c00116{word-spacing:19.829664pt;}
.wsb_c00116{word-spacing:19.842112pt;}
._1_c00116{margin-left:-2.053920pt;}
._2_c00116{margin-left:-0.890032pt;}
._0_c00116{width:1.002064pt;}
._3_c00116{width:5.271728pt;}
._4_c00116{width:10.633380pt;}
.fs2_c00116{font-size:33.608533pt;}
.fs1_c00116{font-size:41.388800pt;}
.fs3_c00116{font-size:51.970133pt;}
.fs0_c00116{font-size:62.240000pt;}
.y0_c00116{bottom:0.000000pt;}
.y2_c00116{bottom:97.547527pt;}
.y1_c00116{bottom:115.387067pt;}
.y24_c00116{bottom:132.826570pt;}
.y23_c00116{bottom:151.947067pt;}
.y22_c00116{bottom:164.666570pt;}
.y21_c00116{bottom:183.787067pt;}
.y20_c00116{bottom:196.506570pt;}
.y1f_c00116{bottom:215.627067pt;}
.y1e_c00116{bottom:228.666091pt;}
.y1d_c00116{bottom:289.306523pt;}
.y1c_c00116{bottom:316.104527pt;}
.y1b_c00116{bottom:342.984427pt;}
.y1a_c00116{bottom:369.784971pt;}
.y19_c00116{bottom:396.664871pt;}
.y18_c00116{bottom:423.465415pt;}
.y17_c00116{bottom:450.345315pt;}
.y16_c00116{bottom:477.145859pt;}
.y15_c00116{bottom:504.025759pt;}
.y14_c00116{bottom:530.745391pt;}
.y13_c00116{bottom:557.625291pt;}
.y12_c00116{bottom:584.425835pt;}
.y11_c00116{bottom:611.305735pt;}
.y10_c00116{bottom:638.106279pt;}
.yf_c00116{bottom:664.986179pt;}
.ye_c00116{bottom:691.786723pt;}
.yd_c00116{bottom:718.666623pt;}
.yc_c00116{bottom:745.467167pt;}
.yb_c00116{bottom:772.345735pt;}
.ya_c00116{bottom:799.146279pt;}
.y9_c00116{bottom:826.026179pt;}
.y8_c00116{bottom:852.906079pt;}
.y7_c00116{bottom:879.706623pt;}
.y6_c00116{bottom:906.586523pt;}
.y5_c00116{bottom:933.387159pt;}
.y4_c00116{bottom:960.267059pt;}
.y3_c00116{bottom:987.067603pt;}
.h7_c00116{height:34.967599pt;}
.h8_c00116{height:48.087599pt;}
.h2_c00116{height:55.645234pt;}
.h1_c00116{height:55.797187pt;}
.h6_c00116{height:55.801092pt;}
.h4_c00116{height:65.488694pt;}
.h3_c00116{height:65.802998pt;}
.h5_c00116{height:65.813526pt;}
.h0_c00116{height:1122.666667pt;}
.w0_c00116{width:793.333333pt;}
.x0_c00116{left:0.000000pt;}
.x2_c00116{left:73.520052pt;}
.x1_c00116{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4f74b3cec96d8f9cd710e435.woff2')format("woff");}.ff1_c00117{font-family:ff1_c00117;line-height:1.106934;font-style:normal;font-weight:normal;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_bbe815840cf7fa4c3e22bb31.woff2')format("woff");}.ff2_c00117{font-family:ff2_c00117;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00117{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00117{vertical-align:0.000000px;}
.v1_c00117{vertical-align:32.419008px;}
.ls2_c00117{letter-spacing:-0.063018px;}
.lsa_c00117{letter-spacing:-0.049014px;}
.ls9_c00117{letter-spacing:-0.042012px;}
.ls8_c00117{letter-spacing:-0.035010px;}
.ls6_c00117{letter-spacing:-0.028008px;}
.ls7_c00117{letter-spacing:-0.021006px;}
.ls5_c00117{letter-spacing:-0.014004px;}
.ls4_c00117{letter-spacing:-0.007002px;}
.ls3_c00117{letter-spacing:0.000000px;}
.ls1_c00117{letter-spacing:0.007002px;}
.ls0_c00117{letter-spacing:0.014004px;}
.sc__c00117{text-shadow:none;}
.sc0_c00117{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00117{-webkit-text-stroke:0px transparent;}
.sc0_c00117{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00117{word-spacing:-19.437552px;}
.ws0_c00117{word-spacing:-19.423548px;}
.ws1e_c00117{word-spacing:-0.021006px;}
.ws2_c00117{word-spacing:0.000000px;}
.ws1a_c00117{word-spacing:0.364104px;}
.ws16_c00117{word-spacing:0.371106px;}
.ws1d_c00117{word-spacing:0.378108px;}
.ws3_c00117{word-spacing:1.050300px;}
.ws1c_c00117{word-spacing:1.414404px;}
.ws12_c00117{word-spacing:1.785510px;}
.ws13_c00117{word-spacing:2.142612px;}
.wsd_c00117{word-spacing:2.170620px;}
.wse_c00117{word-spacing:2.506716px;}
.wsc_c00117{word-spacing:2.527722px;}
.ws8_c00117{word-spacing:3.592026px;}
.ws14_c00117{word-spacing:3.606030px;}
.ws6_c00117{word-spacing:5.398542px;}
.ws17_c00117{word-spacing:9.368676px;}
.ws4_c00117{word-spacing:10.075878px;}
.ws5_c00117{word-spacing:11.875392px;}
.ws1b_c00117{word-spacing:12.232494px;}
.ws7_c00117{word-spacing:12.253500px;}
.ws9_c00117{word-spacing:14.046012px;}
.wsb_c00117{word-spacing:14.767218px;}
.ws15_c00117{word-spacing:16.209630px;}
.ws18_c00117{word-spacing:18.016146px;}
.ws19_c00117{word-spacing:19.094454px;}
.ws10_c00117{word-spacing:19.773648px;}
.wsf_c00117{word-spacing:19.822662px;}
.ws11_c00117{word-spacing:21.601170px;}
.wsa_c00117{word-spacing:21.615174px;}
.ws21_c00117{word-spacing:25.949412px;}
.ws1f_c00117{word-spacing:29.142324px;}
.ws20_c00117{word-spacing:29.198340px;}
._1_c00117{margin-left:-1.225350px;}
._0_c00117{width:1.106316px;}
.fc0_c00117{color:rgb(0,0,0);}
.fs1_c00117{font-size:46.562400px;}
.fs0_c00117{font-size:70.020000px;}
.y0_c00117{bottom:0.000000px;}
.y2_c00117{bottom:109.740968px;}
.y1_c00117{bottom:129.810450px;}
.y22_c00117{bottom:174.449950px;}
.y21_c00117{bottom:204.689838px;}
.y20_c00117{bottom:234.840450px;}
.y1f_c00117{bottom:273.090499px;}
.y1e_c00117{bottom:295.225698px;}
.y1d_c00117{bottom:325.465586px;}
.y1c_c00117{bottom:355.616198px;}
.y1b_c00117{bottom:385.856085px;}
.y1a_c00117{bottom:416.006697px;}
.y19_c00117{bottom:446.246585px;}
.y18_c00117{bottom:476.397197px;}
.y17_c00117{bottom:506.637084px;}
.y16_c00117{bottom:536.787696px;}
.y15_c00117{bottom:567.027584px;}
.y14_c00117{bottom:597.087170px;}
.y13_c00117{bottom:627.327057px;}
.y12_c00117{bottom:657.477669px;}
.y11_c00117{bottom:687.717557px;}
.y10_c00117{bottom:717.868169px;}
.yf_c00117{bottom:748.108056px;}
.ye_c00117{bottom:778.258668px;}
.yd_c00117{bottom:808.498556px;}
.yc_c00117{bottom:838.649168px;}
.yb_c00117{bottom:868.889055px;}
.ya_c00117{bottom:899.039667px;}
.y9_c00117{bottom:929.279555px;}
.y8_c00117{bottom:959.519442px;}
.y7_c00117{bottom:989.670054px;}
.y6_c00117{bottom:1019.909942px;}
.y5_c00117{bottom:1050.060553px;}
.y4_c00117{bottom:1080.300441px;}
.y3_c00117{bottom:1110.451053px;}
.h3_c00117{height:41.742464px;}
.h4_c00117{height:62.600889px;}
.h1_c00117{height:62.771836px;}
.h2_c00117{height:74.161472px;}
.h0_c00117{height:1263.000000px;}
.w0_c00117{width:892.500000px;}
.x0_c00117{left:0.000000px;}
.x2_c00117{left:82.710059px;}
.x3_c00117{left:108.989847px;}
.x1_c00117{left:431.730000px;}
@media print{
.v0_c00117{vertical-align:0.000000pt;}
.v1_c00117{vertical-align:28.816896pt;}
.ls2_c00117{letter-spacing:-0.056016pt;}
.lsa_c00117{letter-spacing:-0.043568pt;}
.ls9_c00117{letter-spacing:-0.037344pt;}
.ls8_c00117{letter-spacing:-0.031120pt;}
.ls6_c00117{letter-spacing:-0.024896pt;}
.ls7_c00117{letter-spacing:-0.018672pt;}
.ls5_c00117{letter-spacing:-0.012448pt;}
.ls4_c00117{letter-spacing:-0.006224pt;}
.ls3_c00117{letter-spacing:0.000000pt;}
.ls1_c00117{letter-spacing:0.006224pt;}
.ls0_c00117{letter-spacing:0.012448pt;}
.ws1_c00117{word-spacing:-17.277824pt;}
.ws0_c00117{word-spacing:-17.265376pt;}
.ws1e_c00117{word-spacing:-0.018672pt;}
.ws2_c00117{word-spacing:0.000000pt;}
.ws1a_c00117{word-spacing:0.323648pt;}
.ws16_c00117{word-spacing:0.329872pt;}
.ws1d_c00117{word-spacing:0.336096pt;}
.ws3_c00117{word-spacing:0.933600pt;}
.ws1c_c00117{word-spacing:1.257248pt;}
.ws12_c00117{word-spacing:1.587120pt;}
.ws13_c00117{word-spacing:1.904544pt;}
.wsd_c00117{word-spacing:1.929440pt;}
.wse_c00117{word-spacing:2.228192pt;}
.wsc_c00117{word-spacing:2.246864pt;}
.ws8_c00117{word-spacing:3.192912pt;}
.ws14_c00117{word-spacing:3.205360pt;}
.ws6_c00117{word-spacing:4.798704pt;}
.ws17_c00117{word-spacing:8.327712pt;}
.ws4_c00117{word-spacing:8.956336pt;}
.ws5_c00117{word-spacing:10.555904pt;}
.ws1b_c00117{word-spacing:10.873328pt;}
.ws7_c00117{word-spacing:10.892000pt;}
.ws9_c00117{word-spacing:12.485344pt;}
.wsb_c00117{word-spacing:13.126416pt;}
.ws15_c00117{word-spacing:14.408560pt;}
.ws18_c00117{word-spacing:16.014352pt;}
.ws19_c00117{word-spacing:16.972848pt;}
.ws10_c00117{word-spacing:17.576576pt;}
.wsf_c00117{word-spacing:17.620144pt;}
.ws11_c00117{word-spacing:19.201040pt;}
.wsa_c00117{word-spacing:19.213488pt;}
.ws21_c00117{word-spacing:23.066144pt;}
.ws1f_c00117{word-spacing:25.904288pt;}
.ws20_c00117{word-spacing:25.954080pt;}
._1_c00117{margin-left:-1.089200pt;}
._0_c00117{width:0.983392pt;}
.fs1_c00117{font-size:41.388800pt;}
.fs0_c00117{font-size:62.240000pt;}
.y0_c00117{bottom:0.000000pt;}
.y2_c00117{bottom:97.547527pt;}
.y1_c00117{bottom:115.387067pt;}
.y22_c00117{bottom:155.066623pt;}
.y21_c00117{bottom:181.946523pt;}
.y20_c00117{bottom:208.747067pt;}
.y1f_c00117{bottom:242.747111pt;}
.y1e_c00117{bottom:262.422843pt;}
.y1d_c00117{bottom:289.302743pt;}
.y1c_c00117{bottom:316.103287pt;}
.y1b_c00117{bottom:342.983187pt;}
.y1a_c00117{bottom:369.783731pt;}
.y19_c00117{bottom:396.663631pt;}
.y18_c00117{bottom:423.464175pt;}
.y17_c00117{bottom:450.344075pt;}
.y16_c00117{bottom:477.144619pt;}
.y15_c00117{bottom:504.024519pt;}
.y14_c00117{bottom:530.744151pt;}
.y13_c00117{bottom:557.624051pt;}
.y12_c00117{bottom:584.424595pt;}
.y11_c00117{bottom:611.304495pt;}
.y10_c00117{bottom:638.105039pt;}
.yf_c00117{bottom:664.984939pt;}
.ye_c00117{bottom:691.785483pt;}
.yd_c00117{bottom:718.665383pt;}
.yc_c00117{bottom:745.465927pt;}
.yb_c00117{bottom:772.345827pt;}
.ya_c00117{bottom:799.146371pt;}
.y9_c00117{bottom:826.026271pt;}
.y8_c00117{bottom:852.906171pt;}
.y7_c00117{bottom:879.706715pt;}
.y6_c00117{bottom:906.586615pt;}
.y5_c00117{bottom:933.387159pt;}
.y4_c00117{bottom:960.267059pt;}
.y3_c00117{bottom:987.067603pt;}
.h3_c00117{height:37.104412pt;}
.h4_c00117{height:55.645234pt;}
.h1_c00117{height:55.797187pt;}
.h2_c00117{height:65.921308pt;}
.h0_c00117{height:1122.666667pt;}
.w0_c00117{width:793.333333pt;}
.x0_c00117{left:0.000000pt;}
.x2_c00117{left:73.520052pt;}
.x3_c00117{left:96.879864pt;}
.x1_c00117{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3c802cac98b392bd99ff1288.woff2')format("woff");}.ff1_c00118{font-family:ff1_c00118;line-height:1.106934;font-style:normal;font-weight:normal;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_5e5f519265bd6fd698b50f13.woff2')format("woff");}.ff2_c00118{font-family:ff2_c00118;line-height:1.104492;font-style:normal;font-weight:normal;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_57f4a02de877ff598e4358d2.woff2')format("woff");}.ff3_c00118{font-family:ff3_c00118;line-height:1.133301;font-style:normal;font-weight:normal;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_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff4_c00118{font-family:ff4_c00118;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00118{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00118{vertical-align:-14.760600px;}
.v0_c00118{vertical-align:0.000000px;}
.v1_c00118{vertical-align:32.040036px;}
.lsf_c00118{letter-spacing:-0.075619px;}
.ls6_c00118{letter-spacing:-0.063018px;}
.lse_c00118{letter-spacing:-0.049014px;}
.lsd_c00118{letter-spacing:-0.042012px;}
.ls9_c00118{letter-spacing:-0.035010px;}
.ls8_c00118{letter-spacing:-0.028008px;}
.ls10_c00118{letter-spacing:-0.023387px;}
.lsb_c00118{letter-spacing:-0.021006px;}
.lsc_c00118{letter-spacing:-0.014004px;}
.lsa_c00118{letter-spacing:-0.007002px;}
.ls11_c00118{letter-spacing:-0.005847px;}
.ls7_c00118{letter-spacing:0.000000px;}
.ls4_c00118{letter-spacing:0.007002px;}
.ls5_c00118{letter-spacing:0.014004px;}
.ls0_c00118{letter-spacing:0.023281px;}
.ls3_c00118{letter-spacing:0.035010px;}
.ls2_c00118{letter-spacing:0.154044px;}
.ls1_c00118{letter-spacing:0.336096px;}
.sc__c00118{text-shadow:none;}
.sc0_c00118{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00118{-webkit-text-stroke:0px transparent;}
.sc0_c00118{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00118{word-spacing:-58.466400px;}
.ws0_c00118{word-spacing:-12.967628px;}
.ws1_c00118{word-spacing:-10.397640px;}
.ws5_c00118{word-spacing:-0.343098px;}
.ws8_c00118{word-spacing:-0.049014px;}
.ws17_c00118{word-spacing:-0.021006px;}
.ws1e_c00118{word-spacing:-0.014004px;}
.ws3_c00118{word-spacing:0.000000px;}
.ws24_c00118{word-spacing:0.017540px;}
.ws14_c00118{word-spacing:0.028008px;}
.ws22_c00118{word-spacing:0.035010px;}
.ws23_c00118{word-spacing:0.035080px;}
.ws16_c00118{word-spacing:0.378108px;}
.wsb_c00118{word-spacing:1.456416px;}
.ws7_c00118{word-spacing:3.073878px;}
.ws6_c00118{word-spacing:3.262932px;}
.ws21_c00118{word-spacing:3.949128px;}
.ws1c_c00118{word-spacing:6.091740px;}
.ws1d_c00118{word-spacing:6.126750px;}
.ws11_c00118{word-spacing:8.969562px;}
.ws10_c00118{word-spacing:8.976564px;}
.wsd_c00118{word-spacing:9.011574px;}
.wse_c00118{word-spacing:9.025578px;}
.wsf_c00118{word-spacing:9.340668px;}
.ws1f_c00118{word-spacing:9.690768px;}
.ws20_c00118{word-spacing:9.718776px;}
.ws15_c00118{word-spacing:10.103886px;}
.ws9_c00118{word-spacing:11.511288px;}
.ws18_c00118{word-spacing:17.981136px;}
.ws19_c00118{word-spacing:17.995140px;}
.wsc_c00118{word-spacing:19.437552px;}
.ws1a_c00118{word-spacing:21.216060px;}
.ws1b_c00118{word-spacing:21.230064px;}
.ws13_c00118{word-spacing:21.958272px;}
.ws12_c00118{word-spacing:21.979278px;}
.wsa_c00118{word-spacing:23.043582px;}
.ws4_c00118{word-spacing:23.057586px;}
._3_c00118{margin-left:-2.714832px;}
._0_c00118{margin-left:-1.351386px;}
._1_c00118{width:1.722492px;}
._2_c00118{width:5.930694px;}
.fc0_c00118{color:rgb(0,0,0);}
.fs2_c00118{font-size:37.809600px;}
.fs1_c00118{font-size:46.562400px;}
.fs3_c00118{font-size:58.466400px;}
.fs0_c00118{font-size:70.020000px;}
.y0_c00118{bottom:0.000000px;}
.y2_c00118{bottom:109.740968px;}
.y1_c00118{bottom:129.810450px;}
.y23_c00118{bottom:153.120600px;}
.y22_c00118{bottom:167.784056px;}
.y21_c00118{bottom:204.684596px;}
.y20_c00118{bottom:234.835208px;}
.y1f_c00118{bottom:265.075095px;}
.y1e_c00118{bottom:295.225707px;}
.y1d_c00118{bottom:325.465595px;}
.y1c_c00118{bottom:355.616207px;}
.y1b_c00118{bottom:385.856094px;}
.y1a_c00118{bottom:416.006706px;}
.y19_c00118{bottom:446.246594px;}
.y18_c00118{bottom:476.397206px;}
.y17_c00118{bottom:506.637093px;}
.y16_c00118{bottom:536.787705px;}
.y15_c00118{bottom:567.027593px;}
.y14_c00118{bottom:597.087179px;}
.y13_c00118{bottom:627.327066px;}
.y12_c00118{bottom:657.477678px;}
.y11_c00118{bottom:687.717566px;}
.y10_c00118{bottom:717.868178px;}
.yf_c00118{bottom:748.108065px;}
.ye_c00118{bottom:778.258677px;}
.yd_c00118{bottom:808.498565px;}
.yc_c00118{bottom:838.649177px;}
.yb_c00118{bottom:868.889064px;}
.ya_c00118{bottom:899.039676px;}
.y9_c00118{bottom:929.279563px;}
.y8_c00118{bottom:959.519451px;}
.y7_c00118{bottom:989.670063px;}
.y6_c00118{bottom:1019.909951px;}
.y5_c00118{bottom:1050.060563px;}
.y4_c00118{bottom:1080.300441px;}
.y3_c00118{bottom:1110.451053px;}
.h5_c00118{height:39.337949px;}
.h2_c00118{height:62.600889px;}
.h1_c00118{height:62.771836px;}
.h4_c00118{height:62.798014px;}
.h3_c00118{height:73.668822px;}
.h0_c00118{height:1263.000000px;}
.w0_c00118{width:892.500000px;}
.x0_c00118{left:0.000000px;}
.x2_c00118{left:82.710059px;}
.x3_c00118{left:108.989771px;}
.x1_c00118{left:431.730000px;}
@media print{
.v2_c00118{vertical-align:-13.120533pt;}
.v0_c00118{vertical-align:0.000000pt;}
.v1_c00118{vertical-align:28.480032pt;}
.lsf_c00118{letter-spacing:-0.067217pt;}
.ls6_c00118{letter-spacing:-0.056016pt;}
.lse_c00118{letter-spacing:-0.043568pt;}
.lsd_c00118{letter-spacing:-0.037344pt;}
.ls9_c00118{letter-spacing:-0.031120pt;}
.ls8_c00118{letter-spacing:-0.024896pt;}
.ls10_c00118{letter-spacing:-0.020788pt;}
.lsb_c00118{letter-spacing:-0.018672pt;}
.lsc_c00118{letter-spacing:-0.012448pt;}
.lsa_c00118{letter-spacing:-0.006224pt;}
.ls11_c00118{letter-spacing:-0.005197pt;}
.ls7_c00118{letter-spacing:0.000000pt;}
.ls4_c00118{letter-spacing:0.006224pt;}
.ls5_c00118{letter-spacing:0.012448pt;}
.ls0_c00118{letter-spacing:0.020694pt;}
.ls3_c00118{letter-spacing:0.031120pt;}
.ls2_c00118{letter-spacing:0.136928pt;}
.ls1_c00118{letter-spacing:0.298752pt;}
.ws2_c00118{word-spacing:-51.970133pt;}
.ws0_c00118{word-spacing:-11.526781pt;}
.ws1_c00118{word-spacing:-9.242347pt;}
.ws5_c00118{word-spacing:-0.304976pt;}
.ws8_c00118{word-spacing:-0.043568pt;}
.ws17_c00118{word-spacing:-0.018672pt;}
.ws1e_c00118{word-spacing:-0.012448pt;}
.ws3_c00118{word-spacing:0.000000pt;}
.ws24_c00118{word-spacing:0.015591pt;}
.ws14_c00118{word-spacing:0.024896pt;}
.ws22_c00118{word-spacing:0.031120pt;}
.ws23_c00118{word-spacing:0.031182pt;}
.ws16_c00118{word-spacing:0.336096pt;}
.wsb_c00118{word-spacing:1.294592pt;}
.ws7_c00118{word-spacing:2.732336pt;}
.ws6_c00118{word-spacing:2.900384pt;}
.ws21_c00118{word-spacing:3.510336pt;}
.ws1c_c00118{word-spacing:5.414880pt;}
.ws1d_c00118{word-spacing:5.446000pt;}
.ws11_c00118{word-spacing:7.972944pt;}
.ws10_c00118{word-spacing:7.979168pt;}
.wsd_c00118{word-spacing:8.010288pt;}
.wse_c00118{word-spacing:8.022736pt;}
.wsf_c00118{word-spacing:8.302816pt;}
.ws1f_c00118{word-spacing:8.614016pt;}
.ws20_c00118{word-spacing:8.638912pt;}
.ws15_c00118{word-spacing:8.981232pt;}
.ws9_c00118{word-spacing:10.232256pt;}
.ws18_c00118{word-spacing:15.983232pt;}
.ws19_c00118{word-spacing:15.995680pt;}
.wsc_c00118{word-spacing:17.277824pt;}
.ws1a_c00118{word-spacing:18.858720pt;}
.ws1b_c00118{word-spacing:18.871168pt;}
.ws13_c00118{word-spacing:19.518464pt;}
.ws12_c00118{word-spacing:19.537136pt;}
.wsa_c00118{word-spacing:20.483184pt;}
.ws4_c00118{word-spacing:20.495632pt;}
._3_c00118{margin-left:-2.413184pt;}
._0_c00118{margin-left:-1.201232pt;}
._1_c00118{width:1.531104pt;}
._2_c00118{width:5.271728pt;}
.fs2_c00118{font-size:33.608533pt;}
.fs1_c00118{font-size:41.388800pt;}
.fs3_c00118{font-size:51.970133pt;}
.fs0_c00118{font-size:62.240000pt;}
.y0_c00118{bottom:0.000000pt;}
.y2_c00118{bottom:97.547527pt;}
.y1_c00118{bottom:115.387067pt;}
.y23_c00118{bottom:136.107200pt;}
.y22_c00118{bottom:149.141383pt;}
.y21_c00118{bottom:181.941863pt;}
.y20_c00118{bottom:208.742407pt;}
.y1f_c00118{bottom:235.622307pt;}
.y1e_c00118{bottom:262.422851pt;}
.y1d_c00118{bottom:289.302751pt;}
.y1c_c00118{bottom:316.103295pt;}
.y1b_c00118{bottom:342.983195pt;}
.y1a_c00118{bottom:369.783739pt;}
.y19_c00118{bottom:396.663639pt;}
.y18_c00118{bottom:423.464183pt;}
.y17_c00118{bottom:450.344083pt;}
.y16_c00118{bottom:477.144627pt;}
.y15_c00118{bottom:504.024527pt;}
.y14_c00118{bottom:530.744159pt;}
.y13_c00118{bottom:557.624059pt;}
.y12_c00118{bottom:584.424603pt;}
.y11_c00118{bottom:611.304503pt;}
.y10_c00118{bottom:638.105047pt;}
.yf_c00118{bottom:664.984947pt;}
.ye_c00118{bottom:691.785491pt;}
.yd_c00118{bottom:718.665391pt;}
.yc_c00118{bottom:745.465935pt;}
.yb_c00118{bottom:772.345835pt;}
.ya_c00118{bottom:799.146379pt;}
.y9_c00118{bottom:826.026279pt;}
.y8_c00118{bottom:852.906179pt;}
.y7_c00118{bottom:879.706723pt;}
.y6_c00118{bottom:906.586623pt;}
.y5_c00118{bottom:933.387167pt;}
.y4_c00118{bottom:960.267059pt;}
.y3_c00118{bottom:987.067603pt;}
.h5_c00118{height:34.967066pt;}
.h2_c00118{height:55.645234pt;}
.h1_c00118{height:55.797187pt;}
.h4_c00118{height:55.820457pt;}
.h3_c00118{height:65.483398pt;}
.h0_c00118{height:1122.666667pt;}
.w0_c00118{width:793.333333pt;}
.x0_c00118{left:0.000000pt;}
.x2_c00118{left:73.520052pt;}
.x3_c00118{left:96.879796pt;}
.x1_c00118{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1cc341577d7735fc97d6fce8.woff2')format("woff");}.ff1_c00119{font-family:ff1_c00119;line-height:1.106934;font-style:normal;font-weight:normal;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_5d083f71f9ac5658ba05084a.woff2')format("woff");}.ff2_c00119{font-family:ff2_c00119;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00119{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00119{vertical-align:0.000000px;}
.ls6_c00119{letter-spacing:-0.129151px;}
.ls7_c00119{letter-spacing:-0.121554px;}
.lsa_c00119{letter-spacing:-0.084024px;}
.lsb_c00119{letter-spacing:-0.070020px;}
.ls5_c00119{letter-spacing:-0.068374px;}
.ls3_c00119{letter-spacing:-0.063018px;}
.lsd_c00119{letter-spacing:-0.028008px;}
.lsc_c00119{letter-spacing:-0.021006px;}
.ls8_c00119{letter-spacing:-0.014004px;}
.ls9_c00119{letter-spacing:-0.007002px;}
.ls4_c00119{letter-spacing:0.000000px;}
.ls0_c00119{letter-spacing:0.007002px;}
.ls1_c00119{letter-spacing:0.021006px;}
.ls2_c00119{letter-spacing:1.470420px;}
.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;}
}
.ws1f_c00119{word-spacing:-0.049014px;}
.ws8_c00119{word-spacing:-0.007002px;}
.ws0_c00119{word-spacing:0.000000px;}
.wsd_c00119{word-spacing:0.007002px;}
.ws4_c00119{word-spacing:0.075971px;}
.ws3_c00119{word-spacing:0.258303px;}
.ws1b_c00119{word-spacing:0.350100px;}
.ws5_c00119{word-spacing:0.357102px;}
.wsc_c00119{word-spacing:0.371106px;}
.wsa_c00119{word-spacing:0.413118px;}
.ws9_c00119{word-spacing:0.427122px;}
.ws19_c00119{word-spacing:1.428408px;}
.ws1a_c00119{word-spacing:1.442412px;}
.wsb_c00119{word-spacing:1.449414px;}
.ws1c_c00119{word-spacing:1.456416px;}
.wse_c00119{word-spacing:1.806516px;}
.ws7_c00119{word-spacing:7.177050px;}
.ws1e_c00119{word-spacing:10.755072px;}
.ws1d_c00119{word-spacing:10.797084px;}
.ws10_c00119{word-spacing:10.804086px;}
.ws16_c00119{word-spacing:13.310802px;}
.ws11_c00119{word-spacing:16.559730px;}
.ws12_c00119{word-spacing:19.451556px;}
.ws13_c00119{word-spacing:19.493568px;}
.wsf_c00119{word-spacing:21.944268px;}
.ws15_c00119{word-spacing:28.764216px;}
.ws14_c00119{word-spacing:28.813230px;}
.ws6_c00119{word-spacing:30.962844px;}
.ws18_c00119{word-spacing:32.006142px;}
.ws17_c00119{word-spacing:32.034150px;}
.ws2_c00119{word-spacing:46.942728px;}
.ws1_c00119{word-spacing:47.003505px;}
._1_c00119{margin-left:-1.463418px;}
._0_c00119{width:1.147168px;}
._2_c00119{width:2.647916px;}
.fc0_c00119{color:rgb(0,0,0);}
.fs0_c00119{font-size:70.020000px;}
.fs1_c00119{font-size:75.971400px;}
.y0_c00119{bottom:0.000000px;}
.y2_c00119{bottom:109.740968px;}
.y1_c00119{bottom:129.810450px;}
.y22_c00119{bottom:158.424875px;}
.y21_c00119{bottom:188.664762px;}
.y20_c00119{bottom:218.815374px;}
.y1f_c00119{bottom:249.055262px;}
.y1e_c00119{bottom:290.185010px;}
.y1d_c00119{bottom:320.335622px;}
.y1c_c00119{bottom:350.575509px;}
.y1b_c00119{bottom:380.726121px;}
.y1a_c00119{bottom:410.966009px;}
.y19_c00119{bottom:441.116621px;}
.y18_c00119{bottom:471.356508px;}
.y17_c00119{bottom:501.507120px;}
.y16_c00119{bottom:531.747008px;}
.y15_c00119{bottom:561.897620px;}
.y14_c00119{bottom:592.137507px;}
.y13_c00119{bottom:622.288119px;}
.y12_c00119{bottom:652.528007px;}
.y11_c00119{bottom:682.678619px;}
.y10_c00119{bottom:712.918506px;}
.yf_c00119{bottom:743.069118px;}
.ye_c00119{bottom:773.309006px;}
.yd_c00119{bottom:803.548893px;}
.yc_c00119{bottom:833.699505px;}
.yb_c00119{bottom:863.939393px;}
.ya_c00119{bottom:894.090005px;}
.y9_c00119{bottom:924.329892px;}
.y8_c00119{bottom:954.480504px;}
.y7_c00119{bottom:985.799683px;}
.y6_c00119{bottom:1018.560450px;}
.y5_c00119{bottom:1050.060553px;}
.y4_c00119{bottom:1080.300441px;}
.y3_c00119{bottom:1110.451053px;}
.h1_c00119{height:62.771836px;}
.h2_c00119{height:68.589413px;}
.h0_c00119{height:1263.000000px;}
.w0_c00119{width:892.500000px;}
.x0_c00119{left:0.000000px;}
.x2_c00119{left:82.710059px;}
.x1_c00119{left:431.730000px;}
@media print{
.v0_c00119{vertical-align:0.000000pt;}
.ls6_c00119{letter-spacing:-0.114801pt;}
.ls7_c00119{letter-spacing:-0.108048pt;}
.lsa_c00119{letter-spacing:-0.074688pt;}
.lsb_c00119{letter-spacing:-0.062240pt;}
.ls5_c00119{letter-spacing:-0.060777pt;}
.ls3_c00119{letter-spacing:-0.056016pt;}
.lsd_c00119{letter-spacing:-0.024896pt;}
.lsc_c00119{letter-spacing:-0.018672pt;}
.ls8_c00119{letter-spacing:-0.012448pt;}
.ls9_c00119{letter-spacing:-0.006224pt;}
.ls4_c00119{letter-spacing:0.000000pt;}
.ls0_c00119{letter-spacing:0.006224pt;}
.ls1_c00119{letter-spacing:0.018672pt;}
.ls2_c00119{letter-spacing:1.307040pt;}
.ws1f_c00119{word-spacing:-0.043568pt;}
.ws8_c00119{word-spacing:-0.006224pt;}
.ws0_c00119{word-spacing:0.000000pt;}
.wsd_c00119{word-spacing:0.006224pt;}
.ws4_c00119{word-spacing:0.067530pt;}
.ws3_c00119{word-spacing:0.229602pt;}
.ws1b_c00119{word-spacing:0.311200pt;}
.ws5_c00119{word-spacing:0.317424pt;}
.wsc_c00119{word-spacing:0.329872pt;}
.wsa_c00119{word-spacing:0.367216pt;}
.ws9_c00119{word-spacing:0.379664pt;}
.ws19_c00119{word-spacing:1.269696pt;}
.ws1a_c00119{word-spacing:1.282144pt;}
.wsb_c00119{word-spacing:1.288368pt;}
.ws1c_c00119{word-spacing:1.294592pt;}
.wse_c00119{word-spacing:1.605792pt;}
.ws7_c00119{word-spacing:6.379600pt;}
.ws1e_c00119{word-spacing:9.560064pt;}
.ws1d_c00119{word-spacing:9.597408pt;}
.ws10_c00119{word-spacing:9.603632pt;}
.ws16_c00119{word-spacing:11.831824pt;}
.ws11_c00119{word-spacing:14.719760pt;}
.ws12_c00119{word-spacing:17.290272pt;}
.ws13_c00119{word-spacing:17.327616pt;}
.wsf_c00119{word-spacing:19.506016pt;}
.ws15_c00119{word-spacing:25.568192pt;}
.ws14_c00119{word-spacing:25.611760pt;}
.ws6_c00119{word-spacing:27.522528pt;}
.ws18_c00119{word-spacing:28.449904pt;}
.ws17_c00119{word-spacing:28.474800pt;}
.ws2_c00119{word-spacing:41.726869pt;}
.ws1_c00119{word-spacing:41.780893pt;}
._1_c00119{margin-left:-1.300816pt;}
._0_c00119{width:1.019705pt;}
._2_c00119{width:2.353703pt;}
.fs0_c00119{font-size:62.240000pt;}
.fs1_c00119{font-size:67.530133pt;}
.y0_c00119{bottom:0.000000pt;}
.y2_c00119{bottom:97.547527pt;}
.y1_c00119{bottom:115.387067pt;}
.y22_c00119{bottom:140.822111pt;}
.y21_c00119{bottom:167.702011pt;}
.y20_c00119{bottom:194.502555pt;}
.y1f_c00119{bottom:221.382455pt;}
.y1e_c00119{bottom:257.942231pt;}
.y1d_c00119{bottom:284.742775pt;}
.y1c_c00119{bottom:311.622675pt;}
.y1b_c00119{bottom:338.423219pt;}
.y1a_c00119{bottom:365.303119pt;}
.y19_c00119{bottom:392.103663pt;}
.y18_c00119{bottom:418.983563pt;}
.y17_c00119{bottom:445.784107pt;}
.y16_c00119{bottom:472.664007pt;}
.y15_c00119{bottom:499.464551pt;}
.y14_c00119{bottom:526.344451pt;}
.y13_c00119{bottom:553.144995pt;}
.y12_c00119{bottom:580.024895pt;}
.y11_c00119{bottom:606.825439pt;}
.y10_c00119{bottom:633.705339pt;}
.yf_c00119{bottom:660.505883pt;}
.ye_c00119{bottom:687.385783pt;}
.yd_c00119{bottom:714.265683pt;}
.yc_c00119{bottom:741.066227pt;}
.yb_c00119{bottom:767.946127pt;}
.ya_c00119{bottom:794.746671pt;}
.y9_c00119{bottom:821.626571pt;}
.y8_c00119{bottom:848.427115pt;}
.y7_c00119{bottom:876.266385pt;}
.y6_c00119{bottom:905.387067pt;}
.y5_c00119{bottom:933.387159pt;}
.y4_c00119{bottom:960.267059pt;}
.y3_c00119{bottom:987.067603pt;}
.h1_c00119{height:55.797187pt;}
.h2_c00119{height:60.968367pt;}
.h0_c00119{height:1122.666667pt;}
.w0_c00119{width:793.333333pt;}
.x0_c00119{left:0.000000pt;}
.x2_c00119{left:73.520052pt;}
.x1_c00119{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d1db06c8bfa41933ffa4a8a8.woff2')format("woff");}.ff1_c00120{font-family:ff1_c00120;line-height:1.106934;font-style:normal;font-weight:normal;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_008298a9c5848bdeedf4a43a.woff2')format("woff");}.ff2_c00120{font-family:ff2_c00120;line-height:1.104492;font-style:normal;font-weight:normal;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_2db10fcb1c1cad0fd1394690.woff2')format("woff");}.ff3_c00120{font-family:ff3_c00120;line-height:1.133301;font-style:normal;font-weight:normal;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_fc26c70f3f6477f57353f5e6.woff2')format("woff");}.ff4_c00120{font-family:ff4_c00120;line-height:1.133301;font-style:normal;font-weight:normal;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_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff5_c00120{font-family:ff5_c00120;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00120;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff6_c00120{font-family:ff6_c00120;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00120{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00120{vertical-align:-14.760000px;}
.v0_c00120{vertical-align:0.000000px;}
.v1_c00120{vertical-align:32.044182px;}
.ls1c_c00120{letter-spacing:-0.344952px;}
.ls17_c00120{letter-spacing:-0.335249px;}
.ls1b_c00120{letter-spacing:-0.292332px;}
.ls26_c00120{letter-spacing:-0.268945px;}
.ls27_c00120{letter-spacing:-0.122779px;}
.ls28_c00120{letter-spacing:-0.111086px;}
.ls22_c00120{letter-spacing:-0.081853px;}
.ls1a_c00120{letter-spacing:-0.075619px;}
.ls21_c00120{letter-spacing:-0.070160px;}
.lsf_c00120{letter-spacing:-0.063018px;}
.ls24_c00120{letter-spacing:-0.046773px;}
.ls16_c00120{letter-spacing:-0.042012px;}
.ls1e_c00120{letter-spacing:-0.035080px;}
.ls12_c00120{letter-spacing:-0.035010px;}
.ls20_c00120{letter-spacing:-0.029233px;}
.ls23_c00120{letter-spacing:-0.023387px;}
.ls11_c00120{letter-spacing:-0.021006px;}
.ls25_c00120{letter-spacing:-0.017540px;}
.ls13_c00120{letter-spacing:-0.014004px;}
.ls1d_c00120{letter-spacing:-0.011693px;}
.ls15_c00120{letter-spacing:-0.007002px;}
.ls10_c00120{letter-spacing:0.000000px;}
.ls29_c00120{letter-spacing:0.011693px;}
.ls0_c00120{letter-spacing:0.014004px;}
.lsc_c00120{letter-spacing:0.021006px;}
.ls1_c00120{letter-spacing:0.023281px;}
.ls2_c00120{letter-spacing:0.140040px;}
.ls2a_c00120{letter-spacing:0.146166px;}
.lse_c00120{letter-spacing:0.228019px;}
.ls14_c00120{letter-spacing:0.343098px;}
.ls1f_c00120{letter-spacing:0.344952px;}
.lsd_c00120{letter-spacing:0.362492px;}
.ls4_c00120{letter-spacing:1.414404px;}
.ls6_c00120{letter-spacing:1.421406px;}
.ls7_c00120{letter-spacing:1.435410px;}
.ls19_c00120{letter-spacing:1.442412px;}
.ls9_c00120{letter-spacing:1.449414px;}
.ls18_c00120{letter-spacing:1.456416px;}
.lsa_c00120{letter-spacing:1.463418px;}
.ls8_c00120{letter-spacing:1.470420px;}
.lsb_c00120{letter-spacing:1.477422px;}
.ls3_c00120{letter-spacing:1.512432px;}
.ls5_c00120{letter-spacing:1.631466px;}
.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;}
}
.ws5_c00120{word-spacing:-58.466400px;}
.ws3_c00120{word-spacing:-20.935980px;}
.ws2_c00120{word-spacing:-20.886966px;}
.ws0_c00120{word-spacing:-12.967628px;}
.ws1_c00120{word-spacing:-12.609098px;}
.ws4_c00120{word-spacing:-10.397640px;}
.ws34_c00120{word-spacing:-0.689904px;}
.ws35_c00120{word-spacing:-0.233866px;}
.ws36_c00120{word-spacing:-0.134473px;}
.ws23_c00120{word-spacing:-0.049014px;}
.ws25_c00120{word-spacing:-0.035010px;}
.ws11_c00120{word-spacing:-0.014004px;}
.ws6_c00120{word-spacing:0.000000px;}
.ws16_c00120{word-spacing:0.007002px;}
.ws37_c00120{word-spacing:0.040926px;}
.ws33_c00120{word-spacing:0.134473px;}
.ws32_c00120{word-spacing:0.280639px;}
.ws7_c00120{word-spacing:0.364104px;}
.ws21_c00120{word-spacing:2.499714px;}
.wsc_c00120{word-spacing:3.248928px;}
.ws12_c00120{word-spacing:3.585024px;}
.wsa_c00120{word-spacing:4.292226px;}
.ws26_c00120{word-spacing:6.787949px;}
.ws1e_c00120{word-spacing:6.791940px;}
.ws27_c00120{word-spacing:6.840569px;}
.ws1c_c00120{word-spacing:7.541154px;}
.ws15_c00120{word-spacing:8.283366px;}
.ws28_c00120{word-spacing:8.302229px;}
.ws2b_c00120{word-spacing:8.319769px;}
.ws29_c00120{word-spacing:8.325615px;}
.ws2a_c00120{word-spacing:8.331462px;}
.ws2c_c00120{word-spacing:8.360695px;}
.ws1d_c00120{word-spacing:8.689482px;}
.ws31_c00120{word-spacing:9.144145px;}
.ws2e_c00120{word-spacing:9.395550px;}
.ws30_c00120{word-spacing:9.407244px;}
.ws2f_c00120{word-spacing:9.418937px;}
.ws2d_c00120{word-spacing:9.454017px;}
.ws22_c00120{word-spacing:10.040868px;}
.ws9_c00120{word-spacing:11.854386px;}
.wsb_c00120{word-spacing:11.889396px;}
.ws8_c00120{word-spacing:11.903400px;}
.ws20_c00120{word-spacing:12.596598px;}
.ws1f_c00120{word-spacing:12.953700px;}
.ws24_c00120{word-spacing:14.767218px;}
.ws14_c00120{word-spacing:15.103314px;}
.ws13_c00120{word-spacing:15.145326px;}
.ws18_c00120{word-spacing:15.754500px;}
.ws17_c00120{word-spacing:15.810516px;}
.ws1b_c00120{word-spacing:17.077878px;}
.ws1a_c00120{word-spacing:17.294940px;}
.ws19_c00120{word-spacing:17.652042px;}
.ws10_c00120{word-spacing:29.156328px;}
.wsf_c00120{word-spacing:34.043724px;}
.wse_c00120{word-spacing:34.197768px;}
.wsd_c00120{word-spacing:34.211772px;}
._3_c00120{margin-left:-2.646756px;}
._0_c00120{margin-left:-1.253358px;}
._1_c00120{width:1.022292px;}
._4_c00120{width:2.275650px;}
._5_c00120{width:5.930694px;}
._6_c00120{width:7.651759px;}
._2_c00120{width:33.795817px;}
.fc0_c00120{color:rgb(0,0,0);}
.fs2_c00120{font-size:37.809600px;}
.fs1_c00120{font-size:46.562400px;}
.fs3_c00120{font-size:58.466400px;}
.fs0_c00120{font-size:70.020000px;}
.y0_c00120{bottom:0.000000px;}
.y2_c00120{bottom:109.740968px;}
.y1_c00120{bottom:129.810450px;}
.y25_c00120{bottom:153.120600px;}
.y24_c00120{bottom:167.159486px;}
.y23_c00120{bottom:185.248990px;}
.y22_c00120{bottom:203.069548px;}
.y21_c00120{bottom:221.069891px;}
.y20_c00120{bottom:242.580450px;}
.y1f_c00120{bottom:257.247381px;}
.y1e_c00120{bottom:295.227979px;}
.y1d_c00120{bottom:325.467867px;}
.y1c_c00120{bottom:355.618479px;}
.y1b_c00120{bottom:385.858366px;}
.y1a_c00120{bottom:416.008979px;}
.y19_c00120{bottom:446.248866px;}
.y18_c00120{bottom:476.399478px;}
.y17_c00120{bottom:506.639365px;}
.y16_c00120{bottom:536.789977px;}
.y15_c00120{bottom:567.029865px;}
.y14_c00120{bottom:597.089451px;}
.y13_c00120{bottom:627.329338px;}
.y12_c00120{bottom:657.479950px;}
.y11_c00120{bottom:687.719838px;}
.y10_c00120{bottom:717.869064px;}
.yf_c00120{bottom:748.108951px;}
.ye_c00120{bottom:778.259564px;}
.yd_c00120{bottom:808.499451px;}
.yc_c00120{bottom:838.650063px;}
.yb_c00120{bottom:868.889950px;}
.ya_c00120{bottom:899.040562px;}
.y9_c00120{bottom:929.279555px;}
.y8_c00120{bottom:959.519442px;}
.y7_c00120{bottom:989.670054px;}
.y6_c00120{bottom:1019.909942px;}
.y5_c00120{bottom:1050.060553px;}
.y4_c00120{bottom:1080.300441px;}
.y3_c00120{bottom:1110.451053px;}
.h8_c00120{height:39.337949px;}
.h6_c00120{height:39.338549px;}
.h7_c00120{height:54.098549px;}
.h3_c00120{height:62.600889px;}
.h1_c00120{height:62.771836px;}
.h5_c00120{height:62.784112px;}
.h2_c00120{height:73.672968px;}
.h4_c00120{height:74.034330px;}
.h0_c00120{height:1263.000000px;}
.w0_c00120{width:892.500000px;}
.x0_c00120{left:0.000000px;}
.x2_c00120{left:82.710059px;}
.x1_c00120{left:431.730000px;}
@media print{
.v2_c00120{vertical-align:-13.120000pt;}
.v0_c00120{vertical-align:0.000000pt;}
.v1_c00120{vertical-align:28.483717pt;}
.ls1c_c00120{letter-spacing:-0.306624pt;}
.ls17_c00120{letter-spacing:-0.297999pt;}
.ls1b_c00120{letter-spacing:-0.259851pt;}
.ls26_c00120{letter-spacing:-0.239063pt;}
.ls27_c00120{letter-spacing:-0.109137pt;}
.ls28_c00120{letter-spacing:-0.098743pt;}
.ls22_c00120{letter-spacing:-0.072758pt;}
.ls1a_c00120{letter-spacing:-0.067217pt;}
.ls21_c00120{letter-spacing:-0.062364pt;}
.lsf_c00120{letter-spacing:-0.056016pt;}
.ls24_c00120{letter-spacing:-0.041576pt;}
.ls16_c00120{letter-spacing:-0.037344pt;}
.ls1e_c00120{letter-spacing:-0.031182pt;}
.ls12_c00120{letter-spacing:-0.031120pt;}
.ls20_c00120{letter-spacing:-0.025985pt;}
.ls23_c00120{letter-spacing:-0.020788pt;}
.ls11_c00120{letter-spacing:-0.018672pt;}
.ls25_c00120{letter-spacing:-0.015591pt;}
.ls13_c00120{letter-spacing:-0.012448pt;}
.ls1d_c00120{letter-spacing:-0.010394pt;}
.ls15_c00120{letter-spacing:-0.006224pt;}
.ls10_c00120{letter-spacing:0.000000pt;}
.ls29_c00120{letter-spacing:0.010394pt;}
.ls0_c00120{letter-spacing:0.012448pt;}
.lsc_c00120{letter-spacing:0.018672pt;}
.ls1_c00120{letter-spacing:0.020694pt;}
.ls2_c00120{letter-spacing:0.124480pt;}
.ls2a_c00120{letter-spacing:0.129925pt;}
.lse_c00120{letter-spacing:0.202684pt;}
.ls14_c00120{letter-spacing:0.304976pt;}
.ls1f_c00120{letter-spacing:0.306624pt;}
.lsd_c00120{letter-spacing:0.322215pt;}
.ls4_c00120{letter-spacing:1.257248pt;}
.ls6_c00120{letter-spacing:1.263472pt;}
.ls7_c00120{letter-spacing:1.275920pt;}
.ls19_c00120{letter-spacing:1.282144pt;}
.ls9_c00120{letter-spacing:1.288368pt;}
.ls18_c00120{letter-spacing:1.294592pt;}
.lsa_c00120{letter-spacing:1.300816pt;}
.ls8_c00120{letter-spacing:1.307040pt;}
.lsb_c00120{letter-spacing:1.313264pt;}
.ls3_c00120{letter-spacing:1.344384pt;}
.ls5_c00120{letter-spacing:1.450192pt;}
.ws5_c00120{word-spacing:-51.970133pt;}
.ws3_c00120{word-spacing:-18.609760pt;}
.ws2_c00120{word-spacing:-18.566192pt;}
.ws0_c00120{word-spacing:-11.526781pt;}
.ws1_c00120{word-spacing:-11.208087pt;}
.ws4_c00120{word-spacing:-9.242347pt;}
.ws34_c00120{word-spacing:-0.613248pt;}
.ws35_c00120{word-spacing:-0.207881pt;}
.ws36_c00120{word-spacing:-0.119531pt;}
.ws23_c00120{word-spacing:-0.043568pt;}
.ws25_c00120{word-spacing:-0.031120pt;}
.ws11_c00120{word-spacing:-0.012448pt;}
.ws6_c00120{word-spacing:0.000000pt;}
.ws16_c00120{word-spacing:0.006224pt;}
.ws37_c00120{word-spacing:0.036379pt;}
.ws33_c00120{word-spacing:0.119531pt;}
.ws32_c00120{word-spacing:0.249457pt;}
.ws7_c00120{word-spacing:0.323648pt;}
.ws21_c00120{word-spacing:2.221968pt;}
.wsc_c00120{word-spacing:2.887936pt;}
.ws12_c00120{word-spacing:3.186688pt;}
.wsa_c00120{word-spacing:3.815312pt;}
.ws26_c00120{word-spacing:6.033732pt;}
.ws1e_c00120{word-spacing:6.037280pt;}
.ws27_c00120{word-spacing:6.080506pt;}
.ws1c_c00120{word-spacing:6.703248pt;}
.ws15_c00120{word-spacing:7.362992pt;}
.ws28_c00120{word-spacing:7.379759pt;}
.ws2b_c00120{word-spacing:7.395350pt;}
.ws29_c00120{word-spacing:7.400547pt;}
.ws2a_c00120{word-spacing:7.405744pt;}
.ws2c_c00120{word-spacing:7.431729pt;}
.ws1d_c00120{word-spacing:7.723984pt;}
.ws31_c00120{word-spacing:8.128129pt;}
.ws2e_c00120{word-spacing:8.351600pt;}
.ws30_c00120{word-spacing:8.361994pt;}
.ws2f_c00120{word-spacing:8.372388pt;}
.ws2d_c00120{word-spacing:8.403571pt;}
.ws22_c00120{word-spacing:8.925216pt;}
.ws9_c00120{word-spacing:10.537232pt;}
.wsb_c00120{word-spacing:10.568352pt;}
.ws8_c00120{word-spacing:10.580800pt;}
.ws20_c00120{word-spacing:11.196976pt;}
.ws1f_c00120{word-spacing:11.514400pt;}
.ws24_c00120{word-spacing:13.126416pt;}
.ws14_c00120{word-spacing:13.425168pt;}
.ws13_c00120{word-spacing:13.462512pt;}
.ws18_c00120{word-spacing:14.004000pt;}
.ws17_c00120{word-spacing:14.053792pt;}
.ws1b_c00120{word-spacing:15.180336pt;}
.ws1a_c00120{word-spacing:15.373280pt;}
.ws19_c00120{word-spacing:15.690704pt;}
.ws10_c00120{word-spacing:25.916736pt;}
.wsf_c00120{word-spacing:30.261088pt;}
.wse_c00120{word-spacing:30.398016pt;}
.wsd_c00120{word-spacing:30.410464pt;}
._3_c00120{margin-left:-2.352672pt;}
._0_c00120{margin-left:-1.114096pt;}
._1_c00120{width:0.908704pt;}
._4_c00120{width:2.022800pt;}
._5_c00120{width:5.271728pt;}
._6_c00120{width:6.801564pt;}
._2_c00120{width:30.040726pt;}
.fs2_c00120{font-size:33.608533pt;}
.fs1_c00120{font-size:41.388800pt;}
.fs3_c00120{font-size:51.970133pt;}
.fs0_c00120{font-size:62.240000pt;}
.y0_c00120{bottom:0.000000pt;}
.y2_c00120{bottom:97.547527pt;}
.y1_c00120{bottom:115.387067pt;}
.y25_c00120{bottom:136.107200pt;}
.y24_c00120{bottom:148.586209pt;}
.y23_c00120{bottom:164.665769pt;}
.y22_c00120{bottom:180.506265pt;}
.y21_c00120{bottom:196.506570pt;}
.y20_c00120{bottom:215.627067pt;}
.y1f_c00120{bottom:228.664339pt;}
.y1e_c00120{bottom:262.424871pt;}
.y1d_c00120{bottom:289.304771pt;}
.y1c_c00120{bottom:316.105315pt;}
.y1b_c00120{bottom:342.985215pt;}
.y1a_c00120{bottom:369.785759pt;}
.y19_c00120{bottom:396.665659pt;}
.y18_c00120{bottom:423.466203pt;}
.y17_c00120{bottom:450.346103pt;}
.y16_c00120{bottom:477.146647pt;}
.y15_c00120{bottom:504.026547pt;}
.y14_c00120{bottom:530.746179pt;}
.y13_c00120{bottom:557.626079pt;}
.y12_c00120{bottom:584.426623pt;}
.y11_c00120{bottom:611.306523pt;}
.y10_c00120{bottom:638.105835pt;}
.yf_c00120{bottom:664.985735pt;}
.ye_c00120{bottom:691.786279pt;}
.yd_c00120{bottom:718.666179pt;}
.yc_c00120{bottom:745.466723pt;}
.yb_c00120{bottom:772.346623pt;}
.ya_c00120{bottom:799.147167pt;}
.y9_c00120{bottom:826.026271pt;}
.y8_c00120{bottom:852.906171pt;}
.y7_c00120{bottom:879.706715pt;}
.y6_c00120{bottom:906.586615pt;}
.y5_c00120{bottom:933.387159pt;}
.y4_c00120{bottom:960.267059pt;}
.y3_c00120{bottom:987.067603pt;}
.h8_c00120{height:34.967066pt;}
.h6_c00120{height:34.967599pt;}
.h7_c00120{height:48.087599pt;}
.h3_c00120{height:55.645234pt;}
.h1_c00120{height:55.797187pt;}
.h5_c00120{height:55.808100pt;}
.h2_c00120{height:65.487083pt;}
.h4_c00120{height:65.808294pt;}
.h0_c00120{height:1122.666667pt;}
.w0_c00120{width:793.333333pt;}
.x0_c00120{left:0.000000pt;}
.x2_c00120{left:73.520052pt;}
.x1_c00120{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ac67dd4a1d6eb15cf1e8099a.woff2')format("woff");}.ff1_c00121{font-family:ff1_c00121;line-height:1.106934;font-style:normal;font-weight:normal;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_89684112d8c9092776bc5d3e.woff2')format("woff");}.ff2_c00121{font-family:ff2_c00121;line-height:1.104492;font-style:normal;font-weight:normal;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_5b168c1a7746bd02677e5407.woff2')format("woff");}.ff3_c00121{font-family:ff3_c00121;line-height:1.133301;font-style:normal;font-weight:normal;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_2f47804e5a731381d8d570fe.woff2')format("woff");}.ff4_c00121{font-family:ff4_c00121;line-height:1.133301;font-style:normal;font-weight:normal;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_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff5_c00121{font-family:ff5_c00121;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00121;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff6_c00121{font-family:ff6_c00121;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00121{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00121{vertical-align:-14.760000px;}
.v0_c00121{vertical-align:0.000000px;}
.v1_c00121{vertical-align:32.411016px;}
.lsf_c00121{letter-spacing:-0.239712px;}
.lse_c00121{letter-spacing:-0.075619px;}
.ls6_c00121{letter-spacing:-0.063018px;}
.ls10_c00121{letter-spacing:-0.058466px;}
.lsd_c00121{letter-spacing:-0.049014px;}
.lsb_c00121{letter-spacing:-0.035010px;}
.ls9_c00121{letter-spacing:-0.028008px;}
.lsc_c00121{letter-spacing:-0.021006px;}
.lsa_c00121{letter-spacing:-0.014004px;}
.ls8_c00121{letter-spacing:-0.007002px;}
.ls7_c00121{letter-spacing:0.000000px;}
.ls5_c00121{letter-spacing:0.005847px;}
.ls0_c00121{letter-spacing:0.007002px;}
.ls1_c00121{letter-spacing:0.014004px;}
.ls2_c00121{letter-spacing:0.021006px;}
.ls3_c00121{letter-spacing:0.023281px;}
.ls4_c00121{letter-spacing:0.046773px;}
.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;}
}
.ws2_c00121{word-spacing:-58.466400px;}
.ws0_c00121{word-spacing:-12.967628px;}
.ws1_c00121{word-spacing:-10.397640px;}
.ws4_c00121{word-spacing:-0.014004px;}
.ws12_c00121{word-spacing:-0.007002px;}
.ws3_c00121{word-spacing:0.000000px;}
.ws23_c00121{word-spacing:0.011693px;}
.ws7_c00121{word-spacing:0.350100px;}
.ws18_c00121{word-spacing:0.357102px;}
.ws17_c00121{word-spacing:0.693198px;}
.ws8_c00121{word-spacing:0.735210px;}
.ws1c_c00121{word-spacing:1.834524px;}
.ws20_c00121{word-spacing:2.847314px;}
.ws21_c00121{word-spacing:2.952553px;}
.ws22_c00121{word-spacing:3.244885px;}
.ws1f_c00121{word-spacing:3.309198px;}
.ws1e_c00121{word-spacing:3.490444px;}
.ws15_c00121{word-spacing:3.984138px;}
.wsc_c00121{word-spacing:4.313232px;}
.ws16_c00121{word-spacing:4.320234px;}
.ws13_c00121{word-spacing:7.527150px;}
.wse_c00121{word-spacing:11.133180px;}
.wsd_c00121{word-spacing:11.539296px;}
.ws10_c00121{word-spacing:12.967704px;}
.ws11_c00121{word-spacing:14.368104px;}
.wsb_c00121{word-spacing:14.396112px;}
.wsa_c00121{word-spacing:14.417118px;}
.ws19_c00121{word-spacing:16.566732px;}
.ws1a_c00121{word-spacing:16.888824px;}
.ws9_c00121{word-spacing:19.430550px;}
.ws1b_c00121{word-spacing:22.322376px;}
.ws1d_c00121{word-spacing:24.135894px;}
.ws14_c00121{word-spacing:29.877534px;}
.ws6_c00121{word-spacing:32.020146px;}
.ws5_c00121{word-spacing:32.034150px;}
.wsf_c00121{word-spacing:45.723060px;}
._3_c00121{margin-left:-2.712150px;}
._1_c00121{margin-left:-1.176336px;}
._0_c00121{width:1.288368px;}
._2_c00121{width:5.930694px;}
.fc0_c00121{color:rgb(0,0,0);}
.fs2_c00121{font-size:37.809600px;}
.fs1_c00121{font-size:46.562400px;}
.fs3_c00121{font-size:58.466400px;}
.fs0_c00121{font-size:70.020000px;}
.y0_c00121{bottom:0.000000px;}
.y2_c00121{bottom:109.740968px;}
.y1_c00121{bottom:129.810450px;}
.y23_c00121{bottom:149.429891px;}
.y22_c00121{bottom:170.940450px;}
.y21_c00121{bottom:185.697916px;}
.y20_c00121{bottom:234.837952px;}
.y1f_c00121{bottom:265.077840px;}
.y1e_c00121{bottom:295.228452px;}
.y1d_c00121{bottom:325.468339px;}
.y1c_c00121{bottom:355.618951px;}
.y1b_c00121{bottom:385.858839px;}
.y1a_c00121{bottom:416.009451px;}
.y19_c00121{bottom:446.249338px;}
.y18_c00121{bottom:476.399950px;}
.y17_c00121{bottom:506.639838px;}
.y16_c00121{bottom:536.787696px;}
.y15_c00121{bottom:567.027584px;}
.y14_c00121{bottom:597.087170px;}
.y13_c00121{bottom:627.327057px;}
.y12_c00121{bottom:657.477669px;}
.y11_c00121{bottom:687.717557px;}
.y10_c00121{bottom:717.868169px;}
.yf_c00121{bottom:748.108056px;}
.ye_c00121{bottom:778.258668px;}
.yd_c00121{bottom:808.498556px;}
.yc_c00121{bottom:838.649168px;}
.yb_c00121{bottom:868.889055px;}
.ya_c00121{bottom:899.039667px;}
.y9_c00121{bottom:929.279555px;}
.y8_c00121{bottom:959.519442px;}
.y7_c00121{bottom:989.670054px;}
.y6_c00121{bottom:1019.909942px;}
.y5_c00121{bottom:1050.060553px;}
.y4_c00121{bottom:1080.300441px;}
.y3_c00121{bottom:1110.451053px;}
.h5_c00121{height:39.338549px;}
.h6_c00121{height:54.098549px;}
.h2_c00121{height:62.600889px;}
.h1_c00121{height:62.771836px;}
.h4_c00121{height:62.782570px;}
.h3_c00121{height:74.039802px;}
.h0_c00121{height:1263.000000px;}
.w0_c00121{width:892.500000px;}
.x0_c00121{left:0.000000px;}
.x2_c00121{left:82.710059px;}
.x1_c00121{left:431.730000px;}
@media print{
.v2_c00121{vertical-align:-13.120000pt;}
.v0_c00121{vertical-align:0.000000pt;}
.v1_c00121{vertical-align:28.809792pt;}
.lsf_c00121{letter-spacing:-0.213078pt;}
.lse_c00121{letter-spacing:-0.067217pt;}
.ls6_c00121{letter-spacing:-0.056016pt;}
.ls10_c00121{letter-spacing:-0.051970pt;}
.lsd_c00121{letter-spacing:-0.043568pt;}
.lsb_c00121{letter-spacing:-0.031120pt;}
.ls9_c00121{letter-spacing:-0.024896pt;}
.lsc_c00121{letter-spacing:-0.018672pt;}
.lsa_c00121{letter-spacing:-0.012448pt;}
.ls8_c00121{letter-spacing:-0.006224pt;}
.ls7_c00121{letter-spacing:0.000000pt;}
.ls5_c00121{letter-spacing:0.005197pt;}
.ls0_c00121{letter-spacing:0.006224pt;}
.ls1_c00121{letter-spacing:0.012448pt;}
.ls2_c00121{letter-spacing:0.018672pt;}
.ls3_c00121{letter-spacing:0.020694pt;}
.ls4_c00121{letter-spacing:0.041576pt;}
.ws2_c00121{word-spacing:-51.970133pt;}
.ws0_c00121{word-spacing:-11.526781pt;}
.ws1_c00121{word-spacing:-9.242347pt;}
.ws4_c00121{word-spacing:-0.012448pt;}
.ws12_c00121{word-spacing:-0.006224pt;}
.ws3_c00121{word-spacing:0.000000pt;}
.ws23_c00121{word-spacing:0.010394pt;}
.ws7_c00121{word-spacing:0.311200pt;}
.ws18_c00121{word-spacing:0.317424pt;}
.ws17_c00121{word-spacing:0.616176pt;}
.ws8_c00121{word-spacing:0.653520pt;}
.ws1c_c00121{word-spacing:1.630688pt;}
.ws20_c00121{word-spacing:2.530945pt;}
.ws21_c00121{word-spacing:2.624492pt;}
.ws22_c00121{word-spacing:2.884342pt;}
.ws1f_c00121{word-spacing:2.941510pt;}
.ws1e_c00121{word-spacing:3.102617pt;}
.ws15_c00121{word-spacing:3.541456pt;}
.wsc_c00121{word-spacing:3.833984pt;}
.ws16_c00121{word-spacing:3.840208pt;}
.ws13_c00121{word-spacing:6.690800pt;}
.wse_c00121{word-spacing:9.896160pt;}
.wsd_c00121{word-spacing:10.257152pt;}
.ws10_c00121{word-spacing:11.526848pt;}
.ws11_c00121{word-spacing:12.771648pt;}
.wsb_c00121{word-spacing:12.796544pt;}
.wsa_c00121{word-spacing:12.815216pt;}
.ws19_c00121{word-spacing:14.725984pt;}
.ws1a_c00121{word-spacing:15.012288pt;}
.ws9_c00121{word-spacing:17.271600pt;}
.ws1b_c00121{word-spacing:19.842112pt;}
.ws1d_c00121{word-spacing:21.454128pt;}
.ws14_c00121{word-spacing:26.557808pt;}
.ws6_c00121{word-spacing:28.462352pt;}
.ws5_c00121{word-spacing:28.474800pt;}
.wsf_c00121{word-spacing:40.642720pt;}
._3_c00121{margin-left:-2.410800pt;}
._1_c00121{margin-left:-1.045632pt;}
._0_c00121{width:1.145216pt;}
._2_c00121{width:5.271728pt;}
.fs2_c00121{font-size:33.608533pt;}
.fs1_c00121{font-size:41.388800pt;}
.fs3_c00121{font-size:51.970133pt;}
.fs0_c00121{font-size:62.240000pt;}
.y0_c00121{bottom:0.000000pt;}
.y2_c00121{bottom:97.547527pt;}
.y1_c00121{bottom:115.387067pt;}
.y23_c00121{bottom:132.826570pt;}
.y22_c00121{bottom:151.947067pt;}
.y21_c00121{bottom:165.064815pt;}
.y20_c00121{bottom:208.744847pt;}
.y1f_c00121{bottom:235.624747pt;}
.y1e_c00121{bottom:262.425291pt;}
.y1d_c00121{bottom:289.305191pt;}
.y1c_c00121{bottom:316.105735pt;}
.y1b_c00121{bottom:342.985635pt;}
.y1a_c00121{bottom:369.786179pt;}
.y19_c00121{bottom:396.666079pt;}
.y18_c00121{bottom:423.466623pt;}
.y17_c00121{bottom:450.346523pt;}
.y16_c00121{bottom:477.144619pt;}
.y15_c00121{bottom:504.024519pt;}
.y14_c00121{bottom:530.744151pt;}
.y13_c00121{bottom:557.624051pt;}
.y12_c00121{bottom:584.424595pt;}
.y11_c00121{bottom:611.304495pt;}
.y10_c00121{bottom:638.105039pt;}
.yf_c00121{bottom:664.984939pt;}
.ye_c00121{bottom:691.785483pt;}
.yd_c00121{bottom:718.665383pt;}
.yc_c00121{bottom:745.465927pt;}
.yb_c00121{bottom:772.345827pt;}
.ya_c00121{bottom:799.146371pt;}
.y9_c00121{bottom:826.026271pt;}
.y8_c00121{bottom:852.906171pt;}
.y7_c00121{bottom:879.706715pt;}
.y6_c00121{bottom:906.586615pt;}
.y5_c00121{bottom:933.387159pt;}
.y4_c00121{bottom:960.267059pt;}
.y3_c00121{bottom:987.067603pt;}
.h5_c00121{height:34.967599pt;}
.h6_c00121{height:48.087599pt;}
.h2_c00121{height:55.645234pt;}
.h1_c00121{height:55.797187pt;}
.h4_c00121{height:55.806729pt;}
.h3_c00121{height:65.813158pt;}
.h0_c00121{height:1122.666667pt;}
.w0_c00121{width:793.333333pt;}
.x0_c00121{left:0.000000pt;}
.x2_c00121{left:73.520052pt;}
.x1_c00121{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_db57c9be161f4fa186aae0be.woff2')format("woff");}.ff1_c00122{font-family:ff1_c00122;line-height:1.106934;font-style:normal;font-weight:normal;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_dcb6122d8eb96d3c7b0e768d.woff2')format("woff");}.ff2_c00122{font-family:ff2_c00122;line-height:1.104492;font-style:normal;font-weight:normal;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_398f153ab774620dd8ebfc19.woff2')format("woff");}.ff3_c00122{font-family:ff3_c00122;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00122{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00122{vertical-align:-14.760600px;}
.v0_c00122{vertical-align:0.000000px;}
.v1_c00122{vertical-align:32.403132px;}
.lse_c00122{letter-spacing:-0.274792px;}
.lsd_c00122{letter-spacing:-0.075619px;}
.ls5_c00122{letter-spacing:-0.063018px;}
.lsa_c00122{letter-spacing:-0.042012px;}
.ls7_c00122{letter-spacing:-0.035010px;}
.ls8_c00122{letter-spacing:-0.028008px;}
.ls9_c00122{letter-spacing:-0.021006px;}
.lsb_c00122{letter-spacing:-0.014004px;}
.lsc_c00122{letter-spacing:-0.007002px;}
.ls6_c00122{letter-spacing:0.000000px;}
.ls0_c00122{letter-spacing:0.007002px;}
.ls2_c00122{letter-spacing:0.014004px;}
.ls3_c00122{letter-spacing:0.023281px;}
.ls1_c00122{letter-spacing:0.035010px;}
.ls4_c00122{letter-spacing:0.042012px;}
.sc__c00122{text-shadow:none;}
.sc0_c00122{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00122{-webkit-text-stroke:0px transparent;}
.sc0_c00122{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00122{word-spacing:-19.423548px;}
.ws1_c00122{word-spacing:-12.967628px;}
.ws2_c00122{word-spacing:-10.397640px;}
.ws3_c00122{word-spacing:0.000000px;}
.ws19_c00122{word-spacing:0.021006px;}
.ws1d_c00122{word-spacing:0.028008px;}
.ws1e_c00122{word-spacing:0.286485px;}
.ws13_c00122{word-spacing:0.336096px;}
.wsd_c00122{word-spacing:0.371106px;}
.ws4_c00122{word-spacing:0.378108px;}
.ws8_c00122{word-spacing:1.393398px;}
.ws12_c00122{word-spacing:1.442412px;}
.ws7_c00122{word-spacing:1.456416px;}
.ws6_c00122{word-spacing:2.863818px;}
.ws5_c00122{word-spacing:3.942126px;}
.ws10_c00122{word-spacing:4.691340px;}
.ws11_c00122{word-spacing:6.462846px;}
.ws9_c00122{word-spacing:6.812946px;}
.wse_c00122{word-spacing:7.205058px;}
.ws1c_c00122{word-spacing:7.562160px;}
.wsa_c00122{word-spacing:8.647470px;}
.ws14_c00122{word-spacing:9.662760px;}
.ws15_c00122{word-spacing:9.711774px;}
.ws16_c00122{word-spacing:10.096884px;}
.ws1b_c00122{word-spacing:10.811088px;}
.ws18_c00122{word-spacing:15.110316px;}
.wsf_c00122{word-spacing:15.495426px;}
.ws17_c00122{word-spacing:17.617032px;}
.wsb_c00122{word-spacing:23.015574px;}
.wsc_c00122{word-spacing:23.372676px;}
.ws1a_c00122{word-spacing:27.377820px;}
._3_c00122{margin-left:-2.705274px;}
._1_c00122{margin-left:-1.022292px;}
._0_c00122{width:1.064304px;}
._2_c00122{width:5.930694px;}
.fc0_c00122{color:rgb(0,0,0);}
.fs2_c00122{font-size:37.809600px;}
.fs1_c00122{font-size:46.562400px;}
.fs3_c00122{font-size:58.466400px;}
.fs0_c00122{font-size:70.020000px;}
.y0_c00122{bottom:0.000000px;}
.y2_c00122{bottom:109.740968px;}
.y1_c00122{bottom:129.810450px;}
.y22_c00122{bottom:153.120600px;}
.y21_c00122{bottom:167.786730px;}
.y20_c00122{bottom:234.836131px;}
.y1f_c00122{bottom:265.076019px;}
.y1e_c00122{bottom:295.226631px;}
.y1d_c00122{bottom:325.466518px;}
.y1c_c00122{bottom:355.617130px;}
.y1b_c00122{bottom:385.857018px;}
.y1a_c00122{bottom:416.007630px;}
.y19_c00122{bottom:446.247517px;}
.y18_c00122{bottom:476.398129px;}
.y17_c00122{bottom:506.638017px;}
.y16_c00122{bottom:536.788629px;}
.y15_c00122{bottom:567.028516px;}
.y14_c00122{bottom:597.088102px;}
.y13_c00122{bottom:627.327990px;}
.y12_c00122{bottom:657.478602px;}
.y11_c00122{bottom:687.718489px;}
.y10_c00122{bottom:717.869101px;}
.yf_c00122{bottom:748.108989px;}
.ye_c00122{bottom:778.259601px;}
.yd_c00122{bottom:808.499488px;}
.yc_c00122{bottom:838.650100px;}
.yb_c00122{bottom:868.889988px;}
.ya_c00122{bottom:899.039667px;}
.y9_c00122{bottom:929.279555px;}
.y8_c00122{bottom:959.519442px;}
.y7_c00122{bottom:989.670054px;}
.y6_c00122{bottom:1019.909942px;}
.y5_c00122{bottom:1050.060553px;}
.y4_c00122{bottom:1080.300441px;}
.y3_c00122{bottom:1110.451053px;}
.h5_c00122{height:39.337949px;}
.h2_c00122{height:62.600889px;}
.h1_c00122{height:62.771836px;}
.h4_c00122{height:62.787316px;}
.h3_c00122{height:74.031918px;}
.h0_c00122{height:1263.000000px;}
.w0_c00122{width:892.500000px;}
.x0_c00122{left:0.000000px;}
.x2_c00122{left:82.710059px;}
.x1_c00122{left:431.730000px;}
@media print{
.v2_c00122{vertical-align:-13.120533pt;}
.v0_c00122{vertical-align:0.000000pt;}
.v1_c00122{vertical-align:28.802784pt;}
.lse_c00122{letter-spacing:-0.244260pt;}
.lsd_c00122{letter-spacing:-0.067217pt;}
.ls5_c00122{letter-spacing:-0.056016pt;}
.lsa_c00122{letter-spacing:-0.037344pt;}
.ls7_c00122{letter-spacing:-0.031120pt;}
.ls8_c00122{letter-spacing:-0.024896pt;}
.ls9_c00122{letter-spacing:-0.018672pt;}
.lsb_c00122{letter-spacing:-0.012448pt;}
.lsc_c00122{letter-spacing:-0.006224pt;}
.ls6_c00122{letter-spacing:0.000000pt;}
.ls0_c00122{letter-spacing:0.006224pt;}
.ls2_c00122{letter-spacing:0.012448pt;}
.ls3_c00122{letter-spacing:0.020694pt;}
.ls1_c00122{letter-spacing:0.031120pt;}
.ls4_c00122{letter-spacing:0.037344pt;}
.ws0_c00122{word-spacing:-17.265376pt;}
.ws1_c00122{word-spacing:-11.526781pt;}
.ws2_c00122{word-spacing:-9.242347pt;}
.ws3_c00122{word-spacing:0.000000pt;}
.ws19_c00122{word-spacing:0.018672pt;}
.ws1d_c00122{word-spacing:0.024896pt;}
.ws1e_c00122{word-spacing:0.254654pt;}
.ws13_c00122{word-spacing:0.298752pt;}
.wsd_c00122{word-spacing:0.329872pt;}
.ws4_c00122{word-spacing:0.336096pt;}
.ws8_c00122{word-spacing:1.238576pt;}
.ws12_c00122{word-spacing:1.282144pt;}
.ws7_c00122{word-spacing:1.294592pt;}
.ws6_c00122{word-spacing:2.545616pt;}
.ws5_c00122{word-spacing:3.504112pt;}
.ws10_c00122{word-spacing:4.170080pt;}
.ws11_c00122{word-spacing:5.744752pt;}
.ws9_c00122{word-spacing:6.055952pt;}
.wse_c00122{word-spacing:6.404496pt;}
.ws1c_c00122{word-spacing:6.721920pt;}
.wsa_c00122{word-spacing:7.686640pt;}
.ws14_c00122{word-spacing:8.589120pt;}
.ws15_c00122{word-spacing:8.632688pt;}
.ws16_c00122{word-spacing:8.975008pt;}
.ws1b_c00122{word-spacing:9.609856pt;}
.ws18_c00122{word-spacing:13.431392pt;}
.wsf_c00122{word-spacing:13.773712pt;}
.ws17_c00122{word-spacing:15.659584pt;}
.wsb_c00122{word-spacing:20.458288pt;}
.wsc_c00122{word-spacing:20.775712pt;}
.ws1a_c00122{word-spacing:24.335840pt;}
._3_c00122{margin-left:-2.404688pt;}
._1_c00122{margin-left:-0.908704pt;}
._0_c00122{width:0.946048pt;}
._2_c00122{width:5.271728pt;}
.fs2_c00122{font-size:33.608533pt;}
.fs1_c00122{font-size:41.388800pt;}
.fs3_c00122{font-size:51.970133pt;}
.fs0_c00122{font-size:62.240000pt;}
.y0_c00122{bottom:0.000000pt;}
.y2_c00122{bottom:97.547527pt;}
.y1_c00122{bottom:115.387067pt;}
.y22_c00122{bottom:136.107200pt;}
.y21_c00122{bottom:149.143760pt;}
.y20_c00122{bottom:208.743228pt;}
.y1f_c00122{bottom:235.623128pt;}
.y1e_c00122{bottom:262.423672pt;}
.y1d_c00122{bottom:289.303572pt;}
.y1c_c00122{bottom:316.104116pt;}
.y1b_c00122{bottom:342.984016pt;}
.y1a_c00122{bottom:369.784560pt;}
.y19_c00122{bottom:396.664460pt;}
.y18_c00122{bottom:423.465004pt;}
.y17_c00122{bottom:450.344904pt;}
.y16_c00122{bottom:477.145448pt;}
.y15_c00122{bottom:504.025348pt;}
.y14_c00122{bottom:530.744980pt;}
.y13_c00122{bottom:557.624880pt;}
.y12_c00122{bottom:584.425424pt;}
.y11_c00122{bottom:611.305324pt;}
.y10_c00122{bottom:638.105868pt;}
.yf_c00122{bottom:664.985768pt;}
.ye_c00122{bottom:691.786312pt;}
.yd_c00122{bottom:718.666212pt;}
.yc_c00122{bottom:745.466756pt;}
.yb_c00122{bottom:772.346656pt;}
.ya_c00122{bottom:799.146371pt;}
.y9_c00122{bottom:826.026271pt;}
.y8_c00122{bottom:852.906171pt;}
.y7_c00122{bottom:879.706715pt;}
.y6_c00122{bottom:906.586615pt;}
.y5_c00122{bottom:933.387159pt;}
.y4_c00122{bottom:960.267059pt;}
.y3_c00122{bottom:987.067603pt;}
.h5_c00122{height:34.967066pt;}
.h2_c00122{height:55.645234pt;}
.h1_c00122{height:55.797187pt;}
.h4_c00122{height:55.810948pt;}
.h3_c00122{height:65.806150pt;}
.h0_c00122{height:1122.666667pt;}
.w0_c00122{width:793.333333pt;}
.x0_c00122{left:0.000000pt;}
.x2_c00122{left:73.520052pt;}
.x1_c00122{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c3d9654ca20dd59eef3bd401.woff2')format("woff");}.ff1_c00123{font-family:ff1_c00123;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00123{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00123{vertical-align:0.000000px;}
.ls4_c00123{letter-spacing:-0.063018px;}
.ls9_c00123{letter-spacing:-0.049014px;}
.lsa_c00123{letter-spacing:-0.042012px;}
.lsb_c00123{letter-spacing:-0.028008px;}
.ls8_c00123{letter-spacing:-0.021006px;}
.ls7_c00123{letter-spacing:-0.014004px;}
.ls6_c00123{letter-spacing:-0.007002px;}
.ls5_c00123{letter-spacing:0.000000px;}
.ls3_c00123{letter-spacing:0.007002px;}
.ls2_c00123{letter-spacing:0.021006px;}
.ls0_c00123{letter-spacing:0.035010px;}
.ls1_c00123{letter-spacing:0.042012px;}
.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;}
}
.ws1b_c00123{word-spacing:-0.049014px;}
.wsc_c00123{word-spacing:-0.007002px;}
.ws0_c00123{word-spacing:0.000000px;}
.ws15_c00123{word-spacing:0.371106px;}
.ws9_c00123{word-spacing:0.385110px;}
.ws7_c00123{word-spacing:0.728208px;}
.ws6_c00123{word-spacing:0.756216px;}
.wsb_c00123{word-spacing:5.398542px;}
.wsf_c00123{word-spacing:5.762646px;}
.wsa_c00123{word-spacing:6.126750px;}
.ws19_c00123{word-spacing:7.163046px;}
.ws1a_c00123{word-spacing:7.177050px;}
.ws11_c00123{word-spacing:11.105172px;}
.ws12_c00123{word-spacing:11.147184px;}
.ws10_c00123{word-spacing:11.462274px;}
.ws16_c00123{word-spacing:11.518290px;}
.ws13_c00123{word-spacing:14.774220px;}
.ws14_c00123{word-spacing:14.788224px;}
.ws3_c00123{word-spacing:15.789510px;}
.ws2_c00123{word-spacing:15.838524px;}
.ws17_c00123{word-spacing:16.545726px;}
.ws8_c00123{word-spacing:19.451556px;}
.ws4_c00123{word-spacing:19.787652px;}
.ws5_c00123{word-spacing:19.794654px;}
.wsd_c00123{word-spacing:24.471990px;}
.wse_c00123{word-spacing:24.492996px;}
.ws1_c00123{word-spacing:25.550298px;}
.ws18_c00123{word-spacing:26.642610px;}
._0_c00123{margin-left:-1.190340px;}
._1_c00123{width:1.106316px;}
.fc0_c00123{color:rgb(0,0,0);}
.fs0_c00123{font-size:70.020000px;}
.y0_c00123{bottom:0.000000px;}
.y2_c00123{bottom:109.740968px;}
.y1_c00123{bottom:129.810450px;}
.y22_c00123{bottom:174.444699px;}
.y21_c00123{bottom:204.684587px;}
.y20_c00123{bottom:234.835199px;}
.y1f_c00123{bottom:265.075086px;}
.y1e_c00123{bottom:295.225698px;}
.y1d_c00123{bottom:325.465586px;}
.y1c_c00123{bottom:355.616198px;}
.y1b_c00123{bottom:385.856085px;}
.y1a_c00123{bottom:416.006697px;}
.y19_c00123{bottom:446.246585px;}
.y18_c00123{bottom:476.397197px;}
.y17_c00123{bottom:506.637084px;}
.y16_c00123{bottom:536.787696px;}
.y15_c00123{bottom:567.027584px;}
.y14_c00123{bottom:597.087170px;}
.y13_c00123{bottom:627.327057px;}
.y12_c00123{bottom:657.477669px;}
.y11_c00123{bottom:687.717557px;}
.y10_c00123{bottom:717.868169px;}
.yf_c00123{bottom:748.108056px;}
.ye_c00123{bottom:778.258668px;}
.yd_c00123{bottom:808.498556px;}
.yc_c00123{bottom:838.649168px;}
.yb_c00123{bottom:868.889055px;}
.ya_c00123{bottom:899.039667px;}
.y9_c00123{bottom:929.279555px;}
.y8_c00123{bottom:959.519442px;}
.y7_c00123{bottom:989.670054px;}
.y6_c00123{bottom:1019.909942px;}
.y5_c00123{bottom:1050.060553px;}
.y4_c00123{bottom:1080.300441px;}
.y3_c00123{bottom:1110.451053px;}
.h1_c00123{height:62.771836px;}
.h0_c00123{height:1263.000000px;}
.w0_c00123{width:892.500000px;}
.x0_c00123{left:0.000000px;}
.x2_c00123{left:82.710059px;}
.x1_c00123{left:431.730000px;}
@media print{
.v0_c00123{vertical-align:0.000000pt;}
.ls4_c00123{letter-spacing:-0.056016pt;}
.ls9_c00123{letter-spacing:-0.043568pt;}
.lsa_c00123{letter-spacing:-0.037344pt;}
.lsb_c00123{letter-spacing:-0.024896pt;}
.ls8_c00123{letter-spacing:-0.018672pt;}
.ls7_c00123{letter-spacing:-0.012448pt;}
.ls6_c00123{letter-spacing:-0.006224pt;}
.ls5_c00123{letter-spacing:0.000000pt;}
.ls3_c00123{letter-spacing:0.006224pt;}
.ls2_c00123{letter-spacing:0.018672pt;}
.ls0_c00123{letter-spacing:0.031120pt;}
.ls1_c00123{letter-spacing:0.037344pt;}
.ws1b_c00123{word-spacing:-0.043568pt;}
.wsc_c00123{word-spacing:-0.006224pt;}
.ws0_c00123{word-spacing:0.000000pt;}
.ws15_c00123{word-spacing:0.329872pt;}
.ws9_c00123{word-spacing:0.342320pt;}
.ws7_c00123{word-spacing:0.647296pt;}
.ws6_c00123{word-spacing:0.672192pt;}
.wsb_c00123{word-spacing:4.798704pt;}
.wsf_c00123{word-spacing:5.122352pt;}
.wsa_c00123{word-spacing:5.446000pt;}
.ws19_c00123{word-spacing:6.367152pt;}
.ws1a_c00123{word-spacing:6.379600pt;}
.ws11_c00123{word-spacing:9.871264pt;}
.ws12_c00123{word-spacing:9.908608pt;}
.ws10_c00123{word-spacing:10.188688pt;}
.ws16_c00123{word-spacing:10.238480pt;}
.ws13_c00123{word-spacing:13.132640pt;}
.ws14_c00123{word-spacing:13.145088pt;}
.ws3_c00123{word-spacing:14.035120pt;}
.ws2_c00123{word-spacing:14.078688pt;}
.ws17_c00123{word-spacing:14.707312pt;}
.ws8_c00123{word-spacing:17.290272pt;}
.ws4_c00123{word-spacing:17.589024pt;}
.ws5_c00123{word-spacing:17.595248pt;}
.wsd_c00123{word-spacing:21.752880pt;}
.wse_c00123{word-spacing:21.771552pt;}
.ws1_c00123{word-spacing:22.711376pt;}
.ws18_c00123{word-spacing:23.682320pt;}
._0_c00123{margin-left:-1.058080pt;}
._1_c00123{width:0.983392pt;}
.fs0_c00123{font-size:62.240000pt;}
.y0_c00123{bottom:0.000000pt;}
.y2_c00123{bottom:97.547527pt;}
.y1_c00123{bottom:115.387067pt;}
.y22_c00123{bottom:155.061955pt;}
.y21_c00123{bottom:181.941855pt;}
.y20_c00123{bottom:208.742399pt;}
.y1f_c00123{bottom:235.622299pt;}
.y1e_c00123{bottom:262.422843pt;}
.y1d_c00123{bottom:289.302743pt;}
.y1c_c00123{bottom:316.103287pt;}
.y1b_c00123{bottom:342.983187pt;}
.y1a_c00123{bottom:369.783731pt;}
.y19_c00123{bottom:396.663631pt;}
.y18_c00123{bottom:423.464175pt;}
.y17_c00123{bottom:450.344075pt;}
.y16_c00123{bottom:477.144619pt;}
.y15_c00123{bottom:504.024519pt;}
.y14_c00123{bottom:530.744151pt;}
.y13_c00123{bottom:557.624051pt;}
.y12_c00123{bottom:584.424595pt;}
.y11_c00123{bottom:611.304495pt;}
.y10_c00123{bottom:638.105039pt;}
.yf_c00123{bottom:664.984939pt;}
.ye_c00123{bottom:691.785483pt;}
.yd_c00123{bottom:718.665383pt;}
.yc_c00123{bottom:745.465927pt;}
.yb_c00123{bottom:772.345827pt;}
.ya_c00123{bottom:799.146371pt;}
.y9_c00123{bottom:826.026271pt;}
.y8_c00123{bottom:852.906171pt;}
.y7_c00123{bottom:879.706715pt;}
.y6_c00123{bottom:906.586615pt;}
.y5_c00123{bottom:933.387159pt;}
.y4_c00123{bottom:960.267059pt;}
.y3_c00123{bottom:987.067603pt;}
.h1_c00123{height:55.797187pt;}
.h0_c00123{height:1122.666667pt;}
.w0_c00123{width:793.333333pt;}
.x0_c00123{left:0.000000pt;}
.x2_c00123{left:73.520052pt;}
.x1_c00123{left:383.760000pt;}
}





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

.ir_c00124:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00124{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00124;src:url('chunks/assets/font_4c77bfc7966d0f4b51102cb1.woff2')format("woff");}.ff1_c00124{font-family:ff1_c00124;line-height:1.106934;font-style:normal;font-weight:normal;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_2c351af9002114ef9a22f2bb.woff2')format("woff");}.ff2_c00124{font-family:ff2_c00124;line-height:1.104492;font-style:normal;font-weight:normal;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_bf96b4172a19574c4fb2e5c9.woff2')format("woff");}.ff3_c00124{font-family:ff3_c00124;line-height:1.133301;font-style:normal;font-weight:normal;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_8775de7ba6464ba8fe0fc8f0.woff2')format("woff");}.ff4_c00124{font-family:ff4_c00124;line-height:1.133301;font-style:normal;font-weight:normal;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_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff5_c00124{font-family:ff5_c00124;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00124;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff6_c00124{font-family:ff6_c00124;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00124{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00124{vertical-align:-14.400600px;}
.v0_c00124{vertical-align:0.000000px;}
.v1_c00124{vertical-align:32.059044px;}
.ls13_c00124{letter-spacing:-0.707443px;}
.ls10_c00124{letter-spacing:-0.099393px;}
.ls11_c00124{letter-spacing:-0.087700px;}
.lsf_c00124{letter-spacing:-0.075619px;}
.ls8_c00124{letter-spacing:-0.063018px;}
.lsa_c00124{letter-spacing:-0.035010px;}
.lsc_c00124{letter-spacing:-0.028008px;}
.ls12_c00124{letter-spacing:-0.023387px;}
.lse_c00124{letter-spacing:-0.021006px;}
.lsd_c00124{letter-spacing:-0.014004px;}
.lsb_c00124{letter-spacing:-0.007002px;}
.ls9_c00124{letter-spacing:0.000000px;}
.ls1_c00124{letter-spacing:0.007002px;}
.ls0_c00124{letter-spacing:0.014004px;}
.ls3_c00124{letter-spacing:0.021006px;}
.ls5_c00124{letter-spacing:0.023281px;}
.ls2_c00124{letter-spacing:0.028008px;}
.ls4_c00124{letter-spacing:0.042012px;}
.ls7_c00124{letter-spacing:0.362492px;}
.ls6_c00124{letter-spacing:2.856816px;}
.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;}
}
.ws4_c00124{word-spacing:-58.466400px;}
.ws0_c00124{word-spacing:-19.465560px;}
.ws3_c00124{word-spacing:-16.107493px;}
.ws1_c00124{word-spacing:-12.967628px;}
.ws2_c00124{word-spacing:-10.397640px;}
.ws19_c00124{word-spacing:-0.378108px;}
.ws17_c00124{word-spacing:-0.014004px;}
.wsc_c00124{word-spacing:-0.007002px;}
.ws5_c00124{word-spacing:0.000000px;}
.ws29_c00124{word-spacing:0.011693px;}
.ws20_c00124{word-spacing:0.014004px;}
.ws27_c00124{word-spacing:0.035080px;}
.ws26_c00124{word-spacing:0.111086px;}
.ws16_c00124{word-spacing:1.064304px;}
.ws15_c00124{word-spacing:1.078308px;}
.ws28_c00124{word-spacing:1.081628px;}
.ws25_c00124{word-spacing:1.806516px;}
.ws22_c00124{word-spacing:2.513718px;}
.ws21_c00124{word-spacing:2.527722px;}
.ws1d_c00124{word-spacing:3.255930px;}
.ws23_c00124{word-spacing:3.942126px;}
.ws24_c00124{word-spacing:4.313232px;}
.ws10_c00124{word-spacing:8.262360px;}
.ws11_c00124{word-spacing:8.276364px;}
.ws9_c00124{word-spacing:10.776078px;}
.ws8_c00124{word-spacing:11.147184px;}
.ws13_c00124{word-spacing:11.154186px;}
.ws14_c00124{word-spacing:11.161188px;}
.ws1c_c00124{word-spacing:11.847384px;}
.ws1b_c00124{word-spacing:12.183480px;}
.ws1a_c00124{word-spacing:12.246498px;}
.ws1f_c00124{word-spacing:12.967704px;}
.wsa_c00124{word-spacing:13.275792px;}
.wsb_c00124{word-spacing:13.674906px;}
.ws12_c00124{word-spacing:14.774220px;}
.ws1e_c00124{word-spacing:16.524720px;}
.ws18_c00124{word-spacing:17.624034px;}
.ws6_c00124{word-spacing:23.729778px;}
.ws7_c00124{word-spacing:23.778792px;}
.wsd_c00124{word-spacing:24.443982px;}
.wse_c00124{word-spacing:43.909542px;}
.wsf_c00124{word-spacing:43.916544px;}
._3_c00124{margin-left:-2.718342px;}
._0_c00124{margin-left:-1.281366px;}
._1_c00124{width:1.155330px;}
._2_c00124{width:5.930694px;}
.fc0_c00124{color:rgb(0,0,0);}
.fs2_c00124{font-size:37.809600px;}
.fs1_c00124{font-size:46.562400px;}
.fs3_c00124{font-size:58.466400px;}
.fs0_c00124{font-size:70.020000px;}
.y0_c00124{bottom:0.000000px;}
.y2_c00124{bottom:109.740968px;}
.y1_c00124{bottom:129.810450px;}
.y1c_c00124{bottom:173.460600px;}
.y1b_c00124{bottom:208.649129px;}
.y1a_c00124{bottom:334.289515px;}
.y19_c00124{bottom:364.440128px;}
.y18_c00124{bottom:394.680015px;}
.y17_c00124{bottom:424.830627px;}
.y16_c00124{bottom:475.495689px;}
.y15_c00124{bottom:505.735577px;}
.y14_c00124{bottom:535.886189px;}
.y13_c00124{bottom:566.036801px;}
.y12_c00124{bottom:596.276688px;}
.y11_c00124{bottom:646.857386px;}
.y10_c00124{bottom:697.438083px;}
.yf_c00124{bottom:727.588695px;}
.ye_c00124{bottom:778.258668px;}
.yd_c00124{bottom:808.498556px;}
.yc_c00124{bottom:838.649168px;}
.yb_c00124{bottom:868.889055px;}
.ya_c00124{bottom:899.039667px;}
.y9_c00124{bottom:929.279555px;}
.y8_c00124{bottom:959.519442px;}
.y7_c00124{bottom:989.670054px;}
.y6_c00124{bottom:1019.909942px;}
.y5_c00124{bottom:1050.060553px;}
.y4_c00124{bottom:1080.300441px;}
.y3_c00124{bottom:1110.451053px;}
.h5_c00124{height:39.697949px;}
.h2_c00124{height:62.600889px;}
.h1_c00124{height:62.771836px;}
.h4_c00124{height:62.777122px;}
.h3_c00124{height:73.801508px;}
.h0_c00124{height:1263.000000px;}
.w0_c00124{width:892.500000px;}
.x0_c00124{left:0.000000px;}
.x2_c00124{left:82.710059px;}
.x1_c00124{left:431.730000px;}
@media print{
.v2_c00124{vertical-align:-12.800533pt;}
.v0_c00124{vertical-align:0.000000pt;}
.v1_c00124{vertical-align:28.496928pt;}
.ls13_c00124{letter-spacing:-0.628839pt;}
.ls10_c00124{letter-spacing:-0.088349pt;}
.ls11_c00124{letter-spacing:-0.077955pt;}
.lsf_c00124{letter-spacing:-0.067217pt;}
.ls8_c00124{letter-spacing:-0.056016pt;}
.lsa_c00124{letter-spacing:-0.031120pt;}
.lsc_c00124{letter-spacing:-0.024896pt;}
.ls12_c00124{letter-spacing:-0.020788pt;}
.lse_c00124{letter-spacing:-0.018672pt;}
.lsd_c00124{letter-spacing:-0.012448pt;}
.lsb_c00124{letter-spacing:-0.006224pt;}
.ls9_c00124{letter-spacing:0.000000pt;}
.ls1_c00124{letter-spacing:0.006224pt;}
.ls0_c00124{letter-spacing:0.012448pt;}
.ls3_c00124{letter-spacing:0.018672pt;}
.ls5_c00124{letter-spacing:0.020694pt;}
.ls2_c00124{letter-spacing:0.024896pt;}
.ls4_c00124{letter-spacing:0.037344pt;}
.ls7_c00124{letter-spacing:0.322215pt;}
.ls6_c00124{letter-spacing:2.539392pt;}
.ws4_c00124{word-spacing:-51.970133pt;}
.ws0_c00124{word-spacing:-17.302720pt;}
.ws3_c00124{word-spacing:-14.317772pt;}
.ws1_c00124{word-spacing:-11.526781pt;}
.ws2_c00124{word-spacing:-9.242347pt;}
.ws19_c00124{word-spacing:-0.336096pt;}
.ws17_c00124{word-spacing:-0.012448pt;}
.wsc_c00124{word-spacing:-0.006224pt;}
.ws5_c00124{word-spacing:0.000000pt;}
.ws29_c00124{word-spacing:0.010394pt;}
.ws20_c00124{word-spacing:0.012448pt;}
.ws27_c00124{word-spacing:0.031182pt;}
.ws26_c00124{word-spacing:0.098743pt;}
.ws16_c00124{word-spacing:0.946048pt;}
.ws15_c00124{word-spacing:0.958496pt;}
.ws28_c00124{word-spacing:0.961447pt;}
.ws25_c00124{word-spacing:1.605792pt;}
.ws22_c00124{word-spacing:2.234416pt;}
.ws21_c00124{word-spacing:2.246864pt;}
.ws1d_c00124{word-spacing:2.894160pt;}
.ws23_c00124{word-spacing:3.504112pt;}
.ws24_c00124{word-spacing:3.833984pt;}
.ws10_c00124{word-spacing:7.344320pt;}
.ws11_c00124{word-spacing:7.356768pt;}
.ws9_c00124{word-spacing:9.578736pt;}
.ws8_c00124{word-spacing:9.908608pt;}
.ws13_c00124{word-spacing:9.914832pt;}
.ws14_c00124{word-spacing:9.921056pt;}
.ws1c_c00124{word-spacing:10.531008pt;}
.ws1b_c00124{word-spacing:10.829760pt;}
.ws1a_c00124{word-spacing:10.885776pt;}
.ws1f_c00124{word-spacing:11.526848pt;}
.wsa_c00124{word-spacing:11.800704pt;}
.wsb_c00124{word-spacing:12.155472pt;}
.ws12_c00124{word-spacing:13.132640pt;}
.ws1e_c00124{word-spacing:14.688640pt;}
.ws18_c00124{word-spacing:15.665808pt;}
.ws6_c00124{word-spacing:21.093136pt;}
.ws7_c00124{word-spacing:21.136704pt;}
.wsd_c00124{word-spacing:21.727984pt;}
.wse_c00124{word-spacing:39.030704pt;}
.wsf_c00124{word-spacing:39.036928pt;}
._3_c00124{margin-left:-2.416304pt;}
._0_c00124{margin-left:-1.138992pt;}
._1_c00124{width:1.026960pt;}
._2_c00124{width:5.271728pt;}
.fs2_c00124{font-size:33.608533pt;}
.fs1_c00124{font-size:41.388800pt;}
.fs3_c00124{font-size:51.970133pt;}
.fs0_c00124{font-size:62.240000pt;}
.y0_c00124{bottom:0.000000pt;}
.y2_c00124{bottom:97.547527pt;}
.y1_c00124{bottom:115.387067pt;}
.y1c_c00124{bottom:154.187200pt;}
.y1b_c00124{bottom:185.465892pt;}
.y1a_c00124{bottom:297.146236pt;}
.y19_c00124{bottom:323.946780pt;}
.y18_c00124{bottom:350.826680pt;}
.y17_c00124{bottom:377.627224pt;}
.y16_c00124{bottom:422.662835pt;}
.y15_c00124{bottom:449.542735pt;}
.y14_c00124{bottom:476.343279pt;}
.y13_c00124{bottom:503.143823pt;}
.y12_c00124{bottom:530.023723pt;}
.y11_c00124{bottom:574.984343pt;}
.y10_c00124{bottom:619.944963pt;}
.yf_c00124{bottom:646.745507pt;}
.ye_c00124{bottom:691.785483pt;}
.yd_c00124{bottom:718.665383pt;}
.yc_c00124{bottom:745.465927pt;}
.yb_c00124{bottom:772.345827pt;}
.ya_c00124{bottom:799.146371pt;}
.y9_c00124{bottom:826.026271pt;}
.y8_c00124{bottom:852.906171pt;}
.y7_c00124{bottom:879.706715pt;}
.y6_c00124{bottom:906.586615pt;}
.y5_c00124{bottom:933.387159pt;}
.y4_c00124{bottom:960.267059pt;}
.y3_c00124{bottom:987.067603pt;}
.h5_c00124{height:35.287066pt;}
.h2_c00124{height:55.645234pt;}
.h1_c00124{height:55.797187pt;}
.h4_c00124{height:55.801886pt;}
.h3_c00124{height:65.601340pt;}
.h0_c00124{height:1122.666667pt;}
.w0_c00124{width:793.333333pt;}
.x0_c00124{left:0.000000pt;}
.x2_c00124{left:73.520052pt;}
.x1_c00124{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9982807395c105f3f60f77e4.woff2')format("woff");}.ff1_c00125{font-family:ff1_c00125;line-height:1.106934;font-style:normal;font-weight:normal;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_195c4a991d72caec8e9fcb96.woff2')format("woff");}.ff2_c00125{font-family:ff2_c00125;line-height:1.104492;font-style:normal;font-weight:normal;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_b582bc6097f696382cc3a534.woff2')format("woff");}.ff3_c00125{font-family:ff3_c00125;line-height:1.133301;font-style:normal;font-weight:normal;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_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff4_c00125{font-family:ff4_c00125;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00125;src:url('chunks/assets/font_7105cbd7130aa44394f0552b.woff2')format("woff");}.ff5_c00125{font-family:ff5_c00125;line-height:1.133301;font-style:normal;font-weight:normal;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_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff6_c00125{font-family:ff6_c00125;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00125{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00125{vertical-align:-14.760000px;}
.v0_c00125{vertical-align:0.000000px;}
.v1_c00125{vertical-align:32.037138px;}
.ls1b_c00125{letter-spacing:-0.707443px;}
.ls13_c00125{letter-spacing:-0.274792px;}
.ls14_c00125{letter-spacing:-0.216326px;}
.ls17_c00125{letter-spacing:-0.181246px;}
.ls19_c00125{letter-spacing:-0.093546px;}
.ls10_c00125{letter-spacing:-0.075619px;}
.ls6_c00125{letter-spacing:-0.063018px;}
.ls9_c00125{letter-spacing:-0.056016px;}
.lsf_c00125{letter-spacing:-0.049014px;}
.ls12_c00125{letter-spacing:-0.046773px;}
.lsc_c00125{letter-spacing:-0.042012px;}
.ls11_c00125{letter-spacing:-0.040926px;}
.ls15_c00125{letter-spacing:-0.035080px;}
.lsb_c00125{letter-spacing:-0.035010px;}
.ls8_c00125{letter-spacing:-0.028008px;}
.ls1a_c00125{letter-spacing:-0.023387px;}
.lsa_c00125{letter-spacing:-0.021006px;}
.lsd_c00125{letter-spacing:-0.014004px;}
.lse_c00125{letter-spacing:-0.007002px;}
.ls7_c00125{letter-spacing:0.000000px;}
.ls2_c00125{letter-spacing:0.007002px;}
.ls18_c00125{letter-spacing:0.011693px;}
.ls0_c00125{letter-spacing:0.014004px;}
.ls4_c00125{letter-spacing:0.021006px;}
.ls1_c00125{letter-spacing:0.023281px;}
.ls3_c00125{letter-spacing:0.028008px;}
.ls16_c00125{letter-spacing:0.046773px;}
.ls5_c00125{letter-spacing:0.122779px;}
.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;}
}
.ws2_c00125{word-spacing:-58.466400px;}
.ws3_c00125{word-spacing:-16.171806px;}
.ws0_c00125{word-spacing:-12.967628px;}
.ws1_c00125{word-spacing:-10.397640px;}
.ws24_c00125{word-spacing:-0.304025px;}
.ws2a_c00125{word-spacing:-0.163706px;}
.ws12_c00125{word-spacing:-0.035010px;}
.ws4_c00125{word-spacing:0.000000px;}
.ws1a_c00125{word-spacing:0.021006px;}
.ws7_c00125{word-spacing:0.042012px;}
.ws25_c00125{word-spacing:0.058466px;}
.ws2b_c00125{word-spacing:0.105240px;}
.wsf_c00125{word-spacing:0.378108px;}
.ws15_c00125{word-spacing:0.385110px;}
.ws2c_c00125{word-spacing:0.719137px;}
.ws1e_c00125{word-spacing:1.435410px;}
.ws18_c00125{word-spacing:1.442412px;}
.ws8_c00125{word-spacing:1.449414px;}
.ws17_c00125{word-spacing:1.806516px;}
.ws28_c00125{word-spacing:2.408816px;}
.ws29_c00125{word-spacing:2.566675px;}
.ws14_c00125{word-spacing:2.849814px;}
.ws27_c00125{word-spacing:3.110412px;}
.ws26_c00125{word-spacing:3.168879px;}
.ws6_c00125{word-spacing:3.571020px;}
.ws5_c00125{word-spacing:3.613032px;}
.ws22_c00125{word-spacing:3.963132px;}
.ws23_c00125{word-spacing:3.977136px;}
.ws13_c00125{word-spacing:5.041440px;}
.ws10_c00125{word-spacing:6.504858px;}
.ws1b_c00125{word-spacing:7.163046px;}
.ws1f_c00125{word-spacing:9.319662px;}
.ws20_c00125{word-spacing:9.375678px;}
.wse_c00125{word-spacing:10.040868px;}
.ws16_c00125{word-spacing:10.075878px;}
.ws11_c00125{word-spacing:10.103886px;}
.wsd_c00125{word-spacing:10.446984px;}
.wsc_c00125{word-spacing:14.739210px;}
.wsb_c00125{word-spacing:14.767218px;}
.wsa_c00125{word-spacing:14.781222px;}
.ws19_c00125{word-spacing:15.502428px;}
.ws21_c00125{word-spacing:18.345240px;}
.ws1d_c00125{word-spacing:20.165760px;}
.ws1c_c00125{word-spacing:20.193768px;}
.ws9_c00125{word-spacing:21.587166px;}
._3_c00125{margin-left:-2.710962px;}
._1_c00125{margin-left:-1.295370px;}
._0_c00125{width:1.414404px;}
._2_c00125{width:5.930694px;}
.fc0_c00125{color:rgb(0,0,0);}
.fs2_c00125{font-size:37.809600px;}
.fs1_c00125{font-size:46.562400px;}
.fs3_c00125{font-size:58.466400px;}
.fs0_c00125{font-size:70.020000px;}
.y0_c00125{bottom:0.000000px;}
.y2_c00125{bottom:109.740968px;}
.y1_c00125{bottom:129.810450px;}
.y21_c00125{bottom:149.429891px;}
.y20_c00125{bottom:170.940450px;}
.y1f_c00125{bottom:188.940450px;}
.y1e_c00125{bottom:206.760450px;}
.y1d_c00125{bottom:221.430490px;}
.y1c_c00125{bottom:253.469892px;}
.y1b_c00125{bottom:283.709779px;}
.y1a_c00125{bottom:313.860391px;}
.y19_c00125{bottom:344.100279px;}
.y18_c00125{bottom:374.250891px;}
.y17_c00125{bottom:404.490778px;}
.y16_c00125{bottom:454.979682px;}
.y15_c00125{bottom:485.308845px;}
.y14_c00125{bottom:515.459457px;}
.y13_c00125{bottom:545.699344px;}
.y12_c00125{bottom:575.849956px;}
.y11_c00125{bottom:606.089844px;}
.y10_c00125{bottom:636.240456px;}
.yf_c00125{bottom:686.730127px;}
.ye_c00125{bottom:717.059290px;}
.yd_c00125{bottom:747.209902px;}
.yc_c00125{bottom:797.790031px;}
.yb_c00125{bottom:828.119195px;}
.ya_c00125{bottom:858.269807px;}
.y9_c00125{bottom:908.759478px;}
.y8_c00125{bottom:939.088641px;}
.y7_c00125{bottom:969.239253px;}
.y6_c00125{bottom:999.479141px;}
.y5_c00125{bottom:1029.629752px;}
.y4_c00125{bottom:1080.211166px;}
.y3_c00125{bottom:1110.451053px;}
.h6_c00125{height:39.338549px;}
.h7_c00125{height:54.098549px;}
.h2_c00125{height:62.600889px;}
.h1_c00125{height:62.771836px;}
.h3_c00125{height:73.665924px;}
.h5_c00125{height:73.671858px;}
.h4_c00125{height:74.030460px;}
.h0_c00125{height:1263.000000px;}
.w0_c00125{width:892.500000px;}
.x0_c00125{left:0.000000px;}
.x2_c00125{left:82.710059px;}
.x1_c00125{left:431.730000px;}
@media print{
.v2_c00125{vertical-align:-13.120000pt;}
.v0_c00125{vertical-align:0.000000pt;}
.v1_c00125{vertical-align:28.477456pt;}
.ls1b_c00125{letter-spacing:-0.628839pt;}
.ls13_c00125{letter-spacing:-0.244260pt;}
.ls14_c00125{letter-spacing:-0.192289pt;}
.ls17_c00125{letter-spacing:-0.161107pt;}
.ls19_c00125{letter-spacing:-0.083152pt;}
.ls10_c00125{letter-spacing:-0.067217pt;}
.ls6_c00125{letter-spacing:-0.056016pt;}
.ls9_c00125{letter-spacing:-0.049792pt;}
.lsf_c00125{letter-spacing:-0.043568pt;}
.ls12_c00125{letter-spacing:-0.041576pt;}
.lsc_c00125{letter-spacing:-0.037344pt;}
.ls11_c00125{letter-spacing:-0.036379pt;}
.ls15_c00125{letter-spacing:-0.031182pt;}
.lsb_c00125{letter-spacing:-0.031120pt;}
.ls8_c00125{letter-spacing:-0.024896pt;}
.ls1a_c00125{letter-spacing:-0.020788pt;}
.lsa_c00125{letter-spacing:-0.018672pt;}
.lsd_c00125{letter-spacing:-0.012448pt;}
.lse_c00125{letter-spacing:-0.006224pt;}
.ls7_c00125{letter-spacing:0.000000pt;}
.ls2_c00125{letter-spacing:0.006224pt;}
.ls18_c00125{letter-spacing:0.010394pt;}
.ls0_c00125{letter-spacing:0.012448pt;}
.ls4_c00125{letter-spacing:0.018672pt;}
.ls1_c00125{letter-spacing:0.020694pt;}
.ls3_c00125{letter-spacing:0.024896pt;}
.ls16_c00125{letter-spacing:0.041576pt;}
.ls5_c00125{letter-spacing:0.109137pt;}
.ws2_c00125{word-spacing:-51.970133pt;}
.ws3_c00125{word-spacing:-14.374939pt;}
.ws0_c00125{word-spacing:-11.526781pt;}
.ws1_c00125{word-spacing:-9.242347pt;}
.ws24_c00125{word-spacing:-0.270245pt;}
.ws2a_c00125{word-spacing:-0.145516pt;}
.ws12_c00125{word-spacing:-0.031120pt;}
.ws4_c00125{word-spacing:0.000000pt;}
.ws1a_c00125{word-spacing:0.018672pt;}
.ws7_c00125{word-spacing:0.037344pt;}
.ws25_c00125{word-spacing:0.051970pt;}
.ws2b_c00125{word-spacing:0.093546pt;}
.wsf_c00125{word-spacing:0.336096pt;}
.ws15_c00125{word-spacing:0.342320pt;}
.ws2c_c00125{word-spacing:0.639233pt;}
.ws1e_c00125{word-spacing:1.275920pt;}
.ws18_c00125{word-spacing:1.282144pt;}
.ws8_c00125{word-spacing:1.288368pt;}
.ws17_c00125{word-spacing:1.605792pt;}
.ws28_c00125{word-spacing:2.141169pt;}
.ws29_c00125{word-spacing:2.281489pt;}
.ws14_c00125{word-spacing:2.533168pt;}
.ws27_c00125{word-spacing:2.764811pt;}
.ws26_c00125{word-spacing:2.816781pt;}
.ws6_c00125{word-spacing:3.174240pt;}
.ws5_c00125{word-spacing:3.211584pt;}
.ws22_c00125{word-spacing:3.522784pt;}
.ws23_c00125{word-spacing:3.535232pt;}
.ws13_c00125{word-spacing:4.481280pt;}
.ws10_c00125{word-spacing:5.782096pt;}
.ws1b_c00125{word-spacing:6.367152pt;}
.ws1f_c00125{word-spacing:8.284144pt;}
.ws20_c00125{word-spacing:8.333936pt;}
.wse_c00125{word-spacing:8.925216pt;}
.ws16_c00125{word-spacing:8.956336pt;}
.ws11_c00125{word-spacing:8.981232pt;}
.wsd_c00125{word-spacing:9.286208pt;}
.wsc_c00125{word-spacing:13.101520pt;}
.wsb_c00125{word-spacing:13.126416pt;}
.wsa_c00125{word-spacing:13.138864pt;}
.ws19_c00125{word-spacing:13.779936pt;}
.ws21_c00125{word-spacing:16.306880pt;}
.ws1d_c00125{word-spacing:17.925120pt;}
.ws1c_c00125{word-spacing:17.950016pt;}
.ws9_c00125{word-spacing:19.188592pt;}
._3_c00125{margin-left:-2.409744pt;}
._1_c00125{margin-left:-1.151440pt;}
._0_c00125{width:1.257248pt;}
._2_c00125{width:5.271728pt;}
.fs2_c00125{font-size:33.608533pt;}
.fs1_c00125{font-size:41.388800pt;}
.fs3_c00125{font-size:51.970133pt;}
.fs0_c00125{font-size:62.240000pt;}
.y0_c00125{bottom:0.000000pt;}
.y2_c00125{bottom:97.547527pt;}
.y1_c00125{bottom:115.387067pt;}
.y21_c00125{bottom:132.826570pt;}
.y20_c00125{bottom:151.947067pt;}
.y1f_c00125{bottom:167.947067pt;}
.y1e_c00125{bottom:183.787067pt;}
.y1d_c00125{bottom:196.827103pt;}
.y1c_c00125{bottom:225.306571pt;}
.y1b_c00125{bottom:252.186471pt;}
.y1a_c00125{bottom:278.987015pt;}
.y19_c00125{bottom:305.866915pt;}
.y18_c00125{bottom:332.667459pt;}
.y17_c00125{bottom:359.547359pt;}
.y16_c00125{bottom:404.426384pt;}
.y15_c00125{bottom:431.385640pt;}
.y14_c00125{bottom:458.186184pt;}
.y13_c00125{bottom:485.066084pt;}
.y12_c00125{bottom:511.866628pt;}
.y11_c00125{bottom:538.746528pt;}
.y10_c00125{bottom:565.547072pt;}
.yf_c00125{bottom:610.426780pt;}
.ye_c00125{bottom:637.386036pt;}
.yd_c00125{bottom:664.186580pt;}
.yc_c00125{bottom:709.146695pt;}
.yb_c00125{bottom:736.105951pt;}
.ya_c00125{bottom:762.906495pt;}
.y9_c00125{bottom:807.786203pt;}
.y8_c00125{bottom:834.745459pt;}
.y7_c00125{bottom:861.546003pt;}
.y6_c00125{bottom:888.425903pt;}
.y5_c00125{bottom:915.226447pt;}
.y4_c00125{bottom:960.187703pt;}
.y3_c00125{bottom:987.067603pt;}
.h6_c00125{height:34.967599pt;}
.h7_c00125{height:48.087599pt;}
.h2_c00125{height:55.645234pt;}
.h1_c00125{height:55.797187pt;}
.h3_c00125{height:65.480822pt;}
.h5_c00125{height:65.486096pt;}
.h4_c00125{height:65.804854pt;}
.h0_c00125{height:1122.666667pt;}
.w0_c00125{width:793.333333pt;}
.x0_c00125{left:0.000000pt;}
.x2_c00125{left:73.520052pt;}
.x1_c00125{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_043f0a357ae6882d4958435b.woff2')format("woff");}.ff1_c00126{font-family:ff1_c00126;line-height:1.106934;font-style:normal;font-weight:normal;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_80c712815ab7ac8656b41549.woff2')format("woff");}.ff2_c00126{font-family:ff2_c00126;line-height:1.104492;font-style:normal;font-weight:normal;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_99117592934933ef09db495e.woff2')format("woff");}.ff3_c00126{font-family:ff3_c00126;line-height:1.133301;font-style:normal;font-weight:normal;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_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff4_c00126{font-family:ff4_c00126;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00126;src:url('chunks/assets/font_82f9dea8b3721ecd30005ec9.woff2')format("woff");}.ff5_c00126{font-family:ff5_c00126;line-height:1.133301;font-style:normal;font-weight:normal;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_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff6_c00126{font-family:ff6_c00126;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00126{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00126{vertical-align:-14.760000px;}
.v0_c00126{vertical-align:0.000000px;}
.v1_c00126{vertical-align:32.039478px;}
.ls18_c00126{letter-spacing:-0.344952px;}
.ls16_c00126{letter-spacing:-0.257252px;}
.ls12_c00126{letter-spacing:-0.175399px;}
.ls19_c00126{letter-spacing:-0.116933px;}
.ls17_c00126{letter-spacing:-0.105240px;}
.ls15_c00126{letter-spacing:-0.076006px;}
.ls11_c00126{letter-spacing:-0.075619px;}
.ls7_c00126{letter-spacing:-0.063018px;}
.ls14_c00126{letter-spacing:-0.058466px;}
.ls10_c00126{letter-spacing:-0.056016px;}
.lsf_c00126{letter-spacing:-0.042012px;}
.ls13_c00126{letter-spacing:-0.035080px;}
.ls9_c00126{letter-spacing:-0.035010px;}
.lsd_c00126{letter-spacing:-0.028008px;}
.lsb_c00126{letter-spacing:-0.021006px;}
.lsa_c00126{letter-spacing:-0.014004px;}
.lse_c00126{letter-spacing:-0.007002px;}
.ls8_c00126{letter-spacing:0.000000px;}
.ls4_c00126{letter-spacing:0.007002px;}
.ls2_c00126{letter-spacing:0.014004px;}
.ls5_c00126{letter-spacing:0.021006px;}
.ls3_c00126{letter-spacing:0.023281px;}
.ls1_c00126{letter-spacing:0.070020px;}
.ls0_c00126{letter-spacing:0.084024px;}
.lsc_c00126{letter-spacing:0.343098px;}
.ls6_c00126{letter-spacing:0.362492px;}
.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;}
}
.ws4_c00126{word-spacing:-58.466400px;}
.ws0_c00126{word-spacing:-19.465560px;}
.ws2_c00126{word-spacing:-19.458558px;}
.ws5_c00126{word-spacing:-16.089953px;}
.ws1_c00126{word-spacing:-12.967628px;}
.ws3_c00126{word-spacing:-10.397640px;}
.ws2a_c00126{word-spacing:-0.344952px;}
.ws6_c00126{word-spacing:0.000000px;}
.ws19_c00126{word-spacing:0.014004px;}
.ws2b_c00126{word-spacing:0.070160px;}
.ws2c_c00126{word-spacing:0.128626px;}
.ws23_c00126{word-spacing:0.329094px;}
.ws8_c00126{word-spacing:0.343098px;}
.ws25_c00126{word-spacing:1.490893px;}
.ws26_c00126{word-spacing:1.514280px;}
.ws27_c00126{word-spacing:1.531820px;}
.ws24_c00126{word-spacing:1.631213px;}
.ws28_c00126{word-spacing:1.713066px;}
.wsd_c00126{word-spacing:1.813518px;}
.ws29_c00126{word-spacing:1.847538px;}
.wse_c00126{word-spacing:2.135610px;}
.ws17_c00126{word-spacing:2.534724px;}
.wsc_c00126{word-spacing:2.877822px;}
.wsf_c00126{word-spacing:4.670334px;}
.ws18_c00126{word-spacing:6.105744px;}
.ws13_c00126{word-spacing:6.112746px;}
.ws12_c00126{word-spacing:6.147756px;}
.ws16_c00126{word-spacing:6.469848px;}
.ws9_c00126{word-spacing:7.114032px;}
.wsb_c00126{word-spacing:7.170048px;}
.wsa_c00126{word-spacing:7.205058px;}
.ws10_c00126{word-spacing:7.569162px;}
.ws1c_c00126{word-spacing:8.990568px;}
.ws1b_c00126{word-spacing:10.811088px;}
.ws1a_c00126{word-spacing:11.203200px;}
.ws1d_c00126{word-spacing:12.596598px;}
.ws21_c00126{word-spacing:12.946698px;}
.ws20_c00126{word-spacing:13.324806px;}
.ws1f_c00126{word-spacing:13.331808px;}
.ws7_c00126{word-spacing:16.580736px;}
.ws1e_c00126{word-spacing:16.937838px;}
.ws11_c00126{word-spacing:19.766646px;}
.ws14_c00126{word-spacing:24.857100px;}
.ws22_c00126{word-spacing:30.234636px;}
.ws15_c00126{word-spacing:42.166044px;}
._2_c00126{margin-left:-30.255642px;}
._4_c00126{margin-left:-2.709828px;}
._1_c00126{margin-left:-1.232352px;}
._0_c00126{width:1.064304px;}
._3_c00126{width:5.930694px;}
.fc0_c00126{color:rgb(0,0,0);}
.fs2_c00126{font-size:37.809600px;}
.fs1_c00126{font-size:46.562400px;}
.fs3_c00126{font-size:58.466400px;}
.fs0_c00126{font-size:70.020000px;}
.y0_c00126{bottom:0.000000px;}
.y2_c00126{bottom:109.740968px;}
.y1_c00126{bottom:129.810450px;}
.y1f_c00126{bottom:153.120600px;}
.y1e_c00126{bottom:167.250107px;}
.y1d_c00126{bottom:188.940450px;}
.y1c_c00126{bottom:203.608231px;}
.y1b_c00126{bottom:303.959145px;}
.y1a_c00126{bottom:334.288308px;}
.y19_c00126{bottom:364.438920px;}
.y18_c00126{bottom:394.678808px;}
.y17_c00126{bottom:424.829420px;}
.y16_c00126{bottom:455.069307px;}
.y15_c00126{bottom:485.309194px;}
.y14_c00126{bottom:515.459807px;}
.y13_c00126{bottom:565.949478px;}
.y12_c00126{bottom:596.278641px;}
.y11_c00126{bottom:626.429253px;}
.y10_c00126{bottom:656.669141px;}
.yf_c00126{bottom:686.819753px;}
.ye_c00126{bottom:737.400117px;}
.yd_c00126{bottom:767.729280px;}
.yc_c00126{bottom:797.879892px;}
.yb_c00126{bottom:828.119780px;}
.ya_c00126{bottom:858.270391px;}
.y9_c00126{bottom:888.510279px;}
.y8_c00126{bottom:918.569865px;}
.y7_c00126{bottom:948.809753px;}
.y6_c00126{bottom:999.390580px;}
.y5_c00126{bottom:1029.541192px;}
.y4_c00126{bottom:1080.300441px;}
.y3_c00126{bottom:1110.451053px;}
.h8_c00126{height:39.337949px;}
.h6_c00126{height:39.338549px;}
.h7_c00126{height:54.098549px;}
.h3_c00126{height:62.600889px;}
.h1_c00126{height:62.771836px;}
.h5_c00126{height:62.780710px;}
.h2_c00126{height:73.781942px;}
.h4_c00126{height:74.030118px;}
.h0_c00126{height:1263.000000px;}
.w0_c00126{width:892.500000px;}
.x0_c00126{left:0.000000px;}
.x2_c00126{left:82.710059px;}
.x1_c00126{left:431.730000px;}
@media print{
.v2_c00126{vertical-align:-13.120000pt;}
.v0_c00126{vertical-align:0.000000pt;}
.v1_c00126{vertical-align:28.479536pt;}
.ls18_c00126{letter-spacing:-0.306624pt;}
.ls16_c00126{letter-spacing:-0.228669pt;}
.ls12_c00126{letter-spacing:-0.155910pt;}
.ls19_c00126{letter-spacing:-0.103940pt;}
.ls17_c00126{letter-spacing:-0.093546pt;}
.ls15_c00126{letter-spacing:-0.067561pt;}
.ls11_c00126{letter-spacing:-0.067217pt;}
.ls7_c00126{letter-spacing:-0.056016pt;}
.ls14_c00126{letter-spacing:-0.051970pt;}
.ls10_c00126{letter-spacing:-0.049792pt;}
.lsf_c00126{letter-spacing:-0.037344pt;}
.ls13_c00126{letter-spacing:-0.031182pt;}
.ls9_c00126{letter-spacing:-0.031120pt;}
.lsd_c00126{letter-spacing:-0.024896pt;}
.lsb_c00126{letter-spacing:-0.018672pt;}
.lsa_c00126{letter-spacing:-0.012448pt;}
.lse_c00126{letter-spacing:-0.006224pt;}
.ls8_c00126{letter-spacing:0.000000pt;}
.ls4_c00126{letter-spacing:0.006224pt;}
.ls2_c00126{letter-spacing:0.012448pt;}
.ls5_c00126{letter-spacing:0.018672pt;}
.ls3_c00126{letter-spacing:0.020694pt;}
.ls1_c00126{letter-spacing:0.062240pt;}
.ls0_c00126{letter-spacing:0.074688pt;}
.lsc_c00126{letter-spacing:0.304976pt;}
.ls6_c00126{letter-spacing:0.322215pt;}
.ws4_c00126{word-spacing:-51.970133pt;}
.ws0_c00126{word-spacing:-17.302720pt;}
.ws2_c00126{word-spacing:-17.296496pt;}
.ws5_c00126{word-spacing:-14.302181pt;}
.ws1_c00126{word-spacing:-11.526781pt;}
.ws3_c00126{word-spacing:-9.242347pt;}
.ws2a_c00126{word-spacing:-0.306624pt;}
.ws6_c00126{word-spacing:0.000000pt;}
.ws19_c00126{word-spacing:0.012448pt;}
.ws2b_c00126{word-spacing:0.062364pt;}
.ws2c_c00126{word-spacing:0.114334pt;}
.ws23_c00126{word-spacing:0.292528pt;}
.ws8_c00126{word-spacing:0.304976pt;}
.ws25_c00126{word-spacing:1.325238pt;}
.ws26_c00126{word-spacing:1.346026pt;}
.ws27_c00126{word-spacing:1.361617pt;}
.ws24_c00126{word-spacing:1.449967pt;}
.ws28_c00126{word-spacing:1.522725pt;}
.wsd_c00126{word-spacing:1.612016pt;}
.ws29_c00126{word-spacing:1.642256pt;}
.wse_c00126{word-spacing:1.898320pt;}
.ws17_c00126{word-spacing:2.253088pt;}
.wsc_c00126{word-spacing:2.558064pt;}
.wsf_c00126{word-spacing:4.151408pt;}
.ws18_c00126{word-spacing:5.427328pt;}
.ws13_c00126{word-spacing:5.433552pt;}
.ws12_c00126{word-spacing:5.464672pt;}
.ws16_c00126{word-spacing:5.750976pt;}
.ws9_c00126{word-spacing:6.323584pt;}
.wsb_c00126{word-spacing:6.373376pt;}
.wsa_c00126{word-spacing:6.404496pt;}
.ws10_c00126{word-spacing:6.728144pt;}
.ws1c_c00126{word-spacing:7.991616pt;}
.ws1b_c00126{word-spacing:9.609856pt;}
.ws1a_c00126{word-spacing:9.958400pt;}
.ws1d_c00126{word-spacing:11.196976pt;}
.ws21_c00126{word-spacing:11.508176pt;}
.ws20_c00126{word-spacing:11.844272pt;}
.ws1f_c00126{word-spacing:11.850496pt;}
.ws7_c00126{word-spacing:14.738432pt;}
.ws1e_c00126{word-spacing:15.055856pt;}
.ws11_c00126{word-spacing:17.570352pt;}
.ws14_c00126{word-spacing:22.095200pt;}
.ws22_c00126{word-spacing:26.875232pt;}
.ws15_c00126{word-spacing:37.480928pt;}
._2_c00126{margin-left:-26.893904pt;}
._4_c00126{margin-left:-2.408736pt;}
._1_c00126{margin-left:-1.095424pt;}
._0_c00126{width:0.946048pt;}
._3_c00126{width:5.271728pt;}
.fs2_c00126{font-size:33.608533pt;}
.fs1_c00126{font-size:41.388800pt;}
.fs3_c00126{font-size:51.970133pt;}
.fs0_c00126{font-size:62.240000pt;}
.y0_c00126{bottom:0.000000pt;}
.y2_c00126{bottom:97.547527pt;}
.y1_c00126{bottom:115.387067pt;}
.y1f_c00126{bottom:136.107200pt;}
.y1e_c00126{bottom:148.666762pt;}
.y1d_c00126{bottom:167.947067pt;}
.y1c_c00126{bottom:180.985095pt;}
.y1b_c00126{bottom:270.185907pt;}
.y1a_c00126{bottom:297.145163pt;}
.y19_c00126{bottom:323.945707pt;}
.y18_c00126{bottom:350.825607pt;}
.y17_c00126{bottom:377.626151pt;}
.y16_c00126{bottom:404.506051pt;}
.y15_c00126{bottom:431.385951pt;}
.y14_c00126{bottom:458.186495pt;}
.y13_c00126{bottom:503.066203pt;}
.y12_c00126{bottom:530.025459pt;}
.y11_c00126{bottom:556.826003pt;}
.y10_c00126{bottom:583.705903pt;}
.yf_c00126{bottom:610.506447pt;}
.ye_c00126{bottom:655.466771pt;}
.yd_c00126{bottom:682.426027pt;}
.yc_c00126{bottom:709.226571pt;}
.yb_c00126{bottom:736.106471pt;}
.ya_c00126{bottom:762.907015pt;}
.y9_c00126{bottom:789.786915pt;}
.y8_c00126{bottom:816.506547pt;}
.y7_c00126{bottom:843.386447pt;}
.y6_c00126{bottom:888.347183pt;}
.y5_c00126{bottom:915.147727pt;}
.y4_c00126{bottom:960.267059pt;}
.y3_c00126{bottom:987.067603pt;}
.h8_c00126{height:34.967066pt;}
.h6_c00126{height:34.967599pt;}
.h7_c00126{height:48.087599pt;}
.h3_c00126{height:55.645234pt;}
.h1_c00126{height:55.797187pt;}
.h5_c00126{height:55.805076pt;}
.h2_c00126{height:65.583949pt;}
.h4_c00126{height:65.804550pt;}
.h0_c00126{height:1122.666667pt;}
.w0_c00126{width:793.333333pt;}
.x0_c00126{left:0.000000pt;}
.x2_c00126{left:73.520052pt;}
.x1_c00126{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0fd2e1b123f51aa385c62c5b.woff2')format("woff");}.ff1_c00127{font-family:ff1_c00127;line-height:1.106934;font-style:normal;font-weight:normal;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_71f4419739fd18aeb8508b0e.woff2')format("woff");}.ff2_c00127{font-family:ff2_c00127;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00127{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00127{vertical-align:0.000000px;}
.ls3_c00127{letter-spacing:-0.063018px;}
.ls8_c00127{letter-spacing:-0.049014px;}
.ls7_c00127{letter-spacing:-0.028008px;}
.ls9_c00127{letter-spacing:-0.021006px;}
.ls6_c00127{letter-spacing:-0.014004px;}
.ls5_c00127{letter-spacing:-0.007002px;}
.ls4_c00127{letter-spacing:0.000000px;}
.ls0_c00127{letter-spacing:0.014004px;}
.ls2_c00127{letter-spacing:0.021006px;}
.ls1_c00127{letter-spacing:0.035010px;}
.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;}
}
.wse_c00127{word-spacing:-0.007002px;}
.ws0_c00127{word-spacing:0.000000px;}
.wsf_c00127{word-spacing:0.007002px;}
.wsc_c00127{word-spacing:1.113318px;}
.ws7_c00127{word-spacing:1.414404px;}
.wsd_c00127{word-spacing:1.771506px;}
.ws4_c00127{word-spacing:4.628322px;}
.ws5_c00127{word-spacing:4.642326px;}
.ws1_c00127{word-spacing:4.649328px;}
.ws6_c00127{word-spacing:5.748642px;}
.ws3_c00127{word-spacing:7.555158px;}
.wsa_c00127{word-spacing:8.276364px;}
.ws2_c00127{word-spacing:9.711774px;}
.ws8_c00127{word-spacing:13.282794px;}
.ws9_c00127{word-spacing:13.317804px;}
.wsb_c00127{word-spacing:16.573734px;}
._1_c00127{margin-left:-1.337382px;}
._0_c00127{width:1.064304px;}
.fc0_c00127{color:rgb(0,0,0);}
.fs0_c00127{font-size:70.020000px;}
.y0_c00127{bottom:0.000000px;}
.y2_c00127{bottom:109.740968px;}
.y1_c00127{bottom:129.810450px;}
.y1b_c00127{bottom:155.187448px;}
.y1a_c00127{bottom:205.857421px;}
.y19_c00127{bottom:256.438119px;}
.y18_c00127{bottom:307.018816px;}
.y17_c00127{bottom:357.778065px;}
.y16_c00127{bottom:408.358763px;}
.y15_c00127{bottom:459.028735px;}
.y14_c00127{bottom:509.609433px;}
.y13_c00127{bottom:554.429235px;}
.y12_c00127{bottom:599.159762px;}
.y11_c00127{bottom:643.979564px;}
.y10_c00127{bottom:688.799366px;}
.yf_c00127{bottom:718.949978px;}
.ye_c00127{bottom:749.189865px;}
.yd_c00127{bottom:794.009667px;}
.yc_c00127{bottom:824.160279px;}
.yb_c00127{bottom:854.400166px;}
.ya_c00127{bottom:884.459752px;}
.y9_c00127{bottom:929.279555px;}
.y8_c00127{bottom:959.519442px;}
.y7_c00127{bottom:989.670054px;}
.y6_c00127{bottom:1019.909942px;}
.y5_c00127{bottom:1050.060553px;}
.y4_c00127{bottom:1080.300441px;}
.y3_c00127{bottom:1110.451053px;}
.h1_c00127{height:62.771836px;}
.h2_c00127{height:63.216299px;}
.h0_c00127{height:1263.000000px;}
.w0_c00127{width:892.500000px;}
.x0_c00127{left:0.000000px;}
.x2_c00127{left:82.710059px;}
.x1_c00127{left:431.730000px;}
@media print{
.v0_c00127{vertical-align:0.000000pt;}
.ls3_c00127{letter-spacing:-0.056016pt;}
.ls8_c00127{letter-spacing:-0.043568pt;}
.ls7_c00127{letter-spacing:-0.024896pt;}
.ls9_c00127{letter-spacing:-0.018672pt;}
.ls6_c00127{letter-spacing:-0.012448pt;}
.ls5_c00127{letter-spacing:-0.006224pt;}
.ls4_c00127{letter-spacing:0.000000pt;}
.ls0_c00127{letter-spacing:0.012448pt;}
.ls2_c00127{letter-spacing:0.018672pt;}
.ls1_c00127{letter-spacing:0.031120pt;}
.wse_c00127{word-spacing:-0.006224pt;}
.ws0_c00127{word-spacing:0.000000pt;}
.wsf_c00127{word-spacing:0.006224pt;}
.wsc_c00127{word-spacing:0.989616pt;}
.ws7_c00127{word-spacing:1.257248pt;}
.wsd_c00127{word-spacing:1.574672pt;}
.ws4_c00127{word-spacing:4.114064pt;}
.ws5_c00127{word-spacing:4.126512pt;}
.ws1_c00127{word-spacing:4.132736pt;}
.ws6_c00127{word-spacing:5.109904pt;}
.ws3_c00127{word-spacing:6.715696pt;}
.wsa_c00127{word-spacing:7.356768pt;}
.ws2_c00127{word-spacing:8.632688pt;}
.ws8_c00127{word-spacing:11.806928pt;}
.ws9_c00127{word-spacing:11.838048pt;}
.wsb_c00127{word-spacing:14.732208pt;}
._1_c00127{margin-left:-1.188784pt;}
._0_c00127{width:0.946048pt;}
.fs0_c00127{font-size:62.240000pt;}
.y0_c00127{bottom:0.000000pt;}
.y2_c00127{bottom:97.547527pt;}
.y1_c00127{bottom:115.387067pt;}
.y1b_c00127{bottom:137.944399pt;}
.y1a_c00127{bottom:182.984375pt;}
.y19_c00127{bottom:227.944995pt;}
.y18_c00127{bottom:272.905615pt;}
.y17_c00127{bottom:318.024947pt;}
.y16_c00127{bottom:362.985567pt;}
.y15_c00127{bottom:408.025543pt;}
.y14_c00127{bottom:452.986163pt;}
.y13_c00127{bottom:492.825987pt;}
.y12_c00127{bottom:532.586455pt;}
.y11_c00127{bottom:572.426279pt;}
.y10_c00127{bottom:612.266103pt;}
.yf_c00127{bottom:639.066647pt;}
.ye_c00127{bottom:665.946547pt;}
.yd_c00127{bottom:705.786371pt;}
.yc_c00127{bottom:732.586915pt;}
.yb_c00127{bottom:759.466815pt;}
.ya_c00127{bottom:786.186447pt;}
.y9_c00127{bottom:826.026271pt;}
.y8_c00127{bottom:852.906171pt;}
.y7_c00127{bottom:879.706715pt;}
.y6_c00127{bottom:906.586615pt;}
.y5_c00127{bottom:933.387159pt;}
.y4_c00127{bottom:960.267059pt;}
.y3_c00127{bottom:987.067603pt;}
.h1_c00127{height:55.797187pt;}
.h2_c00127{height:56.192266pt;}
.h0_c00127{height:1122.666667pt;}
.w0_c00127{width:793.333333pt;}
.x0_c00127{left:0.000000pt;}
.x2_c00127{left:73.520052pt;}
.x1_c00127{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_255c2243d7dde92750592bed.woff2')format("woff");}.ff1_c00128{font-family:ff1_c00128;line-height:1.106934;font-style:normal;font-weight:normal;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_03fe9a4a7fa4b2943572393b.woff2')format("woff");}.ff2_c00128{font-family:ff2_c00128;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00128;src:url('chunks/assets/font_ba0a7b8e74a696ef95da274a.woff2')format("woff");}.ff3_c00128{font-family:ff3_c00128;line-height:1.104492;font-style:normal;font-weight:normal;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_e14df2968efee8eaa9ad6fbe.woff2')format("woff");}.ff4_c00128{font-family:ff4_c00128;line-height:1.133301;font-style:normal;font-weight:normal;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_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff5_c00128{font-family:ff5_c00128;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00128;src:url('chunks/assets/font_91faf809fdb2e4d4514521c7.woff2')format("woff");}.ff6_c00128{font-family:ff6_c00128;line-height:1.133301;font-style:normal;font-weight: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_c00128;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff7_c00128{font-family:ff7_c00128;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00128{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00128{vertical-align:-32.040000px;}
.v3_c00128{vertical-align:-14.760000px;}
.v0_c00128{vertical-align:0.000000px;}
.v1_c00128{vertical-align:32.041350px;}
.ls14_c00128{letter-spacing:-0.222172px;}
.ls17_c00128{letter-spacing:-0.204632px;}
.lsb_c00128{letter-spacing:-0.159540px;}
.ls1b_c00128{letter-spacing:-0.146166px;}
.ls18_c00128{letter-spacing:-0.111086px;}
.ls1e_c00128{letter-spacing:-0.105240px;}
.lsc_c00128{letter-spacing:-0.083569px;}
.ls15_c00128{letter-spacing:-0.076006px;}
.ls13_c00128{letter-spacing:-0.075619px;}
.ls9_c00128{letter-spacing:-0.063018px;}
.ls11_c00128{letter-spacing:-0.042012px;}
.ls19_c00128{letter-spacing:-0.035080px;}
.ls10_c00128{letter-spacing:-0.028008px;}
.ls1c_c00128{letter-spacing:-0.023387px;}
.lsf_c00128{letter-spacing:-0.021006px;}
.ls16_c00128{letter-spacing:-0.017540px;}
.lsd_c00128{letter-spacing:-0.014004px;}
.lse_c00128{letter-spacing:-0.007002px;}
.lsa_c00128{letter-spacing:0.000000px;}
.ls1_c00128{letter-spacing:0.007002px;}
.ls1f_c00128{letter-spacing:0.011693px;}
.ls0_c00128{letter-spacing:0.014004px;}
.ls1a_c00128{letter-spacing:0.017540px;}
.ls3_c00128{letter-spacing:0.021006px;}
.ls6_c00128{letter-spacing:0.023281px;}
.ls5_c00128{letter-spacing:0.028008px;}
.ls1d_c00128{letter-spacing:0.029233px;}
.ls4_c00128{letter-spacing:0.035010px;}
.ls2_c00128{letter-spacing:0.056016px;}
.ls8_c00128{letter-spacing:0.105240px;}
.ls7_c00128{letter-spacing:0.362492px;}
.ls12_c00128{letter-spacing:0.441126px;}
.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;}
}
.ws3_c00128{word-spacing:-58.466400px;}
.ws0_c00128{word-spacing:-19.906686px;}
.ws1_c00128{word-spacing:-12.967628px;}
.ws2_c00128{word-spacing:-10.397640px;}
.ws1f_c00128{word-spacing:-0.371106px;}
.ws27_c00128{word-spacing:-0.005847px;}
.ws4_c00128{word-spacing:0.000000px;}
.wsb_c00128{word-spacing:0.007002px;}
.ws13_c00128{word-spacing:0.028008px;}
.ws6_c00128{word-spacing:0.037986px;}
.ws5_c00128{word-spacing:0.113957px;}
.wse_c00128{word-spacing:0.287082px;}
.wsd_c00128{word-spacing:2.807802px;}
.wsc_c00128{word-spacing:2.870820px;}
.ws1c_c00128{word-spacing:3.949128px;}
.ws25_c00128{word-spacing:4.443446px;}
.ws26_c00128{word-spacing:4.729932px;}
.ws1b_c00128{word-spacing:6.427836px;}
.ws1a_c00128{word-spacing:6.476850px;}
.ws17_c00128{word-spacing:8.262360px;}
.ws14_c00128{word-spacing:8.290368px;}
.ws28_c00128{word-spacing:8.436702px;}
.ws11_c00128{word-spacing:8.962560px;}
.ws8_c00128{word-spacing:8.969562px;}
.ws12_c00128{word-spacing:9.011574px;}
.ws18_c00128{word-spacing:9.319662px;}
.ws19_c00128{word-spacing:9.361674px;}
.ws21_c00128{word-spacing:11.529574px;}
.ws23_c00128{word-spacing:11.552961px;}
.ws24_c00128{word-spacing:11.740053px;}
.ws20_c00128{word-spacing:11.757593px;}
.ws22_c00128{word-spacing:11.968072px;}
.wsf_c00128{word-spacing:12.239496px;}
.ws10_c00128{word-spacing:12.568590px;}
.ws7_c00128{word-spacing:14.403114px;}
.ws2a_c00128{word-spacing:17.984265px;}
.ws29_c00128{word-spacing:18.036884px;}
.ws2b_c00128{word-spacing:18.118737px;}
.ws1e_c00128{word-spacing:20.116746px;}
.ws1d_c00128{word-spacing:20.151756px;}
.ws9_c00128{word-spacing:23.393682px;}
.ws16_c00128{word-spacing:32.349240px;}
.ws15_c00128{word-spacing:32.776362px;}
.wsa_c00128{word-spacing:41.738922px;}
._3_c00128{margin-left:-2.710170px;}
._1_c00128{margin-left:-1.057302px;}
._0_c00128{width:1.413068px;}
._2_c00128{width:5.930694px;}
.fc0_c00128{color:rgb(0,0,0);}
.fs3_c00128{font-size:37.809600px;}
.fs2_c00128{font-size:46.562400px;}
.fs4_c00128{font-size:58.466400px;}
.fs0_c00128{font-size:70.020000px;}
.fs1_c00128{font-size:75.971400px;}
.y0_c00128{bottom:0.000000px;}
.y2_c00128{bottom:109.740968px;}
.y1_c00128{bottom:129.810450px;}
.y20_c00128{bottom:149.428088px;}
.y1f_c00128{bottom:167.248647px;}
.y1e_c00128{bottom:185.248990px;}
.y1d_c00128{bottom:203.069548px;}
.y1c_c00128{bottom:221.069891px;}
.y1b_c00128{bottom:242.580450px;}
.y1a_c00128{bottom:257.250536px;}
.y19_c00128{bottom:311.610563px;}
.y18_c00128{bottom:341.850113px;}
.y17_c00128{bottom:372.000725px;}
.y16_c00128{bottom:402.240612px;}
.y15_c00128{bottom:432.391224px;}
.y14_c00128{bottom:462.631112px;}
.y13_c00128{bottom:492.781724px;}
.y12_c00128{bottom:523.021611px;}
.y11_c00128{bottom:553.172223px;}
.y10_c00128{bottom:603.661895px;}
.yf_c00128{bottom:633.991058px;}
.ye_c00128{bottom:664.141670px;}
.yd_c00128{bottom:714.631341px;}
.yc_c00128{bottom:744.960504px;}
.yb_c00128{bottom:795.541202px;}
.ya_c00128{bottom:825.870365px;}
.y9_c00128{bottom:856.020976px;}
.y8_c00128{bottom:886.260864px;}
.y7_c00128{bottom:916.320450px;}
.y6_c00128{bottom:957.180450px;}
.y5_c00128{bottom:1009.111107px;}
.y4_c00128{bottom:1059.781080px;}
.y3_c00128{bottom:1110.361778px;}
.h6_c00128{height:39.338549px;}
.h7_c00128{height:54.098549px;}
.h4_c00128{height:62.600889px;}
.h1_c00128{height:62.771836px;}
.h2_c00128{height:63.216299px;}
.h3_c00128{height:68.589413px;}
.h5_c00128{height:73.783814px;}
.h0_c00128{height:1263.000000px;}
.w0_c00128{width:892.500000px;}
.x0_c00128{left:0.000000px;}
.x2_c00128{left:82.710059px;}
.x3_c00128{left:85.589573px;}
.x1_c00128{left:431.730000px;}
@media print{
.v2_c00128{vertical-align:-28.480000pt;}
.v3_c00128{vertical-align:-13.120000pt;}
.v0_c00128{vertical-align:0.000000pt;}
.v1_c00128{vertical-align:28.481200pt;}
.ls14_c00128{letter-spacing:-0.197487pt;}
.ls17_c00128{letter-spacing:-0.181895pt;}
.lsb_c00128{letter-spacing:-0.141813pt;}
.ls1b_c00128{letter-spacing:-0.129925pt;}
.ls18_c00128{letter-spacing:-0.098743pt;}
.ls1e_c00128{letter-spacing:-0.093546pt;}
.lsc_c00128{letter-spacing:-0.074283pt;}
.ls15_c00128{letter-spacing:-0.067561pt;}
.ls13_c00128{letter-spacing:-0.067217pt;}
.ls9_c00128{letter-spacing:-0.056016pt;}
.ls11_c00128{letter-spacing:-0.037344pt;}
.ls19_c00128{letter-spacing:-0.031182pt;}
.ls10_c00128{letter-spacing:-0.024896pt;}
.ls1c_c00128{letter-spacing:-0.020788pt;}
.lsf_c00128{letter-spacing:-0.018672pt;}
.ls16_c00128{letter-spacing:-0.015591pt;}
.lsd_c00128{letter-spacing:-0.012448pt;}
.lse_c00128{letter-spacing:-0.006224pt;}
.lsa_c00128{letter-spacing:0.000000pt;}
.ls1_c00128{letter-spacing:0.006224pt;}
.ls1f_c00128{letter-spacing:0.010394pt;}
.ls0_c00128{letter-spacing:0.012448pt;}
.ls1a_c00128{letter-spacing:0.015591pt;}
.ls3_c00128{letter-spacing:0.018672pt;}
.ls6_c00128{letter-spacing:0.020694pt;}
.ls5_c00128{letter-spacing:0.024896pt;}
.ls1d_c00128{letter-spacing:0.025985pt;}
.ls4_c00128{letter-spacing:0.031120pt;}
.ls2_c00128{letter-spacing:0.049792pt;}
.ls8_c00128{letter-spacing:0.093546pt;}
.ls7_c00128{letter-spacing:0.322215pt;}
.ls12_c00128{letter-spacing:0.392112pt;}
.ws3_c00128{word-spacing:-51.970133pt;}
.ws0_c00128{word-spacing:-17.694832pt;}
.ws1_c00128{word-spacing:-11.526781pt;}
.ws2_c00128{word-spacing:-9.242347pt;}
.ws1f_c00128{word-spacing:-0.329872pt;}
.ws27_c00128{word-spacing:-0.005197pt;}
.ws4_c00128{word-spacing:0.000000pt;}
.wsb_c00128{word-spacing:0.006224pt;}
.ws13_c00128{word-spacing:0.024896pt;}
.ws6_c00128{word-spacing:0.033765pt;}
.ws5_c00128{word-spacing:0.101295pt;}
.wse_c00128{word-spacing:0.255184pt;}
.wsd_c00128{word-spacing:2.495824pt;}
.wsc_c00128{word-spacing:2.551840pt;}
.ws1c_c00128{word-spacing:3.510336pt;}
.ws25_c00128{word-spacing:3.949730pt;}
.ws26_c00128{word-spacing:4.204384pt;}
.ws1b_c00128{word-spacing:5.713632pt;}
.ws1a_c00128{word-spacing:5.757200pt;}
.ws17_c00128{word-spacing:7.344320pt;}
.ws14_c00128{word-spacing:7.369216pt;}
.ws28_c00128{word-spacing:7.499290pt;}
.ws11_c00128{word-spacing:7.966720pt;}
.ws8_c00128{word-spacing:7.972944pt;}
.ws12_c00128{word-spacing:8.010288pt;}
.ws18_c00128{word-spacing:8.284144pt;}
.ws19_c00128{word-spacing:8.321488pt;}
.ws21_c00128{word-spacing:10.248510pt;}
.ws23_c00128{word-spacing:10.269298pt;}
.ws24_c00128{word-spacing:10.435603pt;}
.ws20_c00128{word-spacing:10.451194pt;}
.ws22_c00128{word-spacing:10.638286pt;}
.wsf_c00128{word-spacing:10.879552pt;}
.ws10_c00128{word-spacing:11.172080pt;}
.ws7_c00128{word-spacing:12.802768pt;}
.ws2a_c00128{word-spacing:15.986013pt;}
.ws29_c00128{word-spacing:16.032786pt;}
.ws2b_c00128{word-spacing:16.105544pt;}
.ws1e_c00128{word-spacing:17.881552pt;}
.ws1d_c00128{word-spacing:17.912672pt;}
.ws9_c00128{word-spacing:20.794384pt;}
.ws16_c00128{word-spacing:28.754880pt;}
.ws15_c00128{word-spacing:29.134544pt;}
.wsa_c00128{word-spacing:37.101264pt;}
._3_c00128{margin-left:-2.409040pt;}
._1_c00128{margin-left:-0.939824pt;}
._0_c00128{width:1.256060pt;}
._2_c00128{width:5.271728pt;}
.fs3_c00128{font-size:33.608533pt;}
.fs2_c00128{font-size:41.388800pt;}
.fs4_c00128{font-size:51.970133pt;}
.fs0_c00128{font-size:62.240000pt;}
.fs1_c00128{font-size:67.530133pt;}
.y0_c00128{bottom:0.000000pt;}
.y2_c00128{bottom:97.547527pt;}
.y1_c00128{bottom:115.387067pt;}
.y20_c00128{bottom:132.824967pt;}
.y1f_c00128{bottom:148.665464pt;}
.y1e_c00128{bottom:164.665769pt;}
.y1d_c00128{bottom:180.506265pt;}
.y1c_c00128{bottom:196.506570pt;}
.y1b_c00128{bottom:215.627067pt;}
.y1a_c00128{bottom:228.667143pt;}
.y19_c00128{bottom:276.987167pt;}
.y18_c00128{bottom:303.866767pt;}
.y17_c00128{bottom:330.667311pt;}
.y16_c00128{bottom:357.547211pt;}
.y15_c00128{bottom:384.347755pt;}
.y14_c00128{bottom:411.227655pt;}
.y13_c00128{bottom:438.028199pt;}
.y12_c00128{bottom:464.908099pt;}
.y11_c00128{bottom:491.708643pt;}
.y10_c00128{bottom:536.588351pt;}
.yf_c00128{bottom:563.547607pt;}
.ye_c00128{bottom:590.348151pt;}
.yd_c00128{bottom:635.227859pt;}
.yc_c00128{bottom:662.187115pt;}
.yb_c00128{bottom:707.147735pt;}
.ya_c00128{bottom:734.106991pt;}
.y9_c00128{bottom:760.907535pt;}
.y8_c00128{bottom:787.787435pt;}
.y7_c00128{bottom:814.507067pt;}
.y6_c00128{bottom:850.827067pt;}
.y5_c00128{bottom:896.987651pt;}
.y4_c00128{bottom:942.027627pt;}
.y3_c00128{bottom:986.988247pt;}
.h6_c00128{height:34.967599pt;}
.h7_c00128{height:48.087599pt;}
.h4_c00128{height:55.645234pt;}
.h1_c00128{height:55.797187pt;}
.h2_c00128{height:56.192266pt;}
.h3_c00128{height:60.968367pt;}
.h5_c00128{height:65.585612pt;}
.h0_c00128{height:1122.666667pt;}
.w0_c00128{width:793.333333pt;}
.x0_c00128{left:0.000000pt;}
.x2_c00128{left:73.520052pt;}
.x3_c00128{left:76.079620pt;}
.x1_c00128{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_80a2de9c1e1ce530917e995a.woff2')format("woff");}.ff1_c00129{font-family:ff1_c00129;line-height:1.106934;font-style:normal;font-weight:normal;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_f6c7bf8db4d815008159c7f5.woff2')format("woff");}.ff2_c00129{font-family:ff2_c00129;line-height:1.104492;font-style:normal;font-weight:normal;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_73f39d38c1eb31e79a9284f4.woff2')format("woff");}.ff3_c00129{font-family:ff3_c00129;line-height:1.133301;font-style:normal;font-weight:normal;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_d2ef0493caf4dc7a3c7550a1.woff2')format("woff");}.ff4_c00129{font-family:ff4_c00129;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00129;src:url('chunks/assets/font_ea10960dc3827cbbda298c4d.woff2')format("woff");}.ff5_c00129{font-family:ff5_c00129;line-height:1.133301;font-style:normal;font-weight:normal;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_2f2d138ff74aef5136b3b86e.woff2')format("woff");}.ff6_c00129{font-family:ff6_c00129;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00129{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00129{vertical-align:-14.760000px;}
.v0_c00129{vertical-align:0.000000px;}
.v1_c00129{vertical-align:32.033034px;}
.ls25_c00129{letter-spacing:-0.707443px;}
.ls1a_c00129{letter-spacing:-0.409265px;}
.ls13_c00129{letter-spacing:-0.371106px;}
.ls22_c00129{letter-spacing:-0.368338px;}
.ls1d_c00129{letter-spacing:-0.344952px;}
.ls26_c00129{letter-spacing:-0.292332px;}
.ls2c_c00129{letter-spacing:-0.198786px;}
.ls16_c00129{letter-spacing:-0.181246px;}
.ls21_c00129{letter-spacing:-0.157859px;}
.ls24_c00129{letter-spacing:-0.152013px;}
.ls28_c00129{letter-spacing:-0.134473px;}
.ls2b_c00129{letter-spacing:-0.122779px;}
.ls1b_c00129{letter-spacing:-0.105240px;}
.ls15_c00129{letter-spacing:-0.075619px;}
.lsb_c00129{letter-spacing:-0.063018px;}
.ls2a_c00129{letter-spacing:-0.058466px;}
.ls29_c00129{letter-spacing:-0.052620px;}
.ls12_c00129{letter-spacing:-0.049014px;}
.ls11_c00129{letter-spacing:-0.042012px;}
.ls14_c00129{letter-spacing:-0.035010px;}
.lsd_c00129{letter-spacing:-0.028008px;}
.ls17_c00129{letter-spacing:-0.023387px;}
.ls10_c00129{letter-spacing:-0.021006px;}
.lse_c00129{letter-spacing:-0.014004px;}
.ls1c_c00129{letter-spacing:-0.011693px;}
.lsf_c00129{letter-spacing:-0.007002px;}
.lsc_c00129{letter-spacing:0.000000px;}
.ls5_c00129{letter-spacing:0.007002px;}
.ls3_c00129{letter-spacing:0.014004px;}
.ls0_c00129{letter-spacing:0.023281px;}
.ls1f_c00129{letter-spacing:0.023387px;}
.ls2_c00129{letter-spacing:0.028008px;}
.ls7_c00129{letter-spacing:0.029233px;}
.ls1_c00129{letter-spacing:0.035010px;}
.ls19_c00129{letter-spacing:0.040926px;}
.ls1e_c00129{letter-spacing:0.058466px;}
.lsa_c00129{letter-spacing:0.070160px;}
.ls8_c00129{letter-spacing:0.076006px;}
.ls9_c00129{letter-spacing:0.093546px;}
.ls20_c00129{letter-spacing:0.257252px;}
.ls27_c00129{letter-spacing:0.309872px;}
.ls2d_c00129{letter-spacing:0.327412px;}
.ls4_c00129{letter-spacing:0.336096px;}
.ls18_c00129{letter-spacing:0.344952px;}
.ls6_c00129{letter-spacing:0.362492px;}
.ls23_c00129{letter-spacing:0.450191px;}
.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;}
}
.ws3_c00129{word-spacing:-58.466400px;}
.ws0_c00129{word-spacing:-19.465560px;}
.ws4_c00129{word-spacing:-16.183500px;}
.ws5_c00129{word-spacing:-16.142573px;}
.ws1_c00129{word-spacing:-12.967628px;}
.ws2_c00129{word-spacing:-10.397640px;}
.ws43_c00129{word-spacing:-0.672364px;}
.ws3a_c00129{word-spacing:-0.415111px;}
.ws2d_c00129{word-spacing:-0.374185px;}
.ws2f_c00129{word-spacing:-0.245559px;}
.ws2e_c00129{word-spacing:-0.046773px;}
.ws11_c00129{word-spacing:-0.028008px;}
.ws2a_c00129{word-spacing:-0.017540px;}
.ws6_c00129{word-spacing:0.000000px;}
.ws1b_c00129{word-spacing:0.014004px;}
.ws41_c00129{word-spacing:0.134473px;}
.ws42_c00129{word-spacing:0.210479px;}
.ws1d_c00129{word-spacing:0.357102px;}
.ws18_c00129{word-spacing:0.392112px;}
.ws29_c00129{word-spacing:0.420958px;}
.ws10_c00129{word-spacing:0.714204px;}
.ws38_c00129{word-spacing:1.023162px;}
.ws37_c00129{word-spacing:1.105015px;}
.ws39_c00129{word-spacing:1.245334px;}
.ws1c_c00129{word-spacing:1.813518px;}
.ws28_c00129{word-spacing:2.554982px;}
.ws20_c00129{word-spacing:2.877822px;}
.ws27_c00129{word-spacing:3.075333px;}
.ws26_c00129{word-spacing:3.199914px;}
.ws25_c00129{word-spacing:3.276936px;}
.ws3e_c00129{word-spacing:3.385205px;}
.ws3f_c00129{word-spacing:3.624917px;}
.ws40_c00129{word-spacing:3.671690px;}
.ws24_c00129{word-spacing:3.942126px;}
.ws21_c00129{word-spacing:3.949128px;}
.ws13_c00129{word-spacing:3.963132px;}
.ws22_c00129{word-spacing:3.970134px;}
.ws12_c00129{word-spacing:3.977136px;}
.wsd_c00129{word-spacing:4.271220px;}
.wsb_c00129{word-spacing:4.313232px;}
.wsc_c00129{word-spacing:4.628322px;}
.wse_c00129{word-spacing:4.670334px;}
.wsf_c00129{word-spacing:4.677336px;}
.ws2b_c00129{word-spacing:5.156736px;}
.ws2c_c00129{word-spacing:5.384755px;}
.ws23_c00129{word-spacing:5.769648px;}
.ws14_c00129{word-spacing:6.077736px;}
.ws1e_c00129{word-spacing:6.133752px;}
.ws1f_c00129{word-spacing:6.140754px;}
.ws35_c00129{word-spacing:7.121208px;}
.ws33_c00129{word-spacing:7.144594px;}
.ws36_c00129{word-spacing:7.483699px;}
.ws34_c00129{word-spacing:7.583092px;}
.ws32_c00129{word-spacing:7.594785px;}
.ws30_c00129{word-spacing:12.049925px;}
.ws31_c00129{word-spacing:12.073312px;}
.ws16_c00129{word-spacing:12.568590px;}
.ws15_c00129{word-spacing:12.988710px;}
.ws3d_c00129{word-spacing:16.984489px;}
.ws3c_c00129{word-spacing:17.224201px;}
.ws8_c00129{word-spacing:17.638038px;}
.ws3b_c00129{word-spacing:17.639313px;}
.ws7_c00129{word-spacing:17.652042px;}
.ws19_c00129{word-spacing:18.310230px;}
.ws1a_c00129{word-spacing:18.380250px;}
.ws9_c00129{word-spacing:41.031720px;}
.wsa_c00129{word-spacing:41.045724px;}
.ws17_c00129{word-spacing:1069.562502px;}
._2_c00129{margin-left:-1069.611516px;}
._4_c00129{margin-left:-2.703096px;}
._1_c00129{margin-left:-1.463418px;}
._0_c00129{width:1.064304px;}
._3_c00129{width:5.930694px;}
._5_c00129{width:6.970953px;}
.fc0_c00129{color:rgb(0,0,0);}
.fs2_c00129{font-size:37.809600px;}
.fs1_c00129{font-size:46.562400px;}
.fs3_c00129{font-size:58.466400px;}
.fs0_c00129{font-size:70.020000px;}
.y0_c00129{bottom:0.000000px;}
.y2_c00129{bottom:109.740968px;}
.y1_c00129{bottom:129.810450px;}
.y27_c00129{bottom:149.429548px;}
.y26_c00129{bottom:167.250107px;}
.y25_c00129{bottom:188.940450px;}
.y24_c00129{bottom:203.070107px;}
.y23_c00129{bottom:224.670450px;}
.y22_c00129{bottom:238.889548px;}
.y21_c00129{bottom:256.710107px;}
.y20_c00129{bottom:278.400450px;}
.y1f_c00129{bottom:292.529891px;}
.y1e_c00129{bottom:314.040450px;}
.y1d_c00129{bottom:328.349891px;}
.y1c_c00129{bottom:349.860450px;}
.y1b_c00129{bottom:364.527583px;}
.y1a_c00129{bottom:395.577952px;}
.y19_c00129{bottom:425.728564px;}
.y18_c00129{bottom:455.968452px;}
.y17_c00129{bottom:486.119064px;}
.y16_c00129{bottom:516.358951px;}
.y15_c00129{bottom:546.509564px;}
.y14_c00129{bottom:576.749451px;}
.y13_c00129{bottom:606.900063px;}
.y12_c00129{bottom:637.139950px;}
.y11_c00129{bottom:667.290562px;}
.y10_c00129{bottom:697.529338px;}
.yf_c00129{bottom:727.679951px;}
.ye_c00129{bottom:757.919838px;}
.yd_c00129{bottom:788.068754px;}
.yc_c00129{bottom:818.308641px;}
.yb_c00129{bottom:848.459253px;}
.ya_c00129{bottom:878.699141px;}
.y9_c00129{bottom:908.849753px;}
.y8_c00129{bottom:959.430675px;}
.y7_c00129{bottom:989.670562px;}
.y6_c00129{bottom:1019.909951px;}
.y5_c00129{bottom:1050.060563px;}
.y4_c00129{bottom:1080.302192px;}
.y3_c00129{bottom:1110.361778px;}
.h9_c00129{height:39.338549px;}
.hb_c00129{height:39.698549px;}
.ha_c00129{height:54.098549px;}
.h2_c00129{height:62.600889px;}
.h1_c00129{height:62.771836px;}
.h8_c00129{height:62.783302px;}
.h7_c00129{height:73.673232px;}
.h3_c00129{height:73.775498px;}
.h5_c00129{height:73.781564px;}
.h4_c00129{height:73.784462px;}
.h6_c00129{height:74.035572px;}
.h0_c00129{height:1263.000000px;}
.w0_c00129{width:892.500000px;}
.x0_c00129{left:0.000000px;}
.x2_c00129{left:82.710059px;}
.x3_c00129{left:85.590837px;}
.x1_c00129{left:431.730000px;}
@media print{
.v2_c00129{vertical-align:-13.120000pt;}
.v0_c00129{vertical-align:0.000000pt;}
.v1_c00129{vertical-align:28.473808pt;}
.ls25_c00129{letter-spacing:-0.628839pt;}
.ls1a_c00129{letter-spacing:-0.363791pt;}
.ls13_c00129{letter-spacing:-0.329872pt;}
.ls22_c00129{letter-spacing:-0.327412pt;}
.ls1d_c00129{letter-spacing:-0.306624pt;}
.ls26_c00129{letter-spacing:-0.259851pt;}
.ls2c_c00129{letter-spacing:-0.176698pt;}
.ls16_c00129{letter-spacing:-0.161107pt;}
.ls21_c00129{letter-spacing:-0.140319pt;}
.ls24_c00129{letter-spacing:-0.135122pt;}
.ls28_c00129{letter-spacing:-0.119531pt;}
.ls2b_c00129{letter-spacing:-0.109137pt;}
.ls1b_c00129{letter-spacing:-0.093546pt;}
.ls15_c00129{letter-spacing:-0.067217pt;}
.lsb_c00129{letter-spacing:-0.056016pt;}
.ls2a_c00129{letter-spacing:-0.051970pt;}
.ls29_c00129{letter-spacing:-0.046773pt;}
.ls12_c00129{letter-spacing:-0.043568pt;}
.ls11_c00129{letter-spacing:-0.037344pt;}
.ls14_c00129{letter-spacing:-0.031120pt;}
.lsd_c00129{letter-spacing:-0.024896pt;}
.ls17_c00129{letter-spacing:-0.020788pt;}
.ls10_c00129{letter-spacing:-0.018672pt;}
.lse_c00129{letter-spacing:-0.012448pt;}
.ls1c_c00129{letter-spacing:-0.010394pt;}
.lsf_c00129{letter-spacing:-0.006224pt;}
.lsc_c00129{letter-spacing:0.000000pt;}
.ls5_c00129{letter-spacing:0.006224pt;}
.ls3_c00129{letter-spacing:0.012448pt;}
.ls0_c00129{letter-spacing:0.020694pt;}
.ls1f_c00129{letter-spacing:0.020788pt;}
.ls2_c00129{letter-spacing:0.024896pt;}
.ls7_c00129{letter-spacing:0.025985pt;}
.ls1_c00129{letter-spacing:0.031120pt;}
.ls19_c00129{letter-spacing:0.036379pt;}
.ls1e_c00129{letter-spacing:0.051970pt;}
.lsa_c00129{letter-spacing:0.062364pt;}
.ls8_c00129{letter-spacing:0.067561pt;}
.ls9_c00129{letter-spacing:0.083152pt;}
.ls20_c00129{letter-spacing:0.228669pt;}
.ls27_c00129{letter-spacing:0.275442pt;}
.ls2d_c00129{letter-spacing:0.291033pt;}
.ls4_c00129{letter-spacing:0.298752pt;}
.ls18_c00129{letter-spacing:0.306624pt;}
.ls6_c00129{letter-spacing:0.322215pt;}
.ls23_c00129{letter-spacing:0.400170pt;}
.ws3_c00129{word-spacing:-51.970133pt;}
.ws0_c00129{word-spacing:-17.302720pt;}
.ws4_c00129{word-spacing:-14.385333pt;}
.ws5_c00129{word-spacing:-14.348954pt;}
.ws1_c00129{word-spacing:-11.526781pt;}
.ws2_c00129{word-spacing:-9.242347pt;}
.ws43_c00129{word-spacing:-0.597657pt;}
.ws3a_c00129{word-spacing:-0.368988pt;}
.ws2d_c00129{word-spacing:-0.332609pt;}
.ws2f_c00129{word-spacing:-0.218275pt;}
.ws2e_c00129{word-spacing:-0.041576pt;}
.ws11_c00129{word-spacing:-0.024896pt;}
.ws2a_c00129{word-spacing:-0.015591pt;}
.ws6_c00129{word-spacing:0.000000pt;}
.ws1b_c00129{word-spacing:0.012448pt;}
.ws41_c00129{word-spacing:0.119531pt;}
.ws42_c00129{word-spacing:0.187092pt;}
.ws1d_c00129{word-spacing:0.317424pt;}
.ws18_c00129{word-spacing:0.348544pt;}
.ws29_c00129{word-spacing:0.374185pt;}
.ws10_c00129{word-spacing:0.634848pt;}
.ws38_c00129{word-spacing:0.909477pt;}
.ws37_c00129{word-spacing:0.982236pt;}
.ws39_c00129{word-spacing:1.106964pt;}
.ws1c_c00129{word-spacing:1.612016pt;}
.ws28_c00129{word-spacing:2.271095pt;}
.ws20_c00129{word-spacing:2.558064pt;}
.ws27_c00129{word-spacing:2.733629pt;}
.ws26_c00129{word-spacing:2.844368pt;}
.ws25_c00129{word-spacing:2.912832pt;}
.ws3e_c00129{word-spacing:3.009071pt;}
.ws3f_c00129{word-spacing:3.222148pt;}
.ws40_c00129{word-spacing:3.263724pt;}
.ws24_c00129{word-spacing:3.504112pt;}
.ws21_c00129{word-spacing:3.510336pt;}
.ws13_c00129{word-spacing:3.522784pt;}
.ws22_c00129{word-spacing:3.529008pt;}
.ws12_c00129{word-spacing:3.535232pt;}
.wsd_c00129{word-spacing:3.796640pt;}
.wsb_c00129{word-spacing:3.833984pt;}
.wsc_c00129{word-spacing:4.114064pt;}
.wse_c00129{word-spacing:4.151408pt;}
.wsf_c00129{word-spacing:4.157632pt;}
.ws2b_c00129{word-spacing:4.583766pt;}
.ws2c_c00129{word-spacing:4.786449pt;}
.ws23_c00129{word-spacing:5.128576pt;}
.ws14_c00129{word-spacing:5.402432pt;}
.ws1e_c00129{word-spacing:5.452224pt;}
.ws1f_c00129{word-spacing:5.458448pt;}
.ws35_c00129{word-spacing:6.329962pt;}
.ws33_c00129{word-spacing:6.350750pt;}
.ws36_c00129{word-spacing:6.652177pt;}
.ws34_c00129{word-spacing:6.740526pt;}
.ws32_c00129{word-spacing:6.750920pt;}
.ws30_c00129{word-spacing:10.711044pt;}
.ws31_c00129{word-spacing:10.731833pt;}
.ws16_c00129{word-spacing:11.172080pt;}
.ws15_c00129{word-spacing:11.545520pt;}
.ws3d_c00129{word-spacing:15.097324pt;}
.ws3c_c00129{word-spacing:15.310401pt;}
.ws8_c00129{word-spacing:15.678256pt;}
.ws3b_c00129{word-spacing:15.679389pt;}
.ws7_c00129{word-spacing:15.690704pt;}
.ws19_c00129{word-spacing:16.275760pt;}
.ws1a_c00129{word-spacing:16.338000pt;}
.ws9_c00129{word-spacing:36.472640pt;}
.wsa_c00129{word-spacing:36.485088pt;}
.ws17_c00129{word-spacing:950.722224pt;}
._2_c00129{margin-left:-950.765792pt;}
._4_c00129{margin-left:-2.402752pt;}
._1_c00129{margin-left:-1.300816pt;}
._0_c00129{width:0.946048pt;}
._3_c00129{width:5.271728pt;}
._5_c00129{width:6.196403pt;}
.fs2_c00129{font-size:33.608533pt;}
.fs1_c00129{font-size:41.388800pt;}
.fs3_c00129{font-size:51.970133pt;}
.fs0_c00129{font-size:62.240000pt;}
.y0_c00129{bottom:0.000000pt;}
.y2_c00129{bottom:97.547527pt;}
.y1_c00129{bottom:115.387067pt;}
.y27_c00129{bottom:132.826265pt;}
.y26_c00129{bottom:148.666762pt;}
.y25_c00129{bottom:167.947067pt;}
.y24_c00129{bottom:180.506762pt;}
.y23_c00129{bottom:199.707067pt;}
.y22_c00129{bottom:212.346265pt;}
.y21_c00129{bottom:228.186762pt;}
.y20_c00129{bottom:247.467067pt;}
.y1f_c00129{bottom:260.026570pt;}
.y1e_c00129{bottom:279.147067pt;}
.y1d_c00129{bottom:291.866570pt;}
.y1c_c00129{bottom:310.987067pt;}
.y1b_c00129{bottom:324.024519pt;}
.y1a_c00129{bottom:351.624847pt;}
.y19_c00129{bottom:378.425391pt;}
.y18_c00129{bottom:405.305291pt;}
.y17_c00129{bottom:432.105835pt;}
.y16_c00129{bottom:458.985735pt;}
.y15_c00129{bottom:485.786279pt;}
.y14_c00129{bottom:512.666179pt;}
.y13_c00129{bottom:539.466723pt;}
.y12_c00129{bottom:566.346623pt;}
.y11_c00129{bottom:593.147167pt;}
.y10_c00129{bottom:620.026079pt;}
.yf_c00129{bottom:646.826623pt;}
.ye_c00129{bottom:673.706523pt;}
.yd_c00129{bottom:700.505559pt;}
.yc_c00129{bottom:727.385459pt;}
.yb_c00129{bottom:754.186003pt;}
.ya_c00129{bottom:781.065903pt;}
.y9_c00129{bottom:807.866447pt;}
.y8_c00129{bottom:852.827267pt;}
.y7_c00129{bottom:879.707167pt;}
.y6_c00129{bottom:906.586623pt;}
.y5_c00129{bottom:933.387167pt;}
.y4_c00129{bottom:960.268615pt;}
.y3_c00129{bottom:986.988247pt;}
.h9_c00129{height:34.967599pt;}
.hb_c00129{height:35.287599pt;}
.ha_c00129{height:48.087599pt;}
.h2_c00129{height:55.645234pt;}
.h1_c00129{height:55.797187pt;}
.h8_c00129{height:55.807380pt;}
.h7_c00129{height:65.487318pt;}
.h3_c00129{height:65.578220pt;}
.h5_c00129{height:65.583612pt;}
.h4_c00129{height:65.586188pt;}
.h6_c00129{height:65.809398pt;}
.h0_c00129{height:1122.666667pt;}
.w0_c00129{width:793.333333pt;}
.x0_c00129{left:0.000000pt;}
.x2_c00129{left:73.520052pt;}
.x3_c00129{left:76.080744pt;}
.x1_c00129{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_499d61317705192996ab1aaf.woff2')format("woff");}.ff1_c00130{font-family:ff1_c00130;line-height:1.106934;font-style:normal;font-weight:normal;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_01a70690af2cc304e282bea7.woff2')format("woff");}.ff2_c00130{font-family:ff2_c00130;line-height:1.104492;font-style:normal;font-weight:normal;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_406ac191bc02806f89ef1f94.woff2')format("woff");}.ff3_c00130{font-family:ff3_c00130;line-height:1.133301;font-style:normal;font-weight:normal;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_47992ae280123d04d3594f7a.woff2')format("woff");}.ff4_c00130{font-family:ff4_c00130;line-height:1.133301;font-style:normal;font-weight:normal;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_2f2d138ff74aef5136b3b86e.woff2')format("woff");}.ff5_c00130{font-family:ff5_c00130;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00130;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff6_c00130{font-family:ff6_c00130;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00130{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00130{vertical-align:-32.040600px;}
.v3_c00130{vertical-align:-14.760000px;}
.v0_c00130{vertical-align:0.000000px;}
.v1_c00130{vertical-align:32.044182px;}
.ls17_c00130{letter-spacing:-0.707443px;}
.ls18_c00130{letter-spacing:-0.292332px;}
.ls21_c00130{letter-spacing:-0.268945px;}
.ls24_c00130{letter-spacing:-0.216326px;}
.ls1f_c00130{letter-spacing:-0.198786px;}
.ls14_c00130{letter-spacing:-0.140319px;}
.ls1a_c00130{letter-spacing:-0.134473px;}
.ls1e_c00130{letter-spacing:-0.122779px;}
.ls12_c00130{letter-spacing:-0.075619px;}
.ls13_c00130{letter-spacing:-0.064313px;}
.lsc_c00130{letter-spacing:-0.063018px;}
.ls1d_c00130{letter-spacing:-0.058466px;}
.ls1c_c00130{letter-spacing:-0.052620px;}
.ls10_c00130{letter-spacing:-0.028008px;}
.lse_c00130{letter-spacing:-0.021006px;}
.ls11_c00130{letter-spacing:-0.014004px;}
.ls1b_c00130{letter-spacing:-0.011693px;}
.lsf_c00130{letter-spacing:-0.007002px;}
.lsd_c00130{letter-spacing:0.000000px;}
.ls2_c00130{letter-spacing:0.007002px;}
.ls23_c00130{letter-spacing:0.011693px;}
.ls1_c00130{letter-spacing:0.014004px;}
.ls20_c00130{letter-spacing:0.017540px;}
.ls8_c00130{letter-spacing:0.021006px;}
.ls4_c00130{letter-spacing:0.023281px;}
.ls0_c00130{letter-spacing:0.028008px;}
.ls5_c00130{letter-spacing:0.035010px;}
.ls6_c00130{letter-spacing:0.042012px;}
.ls9_c00130{letter-spacing:0.046773px;}
.ls3_c00130{letter-spacing:0.049014px;}
.ls7_c00130{letter-spacing:0.077022px;}
.ls22_c00130{letter-spacing:0.099393px;}
.lsb_c00130{letter-spacing:0.152013px;}
.ls16_c00130{letter-spacing:0.292332px;}
.ls19_c00130{letter-spacing:0.309872px;}
.lsa_c00130{letter-spacing:0.362492px;}
.ls15_c00130{letter-spacing:7.933890px;}
.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:-58.466400px;}
.ws3_c00130{word-spacing:-16.142573px;}
.ws0_c00130{word-spacing:-12.967628px;}
.ws1_c00130{word-spacing:-10.397640px;}
.ws30_c00130{word-spacing:-0.362492px;}
.ws11_c00130{word-spacing:-0.358530px;}
.ws27_c00130{word-spacing:-0.280639px;}
.ws35_c00130{word-spacing:-0.140319px;}
.wsb_c00130{word-spacing:-0.063018px;}
.ws1e_c00130{word-spacing:-0.014004px;}
.ws23_c00130{word-spacing:-0.007002px;}
.ws4_c00130{word-spacing:0.000000px;}
.ws10_c00130{word-spacing:0.014004px;}
.ws2e_c00130{word-spacing:0.134473px;}
.ws2f_c00130{word-spacing:0.210479px;}
.ws6_c00130{word-spacing:0.315090px;}
.ws22_c00130{word-spacing:0.371106px;}
.ws13_c00130{word-spacing:0.707202px;}
.ws17_c00130{word-spacing:1.022292px;}
.ws14_c00130{word-spacing:1.078308px;}
.ws12_c00130{word-spacing:1.085310px;}
.ws21_c00130{word-spacing:1.757502px;}
.ws9_c00130{word-spacing:1.778508px;}
.ws18_c00130{word-spacing:2.149614px;}
.ws24_c00130{word-spacing:2.239263px;}
.ws25_c00130{word-spacing:2.315269px;}
.ws19_c00130{word-spacing:2.429694px;}
.ws2b_c00130{word-spacing:3.385205px;}
.ws1a_c00130{word-spacing:3.564018px;}
.ws2c_c00130{word-spacing:3.624917px;}
.ws2d_c00130{word-spacing:3.671690px;}
.wse_c00130{word-spacing:3.935124px;}
.wsd_c00130{word-spacing:3.963132px;}
.ws7_c00130{word-spacing:4.292226px;}
.ws8_c00130{word-spacing:4.313232px;}
.wsc_c00130{word-spacing:4.334238px;}
.ws20_c00130{word-spacing:4.670334px;}
.ws26_c00130{word-spacing:7.887117px;}
.wsf_c00130{word-spacing:8.612460px;}
.wsa_c00130{word-spacing:8.983566px;}
.ws5_c00130{word-spacing:11.168190px;}
.ws16_c00130{word-spacing:12.554586px;}
.ws15_c00130{word-spacing:12.939696px;}
.ws1b_c00130{word-spacing:12.974706px;}
.ws33_c00130{word-spacing:13.593438px;}
.ws34_c00130{word-spacing:13.681138px;}
.ws31_c00130{word-spacing:13.833150px;}
.ws32_c00130{word-spacing:13.961776px;}
.ws2a_c00130{word-spacing:16.984489px;}
.ws29_c00130{word-spacing:17.224201px;}
.ws28_c00130{word-spacing:17.639313px;}
.ws1d_c00130{word-spacing:21.195054px;}
.ws1c_c00130{word-spacing:21.223062px;}
.ws1f_c00130{word-spacing:24.128892px;}
._4_c00130{margin-left:-8.027437px;}
._5_c00130{margin-left:-6.787949px;}
._3_c00130{margin-left:-2.709774px;}
._1_c00130{margin-left:-1.008288px;}
._0_c00130{width:1.358388px;}
._2_c00130{width:5.930694px;}
.fc0_c00130{color:rgb(0,0,0);}
.fs2_c00130{font-size:37.809600px;}
.fs1_c00130{font-size:46.562400px;}
.fs3_c00130{font-size:58.466400px;}
.fs0_c00130{font-size:70.020000px;}
.y0_c00130{bottom:0.000000px;}
.y2_c00130{bottom:109.740968px;}
.y1_c00130{bottom:129.810450px;}
.y24_c00130{bottom:149.429891px;}
.y23_c00130{bottom:170.940450px;}
.y22_c00130{bottom:185.249548px;}
.y21_c00130{bottom:203.070107px;}
.y20_c00130{bottom:224.670450px;}
.y1f_c00130{bottom:238.889548px;}
.y1e_c00130{bottom:256.710107px;}
.y1d_c00130{bottom:278.400450px;}
.y1c_c00130{bottom:293.071229px;}
.y1b_c00130{bottom:324.480450px;}
.y1a_c00130{bottom:354.810450px;}
.y19_c00130{bottom:384.960600px;}
.y18_c00130{bottom:415.200600px;}
.y17_c00130{bottom:445.350450px;}
.y16_c00130{bottom:475.590600px;}
.y15_c00130{bottom:526.080450px;}
.y14_c00130{bottom:556.320450px;}
.y13_c00130{bottom:586.560450px;}
.y12_c00130{bottom:616.710450px;}
.y11_c00130{bottom:646.950450px;}
.y10_c00130{bottom:677.100450px;}
.yf_c00130{bottom:707.340450px;}
.ye_c00130{bottom:737.490450px;}
.yd_c00130{bottom:787.980450px;}
.yc_c00130{bottom:818.310450px;}
.yb_c00130{bottom:848.460450px;}
.ya_c00130{bottom:878.610600px;}
.y9_c00130{bottom:929.279555px;}
.y8_c00130{bottom:959.519442px;}
.y7_c00130{bottom:989.670054px;}
.y6_c00130{bottom:1019.909942px;}
.y5_c00130{bottom:1050.060553px;}
.y4_c00130{bottom:1080.300441px;}
.y3_c00130{bottom:1110.451053px;}
.h6_c00130{height:39.338549px;}
.h8_c00130{height:39.698549px;}
.h7_c00130{height:54.098549px;}
.h2_c00130{height:62.600889px;}
.h1_c00130{height:62.771836px;}
.h5_c00130{height:73.668786px;}
.h3_c00130{height:73.672968px;}
.h4_c00130{height:74.142464px;}
.h0_c00130{height:1263.000000px;}
.w0_c00130{width:892.500000px;}
.x0_c00130{left:0.000000px;}
.x2_c00130{left:82.710059px;}
.x3_c00130{left:85.589631px;}
.x1_c00130{left:431.730000px;}
@media print{
.v2_c00130{vertical-align:-28.480533pt;}
.v3_c00130{vertical-align:-13.120000pt;}
.v0_c00130{vertical-align:0.000000pt;}
.v1_c00130{vertical-align:28.483717pt;}
.ls17_c00130{letter-spacing:-0.628839pt;}
.ls18_c00130{letter-spacing:-0.259851pt;}
.ls21_c00130{letter-spacing:-0.239063pt;}
.ls24_c00130{letter-spacing:-0.192289pt;}
.ls1f_c00130{letter-spacing:-0.176698pt;}
.ls14_c00130{letter-spacing:-0.124728pt;}
.ls1a_c00130{letter-spacing:-0.119531pt;}
.ls1e_c00130{letter-spacing:-0.109137pt;}
.ls12_c00130{letter-spacing:-0.067217pt;}
.ls13_c00130{letter-spacing:-0.057167pt;}
.lsc_c00130{letter-spacing:-0.056016pt;}
.ls1d_c00130{letter-spacing:-0.051970pt;}
.ls1c_c00130{letter-spacing:-0.046773pt;}
.ls10_c00130{letter-spacing:-0.024896pt;}
.lse_c00130{letter-spacing:-0.018672pt;}
.ls11_c00130{letter-spacing:-0.012448pt;}
.ls1b_c00130{letter-spacing:-0.010394pt;}
.lsf_c00130{letter-spacing:-0.006224pt;}
.lsd_c00130{letter-spacing:0.000000pt;}
.ls2_c00130{letter-spacing:0.006224pt;}
.ls23_c00130{letter-spacing:0.010394pt;}
.ls1_c00130{letter-spacing:0.012448pt;}
.ls20_c00130{letter-spacing:0.015591pt;}
.ls8_c00130{letter-spacing:0.018672pt;}
.ls4_c00130{letter-spacing:0.020694pt;}
.ls0_c00130{letter-spacing:0.024896pt;}
.ls5_c00130{letter-spacing:0.031120pt;}
.ls6_c00130{letter-spacing:0.037344pt;}
.ls9_c00130{letter-spacing:0.041576pt;}
.ls3_c00130{letter-spacing:0.043568pt;}
.ls7_c00130{letter-spacing:0.068464pt;}
.ls22_c00130{letter-spacing:0.088349pt;}
.lsb_c00130{letter-spacing:0.135122pt;}
.ls16_c00130{letter-spacing:0.259851pt;}
.ls19_c00130{letter-spacing:0.275442pt;}
.lsa_c00130{letter-spacing:0.322215pt;}
.ls15_c00130{letter-spacing:7.052347pt;}
.ws2_c00130{word-spacing:-51.970133pt;}
.ws3_c00130{word-spacing:-14.348954pt;}
.ws0_c00130{word-spacing:-11.526781pt;}
.ws1_c00130{word-spacing:-9.242347pt;}
.ws30_c00130{word-spacing:-0.322215pt;}
.ws11_c00130{word-spacing:-0.318694pt;}
.ws27_c00130{word-spacing:-0.249457pt;}
.ws35_c00130{word-spacing:-0.124728pt;}
.wsb_c00130{word-spacing:-0.056016pt;}
.ws1e_c00130{word-spacing:-0.012448pt;}
.ws23_c00130{word-spacing:-0.006224pt;}
.ws4_c00130{word-spacing:0.000000pt;}
.ws10_c00130{word-spacing:0.012448pt;}
.ws2e_c00130{word-spacing:0.119531pt;}
.ws2f_c00130{word-spacing:0.187092pt;}
.ws6_c00130{word-spacing:0.280080pt;}
.ws22_c00130{word-spacing:0.329872pt;}
.ws13_c00130{word-spacing:0.628624pt;}
.ws17_c00130{word-spacing:0.908704pt;}
.ws14_c00130{word-spacing:0.958496pt;}
.ws12_c00130{word-spacing:0.964720pt;}
.ws21_c00130{word-spacing:1.562224pt;}
.ws9_c00130{word-spacing:1.580896pt;}
.ws18_c00130{word-spacing:1.910768pt;}
.ws24_c00130{word-spacing:1.990456pt;}
.ws25_c00130{word-spacing:2.058017pt;}
.ws19_c00130{word-spacing:2.159728pt;}
.ws2b_c00130{word-spacing:3.009071pt;}
.ws1a_c00130{word-spacing:3.168016pt;}
.ws2c_c00130{word-spacing:3.222148pt;}
.ws2d_c00130{word-spacing:3.263724pt;}
.wse_c00130{word-spacing:3.497888pt;}
.wsd_c00130{word-spacing:3.522784pt;}
.ws7_c00130{word-spacing:3.815312pt;}
.ws8_c00130{word-spacing:3.833984pt;}
.wsc_c00130{word-spacing:3.852656pt;}
.ws20_c00130{word-spacing:4.151408pt;}
.ws26_c00130{word-spacing:7.010771pt;}
.wsf_c00130{word-spacing:7.655520pt;}
.wsa_c00130{word-spacing:7.985392pt;}
.ws5_c00130{word-spacing:9.927280pt;}
.ws16_c00130{word-spacing:11.159632pt;}
.ws15_c00130{word-spacing:11.501952pt;}
.ws1b_c00130{word-spacing:11.533072pt;}
.ws33_c00130{word-spacing:12.083056pt;}
.ws34_c00130{word-spacing:12.161011pt;}
.ws31_c00130{word-spacing:12.296134pt;}
.ws32_c00130{word-spacing:12.410468pt;}
.ws2a_c00130{word-spacing:15.097324pt;}
.ws29_c00130{word-spacing:15.310401pt;}
.ws28_c00130{word-spacing:15.679389pt;}
.ws1d_c00130{word-spacing:18.840048pt;}
.ws1c_c00130{word-spacing:18.864944pt;}
.ws1f_c00130{word-spacing:21.447904pt;}
._4_c00130{margin-left:-7.135499pt;}
._5_c00130{margin-left:-6.033732pt;}
._3_c00130{margin-left:-2.408688pt;}
._1_c00130{margin-left:-0.896256pt;}
._0_c00130{width:1.207456pt;}
._2_c00130{width:5.271728pt;}
.fs2_c00130{font-size:33.608533pt;}
.fs1_c00130{font-size:41.388800pt;}
.fs3_c00130{font-size:51.970133pt;}
.fs0_c00130{font-size:62.240000pt;}
.y0_c00130{bottom:0.000000pt;}
.y2_c00130{bottom:97.547527pt;}
.y1_c00130{bottom:115.387067pt;}
.y24_c00130{bottom:132.826570pt;}
.y23_c00130{bottom:151.947067pt;}
.y22_c00130{bottom:164.666265pt;}
.y21_c00130{bottom:180.506762pt;}
.y20_c00130{bottom:199.707067pt;}
.y1f_c00130{bottom:212.346265pt;}
.y1e_c00130{bottom:228.186762pt;}
.y1d_c00130{bottom:247.467067pt;}
.y1c_c00130{bottom:260.507759pt;}
.y1b_c00130{bottom:288.427067pt;}
.y1a_c00130{bottom:315.387067pt;}
.y19_c00130{bottom:342.187200pt;}
.y18_c00130{bottom:369.067200pt;}
.y17_c00130{bottom:395.867067pt;}
.y16_c00130{bottom:422.747200pt;}
.y15_c00130{bottom:467.627067pt;}
.y14_c00130{bottom:494.507067pt;}
.y13_c00130{bottom:521.387067pt;}
.y12_c00130{bottom:548.187067pt;}
.y11_c00130{bottom:575.067067pt;}
.y10_c00130{bottom:601.867067pt;}
.yf_c00130{bottom:628.747067pt;}
.ye_c00130{bottom:655.547067pt;}
.yd_c00130{bottom:700.427067pt;}
.yc_c00130{bottom:727.387067pt;}
.yb_c00130{bottom:754.187067pt;}
.ya_c00130{bottom:780.987200pt;}
.y9_c00130{bottom:826.026271pt;}
.y8_c00130{bottom:852.906171pt;}
.y7_c00130{bottom:879.706715pt;}
.y6_c00130{bottom:906.586615pt;}
.y5_c00130{bottom:933.387159pt;}
.y4_c00130{bottom:960.267059pt;}
.y3_c00130{bottom:987.067603pt;}
.h6_c00130{height:34.967599pt;}
.h8_c00130{height:35.287599pt;}
.h7_c00130{height:48.087599pt;}
.h2_c00130{height:55.645234pt;}
.h1_c00130{height:55.797187pt;}
.h5_c00130{height:65.483366pt;}
.h3_c00130{height:65.487083pt;}
.h4_c00130{height:65.904413pt;}
.h0_c00130{height:1122.666667pt;}
.w0_c00130{width:793.333333pt;}
.x0_c00130{left:0.000000pt;}
.x2_c00130{left:73.520052pt;}
.x3_c00130{left:76.079672pt;}
.x1_c00130{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1887778f2a2b6b4bdbb430c8.woff2')format("woff");}.ff1_c00131{font-family:ff1_c00131;line-height:1.106934;font-style:normal;font-weight:normal;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_926af1c00ace954ae78f48e9.woff2')format("woff");}.ff2_c00131{font-family:ff2_c00131;line-height:1.104492;font-style:normal;font-weight:normal;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_c477d1e7d752d560187376da.woff2')format("woff");}.ff3_c00131{font-family:ff3_c00131;line-height:1.133301;font-style:normal;font-weight:normal;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_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff4_c00131{font-family:ff4_c00131;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00131;src:url('chunks/assets/font_9f77e9c8f9e92a0ad51ef925.woff2')format("woff");}.ff5_c00131{font-family:ff5_c00131;line-height:1.133301;font-style:normal;font-weight:normal;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_2f2d138ff74aef5136b3b86e.woff2')format("woff");}.ff6_c00131{font-family:ff6_c00131;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00131{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00131{vertical-align:-14.760000px;}
.v0_c00131{vertical-align:0.000000px;}
.v1_c00131{vertical-align:32.400000px;}
.ls15_c00131{letter-spacing:-0.409265px;}
.ls20_c00131{letter-spacing:-0.339105px;}
.ls21_c00131{letter-spacing:-0.222172px;}
.ls1a_c00131{letter-spacing:-0.169553px;}
.ls13_c00131{letter-spacing:-0.091026px;}
.ls14_c00131{letter-spacing:-0.075619px;}
.ls1b_c00131{letter-spacing:-0.070160px;}
.lsb_c00131{letter-spacing:-0.063018px;}
.ls19_c00131{letter-spacing:-0.058466px;}
.ls11_c00131{letter-spacing:-0.049014px;}
.ls1d_c00131{letter-spacing:-0.035080px;}
.lse_c00131{letter-spacing:-0.035010px;}
.ls1f_c00131{letter-spacing:-0.029233px;}
.lsf_c00131{letter-spacing:-0.028008px;}
.ls1c_c00131{letter-spacing:-0.023387px;}
.lsd_c00131{letter-spacing:-0.021006px;}
.ls10_c00131{letter-spacing:-0.014004px;}
.lsc_c00131{letter-spacing:0.000000px;}
.ls9_c00131{letter-spacing:0.005847px;}
.ls1_c00131{letter-spacing:0.007002px;}
.ls6_c00131{letter-spacing:0.017540px;}
.ls2_c00131{letter-spacing:0.021006px;}
.ls0_c00131{letter-spacing:0.023281px;}
.ls3_c00131{letter-spacing:0.028008px;}
.ls8_c00131{letter-spacing:0.029233px;}
.ls7_c00131{letter-spacing:0.040926px;}
.ls5_c00131{letter-spacing:0.042012px;}
.ls17_c00131{letter-spacing:0.046773px;}
.lsa_c00131{letter-spacing:0.058466px;}
.ls12_c00131{letter-spacing:0.084024px;}
.ls4_c00131{letter-spacing:0.175050px;}
.ls1e_c00131{letter-spacing:0.327412px;}
.ls16_c00131{letter-spacing:0.344952px;}
.ls18_c00131{letter-spacing:0.350798px;}
.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;}
}
.ws2_c00131{word-spacing:-58.466400px;}
.ws0_c00131{word-spacing:-12.967628px;}
.ws1_c00131{word-spacing:-10.397640px;}
.ws13_c00131{word-spacing:-0.189054px;}
.ws3_c00131{word-spacing:0.000000px;}
.ws8_c00131{word-spacing:0.021006px;}
.ws35_c00131{word-spacing:0.046773px;}
.ws39_c00131{word-spacing:0.233866px;}
.ws1d_c00131{word-spacing:1.449414px;}
.ws4_c00131{word-spacing:1.806516px;}
.ws5_c00131{word-spacing:1.820520px;}
.ws20_c00131{word-spacing:2.499714px;}
.ws21_c00131{word-spacing:2.527722px;}
.ws1c_c00131{word-spacing:3.907116px;}
.ws1b_c00131{word-spacing:3.949128px;}
.ws11_c00131{word-spacing:4.635324px;}
.ws24_c00131{word-spacing:4.642326px;}
.ws25_c00131{word-spacing:4.663332px;}
.ws12_c00131{word-spacing:4.712346px;}
.ws2f_c00131{word-spacing:5.063190px;}
.ws2c_c00131{word-spacing:5.355522px;}
.ws1a_c00131{word-spacing:5.363532px;}
.ws2d_c00131{word-spacing:5.396449px;}
.ws22_c00131{word-spacing:5.405544px;}
.ws19_c00131{word-spacing:5.419548px;}
.ws2b_c00131{word-spacing:5.425682px;}
.ws23_c00131{word-spacing:5.741640px;}
.ws18_c00131{word-spacing:5.762646px;}
.ws17_c00131{word-spacing:5.769648px;}
.ws14_c00131{word-spacing:5.776650px;}
.ws2a_c00131{word-spacing:5.823253px;}
.ws2e_c00131{word-spacing:6.086352px;}
.wsd_c00131{word-spacing:7.527150px;}
.wsc_c00131{word-spacing:7.541154px;}
.ws29_c00131{word-spacing:9.361674px;}
.ws15_c00131{word-spacing:10.068876px;}
.ws16_c00131{word-spacing:10.089882px;}
.ws1f_c00131{word-spacing:11.182194px;}
.ws1e_c00131{word-spacing:11.532294px;}
.ws26_c00131{word-spacing:13.303800px;}
.ws37_c00131{word-spacing:13.686984px;}
.ws36_c00131{word-spacing:14.084556px;}
.ws38_c00131{word-spacing:14.751073px;}
.ws27_c00131{word-spacing:17.266932px;}
.ws28_c00131{word-spacing:17.357958px;}
.ws9_c00131{word-spacing:18.702342px;}
.ws7_c00131{word-spacing:19.437552px;}
.ws6_c00131{word-spacing:19.451556px;}
.wse_c00131{word-spacing:19.815660px;}
.wsa_c00131{word-spacing:21.223062px;}
.wsb_c00131{word-spacing:21.251070px;}
.ws30_c00131{word-spacing:26.970550px;}
.ws31_c00131{word-spacing:27.344735px;}
.ws34_c00131{word-spacing:27.397355px;}
.ws33_c00131{word-spacing:27.806620px;}
.ws32_c00131{word-spacing:27.906013px;}
.ws10_c00131{word-spacing:38.160900px;}
.wsf_c00131{word-spacing:38.532006px;}
._2_c00131{margin-left:-5.167476px;}
._4_c00131{margin-left:-2.709120px;}
._1_c00131{margin-left:-1.232352px;}
._0_c00131{width:1.288368px;}
._3_c00131{width:5.930694px;}
.fc0_c00131{color:rgb(0,0,0);}
.fs2_c00131{font-size:37.809600px;}
.fs1_c00131{font-size:46.562400px;}
.fs3_c00131{font-size:58.466400px;}
.fs0_c00131{font-size:70.020000px;}
.y0_c00131{bottom:0.000000px;}
.y2_c00131{bottom:109.740968px;}
.y1_c00131{bottom:129.810450px;}
.y24_c00131{bottom:153.120600px;}
.y23_c00131{bottom:167.250107px;}
.y22_c00131{bottom:188.940450px;}
.y21_c00131{bottom:203.069548px;}
.y20_c00131{bottom:221.069891px;}
.y1f_c00131{bottom:242.580450px;}
.y1e_c00131{bottom:257.250076px;}
.y1d_c00131{bottom:304.949451px;}
.y1c_c00131{bottom:335.189338px;}
.y1b_c00131{bottom:365.339950px;}
.y1a_c00131{bottom:395.579838px;}
.y19_c00131{bottom:425.727565px;}
.y18_c00131{bottom:455.967453px;}
.y17_c00131{bottom:486.118065px;}
.y16_c00131{bottom:516.357953px;}
.y15_c00131{bottom:546.508565px;}
.y14_c00131{bottom:576.748452px;}
.y13_c00131{bottom:606.899064px;}
.y12_c00131{bottom:637.138951px;}
.y11_c00131{bottom:667.289563px;}
.y10_c00131{bottom:697.529451px;}
.yf_c00131{bottom:727.680063px;}
.ye_c00131{bottom:757.919951px;}
.yd_c00131{bottom:788.070562px;}
.yc_c00131{bottom:818.309280px;}
.yb_c00131{bottom:848.459892px;}
.ya_c00131{bottom:878.699779px;}
.y9_c00131{bottom:908.850392px;}
.y8_c00131{bottom:939.090279px;}
.y7_c00131{bottom:969.240891px;}
.y6_c00131{bottom:999.480779px;}
.y5_c00131{bottom:1049.970450px;}
.y4_c00131{bottom:1080.300450px;}
.y3_c00131{bottom:1110.450450px;}
.h9_c00131{height:39.337949px;}
.h7_c00131{height:39.338549px;}
.h8_c00131{height:54.098549px;}
.h2_c00131{height:62.600889px;}
.h1_c00131{height:62.771836px;}
.h6_c00131{height:62.773330px;}
.h4_c00131{height:73.673466px;}
.h3_c00131{height:74.028786px;}
.h5_c00131{height:74.154002px;}
.h0_c00131{height:1263.000000px;}
.w0_c00131{width:892.500000px;}
.x0_c00131{left:0.000000px;}
.x2_c00131{left:82.710059px;}
.x3_c00131{left:85.589928px;}
.x1_c00131{left:431.730000px;}
@media print{
.v2_c00131{vertical-align:-13.120000pt;}
.v0_c00131{vertical-align:0.000000pt;}
.v1_c00131{vertical-align:28.800000pt;}
.ls15_c00131{letter-spacing:-0.363791pt;}
.ls20_c00131{letter-spacing:-0.301427pt;}
.ls21_c00131{letter-spacing:-0.197487pt;}
.ls1a_c00131{letter-spacing:-0.150713pt;}
.ls13_c00131{letter-spacing:-0.080912pt;}
.ls14_c00131{letter-spacing:-0.067217pt;}
.ls1b_c00131{letter-spacing:-0.062364pt;}
.lsb_c00131{letter-spacing:-0.056016pt;}
.ls19_c00131{letter-spacing:-0.051970pt;}
.ls11_c00131{letter-spacing:-0.043568pt;}
.ls1d_c00131{letter-spacing:-0.031182pt;}
.lse_c00131{letter-spacing:-0.031120pt;}
.ls1f_c00131{letter-spacing:-0.025985pt;}
.lsf_c00131{letter-spacing:-0.024896pt;}
.ls1c_c00131{letter-spacing:-0.020788pt;}
.lsd_c00131{letter-spacing:-0.018672pt;}
.ls10_c00131{letter-spacing:-0.012448pt;}
.lsc_c00131{letter-spacing:0.000000pt;}
.ls9_c00131{letter-spacing:0.005197pt;}
.ls1_c00131{letter-spacing:0.006224pt;}
.ls6_c00131{letter-spacing:0.015591pt;}
.ls2_c00131{letter-spacing:0.018672pt;}
.ls0_c00131{letter-spacing:0.020694pt;}
.ls3_c00131{letter-spacing:0.024896pt;}
.ls8_c00131{letter-spacing:0.025985pt;}
.ls7_c00131{letter-spacing:0.036379pt;}
.ls5_c00131{letter-spacing:0.037344pt;}
.ls17_c00131{letter-spacing:0.041576pt;}
.lsa_c00131{letter-spacing:0.051970pt;}
.ls12_c00131{letter-spacing:0.074688pt;}
.ls4_c00131{letter-spacing:0.155600pt;}
.ls1e_c00131{letter-spacing:0.291033pt;}
.ls16_c00131{letter-spacing:0.306624pt;}
.ls18_c00131{letter-spacing:0.311821pt;}
.ws2_c00131{word-spacing:-51.970133pt;}
.ws0_c00131{word-spacing:-11.526781pt;}
.ws1_c00131{word-spacing:-9.242347pt;}
.ws13_c00131{word-spacing:-0.168048pt;}
.ws3_c00131{word-spacing:0.000000pt;}
.ws8_c00131{word-spacing:0.018672pt;}
.ws35_c00131{word-spacing:0.041576pt;}
.ws39_c00131{word-spacing:0.207881pt;}
.ws1d_c00131{word-spacing:1.288368pt;}
.ws4_c00131{word-spacing:1.605792pt;}
.ws5_c00131{word-spacing:1.618240pt;}
.ws20_c00131{word-spacing:2.221968pt;}
.ws21_c00131{word-spacing:2.246864pt;}
.ws1c_c00131{word-spacing:3.472992pt;}
.ws1b_c00131{word-spacing:3.510336pt;}
.ws11_c00131{word-spacing:4.120288pt;}
.ws24_c00131{word-spacing:4.126512pt;}
.ws25_c00131{word-spacing:4.145184pt;}
.ws12_c00131{word-spacing:4.188752pt;}
.ws2f_c00131{word-spacing:4.500614pt;}
.ws2c_c00131{word-spacing:4.760464pt;}
.ws1a_c00131{word-spacing:4.767584pt;}
.ws2d_c00131{word-spacing:4.796843pt;}
.ws22_c00131{word-spacing:4.804928pt;}
.ws19_c00131{word-spacing:4.817376pt;}
.ws2b_c00131{word-spacing:4.822828pt;}
.ws23_c00131{word-spacing:5.103680pt;}
.ws18_c00131{word-spacing:5.122352pt;}
.ws17_c00131{word-spacing:5.128576pt;}
.ws14_c00131{word-spacing:5.134800pt;}
.ws2a_c00131{word-spacing:5.176225pt;}
.ws2e_c00131{word-spacing:5.410091pt;}
.wsd_c00131{word-spacing:6.690800pt;}
.wsc_c00131{word-spacing:6.703248pt;}
.ws29_c00131{word-spacing:8.321488pt;}
.ws15_c00131{word-spacing:8.950112pt;}
.ws16_c00131{word-spacing:8.968784pt;}
.ws1f_c00131{word-spacing:9.939728pt;}
.ws1e_c00131{word-spacing:10.250928pt;}
.ws26_c00131{word-spacing:11.825600pt;}
.ws37_c00131{word-spacing:12.166208pt;}
.ws36_c00131{word-spacing:12.519605pt;}
.ws38_c00131{word-spacing:13.112065pt;}
.ws27_c00131{word-spacing:15.348384pt;}
.ws28_c00131{word-spacing:15.429296pt;}
.ws9_c00131{word-spacing:16.624304pt;}
.ws7_c00131{word-spacing:17.277824pt;}
.ws6_c00131{word-spacing:17.290272pt;}
.wse_c00131{word-spacing:17.613920pt;}
.wsa_c00131{word-spacing:18.864944pt;}
.wsb_c00131{word-spacing:18.889840pt;}
.ws30_c00131{word-spacing:23.973823pt;}
.ws31_c00131{word-spacing:24.306431pt;}
.ws34_c00131{word-spacing:24.353204pt;}
.ws33_c00131{word-spacing:24.716995pt;}
.ws32_c00131{word-spacing:24.805345pt;}
.ws10_c00131{word-spacing:33.920800pt;}
.wsf_c00131{word-spacing:34.250672pt;}
._2_c00131{margin-left:-4.593312pt;}
._4_c00131{margin-left:-2.408107pt;}
._1_c00131{margin-left:-1.095424pt;}
._0_c00131{width:1.145216pt;}
._3_c00131{width:5.271728pt;}
.fs2_c00131{font-size:33.608533pt;}
.fs1_c00131{font-size:41.388800pt;}
.fs3_c00131{font-size:51.970133pt;}
.fs0_c00131{font-size:62.240000pt;}
.y0_c00131{bottom:0.000000pt;}
.y2_c00131{bottom:97.547527pt;}
.y1_c00131{bottom:115.387067pt;}
.y24_c00131{bottom:136.107200pt;}
.y23_c00131{bottom:148.666762pt;}
.y22_c00131{bottom:167.947067pt;}
.y21_c00131{bottom:180.506265pt;}
.y20_c00131{bottom:196.506570pt;}
.y1f_c00131{bottom:215.627067pt;}
.y1e_c00131{bottom:228.666735pt;}
.y1d_c00131{bottom:271.066179pt;}
.y1c_c00131{bottom:297.946079pt;}
.y1b_c00131{bottom:324.746623pt;}
.y1a_c00131{bottom:351.626523pt;}
.y19_c00131{bottom:378.424503pt;}
.y18_c00131{bottom:405.304403pt;}
.y17_c00131{bottom:432.104947pt;}
.y16_c00131{bottom:458.984847pt;}
.y15_c00131{bottom:485.785391pt;}
.y14_c00131{bottom:512.665291pt;}
.y13_c00131{bottom:539.465835pt;}
.y12_c00131{bottom:566.345735pt;}
.y11_c00131{bottom:593.146279pt;}
.y10_c00131{bottom:620.026179pt;}
.yf_c00131{bottom:646.826723pt;}
.ye_c00131{bottom:673.706623pt;}
.yd_c00131{bottom:700.507167pt;}
.yc_c00131{bottom:727.386027pt;}
.yb_c00131{bottom:754.186571pt;}
.ya_c00131{bottom:781.066471pt;}
.y9_c00131{bottom:807.867015pt;}
.y8_c00131{bottom:834.746915pt;}
.y7_c00131{bottom:861.547459pt;}
.y6_c00131{bottom:888.427359pt;}
.y5_c00131{bottom:933.307067pt;}
.y4_c00131{bottom:960.267067pt;}
.y3_c00131{bottom:987.067067pt;}
.h9_c00131{height:34.967066pt;}
.h7_c00131{height:34.967599pt;}
.h8_c00131{height:48.087599pt;}
.h2_c00131{height:55.645234pt;}
.h1_c00131{height:55.797187pt;}
.h6_c00131{height:55.798516pt;}
.h4_c00131{height:65.487526pt;}
.h3_c00131{height:65.803366pt;}
.h5_c00131{height:65.914668pt;}
.h0_c00131{height:1122.666667pt;}
.w0_c00131{width:793.333333pt;}
.x0_c00131{left:0.000000pt;}
.x2_c00131{left:73.520052pt;}
.x3_c00131{left:76.079936pt;}
.x1_c00131{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ba1c561a006087e93328d455.woff2')format("woff");}.ff1_c00132{font-family:ff1_c00132;line-height:1.106934;font-style:normal;font-weight:normal;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_3de189a3a13416f0fad3b54f.woff2')format("woff");}.ff2_c00132{font-family:ff2_c00132;line-height:1.104492;font-style:normal;font-weight:normal;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_2020bac41d604259d569be70.woff2')format("woff");}.ff3_c00132{font-family:ff3_c00132;line-height:1.133301;font-style:normal;font-weight:normal;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_aaa718df35159b9d83a9a654.woff2')format("woff");}.ff4_c00132{font-family:ff4_c00132;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00132{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00132{vertical-align:-14.760000px;}
.v0_c00132{vertical-align:0.000000px;}
.v1_c00132{vertical-align:32.042034px;}
.ls16_c00132{letter-spacing:-0.122779px;}
.ls13_c00132{letter-spacing:-0.116933px;}
.lse_c00132{letter-spacing:-0.091026px;}
.ls12_c00132{letter-spacing:-0.075619px;}
.ls9_c00132{letter-spacing:-0.063018px;}
.ls15_c00132{letter-spacing:-0.052620px;}
.ls11_c00132{letter-spacing:-0.042012px;}
.ls14_c00132{letter-spacing:-0.035080px;}
.lsf_c00132{letter-spacing:-0.035010px;}
.ls10_c00132{letter-spacing:-0.028008px;}
.lsd_c00132{letter-spacing:-0.021006px;}
.lsc_c00132{letter-spacing:-0.014004px;}
.lsb_c00132{letter-spacing:-0.007002px;}
.lsa_c00132{letter-spacing:0.000000px;}
.ls5_c00132{letter-spacing:0.007002px;}
.ls2_c00132{letter-spacing:0.014004px;}
.ls1_c00132{letter-spacing:0.021006px;}
.ls0_c00132{letter-spacing:0.023281px;}
.ls3_c00132{letter-spacing:0.028008px;}
.ls7_c00132{letter-spacing:0.029233px;}
.ls4_c00132{letter-spacing:0.042012px;}
.ls6_c00132{letter-spacing:0.063018px;}
.ls8_c00132{letter-spacing:0.257252px;}
.ls17_c00132{letter-spacing:0.286485px;}
.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;}
}
.ws2_c00132{word-spacing:-16.195193px;}
.ws0_c00132{word-spacing:-12.967628px;}
.ws1_c00132{word-spacing:-10.397640px;}
.ws1e_c00132{word-spacing:-0.434124px;}
.ws27_c00132{word-spacing:-0.274792px;}
.ws28_c00132{word-spacing:-0.245559px;}
.ws3_c00132{word-spacing:0.000000px;}
.ws23_c00132{word-spacing:0.046773px;}
.ws22_c00132{word-spacing:0.134473px;}
.ws12_c00132{word-spacing:0.364104px;}
.ws17_c00132{word-spacing:0.378108px;}
.ws7_c00132{word-spacing:0.434124px;}
.ws5_c00132{word-spacing:1.078308px;}
.ws24_c00132{word-spacing:2.145717px;}
.ws25_c00132{word-spacing:2.227570px;}
.ws6_c00132{word-spacing:2.527722px;}
.ws13_c00132{word-spacing:2.548728px;}
.ws26_c00132{word-spacing:2.654375px;}
.wsa_c00132{word-spacing:2.849814px;}
.wsb_c00132{word-spacing:3.227922px;}
.ws4_c00132{word-spacing:3.234924px;}
.wse_c00132{word-spacing:5.041440px;}
.wsd_c00132{word-spacing:5.048442px;}
.wsf_c00132{word-spacing:5.090454px;}
.ws21_c00132{word-spacing:6.476850px;}
.ws15_c00132{word-spacing:7.198056px;}
.ws14_c00132{word-spacing:7.219062px;}
.ws1a_c00132{word-spacing:8.283366px;}
.ws19_c00132{word-spacing:8.304372px;}
.wsc_c00132{word-spacing:10.089882px;}
.ws20_c00132{word-spacing:11.497284px;}
.ws1f_c00132{word-spacing:11.903400px;}
.ws18_c00132{word-spacing:12.932694px;}
.ws1b_c00132{word-spacing:13.674906px;}
.ws1c_c00132{word-spacing:13.982994px;}
.ws11_c00132{word-spacing:14.039010px;}
.ws10_c00132{word-spacing:14.053014px;}
.ws9_c00132{word-spacing:14.368104px;}
.ws1d_c00132{word-spacing:14.382108px;}
.ws8_c00132{word-spacing:14.424120px;}
.ws16_c00132{word-spacing:21.195054px;}
._3_c00132{margin-left:-2.710656px;}
._0_c00132{margin-left:-1.050300px;}
._1_c00132{width:1.134324px;}
._2_c00132{width:5.930694px;}
.fc1_c00132{color:rgb(51,51,51);}
.fc0_c00132{color:rgb(0,0,0);}
.fs2_c00132{font-size:37.809600px;}
.fs1_c00132{font-size:46.562400px;}
.fs3_c00132{font-size:58.466400px;}
.fs0_c00132{font-size:70.020000px;}
.y0_c00132{bottom:0.000000px;}
.y2_c00132{bottom:109.740968px;}
.y1_c00132{bottom:129.810450px;}
.y25_c00132{bottom:149.429548px;}
.y24_c00132{bottom:167.250107px;}
.y23_c00132{bottom:188.940450px;}
.y22_c00132{bottom:203.070107px;}
.y21_c00132{bottom:224.670450px;}
.y20_c00132{bottom:238.889891px;}
.y1f_c00132{bottom:260.400450px;}
.y1e_c00132{bottom:275.160468px;}
.y1d_c00132{bottom:325.469838px;}
.y1c_c00132{bottom:355.618979px;}
.y1b_c00132{bottom:385.858866px;}
.y1a_c00132{bottom:416.009478px;}
.y19_c00132{bottom:446.249365px;}
.y18_c00132{bottom:476.399977px;}
.y17_c00132{bottom:506.639865px;}
.y16_c00132{bottom:536.790477px;}
.y15_c00132{bottom:567.030365px;}
.y14_c00132{bottom:597.089950px;}
.y13_c00132{bottom:627.329838px;}
.y12_c00132{bottom:657.478178px;}
.y11_c00132{bottom:687.718065px;}
.y10_c00132{bottom:717.868677px;}
.yf_c00132{bottom:748.108564px;}
.ye_c00132{bottom:778.259176px;}
.yd_c00132{bottom:808.499064px;}
.yc_c00132{bottom:838.649676px;}
.yb_c00132{bottom:868.889563px;}
.ya_c00132{bottom:899.040175px;}
.y9_c00132{bottom:929.280063px;}
.y8_c00132{bottom:959.519951px;}
.y7_c00132{bottom:989.670562px;}
.y6_c00132{bottom:1019.909942px;}
.y5_c00132{bottom:1050.060553px;}
.y4_c00132{bottom:1080.300441px;}
.y3_c00132{bottom:1110.451053px;}
.h6_c00132{height:39.338549px;}
.h8_c00132{height:39.698549px;}
.h7_c00132{height:54.098549px;}
.h2_c00132{height:62.600889px;}
.h1_c00132{height:62.771836px;}
.h3_c00132{height:73.784498px;}
.h5_c00132{height:74.148350px;}
.h4_c00132{height:74.151554px;}
.h0_c00132{height:1263.000000px;}
.w0_c00132{width:892.500000px;}
.x0_c00132{left:0.000000px;}
.x2_c00132{left:82.710059px;}
.x3_c00132{left:85.590081px;}
.x1_c00132{left:431.730000px;}
@media print{
.v2_c00132{vertical-align:-13.120000pt;}
.v0_c00132{vertical-align:0.000000pt;}
.v1_c00132{vertical-align:28.481808pt;}
.ls16_c00132{letter-spacing:-0.109137pt;}
.ls13_c00132{letter-spacing:-0.103940pt;}
.lse_c00132{letter-spacing:-0.080912pt;}
.ls12_c00132{letter-spacing:-0.067217pt;}
.ls9_c00132{letter-spacing:-0.056016pt;}
.ls15_c00132{letter-spacing:-0.046773pt;}
.ls11_c00132{letter-spacing:-0.037344pt;}
.ls14_c00132{letter-spacing:-0.031182pt;}
.lsf_c00132{letter-spacing:-0.031120pt;}
.ls10_c00132{letter-spacing:-0.024896pt;}
.lsd_c00132{letter-spacing:-0.018672pt;}
.lsc_c00132{letter-spacing:-0.012448pt;}
.lsb_c00132{letter-spacing:-0.006224pt;}
.lsa_c00132{letter-spacing:0.000000pt;}
.ls5_c00132{letter-spacing:0.006224pt;}
.ls2_c00132{letter-spacing:0.012448pt;}
.ls1_c00132{letter-spacing:0.018672pt;}
.ls0_c00132{letter-spacing:0.020694pt;}
.ls3_c00132{letter-spacing:0.024896pt;}
.ls7_c00132{letter-spacing:0.025985pt;}
.ls4_c00132{letter-spacing:0.037344pt;}
.ls6_c00132{letter-spacing:0.056016pt;}
.ls8_c00132{letter-spacing:0.228669pt;}
.ls17_c00132{letter-spacing:0.254654pt;}
.ws2_c00132{word-spacing:-14.395727pt;}
.ws0_c00132{word-spacing:-11.526781pt;}
.ws1_c00132{word-spacing:-9.242347pt;}
.ws1e_c00132{word-spacing:-0.385888pt;}
.ws27_c00132{word-spacing:-0.244260pt;}
.ws28_c00132{word-spacing:-0.218275pt;}
.ws3_c00132{word-spacing:0.000000pt;}
.ws23_c00132{word-spacing:0.041576pt;}
.ws22_c00132{word-spacing:0.119531pt;}
.ws12_c00132{word-spacing:0.323648pt;}
.ws17_c00132{word-spacing:0.336096pt;}
.ws7_c00132{word-spacing:0.385888pt;}
.ws5_c00132{word-spacing:0.958496pt;}
.ws24_c00132{word-spacing:1.907304pt;}
.ws25_c00132{word-spacing:1.980062pt;}
.ws6_c00132{word-spacing:2.246864pt;}
.ws13_c00132{word-spacing:2.265536pt;}
.ws26_c00132{word-spacing:2.359444pt;}
.wsa_c00132{word-spacing:2.533168pt;}
.wsb_c00132{word-spacing:2.869264pt;}
.ws4_c00132{word-spacing:2.875488pt;}
.wse_c00132{word-spacing:4.481280pt;}
.wsd_c00132{word-spacing:4.487504pt;}
.wsf_c00132{word-spacing:4.524848pt;}
.ws21_c00132{word-spacing:5.757200pt;}
.ws15_c00132{word-spacing:6.398272pt;}
.ws14_c00132{word-spacing:6.416944pt;}
.ws1a_c00132{word-spacing:7.362992pt;}
.ws19_c00132{word-spacing:7.381664pt;}
.wsc_c00132{word-spacing:8.968784pt;}
.ws20_c00132{word-spacing:10.219808pt;}
.ws1f_c00132{word-spacing:10.580800pt;}
.ws18_c00132{word-spacing:11.495728pt;}
.ws1b_c00132{word-spacing:12.155472pt;}
.ws1c_c00132{word-spacing:12.429328pt;}
.ws11_c00132{word-spacing:12.479120pt;}
.ws10_c00132{word-spacing:12.491568pt;}
.ws9_c00132{word-spacing:12.771648pt;}
.ws1d_c00132{word-spacing:12.784096pt;}
.ws8_c00132{word-spacing:12.821440pt;}
.ws16_c00132{word-spacing:18.840048pt;}
._3_c00132{margin-left:-2.409472pt;}
._0_c00132{margin-left:-0.933600pt;}
._1_c00132{width:1.008288pt;}
._2_c00132{width:5.271728pt;}
.fs2_c00132{font-size:33.608533pt;}
.fs1_c00132{font-size:41.388800pt;}
.fs3_c00132{font-size:51.970133pt;}
.fs0_c00132{font-size:62.240000pt;}
.y0_c00132{bottom:0.000000pt;}
.y2_c00132{bottom:97.547527pt;}
.y1_c00132{bottom:115.387067pt;}
.y25_c00132{bottom:132.826265pt;}
.y24_c00132{bottom:148.666762pt;}
.y23_c00132{bottom:167.947067pt;}
.y22_c00132{bottom:180.506762pt;}
.y21_c00132{bottom:199.707067pt;}
.y20_c00132{bottom:212.346570pt;}
.y1f_c00132{bottom:231.467067pt;}
.y1e_c00132{bottom:244.587083pt;}
.y1d_c00132{bottom:289.306523pt;}
.y1c_c00132{bottom:316.105759pt;}
.y1b_c00132{bottom:342.985659pt;}
.y1a_c00132{bottom:369.786203pt;}
.y19_c00132{bottom:396.666103pt;}
.y18_c00132{bottom:423.466647pt;}
.y17_c00132{bottom:450.346547pt;}
.y16_c00132{bottom:477.147091pt;}
.y15_c00132{bottom:504.026991pt;}
.y14_c00132{bottom:530.746623pt;}
.y13_c00132{bottom:557.626523pt;}
.y12_c00132{bottom:584.425047pt;}
.y11_c00132{bottom:611.304947pt;}
.y10_c00132{bottom:638.105491pt;}
.yf_c00132{bottom:664.985391pt;}
.ye_c00132{bottom:691.785935pt;}
.yd_c00132{bottom:718.665835pt;}
.yc_c00132{bottom:745.466379pt;}
.yb_c00132{bottom:772.346279pt;}
.ya_c00132{bottom:799.146823pt;}
.y9_c00132{bottom:826.026723pt;}
.y8_c00132{bottom:852.906623pt;}
.y7_c00132{bottom:879.707167pt;}
.y6_c00132{bottom:906.586615pt;}
.y5_c00132{bottom:933.387159pt;}
.y4_c00132{bottom:960.267059pt;}
.y3_c00132{bottom:987.067603pt;}
.h6_c00132{height:34.967599pt;}
.h8_c00132{height:35.287599pt;}
.h7_c00132{height:48.087599pt;}
.h2_c00132{height:55.645234pt;}
.h1_c00132{height:55.797187pt;}
.h3_c00132{height:65.586221pt;}
.h5_c00132{height:65.909645pt;}
.h4_c00132{height:65.912492pt;}
.h0_c00132{height:1122.666667pt;}
.w0_c00132{width:793.333333pt;}
.x0_c00132{left:0.000000pt;}
.x2_c00132{left:73.520052pt;}
.x3_c00132{left:76.080072pt;}
.x1_c00132{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0379c483f1e853795bee60eb.woff2')format("woff");}.ff1_c00133{font-family:ff1_c00133;line-height:1.106934;font-style:normal;font-weight:normal;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_73060ec00ad6876a70b7fa6d.woff2')format("woff");}.ff2_c00133{font-family:ff2_c00133;line-height:1.104492;font-style:normal;font-weight:normal;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_2055fa42572ed2c1662fae63.woff2')format("woff");}.ff3_c00133{font-family:ff3_c00133;line-height:1.133301;font-style:normal;font-weight:normal;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_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff4_c00133{font-family:ff4_c00133;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00133;src:url('chunks/assets/font_8680323430197b6c948a5ea3.woff2')format("woff");}.ff5_c00133{font-family:ff5_c00133;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00133;src:url('chunks/assets/font_2f2d138ff74aef5136b3b86e.woff2')format("woff");}.ff6_c00133{font-family:ff6_c00133;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00133{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00133{vertical-align:-32.040000px;}
.v3_c00133{vertical-align:-14.760000px;}
.v0_c00133{vertical-align:0.000000px;}
.v1_c00133{vertical-align:32.047578px;}
.ls20_c00133{letter-spacing:-0.707443px;}
.ls14_c00133{letter-spacing:-0.239712px;}
.ls11_c00133{letter-spacing:-0.163706px;}
.ls1c_c00133{letter-spacing:-0.140319px;}
.ls1e_c00133{letter-spacing:-0.128626px;}
.ls1d_c00133{letter-spacing:-0.122779px;}
.ls22_c00133{letter-spacing:-0.116933px;}
.ls17_c00133{letter-spacing:-0.099393px;}
.ls19_c00133{letter-spacing:-0.087700px;}
.ls10_c00133{letter-spacing:-0.075619px;}
.ls12_c00133{letter-spacing:-0.070160px;}
.ls8_c00133{letter-spacing:-0.063018px;}
.lsf_c00133{letter-spacing:-0.049014px;}
.ls1a_c00133{letter-spacing:-0.046773px;}
.ls18_c00133{letter-spacing:-0.040926px;}
.lsc_c00133{letter-spacing:-0.035010px;}
.ls16_c00133{letter-spacing:-0.029233px;}
.lse_c00133{letter-spacing:-0.028008px;}
.lsb_c00133{letter-spacing:-0.021006px;}
.ls13_c00133{letter-spacing:-0.017540px;}
.lsa_c00133{letter-spacing:-0.014004px;}
.ls1f_c00133{letter-spacing:-0.011693px;}
.lsd_c00133{letter-spacing:-0.007002px;}
.ls21_c00133{letter-spacing:-0.005847px;}
.ls9_c00133{letter-spacing:0.000000px;}
.ls2_c00133{letter-spacing:0.007002px;}
.ls0_c00133{letter-spacing:0.014004px;}
.ls3_c00133{letter-spacing:0.021006px;}
.ls1_c00133{letter-spacing:0.023281px;}
.ls4_c00133{letter-spacing:0.028008px;}
.ls6_c00133{letter-spacing:0.064313px;}
.ls7_c00133{letter-spacing:0.128626px;}
.ls15_c00133{letter-spacing:0.210479px;}
.ls5_c00133{letter-spacing:0.362492px;}
.ls1b_c00133{letter-spacing:0.426805px;}
.ls23_c00133{letter-spacing:0.432651px;}
.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;}
}
.ws3_c00133{word-spacing:-58.466400px;}
.ws0_c00133{word-spacing:-19.416546px;}
.ws1_c00133{word-spacing:-12.967628px;}
.ws2_c00133{word-spacing:-10.397640px;}
.ws36_c00133{word-spacing:-0.420958px;}
.ws2d_c00133{word-spacing:-0.415111px;}
.ws15_c00133{word-spacing:-0.028008px;}
.ws4_c00133{word-spacing:0.000000px;}
.ws33_c00133{word-spacing:0.017540px;}
.ws1b_c00133{word-spacing:0.336096px;}
.ws1c_c00133{word-spacing:0.358530px;}
.ws27_c00133{word-spacing:0.800990px;}
.ws25_c00133{word-spacing:0.882843px;}
.ws26_c00133{word-spacing:1.122555px;}
.ws24_c00133{word-spacing:1.397347px;}
.ws28_c00133{word-spacing:1.555206px;}
.ws7_c00133{word-spacing:1.806516px;}
.ws11_c00133{word-spacing:2.513718px;}
.wse_c00133{word-spacing:2.534724px;}
.ws35_c00133{word-spacing:3.011020px;}
.wsb_c00133{word-spacing:3.213918px;}
.ws34_c00133{word-spacing:3.291658px;}
.ws16_c00133{word-spacing:4.649328px;}
.ws5_c00133{word-spacing:6.119748px;}
.ws6_c00133{word-spacing:6.126750px;}
.wsa_c00133{word-spacing:7.555158px;}
.ws9_c00133{word-spacing:7.569162px;}
.ws22_c00133{word-spacing:9.033059px;}
.ws21_c00133{word-spacing:9.085679px;}
.ws20_c00133{word-spacing:9.179225px;}
.ws23_c00133{word-spacing:9.611876px;}
.ws13_c00133{word-spacing:9.683766px;}
.ws14_c00133{word-spacing:10.061874px;}
.wsc_c00133{word-spacing:11.168190px;}
.wsd_c00133{word-spacing:11.511288px;}
.ws10_c00133{word-spacing:11.861388px;}
.ws17_c00133{word-spacing:12.575592px;}
.ws18_c00133{word-spacing:12.939696px;}
.ws1f_c00133{word-spacing:12.967704px;}
.ws1e_c00133{word-spacing:13.331808px;}
.wsf_c00133{word-spacing:14.774220px;}
.ws31_c00133{word-spacing:15.142798px;}
.ws30_c00133{word-spacing:15.259730px;}
.ws2f_c00133{word-spacing:15.616375px;}
.ws2e_c00133{word-spacing:15.633915px;}
.ws32_c00133{word-spacing:15.838548px;}
.ws29_c00133{word-spacing:16.446598px;}
.ws2a_c00133{word-spacing:16.972796px;}
.ws2c_c00133{word-spacing:16.978643px;}
.ws8_c00133{word-spacing:17.294940px;}
.ws2b_c00133{word-spacing:17.382061px;}
.ws1d_c00133{word-spacing:18.380250px;}
.ws12_c00133{word-spacing:25.557300px;}
.ws1a_c00133{word-spacing:30.920832px;}
.ws19_c00133{word-spacing:30.969846px;}
._3_c00133{margin-left:-2.711484px;}
._1_c00133{margin-left:-1.057302px;}
._0_c00133{width:1.120320px;}
._2_c00133{width:5.930694px;}
.fc0_c00133{color:rgb(0,0,0);}
.fs2_c00133{font-size:37.809600px;}
.fs1_c00133{font-size:46.562400px;}
.fs3_c00133{font-size:58.466400px;}
.fs0_c00133{font-size:70.020000px;}
.y0_c00133{bottom:0.000000px;}
.y2_c00133{bottom:109.740968px;}
.y1_c00133{bottom:129.810450px;}
.y23_c00133{bottom:149.429891px;}
.y22_c00133{bottom:170.940450px;}
.y21_c00133{bottom:205.590450px;}
.y20_c00133{bottom:227.280600px;}
.y1f_c00133{bottom:261.840451px;}
.y1e_c00133{bottom:279.750171px;}
.y1d_c00133{bottom:297.570730px;}
.y1c_c00133{bottom:319.170450px;}
.y1b_c00133{bottom:333.840164px;}
.y1a_c00133{bottom:354.720127px;}
.y19_c00133{bottom:384.960015px;}
.y18_c00133{bottom:415.110627px;}
.y17_c00133{bottom:465.779779px;}
.y16_c00133{bottom:495.930391px;}
.y15_c00133{bottom:526.170279px;}
.y14_c00133{bottom:556.320891px;}
.y13_c00133{bottom:586.560778px;}
.y12_c00133{bottom:637.049478px;}
.y11_c00133{bottom:667.289366px;}
.y10_c00133{bottom:697.529253px;}
.yf_c00133{bottom:727.679865px;}
.ye_c00133{bottom:757.830477px;}
.yd_c00133{bottom:808.498556px;}
.yc_c00133{bottom:838.649168px;}
.yb_c00133{bottom:868.889055px;}
.ya_c00133{bottom:899.039667px;}
.y9_c00133{bottom:929.279555px;}
.y8_c00133{bottom:959.519442px;}
.y7_c00133{bottom:989.670054px;}
.y6_c00133{bottom:1019.909942px;}
.y5_c00133{bottom:1050.060553px;}
.y4_c00133{bottom:1080.300441px;}
.y3_c00133{bottom:1110.451053px;}
.h9_c00133{height:39.337949px;}
.h7_c00133{height:39.338549px;}
.h8_c00133{height:54.098549px;}
.h2_c00133{height:62.600889px;}
.h1_c00133{height:62.771836px;}
.h6_c00133{height:62.772982px;}
.h3_c00133{height:73.676364px;}
.h5_c00133{height:73.785746px;}
.h4_c00133{height:73.786352px;}
.h0_c00133{height:1263.000000px;}
.w0_c00133{width:892.500000px;}
.x0_c00133{left:0.000000px;}
.x2_c00133{left:82.710059px;}
.x3_c00133{left:85.589631px;}
.x1_c00133{left:431.730000px;}
@media print{
.v2_c00133{vertical-align:-28.480000pt;}
.v3_c00133{vertical-align:-13.120000pt;}
.v0_c00133{vertical-align:0.000000pt;}
.v1_c00133{vertical-align:28.486736pt;}
.ls20_c00133{letter-spacing:-0.628839pt;}
.ls14_c00133{letter-spacing:-0.213078pt;}
.ls11_c00133{letter-spacing:-0.145516pt;}
.ls1c_c00133{letter-spacing:-0.124728pt;}
.ls1e_c00133{letter-spacing:-0.114334pt;}
.ls1d_c00133{letter-spacing:-0.109137pt;}
.ls22_c00133{letter-spacing:-0.103940pt;}
.ls17_c00133{letter-spacing:-0.088349pt;}
.ls19_c00133{letter-spacing:-0.077955pt;}
.ls10_c00133{letter-spacing:-0.067217pt;}
.ls12_c00133{letter-spacing:-0.062364pt;}
.ls8_c00133{letter-spacing:-0.056016pt;}
.lsf_c00133{letter-spacing:-0.043568pt;}
.ls1a_c00133{letter-spacing:-0.041576pt;}
.ls18_c00133{letter-spacing:-0.036379pt;}
.lsc_c00133{letter-spacing:-0.031120pt;}
.ls16_c00133{letter-spacing:-0.025985pt;}
.lse_c00133{letter-spacing:-0.024896pt;}
.lsb_c00133{letter-spacing:-0.018672pt;}
.ls13_c00133{letter-spacing:-0.015591pt;}
.lsa_c00133{letter-spacing:-0.012448pt;}
.ls1f_c00133{letter-spacing:-0.010394pt;}
.lsd_c00133{letter-spacing:-0.006224pt;}
.ls21_c00133{letter-spacing:-0.005197pt;}
.ls9_c00133{letter-spacing:0.000000pt;}
.ls2_c00133{letter-spacing:0.006224pt;}
.ls0_c00133{letter-spacing:0.012448pt;}
.ls3_c00133{letter-spacing:0.018672pt;}
.ls1_c00133{letter-spacing:0.020694pt;}
.ls4_c00133{letter-spacing:0.024896pt;}
.ls6_c00133{letter-spacing:0.057167pt;}
.ls7_c00133{letter-spacing:0.114334pt;}
.ls15_c00133{letter-spacing:0.187092pt;}
.ls5_c00133{letter-spacing:0.322215pt;}
.ls1b_c00133{letter-spacing:0.379382pt;}
.ls23_c00133{letter-spacing:0.384579pt;}
.ws3_c00133{word-spacing:-51.970133pt;}
.ws0_c00133{word-spacing:-17.259152pt;}
.ws1_c00133{word-spacing:-11.526781pt;}
.ws2_c00133{word-spacing:-9.242347pt;}
.ws36_c00133{word-spacing:-0.374185pt;}
.ws2d_c00133{word-spacing:-0.368988pt;}
.ws15_c00133{word-spacing:-0.024896pt;}
.ws4_c00133{word-spacing:0.000000pt;}
.ws33_c00133{word-spacing:0.015591pt;}
.ws1b_c00133{word-spacing:0.298752pt;}
.ws1c_c00133{word-spacing:0.318694pt;}
.ws27_c00133{word-spacing:0.711991pt;}
.ws25_c00133{word-spacing:0.784749pt;}
.ws26_c00133{word-spacing:0.997827pt;}
.ws24_c00133{word-spacing:1.242086pt;}
.ws28_c00133{word-spacing:1.382406pt;}
.ws7_c00133{word-spacing:1.605792pt;}
.ws11_c00133{word-spacing:2.234416pt;}
.wse_c00133{word-spacing:2.253088pt;}
.ws35_c00133{word-spacing:2.676462pt;}
.wsb_c00133{word-spacing:2.856816pt;}
.ws34_c00133{word-spacing:2.925919pt;}
.ws16_c00133{word-spacing:4.132736pt;}
.ws5_c00133{word-spacing:5.439776pt;}
.ws6_c00133{word-spacing:5.446000pt;}
.wsa_c00133{word-spacing:6.715696pt;}
.ws9_c00133{word-spacing:6.728144pt;}
.ws22_c00133{word-spacing:8.029386pt;}
.ws21_c00133{word-spacing:8.076159pt;}
.ws20_c00133{word-spacing:8.159311pt;}
.ws23_c00133{word-spacing:8.543890pt;}
.ws13_c00133{word-spacing:8.607792pt;}
.ws14_c00133{word-spacing:8.943888pt;}
.wsc_c00133{word-spacing:9.927280pt;}
.wsd_c00133{word-spacing:10.232256pt;}
.ws10_c00133{word-spacing:10.543456pt;}
.ws17_c00133{word-spacing:11.178304pt;}
.ws18_c00133{word-spacing:11.501952pt;}
.ws1f_c00133{word-spacing:11.526848pt;}
.ws1e_c00133{word-spacing:11.850496pt;}
.wsf_c00133{word-spacing:13.132640pt;}
.ws31_c00133{word-spacing:13.460265pt;}
.ws30_c00133{word-spacing:13.564205pt;}
.ws2f_c00133{word-spacing:13.881223pt;}
.ws2e_c00133{word-spacing:13.896814pt;}
.ws32_c00133{word-spacing:14.078709pt;}
.ws29_c00133{word-spacing:14.619199pt;}
.ws2a_c00133{word-spacing:15.086930pt;}
.ws2c_c00133{word-spacing:15.092127pt;}
.ws8_c00133{word-spacing:15.373280pt;}
.ws2b_c00133{word-spacing:15.450721pt;}
.ws1d_c00133{word-spacing:16.338000pt;}
.ws12_c00133{word-spacing:22.717600pt;}
.ws1a_c00133{word-spacing:27.485184pt;}
.ws19_c00133{word-spacing:27.528752pt;}
._3_c00133{margin-left:-2.410208pt;}
._1_c00133{margin-left:-0.939824pt;}
._0_c00133{width:0.995840pt;}
._2_c00133{width:5.271728pt;}
.fs2_c00133{font-size:33.608533pt;}
.fs1_c00133{font-size:41.388800pt;}
.fs3_c00133{font-size:51.970133pt;}
.fs0_c00133{font-size:62.240000pt;}
.y0_c00133{bottom:0.000000pt;}
.y2_c00133{bottom:97.547527pt;}
.y1_c00133{bottom:115.387067pt;}
.y23_c00133{bottom:132.826570pt;}
.y22_c00133{bottom:151.947067pt;}
.y21_c00133{bottom:182.747067pt;}
.y20_c00133{bottom:202.027200pt;}
.y1f_c00133{bottom:232.747068pt;}
.y1e_c00133{bottom:248.666819pt;}
.y1d_c00133{bottom:264.507316pt;}
.y1c_c00133{bottom:283.707067pt;}
.y1b_c00133{bottom:296.746812pt;}
.y1a_c00133{bottom:315.306780pt;}
.y19_c00133{bottom:342.186680pt;}
.y18_c00133{bottom:368.987224pt;}
.y17_c00133{bottom:414.026471pt;}
.y16_c00133{bottom:440.827015pt;}
.y15_c00133{bottom:467.706915pt;}
.y14_c00133{bottom:494.507459pt;}
.y13_c00133{bottom:521.387359pt;}
.y12_c00133{bottom:566.266203pt;}
.y11_c00133{bottom:593.146103pt;}
.y10_c00133{bottom:620.026003pt;}
.yf_c00133{bottom:646.826547pt;}
.ye_c00133{bottom:673.627091pt;}
.yd_c00133{bottom:718.665383pt;}
.yc_c00133{bottom:745.465927pt;}
.yb_c00133{bottom:772.345827pt;}
.ya_c00133{bottom:799.146371pt;}
.y9_c00133{bottom:826.026271pt;}
.y8_c00133{bottom:852.906171pt;}
.y7_c00133{bottom:879.706715pt;}
.y6_c00133{bottom:906.586615pt;}
.y5_c00133{bottom:933.387159pt;}
.y4_c00133{bottom:960.267059pt;}
.y3_c00133{bottom:987.067603pt;}
.h9_c00133{height:34.967066pt;}
.h7_c00133{height:34.967599pt;}
.h8_c00133{height:48.087599pt;}
.h2_c00133{height:55.645234pt;}
.h1_c00133{height:55.797187pt;}
.h6_c00133{height:55.798206pt;}
.h3_c00133{height:65.490102pt;}
.h5_c00133{height:65.587330pt;}
.h4_c00133{height:65.587868pt;}
.h0_c00133{height:1122.666667pt;}
.w0_c00133{width:793.333333pt;}
.x0_c00133{left:0.000000pt;}
.x2_c00133{left:73.520052pt;}
.x3_c00133{left:76.079672pt;}
.x1_c00133{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_04b3b99159e6b1299f4fa718.woff2')format("woff");}.ff1_c00134{font-family:ff1_c00134;line-height:1.106934;font-style:normal;font-weight:normal;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_c68dc558f77246e7c129c1ce.woff2')format("woff");}.ff2_c00134{font-family:ff2_c00134;line-height:1.104492;font-style:normal;font-weight:normal;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_71f4419739fd18aeb8508b0e.woff2')format("woff");}.ff3_c00134{font-family:ff3_c00134;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00134;src:url('chunks/assets/font_73fae26ead8dc52aee6517c2.woff2')format("woff");}.ff4_c00134{font-family:ff4_c00134;line-height:1.133301;font-style:normal;font-weight:normal;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_69906fb510d5976fd89ec536.woff2')format("woff");}.ff5_c00134{font-family:ff5_c00134;line-height:1.133301;font-style:normal;font-weight:normal;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_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff6_c00134{font-family:ff6_c00134;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00134;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff7_c00134{font-family:ff7_c00134;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00134{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00134{vertical-align:-14.760000px;}
.v0_c00134{vertical-align:0.000000px;}
.v1_c00134{vertical-align:32.043132px;}
.ls17_c00134{letter-spacing:-0.707443px;}
.lse_c00134{letter-spacing:-0.335249px;}
.ls18_c00134{letter-spacing:-0.286485px;}
.ls15_c00134{letter-spacing:-0.239712px;}
.ls16_c00134{letter-spacing:-0.105240px;}
.ls10_c00134{letter-spacing:-0.075619px;}
.ls8_c00134{letter-spacing:-0.063018px;}
.lsd_c00134{letter-spacing:-0.042012px;}
.lsb_c00134{letter-spacing:-0.035010px;}
.ls11_c00134{letter-spacing:-0.023387px;}
.lsf_c00134{letter-spacing:-0.021006px;}
.lsa_c00134{letter-spacing:-0.014004px;}
.lsc_c00134{letter-spacing:-0.007002px;}
.ls9_c00134{letter-spacing:0.000000px;}
.ls4_c00134{letter-spacing:0.007002px;}
.ls14_c00134{letter-spacing:0.011693px;}
.ls3_c00134{letter-spacing:0.014004px;}
.ls1_c00134{letter-spacing:0.021006px;}
.ls6_c00134{letter-spacing:0.023281px;}
.ls5_c00134{letter-spacing:0.035010px;}
.ls0_c00134{letter-spacing:0.042012px;}
.ls2_c00134{letter-spacing:0.056016px;}
.ls12_c00134{letter-spacing:0.344952px;}
.ls7_c00134{letter-spacing:0.362492px;}
.ls13_c00134{letter-spacing:0.403418px;}
.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;}
}
.ws3_c00134{word-spacing:-58.466400px;}
.ws4_c00134{word-spacing:-16.089953px;}
.ws1_c00134{word-spacing:-12.967628px;}
.ws0_c00134{word-spacing:-12.609098px;}
.ws2_c00134{word-spacing:-10.397640px;}
.ws23_c00134{word-spacing:-0.391725px;}
.ws22_c00134{word-spacing:-0.333258px;}
.ws1d_c00134{word-spacing:-0.049014px;}
.ws5_c00134{word-spacing:0.000000px;}
.ws21_c00134{word-spacing:0.035080px;}
.ws24_c00134{word-spacing:0.251406px;}
.ws26_c00134{word-spacing:0.298179px;}
.ws27_c00134{word-spacing:0.719137px;}
.ws14_c00134{word-spacing:0.721206px;}
.ws25_c00134{word-spacing:1.081628px;}
.wsc_c00134{word-spacing:2.863818px;}
.ws12_c00134{word-spacing:3.529008px;}
.ws11_c00134{word-spacing:3.564018px;}
.ws1f_c00134{word-spacing:3.585024px;}
.ws1c_c00134{word-spacing:4.663332px;}
.ws16_c00134{word-spacing:6.126750px;}
.ws17_c00134{word-spacing:6.133752px;}
.ws15_c00134{word-spacing:6.462846px;}
.ws10_c00134{word-spacing:6.805944px;}
.wsf_c00134{word-spacing:6.868962px;}
.ws20_c00134{word-spacing:8.276364px;}
.wse_c00134{word-spacing:8.283366px;}
.wsd_c00134{word-spacing:8.304372px;}
.ws7_c00134{word-spacing:8.640468px;}
.ws1b_c00134{word-spacing:11.140182px;}
.ws6_c00134{word-spacing:11.147184px;}
.ws1e_c00134{word-spacing:11.504286px;}
.ws1a_c00134{word-spacing:11.518290px;}
.ws13_c00134{word-spacing:12.267504px;}
.ws18_c00134{word-spacing:23.421690px;}
.ws19_c00134{word-spacing:23.729778px;}
.ws9_c00134{word-spacing:30.591738px;}
.ws8_c00134{word-spacing:30.619746px;}
.wsb_c00134{word-spacing:32.706342px;}
.wsa_c00134{word-spacing:32.762358px;}
._2_c00134{margin-left:-2.667762px;}
._0_c00134{margin-left:-1.190340px;}
._1_c00134{width:1.113318px;}
._3_c00134{width:5.930694px;}
.fc0_c00134{color:rgb(0,0,0);}
.fs2_c00134{font-size:37.809600px;}
.fs1_c00134{font-size:46.562400px;}
.fs3_c00134{font-size:58.466400px;}
.fs0_c00134{font-size:70.020000px;}
.y0_c00134{bottom:0.000000px;}
.y2_c00134{bottom:109.740968px;}
.y1_c00134{bottom:129.810450px;}
.y20_c00134{bottom:153.120600px;}
.y1f_c00134{bottom:170.940450px;}
.y1e_c00134{bottom:185.700391px;}
.y1d_c00134{bottom:220.349788px;}
.y1c_c00134{bottom:265.169590px;}
.y1b_c00134{bottom:309.989393px;}
.y1a_c00134{bottom:354.809194px;}
.y19_c00134{bottom:405.298866px;}
.y18_c00134{bottom:455.968839px;}
.y17_c00134{bottom:486.119451px;}
.y16_c00134{bottom:516.359338px;}
.y15_c00134{bottom:546.509951px;}
.y14_c00134{bottom:576.749838px;}
.y13_c00134{bottom:606.897904px;}
.y12_c00134{bottom:637.137792px;}
.y11_c00134{bottom:667.288404px;}
.y10_c00134{bottom:697.528291px;}
.yf_c00134{bottom:727.678903px;}
.ye_c00134{bottom:757.918791px;}
.yd_c00134{bottom:788.069403px;}
.yc_c00134{bottom:818.309290px;}
.yb_c00134{bottom:848.459902px;}
.ya_c00134{bottom:899.039667px;}
.y9_c00134{bottom:929.279555px;}
.y8_c00134{bottom:959.519442px;}
.y7_c00134{bottom:989.670054px;}
.y6_c00134{bottom:1019.909942px;}
.y5_c00134{bottom:1050.060553px;}
.y4_c00134{bottom:1080.300441px;}
.y3_c00134{bottom:1110.451053px;}
.h8_c00134{height:39.337949px;}
.h7_c00134{height:39.338549px;}
.h2_c00134{height:62.600889px;}
.h1_c00134{height:62.771836px;}
.h6_c00134{height:62.772670px;}
.h5_c00134{height:63.216299px;}
.h3_c00134{height:73.785596px;}
.h4_c00134{height:74.152646px;}
.h0_c00134{height:1263.000000px;}
.w0_c00134{width:892.500000px;}
.x0_c00134{left:0.000000px;}
.x2_c00134{left:82.710059px;}
.x1_c00134{left:431.730000px;}
@media print{
.v2_c00134{vertical-align:-13.120000pt;}
.v0_c00134{vertical-align:0.000000pt;}
.v1_c00134{vertical-align:28.482784pt;}
.ls17_c00134{letter-spacing:-0.628839pt;}
.lse_c00134{letter-spacing:-0.297999pt;}
.ls18_c00134{letter-spacing:-0.254654pt;}
.ls15_c00134{letter-spacing:-0.213078pt;}
.ls16_c00134{letter-spacing:-0.093546pt;}
.ls10_c00134{letter-spacing:-0.067217pt;}
.ls8_c00134{letter-spacing:-0.056016pt;}
.lsd_c00134{letter-spacing:-0.037344pt;}
.lsb_c00134{letter-spacing:-0.031120pt;}
.ls11_c00134{letter-spacing:-0.020788pt;}
.lsf_c00134{letter-spacing:-0.018672pt;}
.lsa_c00134{letter-spacing:-0.012448pt;}
.lsc_c00134{letter-spacing:-0.006224pt;}
.ls9_c00134{letter-spacing:0.000000pt;}
.ls4_c00134{letter-spacing:0.006224pt;}
.ls14_c00134{letter-spacing:0.010394pt;}
.ls3_c00134{letter-spacing:0.012448pt;}
.ls1_c00134{letter-spacing:0.018672pt;}
.ls6_c00134{letter-spacing:0.020694pt;}
.ls5_c00134{letter-spacing:0.031120pt;}
.ls0_c00134{letter-spacing:0.037344pt;}
.ls2_c00134{letter-spacing:0.049792pt;}
.ls12_c00134{letter-spacing:0.306624pt;}
.ls7_c00134{letter-spacing:0.322215pt;}
.ls13_c00134{letter-spacing:0.358594pt;}
.ws3_c00134{word-spacing:-51.970133pt;}
.ws4_c00134{word-spacing:-14.302181pt;}
.ws1_c00134{word-spacing:-11.526781pt;}
.ws0_c00134{word-spacing:-11.208087pt;}
.ws2_c00134{word-spacing:-9.242347pt;}
.ws23_c00134{word-spacing:-0.348200pt;}
.ws22_c00134{word-spacing:-0.296230pt;}
.ws1d_c00134{word-spacing:-0.043568pt;}
.ws5_c00134{word-spacing:0.000000pt;}
.ws21_c00134{word-spacing:0.031182pt;}
.ws24_c00134{word-spacing:0.223472pt;}
.ws26_c00134{word-spacing:0.265048pt;}
.ws27_c00134{word-spacing:0.639233pt;}
.ws14_c00134{word-spacing:0.641072pt;}
.ws25_c00134{word-spacing:0.961447pt;}
.wsc_c00134{word-spacing:2.545616pt;}
.ws12_c00134{word-spacing:3.136896pt;}
.ws11_c00134{word-spacing:3.168016pt;}
.ws1f_c00134{word-spacing:3.186688pt;}
.ws1c_c00134{word-spacing:4.145184pt;}
.ws16_c00134{word-spacing:5.446000pt;}
.ws17_c00134{word-spacing:5.452224pt;}
.ws15_c00134{word-spacing:5.744752pt;}
.ws10_c00134{word-spacing:6.049728pt;}
.wsf_c00134{word-spacing:6.105744pt;}
.ws20_c00134{word-spacing:7.356768pt;}
.wse_c00134{word-spacing:7.362992pt;}
.wsd_c00134{word-spacing:7.381664pt;}
.ws7_c00134{word-spacing:7.680416pt;}
.ws1b_c00134{word-spacing:9.902384pt;}
.ws6_c00134{word-spacing:9.908608pt;}
.ws1e_c00134{word-spacing:10.226032pt;}
.ws1a_c00134{word-spacing:10.238480pt;}
.ws13_c00134{word-spacing:10.904448pt;}
.ws18_c00134{word-spacing:20.819280pt;}
.ws19_c00134{word-spacing:21.093136pt;}
.ws9_c00134{word-spacing:27.192656pt;}
.ws8_c00134{word-spacing:27.217552pt;}
.wsb_c00134{word-spacing:29.072304pt;}
.wsa_c00134{word-spacing:29.122096pt;}
._2_c00134{margin-left:-2.371344pt;}
._0_c00134{margin-left:-1.058080pt;}
._1_c00134{width:0.989616pt;}
._3_c00134{width:5.271728pt;}
.fs2_c00134{font-size:33.608533pt;}
.fs1_c00134{font-size:41.388800pt;}
.fs3_c00134{font-size:51.970133pt;}
.fs0_c00134{font-size:62.240000pt;}
.y0_c00134{bottom:0.000000pt;}
.y2_c00134{bottom:97.547527pt;}
.y1_c00134{bottom:115.387067pt;}
.y20_c00134{bottom:136.107200pt;}
.y1f_c00134{bottom:151.947067pt;}
.y1e_c00134{bottom:165.067015pt;}
.y1d_c00134{bottom:195.866479pt;}
.y1c_c00134{bottom:235.706303pt;}
.y1b_c00134{bottom:275.546127pt;}
.y1a_c00134{bottom:315.385951pt;}
.y19_c00134{bottom:360.265659pt;}
.y18_c00134{bottom:405.305635pt;}
.y17_c00134{bottom:432.106179pt;}
.y16_c00134{bottom:458.986079pt;}
.y15_c00134{bottom:485.786623pt;}
.y14_c00134{bottom:512.666523pt;}
.y13_c00134{bottom:539.464804pt;}
.y12_c00134{bottom:566.344704pt;}
.y11_c00134{bottom:593.145248pt;}
.y10_c00134{bottom:620.025148pt;}
.yf_c00134{bottom:646.825692pt;}
.ye_c00134{bottom:673.705592pt;}
.yd_c00134{bottom:700.506136pt;}
.yc_c00134{bottom:727.386036pt;}
.yb_c00134{bottom:754.186580pt;}
.ya_c00134{bottom:799.146371pt;}
.y9_c00134{bottom:826.026271pt;}
.y8_c00134{bottom:852.906171pt;}
.y7_c00134{bottom:879.706715pt;}
.y6_c00134{bottom:906.586615pt;}
.y5_c00134{bottom:933.387159pt;}
.y4_c00134{bottom:960.267059pt;}
.y3_c00134{bottom:987.067603pt;}
.h8_c00134{height:34.967066pt;}
.h7_c00134{height:34.967599pt;}
.h2_c00134{height:55.645234pt;}
.h1_c00134{height:55.797187pt;}
.h6_c00134{height:55.797929pt;}
.h5_c00134{height:56.192266pt;}
.h3_c00134{height:65.587197pt;}
.h4_c00134{height:65.913463pt;}
.h0_c00134{height:1122.666667pt;}
.w0_c00134{width:793.333333pt;}
.x0_c00134{left:0.000000pt;}
.x2_c00134{left:73.520052pt;}
.x1_c00134{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5471f4477dafcd9d1255787b.woff2')format("woff");}.ff1_c00135{font-family:ff1_c00135;line-height:1.106934;font-style:normal;font-weight:normal;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_bef6577587ea8b62f7209ee1.woff2')format("woff");}.ff2_c00135{font-family:ff2_c00135;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00135;src:url('chunks/assets/font_78cf2b27d46e9ae81067c4c1.woff2')format("woff");}.ff3_c00135{font-family:ff3_c00135;line-height:1.104492;font-style:normal;font-weight:normal;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_b574367404d264613ebc2e29.woff2')format("woff");}.ff4_c00135{font-family:ff4_c00135;line-height:1.133301;font-style:normal;font-weight:normal;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_63f446f2410330ef58bc7f6c.woff2')format("woff");}.ff5_c00135{font-family:ff5_c00135;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00135{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00135{vertical-align:-14.760600px;}
.v0_c00135{vertical-align:0.000000px;}
.v1_c00135{vertical-align:32.420880px;}
.ls14_c00135{letter-spacing:-0.292332px;}
.lsa_c00135{letter-spacing:-0.136749px;}
.lsc_c00135{letter-spacing:-0.113957px;}
.ls13_c00135{letter-spacing:-0.075619px;}
.ls7_c00135{letter-spacing:-0.063018px;}
.lsf_c00135{letter-spacing:-0.049014px;}
.ls12_c00135{letter-spacing:-0.035010px;}
.lsd_c00135{letter-spacing:-0.028008px;}
.ls10_c00135{letter-spacing:-0.021006px;}
.ls11_c00135{letter-spacing:-0.014004px;}
.lsb_c00135{letter-spacing:-0.007597px;}
.lse_c00135{letter-spacing:-0.007002px;}
.ls8_c00135{letter-spacing:0.000000px;}
.ls6_c00135{letter-spacing:0.005847px;}
.ls3_c00135{letter-spacing:0.014004px;}
.ls1_c00135{letter-spacing:0.021006px;}
.ls5_c00135{letter-spacing:0.023281px;}
.ls4_c00135{letter-spacing:0.028008px;}
.ls0_c00135{letter-spacing:0.042012px;}
.ls2_c00135{letter-spacing:0.049014px;}
.ls9_c00135{letter-spacing:0.235511px;}
.ls15_c00135{letter-spacing:0.356645px;}
.sc__c00135{text-shadow:none;}
.sc0_c00135{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00135{-webkit-text-stroke:0px transparent;}
.sc0_c00135{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00135{word-spacing:-12.967628px;}
.ws1_c00135{word-spacing:-10.397640px;}
.ws3_c00135{word-spacing:-0.357066px;}
.ws25_c00135{word-spacing:-0.344952px;}
.wse_c00135{word-spacing:-0.063018px;}
.ws2_c00135{word-spacing:0.000000px;}
.ws17_c00135{word-spacing:0.014004px;}
.ws1d_c00135{word-spacing:0.021006px;}
.ws6_c00135{word-spacing:0.106360px;}
.ws7_c00135{word-spacing:0.243108px;}
.ws24_c00135{word-spacing:0.304025px;}
.ws5_c00135{word-spacing:0.319080px;}
.ws4_c00135{word-spacing:0.387454px;}
.wsd_c00135{word-spacing:0.392112px;}
.ws20_c00135{word-spacing:1.071306px;}
.ws12_c00135{word-spacing:1.092312px;}
.ws11_c00135{word-spacing:1.386396px;}
.ws13_c00135{word-spacing:1.785510px;}
.ws16_c00135{word-spacing:2.121606px;}
.ws1b_c00135{word-spacing:3.234924px;}
.ws19_c00135{word-spacing:4.278222px;}
.ws18_c00135{word-spacing:4.327236px;}
.ws21_c00135{word-spacing:5.055444px;}
.ws1a_c00135{word-spacing:6.105744px;}
.ws14_c00135{word-spacing:6.854958px;}
.ws23_c00135{word-spacing:8.654472px;}
.ws1c_c00135{word-spacing:8.990568px;}
.ws22_c00135{word-spacing:11.196198px;}
.ws15_c00135{word-spacing:11.868390px;}
.ws10_c00135{word-spacing:13.653900px;}
.wsf_c00135{word-spacing:13.674906px;}
.ws1f_c00135{word-spacing:15.131322px;}
.ws1e_c00135{word-spacing:15.488424px;}
.ws8_c00135{word-spacing:15.495426px;}
.ws9_c00135{word-spacing:15.782508px;}
.wsa_c00135{word-spacing:16.167618px;}
.wsc_c00135{word-spacing:49.980276px;}
.wsb_c00135{word-spacing:50.393394px;}
._3_c00135{margin-left:-2.706336px;}
._0_c00135{margin-left:-1.451054px;}
._1_c00135{width:1.002822px;}
._2_c00135{width:5.930694px;}
.fc0_c00135{color:rgb(0,0,0);}
.fs3_c00135{font-size:37.809600px;}
.fs2_c00135{font-size:46.562400px;}
.fs4_c00135{font-size:58.466400px;}
.fs0_c00135{font-size:70.020000px;}
.fs1_c00135{font-size:75.971400px;}
.y0_c00135{bottom:0.000000px;}
.y2_c00135{bottom:109.740968px;}
.y1_c00135{bottom:129.810450px;}
.y23_c00135{bottom:153.120600px;}
.y22_c00135{bottom:167.787295px;}
.y21_c00135{bottom:206.847952px;}
.y20_c00135{bottom:236.998564px;}
.y1f_c00135{bottom:267.238452px;}
.y1e_c00135{bottom:297.478339px;}
.y1d_c00135{bottom:327.628951px;}
.y1c_c00135{bottom:357.868839px;}
.y1b_c00135{bottom:388.019451px;}
.y1a_c00135{bottom:418.259338px;}
.y19_c00135{bottom:448.409950px;}
.y18_c00135{bottom:478.649838px;}
.y17_c00135{bottom:508.795230px;}
.y16_c00135{bottom:539.035118px;}
.y15_c00135{bottom:569.185730px;}
.y14_c00135{bottom:599.336342px;}
.y13_c00135{bottom:629.486954px;}
.y12_c00135{bottom:659.726841px;}
.y11_c00135{bottom:689.877453px;}
.y10_c00135{bottom:720.117341px;}
.yf_c00135{bottom:750.267953px;}
.ye_c00135{bottom:780.507840px;}
.yd_c00135{bottom:810.658452px;}
.yc_c00135{bottom:840.898340px;}
.yb_c00135{bottom:871.048951px;}
.ya_c00135{bottom:901.288839px;}
.y9_c00135{bottom:931.439451px;}
.y8_c00135{bottom:961.679339px;}
.y7_c00135{bottom:991.829950px;}
.y6_c00135{bottom:1022.069838px;}
.y5_c00135{bottom:1052.220450px;}
.y4_c00135{bottom:1087.230183px;}
.y3_c00135{bottom:1109.100450px;}
.h7_c00135{height:39.337949px;}
.h4_c00135{height:62.600889px;}
.h1_c00135{height:62.771836px;}
.h6_c00135{height:62.785054px;}
.h3_c00135{height:63.216299px;}
.h2_c00135{height:68.589413px;}
.h5_c00135{height:74.049666px;}
.h0_c00135{height:1263.000000px;}
.w0_c00135{width:892.500000px;}
.x0_c00135{left:0.000000px;}
.x2_c00135{left:82.710059px;}
.x1_c00135{left:431.730000px;}
@media print{
.v2_c00135{vertical-align:-13.120533pt;}
.v0_c00135{vertical-align:0.000000pt;}
.v1_c00135{vertical-align:28.818560pt;}
.ls14_c00135{letter-spacing:-0.259851pt;}
.lsa_c00135{letter-spacing:-0.121554pt;}
.lsc_c00135{letter-spacing:-0.101295pt;}
.ls13_c00135{letter-spacing:-0.067217pt;}
.ls7_c00135{letter-spacing:-0.056016pt;}
.lsf_c00135{letter-spacing:-0.043568pt;}
.ls12_c00135{letter-spacing:-0.031120pt;}
.lsd_c00135{letter-spacing:-0.024896pt;}
.ls10_c00135{letter-spacing:-0.018672pt;}
.ls11_c00135{letter-spacing:-0.012448pt;}
.lsb_c00135{letter-spacing:-0.006753pt;}
.lse_c00135{letter-spacing:-0.006224pt;}
.ls8_c00135{letter-spacing:0.000000pt;}
.ls6_c00135{letter-spacing:0.005197pt;}
.ls3_c00135{letter-spacing:0.012448pt;}
.ls1_c00135{letter-spacing:0.018672pt;}
.ls5_c00135{letter-spacing:0.020694pt;}
.ls4_c00135{letter-spacing:0.024896pt;}
.ls0_c00135{letter-spacing:0.037344pt;}
.ls2_c00135{letter-spacing:0.043568pt;}
.ls9_c00135{letter-spacing:0.209343pt;}
.ls15_c00135{letter-spacing:0.317018pt;}
.ws0_c00135{word-spacing:-11.526781pt;}
.ws1_c00135{word-spacing:-9.242347pt;}
.ws3_c00135{word-spacing:-0.317392pt;}
.ws25_c00135{word-spacing:-0.306624pt;}
.wse_c00135{word-spacing:-0.056016pt;}
.ws2_c00135{word-spacing:0.000000pt;}
.ws17_c00135{word-spacing:0.012448pt;}
.ws1d_c00135{word-spacing:0.018672pt;}
.ws6_c00135{word-spacing:0.094542pt;}
.ws7_c00135{word-spacing:0.216096pt;}
.ws24_c00135{word-spacing:0.270245pt;}
.ws5_c00135{word-spacing:0.283627pt;}
.ws4_c00135{word-spacing:0.344404pt;}
.wsd_c00135{word-spacing:0.348544pt;}
.ws20_c00135{word-spacing:0.952272pt;}
.ws12_c00135{word-spacing:0.970944pt;}
.ws11_c00135{word-spacing:1.232352pt;}
.ws13_c00135{word-spacing:1.587120pt;}
.ws16_c00135{word-spacing:1.885872pt;}
.ws1b_c00135{word-spacing:2.875488pt;}
.ws19_c00135{word-spacing:3.802864pt;}
.ws18_c00135{word-spacing:3.846432pt;}
.ws21_c00135{word-spacing:4.493728pt;}
.ws1a_c00135{word-spacing:5.427328pt;}
.ws14_c00135{word-spacing:6.093296pt;}
.ws23_c00135{word-spacing:7.692864pt;}
.ws1c_c00135{word-spacing:7.991616pt;}
.ws22_c00135{word-spacing:9.952176pt;}
.ws15_c00135{word-spacing:10.549680pt;}
.ws10_c00135{word-spacing:12.136800pt;}
.wsf_c00135{word-spacing:12.155472pt;}
.ws1f_c00135{word-spacing:13.450064pt;}
.ws1e_c00135{word-spacing:13.767488pt;}
.ws8_c00135{word-spacing:13.773712pt;}
.ws9_c00135{word-spacing:14.028896pt;}
.wsa_c00135{word-spacing:14.371216pt;}
.wsc_c00135{word-spacing:44.426912pt;}
.wsb_c00135{word-spacing:44.794128pt;}
._3_c00135{margin-left:-2.405632pt;}
._0_c00135{margin-left:-1.289826pt;}
._1_c00135{width:0.891398pt;}
._2_c00135{width:5.271728pt;}
.fs3_c00135{font-size:33.608533pt;}
.fs2_c00135{font-size:41.388800pt;}
.fs4_c00135{font-size:51.970133pt;}
.fs0_c00135{font-size:62.240000pt;}
.fs1_c00135{font-size:67.530133pt;}
.y0_c00135{bottom:0.000000pt;}
.y2_c00135{bottom:97.547527pt;}
.y1_c00135{bottom:115.387067pt;}
.y23_c00135{bottom:136.107200pt;}
.y22_c00135{bottom:149.144263pt;}
.y21_c00135{bottom:183.864847pt;}
.y20_c00135{bottom:210.665391pt;}
.y1f_c00135{bottom:237.545291pt;}
.y1e_c00135{bottom:264.425191pt;}
.y1d_c00135{bottom:291.225735pt;}
.y1c_c00135{bottom:318.105635pt;}
.y1b_c00135{bottom:344.906179pt;}
.y1a_c00135{bottom:371.786079pt;}
.y19_c00135{bottom:398.586623pt;}
.y18_c00135{bottom:425.466523pt;}
.y17_c00135{bottom:452.262427pt;}
.y16_c00135{bottom:479.142327pt;}
.y15_c00135{bottom:505.942871pt;}
.y14_c00135{bottom:532.743415pt;}
.y13_c00135{bottom:559.543959pt;}
.y12_c00135{bottom:586.423859pt;}
.y11_c00135{bottom:613.224403pt;}
.y10_c00135{bottom:640.104303pt;}
.yf_c00135{bottom:666.904847pt;}
.ye_c00135{bottom:693.784747pt;}
.yd_c00135{bottom:720.585291pt;}
.yc_c00135{bottom:747.465191pt;}
.yb_c00135{bottom:774.265735pt;}
.ya_c00135{bottom:801.145635pt;}
.y9_c00135{bottom:827.946179pt;}
.y8_c00135{bottom:854.826079pt;}
.y7_c00135{bottom:881.626623pt;}
.y6_c00135{bottom:908.506523pt;}
.y5_c00135{bottom:935.307067pt;}
.y4_c00135{bottom:966.426830pt;}
.y3_c00135{bottom:985.867067pt;}
.h7_c00135{height:34.967066pt;}
.h4_c00135{height:55.645234pt;}
.h1_c00135{height:55.797187pt;}
.h6_c00135{height:55.808937pt;}
.h3_c00135{height:56.192266pt;}
.h2_c00135{height:60.968367pt;}
.h5_c00135{height:65.821926pt;}
.h0_c00135{height:1122.666667pt;}
.w0_c00135{width:793.333333pt;}
.x0_c00135{left:0.000000pt;}
.x2_c00135{left:73.520052pt;}
.x1_c00135{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_17e5909f34d0f77d786676ac.woff2')format("woff");}.ff1_c00136{font-family:ff1_c00136;line-height:1.106934;font-style:normal;font-weight:normal;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_af4c8826a592fc68ad4658ca.woff2')format("woff");}.ff2_c00136{font-family:ff2_c00136;line-height:1.104492;font-style:normal;font-weight:normal;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_4f71281f69e5b42dfd464df2.woff2')format("woff");}.ff3_c00136{font-family:ff3_c00136;line-height:1.133301;font-style:normal;font-weight:normal;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_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff4_c00136{font-family:ff4_c00136;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00136;src:url('chunks/assets/font_cac5b48b6763af15eadc11ea.woff2')format("woff");}.ff5_c00136{font-family:ff5_c00136;line-height:1.133301;font-style:normal;font-weight:normal;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_2f2d138ff74aef5136b3b86e.woff2')format("woff");}.ff6_c00136{font-family:ff6_c00136;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00136{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00136{vertical-align:-14.760600px;}
.v0_c00136{vertical-align:0.000000px;}
.v1_c00136{vertical-align:32.059458px;}
.ls12_c00136{letter-spacing:-0.286485px;}
.ls11_c00136{letter-spacing:-0.198786px;}
.ls13_c00136{letter-spacing:-0.122779px;}
.ls10_c00136{letter-spacing:-0.081853px;}
.lse_c00136{letter-spacing:-0.075619px;}
.ls6_c00136{letter-spacing:-0.063018px;}
.ls14_c00136{letter-spacing:-0.052620px;}
.ls8_c00136{letter-spacing:-0.042012px;}
.lsd_c00136{letter-spacing:-0.035010px;}
.lsa_c00136{letter-spacing:-0.028008px;}
.lsc_c00136{letter-spacing:-0.021006px;}
.ls9_c00136{letter-spacing:-0.014004px;}
.lsb_c00136{letter-spacing:-0.007002px;}
.lsf_c00136{letter-spacing:-0.005847px;}
.ls7_c00136{letter-spacing:0.000000px;}
.ls5_c00136{letter-spacing:0.005847px;}
.ls1_c00136{letter-spacing:0.007002px;}
.ls2_c00136{letter-spacing:0.014004px;}
.ls3_c00136{letter-spacing:0.021006px;}
.ls4_c00136{letter-spacing:0.023281px;}
.ls0_c00136{letter-spacing:0.028008px;}
.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:-58.466400px;}
.ws4_c00136{word-spacing:-16.195193px;}
.ws3_c00136{word-spacing:-15.996407px;}
.ws0_c00136{word-spacing:-12.967628px;}
.ws1_c00136{word-spacing:-10.397640px;}
.ws5_c00136{word-spacing:0.000000px;}
.ws2e_c00136{word-spacing:0.011693px;}
.ws11_c00136{word-spacing:0.028008px;}
.ws26_c00136{word-spacing:0.322092px;}
.ws8_c00136{word-spacing:1.078308px;}
.wsf_c00136{word-spacing:1.085310px;}
.ws9_c00136{word-spacing:1.092312px;}
.ws7_c00136{word-spacing:1.442412px;}
.ws10_c00136{word-spacing:1.806516px;}
.wsd_c00136{word-spacing:2.114604px;}
.ws1d_c00136{word-spacing:2.485710px;}
.wsc_c00136{word-spacing:2.513718px;}
.ws1e_c00136{word-spacing:2.527722px;}
.ws20_c00136{word-spacing:2.898828px;}
.ws21_c00136{word-spacing:3.213918px;}
.wse_c00136{word-spacing:3.248928px;}
.ws1c_c00136{word-spacing:3.557016px;}
.ws14_c00136{word-spacing:3.599028px;}
.ws1b_c00136{word-spacing:3.977136px;}
.ws6_c00136{word-spacing:4.348242px;}
.ws29_c00136{word-spacing:5.764787px;}
.ws27_c00136{word-spacing:5.776480px;}
.ws28_c00136{word-spacing:5.852487px;}
.ws2a_c00136{word-spacing:6.127279px;}
.ws13_c00136{word-spacing:6.140754px;}
.wsb_c00136{word-spacing:6.476850px;}
.ws24_c00136{word-spacing:7.891254px;}
.ws1f_c00136{word-spacing:9.340668px;}
.ws12_c00136{word-spacing:9.382680px;}
.ws25_c00136{word-spacing:10.425978px;}
.ws16_c00136{word-spacing:10.790082px;}
.ws17_c00136{word-spacing:11.119176px;}
.ws23_c00136{word-spacing:11.868390px;}
.ws22_c00136{word-spacing:12.246498px;}
.wsa_c00136{word-spacing:12.253500px;}
.ws2c_c00136{word-spacing:13.815610px;}
.ws2d_c00136{word-spacing:14.107942px;}
.ws2b_c00136{word-spacing:14.698453px;}
.ws1a_c00136{word-spacing:15.488424px;}
.ws15_c00136{word-spacing:16.230636px;}
.ws18_c00136{word-spacing:17.645040px;}
.ws19_c00136{word-spacing:17.666046px;}
._3_c00136{margin-left:-2.712780px;}
._1_c00136{margin-left:-1.225350px;}
._0_c00136{width:1.113318px;}
._2_c00136{width:5.930694px;}
.fc0_c00136{color:rgb(0,0,0);}
.fs2_c00136{font-size:37.809600px;}
.fs1_c00136{font-size:46.562400px;}
.fs3_c00136{font-size:58.466400px;}
.fs0_c00136{font-size:70.020000px;}
.y0_c00136{bottom:0.000000px;}
.y2_c00136{bottom:109.740968px;}
.y1_c00136{bottom:129.810450px;}
.y22_c00136{bottom:169.860450px;}
.y21_c00136{bottom:187.770450px;}
.y20_c00136{bottom:209.280600px;}
.y1f_c00136{bottom:244.380288px;}
.y1e_c00136{bottom:295.230563px;}
.y1d_c00136{bottom:325.465586px;}
.y1c_c00136{bottom:355.616198px;}
.y1b_c00136{bottom:385.856085px;}
.y1a_c00136{bottom:416.006697px;}
.y19_c00136{bottom:446.246585px;}
.y18_c00136{bottom:476.397197px;}
.y17_c00136{bottom:506.637084px;}
.y16_c00136{bottom:536.787696px;}
.y15_c00136{bottom:567.027584px;}
.y14_c00136{bottom:597.087170px;}
.y13_c00136{bottom:627.327057px;}
.y12_c00136{bottom:657.477669px;}
.y11_c00136{bottom:687.717557px;}
.y10_c00136{bottom:717.868169px;}
.yf_c00136{bottom:748.108056px;}
.ye_c00136{bottom:778.258668px;}
.yd_c00136{bottom:808.498556px;}
.yc_c00136{bottom:838.649168px;}
.yb_c00136{bottom:868.889055px;}
.ya_c00136{bottom:899.039667px;}
.y9_c00136{bottom:929.279555px;}
.y8_c00136{bottom:959.519442px;}
.y7_c00136{bottom:989.670054px;}
.y6_c00136{bottom:1019.909942px;}
.y5_c00136{bottom:1050.060553px;}
.y4_c00136{bottom:1080.300441px;}
.y3_c00136{bottom:1110.451053px;}
.h5_c00136{height:39.337949px;}
.h6_c00136{height:54.098549px;}
.h2_c00136{height:62.600889px;}
.h1_c00136{height:62.771836px;}
.h4_c00136{height:62.772484px;}
.h3_c00136{height:73.688244px;}
.h0_c00136{height:1263.000000px;}
.w0_c00136{width:892.500000px;}
.x0_c00136{left:0.000000px;}
.x2_c00136{left:82.710059px;}
.x1_c00136{left:431.730000px;}
@media print{
.v2_c00136{vertical-align:-13.120533pt;}
.v0_c00136{vertical-align:0.000000pt;}
.v1_c00136{vertical-align:28.497296pt;}
.ls12_c00136{letter-spacing:-0.254654pt;}
.ls11_c00136{letter-spacing:-0.176698pt;}
.ls13_c00136{letter-spacing:-0.109137pt;}
.ls10_c00136{letter-spacing:-0.072758pt;}
.lse_c00136{letter-spacing:-0.067217pt;}
.ls6_c00136{letter-spacing:-0.056016pt;}
.ls14_c00136{letter-spacing:-0.046773pt;}
.ls8_c00136{letter-spacing:-0.037344pt;}
.lsd_c00136{letter-spacing:-0.031120pt;}
.lsa_c00136{letter-spacing:-0.024896pt;}
.lsc_c00136{letter-spacing:-0.018672pt;}
.ls9_c00136{letter-spacing:-0.012448pt;}
.lsb_c00136{letter-spacing:-0.006224pt;}
.lsf_c00136{letter-spacing:-0.005197pt;}
.ls7_c00136{letter-spacing:0.000000pt;}
.ls5_c00136{letter-spacing:0.005197pt;}
.ls1_c00136{letter-spacing:0.006224pt;}
.ls2_c00136{letter-spacing:0.012448pt;}
.ls3_c00136{letter-spacing:0.018672pt;}
.ls4_c00136{letter-spacing:0.020694pt;}
.ls0_c00136{letter-spacing:0.024896pt;}
.ws2_c00136{word-spacing:-51.970133pt;}
.ws4_c00136{word-spacing:-14.395727pt;}
.ws3_c00136{word-spacing:-14.219028pt;}
.ws0_c00136{word-spacing:-11.526781pt;}
.ws1_c00136{word-spacing:-9.242347pt;}
.ws5_c00136{word-spacing:0.000000pt;}
.ws2e_c00136{word-spacing:0.010394pt;}
.ws11_c00136{word-spacing:0.024896pt;}
.ws26_c00136{word-spacing:0.286304pt;}
.ws8_c00136{word-spacing:0.958496pt;}
.wsf_c00136{word-spacing:0.964720pt;}
.ws9_c00136{word-spacing:0.970944pt;}
.ws7_c00136{word-spacing:1.282144pt;}
.ws10_c00136{word-spacing:1.605792pt;}
.wsd_c00136{word-spacing:1.879648pt;}
.ws1d_c00136{word-spacing:2.209520pt;}
.wsc_c00136{word-spacing:2.234416pt;}
.ws1e_c00136{word-spacing:2.246864pt;}
.ws20_c00136{word-spacing:2.576736pt;}
.ws21_c00136{word-spacing:2.856816pt;}
.wse_c00136{word-spacing:2.887936pt;}
.ws1c_c00136{word-spacing:3.161792pt;}
.ws14_c00136{word-spacing:3.199136pt;}
.ws1b_c00136{word-spacing:3.535232pt;}
.ws6_c00136{word-spacing:3.865104pt;}
.ws29_c00136{word-spacing:5.124255pt;}
.ws27_c00136{word-spacing:5.134649pt;}
.ws28_c00136{word-spacing:5.202210pt;}
.ws2a_c00136{word-spacing:5.446470pt;}
.ws13_c00136{word-spacing:5.458448pt;}
.wsb_c00136{word-spacing:5.757200pt;}
.ws24_c00136{word-spacing:7.014448pt;}
.ws1f_c00136{word-spacing:8.302816pt;}
.ws12_c00136{word-spacing:8.340160pt;}
.ws25_c00136{word-spacing:9.267536pt;}
.ws16_c00136{word-spacing:9.591184pt;}
.ws17_c00136{word-spacing:9.883712pt;}
.ws23_c00136{word-spacing:10.549680pt;}
.ws22_c00136{word-spacing:10.885776pt;}
.wsa_c00136{word-spacing:10.892000pt;}
.ws2c_c00136{word-spacing:12.280543pt;}
.ws2d_c00136{word-spacing:12.540393pt;}
.ws2b_c00136{word-spacing:13.065292pt;}
.ws1a_c00136{word-spacing:13.767488pt;}
.ws15_c00136{word-spacing:14.427232pt;}
.ws18_c00136{word-spacing:15.684480pt;}
.ws19_c00136{word-spacing:15.703152pt;}
._3_c00136{margin-left:-2.411360pt;}
._1_c00136{margin-left:-1.089200pt;}
._0_c00136{width:0.989616pt;}
._2_c00136{width:5.271728pt;}
.fs2_c00136{font-size:33.608533pt;}
.fs1_c00136{font-size:41.388800pt;}
.fs3_c00136{font-size:51.970133pt;}
.fs0_c00136{font-size:62.240000pt;}
.y0_c00136{bottom:0.000000pt;}
.y2_c00136{bottom:97.547527pt;}
.y1_c00136{bottom:115.387067pt;}
.y22_c00136{bottom:150.987067pt;}
.y21_c00136{bottom:166.907067pt;}
.y20_c00136{bottom:186.027200pt;}
.y1f_c00136{bottom:217.226923pt;}
.y1e_c00136{bottom:262.427167pt;}
.y1d_c00136{bottom:289.302743pt;}
.y1c_c00136{bottom:316.103287pt;}
.y1b_c00136{bottom:342.983187pt;}
.y1a_c00136{bottom:369.783731pt;}
.y19_c00136{bottom:396.663631pt;}
.y18_c00136{bottom:423.464175pt;}
.y17_c00136{bottom:450.344075pt;}
.y16_c00136{bottom:477.144619pt;}
.y15_c00136{bottom:504.024519pt;}
.y14_c00136{bottom:530.744151pt;}
.y13_c00136{bottom:557.624051pt;}
.y12_c00136{bottom:584.424595pt;}
.y11_c00136{bottom:611.304495pt;}
.y10_c00136{bottom:638.105039pt;}
.yf_c00136{bottom:664.984939pt;}
.ye_c00136{bottom:691.785483pt;}
.yd_c00136{bottom:718.665383pt;}
.yc_c00136{bottom:745.465927pt;}
.yb_c00136{bottom:772.345827pt;}
.ya_c00136{bottom:799.146371pt;}
.y9_c00136{bottom:826.026271pt;}
.y8_c00136{bottom:852.906171pt;}
.y7_c00136{bottom:879.706715pt;}
.y6_c00136{bottom:906.586615pt;}
.y5_c00136{bottom:933.387159pt;}
.y4_c00136{bottom:960.267059pt;}
.y3_c00136{bottom:987.067603pt;}
.h5_c00136{height:34.967066pt;}
.h6_c00136{height:48.087599pt;}
.h2_c00136{height:55.645234pt;}
.h1_c00136{height:55.797187pt;}
.h4_c00136{height:55.797764pt;}
.h3_c00136{height:65.500662pt;}
.h0_c00136{height:1122.666667pt;}
.w0_c00136{width:793.333333pt;}
.x0_c00136{left:0.000000pt;}
.x2_c00136{left:73.520052pt;}
.x1_c00136{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3f6410751ca814dadd029cdd.woff2')format("woff");}.ff1_c00137{font-family:ff1_c00137;line-height:1.106934;font-style:normal;font-weight:normal;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_687ea619bf5f054048e3e900.woff2')format("woff");}.ff2_c00137{font-family:ff2_c00137;line-height:1.104492;font-style:normal;font-weight:normal;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_fc0524ede0f3b0b334a645a7.woff2')format("woff");}.ff3_c00137{font-family:ff3_c00137;line-height:1.133301;font-style:normal;font-weight:normal;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_b8d52f3f756759827cdd9269.woff2')format("woff");}.ff4_c00137{font-family:ff4_c00137;line-height:1.133301;font-style:normal;font-weight:normal;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_b1d6e41c4b54b71cfaf38793.woff2')format("woff");}.ff5_c00137{font-family:ff5_c00137;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00137;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff6_c00137{font-family:ff6_c00137;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00137{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00137{vertical-align:-14.760000px;}
.v0_c00137{vertical-align:0.000000px;}
.v1_c00137{vertical-align:32.044032px;}
.ls14_c00137{letter-spacing:-0.707443px;}
.ls1b_c00137{letter-spacing:-0.672364px;}
.ls17_c00137{letter-spacing:-0.309872px;}
.ls18_c00137{letter-spacing:-0.268945px;}
.ls12_c00137{letter-spacing:-0.263099px;}
.ls13_c00137{letter-spacing:-0.116933px;}
.ls16_c00137{letter-spacing:-0.105240px;}
.lsf_c00137{letter-spacing:-0.081853px;}
.lse_c00137{letter-spacing:-0.075619px;}
.ls15_c00137{letter-spacing:-0.070160px;}
.ls7_c00137{letter-spacing:-0.063018px;}
.ls19_c00137{letter-spacing:-0.035080px;}
.lsb_c00137{letter-spacing:-0.035010px;}
.lsd_c00137{letter-spacing:-0.028008px;}
.ls10_c00137{letter-spacing:-0.023387px;}
.lsa_c00137{letter-spacing:-0.021006px;}
.ls1a_c00137{letter-spacing:-0.017540px;}
.lsc_c00137{letter-spacing:-0.014004px;}
.ls1d_c00137{letter-spacing:-0.011693px;}
.ls9_c00137{letter-spacing:-0.007002px;}
.ls8_c00137{letter-spacing:0.000000px;}
.ls0_c00137{letter-spacing:0.007002px;}
.ls5_c00137{letter-spacing:0.014004px;}
.ls1_c00137{letter-spacing:0.021006px;}
.ls4_c00137{letter-spacing:0.023281px;}
.ls11_c00137{letter-spacing:0.023387px;}
.ls6_c00137{letter-spacing:0.028008px;}
.ls2_c00137{letter-spacing:0.035010px;}
.ls3_c00137{letter-spacing:0.091026px;}
.ls1c_c00137{letter-spacing:0.245559px;}
.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;}
}
.ws3_c00137{word-spacing:-58.466400px;}
.ws1_c00137{word-spacing:-19.444554px;}
.ws4_c00137{word-spacing:-16.195193px;}
.ws0_c00137{word-spacing:-12.967628px;}
.ws2_c00137{word-spacing:-10.397640px;}
.ws24_c00137{word-spacing:-0.344952px;}
.ws2e_c00137{word-spacing:-0.233866px;}
.wsd_c00137{word-spacing:-0.105030px;}
.ws1f_c00137{word-spacing:-0.021006px;}
.ws5_c00137{word-spacing:0.000000px;}
.ws2f_c00137{word-spacing:0.023387px;}
.ws2d_c00137{word-spacing:0.327412px;}
.wsf_c00137{word-spacing:0.329094px;}
.ws8_c00137{word-spacing:0.350100px;}
.ws14_c00137{word-spacing:0.378108px;}
.ws25_c00137{word-spacing:0.719137px;}
.ws26_c00137{word-spacing:1.882618px;}
.ws27_c00137{word-spacing:2.280190px;}
.wsc_c00137{word-spacing:2.863818px;}
.wsb_c00137{word-spacing:2.884824px;}
.ws2c_c00137{word-spacing:4.712392px;}
.ws2b_c00137{word-spacing:5.086577px;}
.ws1e_c00137{word-spacing:5.405544px;}
.ws11_c00137{word-spacing:5.748642px;}
.ws10_c00137{word-spacing:5.755644px;}
.ws19_c00137{word-spacing:6.112746px;}
.ws1a_c00137{word-spacing:7.198056px;}
.ws15_c00137{word-spacing:7.569162px;}
.ws1c_c00137{word-spacing:8.297370px;}
.ws1b_c00137{word-spacing:8.304372px;}
.ws7_c00137{word-spacing:9.683766px;}
.ws6_c00137{word-spacing:9.697770px;}
.ws21_c00137{word-spacing:10.114687px;}
.ws20_c00137{word-spacing:10.173154px;}
.ws23_c00137{word-spacing:10.208233px;}
.ws22_c00137{word-spacing:10.354399px;}
.ws16_c00137{word-spacing:11.168190px;}
.ws17_c00137{word-spacing:11.175192px;}
.ws29_c00137{word-spacing:24.760520px;}
.ws28_c00137{word-spacing:24.801447px;}
.ws2a_c00137{word-spacing:24.959306px;}
.wse_c00137{word-spacing:25.550298px;}
.ws13_c00137{word-spacing:28.757214px;}
.ws12_c00137{word-spacing:28.785222px;}
.ws9_c00137{word-spacing:34.512858px;}
.wsa_c00137{word-spacing:34.897968px;}
.ws1d_c00137{word-spacing:34.918974px;}
.ws18_c00137{word-spacing:41.381820px;}
._3_c00137{margin-left:-2.710566px;}
._0_c00137{margin-left:-1.134324px;}
._1_c00137{width:1.302372px;}
._2_c00137{width:5.930694px;}
._4_c00137{width:9.427637px;}
.fc0_c00137{color:rgb(0,0,0);}
.fs2_c00137{font-size:37.809600px;}
.fs1_c00137{font-size:46.562400px;}
.fs3_c00137{font-size:58.466400px;}
.fs0_c00137{font-size:70.020000px;}
.y0_c00137{bottom:0.000000px;}
.y2_c00137{bottom:109.740968px;}
.y1_c00137{bottom:129.810450px;}
.y23_c00137{bottom:153.120600px;}
.y22_c00137{bottom:167.249205px;}
.y21_c00137{bottom:185.249548px;}
.y20_c00137{bottom:203.070107px;}
.y1f_c00137{bottom:224.670450px;}
.y1e_c00137{bottom:242.580450px;}
.y1d_c00137{bottom:256.710107px;}
.y1c_c00137{bottom:278.400450px;}
.y1b_c00137{bottom:293.070446px;}
.y1a_c00137{bottom:395.490090px;}
.y19_c00137{bottom:425.729977px;}
.y18_c00137{bottom:455.969865px;}
.y17_c00137{bottom:486.120477px;}
.y16_c00137{bottom:536.789478px;}
.y15_c00137{bottom:567.029365px;}
.y14_c00137{bottom:597.088951px;}
.y13_c00137{bottom:627.328839px;}
.y12_c00137{bottom:657.479451px;}
.y11_c00137{bottom:687.719338px;}
.y10_c00137{bottom:717.869950px;}
.yf_c00137{bottom:748.109838px;}
.ye_c00137{bottom:778.259676px;}
.yd_c00137{bottom:808.499564px;}
.yc_c00137{bottom:838.650176px;}
.yb_c00137{bottom:868.890063px;}
.ya_c00137{bottom:899.040675px;}
.y9_c00137{bottom:929.280563px;}
.y8_c00137{bottom:959.519442px;}
.y7_c00137{bottom:989.670054px;}
.y6_c00137{bottom:1019.909942px;}
.y5_c00137{bottom:1050.060553px;}
.y4_c00137{bottom:1080.300441px;}
.y3_c00137{bottom:1110.451053px;}
.ha_c00137{height:39.337949px;}
.h7_c00137{height:39.338549px;}
.h9_c00137{height:39.698549px;}
.h8_c00137{height:54.098549px;}
.h2_c00137{height:62.600889px;}
.h1_c00137{height:62.771836px;}
.h6_c00137{height:73.670826px;}
.h3_c00137{height:73.672818px;}
.h4_c00137{height:74.146160px;}
.h5_c00137{height:74.146352px;}
.h0_c00137{height:1263.000000px;}
.w0_c00137{width:892.500000px;}
.x0_c00137{left:0.000000px;}
.x2_c00137{left:82.710059px;}
.x1_c00137{left:431.730000px;}
@media print{
.v2_c00137{vertical-align:-13.120000pt;}
.v0_c00137{vertical-align:0.000000pt;}
.v1_c00137{vertical-align:28.483584pt;}
.ls14_c00137{letter-spacing:-0.628839pt;}
.ls1b_c00137{letter-spacing:-0.597657pt;}
.ls17_c00137{letter-spacing:-0.275442pt;}
.ls18_c00137{letter-spacing:-0.239063pt;}
.ls12_c00137{letter-spacing:-0.233866pt;}
.ls13_c00137{letter-spacing:-0.103940pt;}
.ls16_c00137{letter-spacing:-0.093546pt;}
.lsf_c00137{letter-spacing:-0.072758pt;}
.lse_c00137{letter-spacing:-0.067217pt;}
.ls15_c00137{letter-spacing:-0.062364pt;}
.ls7_c00137{letter-spacing:-0.056016pt;}
.ls19_c00137{letter-spacing:-0.031182pt;}
.lsb_c00137{letter-spacing:-0.031120pt;}
.lsd_c00137{letter-spacing:-0.024896pt;}
.ls10_c00137{letter-spacing:-0.020788pt;}
.lsa_c00137{letter-spacing:-0.018672pt;}
.ls1a_c00137{letter-spacing:-0.015591pt;}
.lsc_c00137{letter-spacing:-0.012448pt;}
.ls1d_c00137{letter-spacing:-0.010394pt;}
.ls9_c00137{letter-spacing:-0.006224pt;}
.ls8_c00137{letter-spacing:0.000000pt;}
.ls0_c00137{letter-spacing:0.006224pt;}
.ls5_c00137{letter-spacing:0.012448pt;}
.ls1_c00137{letter-spacing:0.018672pt;}
.ls4_c00137{letter-spacing:0.020694pt;}
.ls11_c00137{letter-spacing:0.020788pt;}
.ls6_c00137{letter-spacing:0.024896pt;}
.ls2_c00137{letter-spacing:0.031120pt;}
.ls3_c00137{letter-spacing:0.080912pt;}
.ls1c_c00137{letter-spacing:0.218275pt;}
.ws3_c00137{word-spacing:-51.970133pt;}
.ws1_c00137{word-spacing:-17.284048pt;}
.ws4_c00137{word-spacing:-14.395727pt;}
.ws0_c00137{word-spacing:-11.526781pt;}
.ws2_c00137{word-spacing:-9.242347pt;}
.ws24_c00137{word-spacing:-0.306624pt;}
.ws2e_c00137{word-spacing:-0.207881pt;}
.wsd_c00137{word-spacing:-0.093360pt;}
.ws1f_c00137{word-spacing:-0.018672pt;}
.ws5_c00137{word-spacing:0.000000pt;}
.ws2f_c00137{word-spacing:0.020788pt;}
.ws2d_c00137{word-spacing:0.291033pt;}
.wsf_c00137{word-spacing:0.292528pt;}
.ws8_c00137{word-spacing:0.311200pt;}
.ws14_c00137{word-spacing:0.336096pt;}
.ws25_c00137{word-spacing:0.639233pt;}
.ws26_c00137{word-spacing:1.673438pt;}
.ws27_c00137{word-spacing:2.026835pt;}
.wsc_c00137{word-spacing:2.545616pt;}
.wsb_c00137{word-spacing:2.564288pt;}
.ws2c_c00137{word-spacing:4.188793pt;}
.ws2b_c00137{word-spacing:4.521402pt;}
.ws1e_c00137{word-spacing:4.804928pt;}
.ws11_c00137{word-spacing:5.109904pt;}
.ws10_c00137{word-spacing:5.116128pt;}
.ws19_c00137{word-spacing:5.433552pt;}
.ws1a_c00137{word-spacing:6.398272pt;}
.ws15_c00137{word-spacing:6.728144pt;}
.ws1c_c00137{word-spacing:7.375440pt;}
.ws1b_c00137{word-spacing:7.381664pt;}
.ws7_c00137{word-spacing:8.607792pt;}
.ws6_c00137{word-spacing:8.620240pt;}
.ws21_c00137{word-spacing:8.990833pt;}
.ws20_c00137{word-spacing:9.042803pt;}
.ws23_c00137{word-spacing:9.073985pt;}
.ws22_c00137{word-spacing:9.203911pt;}
.ws16_c00137{word-spacing:9.927280pt;}
.ws17_c00137{word-spacing:9.933504pt;}
.ws29_c00137{word-spacing:22.009351pt;}
.ws28_c00137{word-spacing:22.045731pt;}
.ws2a_c00137{word-spacing:22.186050pt;}
.wse_c00137{word-spacing:22.711376pt;}
.ws13_c00137{word-spacing:25.561968pt;}
.ws12_c00137{word-spacing:25.586864pt;}
.ws9_c00137{word-spacing:30.678096pt;}
.wsa_c00137{word-spacing:31.020416pt;}
.ws1d_c00137{word-spacing:31.039088pt;}
.ws18_c00137{word-spacing:36.783840pt;}
._3_c00137{margin-left:-2.409392pt;}
._0_c00137{margin-left:-1.008288pt;}
._1_c00137{width:1.157664pt;}
._2_c00137{width:5.271728pt;}
._4_c00137{width:8.380121pt;}
.fs2_c00137{font-size:33.608533pt;}
.fs1_c00137{font-size:41.388800pt;}
.fs3_c00137{font-size:51.970133pt;}
.fs0_c00137{font-size:62.240000pt;}
.y0_c00137{bottom:0.000000pt;}
.y2_c00137{bottom:97.547527pt;}
.y1_c00137{bottom:115.387067pt;}
.y23_c00137{bottom:136.107200pt;}
.y22_c00137{bottom:148.665960pt;}
.y21_c00137{bottom:164.666265pt;}
.y20_c00137{bottom:180.506762pt;}
.y1f_c00137{bottom:199.707067pt;}
.y1e_c00137{bottom:215.627067pt;}
.y1d_c00137{bottom:228.186762pt;}
.y1c_c00137{bottom:247.467067pt;}
.y1b_c00137{bottom:260.507063pt;}
.y1a_c00137{bottom:351.546747pt;}
.y19_c00137{bottom:378.426647pt;}
.y18_c00137{bottom:405.306547pt;}
.y17_c00137{bottom:432.107091pt;}
.y16_c00137{bottom:477.146203pt;}
.y15_c00137{bottom:504.026103pt;}
.y14_c00137{bottom:530.745735pt;}
.y13_c00137{bottom:557.625635pt;}
.y12_c00137{bottom:584.426179pt;}
.y11_c00137{bottom:611.306079pt;}
.y10_c00137{bottom:638.106623pt;}
.yf_c00137{bottom:664.986523pt;}
.ye_c00137{bottom:691.786379pt;}
.yd_c00137{bottom:718.666279pt;}
.yc_c00137{bottom:745.466823pt;}
.yb_c00137{bottom:772.346723pt;}
.ya_c00137{bottom:799.147267pt;}
.y9_c00137{bottom:826.027167pt;}
.y8_c00137{bottom:852.906171pt;}
.y7_c00137{bottom:879.706715pt;}
.y6_c00137{bottom:906.586615pt;}
.y5_c00137{bottom:933.387159pt;}
.y4_c00137{bottom:960.267059pt;}
.y3_c00137{bottom:987.067603pt;}
.ha_c00137{height:34.967066pt;}
.h7_c00137{height:34.967599pt;}
.h9_c00137{height:35.287599pt;}
.h8_c00137{height:48.087599pt;}
.h2_c00137{height:55.645234pt;}
.h1_c00137{height:55.797187pt;}
.h6_c00137{height:65.485179pt;}
.h3_c00137{height:65.486950pt;}
.h4_c00137{height:65.907698pt;}
.h5_c00137{height:65.907869pt;}
.h0_c00137{height:1122.666667pt;}
.w0_c00137{width:793.333333pt;}
.x0_c00137{left:0.000000pt;}
.x2_c00137{left:73.520052pt;}
.x1_c00137{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d215f393f24e5bef58b1a3bc.woff2')format("woff");}.ff1_c00138{font-family:ff1_c00138;line-height:1.106934;font-style:normal;font-weight:normal;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_18c167fe310e711903d290e6.woff2')format("woff");}.ff2_c00138{font-family:ff2_c00138;line-height:1.104492;font-style:normal;font-weight:normal;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_8db1607cd51e7fa0626c08e6.woff2')format("woff");}.ff3_c00138{font-family:ff3_c00138;line-height:1.133301;font-style:normal;font-weight:normal;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_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff4_c00138{font-family:ff4_c00138;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00138;src:url('chunks/assets/font_5491a7594c7b610f92ec6611.woff2')format("woff");}.ff5_c00138{font-family:ff5_c00138;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00138{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00138{vertical-align:-14.760600px;}
.v0_c00138{vertical-align:0.000000px;}
.v1_c00138{vertical-align:32.051958px;}
.ls12_c00138{letter-spacing:-0.344952px;}
.ls14_c00138{letter-spacing:-0.146166px;}
.lsf_c00138{letter-spacing:-0.075619px;}
.lse_c00138{letter-spacing:-0.070020px;}
.ls5_c00138{letter-spacing:-0.063018px;}
.ls7_c00138{letter-spacing:-0.056016px;}
.lsd_c00138{letter-spacing:-0.049014px;}
.lsa_c00138{letter-spacing:-0.035010px;}
.ls13_c00138{letter-spacing:-0.029233px;}
.ls8_c00138{letter-spacing:-0.028008px;}
.ls9_c00138{letter-spacing:-0.021006px;}
.lsb_c00138{letter-spacing:-0.014004px;}
.lsc_c00138{letter-spacing:-0.007002px;}
.ls6_c00138{letter-spacing:0.000000px;}
.ls1_c00138{letter-spacing:0.014004px;}
.ls2_c00138{letter-spacing:0.023281px;}
.ls4_c00138{letter-spacing:0.042012px;}
.ls0_c00138{letter-spacing:0.056016px;}
.ls11_c00138{letter-spacing:0.210479px;}
.ls15_c00138{letter-spacing:0.304025px;}
.ls10_c00138{letter-spacing:0.374185px;}
.ls3_c00138{letter-spacing:8.612460px;}
.sc__c00138{text-shadow:none;}
.sc0_c00138{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00138{-webkit-text-stroke:0px transparent;}
.sc0_c00138{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00138{word-spacing:-58.466400px;}
.ws1_c00138{word-spacing:-19.465560px;}
.ws0_c00138{word-spacing:-12.967628px;}
.ws2_c00138{word-spacing:-10.397640px;}
.ws2b_c00138{word-spacing:-0.344952px;}
.wsf_c00138{word-spacing:-0.007002px;}
.ws4_c00138{word-spacing:0.000000px;}
.ws8_c00138{word-spacing:0.014004px;}
.ws14_c00138{word-spacing:0.021006px;}
.ws15_c00138{word-spacing:0.378108px;}
.ws19_c00138{word-spacing:0.392112px;}
.ws1f_c00138{word-spacing:0.413118px;}
.ws18_c00138{word-spacing:0.707202px;}
.ws1b_c00138{word-spacing:0.721206px;}
.ws1c_c00138{word-spacing:1.092312px;}
.ws1a_c00138{word-spacing:1.099314px;}
.ws7_c00138{word-spacing:1.813518px;}
.ws6_c00138{word-spacing:1.841526px;}
.ws9_c00138{word-spacing:2.506716px;}
.wsa_c00138{word-spacing:2.527722px;}
.ws20_c00138{word-spacing:2.877822px;}
.ws17_c00138{word-spacing:4.334238px;}
.ws16_c00138{word-spacing:4.684338px;}
.ws1e_c00138{word-spacing:5.062446px;}
.ws5_c00138{word-spacing:6.462846px;}
.ws1d_c00138{word-spacing:8.647470px;}
.ws2a_c00138{word-spacing:8.711494px;}
.ws29_c00138{word-spacing:9.161685px;}
.wsc_c00138{word-spacing:10.460988px;}
.ws13_c00138{word-spacing:10.790082px;}
.wsb_c00138{word-spacing:10.818090px;}
.ws26_c00138{word-spacing:11.161236px;}
.ws27_c00138{word-spacing:11.324942px;}
.ws28_c00138{word-spacing:11.564654px;}
.wse_c00138{word-spacing:17.568018px;}
.wsd_c00138{word-spacing:17.638038px;}
.ws23_c00138{word-spacing:19.794654px;}
.ws22_c00138{word-spacing:20.102742px;}
.ws21_c00138{word-spacing:20.158758px;}
.ws11_c00138{word-spacing:21.209058px;}
.ws10_c00138{word-spacing:21.594168px;}
.ws25_c00138{word-spacing:24.093882px;}
.ws24_c00138{word-spacing:24.492996px;}
.ws12_c00138{word-spacing:37.096596px;}
._3_c00138{margin-left:-37.572732px;}
._2_c00138{margin-left:-36.396396px;}
._4_c00138{margin-left:-10.958130px;}
._5_c00138{margin-left:-2.877822px;}
._1_c00138{margin-left:-1.218348px;}
._0_c00138{width:1.561446px;}
._6_c00138{width:5.930694px;}
._7_c00138{width:10.970591px;}
.fc0_c00138{color:rgb(0,0,0);}
.fs2_c00138{font-size:37.809600px;}
.fs1_c00138{font-size:46.562400px;}
.fs3_c00138{font-size:58.466400px;}
.fs0_c00138{font-size:70.020000px;}
.y0_c00138{bottom:0.000000px;}
.y2_c00138{bottom:109.740968px;}
.y1_c00138{bottom:129.810450px;}
.y21_c00138{bottom:169.860450px;}
.y20_c00138{bottom:187.770450px;}
.y1f_c00138{bottom:209.280600px;}
.y1e_c00138{bottom:244.380164px;}
.y1d_c00138{bottom:284.610155px;}
.y1c_c00138{bottom:314.760767px;}
.y1b_c00138{bottom:345.000654px;}
.y1a_c00138{bottom:375.151266px;}
.y19_c00138{bottom:405.391154px;}
.y18_c00138{bottom:455.880825px;}
.y17_c00138{bottom:486.120713px;}
.y16_c00138{bottom:516.357611px;}
.y15_c00138{bottom:546.508223px;}
.y14_c00138{bottom:576.748110px;}
.y13_c00138{bottom:606.898722px;}
.y12_c00138{bottom:637.138610px;}
.y11_c00138{bottom:667.198196px;}
.y10_c00138{bottom:717.868169px;}
.yf_c00138{bottom:748.108056px;}
.ye_c00138{bottom:778.258668px;}
.yd_c00138{bottom:808.498556px;}
.yc_c00138{bottom:838.649168px;}
.yb_c00138{bottom:868.889055px;}
.ya_c00138{bottom:899.039667px;}
.y9_c00138{bottom:929.279555px;}
.y8_c00138{bottom:959.519442px;}
.y7_c00138{bottom:989.670054px;}
.y6_c00138{bottom:1019.909942px;}
.y5_c00138{bottom:1050.060553px;}
.y4_c00138{bottom:1080.300441px;}
.y3_c00138{bottom:1110.451053px;}
.h5_c00138{height:39.337949px;}
.h6_c00138{height:54.098549px;}
.h2_c00138{height:62.600889px;}
.h1_c00138{height:62.771836px;}
.h4_c00138{height:62.772982px;}
.h3_c00138{height:73.680744px;}
.h0_c00138{height:1263.000000px;}
.w0_c00138{width:892.500000px;}
.x0_c00138{left:0.000000px;}
.x2_c00138{left:82.710059px;}
.x1_c00138{left:431.730000px;}
@media print{
.v2_c00138{vertical-align:-13.120533pt;}
.v0_c00138{vertical-align:0.000000pt;}
.v1_c00138{vertical-align:28.490629pt;}
.ls12_c00138{letter-spacing:-0.306624pt;}
.ls14_c00138{letter-spacing:-0.129925pt;}
.lsf_c00138{letter-spacing:-0.067217pt;}
.lse_c00138{letter-spacing:-0.062240pt;}
.ls5_c00138{letter-spacing:-0.056016pt;}
.ls7_c00138{letter-spacing:-0.049792pt;}
.lsd_c00138{letter-spacing:-0.043568pt;}
.lsa_c00138{letter-spacing:-0.031120pt;}
.ls13_c00138{letter-spacing:-0.025985pt;}
.ls8_c00138{letter-spacing:-0.024896pt;}
.ls9_c00138{letter-spacing:-0.018672pt;}
.lsb_c00138{letter-spacing:-0.012448pt;}
.lsc_c00138{letter-spacing:-0.006224pt;}
.ls6_c00138{letter-spacing:0.000000pt;}
.ls1_c00138{letter-spacing:0.012448pt;}
.ls2_c00138{letter-spacing:0.020694pt;}
.ls4_c00138{letter-spacing:0.037344pt;}
.ls0_c00138{letter-spacing:0.049792pt;}
.ls11_c00138{letter-spacing:0.187092pt;}
.ls15_c00138{letter-spacing:0.270245pt;}
.ls10_c00138{letter-spacing:0.332609pt;}
.ls3_c00138{letter-spacing:7.655520pt;}
.ws3_c00138{word-spacing:-51.970133pt;}
.ws1_c00138{word-spacing:-17.302720pt;}
.ws0_c00138{word-spacing:-11.526781pt;}
.ws2_c00138{word-spacing:-9.242347pt;}
.ws2b_c00138{word-spacing:-0.306624pt;}
.wsf_c00138{word-spacing:-0.006224pt;}
.ws4_c00138{word-spacing:0.000000pt;}
.ws8_c00138{word-spacing:0.012448pt;}
.ws14_c00138{word-spacing:0.018672pt;}
.ws15_c00138{word-spacing:0.336096pt;}
.ws19_c00138{word-spacing:0.348544pt;}
.ws1f_c00138{word-spacing:0.367216pt;}
.ws18_c00138{word-spacing:0.628624pt;}
.ws1b_c00138{word-spacing:0.641072pt;}
.ws1c_c00138{word-spacing:0.970944pt;}
.ws1a_c00138{word-spacing:0.977168pt;}
.ws7_c00138{word-spacing:1.612016pt;}
.ws6_c00138{word-spacing:1.636912pt;}
.ws9_c00138{word-spacing:2.228192pt;}
.wsa_c00138{word-spacing:2.246864pt;}
.ws20_c00138{word-spacing:2.558064pt;}
.ws17_c00138{word-spacing:3.852656pt;}
.ws16_c00138{word-spacing:4.163856pt;}
.ws1e_c00138{word-spacing:4.499952pt;}
.ws5_c00138{word-spacing:5.744752pt;}
.ws1d_c00138{word-spacing:7.686640pt;}
.ws2a_c00138{word-spacing:7.743550pt;}
.ws29_c00138{word-spacing:8.143720pt;}
.wsc_c00138{word-spacing:9.298656pt;}
.ws13_c00138{word-spacing:9.591184pt;}
.wsb_c00138{word-spacing:9.616080pt;}
.ws26_c00138{word-spacing:9.921098pt;}
.ws27_c00138{word-spacing:10.066615pt;}
.ws28_c00138{word-spacing:10.279692pt;}
.wse_c00138{word-spacing:15.616016pt;}
.wsd_c00138{word-spacing:15.678256pt;}
.ws23_c00138{word-spacing:17.595248pt;}
.ws22_c00138{word-spacing:17.869104pt;}
.ws21_c00138{word-spacing:17.918896pt;}
.ws11_c00138{word-spacing:18.852496pt;}
.ws10_c00138{word-spacing:19.194816pt;}
.ws25_c00138{word-spacing:21.416784pt;}
.ws24_c00138{word-spacing:21.771552pt;}
.ws12_c00138{word-spacing:32.974752pt;}
._3_c00138{margin-left:-33.397984pt;}
._2_c00138{margin-left:-32.352352pt;}
._4_c00138{margin-left:-9.740560pt;}
._5_c00138{margin-left:-2.558064pt;}
._1_c00138{margin-left:-1.082976pt;}
._0_c00138{width:1.387952pt;}
._6_c00138{width:5.271728pt;}
._7_c00138{width:9.751636pt;}
.fs2_c00138{font-size:33.608533pt;}
.fs1_c00138{font-size:41.388800pt;}
.fs3_c00138{font-size:51.970133pt;}
.fs0_c00138{font-size:62.240000pt;}
.y0_c00138{bottom:0.000000pt;}
.y2_c00138{bottom:97.547527pt;}
.y1_c00138{bottom:115.387067pt;}
.y21_c00138{bottom:150.987067pt;}
.y20_c00138{bottom:166.907067pt;}
.y1f_c00138{bottom:186.027200pt;}
.y1e_c00138{bottom:217.226812pt;}
.y1d_c00138{bottom:252.986804pt;}
.y1c_c00138{bottom:279.787348pt;}
.y1b_c00138{bottom:306.667248pt;}
.y1a_c00138{bottom:333.467792pt;}
.y19_c00138{bottom:360.347692pt;}
.y18_c00138{bottom:405.227400pt;}
.y17_c00138{bottom:432.107300pt;}
.y16_c00138{bottom:458.984543pt;}
.y15_c00138{bottom:485.785087pt;}
.y14_c00138{bottom:512.664987pt;}
.y13_c00138{bottom:539.465531pt;}
.y12_c00138{bottom:566.345431pt;}
.y11_c00138{bottom:593.065063pt;}
.y10_c00138{bottom:638.105039pt;}
.yf_c00138{bottom:664.984939pt;}
.ye_c00138{bottom:691.785483pt;}
.yd_c00138{bottom:718.665383pt;}
.yc_c00138{bottom:745.465927pt;}
.yb_c00138{bottom:772.345827pt;}
.ya_c00138{bottom:799.146371pt;}
.y9_c00138{bottom:826.026271pt;}
.y8_c00138{bottom:852.906171pt;}
.y7_c00138{bottom:879.706715pt;}
.y6_c00138{bottom:906.586615pt;}
.y5_c00138{bottom:933.387159pt;}
.y4_c00138{bottom:960.267059pt;}
.y3_c00138{bottom:987.067603pt;}
.h5_c00138{height:34.967066pt;}
.h6_c00138{height:48.087599pt;}
.h2_c00138{height:55.645234pt;}
.h1_c00138{height:55.797187pt;}
.h4_c00138{height:55.798206pt;}
.h3_c00138{height:65.493995pt;}
.h0_c00138{height:1122.666667pt;}
.w0_c00138{width:793.333333pt;}
.x0_c00138{left:0.000000pt;}
.x2_c00138{left:73.520052pt;}
.x1_c00138{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_67cd6b0fd299f57df3deecdf.woff2')format("woff");}.ff1_c00139{font-family:ff1_c00139;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00139;src:url('chunks/assets/font_d47991f13a37cd5cfbd12e33.woff2')format("woff");}.ff2_c00139{font-family:ff2_c00139;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00139;src:url('chunks/assets/font_e10f3dc0dac57827fed85283.woff2')format("woff");}.ff3_c00139{font-family:ff3_c00139;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00139;src:url('chunks/assets/font_f3bc45f69efcd82d67b8aa13.woff2')format("woff");}.ff4_c00139{font-family:ff4_c00139;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00139;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff5_c00139{font-family:ff5_c00139;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00139;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff6_c00139{font-family:ff6_c00139;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00139{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00139{vertical-align:-14.760600px;}
.v0_c00139{vertical-align:0.000000px;}
.v1_c00139{vertical-align:32.045580px;}
.ls1b_c00139{letter-spacing:-0.286485px;}
.ls1e_c00139{letter-spacing:-0.175399px;}
.ls1d_c00139{letter-spacing:-0.157859px;}
.ls17_c00139{letter-spacing:-0.140319px;}
.ls1c_c00139{letter-spacing:-0.105240px;}
.ls19_c00139{letter-spacing:-0.087700px;}
.ls11_c00139{letter-spacing:-0.077022px;}
.ls14_c00139{letter-spacing:-0.075619px;}
.ls13_c00139{letter-spacing:-0.070020px;}
.ls7_c00139{letter-spacing:-0.063018px;}
.lsb_c00139{letter-spacing:-0.049014px;}
.ls10_c00139{letter-spacing:-0.042012px;}
.lsc_c00139{letter-spacing:-0.035010px;}
.ls1a_c00139{letter-spacing:-0.029233px;}
.lse_c00139{letter-spacing:-0.028008px;}
.lsa_c00139{letter-spacing:-0.021006px;}
.ls9_c00139{letter-spacing:-0.014004px;}
.ls1f_c00139{letter-spacing:-0.011693px;}
.lsf_c00139{letter-spacing:-0.007002px;}
.ls16_c00139{letter-spacing:-0.005847px;}
.ls8_c00139{letter-spacing:0.000000px;}
.ls0_c00139{letter-spacing:0.007002px;}
.ls3_c00139{letter-spacing:0.014004px;}
.ls4_c00139{letter-spacing:0.021006px;}
.ls1_c00139{letter-spacing:0.023281px;}
.ls6_c00139{letter-spacing:0.035080px;}
.ls15_c00139{letter-spacing:0.076006px;}
.ls18_c00139{letter-spacing:0.081853px;}
.ls2_c00139{letter-spacing:0.336096px;}
.ls12_c00139{letter-spacing:0.343098px;}
.ls5_c00139{letter-spacing:0.362492px;}
.lsd_c00139{letter-spacing:0.441126px;}
.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;}
}
.ws5_c00139{word-spacing:-58.466400px;}
.ws0_c00139{word-spacing:-19.906686px;}
.ws2_c00139{word-spacing:-19.808658px;}
.ws4_c00139{word-spacing:-16.189346px;}
.ws6_c00139{word-spacing:-16.107493px;}
.ws1_c00139{word-spacing:-12.967628px;}
.ws3_c00139{word-spacing:-10.397640px;}
.ws2e_c00139{word-spacing:-0.333258px;}
.ws2b_c00139{word-spacing:-0.023387px;}
.ws7_c00139{word-spacing:0.000000px;}
.ws11_c00139{word-spacing:0.021006px;}
.ws1d_c00139{word-spacing:0.063018px;}
.ws2a_c00139{word-spacing:0.116933px;}
.ws29_c00139{word-spacing:0.298179px;}
.ws15_c00139{word-spacing:0.350100px;}
.ws1a_c00139{word-spacing:0.357102px;}
.ws14_c00139{word-spacing:1.421406px;}
.wsb_c00139{word-spacing:1.442412px;}
.ws16_c00139{word-spacing:1.827522px;}
.ws10_c00139{word-spacing:3.634038px;}
.ws26_c00139{word-spacing:4.975491px;}
.ws27_c00139{word-spacing:5.191816px;}
.ws28_c00139{word-spacing:5.443222px;}
.ws13_c00139{word-spacing:7.198056px;}
.ws18_c00139{word-spacing:7.548156px;}
.ws17_c00139{word-spacing:7.562160px;}
.ws22_c00139{word-spacing:8.269362px;}
.ws23_c00139{word-spacing:8.290368px;}
.ws25_c00139{word-spacing:9.053586px;}
.ws24_c00139{word-spacing:9.340668px;}
.ws1e_c00139{word-spacing:10.068876px;}
.ws1c_c00139{word-spacing:11.518290px;}
.ws20_c00139{word-spacing:12.575592px;}
.wsa_c00139{word-spacing:12.582594px;}
.ws9_c00139{word-spacing:12.589596px;}
.ws1f_c00139{word-spacing:12.953700px;}
.ws12_c00139{word-spacing:12.974706px;}
.wse_c00139{word-spacing:13.681908px;}
.wsf_c00139{word-spacing:13.688910px;}
.wsc_c00139{word-spacing:14.053014px;}
.wsd_c00139{word-spacing:14.417118px;}
.ws21_c00139{word-spacing:15.803514px;}
.ws19_c00139{word-spacing:16.916832px;}
.ws8_c00139{word-spacing:24.478992px;}
.ws1b_c00139{word-spacing:33.126462px;}
.ws2d_c00139{word-spacing:38.348112px;}
.ws2c_c00139{word-spacing:38.693064px;}
._3_c00139{margin-left:-2.708460px;}
._1_c00139{margin-left:-1.211346px;}
._0_c00139{width:1.260360px;}
._2_c00139{width:5.930694px;}
.fc0_c00139{color:rgb(0,0,0);}
.fs2_c00139{font-size:37.809600px;}
.fs1_c00139{font-size:46.562400px;}
.fs3_c00139{font-size:58.466400px;}
.fs0_c00139{font-size:70.020000px;}
.y0_c00139{bottom:0.000000px;}
.y2_c00139{bottom:109.740968px;}
.y1_c00139{bottom:129.810450px;}
.y21_c00139{bottom:149.429891px;}
.y20_c00139{bottom:170.940450px;}
.y1f_c00139{bottom:205.590450px;}
.y1e_c00139{bottom:227.280600px;}
.y1d_c00139{bottom:241.860357px;}
.y1c_c00139{bottom:314.759929px;}
.y1b_c00139{bottom:344.999817px;}
.y1a_c00139{bottom:375.150429px;}
.y19_c00139{bottom:405.390317px;}
.y18_c00139{bottom:435.540928px;}
.y17_c00139{bottom:486.029843px;}
.y16_c00139{bottom:516.359005px;}
.y15_c00139{bottom:546.509617px;}
.y14_c00139{bottom:576.749505px;}
.y13_c00139{bottom:606.900117px;}
.y12_c00139{bottom:637.140005px;}
.y11_c00139{bottom:667.199590px;}
.y10_c00139{bottom:717.869563px;}
.yf_c00139{bottom:748.109451px;}
.ye_c00139{bottom:778.260063px;}
.yd_c00139{bottom:808.499950px;}
.yc_c00139{bottom:838.650562px;}
.yb_c00139{bottom:868.889055px;}
.ya_c00139{bottom:899.039667px;}
.y9_c00139{bottom:929.279555px;}
.y8_c00139{bottom:959.519442px;}
.y7_c00139{bottom:989.670054px;}
.y6_c00139{bottom:1019.909942px;}
.y5_c00139{bottom:1050.060553px;}
.y4_c00139{bottom:1080.300441px;}
.y3_c00139{bottom:1110.451053px;}
.h6_c00139{height:39.337949px;}
.h8_c00139{height:39.338549px;}
.h7_c00139{height:54.098549px;}
.h2_c00139{height:62.600889px;}
.h1_c00139{height:62.771836px;}
.h5_c00139{height:62.772808px;}
.h3_c00139{height:73.788044px;}
.h4_c00139{height:74.144894px;}
.h0_c00139{height:1263.000000px;}
.w0_c00139{width:892.500000px;}
.x0_c00139{left:0.000000px;}
.x2_c00139{left:82.710059px;}
.x1_c00139{left:431.730000px;}
@media print{
.v2_c00139{vertical-align:-13.120533pt;}
.v0_c00139{vertical-align:0.000000pt;}
.v1_c00139{vertical-align:28.484960pt;}
.ls1b_c00139{letter-spacing:-0.254654pt;}
.ls1e_c00139{letter-spacing:-0.155910pt;}
.ls1d_c00139{letter-spacing:-0.140319pt;}
.ls17_c00139{letter-spacing:-0.124728pt;}
.ls1c_c00139{letter-spacing:-0.093546pt;}
.ls19_c00139{letter-spacing:-0.077955pt;}
.ls11_c00139{letter-spacing:-0.068464pt;}
.ls14_c00139{letter-spacing:-0.067217pt;}
.ls13_c00139{letter-spacing:-0.062240pt;}
.ls7_c00139{letter-spacing:-0.056016pt;}
.lsb_c00139{letter-spacing:-0.043568pt;}
.ls10_c00139{letter-spacing:-0.037344pt;}
.lsc_c00139{letter-spacing:-0.031120pt;}
.ls1a_c00139{letter-spacing:-0.025985pt;}
.lse_c00139{letter-spacing:-0.024896pt;}
.lsa_c00139{letter-spacing:-0.018672pt;}
.ls9_c00139{letter-spacing:-0.012448pt;}
.ls1f_c00139{letter-spacing:-0.010394pt;}
.lsf_c00139{letter-spacing:-0.006224pt;}
.ls16_c00139{letter-spacing:-0.005197pt;}
.ls8_c00139{letter-spacing:0.000000pt;}
.ls0_c00139{letter-spacing:0.006224pt;}
.ls3_c00139{letter-spacing:0.012448pt;}
.ls4_c00139{letter-spacing:0.018672pt;}
.ls1_c00139{letter-spacing:0.020694pt;}
.ls6_c00139{letter-spacing:0.031182pt;}
.ls15_c00139{letter-spacing:0.067561pt;}
.ls18_c00139{letter-spacing:0.072758pt;}
.ls2_c00139{letter-spacing:0.298752pt;}
.ls12_c00139{letter-spacing:0.304976pt;}
.ls5_c00139{letter-spacing:0.322215pt;}
.lsd_c00139{letter-spacing:0.392112pt;}
.ws5_c00139{word-spacing:-51.970133pt;}
.ws0_c00139{word-spacing:-17.694832pt;}
.ws2_c00139{word-spacing:-17.607696pt;}
.ws4_c00139{word-spacing:-14.390530pt;}
.ws6_c00139{word-spacing:-14.317772pt;}
.ws1_c00139{word-spacing:-11.526781pt;}
.ws3_c00139{word-spacing:-9.242347pt;}
.ws2e_c00139{word-spacing:-0.296230pt;}
.ws2b_c00139{word-spacing:-0.020788pt;}
.ws7_c00139{word-spacing:0.000000pt;}
.ws11_c00139{word-spacing:0.018672pt;}
.ws1d_c00139{word-spacing:0.056016pt;}
.ws2a_c00139{word-spacing:0.103940pt;}
.ws29_c00139{word-spacing:0.265048pt;}
.ws15_c00139{word-spacing:0.311200pt;}
.ws1a_c00139{word-spacing:0.317424pt;}
.ws14_c00139{word-spacing:1.263472pt;}
.wsb_c00139{word-spacing:1.282144pt;}
.ws16_c00139{word-spacing:1.624464pt;}
.ws10_c00139{word-spacing:3.230256pt;}
.ws26_c00139{word-spacing:4.422658pt;}
.ws27_c00139{word-spacing:4.614948pt;}
.ws28_c00139{word-spacing:4.838419pt;}
.ws13_c00139{word-spacing:6.398272pt;}
.ws18_c00139{word-spacing:6.709472pt;}
.ws17_c00139{word-spacing:6.721920pt;}
.ws22_c00139{word-spacing:7.350544pt;}
.ws23_c00139{word-spacing:7.369216pt;}
.ws25_c00139{word-spacing:8.047632pt;}
.ws24_c00139{word-spacing:8.302816pt;}
.ws1e_c00139{word-spacing:8.950112pt;}
.ws1c_c00139{word-spacing:10.238480pt;}
.ws20_c00139{word-spacing:11.178304pt;}
.wsa_c00139{word-spacing:11.184528pt;}
.ws9_c00139{word-spacing:11.190752pt;}
.ws1f_c00139{word-spacing:11.514400pt;}
.ws12_c00139{word-spacing:11.533072pt;}
.wse_c00139{word-spacing:12.161696pt;}
.wsf_c00139{word-spacing:12.167920pt;}
.wsc_c00139{word-spacing:12.491568pt;}
.wsd_c00139{word-spacing:12.815216pt;}
.ws21_c00139{word-spacing:14.047568pt;}
.ws19_c00139{word-spacing:15.037184pt;}
.ws8_c00139{word-spacing:21.759104pt;}
.ws1b_c00139{word-spacing:29.445744pt;}
.ws2d_c00139{word-spacing:34.087210pt;}
.ws2c_c00139{word-spacing:34.393834pt;}
._3_c00139{margin-left:-2.407520pt;}
._1_c00139{margin-left:-1.076752pt;}
._0_c00139{width:1.120320pt;}
._2_c00139{width:5.271728pt;}
.fs2_c00139{font-size:33.608533pt;}
.fs1_c00139{font-size:41.388800pt;}
.fs3_c00139{font-size:51.970133pt;}
.fs0_c00139{font-size:62.240000pt;}
.y0_c00139{bottom:0.000000pt;}
.y2_c00139{bottom:97.547527pt;}
.y1_c00139{bottom:115.387067pt;}
.y21_c00139{bottom:132.826570pt;}
.y20_c00139{bottom:151.947067pt;}
.y1f_c00139{bottom:182.747067pt;}
.y1e_c00139{bottom:202.027200pt;}
.y1d_c00139{bottom:214.986984pt;}
.y1c_c00139{bottom:279.786604pt;}
.y1b_c00139{bottom:306.666504pt;}
.y1a_c00139{bottom:333.467048pt;}
.y19_c00139{bottom:360.346948pt;}
.y18_c00139{bottom:387.147492pt;}
.y17_c00139{bottom:432.026527pt;}
.y16_c00139{bottom:458.985783pt;}
.y15_c00139{bottom:485.786327pt;}
.y14_c00139{bottom:512.666227pt;}
.y13_c00139{bottom:539.466771pt;}
.y12_c00139{bottom:566.346671pt;}
.y11_c00139{bottom:593.066303pt;}
.y10_c00139{bottom:638.106279pt;}
.yf_c00139{bottom:664.986179pt;}
.ye_c00139{bottom:691.786723pt;}
.yd_c00139{bottom:718.666623pt;}
.yc_c00139{bottom:745.467167pt;}
.yb_c00139{bottom:772.345827pt;}
.ya_c00139{bottom:799.146371pt;}
.y9_c00139{bottom:826.026271pt;}
.y8_c00139{bottom:852.906171pt;}
.y7_c00139{bottom:879.706715pt;}
.y6_c00139{bottom:906.586615pt;}
.y5_c00139{bottom:933.387159pt;}
.y4_c00139{bottom:960.267059pt;}
.y3_c00139{bottom:987.067603pt;}
.h6_c00139{height:34.967066pt;}
.h8_c00139{height:34.967599pt;}
.h7_c00139{height:48.087599pt;}
.h2_c00139{height:55.645234pt;}
.h1_c00139{height:55.797187pt;}
.h5_c00139{height:55.798051pt;}
.h3_c00139{height:65.589373pt;}
.h4_c00139{height:65.906572pt;}
.h0_c00139{height:1122.666667pt;}
.w0_c00139{width:793.333333pt;}
.x0_c00139{left:0.000000pt;}
.x2_c00139{left:73.520052pt;}
.x1_c00139{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1f767b856a1e5e4e6383173f.woff2')format("woff");}.ff1_c00140{font-family:ff1_c00140;line-height:1.106934;font-style:normal;font-weight:normal;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_f8eab1da432fb00f8a6cc6b4.woff2')format("woff");}.ff2_c00140{font-family:ff2_c00140;line-height:1.104492;font-style:normal;font-weight:normal;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_1c0b68c06daed94df929b6c2.woff2')format("woff");}.ff3_c00140{font-family:ff3_c00140;line-height:1.133301;font-style:normal;font-weight:normal;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_80dbe09b911b8c7722f5d5ce.woff2')format("woff");}.ff4_c00140{font-family:ff4_c00140;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00140{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00140{vertical-align:-14.760000px;}
.v0_c00140{vertical-align:0.000000px;}
.v1_c00140{vertical-align:32.040036px;}
.ls13_c00140{letter-spacing:-0.146166px;}
.ls11_c00140{letter-spacing:-0.075619px;}
.ls7_c00140{letter-spacing:-0.063018px;}
.ls12_c00140{letter-spacing:-0.058466px;}
.ls9_c00140{letter-spacing:-0.056016px;}
.lsd_c00140{letter-spacing:-0.049014px;}
.ls10_c00140{letter-spacing:-0.042012px;}
.ls14_c00140{letter-spacing:-0.035080px;}
.lsa_c00140{letter-spacing:-0.035010px;}
.lsf_c00140{letter-spacing:-0.028008px;}
.lsb_c00140{letter-spacing:-0.021006px;}
.lse_c00140{letter-spacing:-0.014004px;}
.lsc_c00140{letter-spacing:-0.007002px;}
.ls8_c00140{letter-spacing:0.000000px;}
.ls6_c00140{letter-spacing:0.005847px;}
.ls3_c00140{letter-spacing:0.007002px;}
.ls4_c00140{letter-spacing:0.014004px;}
.ls1_c00140{letter-spacing:0.023281px;}
.ls2_c00140{letter-spacing:0.035010px;}
.ls0_c00140{letter-spacing:0.042012px;}
.ls5_c00140{letter-spacing:10.776078px;}
.sc__c00140{text-shadow:none;}
.sc0_c00140{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00140{-webkit-text-stroke:0px transparent;}
.sc0_c00140{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00140{word-spacing:-19.430550px;}
.ws2_c00140{word-spacing:-19.416546px;}
.ws1_c00140{word-spacing:-12.967628px;}
.ws3_c00140{word-spacing:-10.397640px;}
.ws30_c00140{word-spacing:-0.344952px;}
.ws4_c00140{word-spacing:0.000000px;}
.ws31_c00140{word-spacing:0.005847px;}
.ws22_c00140{word-spacing:0.392112px;}
.ws25_c00140{word-spacing:0.714204px;}
.ws24_c00140{word-spacing:0.742212px;}
.ws21_c00140{word-spacing:1.778508px;}
.ws1f_c00140{word-spacing:2.534724px;}
.ws28_c00140{word-spacing:3.213918px;}
.ws2c_c00140{word-spacing:3.220920px;}
.ws27_c00140{word-spacing:3.234924px;}
.ws2e_c00140{word-spacing:3.759390px;}
.ws10_c00140{word-spacing:3.914118px;}
.wse_c00140{word-spacing:3.956130px;}
.wsf_c00140{word-spacing:3.998142px;}
.ws2f_c00140{word-spacing:4.010795px;}
.ws2d_c00140{word-spacing:4.034182px;}
.wsa_c00140{word-spacing:4.334238px;}
.ws1b_c00140{word-spacing:4.670334px;}
.ws1c_c00140{word-spacing:5.034438px;}
.ws20_c00140{word-spacing:5.391540px;}
.ws6_c00140{word-spacing:5.706630px;}
.ws12_c00140{word-spacing:5.741640px;}
.ws11_c00140{word-spacing:5.769648px;}
.wsb_c00140{word-spacing:5.776650px;}
.ws5_c00140{word-spacing:5.804658px;}
.ws7_c00140{word-spacing:6.847956px;}
.ws8_c00140{word-spacing:6.854958px;}
.ws23_c00140{word-spacing:7.555158px;}
.ws26_c00140{word-spacing:7.912260px;}
.ws9_c00140{word-spacing:9.011574px;}
.ws1a_c00140{word-spacing:10.117890px;}
.ws1e_c00140{word-spacing:10.769076px;}
.ws1d_c00140{word-spacing:10.790082px;}
.ws13_c00140{word-spacing:12.575592px;}
.ws14_c00140{word-spacing:12.589596px;}
.ws17_c00140{word-spacing:12.603600px;}
.ws18_c00140{word-spacing:12.624606px;}
.ws19_c00140{word-spacing:12.932694px;}
.ws29_c00140{word-spacing:14.039010px;}
.wsc_c00140{word-spacing:14.053014px;}
.wsd_c00140{word-spacing:14.396112px;}
.ws15_c00140{word-spacing:19.416546px;}
.ws16_c00140{word-spacing:19.822662px;}
.ws2b_c00140{word-spacing:20.515860px;}
.ws2a_c00140{word-spacing:20.550870px;}
._4_c00140{margin-left:-2.709144px;}
._1_c00140{margin-left:-1.071306px;}
._0_c00140{width:1.582452px;}
._2_c00140{width:4.404258px;}
._3_c00140{width:5.930694px;}
.fc0_c00140{color:rgb(0,0,0);}
.fs2_c00140{font-size:37.809600px;}
.fs1_c00140{font-size:46.562400px;}
.fs3_c00140{font-size:58.466400px;}
.fs0_c00140{font-size:70.020000px;}
.y0_c00140{bottom:0.000000px;}
.y2_c00140{bottom:109.740968px;}
.y1_c00140{bottom:129.810450px;}
.y23_c00140{bottom:153.120600px;}
.y22_c00140{bottom:176.070730px;}
.y21_c00140{bottom:197.670450px;}
.y20_c00140{bottom:212.338916px;}
.y1f_c00140{bottom:244.558618px;}
.y1e_c00140{bottom:274.798506px;}
.y1d_c00140{bottom:304.949118px;}
.y1c_c00140{bottom:335.189005px;}
.y1b_c00140{bottom:365.339617px;}
.y1a_c00140{bottom:395.579505px;}
.y19_c00140{bottom:425.730117px;}
.y18_c00140{bottom:476.400090px;}
.y17_c00140{bottom:506.639977px;}
.y16_c00140{bottom:536.790589px;}
.y15_c00140{bottom:567.030477px;}
.y14_c00140{bottom:597.090063px;}
.y13_c00140{bottom:627.329950px;}
.y12_c00140{bottom:657.480562px;}
.y11_c00140{bottom:687.717566px;}
.y10_c00140{bottom:717.868178px;}
.yf_c00140{bottom:748.108065px;}
.ye_c00140{bottom:778.258677px;}
.yd_c00140{bottom:808.498565px;}
.yc_c00140{bottom:838.649177px;}
.yb_c00140{bottom:868.889064px;}
.ya_c00140{bottom:899.039676px;}
.y9_c00140{bottom:929.279563px;}
.y8_c00140{bottom:959.519451px;}
.y7_c00140{bottom:989.670063px;}
.y6_c00140{bottom:1019.909951px;}
.y5_c00140{bottom:1050.060563px;}
.y4_c00140{bottom:1080.300441px;}
.y3_c00140{bottom:1110.451053px;}
.h8_c00140{height:39.337949px;}
.h6_c00140{height:39.338549px;}
.h7_c00140{height:54.098549px;}
.h2_c00140{height:62.600889px;}
.h1_c00140{height:62.771836px;}
.h5_c00140{height:62.777974px;}
.h3_c00140{height:73.668822px;}
.h4_c00140{height:73.680324px;}
.h0_c00140{height:1263.000000px;}
.w0_c00140{width:892.500000px;}
.x0_c00140{left:0.000000px;}
.x2_c00140{left:82.710059px;}
.x1_c00140{left:431.730000px;}
@media print{
.v2_c00140{vertical-align:-13.120000pt;}
.v0_c00140{vertical-align:0.000000pt;}
.v1_c00140{vertical-align:28.480032pt;}
.ls13_c00140{letter-spacing:-0.129925pt;}
.ls11_c00140{letter-spacing:-0.067217pt;}
.ls7_c00140{letter-spacing:-0.056016pt;}
.ls12_c00140{letter-spacing:-0.051970pt;}
.ls9_c00140{letter-spacing:-0.049792pt;}
.lsd_c00140{letter-spacing:-0.043568pt;}
.ls10_c00140{letter-spacing:-0.037344pt;}
.ls14_c00140{letter-spacing:-0.031182pt;}
.lsa_c00140{letter-spacing:-0.031120pt;}
.lsf_c00140{letter-spacing:-0.024896pt;}
.lsb_c00140{letter-spacing:-0.018672pt;}
.lse_c00140{letter-spacing:-0.012448pt;}
.lsc_c00140{letter-spacing:-0.006224pt;}
.ls8_c00140{letter-spacing:0.000000pt;}
.ls6_c00140{letter-spacing:0.005197pt;}
.ls3_c00140{letter-spacing:0.006224pt;}
.ls4_c00140{letter-spacing:0.012448pt;}
.ls1_c00140{letter-spacing:0.020694pt;}
.ls2_c00140{letter-spacing:0.031120pt;}
.ls0_c00140{letter-spacing:0.037344pt;}
.ls5_c00140{letter-spacing:9.578736pt;}
.ws0_c00140{word-spacing:-17.271600pt;}
.ws2_c00140{word-spacing:-17.259152pt;}
.ws1_c00140{word-spacing:-11.526781pt;}
.ws3_c00140{word-spacing:-9.242347pt;}
.ws30_c00140{word-spacing:-0.306624pt;}
.ws4_c00140{word-spacing:0.000000pt;}
.ws31_c00140{word-spacing:0.005197pt;}
.ws22_c00140{word-spacing:0.348544pt;}
.ws25_c00140{word-spacing:0.634848pt;}
.ws24_c00140{word-spacing:0.659744pt;}
.ws21_c00140{word-spacing:1.580896pt;}
.ws1f_c00140{word-spacing:2.253088pt;}
.ws28_c00140{word-spacing:2.856816pt;}
.ws2c_c00140{word-spacing:2.863040pt;}
.ws27_c00140{word-spacing:2.875488pt;}
.ws2e_c00140{word-spacing:3.341680pt;}
.ws10_c00140{word-spacing:3.479216pt;}
.wse_c00140{word-spacing:3.516560pt;}
.wsf_c00140{word-spacing:3.553904pt;}
.ws2f_c00140{word-spacing:3.565151pt;}
.ws2d_c00140{word-spacing:3.585939pt;}
.wsa_c00140{word-spacing:3.852656pt;}
.ws1b_c00140{word-spacing:4.151408pt;}
.ws1c_c00140{word-spacing:4.475056pt;}
.ws20_c00140{word-spacing:4.792480pt;}
.ws6_c00140{word-spacing:5.072560pt;}
.ws12_c00140{word-spacing:5.103680pt;}
.ws11_c00140{word-spacing:5.128576pt;}
.wsb_c00140{word-spacing:5.134800pt;}
.ws5_c00140{word-spacing:5.159696pt;}
.ws7_c00140{word-spacing:6.087072pt;}
.ws8_c00140{word-spacing:6.093296pt;}
.ws23_c00140{word-spacing:6.715696pt;}
.ws26_c00140{word-spacing:7.033120pt;}
.ws9_c00140{word-spacing:8.010288pt;}
.ws1a_c00140{word-spacing:8.993680pt;}
.ws1e_c00140{word-spacing:9.572512pt;}
.ws1d_c00140{word-spacing:9.591184pt;}
.ws13_c00140{word-spacing:11.178304pt;}
.ws14_c00140{word-spacing:11.190752pt;}
.ws17_c00140{word-spacing:11.203200pt;}
.ws18_c00140{word-spacing:11.221872pt;}
.ws19_c00140{word-spacing:11.495728pt;}
.ws29_c00140{word-spacing:12.479120pt;}
.wsc_c00140{word-spacing:12.491568pt;}
.wsd_c00140{word-spacing:12.796544pt;}
.ws15_c00140{word-spacing:17.259152pt;}
.ws16_c00140{word-spacing:17.620144pt;}
.ws2b_c00140{word-spacing:18.236320pt;}
.ws2a_c00140{word-spacing:18.267440pt;}
._4_c00140{margin-left:-2.408128pt;}
._1_c00140{margin-left:-0.952272pt;}
._0_c00140{width:1.406624pt;}
._2_c00140{width:3.914896pt;}
._3_c00140{width:5.271728pt;}
.fs2_c00140{font-size:33.608533pt;}
.fs1_c00140{font-size:41.388800pt;}
.fs3_c00140{font-size:51.970133pt;}
.fs0_c00140{font-size:62.240000pt;}
.y0_c00140{bottom:0.000000pt;}
.y2_c00140{bottom:97.547527pt;}
.y1_c00140{bottom:115.387067pt;}
.y23_c00140{bottom:136.107200pt;}
.y22_c00140{bottom:156.507316pt;}
.y21_c00140{bottom:175.707067pt;}
.y20_c00140{bottom:188.745703pt;}
.y1f_c00140{bottom:217.385439pt;}
.y1e_c00140{bottom:244.265339pt;}
.y1d_c00140{bottom:271.065883pt;}
.y1c_c00140{bottom:297.945783pt;}
.y1b_c00140{bottom:324.746327pt;}
.y1a_c00140{bottom:351.626227pt;}
.y19_c00140{bottom:378.426771pt;}
.y18_c00140{bottom:423.466747pt;}
.y17_c00140{bottom:450.346647pt;}
.y16_c00140{bottom:477.147191pt;}
.y15_c00140{bottom:504.027091pt;}
.y14_c00140{bottom:530.746723pt;}
.y13_c00140{bottom:557.626623pt;}
.y12_c00140{bottom:584.427167pt;}
.y11_c00140{bottom:611.304503pt;}
.y10_c00140{bottom:638.105047pt;}
.yf_c00140{bottom:664.984947pt;}
.ye_c00140{bottom:691.785491pt;}
.yd_c00140{bottom:718.665391pt;}
.yc_c00140{bottom:745.465935pt;}
.yb_c00140{bottom:772.345835pt;}
.ya_c00140{bottom:799.146379pt;}
.y9_c00140{bottom:826.026279pt;}
.y8_c00140{bottom:852.906179pt;}
.y7_c00140{bottom:879.706723pt;}
.y6_c00140{bottom:906.586623pt;}
.y5_c00140{bottom:933.387167pt;}
.y4_c00140{bottom:960.267059pt;}
.y3_c00140{bottom:987.067603pt;}
.h8_c00140{height:34.967066pt;}
.h6_c00140{height:34.967599pt;}
.h7_c00140{height:48.087599pt;}
.h2_c00140{height:55.645234pt;}
.h1_c00140{height:55.797187pt;}
.h5_c00140{height:55.802644pt;}
.h3_c00140{height:65.483398pt;}
.h4_c00140{height:65.493622pt;}
.h0_c00140{height:1122.666667pt;}
.w0_c00140{width:793.333333pt;}
.x0_c00140{left:0.000000pt;}
.x2_c00140{left:73.520052pt;}
.x1_c00140{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_53b7121964367d92f13095e7.woff2')format("woff");}.ff1_c00141{font-family:ff1_c00141;line-height:1.106934;font-style:normal;font-weight:normal;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_5afd219df2fe74ad6ec819d6.woff2')format("woff");}.ff2_c00141{font-family:ff2_c00141;line-height:1.104492;font-style:normal;font-weight:normal;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_140e0afe50ef78c4dfff0503.woff2')format("woff");}.ff3_c00141{font-family:ff3_c00141;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00141{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00141{vertical-align:-14.760000px;}
.v0_c00141{vertical-align:0.000000px;}
.v1_c00141{vertical-align:32.042682px;}
.lsc_c00141{letter-spacing:-0.075619px;}
.ls4_c00141{letter-spacing:-0.063018px;}
.ls8_c00141{letter-spacing:-0.042012px;}
.lsa_c00141{letter-spacing:-0.035010px;}
.ls6_c00141{letter-spacing:-0.028008px;}
.lsb_c00141{letter-spacing:-0.021006px;}
.ls7_c00141{letter-spacing:-0.014004px;}
.ls9_c00141{letter-spacing:-0.007002px;}
.ls5_c00141{letter-spacing:0.000000px;}
.ls3_c00141{letter-spacing:0.007002px;}
.ls0_c00141{letter-spacing:0.021006px;}
.ls1_c00141{letter-spacing:0.023281px;}
.ls2_c00141{letter-spacing:0.028008px;}
.lsd_c00141{letter-spacing:0.081853px;}
.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:-12.967628px;}
.ws1_c00141{word-spacing:-10.397640px;}
.ws1f_c00141{word-spacing:-0.344952px;}
.ws2_c00141{word-spacing:0.000000px;}
.ws11_c00141{word-spacing:0.014004px;}
.ws1d_c00141{word-spacing:0.021006px;}
.wse_c00141{word-spacing:0.322092px;}
.wsc_c00141{word-spacing:0.350100px;}
.ws14_c00141{word-spacing:0.357102px;}
.ws15_c00141{word-spacing:0.371106px;}
.ws8_c00141{word-spacing:0.721206px;}
.wsd_c00141{word-spacing:1.463418px;}
.ws3_c00141{word-spacing:2.891826px;}
.ws13_c00141{word-spacing:3.227922px;}
.ws9_c00141{word-spacing:3.241926px;}
.ws12_c00141{word-spacing:3.248928px;}
.wsa_c00141{word-spacing:3.599028px;}
.ws1c_c00141{word-spacing:5.062446px;}
.ws1e_c00141{word-spacing:5.332136px;}
.ws10_c00141{word-spacing:5.391540px;}
.wsf_c00141{word-spacing:5.412546px;}
.ws17_c00141{word-spacing:6.077736px;}
.wsb_c00141{word-spacing:6.084738px;}
.ws4_c00141{word-spacing:6.105744px;}
.ws16_c00141{word-spacing:6.119748px;}
.ws19_c00141{word-spacing:8.983566px;}
.ws18_c00141{word-spacing:9.004572px;}
.ws1b_c00141{word-spacing:10.776078px;}
.ws1a_c00141{word-spacing:11.168190px;}
.ws7_c00141{word-spacing:14.417118px;}
.ws5_c00141{word-spacing:24.843096px;}
.ws6_c00141{word-spacing:24.871104px;}
._3_c00141{margin-left:-2.707128px;}
._1_c00141{margin-left:-1.148328px;}
._0_c00141{width:1.281366px;}
._2_c00141{width:5.930694px;}
.fc0_c00141{color:rgb(0,0,0);}
.fs2_c00141{font-size:37.809600px;}
.fs1_c00141{font-size:46.562400px;}
.fs3_c00141{font-size:58.466400px;}
.fs0_c00141{font-size:70.020000px;}
.y0_c00141{bottom:0.000000px;}
.y2_c00141{bottom:109.740968px;}
.y1_c00141{bottom:129.810450px;}
.y21_c00141{bottom:149.429891px;}
.y20_c00141{bottom:170.940450px;}
.y1f_c00141{bottom:185.695833px;}
.y1e_c00141{bottom:254.366198px;}
.y1d_c00141{bottom:284.606085px;}
.y1c_c00141{bottom:314.756697px;}
.y1b_c00141{bottom:344.996585px;}
.y1a_c00141{bottom:375.147197px;}
.y19_c00141{bottom:405.387084px;}
.y18_c00141{bottom:435.537696px;}
.y17_c00141{bottom:465.777584px;}
.y16_c00141{bottom:495.928196px;}
.y15_c00141{bottom:526.168083px;}
.y14_c00141{bottom:556.318695px;}
.y13_c00141{bottom:586.558583px;}
.y12_c00141{bottom:616.709195px;}
.y11_c00141{bottom:646.949082px;}
.y10_c00141{bottom:677.099694px;}
.yf_c00141{bottom:707.339582px;}
.ye_c00141{bottom:737.490194px;}
.yd_c00141{bottom:787.979865px;}
.yc_c00141{bottom:818.310779px;}
.yb_c00141{bottom:868.799780px;}
.ya_c00141{bottom:899.039667px;}
.y9_c00141{bottom:929.279555px;}
.y8_c00141{bottom:959.519442px;}
.y7_c00141{bottom:989.670054px;}
.y6_c00141{bottom:1019.909942px;}
.y5_c00141{bottom:1050.060553px;}
.y4_c00141{bottom:1080.300441px;}
.y3_c00141{bottom:1110.451053px;}
.h4_c00141{height:39.338549px;}
.h5_c00141{height:54.098549px;}
.h1_c00141{height:62.771836px;}
.h3_c00141{height:62.790904px;}
.h2_c00141{height:73.671468px;}
.h0_c00141{height:1263.000000px;}
.w0_c00141{width:892.500000px;}
.x0_c00141{left:0.000000px;}
.x2_c00141{left:82.710059px;}
.x1_c00141{left:431.730000px;}
@media print{
.v2_c00141{vertical-align:-13.120000pt;}
.v0_c00141{vertical-align:0.000000pt;}
.v1_c00141{vertical-align:28.482384pt;}
.lsc_c00141{letter-spacing:-0.067217pt;}
.ls4_c00141{letter-spacing:-0.056016pt;}
.ls8_c00141{letter-spacing:-0.037344pt;}
.lsa_c00141{letter-spacing:-0.031120pt;}
.ls6_c00141{letter-spacing:-0.024896pt;}
.lsb_c00141{letter-spacing:-0.018672pt;}
.ls7_c00141{letter-spacing:-0.012448pt;}
.ls9_c00141{letter-spacing:-0.006224pt;}
.ls5_c00141{letter-spacing:0.000000pt;}
.ls3_c00141{letter-spacing:0.006224pt;}
.ls0_c00141{letter-spacing:0.018672pt;}
.ls1_c00141{letter-spacing:0.020694pt;}
.ls2_c00141{letter-spacing:0.024896pt;}
.lsd_c00141{letter-spacing:0.072758pt;}
.ws0_c00141{word-spacing:-11.526781pt;}
.ws1_c00141{word-spacing:-9.242347pt;}
.ws1f_c00141{word-spacing:-0.306624pt;}
.ws2_c00141{word-spacing:0.000000pt;}
.ws11_c00141{word-spacing:0.012448pt;}
.ws1d_c00141{word-spacing:0.018672pt;}
.wse_c00141{word-spacing:0.286304pt;}
.wsc_c00141{word-spacing:0.311200pt;}
.ws14_c00141{word-spacing:0.317424pt;}
.ws15_c00141{word-spacing:0.329872pt;}
.ws8_c00141{word-spacing:0.641072pt;}
.wsd_c00141{word-spacing:1.300816pt;}
.ws3_c00141{word-spacing:2.570512pt;}
.ws13_c00141{word-spacing:2.869264pt;}
.ws9_c00141{word-spacing:2.881712pt;}
.ws12_c00141{word-spacing:2.887936pt;}
.wsa_c00141{word-spacing:3.199136pt;}
.ws1c_c00141{word-spacing:4.499952pt;}
.ws1e_c00141{word-spacing:4.739676pt;}
.ws10_c00141{word-spacing:4.792480pt;}
.wsf_c00141{word-spacing:4.811152pt;}
.ws17_c00141{word-spacing:5.402432pt;}
.wsb_c00141{word-spacing:5.408656pt;}
.ws4_c00141{word-spacing:5.427328pt;}
.ws16_c00141{word-spacing:5.439776pt;}
.ws19_c00141{word-spacing:7.985392pt;}
.ws18_c00141{word-spacing:8.004064pt;}
.ws1b_c00141{word-spacing:9.578736pt;}
.ws1a_c00141{word-spacing:9.927280pt;}
.ws7_c00141{word-spacing:12.815216pt;}
.ws5_c00141{word-spacing:22.082752pt;}
.ws6_c00141{word-spacing:22.107648pt;}
._3_c00141{margin-left:-2.406336pt;}
._1_c00141{margin-left:-1.020736pt;}
._0_c00141{width:1.138992pt;}
._2_c00141{width:5.271728pt;}
.fs2_c00141{font-size:33.608533pt;}
.fs1_c00141{font-size:41.388800pt;}
.fs3_c00141{font-size:51.970133pt;}
.fs0_c00141{font-size:62.240000pt;}
.y0_c00141{bottom:0.000000pt;}
.y2_c00141{bottom:97.547527pt;}
.y1_c00141{bottom:115.387067pt;}
.y21_c00141{bottom:132.826570pt;}
.y20_c00141{bottom:151.947067pt;}
.y1f_c00141{bottom:165.062963pt;}
.y1e_c00141{bottom:226.103287pt;}
.y1d_c00141{bottom:252.983187pt;}
.y1c_c00141{bottom:279.783731pt;}
.y1b_c00141{bottom:306.663631pt;}
.y1a_c00141{bottom:333.464175pt;}
.y19_c00141{bottom:360.344075pt;}
.y18_c00141{bottom:387.144619pt;}
.y17_c00141{bottom:414.024519pt;}
.y16_c00141{bottom:440.825063pt;}
.y15_c00141{bottom:467.704963pt;}
.y14_c00141{bottom:494.505507pt;}
.y13_c00141{bottom:521.385407pt;}
.y12_c00141{bottom:548.185951pt;}
.y11_c00141{bottom:575.065851pt;}
.y10_c00141{bottom:601.866395pt;}
.yf_c00141{bottom:628.746295pt;}
.ye_c00141{bottom:655.546839pt;}
.yd_c00141{bottom:700.426547pt;}
.yc_c00141{bottom:727.387359pt;}
.yb_c00141{bottom:772.266471pt;}
.ya_c00141{bottom:799.146371pt;}
.y9_c00141{bottom:826.026271pt;}
.y8_c00141{bottom:852.906171pt;}
.y7_c00141{bottom:879.706715pt;}
.y6_c00141{bottom:906.586615pt;}
.y5_c00141{bottom:933.387159pt;}
.y4_c00141{bottom:960.267059pt;}
.y3_c00141{bottom:987.067603pt;}
.h4_c00141{height:34.967599pt;}
.h5_c00141{height:48.087599pt;}
.h1_c00141{height:55.797187pt;}
.h3_c00141{height:55.814137pt;}
.h2_c00141{height:65.485750pt;}
.h0_c00141{height:1122.666667pt;}
.w0_c00141{width:793.333333pt;}
.x0_c00141{left:0.000000pt;}
.x2_c00141{left:73.520052pt;}
.x1_c00141{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7b9c5c7d2811c8bd898c7439.woff2')format("woff");}.ff1_c00142{font-family:ff1_c00142;line-height:1.106934;font-style:normal;font-weight:normal;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_05fab54f9a0d44ccc156ae40.woff2')format("woff");}.ff2_c00142{font-family:ff2_c00142;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00142;src:url('chunks/assets/font_986b5a96efe4262da245d13f.woff2')format("woff");}.ff3_c00142{font-family:ff3_c00142;line-height:1.104492;font-style:normal;font-weight:normal;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_36155733c5b4d1a28704f993.woff2')format("woff");}.ff4_c00142{font-family:ff4_c00142;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00142{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00142{vertical-align:-14.400000px;}
.v0_c00142{vertical-align:0.000000px;}
.v1_c00142{vertical-align:32.407728px;}
.ls12_c00142{letter-spacing:-0.707443px;}
.ls16_c00142{letter-spacing:-0.081853px;}
.ls10_c00142{letter-spacing:-0.077022px;}
.ls11_c00142{letter-spacing:-0.075619px;}
.ls7_c00142{letter-spacing:-0.063018px;}
.lsc_c00142{letter-spacing:-0.049014px;}
.lsa_c00142{letter-spacing:-0.042012px;}
.lse_c00142{letter-spacing:-0.035010px;}
.ls13_c00142{letter-spacing:-0.029233px;}
.lsb_c00142{letter-spacing:-0.028008px;}
.ls9_c00142{letter-spacing:-0.021006px;}
.lsf_c00142{letter-spacing:-0.014004px;}
.ls15_c00142{letter-spacing:-0.011693px;}
.lsd_c00142{letter-spacing:-0.007002px;}
.ls8_c00142{letter-spacing:0.000000px;}
.ls6_c00142{letter-spacing:0.005847px;}
.ls0_c00142{letter-spacing:0.014004px;}
.ls3_c00142{letter-spacing:0.021006px;}
.ls2_c00142{letter-spacing:0.023281px;}
.ls1_c00142{letter-spacing:0.028008px;}
.ls5_c00142{letter-spacing:0.063018px;}
.ls14_c00142{letter-spacing:0.070160px;}
.ls4_c00142{letter-spacing:0.105030px;}
.ls17_c00142{letter-spacing:0.116933px;}
.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:-19.465560px;}
.ws2_c00142{word-spacing:-19.388538px;}
.ws1_c00142{word-spacing:-12.967628px;}
.ws3_c00142{word-spacing:-10.397640px;}
.ws26_c00142{word-spacing:-0.461885px;}
.ws9_c00142{word-spacing:-0.028008px;}
.ws4_c00142{word-spacing:0.000000px;}
.wsf_c00142{word-spacing:0.007002px;}
.wsb_c00142{word-spacing:0.014004px;}
.ws1b_c00142{word-spacing:0.021006px;}
.ws24_c00142{word-spacing:0.023387px;}
.ws25_c00142{word-spacing:0.093546px;}
.ws21_c00142{word-spacing:0.719137px;}
.ws14_c00142{word-spacing:1.449414px;}
.ws1d_c00142{word-spacing:2.156616px;}
.ws8_c00142{word-spacing:2.170620px;}
.wsc_c00142{word-spacing:3.276936px;}
.ws20_c00142{word-spacing:5.321520px;}
.ws1f_c00142{word-spacing:5.419548px;}
.ws5_c00142{word-spacing:6.126750px;}
.wse_c00142{word-spacing:6.798942px;}
.ws23_c00142{word-spacing:8.582868px;}
.ws22_c00142{word-spacing:8.682260px;}
.ws11_c00142{word-spacing:8.990568px;}
.ws10_c00142{word-spacing:9.004572px;}
.ws6_c00142{word-spacing:9.725778px;}
.ws7_c00142{word-spacing:10.110888px;}
.ws12_c00142{word-spacing:10.432980px;}
.ws15_c00142{word-spacing:12.568590px;}
.ws16_c00142{word-spacing:12.953700px;}
.ws1c_c00142{word-spacing:12.967704px;}
.ws18_c00142{word-spacing:13.198770px;}
.ws17_c00142{word-spacing:13.324806px;}
.ws1e_c00142{word-spacing:15.131322px;}
.ws13_c00142{word-spacing:15.495426px;}
.wsa_c00142{word-spacing:15.509430px;}
.wsd_c00142{word-spacing:19.087452px;}
.ws1a_c00142{word-spacing:22.322376px;}
.ws19_c00142{word-spacing:22.343382px;}
._3_c00142{margin-left:-2.705094px;}
._0_c00142{margin-left:-1.050300px;}
._1_c00142{width:1.001286px;}
._4_c00142{width:2.083752px;}
._2_c00142{width:5.930694px;}
.fc1_c00142{color:rgb(22,22,22);}
.fc0_c00142{color:rgb(0,0,0);}
.fs2_c00142{font-size:37.809600px;}
.fs1_c00142{font-size:46.562400px;}
.fs3_c00142{font-size:58.466400px;}
.fs0_c00142{font-size:70.020000px;}
.y0_c00142{bottom:0.000000px;}
.y2_c00142{bottom:109.740968px;}
.y1_c00142{bottom:129.810450px;}
.y22_c00142{bottom:149.429891px;}
.y21_c00142{bottom:170.940450px;}
.y20_c00142{bottom:185.249891px;}
.y1f_c00142{bottom:206.760450px;}
.y1e_c00142{bottom:224.670450px;}
.y1d_c00142{bottom:239.431012px;}
.y1c_c00142{bottom:314.760279px;}
.y1b_c00142{bottom:345.000166px;}
.y1a_c00142{bottom:375.150778px;}
.y19_c00142{bottom:425.641314px;}
.y18_c00142{bottom:455.970477px;}
.y17_c00142{bottom:506.638866px;}
.y16_c00142{bottom:536.789478px;}
.y15_c00142{bottom:567.029365px;}
.y14_c00142{bottom:597.088951px;}
.y13_c00142{bottom:627.328839px;}
.y12_c00142{bottom:657.479451px;}
.y11_c00142{bottom:687.719338px;}
.y10_c00142{bottom:717.869950px;}
.yf_c00142{bottom:748.109838px;}
.ye_c00142{bottom:778.258668px;}
.yd_c00142{bottom:808.498556px;}
.yc_c00142{bottom:838.649168px;}
.yb_c00142{bottom:868.889055px;}
.ya_c00142{bottom:899.039667px;}
.y9_c00142{bottom:929.279555px;}
.y8_c00142{bottom:959.519442px;}
.y7_c00142{bottom:989.670054px;}
.y6_c00142{bottom:1019.909942px;}
.y5_c00142{bottom:1050.060553px;}
.y4_c00142{bottom:1080.300441px;}
.y3_c00142{bottom:1110.451053px;}
.h8_c00142{height:39.338549px;}
.h7_c00142{height:39.698549px;}
.h9_c00142{height:54.098549px;}
.h4_c00142{height:62.600889px;}
.h1_c00142{height:62.771836px;}
.h2_c00142{height:63.216299px;}
.h5_c00142{height:73.675122px;}
.h6_c00142{height:74.139008px;}
.h3_c00142{height:74.150192px;}
.h0_c00142{height:1263.000000px;}
.w0_c00142{width:892.500000px;}
.x0_c00142{left:0.000000px;}
.x2_c00142{left:82.710059px;}
.x1_c00142{left:431.730000px;}
@media print{
.v2_c00142{vertical-align:-12.800000pt;}
.v0_c00142{vertical-align:0.000000pt;}
.v1_c00142{vertical-align:28.806869pt;}
.ls12_c00142{letter-spacing:-0.628839pt;}
.ls16_c00142{letter-spacing:-0.072758pt;}
.ls10_c00142{letter-spacing:-0.068464pt;}
.ls11_c00142{letter-spacing:-0.067217pt;}
.ls7_c00142{letter-spacing:-0.056016pt;}
.lsc_c00142{letter-spacing:-0.043568pt;}
.lsa_c00142{letter-spacing:-0.037344pt;}
.lse_c00142{letter-spacing:-0.031120pt;}
.ls13_c00142{letter-spacing:-0.025985pt;}
.lsb_c00142{letter-spacing:-0.024896pt;}
.ls9_c00142{letter-spacing:-0.018672pt;}
.lsf_c00142{letter-spacing:-0.012448pt;}
.ls15_c00142{letter-spacing:-0.010394pt;}
.lsd_c00142{letter-spacing:-0.006224pt;}
.ls8_c00142{letter-spacing:0.000000pt;}
.ls6_c00142{letter-spacing:0.005197pt;}
.ls0_c00142{letter-spacing:0.012448pt;}
.ls3_c00142{letter-spacing:0.018672pt;}
.ls2_c00142{letter-spacing:0.020694pt;}
.ls1_c00142{letter-spacing:0.024896pt;}
.ls5_c00142{letter-spacing:0.056016pt;}
.ls14_c00142{letter-spacing:0.062364pt;}
.ls4_c00142{letter-spacing:0.093360pt;}
.ls17_c00142{letter-spacing:0.103940pt;}
.ws0_c00142{word-spacing:-17.302720pt;}
.ws2_c00142{word-spacing:-17.234256pt;}
.ws1_c00142{word-spacing:-11.526781pt;}
.ws3_c00142{word-spacing:-9.242347pt;}
.ws26_c00142{word-spacing:-0.410564pt;}
.ws9_c00142{word-spacing:-0.024896pt;}
.ws4_c00142{word-spacing:0.000000pt;}
.wsf_c00142{word-spacing:0.006224pt;}
.wsb_c00142{word-spacing:0.012448pt;}
.ws1b_c00142{word-spacing:0.018672pt;}
.ws24_c00142{word-spacing:0.020788pt;}
.ws25_c00142{word-spacing:0.083152pt;}
.ws21_c00142{word-spacing:0.639233pt;}
.ws14_c00142{word-spacing:1.288368pt;}
.ws1d_c00142{word-spacing:1.916992pt;}
.ws8_c00142{word-spacing:1.929440pt;}
.wsc_c00142{word-spacing:2.912832pt;}
.ws20_c00142{word-spacing:4.730240pt;}
.ws1f_c00142{word-spacing:4.817376pt;}
.ws5_c00142{word-spacing:5.446000pt;}
.wse_c00142{word-spacing:6.043504pt;}
.ws23_c00142{word-spacing:7.629216pt;}
.ws22_c00142{word-spacing:7.717565pt;}
.ws11_c00142{word-spacing:7.991616pt;}
.ws10_c00142{word-spacing:8.004064pt;}
.ws6_c00142{word-spacing:8.645136pt;}
.ws7_c00142{word-spacing:8.987456pt;}
.ws12_c00142{word-spacing:9.273760pt;}
.ws15_c00142{word-spacing:11.172080pt;}
.ws16_c00142{word-spacing:11.514400pt;}
.ws1c_c00142{word-spacing:11.526848pt;}
.ws18_c00142{word-spacing:11.732240pt;}
.ws17_c00142{word-spacing:11.844272pt;}
.ws1e_c00142{word-spacing:13.450064pt;}
.ws13_c00142{word-spacing:13.773712pt;}
.wsa_c00142{word-spacing:13.786160pt;}
.wsd_c00142{word-spacing:16.966624pt;}
.ws1a_c00142{word-spacing:19.842112pt;}
.ws19_c00142{word-spacing:19.860784pt;}
._3_c00142{margin-left:-2.404528pt;}
._0_c00142{margin-left:-0.933600pt;}
._1_c00142{width:0.890032pt;}
._4_c00142{width:1.852224pt;}
._2_c00142{width:5.271728pt;}
.fs2_c00142{font-size:33.608533pt;}
.fs1_c00142{font-size:41.388800pt;}
.fs3_c00142{font-size:51.970133pt;}
.fs0_c00142{font-size:62.240000pt;}
.y0_c00142{bottom:0.000000pt;}
.y2_c00142{bottom:97.547527pt;}
.y1_c00142{bottom:115.387067pt;}
.y22_c00142{bottom:132.826570pt;}
.y21_c00142{bottom:151.947067pt;}
.y20_c00142{bottom:164.666570pt;}
.y1f_c00142{bottom:183.787067pt;}
.y1e_c00142{bottom:199.707067pt;}
.y1d_c00142{bottom:212.827567pt;}
.y1c_c00142{bottom:279.786915pt;}
.y1b_c00142{bottom:306.666815pt;}
.y1a_c00142{bottom:333.467359pt;}
.y19_c00142{bottom:378.347835pt;}
.y18_c00142{bottom:405.307091pt;}
.y17_c00142{bottom:450.345659pt;}
.y16_c00142{bottom:477.146203pt;}
.y15_c00142{bottom:504.026103pt;}
.y14_c00142{bottom:530.745735pt;}
.y13_c00142{bottom:557.625635pt;}
.y12_c00142{bottom:584.426179pt;}
.y11_c00142{bottom:611.306079pt;}
.y10_c00142{bottom:638.106623pt;}
.yf_c00142{bottom:664.986523pt;}
.ye_c00142{bottom:691.785483pt;}
.yd_c00142{bottom:718.665383pt;}
.yc_c00142{bottom:745.465927pt;}
.yb_c00142{bottom:772.345827pt;}
.ya_c00142{bottom:799.146371pt;}
.y9_c00142{bottom:826.026271pt;}
.y8_c00142{bottom:852.906171pt;}
.y7_c00142{bottom:879.706715pt;}
.y6_c00142{bottom:906.586615pt;}
.y5_c00142{bottom:933.387159pt;}
.y4_c00142{bottom:960.267059pt;}
.y3_c00142{bottom:987.067603pt;}
.h8_c00142{height:34.967599pt;}
.h7_c00142{height:35.287599pt;}
.h9_c00142{height:48.087599pt;}
.h4_c00142{height:55.645234pt;}
.h1_c00142{height:55.797187pt;}
.h2_c00142{height:56.192266pt;}
.h5_c00142{height:65.488998pt;}
.h6_c00142{height:65.901341pt;}
.h3_c00142{height:65.911282pt;}
.h0_c00142{height:1122.666667pt;}
.w0_c00142{width:793.333333pt;}
.x0_c00142{left:0.000000pt;}
.x2_c00142{left:73.520052pt;}
.x1_c00142{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_64470845365d2e9ad21ab7c8.woff2')format("woff");}.ff1_c00143{font-family:ff1_c00143;line-height:1.106934;font-style:normal;font-weight:normal;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_e583a1be999d0a324c80ab1d.woff2')format("woff");}.ff2_c00143{font-family:ff2_c00143;line-height:1.104492;font-style:normal;font-weight:normal;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_71f4419739fd18aeb8508b0e.woff2')format("woff");}.ff3_c00143{font-family:ff3_c00143;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00143;src:url('chunks/assets/font_e5d0c089cba19c9d4b2862c3.woff2')format("woff");}.ff4_c00143{font-family:ff4_c00143;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00143;src:url('chunks/assets/font_d2ef0493caf4dc7a3c7550a1.woff2')format("woff");}.ff5_c00143{font-family:ff5_c00143;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00143;src:url('chunks/assets/font_8c13eacf4095042f5f1f46f6.woff2')format("woff");}.ff6_c00143{font-family:ff6_c00143;line-height:1.133301;font-style:normal;font-weight: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_c00143;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff7_c00143{font-family:ff7_c00143;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00143{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00143{vertical-align:-14.760000px;}
.v0_c00143{vertical-align:0.000000px;}
.v1_c00143{vertical-align:32.040036px;}
.lsa_c00143{letter-spacing:-0.707443px;}
.ls6_c00143{letter-spacing:-0.335249px;}
.lsb_c00143{letter-spacing:-0.233866px;}
.ls7_c00143{letter-spacing:-0.154044px;}
.lsd_c00143{letter-spacing:-0.122779px;}
.ls10_c00143{letter-spacing:-0.076006px;}
.ls9_c00143{letter-spacing:-0.075619px;}
.lse_c00143{letter-spacing:-0.064313px;}
.ls1_c00143{letter-spacing:-0.063018px;}
.ls8_c00143{letter-spacing:-0.056016px;}
.lsf_c00143{letter-spacing:-0.046773px;}
.ls5_c00143{letter-spacing:-0.021006px;}
.ls4_c00143{letter-spacing:-0.014004px;}
.ls3_c00143{letter-spacing:-0.007002px;}
.ls2_c00143{letter-spacing:0.000000px;}
.ls0_c00143{letter-spacing:0.023281px;}
.ls11_c00143{letter-spacing:0.268945px;}
.lsc_c00143{letter-spacing:0.344952px;}
.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;}
}
.ws4_c00143{word-spacing:-58.466400px;}
.ws2_c00143{word-spacing:-19.409544px;}
.ws0_c00143{word-spacing:-12.967628px;}
.ws1_c00143{word-spacing:-12.609098px;}
.ws3_c00143{word-spacing:-10.397640px;}
.ws5_c00143{word-spacing:0.000000px;}
.ws8_c00143{word-spacing:0.007002px;}
.ws11_c00143{word-spacing:0.087700px;}
.ws12_c00143{word-spacing:0.105240px;}
.wsc_c00143{word-spacing:0.350100px;}
.wsd_c00143{word-spacing:0.719137px;}
.ws6_c00143{word-spacing:2.870820px;}
.ws9_c00143{word-spacing:8.633466px;}
.ws7_c00143{word-spacing:10.082880px;}
.wsb_c00143{word-spacing:16.209630px;}
.wsa_c00143{word-spacing:20.515860px;}
.ws10_c00143{word-spacing:21.679341px;}
.wsf_c00143{word-spacing:21.737808px;}
.wse_c00143{word-spacing:21.848894px;}
._1_c00143{margin-left:-10.082880px;}
._5_c00143{margin-left:-2.713014px;}
._2_c00143{margin-left:-1.113318px;}
._0_c00143{width:1.211346px;}
._6_c00143{width:2.398233px;}
._4_c00143{width:5.930694px;}
._3_c00143{width:17.231922px;}
._7_c00143{width:20.526794px;}
.fc0_c00143{color:rgb(0,0,0);}
.fs2_c00143{font-size:37.809600px;}
.fs1_c00143{font-size:46.562400px;}
.fs3_c00143{font-size:58.466400px;}
.fs0_c00143{font-size:70.020000px;}
.y0_c00143{bottom:0.000000px;}
.y2_c00143{bottom:109.740968px;}
.y1_c00143{bottom:129.810450px;}
.y20_c00143{bottom:149.429891px;}
.y1f_c00143{bottom:170.940450px;}
.y1e_c00143{bottom:188.940450px;}
.y1d_c00143{bottom:203.607899px;}
.y1c_c00143{bottom:253.467390px;}
.y1b_c00143{bottom:283.707278px;}
.y1a_c00143{bottom:313.857890px;}
.y19_c00143{bottom:344.097777px;}
.y18_c00143{bottom:374.248389px;}
.y17_c00143{bottom:404.488277px;}
.y16_c00143{bottom:434.638889px;}
.y15_c00143{bottom:464.878776px;}
.y14_c00143{bottom:495.029388px;}
.y13_c00143{bottom:525.269276px;}
.y12_c00143{bottom:555.419888px;}
.y11_c00143{bottom:585.659775px;}
.y10_c00143{bottom:615.810387px;}
.yf_c00143{bottom:646.050275px;}
.ye_c00143{bottom:676.200887px;}
.yd_c00143{bottom:706.440774px;}
.yc_c00143{bottom:756.930446px;}
.yb_c00143{bottom:807.511143px;}
.ya_c00143{bottom:837.840306px;}
.y9_c00143{bottom:888.510279px;}
.y8_c00143{bottom:918.569865px;}
.y7_c00143{bottom:948.809753px;}
.y6_c00143{bottom:999.390590px;}
.y5_c00143{bottom:1029.541202px;}
.y4_c00143{bottom:1080.300441px;}
.y3_c00143{bottom:1110.451053px;}
.h7_c00143{height:39.338549px;}
.h8_c00143{height:54.098549px;}
.h2_c00143{height:62.600889px;}
.h1_c00143{height:62.771836px;}
.h6_c00143{height:62.782042px;}
.h5_c00143{height:63.216299px;}
.h3_c00143{height:73.668822px;}
.h4_c00143{height:73.781906px;}
.h0_c00143{height:1263.000000px;}
.w0_c00143{width:892.500000px;}
.x0_c00143{left:0.000000px;}
.x2_c00143{left:82.710059px;}
.x1_c00143{left:431.730000px;}
@media print{
.v2_c00143{vertical-align:-13.120000pt;}
.v0_c00143{vertical-align:0.000000pt;}
.v1_c00143{vertical-align:28.480032pt;}
.lsa_c00143{letter-spacing:-0.628839pt;}
.ls6_c00143{letter-spacing:-0.297999pt;}
.lsb_c00143{letter-spacing:-0.207881pt;}
.ls7_c00143{letter-spacing:-0.136928pt;}
.lsd_c00143{letter-spacing:-0.109137pt;}
.ls10_c00143{letter-spacing:-0.067561pt;}
.ls9_c00143{letter-spacing:-0.067217pt;}
.lse_c00143{letter-spacing:-0.057167pt;}
.ls1_c00143{letter-spacing:-0.056016pt;}
.ls8_c00143{letter-spacing:-0.049792pt;}
.lsf_c00143{letter-spacing:-0.041576pt;}
.ls5_c00143{letter-spacing:-0.018672pt;}
.ls4_c00143{letter-spacing:-0.012448pt;}
.ls3_c00143{letter-spacing:-0.006224pt;}
.ls2_c00143{letter-spacing:0.000000pt;}
.ls0_c00143{letter-spacing:0.020694pt;}
.ls11_c00143{letter-spacing:0.239063pt;}
.lsc_c00143{letter-spacing:0.306624pt;}
.ws4_c00143{word-spacing:-51.970133pt;}
.ws2_c00143{word-spacing:-17.252928pt;}
.ws0_c00143{word-spacing:-11.526781pt;}
.ws1_c00143{word-spacing:-11.208087pt;}
.ws3_c00143{word-spacing:-9.242347pt;}
.ws5_c00143{word-spacing:0.000000pt;}
.ws8_c00143{word-spacing:0.006224pt;}
.ws11_c00143{word-spacing:0.077955pt;}
.ws12_c00143{word-spacing:0.093546pt;}
.wsc_c00143{word-spacing:0.311200pt;}
.wsd_c00143{word-spacing:0.639233pt;}
.ws6_c00143{word-spacing:2.551840pt;}
.ws9_c00143{word-spacing:7.674192pt;}
.ws7_c00143{word-spacing:8.962560pt;}
.wsb_c00143{word-spacing:14.408560pt;}
.wsa_c00143{word-spacing:18.236320pt;}
.ws10_c00143{word-spacing:19.270525pt;}
.wsf_c00143{word-spacing:19.322496pt;}
.wse_c00143{word-spacing:19.421239pt;}
._1_c00143{margin-left:-8.962560pt;}
._5_c00143{margin-left:-2.411568pt;}
._2_c00143{margin-left:-0.989616pt;}
._0_c00143{width:1.076752pt;}
._6_c00143{width:2.131763pt;}
._4_c00143{width:5.271728pt;}
._3_c00143{width:15.317264pt;}
._7_c00143{width:18.246039pt;}
.fs2_c00143{font-size:33.608533pt;}
.fs1_c00143{font-size:41.388800pt;}
.fs3_c00143{font-size:51.970133pt;}
.fs0_c00143{font-size:62.240000pt;}
.y0_c00143{bottom:0.000000pt;}
.y2_c00143{bottom:97.547527pt;}
.y1_c00143{bottom:115.387067pt;}
.y20_c00143{bottom:132.826570pt;}
.y1f_c00143{bottom:151.947067pt;}
.y1e_c00143{bottom:167.947067pt;}
.y1d_c00143{bottom:180.984799pt;}
.y1c_c00143{bottom:225.304347pt;}
.y1b_c00143{bottom:252.184247pt;}
.y1a_c00143{bottom:278.984791pt;}
.y19_c00143{bottom:305.864691pt;}
.y18_c00143{bottom:332.665235pt;}
.y17_c00143{bottom:359.545135pt;}
.y16_c00143{bottom:386.345679pt;}
.y15_c00143{bottom:413.225579pt;}
.y14_c00143{bottom:440.026123pt;}
.y13_c00143{bottom:466.906023pt;}
.y12_c00143{bottom:493.706567pt;}
.y11_c00143{bottom:520.586467pt;}
.y10_c00143{bottom:547.387011pt;}
.yf_c00143{bottom:574.266911pt;}
.ye_c00143{bottom:601.067455pt;}
.yd_c00143{bottom:627.947355pt;}
.yc_c00143{bottom:672.827063pt;}
.yb_c00143{bottom:717.787683pt;}
.ya_c00143{bottom:744.746939pt;}
.y9_c00143{bottom:789.786915pt;}
.y8_c00143{bottom:816.506547pt;}
.y7_c00143{bottom:843.386447pt;}
.y6_c00143{bottom:888.347191pt;}
.y5_c00143{bottom:915.147735pt;}
.y4_c00143{bottom:960.267059pt;}
.y3_c00143{bottom:987.067603pt;}
.h7_c00143{height:34.967599pt;}
.h8_c00143{height:48.087599pt;}
.h2_c00143{height:55.645234pt;}
.h1_c00143{height:55.797187pt;}
.h6_c00143{height:55.806259pt;}
.h5_c00143{height:56.192266pt;}
.h3_c00143{height:65.483398pt;}
.h4_c00143{height:65.583916pt;}
.h0_c00143{height:1122.666667pt;}
.w0_c00143{width:793.333333pt;}
.x0_c00143{left:0.000000pt;}
.x2_c00143{left:73.520052pt;}
.x1_c00143{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6f6f0ceea04829c4fc89f7b4.woff2')format("woff");}.ff1_c00144{font-family:ff1_c00144;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00144;src:url('chunks/assets/font_1938797bd250686733040bc2.woff2')format("woff");}.ff2_c00144{font-family:ff2_c00144;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00144;src:url('chunks/assets/font_7c78d6b468c94f4c98b140f5.woff2')format("woff");}.ff3_c00144{font-family:ff3_c00144;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00144;src:url('chunks/assets/font_a3df0fab287f5de43803002f.woff2')format("woff");}.ff4_c00144{font-family:ff4_c00144;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00144;src:url('chunks/assets/font_9899cdeacf86a858b5212607.woff2')format("woff");}.ff5_c00144{font-family:ff5_c00144;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00144{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00144{vertical-align:-14.760000px;}
.v0_c00144{vertical-align:0.000000px;}
.v1_c00144{vertical-align:32.402754px;}
.ls1b_c00144{letter-spacing:-0.450191px;}
.ls14_c00144{letter-spacing:-0.339105px;}
.lsb_c00144{letter-spacing:-0.303886px;}
.ls20_c00144{letter-spacing:-0.181246px;}
.ls29_c00144{letter-spacing:-0.157859px;}
.ls1a_c00144{letter-spacing:-0.146166px;}
.ls21_c00144{letter-spacing:-0.134473px;}
.ls17_c00144{letter-spacing:-0.128626px;}
.lsc_c00144{letter-spacing:-0.106360px;}
.ls28_c00144{letter-spacing:-0.099393px;}
.ls22_c00144{letter-spacing:-0.093546px;}
.ls25_c00144{letter-spacing:-0.087700px;}
.ls23_c00144{letter-spacing:-0.081853px;}
.ls12_c00144{letter-spacing:-0.075619px;}
.ls9_c00144{letter-spacing:-0.063018px;}
.ls16_c00144{letter-spacing:-0.058466px;}
.ls1d_c00144{letter-spacing:-0.052620px;}
.ls1f_c00144{letter-spacing:-0.046773px;}
.ls24_c00144{letter-spacing:-0.040926px;}
.lsf_c00144{letter-spacing:-0.035010px;}
.ls1c_c00144{letter-spacing:-0.029233px;}
.lsd_c00144{letter-spacing:-0.028008px;}
.ls13_c00144{letter-spacing:-0.023387px;}
.ls11_c00144{letter-spacing:-0.014004px;}
.lse_c00144{letter-spacing:-0.007002px;}
.ls18_c00144{letter-spacing:-0.005847px;}
.lsa_c00144{letter-spacing:0.000000px;}
.ls7_c00144{letter-spacing:0.011693px;}
.ls0_c00144{letter-spacing:0.014004px;}
.ls4_c00144{letter-spacing:0.021006px;}
.ls1_c00144{letter-spacing:0.023281px;}
.ls2_c00144{letter-spacing:0.028008px;}
.ls2a_c00144{letter-spacing:0.064313px;}
.ls3_c00144{letter-spacing:0.084024px;}
.ls8_c00144{letter-spacing:0.093546px;}
.ls19_c00144{letter-spacing:0.128626px;}
.ls26_c00144{letter-spacing:0.268945px;}
.ls10_c00144{letter-spacing:0.301086px;}
.ls1e_c00144{letter-spacing:0.461885px;}
.ls27_c00144{letter-spacing:0.479424px;}
.ls15_c00144{letter-spacing:0.537891px;}
.ls6_c00144{letter-spacing:1.444120px;}
.ls5_c00144{letter-spacing:6.127279px;}
.sc__c00144{text-shadow:none;}
.sc0_c00144{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00144{-webkit-text-stroke:0px transparent;}
.sc0_c00144{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00144{word-spacing:-15.745002px;}
.ws0_c00144{word-spacing:-12.967628px;}
.ws1_c00144{word-spacing:-10.397640px;}
.ws29_c00144{word-spacing:-0.450191px;}
.ws37_c00144{word-spacing:-0.052620px;}
.ws17_c00144{word-spacing:-0.007002px;}
.ws3_c00144{word-spacing:0.000000px;}
.ws1e_c00144{word-spacing:0.011693px;}
.ws1c_c00144{word-spacing:0.035080px;}
.ws2a_c00144{word-spacing:0.058466px;}
.ws4_c00144{word-spacing:0.258303px;}
.ws5_c00144{word-spacing:0.281094px;}
.ws1d_c00144{word-spacing:0.350798px;}
.ws7_c00144{word-spacing:0.371106px;}
.ws2e_c00144{word-spacing:0.420958px;}
.ws32_c00144{word-spacing:1.181021px;}
.ws2b_c00144{word-spacing:1.274568px;}
.ws31_c00144{word-spacing:1.479200px;}
.ws2d_c00144{word-spacing:1.549360px;}
.ws2c_c00144{word-spacing:1.590286px;}
.ws23_c00144{word-spacing:1.683832px;}
.ws24_c00144{word-spacing:1.958624px;}
.ws19_c00144{word-spacing:2.520720px;}
.ws1a_c00144{word-spacing:2.534724px;}
.ws26_c00144{word-spacing:2.882394px;}
.ws27_c00144{word-spacing:3.303352px;}
.ws14_c00144{word-spacing:3.963132px;}
.ws12_c00144{word-spacing:3.977136px;}
.ws11_c00144{word-spacing:4.005144px;}
.ws13_c00144{word-spacing:4.278222px;}
.ws10_c00144{word-spacing:4.341240px;}
.wse_c00144{word-spacing:5.748642px;}
.wsf_c00144{word-spacing:5.755644px;}
.ws22_c00144{word-spacing:6.501464px;}
.ws21_c00144{word-spacing:6.624243px;}
.ws18_c00144{word-spacing:6.840954px;}
.ws1f_c00144{word-spacing:7.033508px;}
.ws20_c00144{word-spacing:7.957277px;}
.ws30_c00144{word-spacing:8.693954px;}
.ws2f_c00144{word-spacing:9.097372px;}
.wsc_c00144{word-spacing:9.333666px;}
.wsd_c00144{word-spacing:9.382680px;}
.ws16_c00144{word-spacing:10.404972px;}
.ws15_c00144{word-spacing:10.699056px;}
.ws28_c00144{word-spacing:12.161011px;}
.wsa_c00144{word-spacing:12.946698px;}
.wsb_c00144{word-spacing:12.974706px;}
.ws36_c00144{word-spacing:14.213182px;}
.ws1b_c00144{word-spacing:14.403114px;}
.ws35_c00144{word-spacing:14.511360px;}
.ws9_c00144{word-spacing:21.594168px;}
.ws25_c00144{word-spacing:21.644261px;}
.ws8_c00144{word-spacing:21.951270px;}
.ws34_c00144{word-spacing:22.936369px;}
.ws33_c00144{word-spacing:23.146848px;}
.ws6_c00144{word-spacing:30.255642px;}
._3_c00144{margin-left:-2.708730px;}
._1_c00144{margin-left:-1.092312px;}
._0_c00144{width:1.010420px;}
._2_c00144{width:5.930694px;}
.fc0_c00144{color:rgb(0,0,0);}
.fs3_c00144{font-size:37.809600px;}
.fs2_c00144{font-size:46.562400px;}
.fs4_c00144{font-size:58.466400px;}
.fs0_c00144{font-size:70.020000px;}
.fs1_c00144{font-size:75.971400px;}
.y0_c00144{bottom:0.000000px;}
.y2_c00144{bottom:109.740968px;}
.y1_c00144{bottom:129.810450px;}
.y28_c00144{bottom:149.428647px;}
.y27_c00144{bottom:167.249205px;}
.y26_c00144{bottom:185.249548px;}
.y25_c00144{bottom:203.070107px;}
.y24_c00144{bottom:224.670450px;}
.y23_c00144{bottom:238.888088px;}
.y22_c00144{bottom:256.708647px;}
.y21_c00144{bottom:274.708990px;}
.y20_c00144{bottom:292.529548px;}
.y1f_c00144{bottom:310.350107px;}
.y1e_c00144{bottom:332.040450px;}
.y1d_c00144{bottom:346.170731px;}
.y1c_c00144{bottom:364.080451px;}
.y1b_c00144{bottom:381.990171px;}
.y1a_c00144{bottom:399.810730px;}
.y19_c00144{bottom:421.410600px;}
.y18_c00144{bottom:439.320450px;}
.y17_c00144{bottom:453.988821px;}
.y16_c00144{bottom:494.129536px;}
.y15_c00144{bottom:524.280148px;}
.y14_c00144{bottom:554.520036px;}
.y13_c00144{bottom:584.670648px;}
.y12_c00144{bottom:629.490563px;}
.y11_c00144{bottom:659.729950px;}
.y10_c00144{bottom:689.880562px;}
.yf_c00144{bottom:720.120365px;}
.ye_c00144{bottom:750.179951px;}
.yd_c00144{bottom:780.419838px;}
.yc_c00144{bottom:810.569761px;}
.yb_c00144{bottom:840.809649px;}
.ya_c00144{bottom:870.960261px;}
.y9_c00144{bottom:901.200148px;}
.y8_c00144{bottom:946.019951px;}
.y7_c00144{bottom:976.170562px;}
.y6_c00144{bottom:1006.410450px;}
.y5_c00144{bottom:1031.160450px;}
.y4_c00144{bottom:1080.300441px;}
.y3_c00144{bottom:1110.451053px;}
.hb_c00144{height:39.337949px;}
.ha_c00144{height:39.338549px;}
.hd_c00144{height:39.698549px;}
.hc_c00144{height:54.098549px;}
.h4_c00144{height:62.600889px;}
.h1_c00144{height:62.771836px;}
.h9_c00144{height:62.778352px;}
.h2_c00144{height:63.216299px;}
.h3_c00144{height:68.589413px;}
.h7_c00144{height:73.670784px;}
.h6_c00144{height:73.782806px;}
.h5_c00144{height:74.031540px;}
.h8_c00144{height:74.142014px;}
.h0_c00144{height:1263.000000px;}
.w0_c00144{width:892.500000px;}
.x0_c00144{left:0.000000px;}
.x2_c00144{left:82.710059px;}
.x1_c00144{left:431.730000px;}
@media print{
.v2_c00144{vertical-align:-13.120000pt;}
.v0_c00144{vertical-align:0.000000pt;}
.v1_c00144{vertical-align:28.802448pt;}
.ls1b_c00144{letter-spacing:-0.400170pt;}
.ls14_c00144{letter-spacing:-0.301427pt;}
.lsb_c00144{letter-spacing:-0.270121pt;}
.ls20_c00144{letter-spacing:-0.161107pt;}
.ls29_c00144{letter-spacing:-0.140319pt;}
.ls1a_c00144{letter-spacing:-0.129925pt;}
.ls21_c00144{letter-spacing:-0.119531pt;}
.ls17_c00144{letter-spacing:-0.114334pt;}
.lsc_c00144{letter-spacing:-0.094542pt;}
.ls28_c00144{letter-spacing:-0.088349pt;}
.ls22_c00144{letter-spacing:-0.083152pt;}
.ls25_c00144{letter-spacing:-0.077955pt;}
.ls23_c00144{letter-spacing:-0.072758pt;}
.ls12_c00144{letter-spacing:-0.067217pt;}
.ls9_c00144{letter-spacing:-0.056016pt;}
.ls16_c00144{letter-spacing:-0.051970pt;}
.ls1d_c00144{letter-spacing:-0.046773pt;}
.ls1f_c00144{letter-spacing:-0.041576pt;}
.ls24_c00144{letter-spacing:-0.036379pt;}
.lsf_c00144{letter-spacing:-0.031120pt;}
.ls1c_c00144{letter-spacing:-0.025985pt;}
.lsd_c00144{letter-spacing:-0.024896pt;}
.ls13_c00144{letter-spacing:-0.020788pt;}
.ls11_c00144{letter-spacing:-0.012448pt;}
.lse_c00144{letter-spacing:-0.006224pt;}
.ls18_c00144{letter-spacing:-0.005197pt;}
.lsa_c00144{letter-spacing:0.000000pt;}
.ls7_c00144{letter-spacing:0.010394pt;}
.ls0_c00144{letter-spacing:0.012448pt;}
.ls4_c00144{letter-spacing:0.018672pt;}
.ls1_c00144{letter-spacing:0.020694pt;}
.ls2_c00144{letter-spacing:0.024896pt;}
.ls2a_c00144{letter-spacing:0.057167pt;}
.ls3_c00144{letter-spacing:0.074688pt;}
.ls8_c00144{letter-spacing:0.083152pt;}
.ls19_c00144{letter-spacing:0.114334pt;}
.ls26_c00144{letter-spacing:0.239063pt;}
.ls10_c00144{letter-spacing:0.267632pt;}
.ls1e_c00144{letter-spacing:0.410564pt;}
.ls27_c00144{letter-spacing:0.426155pt;}
.ls15_c00144{letter-spacing:0.478125pt;}
.ls6_c00144{letter-spacing:1.283662pt;}
.ls5_c00144{letter-spacing:5.446470pt;}
.ws2_c00144{word-spacing:-13.995557pt;}
.ws0_c00144{word-spacing:-11.526781pt;}
.ws1_c00144{word-spacing:-9.242347pt;}
.ws29_c00144{word-spacing:-0.400170pt;}
.ws37_c00144{word-spacing:-0.046773pt;}
.ws17_c00144{word-spacing:-0.006224pt;}
.ws3_c00144{word-spacing:0.000000pt;}
.ws1e_c00144{word-spacing:0.010394pt;}
.ws1c_c00144{word-spacing:0.031182pt;}
.ws2a_c00144{word-spacing:0.051970pt;}
.ws4_c00144{word-spacing:0.229602pt;}
.ws5_c00144{word-spacing:0.249861pt;}
.ws1d_c00144{word-spacing:0.311821pt;}
.ws7_c00144{word-spacing:0.329872pt;}
.ws2e_c00144{word-spacing:0.374185pt;}
.ws32_c00144{word-spacing:1.049797pt;}
.ws2b_c00144{word-spacing:1.132949pt;}
.ws31_c00144{word-spacing:1.314844pt;}
.ws2d_c00144{word-spacing:1.377209pt;}
.ws2c_c00144{word-spacing:1.413588pt;}
.ws23_c00144{word-spacing:1.496740pt;}
.ws24_c00144{word-spacing:1.740999pt;}
.ws19_c00144{word-spacing:2.240640pt;}
.ws1a_c00144{word-spacing:2.253088pt;}
.ws26_c00144{word-spacing:2.562128pt;}
.ws27_c00144{word-spacing:2.936313pt;}
.ws14_c00144{word-spacing:3.522784pt;}
.ws12_c00144{word-spacing:3.535232pt;}
.ws11_c00144{word-spacing:3.560128pt;}
.ws13_c00144{word-spacing:3.802864pt;}
.ws10_c00144{word-spacing:3.858880pt;}
.wse_c00144{word-spacing:5.109904pt;}
.wsf_c00144{word-spacing:5.116128pt;}
.ws22_c00144{word-spacing:5.779079pt;}
.ws21_c00144{word-spacing:5.888216pt;}
.ws18_c00144{word-spacing:6.080848pt;}
.ws1f_c00144{word-spacing:6.252007pt;}
.ws20_c00144{word-spacing:7.073135pt;}
.ws30_c00144{word-spacing:7.727959pt;}
.ws2f_c00144{word-spacing:8.086553pt;}
.wsc_c00144{word-spacing:8.296592pt;}
.wsd_c00144{word-spacing:8.340160pt;}
.ws16_c00144{word-spacing:9.248864pt;}
.ws15_c00144{word-spacing:9.510272pt;}
.ws28_c00144{word-spacing:10.809788pt;}
.wsa_c00144{word-spacing:11.508176pt;}
.wsb_c00144{word-spacing:11.533072pt;}
.ws36_c00144{word-spacing:12.633939pt;}
.ws1b_c00144{word-spacing:12.802768pt;}
.ws35_c00144{word-spacing:12.898987pt;}
.ws9_c00144{word-spacing:19.194816pt;}
.ws25_c00144{word-spacing:19.239343pt;}
.ws8_c00144{word-spacing:19.512240pt;}
.ws34_c00144{word-spacing:20.387883pt;}
.ws33_c00144{word-spacing:20.574976pt;}
.ws6_c00144{word-spacing:26.893904pt;}
._3_c00144{margin-left:-2.407760pt;}
._1_c00144{margin-left:-0.970944pt;}
._0_c00144{width:0.898151pt;}
._2_c00144{width:5.271728pt;}
.fs3_c00144{font-size:33.608533pt;}
.fs2_c00144{font-size:41.388800pt;}
.fs4_c00144{font-size:51.970133pt;}
.fs0_c00144{font-size:62.240000pt;}
.fs1_c00144{font-size:67.530133pt;}
.y0_c00144{bottom:0.000000pt;}
.y2_c00144{bottom:97.547527pt;}
.y1_c00144{bottom:115.387067pt;}
.y28_c00144{bottom:132.825464pt;}
.y27_c00144{bottom:148.665960pt;}
.y26_c00144{bottom:164.666265pt;}
.y25_c00144{bottom:180.506762pt;}
.y24_c00144{bottom:199.707067pt;}
.y23_c00144{bottom:212.344967pt;}
.y22_c00144{bottom:228.185464pt;}
.y21_c00144{bottom:244.185769pt;}
.y20_c00144{bottom:260.026265pt;}
.y1f_c00144{bottom:275.866762pt;}
.y1e_c00144{bottom:295.147067pt;}
.y1d_c00144{bottom:307.707317pt;}
.y1c_c00144{bottom:323.627068pt;}
.y1b_c00144{bottom:339.546819pt;}
.y1a_c00144{bottom:355.387316pt;}
.y19_c00144{bottom:374.587200pt;}
.y18_c00144{bottom:390.507067pt;}
.y17_c00144{bottom:403.545619pt;}
.y16_c00144{bottom:439.226255pt;}
.y15_c00144{bottom:466.026799pt;}
.y14_c00144{bottom:492.906699pt;}
.y13_c00144{bottom:519.707243pt;}
.y12_c00144{bottom:559.547167pt;}
.y11_c00144{bottom:586.426623pt;}
.y10_c00144{bottom:613.227167pt;}
.yf_c00144{bottom:640.106991pt;}
.ye_c00144{bottom:666.826623pt;}
.yd_c00144{bottom:693.706523pt;}
.yc_c00144{bottom:720.506455pt;}
.yb_c00144{bottom:747.386355pt;}
.ya_c00144{bottom:774.186899pt;}
.y9_c00144{bottom:801.066799pt;}
.y8_c00144{bottom:840.906623pt;}
.y7_c00144{bottom:867.707167pt;}
.y6_c00144{bottom:894.587067pt;}
.y5_c00144{bottom:916.587067pt;}
.y4_c00144{bottom:960.267059pt;}
.y3_c00144{bottom:987.067603pt;}
.hb_c00144{height:34.967066pt;}
.ha_c00144{height:34.967599pt;}
.hd_c00144{height:35.287599pt;}
.hc_c00144{height:48.087599pt;}
.h4_c00144{height:55.645234pt;}
.h1_c00144{height:55.797187pt;}
.h9_c00144{height:55.802979pt;}
.h2_c00144{height:56.192266pt;}
.h3_c00144{height:60.968367pt;}
.h7_c00144{height:65.485142pt;}
.h6_c00144{height:65.584716pt;}
.h5_c00144{height:65.805814pt;}
.h8_c00144{height:65.904012pt;}
.h0_c00144{height:1122.666667pt;}
.w0_c00144{width:793.333333pt;}
.x0_c00144{left:0.000000pt;}
.x2_c00144{left:73.520052pt;}
.x1_c00144{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b7ea7eefdabaf8a0e8f5c231.woff2')format("woff");}.ff1_c00145{font-family:ff1_c00145;line-height:1.106934;font-style:normal;font-weight:normal;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_b2c62ede3168afdfcef2b6cb.woff2')format("woff");}.ff2_c00145{font-family:ff2_c00145;line-height:1.133301;font-style:normal;font-weight:normal;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_5cc8ffc255f0f9feea746b4a.woff2')format("woff");}.ff3_c00145{font-family:ff3_c00145;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00145{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00145{vertical-align:-14.760000px;}
.v0_c00145{vertical-align:0.000000px;}
.v1_c00145{vertical-align:32.410224px;}
.ls16_c00145{letter-spacing:-0.707443px;}
.ls15_c00145{letter-spacing:-0.549584px;}
.ls18_c00145{letter-spacing:-0.309872px;}
.ls14_c00145{letter-spacing:-0.251406px;}
.ls13_c00145{letter-spacing:-0.157859px;}
.lsd_c00145{letter-spacing:-0.075619px;}
.ls6_c00145{letter-spacing:-0.063018px;}
.lsc_c00145{letter-spacing:-0.042012px;}
.lsf_c00145{letter-spacing:-0.035080px;}
.ls8_c00145{letter-spacing:-0.035010px;}
.ls11_c00145{letter-spacing:-0.029233px;}
.lsa_c00145{letter-spacing:-0.028008px;}
.lsb_c00145{letter-spacing:-0.021006px;}
.ls9_c00145{letter-spacing:-0.014004px;}
.ls7_c00145{letter-spacing:0.000000px;}
.ls1_c00145{letter-spacing:0.007002px;}
.ls0_c00145{letter-spacing:0.014004px;}
.ls2_c00145{letter-spacing:0.021006px;}
.ls4_c00145{letter-spacing:0.023281px;}
.ls17_c00145{letter-spacing:0.070160px;}
.ls3_c00145{letter-spacing:0.105030px;}
.ls1a_c00145{letter-spacing:0.181246px;}
.ls19_c00145{letter-spacing:0.239712px;}
.lse_c00145{letter-spacing:0.350798px;}
.ls10_c00145{letter-spacing:0.485271px;}
.ls12_c00145{letter-spacing:0.502811px;}
.ls5_c00145{letter-spacing:19.802570px;}
.sc__c00145{text-shadow:none;}
.sc0_c00145{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00145{-webkit-text-stroke:0px transparent;}
.sc0_c00145{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00145{word-spacing:-15.943787px;}
.ws0_c00145{word-spacing:-12.967628px;}
.ws1_c00145{word-spacing:-10.397640px;}
.ws2a_c00145{word-spacing:-0.169553px;}
.ws12_c00145{word-spacing:-0.119034px;}
.wse_c00145{word-spacing:-0.035010px;}
.ws9_c00145{word-spacing:-0.028008px;}
.ws15_c00145{word-spacing:-0.021006px;}
.ws3_c00145{word-spacing:0.000000px;}
.wsd_c00145{word-spacing:0.014004px;}
.ws1c_c00145{word-spacing:0.028008px;}
.ws20_c00145{word-spacing:0.040926px;}
.ws29_c00145{word-spacing:0.169553px;}
.ws25_c00145{word-spacing:0.362492px;}
.ws19_c00145{word-spacing:0.721206px;}
.ws10_c00145{word-spacing:0.735210px;}
.ws11_c00145{word-spacing:1.057302px;}
.ws1a_c00145{word-spacing:1.407402px;}
.ws13_c00145{word-spacing:2.863818px;}
.ws6_c00145{word-spacing:3.241926px;}
.ws7_c00145{word-spacing:3.613032px;}
.wsb_c00145{word-spacing:4.299228px;}
.wsa_c00145{word-spacing:4.334238px;}
.wsc_c00145{word-spacing:4.341240px;}
.ws26_c00145{word-spacing:7.501239px;}
.ws8_c00145{word-spacing:7.926264px;}
.ws16_c00145{word-spacing:8.647470px;}
.ws17_c00145{word-spacing:8.654472px;}
.ws4_c00145{word-spacing:8.661474px;}
.wsf_c00145{word-spacing:9.368676px;}
.ws18_c00145{word-spacing:10.460988px;}
.ws14_c00145{word-spacing:10.797084px;}
.ws1f_c00145{word-spacing:11.406795px;}
.ws1d_c00145{word-spacing:11.541267px;}
.ws1e_c00145{word-spacing:11.570501px;}
.ws28_c00145{word-spacing:12.014845px;}
.ws27_c00145{word-spacing:12.564429px;}
.ws5_c00145{word-spacing:18.023148px;}
.ws23_c00145{word-spacing:19.972122px;}
.ws24_c00145{word-spacing:20.720492px;}
.ws1b_c00145{word-spacing:27.027720px;}
.ws21_c00145{word-spacing:29.391059px;}
.ws22_c00145{word-spacing:30.279749px;}
._2_c00145{margin-left:-2.877822px;}
._1_c00145{margin-left:-1.414404px;}
._0_c00145{width:1.218348px;}
._3_c00145{width:5.930694px;}
.fc0_c00145{color:rgb(0,0,0);}
.fs2_c00145{font-size:37.809600px;}
.fs1_c00145{font-size:46.562400px;}
.fs3_c00145{font-size:58.466400px;}
.fs0_c00145{font-size:70.020000px;}
.y0_c00145{bottom:0.000000px;}
.y2_c00145{bottom:109.740968px;}
.y1_c00145{bottom:129.810450px;}
.y24_c00145{bottom:149.428088px;}
.y23_c00145{bottom:167.248647px;}
.y22_c00145{bottom:185.248990px;}
.y21_c00145{bottom:203.069548px;}
.y20_c00145{bottom:221.069891px;}
.y1f_c00145{bottom:242.580450px;}
.y1e_c00145{bottom:256.710107px;}
.y1d_c00145{bottom:278.400450px;}
.y1c_c00145{bottom:293.070887px;}
.y1b_c00145{bottom:371.189451px;}
.y1a_c00145{bottom:401.429338px;}
.y19_c00145{bottom:431.579950px;}
.y18_c00145{bottom:461.819838px;}
.y17_c00145{bottom:491.967894px;}
.y16_c00145{bottom:522.207782px;}
.y15_c00145{bottom:552.358394px;}
.y14_c00145{bottom:582.598281px;}
.y13_c00145{bottom:612.748893px;}
.y12_c00145{bottom:642.988781px;}
.y11_c00145{bottom:673.139393px;}
.y10_c00145{bottom:703.379280px;}
.yf_c00145{bottom:733.529892px;}
.ye_c00145{bottom:763.769780px;}
.yd_c00145{bottom:794.009667px;}
.yc_c00145{bottom:824.160279px;}
.yb_c00145{bottom:854.400166px;}
.ya_c00145{bottom:884.550778px;}
.y9_c00145{bottom:914.790666px;}
.y8_c00145{bottom:944.850252px;}
.y7_c00145{bottom:989.670054px;}
.y6_c00145{bottom:1019.909942px;}
.y5_c00145{bottom:1050.060553px;}
.y4_c00145{bottom:1080.300441px;}
.y3_c00145{bottom:1110.451053px;}
.h4_c00145{height:39.338549px;}
.h5_c00145{height:54.098549px;}
.h1_c00145{height:62.771836px;}
.h3_c00145{height:74.147060px;}
.h2_c00145{height:74.152688px;}
.h0_c00145{height:1263.000000px;}
.w0_c00145{width:892.500000px;}
.x0_c00145{left:0.000000px;}
.x2_c00145{left:82.710059px;}
.x1_c00145{left:431.730000px;}
@media print{
.v2_c00145{vertical-align:-13.120000pt;}
.v0_c00145{vertical-align:0.000000pt;}
.v1_c00145{vertical-align:28.809088pt;}
.ls16_c00145{letter-spacing:-0.628839pt;}
.ls15_c00145{letter-spacing:-0.488519pt;}
.ls18_c00145{letter-spacing:-0.275442pt;}
.ls14_c00145{letter-spacing:-0.223472pt;}
.ls13_c00145{letter-spacing:-0.140319pt;}
.lsd_c00145{letter-spacing:-0.067217pt;}
.ls6_c00145{letter-spacing:-0.056016pt;}
.lsc_c00145{letter-spacing:-0.037344pt;}
.lsf_c00145{letter-spacing:-0.031182pt;}
.ls8_c00145{letter-spacing:-0.031120pt;}
.ls11_c00145{letter-spacing:-0.025985pt;}
.lsa_c00145{letter-spacing:-0.024896pt;}
.lsb_c00145{letter-spacing:-0.018672pt;}
.ls9_c00145{letter-spacing:-0.012448pt;}
.ls7_c00145{letter-spacing:0.000000pt;}
.ls1_c00145{letter-spacing:0.006224pt;}
.ls0_c00145{letter-spacing:0.012448pt;}
.ls2_c00145{letter-spacing:0.018672pt;}
.ls4_c00145{letter-spacing:0.020694pt;}
.ls17_c00145{letter-spacing:0.062364pt;}
.ls3_c00145{letter-spacing:0.093360pt;}
.ls1a_c00145{letter-spacing:0.161107pt;}
.ls19_c00145{letter-spacing:0.213078pt;}
.lse_c00145{letter-spacing:0.311821pt;}
.ls10_c00145{letter-spacing:0.431352pt;}
.ls12_c00145{letter-spacing:0.446943pt;}
.ls5_c00145{letter-spacing:17.602284pt;}
.ws2_c00145{word-spacing:-14.172255pt;}
.ws0_c00145{word-spacing:-11.526781pt;}
.ws1_c00145{word-spacing:-9.242347pt;}
.ws2a_c00145{word-spacing:-0.150713pt;}
.ws12_c00145{word-spacing:-0.105808pt;}
.wse_c00145{word-spacing:-0.031120pt;}
.ws9_c00145{word-spacing:-0.024896pt;}
.ws15_c00145{word-spacing:-0.018672pt;}
.ws3_c00145{word-spacing:0.000000pt;}
.wsd_c00145{word-spacing:0.012448pt;}
.ws1c_c00145{word-spacing:0.024896pt;}
.ws20_c00145{word-spacing:0.036379pt;}
.ws29_c00145{word-spacing:0.150713pt;}
.ws25_c00145{word-spacing:0.322215pt;}
.ws19_c00145{word-spacing:0.641072pt;}
.ws10_c00145{word-spacing:0.653520pt;}
.ws11_c00145{word-spacing:0.939824pt;}
.ws1a_c00145{word-spacing:1.251024pt;}
.ws13_c00145{word-spacing:2.545616pt;}
.ws6_c00145{word-spacing:2.881712pt;}
.ws7_c00145{word-spacing:3.211584pt;}
.wsb_c00145{word-spacing:3.821536pt;}
.wsa_c00145{word-spacing:3.852656pt;}
.wsc_c00145{word-spacing:3.858880pt;}
.ws26_c00145{word-spacing:6.667768pt;}
.ws8_c00145{word-spacing:7.045568pt;}
.ws16_c00145{word-spacing:7.686640pt;}
.ws17_c00145{word-spacing:7.692864pt;}
.ws4_c00145{word-spacing:7.699088pt;}
.wsf_c00145{word-spacing:8.327712pt;}
.ws18_c00145{word-spacing:9.298656pt;}
.ws14_c00145{word-spacing:9.597408pt;}
.ws1f_c00145{word-spacing:10.139373pt;}
.ws1d_c00145{word-spacing:10.258904pt;}
.ws1e_c00145{word-spacing:10.284889pt;}
.ws28_c00145{word-spacing:10.679862pt;}
.ws27_c00145{word-spacing:11.168382pt;}
.ws5_c00145{word-spacing:16.020576pt;}
.ws23_c00145{word-spacing:17.752998pt;}
.ws24_c00145{word-spacing:18.418215pt;}
.ws1b_c00145{word-spacing:24.024640pt;}
.ws21_c00145{word-spacing:26.125386pt;}
.ws22_c00145{word-spacing:26.915332pt;}
._2_c00145{margin-left:-2.558064pt;}
._1_c00145{margin-left:-1.257248pt;}
._0_c00145{width:1.082976pt;}
._3_c00145{width:5.271728pt;}
.fs2_c00145{font-size:33.608533pt;}
.fs1_c00145{font-size:41.388800pt;}
.fs3_c00145{font-size:51.970133pt;}
.fs0_c00145{font-size:62.240000pt;}
.y0_c00145{bottom:0.000000pt;}
.y2_c00145{bottom:97.547527pt;}
.y1_c00145{bottom:115.387067pt;}
.y24_c00145{bottom:132.824967pt;}
.y23_c00145{bottom:148.665464pt;}
.y22_c00145{bottom:164.665769pt;}
.y21_c00145{bottom:180.506265pt;}
.y20_c00145{bottom:196.506570pt;}
.y1f_c00145{bottom:215.627067pt;}
.y1e_c00145{bottom:228.186762pt;}
.y1d_c00145{bottom:247.467067pt;}
.y1c_c00145{bottom:260.507455pt;}
.y1b_c00145{bottom:329.946179pt;}
.y1a_c00145{bottom:356.826079pt;}
.y19_c00145{bottom:383.626623pt;}
.y18_c00145{bottom:410.506523pt;}
.y17_c00145{bottom:437.304795pt;}
.y16_c00145{bottom:464.184695pt;}
.y15_c00145{bottom:490.985239pt;}
.y14_c00145{bottom:517.865139pt;}
.y13_c00145{bottom:544.665683pt;}
.y12_c00145{bottom:571.545583pt;}
.y11_c00145{bottom:598.346127pt;}
.y10_c00145{bottom:625.226027pt;}
.yf_c00145{bottom:652.026571pt;}
.ye_c00145{bottom:678.906471pt;}
.yd_c00145{bottom:705.786371pt;}
.yc_c00145{bottom:732.586915pt;}
.yb_c00145{bottom:759.466815pt;}
.ya_c00145{bottom:786.267359pt;}
.y9_c00145{bottom:813.147259pt;}
.y8_c00145{bottom:839.866891pt;}
.y7_c00145{bottom:879.706715pt;}
.y6_c00145{bottom:906.586615pt;}
.y5_c00145{bottom:933.387159pt;}
.y4_c00145{bottom:960.267059pt;}
.y3_c00145{bottom:987.067603pt;}
.h4_c00145{height:34.967599pt;}
.h5_c00145{height:48.087599pt;}
.h1_c00145{height:55.797187pt;}
.h3_c00145{height:65.908498pt;}
.h2_c00145{height:65.913500pt;}
.h0_c00145{height:1122.666667pt;}
.w0_c00145{width:793.333333pt;}
.x0_c00145{left:0.000000pt;}
.x2_c00145{left:73.520052pt;}
.x1_c00145{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d12bab0c2040f28d1b3fe3bc.woff2')format("woff");}.ff1_c00146{font-family:ff1_c00146;line-height:1.106934;font-style:normal;font-weight:normal;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_19a8f3332759aead74c4bd19.woff2')format("woff");}.ff2_c00146{font-family:ff2_c00146;line-height:1.133301;font-style:normal;font-weight:normal;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_f11ccee883bbac4ffbc16782.woff2')format("woff");}.ff3_c00146{font-family:ff3_c00146;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00146{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00146{vertical-align:0.000000px;}
.ls10_c00146{letter-spacing:-0.152013px;}
.lsf_c00146{letter-spacing:-0.122779px;}
.ls11_c00146{letter-spacing:-0.099393px;}
.ls1_c00146{letter-spacing:-0.063018px;}
.lse_c00146{letter-spacing:-0.052620px;}
.ls9_c00146{letter-spacing:-0.049014px;}
.ls6_c00146{letter-spacing:-0.042012px;}
.lsd_c00146{letter-spacing:-0.035080px;}
.ls7_c00146{letter-spacing:-0.035010px;}
.ls4_c00146{letter-spacing:-0.028008px;}
.ls5_c00146{letter-spacing:-0.021006px;}
.lsb_c00146{letter-spacing:-0.017540px;}
.ls8_c00146{letter-spacing:-0.014004px;}
.ls3_c00146{letter-spacing:-0.007002px;}
.ls2_c00146{letter-spacing:0.000000px;}
.ls0_c00146{letter-spacing:0.007002px;}
.lsc_c00146{letter-spacing:0.339105px;}
.lsa_c00146{letter-spacing:0.426805px;}
.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;}
}
.ws26_c00146{word-spacing:-0.584664px;}
.ws27_c00146{word-spacing:-0.192939px;}
.ws0_c00146{word-spacing:0.000000px;}
.ws8_c00146{word-spacing:0.014004px;}
.ws20_c00146{word-spacing:0.028008px;}
.ws16_c00146{word-spacing:0.035010px;}
.ws28_c00146{word-spacing:0.111086px;}
.ws1b_c00146{word-spacing:0.350100px;}
.ws1a_c00146{word-spacing:0.371106px;}
.ws5_c00146{word-spacing:0.749214px;}
.ws24_c00146{word-spacing:0.765910px;}
.ws25_c00146{word-spacing:0.783450px;}
.ws10_c00146{word-spacing:1.078308px;}
.ws4_c00146{word-spacing:1.085310px;}
.ws17_c00146{word-spacing:1.092312px;}
.ws1e_c00146{word-spacing:1.435410px;}
.ws1d_c00146{word-spacing:1.799514px;}
.ws15_c00146{word-spacing:2.184624px;}
.wsc_c00146{word-spacing:3.234924px;}
.wsd_c00146{word-spacing:3.255930px;}
.ws11_c00146{word-spacing:4.313232px;}
.ws12_c00146{word-spacing:4.327236px;}
.ws2_c00146{word-spacing:4.691340px;}
.ws1c_c00146{word-spacing:6.483852px;}
.ws3_c00146{word-spacing:7.541154px;}
.ws7_c00146{word-spacing:7.548156px;}
.ws14_c00146{word-spacing:7.947270px;}
.ws1f_c00146{word-spacing:8.626464px;}
.ws18_c00146{word-spacing:12.267504px;}
.wsb_c00146{word-spacing:12.603600px;}
.ws19_c00146{word-spacing:13.317804px;}
.ws6_c00146{word-spacing:13.702914px;}
.ws13_c00146{word-spacing:14.039010px;}
.wsf_c00146{word-spacing:16.181622px;}
.wse_c00146{word-spacing:16.573734px;}
.ws23_c00146{word-spacing:16.592764px;}
.ws21_c00146{word-spacing:16.867556px;}
.ws22_c00146{word-spacing:17.311901px;}
.ws9_c00146{word-spacing:25.179192px;}
.wsa_c00146{word-spacing:25.536294px;}
.ws1_c00146{word-spacing:33.469560px;}
._3_c00146{margin-left:-7.626066px;}
._4_c00146{margin-left:-2.438737px;}
._0_c00146{margin-left:-1.015290px;}
._1_c00146{width:1.183338px;}
._2_c00146{width:5.930694px;}
.fc0_c00146{color:rgb(0,0,0);}
.fs1_c00146{font-size:58.466400px;}
.fs0_c00146{font-size:70.020000px;}
.y0_c00146{bottom:0.000000px;}
.y2_c00146{bottom:109.740968px;}
.y1_c00146{bottom:129.810450px;}
.y24_c00146{bottom:149.429548px;}
.y23_c00146{bottom:167.250107px;}
.y22_c00146{bottom:185.250450px;}
.y21_c00146{bottom:203.604528px;}
.y20_c00146{bottom:234.835199px;}
.y1f_c00146{bottom:265.075086px;}
.y1e_c00146{bottom:295.225698px;}
.y1d_c00146{bottom:325.465586px;}
.y1c_c00146{bottom:355.616198px;}
.y1b_c00146{bottom:385.856085px;}
.y1a_c00146{bottom:416.006697px;}
.y19_c00146{bottom:446.246585px;}
.y18_c00146{bottom:476.397197px;}
.y17_c00146{bottom:506.637084px;}
.y16_c00146{bottom:536.787696px;}
.y15_c00146{bottom:567.027584px;}
.y14_c00146{bottom:597.087170px;}
.y13_c00146{bottom:627.327057px;}
.y12_c00146{bottom:657.477669px;}
.y11_c00146{bottom:687.717557px;}
.y10_c00146{bottom:717.868169px;}
.yf_c00146{bottom:748.108056px;}
.ye_c00146{bottom:778.258668px;}
.yd_c00146{bottom:808.498556px;}
.yc_c00146{bottom:838.649168px;}
.yb_c00146{bottom:868.889055px;}
.ya_c00146{bottom:899.039667px;}
.y9_c00146{bottom:929.279555px;}
.y8_c00146{bottom:959.519442px;}
.y7_c00146{bottom:989.670054px;}
.y6_c00146{bottom:1019.909942px;}
.y5_c00146{bottom:1050.060553px;}
.y4_c00146{bottom:1080.300441px;}
.y3_c00146{bottom:1110.451053px;}
.h3_c00146{height:54.098549px;}
.h1_c00146{height:62.771836px;}
.h2_c00146{height:62.795524px;}
.h0_c00146{height:1263.000000px;}
.w0_c00146{width:892.500000px;}
.x0_c00146{left:0.000000px;}
.x2_c00146{left:82.710059px;}
.x1_c00146{left:431.730000px;}
@media print{
.v0_c00146{vertical-align:0.000000pt;}
.ls10_c00146{letter-spacing:-0.135122pt;}
.lsf_c00146{letter-spacing:-0.109137pt;}
.ls11_c00146{letter-spacing:-0.088349pt;}
.ls1_c00146{letter-spacing:-0.056016pt;}
.lse_c00146{letter-spacing:-0.046773pt;}
.ls9_c00146{letter-spacing:-0.043568pt;}
.ls6_c00146{letter-spacing:-0.037344pt;}
.lsd_c00146{letter-spacing:-0.031182pt;}
.ls7_c00146{letter-spacing:-0.031120pt;}
.ls4_c00146{letter-spacing:-0.024896pt;}
.ls5_c00146{letter-spacing:-0.018672pt;}
.lsb_c00146{letter-spacing:-0.015591pt;}
.ls8_c00146{letter-spacing:-0.012448pt;}
.ls3_c00146{letter-spacing:-0.006224pt;}
.ls2_c00146{letter-spacing:0.000000pt;}
.ls0_c00146{letter-spacing:0.006224pt;}
.lsc_c00146{letter-spacing:0.301427pt;}
.lsa_c00146{letter-spacing:0.379382pt;}
.ws26_c00146{word-spacing:-0.519701pt;}
.ws27_c00146{word-spacing:-0.171501pt;}
.ws0_c00146{word-spacing:0.000000pt;}
.ws8_c00146{word-spacing:0.012448pt;}
.ws20_c00146{word-spacing:0.024896pt;}
.ws16_c00146{word-spacing:0.031120pt;}
.ws28_c00146{word-spacing:0.098743pt;}
.ws1b_c00146{word-spacing:0.311200pt;}
.ws1a_c00146{word-spacing:0.329872pt;}
.ws5_c00146{word-spacing:0.665968pt;}
.ws24_c00146{word-spacing:0.680809pt;}
.ws25_c00146{word-spacing:0.696400pt;}
.ws10_c00146{word-spacing:0.958496pt;}
.ws4_c00146{word-spacing:0.964720pt;}
.ws17_c00146{word-spacing:0.970944pt;}
.ws1e_c00146{word-spacing:1.275920pt;}
.ws1d_c00146{word-spacing:1.599568pt;}
.ws15_c00146{word-spacing:1.941888pt;}
.wsc_c00146{word-spacing:2.875488pt;}
.wsd_c00146{word-spacing:2.894160pt;}
.ws11_c00146{word-spacing:3.833984pt;}
.ws12_c00146{word-spacing:3.846432pt;}
.ws2_c00146{word-spacing:4.170080pt;}
.ws1c_c00146{word-spacing:5.763424pt;}
.ws3_c00146{word-spacing:6.703248pt;}
.ws7_c00146{word-spacing:6.709472pt;}
.ws14_c00146{word-spacing:7.064240pt;}
.ws1f_c00146{word-spacing:7.667968pt;}
.ws18_c00146{word-spacing:10.904448pt;}
.wsb_c00146{word-spacing:11.203200pt;}
.ws19_c00146{word-spacing:11.838048pt;}
.ws6_c00146{word-spacing:12.180368pt;}
.ws13_c00146{word-spacing:12.479120pt;}
.wsf_c00146{word-spacing:14.383664pt;}
.wse_c00146{word-spacing:14.732208pt;}
.ws23_c00146{word-spacing:14.749124pt;}
.ws21_c00146{word-spacing:14.993383pt;}
.ws22_c00146{word-spacing:15.388356pt;}
.ws9_c00146{word-spacing:22.381504pt;}
.wsa_c00146{word-spacing:22.698928pt;}
.ws1_c00146{word-spacing:29.750720pt;}
._3_c00146{margin-left:-6.778725pt;}
._4_c00146{margin-left:-2.167766pt;}
._0_c00146{margin-left:-0.902480pt;}
._1_c00146{width:1.051856pt;}
._2_c00146{width:5.271728pt;}
.fs1_c00146{font-size:51.970133pt;}
.fs0_c00146{font-size:62.240000pt;}
.y0_c00146{bottom:0.000000pt;}
.y2_c00146{bottom:97.547527pt;}
.y1_c00146{bottom:115.387067pt;}
.y24_c00146{bottom:132.826265pt;}
.y23_c00146{bottom:148.666762pt;}
.y22_c00146{bottom:164.667067pt;}
.y21_c00146{bottom:180.981803pt;}
.y20_c00146{bottom:208.742399pt;}
.y1f_c00146{bottom:235.622299pt;}
.y1e_c00146{bottom:262.422843pt;}
.y1d_c00146{bottom:289.302743pt;}
.y1c_c00146{bottom:316.103287pt;}
.y1b_c00146{bottom:342.983187pt;}
.y1a_c00146{bottom:369.783731pt;}
.y19_c00146{bottom:396.663631pt;}
.y18_c00146{bottom:423.464175pt;}
.y17_c00146{bottom:450.344075pt;}
.y16_c00146{bottom:477.144619pt;}
.y15_c00146{bottom:504.024519pt;}
.y14_c00146{bottom:530.744151pt;}
.y13_c00146{bottom:557.624051pt;}
.y12_c00146{bottom:584.424595pt;}
.y11_c00146{bottom:611.304495pt;}
.y10_c00146{bottom:638.105039pt;}
.yf_c00146{bottom:664.984939pt;}
.ye_c00146{bottom:691.785483pt;}
.yd_c00146{bottom:718.665383pt;}
.yc_c00146{bottom:745.465927pt;}
.yb_c00146{bottom:772.345827pt;}
.ya_c00146{bottom:799.146371pt;}
.y9_c00146{bottom:826.026271pt;}
.y8_c00146{bottom:852.906171pt;}
.y7_c00146{bottom:879.706715pt;}
.y6_c00146{bottom:906.586615pt;}
.y5_c00146{bottom:933.387159pt;}
.y4_c00146{bottom:960.267059pt;}
.y3_c00146{bottom:987.067603pt;}
.h3_c00146{height:48.087599pt;}
.h1_c00146{height:55.797187pt;}
.h2_c00146{height:55.818243pt;}
.h0_c00146{height:1122.666667pt;}
.w0_c00146{width:793.333333pt;}
.x0_c00146{left:0.000000pt;}
.x2_c00146{left:73.520052pt;}
.x1_c00146{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bc443fa56efcebd4ca6a54d9.woff2')format("woff");}.ff1_c00147{font-family:ff1_c00147;line-height:1.106934;font-style:normal;font-weight:normal;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_c3ccc91b06d7d0ab7fec6d06.woff2')format("woff");}.ff2_c00147{font-family:ff2_c00147;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00147{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00147{vertical-align:-14.760000px;}
.v0_c00147{vertical-align:0.000000px;}
.v1_c00147{vertical-align:32.413122px;}
.lsc_c00147{letter-spacing:-0.075619px;}
.ls3_c00147{letter-spacing:-0.063018px;}
.lsb_c00147{letter-spacing:-0.049014px;}
.lsd_c00147{letter-spacing:-0.046773px;}
.ls6_c00147{letter-spacing:-0.042012px;}
.ls7_c00147{letter-spacing:-0.035010px;}
.lsa_c00147{letter-spacing:-0.028008px;}
.ls5_c00147{letter-spacing:-0.021006px;}
.ls8_c00147{letter-spacing:-0.014004px;}
.ls9_c00147{letter-spacing:-0.007002px;}
.ls4_c00147{letter-spacing:0.000000px;}
.ls0_c00147{letter-spacing:0.007002px;}
.ls2_c00147{letter-spacing:0.014004px;}
.ls1_c00147{letter-spacing:0.023281px;}
.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:-12.967628px;}
.ws1_c00147{word-spacing:-10.397640px;}
.ws1c_c00147{word-spacing:-0.298179px;}
.ws8_c00147{word-spacing:-0.021006px;}
.wsf_c00147{word-spacing:-0.007002px;}
.ws2_c00147{word-spacing:0.000000px;}
.wsb_c00147{word-spacing:0.007002px;}
.wsd_c00147{word-spacing:0.028008px;}
.ws16_c00147{word-spacing:0.350100px;}
.wsa_c00147{word-spacing:0.735210px;}
.wse_c00147{word-spacing:1.092312px;}
.ws15_c00147{word-spacing:2.877822px;}
.wsc_c00147{word-spacing:3.592026px;}
.ws19_c00147{word-spacing:4.320234px;}
.ws12_c00147{word-spacing:6.091740px;}
.ws17_c00147{word-spacing:6.119748px;}
.ws18_c00147{word-spacing:6.126750px;}
.ws11_c00147{word-spacing:6.140754px;}
.ws3_c00147{word-spacing:6.847956px;}
.ws1a_c00147{word-spacing:7.170048px;}
.ws1b_c00147{word-spacing:8.699800px;}
.ws9_c00147{word-spacing:10.432980px;}
.ws4_c00147{word-spacing:12.631608px;}
.ws7_c00147{word-spacing:14.403114px;}
.ws14_c00147{word-spacing:16.594740px;}
.ws13_c00147{word-spacing:16.930836px;}
.ws10_c00147{word-spacing:17.995140px;}
.ws6_c00147{word-spacing:21.216060px;}
.ws5_c00147{word-spacing:21.258072px;}
._3_c00147{margin-left:-2.710836px;}
._1_c00147{margin-left:-1.134324px;}
._0_c00147{width:1.169334px;}
._2_c00147{width:5.930694px;}
.fc0_c00147{color:rgb(0,0,0);}
.fs2_c00147{font-size:37.809600px;}
.fs1_c00147{font-size:46.562400px;}
.fs3_c00147{font-size:58.466400px;}
.fs0_c00147{font-size:70.020000px;}
.y0_c00147{bottom:0.000000px;}
.y2_c00147{bottom:109.740968px;}
.y1_c00147{bottom:129.810450px;}
.y23_c00147{bottom:149.429891px;}
.y22_c00147{bottom:170.940450px;}
.y21_c00147{bottom:185.698443px;}
.y20_c00147{bottom:234.838479px;}
.y1f_c00147{bottom:265.078367px;}
.y1e_c00147{bottom:295.228979px;}
.y1d_c00147{bottom:325.468866px;}
.y1c_c00147{bottom:355.619478px;}
.y1b_c00147{bottom:385.859365px;}
.y1a_c00147{bottom:416.009977px;}
.y19_c00147{bottom:446.249865px;}
.y18_c00147{bottom:476.400477px;}
.y17_c00147{bottom:506.640365px;}
.y16_c00147{bottom:536.790976px;}
.y15_c00147{bottom:567.030864px;}
.y14_c00147{bottom:597.087170px;}
.y13_c00147{bottom:627.327057px;}
.y12_c00147{bottom:657.477669px;}
.y11_c00147{bottom:687.717557px;}
.y10_c00147{bottom:717.868169px;}
.yf_c00147{bottom:748.108056px;}
.ye_c00147{bottom:778.258668px;}
.yd_c00147{bottom:808.498556px;}
.yc_c00147{bottom:838.649168px;}
.yb_c00147{bottom:868.889055px;}
.ya_c00147{bottom:899.039667px;}
.y9_c00147{bottom:929.279555px;}
.y8_c00147{bottom:959.519442px;}
.y7_c00147{bottom:989.670054px;}
.y6_c00147{bottom:1019.909942px;}
.y5_c00147{bottom:1050.060553px;}
.y4_c00147{bottom:1080.300441px;}
.y3_c00147{bottom:1110.451053px;}
.h4_c00147{height:39.338549px;}
.h5_c00147{height:54.098549px;}
.h1_c00147{height:62.771836px;}
.h3_c00147{height:62.780464px;}
.h2_c00147{height:74.155586px;}
.h0_c00147{height:1263.000000px;}
.w0_c00147{width:892.500000px;}
.x0_c00147{left:0.000000px;}
.x2_c00147{left:82.710059px;}
.x1_c00147{left:431.730000px;}
@media print{
.v2_c00147{vertical-align:-13.120000pt;}
.v0_c00147{vertical-align:0.000000pt;}
.v1_c00147{vertical-align:28.811664pt;}
.lsc_c00147{letter-spacing:-0.067217pt;}
.ls3_c00147{letter-spacing:-0.056016pt;}
.lsb_c00147{letter-spacing:-0.043568pt;}
.lsd_c00147{letter-spacing:-0.041576pt;}
.ls6_c00147{letter-spacing:-0.037344pt;}
.ls7_c00147{letter-spacing:-0.031120pt;}
.lsa_c00147{letter-spacing:-0.024896pt;}
.ls5_c00147{letter-spacing:-0.018672pt;}
.ls8_c00147{letter-spacing:-0.012448pt;}
.ls9_c00147{letter-spacing:-0.006224pt;}
.ls4_c00147{letter-spacing:0.000000pt;}
.ls0_c00147{letter-spacing:0.006224pt;}
.ls2_c00147{letter-spacing:0.012448pt;}
.ls1_c00147{letter-spacing:0.020694pt;}
.ws0_c00147{word-spacing:-11.526781pt;}
.ws1_c00147{word-spacing:-9.242347pt;}
.ws1c_c00147{word-spacing:-0.265048pt;}
.ws8_c00147{word-spacing:-0.018672pt;}
.wsf_c00147{word-spacing:-0.006224pt;}
.ws2_c00147{word-spacing:0.000000pt;}
.wsb_c00147{word-spacing:0.006224pt;}
.wsd_c00147{word-spacing:0.024896pt;}
.ws16_c00147{word-spacing:0.311200pt;}
.wsa_c00147{word-spacing:0.653520pt;}
.wse_c00147{word-spacing:0.970944pt;}
.ws15_c00147{word-spacing:2.558064pt;}
.wsc_c00147{word-spacing:3.192912pt;}
.ws19_c00147{word-spacing:3.840208pt;}
.ws12_c00147{word-spacing:5.414880pt;}
.ws17_c00147{word-spacing:5.439776pt;}
.ws18_c00147{word-spacing:5.446000pt;}
.ws11_c00147{word-spacing:5.458448pt;}
.ws3_c00147{word-spacing:6.087072pt;}
.ws1a_c00147{word-spacing:6.373376pt;}
.ws1b_c00147{word-spacing:7.733156pt;}
.ws9_c00147{word-spacing:9.273760pt;}
.ws4_c00147{word-spacing:11.228096pt;}
.ws7_c00147{word-spacing:12.802768pt;}
.ws14_c00147{word-spacing:14.750880pt;}
.ws13_c00147{word-spacing:15.049632pt;}
.ws10_c00147{word-spacing:15.995680pt;}
.ws6_c00147{word-spacing:18.858720pt;}
.ws5_c00147{word-spacing:18.896064pt;}
._3_c00147{margin-left:-2.409632pt;}
._1_c00147{margin-left:-1.008288pt;}
._0_c00147{width:1.039408pt;}
._2_c00147{width:5.271728pt;}
.fs2_c00147{font-size:33.608533pt;}
.fs1_c00147{font-size:41.388800pt;}
.fs3_c00147{font-size:51.970133pt;}
.fs0_c00147{font-size:62.240000pt;}
.y0_c00147{bottom:0.000000pt;}
.y2_c00147{bottom:97.547527pt;}
.y1_c00147{bottom:115.387067pt;}
.y23_c00147{bottom:132.826570pt;}
.y22_c00147{bottom:151.947067pt;}
.y21_c00147{bottom:165.065283pt;}
.y20_c00147{bottom:208.745315pt;}
.y1f_c00147{bottom:235.625215pt;}
.y1e_c00147{bottom:262.425759pt;}
.y1d_c00147{bottom:289.305659pt;}
.y1c_c00147{bottom:316.106203pt;}
.y1b_c00147{bottom:342.986103pt;}
.y1a_c00147{bottom:369.786647pt;}
.y19_c00147{bottom:396.666547pt;}
.y18_c00147{bottom:423.467091pt;}
.y17_c00147{bottom:450.346991pt;}
.y16_c00147{bottom:477.147535pt;}
.y15_c00147{bottom:504.027435pt;}
.y14_c00147{bottom:530.744151pt;}
.y13_c00147{bottom:557.624051pt;}
.y12_c00147{bottom:584.424595pt;}
.y11_c00147{bottom:611.304495pt;}
.y10_c00147{bottom:638.105039pt;}
.yf_c00147{bottom:664.984939pt;}
.ye_c00147{bottom:691.785483pt;}
.yd_c00147{bottom:718.665383pt;}
.yc_c00147{bottom:745.465927pt;}
.yb_c00147{bottom:772.345827pt;}
.ya_c00147{bottom:799.146371pt;}
.y9_c00147{bottom:826.026271pt;}
.y8_c00147{bottom:852.906171pt;}
.y7_c00147{bottom:879.706715pt;}
.y6_c00147{bottom:906.586615pt;}
.y5_c00147{bottom:933.387159pt;}
.y4_c00147{bottom:960.267059pt;}
.y3_c00147{bottom:987.067603pt;}
.h4_c00147{height:34.967599pt;}
.h5_c00147{height:48.087599pt;}
.h1_c00147{height:55.797187pt;}
.h3_c00147{height:55.804857pt;}
.h2_c00147{height:65.916076pt;}
.h0_c00147{height:1122.666667pt;}
.w0_c00147{width:793.333333pt;}
.x0_c00147{left:0.000000pt;}
.x2_c00147{left:73.520052pt;}
.x1_c00147{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4f5aba460fda138c18105a67.woff2')format("woff");}.ff1_c00148{font-family:ff1_c00148;line-height:1.106934;font-style:normal;font-weight:normal;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_8dcc2466c3410e2ae83bdd6f.woff2')format("woff");}.ff2_c00148{font-family:ff2_c00148;line-height:1.133301;font-style:normal;font-weight:normal;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_b595377be5f078d7d4da0d3c.woff2')format("woff");}.ff3_c00148{font-family:ff3_c00148;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00148{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00148{vertical-align:-14.760000px;}
.v0_c00148{vertical-align:0.000000px;}
.v1_c00148{vertical-align:32.053464px;}
.ls11_c00148{letter-spacing:-0.385878px;}
.ls18_c00148{letter-spacing:-0.315719px;}
.ls1a_c00148{letter-spacing:-0.169553px;}
.ls21_c00148{letter-spacing:-0.163706px;}
.ls13_c00148{letter-spacing:-0.134473px;}
.ls1c_c00148{letter-spacing:-0.128626px;}
.ls12_c00148{letter-spacing:-0.116933px;}
.ls19_c00148{letter-spacing:-0.111086px;}
.ls23_c00148{letter-spacing:-0.099393px;}
.lsf_c00148{letter-spacing:-0.075619px;}
.ls1e_c00148{letter-spacing:-0.064313px;}
.ls7_c00148{letter-spacing:-0.063018px;}
.lsc_c00148{letter-spacing:-0.049014px;}
.ls17_c00148{letter-spacing:-0.046773px;}
.ls9_c00148{letter-spacing:-0.042012px;}
.ls14_c00148{letter-spacing:-0.040926px;}
.lsd_c00148{letter-spacing:-0.028008px;}
.ls16_c00148{letter-spacing:-0.023387px;}
.lsb_c00148{letter-spacing:-0.021006px;}
.ls15_c00148{letter-spacing:-0.017540px;}
.lsa_c00148{letter-spacing:-0.014004px;}
.lse_c00148{letter-spacing:-0.007002px;}
.ls1d_c00148{letter-spacing:-0.005847px;}
.ls8_c00148{letter-spacing:0.000000px;}
.ls4_c00148{letter-spacing:0.005847px;}
.ls2_c00148{letter-spacing:0.007002px;}
.ls0_c00148{letter-spacing:0.014004px;}
.ls1_c00148{letter-spacing:0.021006px;}
.ls3_c00148{letter-spacing:0.023281px;}
.ls6_c00148{letter-spacing:0.076006px;}
.ls22_c00148{letter-spacing:0.152013px;}
.ls1b_c00148{letter-spacing:0.233866px;}
.ls20_c00148{letter-spacing:0.344952px;}
.ls1f_c00148{letter-spacing:0.461885px;}
.ls10_c00148{letter-spacing:0.479424px;}
.ls5_c00148{letter-spacing:4.683159px;}
.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;}
}
.ws3_c00148{word-spacing:-16.657077px;}
.ws2_c00148{word-spacing:-15.879474px;}
.ws0_c00148{word-spacing:-12.967628px;}
.ws1_c00148{word-spacing:-10.397640px;}
.ws13_c00148{word-spacing:-0.028008px;}
.ws4_c00148{word-spacing:0.000000px;}
.ws5_c00148{word-spacing:0.028008px;}
.ws31_c00148{word-spacing:0.029233px;}
.ws9_c00148{word-spacing:0.035010px;}
.ws30_c00148{word-spacing:0.111086px;}
.wsd_c00148{word-spacing:0.343098px;}
.ws19_c00148{word-spacing:0.357102px;}
.ws7_c00148{word-spacing:0.406116px;}
.ws20_c00148{word-spacing:0.415111px;}
.ws1e_c00148{word-spacing:0.491118px;}
.ws1f_c00148{word-spacing:0.508658px;}
.ws1d_c00148{word-spacing:1.695526px;}
.wse_c00148{word-spacing:1.799514px;}
.wsc_c00148{word-spacing:2.163618px;}
.ws8_c00148{word-spacing:3.248928px;}
.ws21_c00148{word-spacing:3.630763px;}
.ws10_c00148{word-spacing:3.963132px;}
.ws22_c00148{word-spacing:3.969869px;}
.ws11_c00148{word-spacing:3.977136px;}
.ws25_c00148{word-spacing:4.086801px;}
.ws12_c00148{word-spacing:4.306230px;}
.ws29_c00148{word-spacing:4.396673px;}
.ws27_c00148{word-spacing:4.460986px;}
.ws26_c00148{word-spacing:4.501913px;}
.ws17_c00148{word-spacing:4.649328px;}
.ws28_c00148{word-spacing:5.180123px;}
.ws1b_c00148{word-spacing:5.412546px;}
.ws2e_c00148{word-spacing:5.981113px;}
.ws2f_c00148{word-spacing:6.057119px;}
.ws2d_c00148{word-spacing:6.296831px;}
.ws15_c00148{word-spacing:6.455844px;}
.ws14_c00148{word-spacing:6.469848px;}
.ws6_c00148{word-spacing:6.840954px;}
.ws1c_c00148{word-spacing:6.854958px;}
.ws16_c00148{word-spacing:6.868962px;}
.wsb_c00148{word-spacing:8.248356px;}
.wsa_c00148{word-spacing:8.255358px;}
.ws24_c00148{word-spacing:8.337309px;}
.ws23_c00148{word-spacing:8.676414px;}
.ws2b_c00148{word-spacing:12.605356px;}
.ws2c_c00148{word-spacing:12.628742px;}
.ws2a_c00148{word-spacing:13.102320px;}
.ws18_c00148{word-spacing:16.930836px;}
.ws1a_c00148{word-spacing:19.787652px;}
.wsf_c00148{word-spacing:25.165188px;}
._2_c00148{margin-left:-1.974564px;}
._0_c00148{width:1.036296px;}
._1_c00148{width:2.065590px;}
._3_c00148{width:5.930694px;}
.fc0_c00148{color:rgb(0,0,0);}
.fs2_c00148{font-size:37.809600px;}
.fs1_c00148{font-size:46.562400px;}
.fs3_c00148{font-size:58.466400px;}
.fs0_c00148{font-size:70.020000px;}
.y0_c00148{bottom:0.000000px;}
.y2_c00148{bottom:109.740968px;}
.y1_c00148{bottom:129.810450px;}
.y26_c00148{bottom:149.429548px;}
.y25_c00148{bottom:167.250107px;}
.y24_c00148{bottom:185.251010px;}
.y23_c00148{bottom:202.980946px;}
.y22_c00148{bottom:221.068431px;}
.y21_c00148{bottom:238.888990px;}
.y20_c00148{bottom:256.709548px;}
.y1f_c00148{bottom:274.709891px;}
.y1e_c00148{bottom:296.220450px;}
.y1d_c00148{bottom:310.889037px;}
.y1c_c00148{bottom:355.619563px;}
.y1b_c00148{bottom:385.859451px;}
.y1a_c00148{bottom:416.010063px;}
.y19_c00148{bottom:446.249950px;}
.y18_c00148{bottom:476.400562px;}
.y17_c00148{bottom:506.637084px;}
.y16_c00148{bottom:536.787696px;}
.y15_c00148{bottom:567.027584px;}
.y14_c00148{bottom:597.087170px;}
.y13_c00148{bottom:627.327057px;}
.y12_c00148{bottom:657.477669px;}
.y11_c00148{bottom:687.717557px;}
.y10_c00148{bottom:717.868169px;}
.yf_c00148{bottom:748.108056px;}
.ye_c00148{bottom:778.258668px;}
.yd_c00148{bottom:808.498556px;}
.yc_c00148{bottom:838.649168px;}
.yb_c00148{bottom:868.889055px;}
.ya_c00148{bottom:899.039667px;}
.y9_c00148{bottom:929.279555px;}
.y8_c00148{bottom:959.519442px;}
.y7_c00148{bottom:989.670054px;}
.y6_c00148{bottom:1019.909942px;}
.y5_c00148{bottom:1050.060553px;}
.y4_c00148{bottom:1080.300441px;}
.y3_c00148{bottom:1110.451053px;}
.h4_c00148{height:39.338549px;}
.h5_c00148{height:54.098549px;}
.h6_c00148{height:54.106625px;}
.h1_c00148{height:62.771836px;}
.h3_c00148{height:62.777488px;}
.h2_c00148{height:73.795928px;}
.h0_c00148{height:1263.000000px;}
.w0_c00148{width:892.500000px;}
.x0_c00148{left:0.000000px;}
.x2_c00148{left:82.710059px;}
.x1_c00148{left:431.730000px;}
@media print{
.v2_c00148{vertical-align:-13.120000pt;}
.v0_c00148{vertical-align:0.000000pt;}
.v1_c00148{vertical-align:28.491968pt;}
.ls11_c00148{letter-spacing:-0.343003pt;}
.ls18_c00148{letter-spacing:-0.280639pt;}
.ls1a_c00148{letter-spacing:-0.150713pt;}
.ls21_c00148{letter-spacing:-0.145516pt;}
.ls13_c00148{letter-spacing:-0.119531pt;}
.ls1c_c00148{letter-spacing:-0.114334pt;}
.ls12_c00148{letter-spacing:-0.103940pt;}
.ls19_c00148{letter-spacing:-0.098743pt;}
.ls23_c00148{letter-spacing:-0.088349pt;}
.lsf_c00148{letter-spacing:-0.067217pt;}
.ls1e_c00148{letter-spacing:-0.057167pt;}
.ls7_c00148{letter-spacing:-0.056016pt;}
.lsc_c00148{letter-spacing:-0.043568pt;}
.ls17_c00148{letter-spacing:-0.041576pt;}
.ls9_c00148{letter-spacing:-0.037344pt;}
.ls14_c00148{letter-spacing:-0.036379pt;}
.lsd_c00148{letter-spacing:-0.024896pt;}
.ls16_c00148{letter-spacing:-0.020788pt;}
.lsb_c00148{letter-spacing:-0.018672pt;}
.ls15_c00148{letter-spacing:-0.015591pt;}
.lsa_c00148{letter-spacing:-0.012448pt;}
.lse_c00148{letter-spacing:-0.006224pt;}
.ls1d_c00148{letter-spacing:-0.005197pt;}
.ls8_c00148{letter-spacing:0.000000pt;}
.ls4_c00148{letter-spacing:0.005197pt;}
.ls2_c00148{letter-spacing:0.006224pt;}
.ls0_c00148{letter-spacing:0.012448pt;}
.ls1_c00148{letter-spacing:0.018672pt;}
.ls3_c00148{letter-spacing:0.020694pt;}
.ls6_c00148{letter-spacing:0.067561pt;}
.ls22_c00148{letter-spacing:0.135122pt;}
.ls1b_c00148{letter-spacing:0.207881pt;}
.ls20_c00148{letter-spacing:0.306624pt;}
.ls1f_c00148{letter-spacing:0.410564pt;}
.ls10_c00148{letter-spacing:0.426155pt;}
.ls5_c00148{letter-spacing:4.162808pt;}
.ws3_c00148{word-spacing:-14.806291pt;}
.ws2_c00148{word-spacing:-14.115088pt;}
.ws0_c00148{word-spacing:-11.526781pt;}
.ws1_c00148{word-spacing:-9.242347pt;}
.ws13_c00148{word-spacing:-0.024896pt;}
.ws4_c00148{word-spacing:0.000000pt;}
.ws5_c00148{word-spacing:0.024896pt;}
.ws31_c00148{word-spacing:0.025985pt;}
.ws9_c00148{word-spacing:0.031120pt;}
.ws30_c00148{word-spacing:0.098743pt;}
.wsd_c00148{word-spacing:0.304976pt;}
.ws19_c00148{word-spacing:0.317424pt;}
.ws7_c00148{word-spacing:0.360992pt;}
.ws20_c00148{word-spacing:0.368988pt;}
.ws1e_c00148{word-spacing:0.436549pt;}
.ws1f_c00148{word-spacing:0.452140pt;}
.ws1d_c00148{word-spacing:1.507134pt;}
.wse_c00148{word-spacing:1.599568pt;}
.wsc_c00148{word-spacing:1.923216pt;}
.ws8_c00148{word-spacing:2.887936pt;}
.ws21_c00148{word-spacing:3.227345pt;}
.ws10_c00148{word-spacing:3.522784pt;}
.ws22_c00148{word-spacing:3.528772pt;}
.ws11_c00148{word-spacing:3.535232pt;}
.ws25_c00148{word-spacing:3.632712pt;}
.ws12_c00148{word-spacing:3.827760pt;}
.ws29_c00148{word-spacing:3.908154pt;}
.ws27_c00148{word-spacing:3.965321pt;}
.ws26_c00148{word-spacing:4.001700pt;}
.ws17_c00148{word-spacing:4.132736pt;}
.ws28_c00148{word-spacing:4.604554pt;}
.ws1b_c00148{word-spacing:4.811152pt;}
.ws2e_c00148{word-spacing:5.316545pt;}
.ws2f_c00148{word-spacing:5.384106pt;}
.ws2d_c00148{word-spacing:5.597183pt;}
.ws15_c00148{word-spacing:5.738528pt;}
.ws14_c00148{word-spacing:5.750976pt;}
.ws6_c00148{word-spacing:6.080848pt;}
.ws1c_c00148{word-spacing:6.093296pt;}
.ws16_c00148{word-spacing:6.105744pt;}
.wsb_c00148{word-spacing:7.331872pt;}
.wsa_c00148{word-spacing:7.338096pt;}
.ws24_c00148{word-spacing:7.410941pt;}
.ws23_c00148{word-spacing:7.712368pt;}
.ws2b_c00148{word-spacing:11.204761pt;}
.ws2c_c00148{word-spacing:11.225549pt;}
.ws2a_c00148{word-spacing:11.646507pt;}
.ws18_c00148{word-spacing:15.049632pt;}
.ws1a_c00148{word-spacing:17.589024pt;}
.wsf_c00148{word-spacing:22.369056pt;}
._2_c00148{margin-left:-1.755168pt;}
._0_c00148{width:0.921152pt;}
._1_c00148{width:1.836080pt;}
._3_c00148{width:5.271728pt;}
.fs2_c00148{font-size:33.608533pt;}
.fs1_c00148{font-size:41.388800pt;}
.fs3_c00148{font-size:51.970133pt;}
.fs0_c00148{font-size:62.240000pt;}
.y0_c00148{bottom:0.000000pt;}
.y2_c00148{bottom:97.547527pt;}
.y1_c00148{bottom:115.387067pt;}
.y26_c00148{bottom:132.826265pt;}
.y25_c00148{bottom:148.666762pt;}
.y24_c00148{bottom:164.667564pt;}
.y23_c00148{bottom:180.427507pt;}
.y22_c00148{bottom:196.505272pt;}
.y21_c00148{bottom:212.345769pt;}
.y20_c00148{bottom:228.186265pt;}
.y1f_c00148{bottom:244.186570pt;}
.y1e_c00148{bottom:263.307067pt;}
.y1d_c00148{bottom:276.345811pt;}
.y1c_c00148{bottom:316.106279pt;}
.y1b_c00148{bottom:342.986179pt;}
.y1a_c00148{bottom:369.786723pt;}
.y19_c00148{bottom:396.666623pt;}
.y18_c00148{bottom:423.467167pt;}
.y17_c00148{bottom:450.344075pt;}
.y16_c00148{bottom:477.144619pt;}
.y15_c00148{bottom:504.024519pt;}
.y14_c00148{bottom:530.744151pt;}
.y13_c00148{bottom:557.624051pt;}
.y12_c00148{bottom:584.424595pt;}
.y11_c00148{bottom:611.304495pt;}
.y10_c00148{bottom:638.105039pt;}
.yf_c00148{bottom:664.984939pt;}
.ye_c00148{bottom:691.785483pt;}
.yd_c00148{bottom:718.665383pt;}
.yc_c00148{bottom:745.465927pt;}
.yb_c00148{bottom:772.345827pt;}
.ya_c00148{bottom:799.146371pt;}
.y9_c00148{bottom:826.026271pt;}
.y8_c00148{bottom:852.906171pt;}
.y7_c00148{bottom:879.706715pt;}
.y6_c00148{bottom:906.586615pt;}
.y5_c00148{bottom:933.387159pt;}
.y4_c00148{bottom:960.267059pt;}
.y3_c00148{bottom:987.067603pt;}
.h4_c00148{height:34.967599pt;}
.h5_c00148{height:48.087599pt;}
.h6_c00148{height:48.094778pt;}
.h1_c00148{height:55.797187pt;}
.h3_c00148{height:55.802212pt;}
.h2_c00148{height:65.596380pt;}
.h0_c00148{height:1122.666667pt;}
.w0_c00148{width:793.333333pt;}
.x0_c00148{left:0.000000pt;}
.x2_c00148{left:73.520052pt;}
.x1_c00148{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6a254bd63ad3384d9f097541.woff2')format("woff");}.ff1_c00149{font-family:ff1_c00149;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00149{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00149{vertical-align:0.000000px;}
.ls4_c00149{letter-spacing:-0.063018px;}
.lsa_c00149{letter-spacing:-0.042012px;}
.ls9_c00149{letter-spacing:-0.035010px;}
.ls8_c00149{letter-spacing:-0.021006px;}
.ls6_c00149{letter-spacing:-0.014004px;}
.ls7_c00149{letter-spacing:-0.007002px;}
.ls5_c00149{letter-spacing:0.000000px;}
.ls0_c00149{letter-spacing:0.007002px;}
.ls2_c00149{letter-spacing:0.014004px;}
.ls1_c00149{letter-spacing:0.035010px;}
.ls3_c00149{letter-spacing:0.098028px;}
.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;}
}
.ws11_c00149{word-spacing:-0.014004px;}
.ws19_c00149{word-spacing:-0.007002px;}
.ws0_c00149{word-spacing:0.000000px;}
.ws21_c00149{word-spacing:0.245070px;}
.ws1d_c00149{word-spacing:0.350100px;}
.ws9_c00149{word-spacing:0.357102px;}
.ws1c_c00149{word-spacing:0.378108px;}
.ws13_c00149{word-spacing:1.449414px;}
.wsa_c00149{word-spacing:1.792512px;}
.ws1b_c00149{word-spacing:2.163618px;}
.wsd_c00149{word-spacing:4.663332px;}
.ws16_c00149{word-spacing:5.069448px;}
.ws14_c00149{word-spacing:5.377536px;}
.ws15_c00149{word-spacing:5.391540px;}
.ws6_c00149{word-spacing:6.098742px;}
.ws2_c00149{word-spacing:6.119748px;}
.ws5_c00149{word-spacing:6.126750px;}
.ws20_c00149{word-spacing:6.476850px;}
.ws4_c00149{word-spacing:6.791940px;}
.ws1_c00149{word-spacing:7.898256px;}
.wsc_c00149{word-spacing:7.919262px;}
.wsb_c00149{word-spacing:7.926264px;}
.ws17_c00149{word-spacing:8.255358px;}
.ws18_c00149{word-spacing:8.276364px;}
.ws1e_c00149{word-spacing:8.997570px;}
.ws3_c00149{word-spacing:9.711774px;}
.ws1f_c00149{word-spacing:12.610602px;}
.ws12_c00149{word-spacing:13.660902px;}
.ws10_c00149{word-spacing:20.144754px;}
.wsf_c00149{word-spacing:20.179764px;}
.ws8_c00149{word-spacing:20.886966px;}
.ws7_c00149{word-spacing:21.244068px;}
.wse_c00149{word-spacing:23.393682px;}
.ws1a_c00149{word-spacing:24.093882px;}
._2_c00149{margin-left:-6.476850px;}
._1_c00149{margin-left:-1.365390px;}
._0_c00149{width:1.078308px;}
.fc0_c00149{color:rgb(0,0,0);}
.fs0_c00149{font-size:70.020000px;}
.y0_c00149{bottom:0.000000px;}
.y2_c00149{bottom:109.740968px;}
.y1_c00149{bottom:129.810450px;}
.y22_c00149{bottom:174.444699px;}
.y21_c00149{bottom:204.684587px;}
.y20_c00149{bottom:234.835199px;}
.y1f_c00149{bottom:265.075086px;}
.y1e_c00149{bottom:295.225698px;}
.y1d_c00149{bottom:325.465586px;}
.y1c_c00149{bottom:355.616198px;}
.y1b_c00149{bottom:385.856085px;}
.y1a_c00149{bottom:416.006697px;}
.y19_c00149{bottom:446.246585px;}
.y18_c00149{bottom:476.397197px;}
.y17_c00149{bottom:506.637084px;}
.y16_c00149{bottom:536.787696px;}
.y15_c00149{bottom:567.027584px;}
.y14_c00149{bottom:597.087170px;}
.y13_c00149{bottom:627.327057px;}
.y12_c00149{bottom:657.477669px;}
.y11_c00149{bottom:687.717557px;}
.y10_c00149{bottom:717.868169px;}
.yf_c00149{bottom:748.108056px;}
.ye_c00149{bottom:778.258668px;}
.yd_c00149{bottom:808.498556px;}
.yc_c00149{bottom:838.649168px;}
.yb_c00149{bottom:868.889055px;}
.ya_c00149{bottom:899.039667px;}
.y9_c00149{bottom:929.279555px;}
.y8_c00149{bottom:959.519442px;}
.y7_c00149{bottom:989.670054px;}
.y6_c00149{bottom:1019.909942px;}
.y5_c00149{bottom:1050.060553px;}
.y4_c00149{bottom:1080.300441px;}
.y3_c00149{bottom:1110.451053px;}
.h1_c00149{height:62.771836px;}
.h0_c00149{height:1263.000000px;}
.w0_c00149{width:892.500000px;}
.x0_c00149{left:0.000000px;}
.x2_c00149{left:82.710059px;}
.x1_c00149{left:431.730000px;}
@media print{
.v0_c00149{vertical-align:0.000000pt;}
.ls4_c00149{letter-spacing:-0.056016pt;}
.lsa_c00149{letter-spacing:-0.037344pt;}
.ls9_c00149{letter-spacing:-0.031120pt;}
.ls8_c00149{letter-spacing:-0.018672pt;}
.ls6_c00149{letter-spacing:-0.012448pt;}
.ls7_c00149{letter-spacing:-0.006224pt;}
.ls5_c00149{letter-spacing:0.000000pt;}
.ls0_c00149{letter-spacing:0.006224pt;}
.ls2_c00149{letter-spacing:0.012448pt;}
.ls1_c00149{letter-spacing:0.031120pt;}
.ls3_c00149{letter-spacing:0.087136pt;}
.ws11_c00149{word-spacing:-0.012448pt;}
.ws19_c00149{word-spacing:-0.006224pt;}
.ws0_c00149{word-spacing:0.000000pt;}
.ws21_c00149{word-spacing:0.217840pt;}
.ws1d_c00149{word-spacing:0.311200pt;}
.ws9_c00149{word-spacing:0.317424pt;}
.ws1c_c00149{word-spacing:0.336096pt;}
.ws13_c00149{word-spacing:1.288368pt;}
.wsa_c00149{word-spacing:1.593344pt;}
.ws1b_c00149{word-spacing:1.923216pt;}
.wsd_c00149{word-spacing:4.145184pt;}
.ws16_c00149{word-spacing:4.506176pt;}
.ws14_c00149{word-spacing:4.780032pt;}
.ws15_c00149{word-spacing:4.792480pt;}
.ws6_c00149{word-spacing:5.421104pt;}
.ws2_c00149{word-spacing:5.439776pt;}
.ws5_c00149{word-spacing:5.446000pt;}
.ws20_c00149{word-spacing:5.757200pt;}
.ws4_c00149{word-spacing:6.037280pt;}
.ws1_c00149{word-spacing:7.020672pt;}
.wsc_c00149{word-spacing:7.039344pt;}
.wsb_c00149{word-spacing:7.045568pt;}
.ws17_c00149{word-spacing:7.338096pt;}
.ws18_c00149{word-spacing:7.356768pt;}
.ws1e_c00149{word-spacing:7.997840pt;}
.ws3_c00149{word-spacing:8.632688pt;}
.ws1f_c00149{word-spacing:11.209424pt;}
.ws12_c00149{word-spacing:12.143024pt;}
.ws10_c00149{word-spacing:17.906448pt;}
.wsf_c00149{word-spacing:17.937568pt;}
.ws8_c00149{word-spacing:18.566192pt;}
.ws7_c00149{word-spacing:18.883616pt;}
.wse_c00149{word-spacing:20.794384pt;}
.ws1a_c00149{word-spacing:21.416784pt;}
._2_c00149{margin-left:-5.757200pt;}
._1_c00149{margin-left:-1.213680pt;}
._0_c00149{width:0.958496pt;}
.fs0_c00149{font-size:62.240000pt;}
.y0_c00149{bottom:0.000000pt;}
.y2_c00149{bottom:97.547527pt;}
.y1_c00149{bottom:115.387067pt;}
.y22_c00149{bottom:155.061955pt;}
.y21_c00149{bottom:181.941855pt;}
.y20_c00149{bottom:208.742399pt;}
.y1f_c00149{bottom:235.622299pt;}
.y1e_c00149{bottom:262.422843pt;}
.y1d_c00149{bottom:289.302743pt;}
.y1c_c00149{bottom:316.103287pt;}
.y1b_c00149{bottom:342.983187pt;}
.y1a_c00149{bottom:369.783731pt;}
.y19_c00149{bottom:396.663631pt;}
.y18_c00149{bottom:423.464175pt;}
.y17_c00149{bottom:450.344075pt;}
.y16_c00149{bottom:477.144619pt;}
.y15_c00149{bottom:504.024519pt;}
.y14_c00149{bottom:530.744151pt;}
.y13_c00149{bottom:557.624051pt;}
.y12_c00149{bottom:584.424595pt;}
.y11_c00149{bottom:611.304495pt;}
.y10_c00149{bottom:638.105039pt;}
.yf_c00149{bottom:664.984939pt;}
.ye_c00149{bottom:691.785483pt;}
.yd_c00149{bottom:718.665383pt;}
.yc_c00149{bottom:745.465927pt;}
.yb_c00149{bottom:772.345827pt;}
.ya_c00149{bottom:799.146371pt;}
.y9_c00149{bottom:826.026271pt;}
.y8_c00149{bottom:852.906171pt;}
.y7_c00149{bottom:879.706715pt;}
.y6_c00149{bottom:906.586615pt;}
.y5_c00149{bottom:933.387159pt;}
.y4_c00149{bottom:960.267059pt;}
.y3_c00149{bottom:987.067603pt;}
.h1_c00149{height:55.797187pt;}
.h0_c00149{height:1122.666667pt;}
.w0_c00149{width:793.333333pt;}
.x0_c00149{left:0.000000pt;}
.x2_c00149{left:73.520052pt;}
.x1_c00149{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_45acd760342f3e03fe9a222c.woff2')format("woff");}.ff1_c00150{font-family:ff1_c00150;line-height:1.106934;font-style:normal;font-weight:normal;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_1414db2d1f4b064c36f5ef31.woff2')format("woff");}.ff2_c00150{font-family:ff2_c00150;line-height:1.104492;font-style:normal;font-weight:normal;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_8ac45aada411c2bec66e552d.woff2')format("woff");}.ff3_c00150{font-family:ff3_c00150;line-height:1.133301;font-style:normal;font-weight:normal;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_b8dd07a093de5548d3d091d3.woff2')format("woff");}.ff4_c00150{font-family:ff4_c00150;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00150{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00150{vertical-align:-14.760000px;}
.v0_c00150{vertical-align:0.000000px;}
.v1_c00150{vertical-align:32.044032px;}
.ls17_c00150{letter-spacing:-1.064088px;}
.ls11_c00150{letter-spacing:-0.619744px;}
.ls13_c00150{letter-spacing:-0.257252px;}
.lsf_c00150{letter-spacing:-0.198786px;}
.ls16_c00150{letter-spacing:-0.128626px;}
.lse_c00150{letter-spacing:-0.075619px;}
.ls6_c00150{letter-spacing:-0.063018px;}
.lsb_c00150{letter-spacing:-0.049014px;}
.lsd_c00150{letter-spacing:-0.042012px;}
.lsc_c00150{letter-spacing:-0.035010px;}
.ls8_c00150{letter-spacing:-0.028008px;}
.lsa_c00150{letter-spacing:-0.014004px;}
.ls10_c00150{letter-spacing:-0.011693px;}
.ls9_c00150{letter-spacing:-0.007002px;}
.ls7_c00150{letter-spacing:0.000000px;}
.ls3_c00150{letter-spacing:0.007002px;}
.ls1_c00150{letter-spacing:0.014004px;}
.ls4_c00150{letter-spacing:0.021006px;}
.ls0_c00150{letter-spacing:0.023281px;}
.ls5_c00150{letter-spacing:0.023387px;}
.ls2_c00150{letter-spacing:0.042012px;}
.ls15_c00150{letter-spacing:0.046773px;}
.ls14_c00150{letter-spacing:0.076006px;}
.ls12_c00150{letter-spacing:0.537891px;}
.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:-12.967628px;}
.ws1_c00150{word-spacing:-10.397640px;}
.ws1b_c00150{word-spacing:-0.146166px;}
.ws20_c00150{word-spacing:-0.087700px;}
.ws4_c00150{word-spacing:-0.007002px;}
.ws2_c00150{word-spacing:0.000000px;}
.ws11_c00150{word-spacing:0.021006px;}
.ws25_c00150{word-spacing:0.023387px;}
.ws15_c00150{word-spacing:0.028008px;}
.ws16_c00150{word-spacing:0.336096px;}
.wsd_c00150{word-spacing:0.392112px;}
.ws17_c00150{word-spacing:0.686196px;}
.ws12_c00150{word-spacing:0.707202px;}
.ws13_c00150{word-spacing:0.714204px;}
.wsb_c00150{word-spacing:0.735210px;}
.ws18_c00150{word-spacing:1.064304px;}
.wsa_c00150{word-spacing:1.442412px;}
.ws6_c00150{word-spacing:1.771506px;}
.ws1d_c00150{word-spacing:1.789072px;}
.ws1c_c00150{word-spacing:2.186643px;}
.ws1e_c00150{word-spacing:2.432202px;}
.wsf_c00150{word-spacing:2.863818px;}
.ws1f_c00150{word-spacing:3.437824px;}
.ws23_c00150{word-spacing:4.823478px;}
.ws1a_c00150{word-spacing:5.020434px;}
.ws19_c00150{word-spacing:5.055444px;}
.ws10_c00150{word-spacing:5.377536px;}
.ws7_c00150{word-spacing:5.398542px;}
.ws8_c00150{word-spacing:5.412546px;}
.ws24_c00150{word-spacing:5.758940px;}
.wse_c00150{word-spacing:6.063732px;}
.wsc_c00150{word-spacing:9.011574px;}
.ws3_c00150{word-spacing:9.375678px;}
.ws14_c00150{word-spacing:15.831522px;}
.ws9_c00150{word-spacing:17.294940px;}
.ws5_c00150{word-spacing:25.557300px;}
.ws21_c00150{word-spacing:27.654607px;}
.ws22_c00150{word-spacing:28.046332px;}
._3_c00150{margin-left:-2.707092px;}
._1_c00150{margin-left:-1.330380px;}
._0_c00150{width:1.204344px;}
._4_c00150{width:2.581625px;}
._2_c00150{width:5.930694px;}
.fc0_c00150{color:rgb(0,0,0);}
.fs2_c00150{font-size:37.809600px;}
.fs1_c00150{font-size:46.562400px;}
.fs3_c00150{font-size:58.466400px;}
.fs0_c00150{font-size:70.020000px;}
.y0_c00150{bottom:0.000000px;}
.y2_c00150{bottom:109.740968px;}
.y1_c00150{bottom:129.810450px;}
.y24_c00150{bottom:149.428088px;}
.y23_c00150{bottom:167.248647px;}
.y22_c00150{bottom:185.248990px;}
.y21_c00150{bottom:203.069548px;}
.y20_c00150{bottom:221.069891px;}
.y1f_c00150{bottom:242.580450px;}
.y1e_c00150{bottom:260.400450px;}
.y1d_c00150{bottom:275.159469px;}
.y1c_c00150{bottom:355.619451px;}
.y1b_c00150{bottom:385.859338px;}
.y1a_c00150{bottom:416.009951px;}
.y19_c00150{bottom:446.249838px;}
.y18_c00150{bottom:476.399478px;}
.y17_c00150{bottom:506.639365px;}
.y16_c00150{bottom:536.789977px;}
.y15_c00150{bottom:567.029865px;}
.y14_c00150{bottom:597.089451px;}
.y13_c00150{bottom:627.329338px;}
.y12_c00150{bottom:657.479950px;}
.y11_c00150{bottom:687.719838px;}
.y10_c00150{bottom:717.869177px;}
.yf_c00150{bottom:748.109064px;}
.ye_c00150{bottom:778.259676px;}
.yd_c00150{bottom:808.499564px;}
.yc_c00150{bottom:838.650176px;}
.yb_c00150{bottom:868.890063px;}
.ya_c00150{bottom:899.040675px;}
.y9_c00150{bottom:929.280563px;}
.y8_c00150{bottom:959.519442px;}
.y7_c00150{bottom:989.670054px;}
.y6_c00150{bottom:1019.909942px;}
.y5_c00150{bottom:1050.060553px;}
.y4_c00150{bottom:1080.300441px;}
.y3_c00150{bottom:1110.451053px;}
.h7_c00150{height:39.338549px;}
.h8_c00150{height:54.098549px;}
.h4_c00150{height:62.600889px;}
.h1_c00150{height:62.771836px;}
.h6_c00150{height:62.775760px;}
.h2_c00150{height:73.786496px;}
.h5_c00150{height:74.033274px;}
.h3_c00150{height:74.147558px;}
.h0_c00150{height:1263.000000px;}
.w0_c00150{width:892.500000px;}
.x0_c00150{left:0.000000px;}
.x2_c00150{left:82.710059px;}
.x1_c00150{left:431.730000px;}
@media print{
.v2_c00150{vertical-align:-13.120000pt;}
.v0_c00150{vertical-align:0.000000pt;}
.v1_c00150{vertical-align:28.483584pt;}
.ls17_c00150{letter-spacing:-0.945856pt;}
.ls11_c00150{letter-spacing:-0.550883pt;}
.ls13_c00150{letter-spacing:-0.228669pt;}
.lsf_c00150{letter-spacing:-0.176698pt;}
.ls16_c00150{letter-spacing:-0.114334pt;}
.lse_c00150{letter-spacing:-0.067217pt;}
.ls6_c00150{letter-spacing:-0.056016pt;}
.lsb_c00150{letter-spacing:-0.043568pt;}
.lsd_c00150{letter-spacing:-0.037344pt;}
.lsc_c00150{letter-spacing:-0.031120pt;}
.ls8_c00150{letter-spacing:-0.024896pt;}
.lsa_c00150{letter-spacing:-0.012448pt;}
.ls10_c00150{letter-spacing:-0.010394pt;}
.ls9_c00150{letter-spacing:-0.006224pt;}
.ls7_c00150{letter-spacing:0.000000pt;}
.ls3_c00150{letter-spacing:0.006224pt;}
.ls1_c00150{letter-spacing:0.012448pt;}
.ls4_c00150{letter-spacing:0.018672pt;}
.ls0_c00150{letter-spacing:0.020694pt;}
.ls5_c00150{letter-spacing:0.020788pt;}
.ls2_c00150{letter-spacing:0.037344pt;}
.ls15_c00150{letter-spacing:0.041576pt;}
.ls14_c00150{letter-spacing:0.067561pt;}
.ls12_c00150{letter-spacing:0.478125pt;}
.ws0_c00150{word-spacing:-11.526781pt;}
.ws1_c00150{word-spacing:-9.242347pt;}
.ws1b_c00150{word-spacing:-0.129925pt;}
.ws20_c00150{word-spacing:-0.077955pt;}
.ws4_c00150{word-spacing:-0.006224pt;}
.ws2_c00150{word-spacing:0.000000pt;}
.ws11_c00150{word-spacing:0.018672pt;}
.ws25_c00150{word-spacing:0.020788pt;}
.ws15_c00150{word-spacing:0.024896pt;}
.ws16_c00150{word-spacing:0.298752pt;}
.wsd_c00150{word-spacing:0.348544pt;}
.ws17_c00150{word-spacing:0.609952pt;}
.ws12_c00150{word-spacing:0.628624pt;}
.ws13_c00150{word-spacing:0.634848pt;}
.wsb_c00150{word-spacing:0.653520pt;}
.ws18_c00150{word-spacing:0.946048pt;}
.wsa_c00150{word-spacing:1.282144pt;}
.ws6_c00150{word-spacing:1.574672pt;}
.ws1d_c00150{word-spacing:1.590286pt;}
.ws1c_c00150{word-spacing:1.943683pt;}
.ws1e_c00150{word-spacing:2.161958pt;}
.wsf_c00150{word-spacing:2.545616pt;}
.ws1f_c00150{word-spacing:3.055844pt;}
.ws23_c00150{word-spacing:4.287536pt;}
.ws1a_c00150{word-spacing:4.462608pt;}
.ws19_c00150{word-spacing:4.493728pt;}
.ws10_c00150{word-spacing:4.780032pt;}
.ws7_c00150{word-spacing:4.798704pt;}
.ws8_c00150{word-spacing:4.811152pt;}
.ws24_c00150{word-spacing:5.119058pt;}
.wse_c00150{word-spacing:5.389984pt;}
.wsc_c00150{word-spacing:8.010288pt;}
.ws3_c00150{word-spacing:8.333936pt;}
.ws14_c00150{word-spacing:14.072464pt;}
.ws9_c00150{word-spacing:15.373280pt;}
.ws5_c00150{word-spacing:22.717600pt;}
.ws21_c00150{word-spacing:24.581873pt;}
.ws22_c00150{word-spacing:24.930073pt;}
._3_c00150{margin-left:-2.406304pt;}
._1_c00150{margin-left:-1.182560pt;}
._0_c00150{width:1.070528pt;}
._4_c00150{width:2.294778pt;}
._2_c00150{width:5.271728pt;}
.fs2_c00150{font-size:33.608533pt;}
.fs1_c00150{font-size:41.388800pt;}
.fs3_c00150{font-size:51.970133pt;}
.fs0_c00150{font-size:62.240000pt;}
.y0_c00150{bottom:0.000000pt;}
.y2_c00150{bottom:97.547527pt;}
.y1_c00150{bottom:115.387067pt;}
.y24_c00150{bottom:132.824967pt;}
.y23_c00150{bottom:148.665464pt;}
.y22_c00150{bottom:164.665769pt;}
.y21_c00150{bottom:180.506265pt;}
.y20_c00150{bottom:196.506570pt;}
.y1f_c00150{bottom:215.627067pt;}
.y1e_c00150{bottom:231.467067pt;}
.y1d_c00150{bottom:244.586195pt;}
.y1c_c00150{bottom:316.106179pt;}
.y1b_c00150{bottom:342.986079pt;}
.y1a_c00150{bottom:369.786623pt;}
.y19_c00150{bottom:396.666523pt;}
.y18_c00150{bottom:423.466203pt;}
.y17_c00150{bottom:450.346103pt;}
.y16_c00150{bottom:477.146647pt;}
.y15_c00150{bottom:504.026547pt;}
.y14_c00150{bottom:530.746179pt;}
.y13_c00150{bottom:557.626079pt;}
.y12_c00150{bottom:584.426623pt;}
.y11_c00150{bottom:611.306523pt;}
.y10_c00150{bottom:638.105935pt;}
.yf_c00150{bottom:664.985835pt;}
.ye_c00150{bottom:691.786379pt;}
.yd_c00150{bottom:718.666279pt;}
.yc_c00150{bottom:745.466823pt;}
.yb_c00150{bottom:772.346723pt;}
.ya_c00150{bottom:799.147267pt;}
.y9_c00150{bottom:826.027167pt;}
.y8_c00150{bottom:852.906171pt;}
.y7_c00150{bottom:879.706715pt;}
.y6_c00150{bottom:906.586615pt;}
.y5_c00150{bottom:933.387159pt;}
.y4_c00150{bottom:960.267059pt;}
.y3_c00150{bottom:987.067603pt;}
.h7_c00150{height:34.967599pt;}
.h8_c00150{height:48.087599pt;}
.h4_c00150{height:55.645234pt;}
.h1_c00150{height:55.797187pt;}
.h6_c00150{height:55.800676pt;}
.h2_c00150{height:65.587997pt;}
.h5_c00150{height:65.807355pt;}
.h3_c00150{height:65.908940pt;}
.h0_c00150{height:1122.666667pt;}
.w0_c00150{width:793.333333pt;}
.x0_c00150{left:0.000000pt;}
.x2_c00150{left:73.520052pt;}
.x1_c00150{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2d4049e80fdc0585cb86172a.woff2')format("woff");}.ff1_c00151{font-family:ff1_c00151;line-height:1.106934;font-style:normal;font-weight:normal;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_5bb74eec3aa4f843e1e8ffd2.woff2')format("woff");}.ff2_c00151{font-family:ff2_c00151;line-height:1.104492;font-style:normal;font-weight:normal;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_68d8d09ef23aa56e2afe5239.woff2')format("woff");}.ff3_c00151{font-family:ff3_c00151;line-height:1.133301;font-style:normal;font-weight:normal;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_0e7f5e2713e7b17fd3cdc993.woff2')format("woff");}.ff4_c00151{font-family:ff4_c00151;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00151{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00151{vertical-align:-14.760000px;}
.v0_c00151{vertical-align:0.000000px;}
.v1_c00151{vertical-align:32.045580px;}
.lsf_c00151{letter-spacing:-0.273078px;}
.ls14_c00151{letter-spacing:-0.099393px;}
.ls10_c00151{letter-spacing:-0.075619px;}
.lsc_c00151{letter-spacing:-0.070020px;}
.ls7_c00151{letter-spacing:-0.063018px;}
.lsd_c00151{letter-spacing:-0.049014px;}
.ls9_c00151{letter-spacing:-0.042012px;}
.lse_c00151{letter-spacing:-0.035010px;}
.ls13_c00151{letter-spacing:-0.023387px;}
.lsa_c00151{letter-spacing:-0.021006px;}
.ls11_c00151{letter-spacing:-0.011693px;}
.lsb_c00151{letter-spacing:-0.007002px;}
.ls8_c00151{letter-spacing:0.000000px;}
.ls3_c00151{letter-spacing:0.021006px;}
.ls6_c00151{letter-spacing:0.023281px;}
.ls2_c00151{letter-spacing:0.028008px;}
.ls4_c00151{letter-spacing:0.035010px;}
.ls0_c00151{letter-spacing:0.063018px;}
.ls12_c00151{letter-spacing:0.064313px;}
.ls5_c00151{letter-spacing:0.119034px;}
.ls1_c00151{letter-spacing:21.216060px;}
.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:-12.967628px;}
.ws1_c00151{word-spacing:-10.397640px;}
.ws10_c00151{word-spacing:-0.133038px;}
.ws12_c00151{word-spacing:-0.052620px;}
.ws2_c00151{word-spacing:0.000000px;}
.ws5_c00151{word-spacing:0.007002px;}
.ws15_c00151{word-spacing:0.011693px;}
.ws11_c00151{word-spacing:0.023387px;}
.wse_c00151{word-spacing:0.028008px;}
.wsf_c00151{word-spacing:0.616176px;}
.ws13_c00151{word-spacing:2.198337px;}
.ws14_c00151{word-spacing:2.274343px;}
.ws4_c00151{word-spacing:7.184052px;}
.ws3_c00151{word-spacing:7.226064px;}
.wsd_c00151{word-spacing:8.290368px;}
.wsc_c00151{word-spacing:8.304372px;}
.wsb_c00151{word-spacing:11.504286px;}
.wsa_c00151{word-spacing:11.833380px;}
.ws8_c00151{word-spacing:13.352814px;}
.ws9_c00151{word-spacing:19.766646px;}
.ws6_c00151{word-spacing:21.160044px;}
.ws7_c00151{word-spacing:21.230064px;}
._4_c00151{margin-left:-2.708964px;}
._1_c00151{margin-left:-1.015290px;}
._0_c00151{width:1.099314px;}
._3_c00151{width:5.930694px;}
._2_c00151{width:21.342096px;}
.fc0_c00151{color:rgb(0,0,0);}
.fs2_c00151{font-size:37.809600px;}
.fs1_c00151{font-size:46.562400px;}
.fs3_c00151{font-size:58.466400px;}
.fs0_c00151{font-size:70.020000px;}
.y0_c00151{bottom:0.000000px;}
.y2_c00151{bottom:109.740968px;}
.y1_c00151{bottom:129.810450px;}
.y24_c00151{bottom:149.429548px;}
.y23_c00151{bottom:167.250107px;}
.y22_c00151{bottom:188.940450px;}
.y21_c00151{bottom:203.605923px;}
.y20_c00151{bottom:234.836594px;}
.y1f_c00151{bottom:265.076481px;}
.y1e_c00151{bottom:295.227093px;}
.y1d_c00151{bottom:325.466981px;}
.y1c_c00151{bottom:355.617593px;}
.y1b_c00151{bottom:385.857480px;}
.y1a_c00151{bottom:416.008092px;}
.y19_c00151{bottom:446.247979px;}
.y18_c00151{bottom:476.398592px;}
.y17_c00151{bottom:506.638479px;}
.y16_c00151{bottom:536.789091px;}
.y15_c00151{bottom:567.028978px;}
.y14_c00151{bottom:597.088565px;}
.y13_c00151{bottom:627.328452px;}
.y12_c00151{bottom:657.479064px;}
.y11_c00151{bottom:687.718952px;}
.y10_c00151{bottom:717.869563px;}
.yf_c00151{bottom:748.109451px;}
.ye_c00151{bottom:778.260063px;}
.yd_c00151{bottom:808.499950px;}
.yc_c00151{bottom:838.650562px;}
.yb_c00151{bottom:868.889055px;}
.ya_c00151{bottom:899.039667px;}
.y9_c00151{bottom:929.279555px;}
.y8_c00151{bottom:959.519442px;}
.y7_c00151{bottom:989.670054px;}
.y6_c00151{bottom:1019.909942px;}
.y5_c00151{bottom:1050.060553px;}
.y4_c00151{bottom:1080.300441px;}
.y3_c00151{bottom:1110.451053px;}
.h4_c00151{height:39.338549px;}
.h5_c00151{height:54.098549px;}
.h1_c00151{height:62.771836px;}
.h3_c00151{height:62.789944px;}
.h2_c00151{height:73.788044px;}
.h0_c00151{height:1263.000000px;}
.w0_c00151{width:892.500000px;}
.x0_c00151{left:0.000000px;}
.x2_c00151{left:82.710059px;}
.x1_c00151{left:431.730000px;}
@media print{
.v2_c00151{vertical-align:-13.120000pt;}
.v0_c00151{vertical-align:0.000000pt;}
.v1_c00151{vertical-align:28.484960pt;}
.lsf_c00151{letter-spacing:-0.242736pt;}
.ls14_c00151{letter-spacing:-0.088349pt;}
.ls10_c00151{letter-spacing:-0.067217pt;}
.lsc_c00151{letter-spacing:-0.062240pt;}
.ls7_c00151{letter-spacing:-0.056016pt;}
.lsd_c00151{letter-spacing:-0.043568pt;}
.ls9_c00151{letter-spacing:-0.037344pt;}
.lse_c00151{letter-spacing:-0.031120pt;}
.ls13_c00151{letter-spacing:-0.020788pt;}
.lsa_c00151{letter-spacing:-0.018672pt;}
.ls11_c00151{letter-spacing:-0.010394pt;}
.lsb_c00151{letter-spacing:-0.006224pt;}
.ls8_c00151{letter-spacing:0.000000pt;}
.ls3_c00151{letter-spacing:0.018672pt;}
.ls6_c00151{letter-spacing:0.020694pt;}
.ls2_c00151{letter-spacing:0.024896pt;}
.ls4_c00151{letter-spacing:0.031120pt;}
.ls0_c00151{letter-spacing:0.056016pt;}
.ls12_c00151{letter-spacing:0.057167pt;}
.ls5_c00151{letter-spacing:0.105808pt;}
.ls1_c00151{letter-spacing:18.858720pt;}
.ws0_c00151{word-spacing:-11.526781pt;}
.ws1_c00151{word-spacing:-9.242347pt;}
.ws10_c00151{word-spacing:-0.118256pt;}
.ws12_c00151{word-spacing:-0.046773pt;}
.ws2_c00151{word-spacing:0.000000pt;}
.ws5_c00151{word-spacing:0.006224pt;}
.ws15_c00151{word-spacing:0.010394pt;}
.ws11_c00151{word-spacing:0.020788pt;}
.wse_c00151{word-spacing:0.024896pt;}
.wsf_c00151{word-spacing:0.547712pt;}
.ws13_c00151{word-spacing:1.954077pt;}
.ws14_c00151{word-spacing:2.021638pt;}
.ws4_c00151{word-spacing:6.385824pt;}
.ws3_c00151{word-spacing:6.423168pt;}
.wsd_c00151{word-spacing:7.369216pt;}
.wsc_c00151{word-spacing:7.381664pt;}
.wsb_c00151{word-spacing:10.226032pt;}
.wsa_c00151{word-spacing:10.518560pt;}
.ws8_c00151{word-spacing:11.869168pt;}
.ws9_c00151{word-spacing:17.570352pt;}
.ws6_c00151{word-spacing:18.808928pt;}
.ws7_c00151{word-spacing:18.871168pt;}
._4_c00151{margin-left:-2.407968pt;}
._1_c00151{margin-left:-0.902480pt;}
._0_c00151{width:0.977168pt;}
._3_c00151{width:5.271728pt;}
._2_c00151{width:18.970752pt;}
.fs2_c00151{font-size:33.608533pt;}
.fs1_c00151{font-size:41.388800pt;}
.fs3_c00151{font-size:51.970133pt;}
.fs0_c00151{font-size:62.240000pt;}
.y0_c00151{bottom:0.000000pt;}
.y2_c00151{bottom:97.547527pt;}
.y1_c00151{bottom:115.387067pt;}
.y24_c00151{bottom:132.826265pt;}
.y23_c00151{bottom:148.666762pt;}
.y22_c00151{bottom:167.947067pt;}
.y21_c00151{bottom:180.983043pt;}
.y20_c00151{bottom:208.743639pt;}
.y1f_c00151{bottom:235.623539pt;}
.y1e_c00151{bottom:262.424083pt;}
.y1d_c00151{bottom:289.303983pt;}
.y1c_c00151{bottom:316.104527pt;}
.y1b_c00151{bottom:342.984427pt;}
.y1a_c00151{bottom:369.784971pt;}
.y19_c00151{bottom:396.664871pt;}
.y18_c00151{bottom:423.465415pt;}
.y17_c00151{bottom:450.345315pt;}
.y16_c00151{bottom:477.145859pt;}
.y15_c00151{bottom:504.025759pt;}
.y14_c00151{bottom:530.745391pt;}
.y13_c00151{bottom:557.625291pt;}
.y12_c00151{bottom:584.425835pt;}
.y11_c00151{bottom:611.305735pt;}
.y10_c00151{bottom:638.106279pt;}
.yf_c00151{bottom:664.986179pt;}
.ye_c00151{bottom:691.786723pt;}
.yd_c00151{bottom:718.666623pt;}
.yc_c00151{bottom:745.467167pt;}
.yb_c00151{bottom:772.345827pt;}
.ya_c00151{bottom:799.146371pt;}
.y9_c00151{bottom:826.026271pt;}
.y8_c00151{bottom:852.906171pt;}
.y7_c00151{bottom:879.706715pt;}
.y6_c00151{bottom:906.586615pt;}
.y5_c00151{bottom:933.387159pt;}
.y4_c00151{bottom:960.267059pt;}
.y3_c00151{bottom:987.067603pt;}
.h4_c00151{height:34.967599pt;}
.h5_c00151{height:48.087599pt;}
.h1_c00151{height:55.797187pt;}
.h3_c00151{height:55.813283pt;}
.h2_c00151{height:65.589373pt;}
.h0_c00151{height:1122.666667pt;}
.w0_c00151{width:793.333333pt;}
.x0_c00151{left:0.000000pt;}
.x2_c00151{left:73.520052pt;}
.x1_c00151{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0b8cbe2e310cd4f4bece63d6.woff2')format("woff");}.ff1_c00152{font-family:ff1_c00152;line-height:1.106934;font-style:normal;font-weight:normal;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_850aff4fe71dc2db740fa437.woff2')format("woff");}.ff2_c00152{font-family:ff2_c00152;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00152;src:url('chunks/assets/font_9ea46685494d9ee0c60b80d5.woff2')format("woff");}.ff3_c00152{font-family:ff3_c00152;line-height:1.104492;font-style:normal;font-weight:normal;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_9f2d7a97875a2a3fb55283b3.woff2')format("woff");}.ff4_c00152{font-family:ff4_c00152;line-height:1.133301;font-style:normal;font-weight:normal;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_9bd330d7f0e335d02a0a1d1d.woff2')format("woff");}.ff5_c00152{font-family:ff5_c00152;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00152{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00152{vertical-align:-14.760600px;}
.v0_c00152{vertical-align:0.000000px;}
.v1_c00152{vertical-align:32.049882px;}
.ls10_c00152{letter-spacing:-0.327412px;}
.lsf_c00152{letter-spacing:-0.263099px;}
.ls6_c00152{letter-spacing:-0.126036px;}
.lse_c00152{letter-spacing:-0.093546px;}
.ls7_c00152{letter-spacing:-0.091166px;}
.lsd_c00152{letter-spacing:-0.075619px;}
.ls4_c00152{letter-spacing:-0.063018px;}
.ls9_c00152{letter-spacing:-0.035010px;}
.ls11_c00152{letter-spacing:-0.029233px;}
.lsc_c00152{letter-spacing:-0.028008px;}
.ls8_c00152{letter-spacing:-0.021006px;}
.lsb_c00152{letter-spacing:-0.014004px;}
.lsa_c00152{letter-spacing:-0.007002px;}
.ls5_c00152{letter-spacing:0.000000px;}
.ls12_c00152{letter-spacing:0.011693px;}
.ls1_c00152{letter-spacing:0.014004px;}
.ls2_c00152{letter-spacing:0.021006px;}
.ls3_c00152{letter-spacing:0.023281px;}
.ls0_c00152{letter-spacing:0.084024px;}
.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:-12.967628px;}
.ws1_c00152{word-spacing:-10.397640px;}
.ws4_c00152{word-spacing:-0.098028px;}
.ws9_c00152{word-spacing:-0.007002px;}
.ws2_c00152{word-spacing:0.000000px;}
.ws8_c00152{word-spacing:0.021006px;}
.ws18_c00152{word-spacing:0.040926px;}
.ws5_c00152{word-spacing:0.129151px;}
.ws12_c00152{word-spacing:0.350100px;}
.ws11_c00152{word-spacing:0.371106px;}
.ws7_c00152{word-spacing:1.463418px;}
.wsd_c00152{word-spacing:2.849814px;}
.ws6_c00152{word-spacing:2.884824px;}
.wsc_c00152{word-spacing:4.313232px;}
.wse_c00152{word-spacing:4.691340px;}
.ws15_c00152{word-spacing:8.746573px;}
.ws16_c00152{word-spacing:8.916126px;}
.ws17_c00152{word-spacing:9.342931px;}
.wsb_c00152{word-spacing:14.032008px;}
.wsf_c00152{word-spacing:14.396112px;}
.ws10_c00152{word-spacing:14.410116px;}
.ws14_c00152{word-spacing:18.324234px;}
.ws13_c00152{word-spacing:18.345240px;}
.ws3_c00152{word-spacing:18.471276px;}
.wsa_c00152{word-spacing:19.437552px;}
._3_c00152{margin-left:-2.707758px;}
._1_c00152{margin-left:-1.260360px;}
._0_c00152{width:1.043298px;}
._2_c00152{width:5.930694px;}
.fc0_c00152{color:rgb(0,0,0);}
.fs3_c00152{font-size:37.809600px;}
.fs2_c00152{font-size:46.562400px;}
.fs4_c00152{font-size:58.466400px;}
.fs0_c00152{font-size:70.020000px;}
.fs1_c00152{font-size:75.971400px;}
.y0_c00152{bottom:0.000000px;}
.y2_c00152{bottom:109.740968px;}
.y1_c00152{bottom:129.810450px;}
.y22_c00152{bottom:149.428745px;}
.y21_c00152{bottom:167.249304px;}
.y20_c00152{bottom:205.590107px;}
.y1f_c00152{bottom:227.280600px;}
.y1e_c00152{bottom:262.380162px;}
.y1d_c00152{bottom:310.259838px;}
.y1c_c00152{bottom:340.407979px;}
.y1b_c00152{bottom:370.647867px;}
.y1a_c00152{bottom:400.707453px;}
.y19_c00152{bottom:430.947340px;}
.y18_c00152{bottom:461.097952px;}
.y17_c00152{bottom:491.337840px;}
.y16_c00152{bottom:521.488452px;}
.y15_c00152{bottom:551.728339px;}
.y14_c00152{bottom:581.878951px;}
.y13_c00152{bottom:612.118839px;}
.y12_c00152{bottom:642.269451px;}
.y11_c00152{bottom:672.509338px;}
.y10_c00152{bottom:702.659950px;}
.yf_c00152{bottom:732.899838px;}
.ye_c00152{bottom:763.050450px;}
.yd_c00152{bottom:787.800450px;}
.yc_c00152{bottom:836.938929px;}
.yb_c00152{bottom:861.419672px;}
.ya_c00152{bottom:881.580180px;}
.y9_c00152{bottom:929.279555px;}
.y8_c00152{bottom:959.519442px;}
.y7_c00152{bottom:989.670054px;}
.y6_c00152{bottom:1019.909942px;}
.y5_c00152{bottom:1050.060553px;}
.y4_c00152{bottom:1080.300441px;}
.y3_c00152{bottom:1110.451053px;}
.h7_c00152{height:39.337949px;}
.h8_c00152{height:54.098549px;}
.h4_c00152{height:62.600889px;}
.h1_c00152{height:62.771836px;}
.h6_c00152{height:62.772988px;}
.h2_c00152{height:63.216299px;}
.h3_c00152{height:68.589413px;}
.h5_c00152{height:73.678668px;}
.h0_c00152{height:1263.000000px;}
.w0_c00152{width:892.500000px;}
.x0_c00152{left:0.000000px;}
.x2_c00152{left:82.710059px;}
.x1_c00152{left:431.730000px;}
@media print{
.v2_c00152{vertical-align:-13.120533pt;}
.v0_c00152{vertical-align:0.000000pt;}
.v1_c00152{vertical-align:28.488784pt;}
.ls10_c00152{letter-spacing:-0.291033pt;}
.lsf_c00152{letter-spacing:-0.233866pt;}
.ls6_c00152{letter-spacing:-0.112032pt;}
.lse_c00152{letter-spacing:-0.083152pt;}
.ls7_c00152{letter-spacing:-0.081036pt;}
.lsd_c00152{letter-spacing:-0.067217pt;}
.ls4_c00152{letter-spacing:-0.056016pt;}
.ls9_c00152{letter-spacing:-0.031120pt;}
.ls11_c00152{letter-spacing:-0.025985pt;}
.lsc_c00152{letter-spacing:-0.024896pt;}
.ls8_c00152{letter-spacing:-0.018672pt;}
.lsb_c00152{letter-spacing:-0.012448pt;}
.lsa_c00152{letter-spacing:-0.006224pt;}
.ls5_c00152{letter-spacing:0.000000pt;}
.ls12_c00152{letter-spacing:0.010394pt;}
.ls1_c00152{letter-spacing:0.012448pt;}
.ls2_c00152{letter-spacing:0.018672pt;}
.ls3_c00152{letter-spacing:0.020694pt;}
.ls0_c00152{letter-spacing:0.074688pt;}
.ws0_c00152{word-spacing:-11.526781pt;}
.ws1_c00152{word-spacing:-9.242347pt;}
.ws4_c00152{word-spacing:-0.087136pt;}
.ws9_c00152{word-spacing:-0.006224pt;}
.ws2_c00152{word-spacing:0.000000pt;}
.ws8_c00152{word-spacing:0.018672pt;}
.ws18_c00152{word-spacing:0.036379pt;}
.ws5_c00152{word-spacing:0.114801pt;}
.ws12_c00152{word-spacing:0.311200pt;}
.ws11_c00152{word-spacing:0.329872pt;}
.ws7_c00152{word-spacing:1.300816pt;}
.wsd_c00152{word-spacing:2.533168pt;}
.ws6_c00152{word-spacing:2.564288pt;}
.wsc_c00152{word-spacing:3.833984pt;}
.wse_c00152{word-spacing:4.170080pt;}
.ws15_c00152{word-spacing:7.774732pt;}
.ws16_c00152{word-spacing:7.925445pt;}
.ws17_c00152{word-spacing:8.304827pt;}
.wsb_c00152{word-spacing:12.472896pt;}
.wsf_c00152{word-spacing:12.796544pt;}
.ws10_c00152{word-spacing:12.808992pt;}
.ws14_c00152{word-spacing:16.288208pt;}
.ws13_c00152{word-spacing:16.306880pt;}
.ws3_c00152{word-spacing:16.418912pt;}
.wsa_c00152{word-spacing:17.277824pt;}
._3_c00152{margin-left:-2.406896pt;}
._1_c00152{margin-left:-1.120320pt;}
._0_c00152{width:0.927376pt;}
._2_c00152{width:5.271728pt;}
.fs3_c00152{font-size:33.608533pt;}
.fs2_c00152{font-size:41.388800pt;}
.fs4_c00152{font-size:51.970133pt;}
.fs0_c00152{font-size:62.240000pt;}
.fs1_c00152{font-size:67.530133pt;}
.y0_c00152{bottom:0.000000pt;}
.y2_c00152{bottom:97.547527pt;}
.y1_c00152{bottom:115.387067pt;}
.y22_c00152{bottom:132.825551pt;}
.y21_c00152{bottom:148.666048pt;}
.y20_c00152{bottom:182.746762pt;}
.y1f_c00152{bottom:202.027200pt;}
.y1e_c00152{bottom:233.226811pt;}
.y1d_c00152{bottom:275.786523pt;}
.y1c_c00152{bottom:302.584871pt;}
.y1b_c00152{bottom:329.464771pt;}
.y1a_c00152{bottom:356.184403pt;}
.y19_c00152{bottom:383.064303pt;}
.y18_c00152{bottom:409.864847pt;}
.y17_c00152{bottom:436.744747pt;}
.y16_c00152{bottom:463.545291pt;}
.y15_c00152{bottom:490.425191pt;}
.y14_c00152{bottom:517.225735pt;}
.y13_c00152{bottom:544.105635pt;}
.y12_c00152{bottom:570.906179pt;}
.y11_c00152{bottom:597.786079pt;}
.y10_c00152{bottom:624.586623pt;}
.yf_c00152{bottom:651.466523pt;}
.ye_c00152{bottom:678.267067pt;}
.yd_c00152{bottom:700.267067pt;}
.yc_c00152{bottom:743.945715pt;}
.yb_c00152{bottom:765.706375pt;}
.ya_c00152{bottom:783.626827pt;}
.y9_c00152{bottom:826.026271pt;}
.y8_c00152{bottom:852.906171pt;}
.y7_c00152{bottom:879.706715pt;}
.y6_c00152{bottom:906.586615pt;}
.y5_c00152{bottom:933.387159pt;}
.y4_c00152{bottom:960.267059pt;}
.y3_c00152{bottom:987.067603pt;}
.h7_c00152{height:34.967066pt;}
.h8_c00152{height:48.087599pt;}
.h4_c00152{height:55.645234pt;}
.h1_c00152{height:55.797187pt;}
.h6_c00152{height:55.798212pt;}
.h2_c00152{height:56.192266pt;}
.h3_c00152{height:60.968367pt;}
.h5_c00152{height:65.492150pt;}
.h0_c00152{height:1122.666667pt;}
.w0_c00152{width:793.333333pt;}
.x0_c00152{left:0.000000pt;}
.x2_c00152{left:73.520052pt;}
.x1_c00152{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6c5fdac824fdfd522dc372d4.woff2')format("woff");}.ff1_c00153{font-family:ff1_c00153;line-height:1.106934;font-style:normal;font-weight:normal;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_179d99d6b78ffdee3b32f3a0.woff2')format("woff");}.ff2_c00153{font-family:ff2_c00153;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00153;src:url('chunks/assets/font_17d989dff8c33d01505b8cd4.woff2')format("woff");}.ff3_c00153{font-family:ff3_c00153;line-height:1.104492;font-style:normal;font-weight:normal;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_17b6ec44b9dfc4734fc00f8c.woff2')format("woff");}.ff4_c00153{font-family:ff4_c00153;line-height:1.133301;font-style:normal;font-weight:normal;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_7b3bd5d4f87faa9da00dd994.woff2')format("woff");}.ff5_c00153{font-family:ff5_c00153;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00153{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00153{vertical-align:-32.400000px;}
.v3_c00153{vertical-align:-14.760000px;}
.v0_c00153{vertical-align:0.000000px;}
.v1_c00153{vertical-align:32.417982px;}
.ls17_c00153{letter-spacing:-0.152013px;}
.ls16_c00153{letter-spacing:-0.140319px;}
.ls12_c00153{letter-spacing:-0.134473px;}
.lsc_c00153{letter-spacing:-0.106360px;}
.ls10_c00153{letter-spacing:-0.075619px;}
.lse_c00153{letter-spacing:-0.070020px;}
.ls6_c00153{letter-spacing:-0.063018px;}
.lsd_c00153{letter-spacing:-0.056016px;}
.lsf_c00153{letter-spacing:-0.042012px;}
.ls14_c00153{letter-spacing:-0.029233px;}
.lsb_c00153{letter-spacing:-0.028008px;}
.ls9_c00153{letter-spacing:-0.021006px;}
.lsa_c00153{letter-spacing:-0.014004px;}
.ls15_c00153{letter-spacing:-0.011693px;}
.ls8_c00153{letter-spacing:-0.007002px;}
.ls7_c00153{letter-spacing:0.000000px;}
.ls0_c00153{letter-spacing:0.007002px;}
.ls1_c00153{letter-spacing:0.014004px;}
.ls2_c00153{letter-spacing:0.021006px;}
.ls4_c00153{letter-spacing:0.023281px;}
.ls5_c00153{letter-spacing:0.035010px;}
.ls3_c00153{letter-spacing:0.070020px;}
.ls11_c00153{letter-spacing:0.070160px;}
.ls13_c00153{letter-spacing:7.933890px;}
.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:-12.967628px;}
.ws1_c00153{word-spacing:-10.397640px;}
.ws2_c00153{word-spacing:0.000000px;}
.ws6_c00153{word-spacing:0.014004px;}
.ws22_c00153{word-spacing:0.163706px;}
.ws7_c00153{word-spacing:0.235511px;}
.wsf_c00153{word-spacing:0.350100px;}
.ws18_c00153{word-spacing:0.357102px;}
.ws9_c00153{word-spacing:0.371106px;}
.ws13_c00153{word-spacing:0.763218px;}
.ws8_c00153{word-spacing:2.142612px;}
.ws15_c00153{word-spacing:2.520720px;}
.ws10_c00153{word-spacing:3.255930px;}
.ws11_c00153{word-spacing:3.297942px;}
.ws12_c00153{word-spacing:3.627036px;}
.ws3_c00153{word-spacing:3.956130px;}
.ws4_c00153{word-spacing:3.970134px;}
.wsb_c00153{word-spacing:5.769648px;}
.wsa_c00153{word-spacing:5.804658px;}
.ws19_c00153{word-spacing:7.590168px;}
.ws5_c00153{word-spacing:7.919262px;}
.ws1e_c00153{word-spacing:8.068363px;}
.ws1d_c00153{word-spacing:8.220376px;}
.ws20_c00153{word-spacing:9.746349px;}
.ws1f_c00153{word-spacing:9.763889px;}
.ws21_c00153{word-spacing:9.874975px;}
.ws1b_c00153{word-spacing:10.713060px;}
.ws1c_c00153{word-spacing:11.154186px;}
.ws17_c00153{word-spacing:12.575592px;}
.ws16_c00153{word-spacing:12.932694px;}
.wse_c00153{word-spacing:17.280936px;}
.ws1a_c00153{word-spacing:18.324234px;}
.wsc_c00153{word-spacing:20.158758px;}
.ws14_c00153{word-spacing:24.871104px;}
.wsd_c00153{word-spacing:25.935408px;}
._4_c00153{margin-left:-8.082968px;}
._5_c00153{margin-left:-7.010190px;}
._3_c00153{margin-left:-2.708874px;}
._1_c00153{margin-left:-1.001286px;}
._0_c00153{width:1.001286px;}
._2_c00153{width:5.930694px;}
.fc0_c00153{color:rgb(0,0,0);}
.fs3_c00153{font-size:37.809600px;}
.fs2_c00153{font-size:46.562400px;}
.fs4_c00153{font-size:58.466400px;}
.fs0_c00153{font-size:70.020000px;}
.fs1_c00153{font-size:75.971400px;}
.y0_c00153{bottom:0.000000px;}
.y2_c00153{bottom:109.740968px;}
.y1_c00153{bottom:129.810450px;}
.y23_c00153{bottom:149.429548px;}
.y22_c00153{bottom:167.250107px;}
.y21_c00153{bottom:188.940450px;}
.y20_c00153{bottom:203.609136px;}
.y1f_c00153{bottom:251.579838px;}
.y1e_c00153{bottom:281.725955px;}
.y1d_c00153{bottom:311.965842px;}
.y1c_c00153{bottom:342.116454px;}
.y1b_c00153{bottom:372.356342px;}
.y1a_c00153{bottom:402.506954px;}
.y19_c00153{bottom:432.657566px;}
.y18_c00153{bottom:462.897453px;}
.y17_c00153{bottom:493.048065px;}
.y16_c00153{bottom:523.287952px;}
.y15_c00153{bottom:553.438564px;}
.y14_c00153{bottom:583.678452px;}
.y13_c00153{bottom:613.829064px;}
.y12_c00153{bottom:644.068952px;}
.y11_c00153{bottom:674.219563px;}
.y10_c00153{bottom:704.459451px;}
.yf_c00153{bottom:734.610063px;}
.ye_c00153{bottom:764.849950px;}
.yd_c00153{bottom:795.000562px;}
.yc_c00153{bottom:825.240450px;}
.yb_c00153{bottom:849.990450px;}
.ya_c00153{bottom:899.039667px;}
.y9_c00153{bottom:929.279555px;}
.y8_c00153{bottom:959.519442px;}
.y7_c00153{bottom:989.670054px;}
.y6_c00153{bottom:1019.909942px;}
.y5_c00153{bottom:1050.060553px;}
.y4_c00153{bottom:1080.300441px;}
.y3_c00153{bottom:1110.451053px;}
.h5_c00153{height:39.338549px;}
.h6_c00153{height:54.098549px;}
.h1_c00153{height:62.771836px;}
.h4_c00153{height:62.777092px;}
.h2_c00153{height:68.589413px;}
.h3_c00153{height:74.160446px;}
.h0_c00153{height:1263.000000px;}
.w0_c00153{width:892.500000px;}
.x0_c00153{left:0.000000px;}
.x2_c00153{left:82.710059px;}
.x1_c00153{left:431.730000px;}
@media print{
.v2_c00153{vertical-align:-28.800000pt;}
.v3_c00153{vertical-align:-13.120000pt;}
.v0_c00153{vertical-align:0.000000pt;}
.v1_c00153{vertical-align:28.815984pt;}
.ls17_c00153{letter-spacing:-0.135122pt;}
.ls16_c00153{letter-spacing:-0.124728pt;}
.ls12_c00153{letter-spacing:-0.119531pt;}
.lsc_c00153{letter-spacing:-0.094542pt;}
.ls10_c00153{letter-spacing:-0.067217pt;}
.lse_c00153{letter-spacing:-0.062240pt;}
.ls6_c00153{letter-spacing:-0.056016pt;}
.lsd_c00153{letter-spacing:-0.049792pt;}
.lsf_c00153{letter-spacing:-0.037344pt;}
.ls14_c00153{letter-spacing:-0.025985pt;}
.lsb_c00153{letter-spacing:-0.024896pt;}
.ls9_c00153{letter-spacing:-0.018672pt;}
.lsa_c00153{letter-spacing:-0.012448pt;}
.ls15_c00153{letter-spacing:-0.010394pt;}
.ls8_c00153{letter-spacing:-0.006224pt;}
.ls7_c00153{letter-spacing:0.000000pt;}
.ls0_c00153{letter-spacing:0.006224pt;}
.ls1_c00153{letter-spacing:0.012448pt;}
.ls2_c00153{letter-spacing:0.018672pt;}
.ls4_c00153{letter-spacing:0.020694pt;}
.ls5_c00153{letter-spacing:0.031120pt;}
.ls3_c00153{letter-spacing:0.062240pt;}
.ls11_c00153{letter-spacing:0.062364pt;}
.ls13_c00153{letter-spacing:7.052347pt;}
.ws0_c00153{word-spacing:-11.526781pt;}
.ws1_c00153{word-spacing:-9.242347pt;}
.ws2_c00153{word-spacing:0.000000pt;}
.ws6_c00153{word-spacing:0.012448pt;}
.ws22_c00153{word-spacing:0.145516pt;}
.ws7_c00153{word-spacing:0.209343pt;}
.wsf_c00153{word-spacing:0.311200pt;}
.ws18_c00153{word-spacing:0.317424pt;}
.ws9_c00153{word-spacing:0.329872pt;}
.ws13_c00153{word-spacing:0.678416pt;}
.ws8_c00153{word-spacing:1.904544pt;}
.ws15_c00153{word-spacing:2.240640pt;}
.ws10_c00153{word-spacing:2.894160pt;}
.ws11_c00153{word-spacing:2.931504pt;}
.ws12_c00153{word-spacing:3.224032pt;}
.ws3_c00153{word-spacing:3.516560pt;}
.ws4_c00153{word-spacing:3.529008pt;}
.wsb_c00153{word-spacing:5.128576pt;}
.wsa_c00153{word-spacing:5.159696pt;}
.ws19_c00153{word-spacing:6.746816pt;}
.ws5_c00153{word-spacing:7.039344pt;}
.ws1e_c00153{word-spacing:7.171878pt;}
.ws1d_c00153{word-spacing:7.307001pt;}
.ws20_c00153{word-spacing:8.663421pt;}
.ws1f_c00153{word-spacing:8.679012pt;}
.ws21_c00153{word-spacing:8.777756pt;}
.ws1b_c00153{word-spacing:9.522720pt;}
.ws1c_c00153{word-spacing:9.914832pt;}
.ws17_c00153{word-spacing:11.178304pt;}
.ws16_c00153{word-spacing:11.495728pt;}
.wse_c00153{word-spacing:15.360832pt;}
.ws1a_c00153{word-spacing:16.288208pt;}
.wsc_c00153{word-spacing:17.918896pt;}
.ws14_c00153{word-spacing:22.107648pt;}
.wsd_c00153{word-spacing:23.053696pt;}
._4_c00153{margin-left:-7.184861pt;}
._5_c00153{margin-left:-6.231280pt;}
._3_c00153{margin-left:-2.407888pt;}
._1_c00153{margin-left:-0.890032pt;}
._0_c00153{width:0.890032pt;}
._2_c00153{width:5.271728pt;}
.fs3_c00153{font-size:33.608533pt;}
.fs2_c00153{font-size:41.388800pt;}
.fs4_c00153{font-size:51.970133pt;}
.fs0_c00153{font-size:62.240000pt;}
.fs1_c00153{font-size:67.530133pt;}
.y0_c00153{bottom:0.000000pt;}
.y2_c00153{bottom:97.547527pt;}
.y1_c00153{bottom:115.387067pt;}
.y23_c00153{bottom:132.826265pt;}
.y22_c00153{bottom:148.666762pt;}
.y21_c00153{bottom:167.947067pt;}
.y20_c00153{bottom:180.985899pt;}
.y1f_c00153{bottom:223.626523pt;}
.y1e_c00153{bottom:250.423071pt;}
.y1d_c00153{bottom:277.302971pt;}
.y1c_c00153{bottom:304.103515pt;}
.y1b_c00153{bottom:330.983415pt;}
.y1a_c00153{bottom:357.783959pt;}
.y19_c00153{bottom:384.584503pt;}
.y18_c00153{bottom:411.464403pt;}
.y17_c00153{bottom:438.264947pt;}
.y16_c00153{bottom:465.144847pt;}
.y15_c00153{bottom:491.945391pt;}
.y14_c00153{bottom:518.825291pt;}
.y13_c00153{bottom:545.625835pt;}
.y12_c00153{bottom:572.505735pt;}
.y11_c00153{bottom:599.306279pt;}
.y10_c00153{bottom:626.186179pt;}
.yf_c00153{bottom:652.986723pt;}
.ye_c00153{bottom:679.866623pt;}
.yd_c00153{bottom:706.667167pt;}
.yc_c00153{bottom:733.547067pt;}
.yb_c00153{bottom:755.547067pt;}
.ya_c00153{bottom:799.146371pt;}
.y9_c00153{bottom:826.026271pt;}
.y8_c00153{bottom:852.906171pt;}
.y7_c00153{bottom:879.706715pt;}
.y6_c00153{bottom:906.586615pt;}
.y5_c00153{bottom:933.387159pt;}
.y4_c00153{bottom:960.267059pt;}
.y3_c00153{bottom:987.067603pt;}
.h5_c00153{height:34.967599pt;}
.h6_c00153{height:48.087599pt;}
.h1_c00153{height:55.797187pt;}
.h4_c00153{height:55.801859pt;}
.h2_c00153{height:60.968367pt;}
.h3_c00153{height:65.920396pt;}
.h0_c00153{height:1122.666667pt;}
.w0_c00153{width:793.333333pt;}
.x0_c00153{left:0.000000pt;}
.x2_c00153{left:73.520052pt;}
.x1_c00153{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3ddac33b0fd660fd47db876d.woff2')format("woff");}.ff1_c00154{font-family:ff1_c00154;line-height:1.106934;font-style:normal;font-weight:normal;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_1524a0f21d13e716076e17b6.woff2')format("woff");}.ff2_c00154{font-family:ff2_c00154;line-height:1.104492;font-style:normal;font-weight:normal;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_fe5005b31bcc05a4e115cd2a.woff2')format("woff");}.ff3_c00154{font-family:ff3_c00154;line-height:1.133301;font-style:normal;font-weight:normal;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_d2ef0493caf4dc7a3c7550a1.woff2')format("woff");}.ff4_c00154{font-family:ff4_c00154;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00154;src:url('chunks/assets/font_670c37fa77372e30abeaf505.woff2')format("woff");}.ff5_c00154{font-family:ff5_c00154;line-height:1.133301;font-style:normal;font-weight:normal;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_b1d6e41c4b54b71cfaf38793.woff2')format("woff");}.ff6_c00154{font-family:ff6_c00154;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00154{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00154{vertical-align:-14.760000px;}
.v0_c00154{vertical-align:0.000000px;}
.v1_c00154{vertical-align:32.399586px;}
.ls11_c00154{letter-spacing:-0.344952px;}
.ls19_c00154{letter-spacing:-0.309872px;}
.ls12_c00154{letter-spacing:-0.263099px;}
.ls16_c00154{letter-spacing:-0.181246px;}
.ls18_c00154{letter-spacing:-0.175399px;}
.ls1a_c00154{letter-spacing:-0.152013px;}
.ls15_c00154{letter-spacing:-0.146166px;}
.ls10_c00154{letter-spacing:-0.122779px;}
.ls17_c00154{letter-spacing:-0.111086px;}
.lse_c00154{letter-spacing:-0.075619px;}
.ls13_c00154{letter-spacing:-0.064313px;}
.ls5_c00154{letter-spacing:-0.063018px;}
.lsd_c00154{letter-spacing:-0.042012px;}
.ls9_c00154{letter-spacing:-0.035010px;}
.lsb_c00154{letter-spacing:-0.028008px;}
.ls1b_c00154{letter-spacing:-0.023387px;}
.ls7_c00154{letter-spacing:-0.021006px;}
.ls8_c00154{letter-spacing:-0.014004px;}
.lsc_c00154{letter-spacing:-0.007002px;}
.ls6_c00154{letter-spacing:0.000000px;}
.ls2_c00154{letter-spacing:0.007002px;}
.ls4_c00154{letter-spacing:0.017540px;}
.ls1_c00154{letter-spacing:0.021006px;}
.ls0_c00154{letter-spacing:0.023281px;}
.lsa_c00154{letter-spacing:0.028008px;}
.ls14_c00154{letter-spacing:0.280639px;}
.ls3_c00154{letter-spacing:9.722962px;}
.lsf_c00154{letter-spacing:10.091301px;}
.sc__c00154{text-shadow:none;}
.sc0_c00154{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00154{-webkit-text-stroke:0px transparent;}
.sc0_c00154{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00154{word-spacing:-58.466400px;}
.ws0_c00154{word-spacing:-12.967628px;}
.ws1_c00154{word-spacing:-10.397640px;}
.ws24_c00154{word-spacing:-0.362492px;}
.ws2b_c00154{word-spacing:-0.321565px;}
.ws11_c00154{word-spacing:-0.007002px;}
.ws3_c00154{word-spacing:0.000000px;}
.ws10_c00154{word-spacing:0.007002px;}
.wsd_c00154{word-spacing:0.014004px;}
.ws1a_c00154{word-spacing:0.028008px;}
.ws20_c00154{word-spacing:0.157859px;}
.ws5_c00154{word-spacing:0.343098px;}
.wsc_c00154{word-spacing:0.357102px;}
.ws17_c00154{word-spacing:0.371106px;}
.ws15_c00154{word-spacing:1.428408px;}
.ws8_c00154{word-spacing:2.177622px;}
.wsa_c00154{word-spacing:2.520720px;}
.ws4_c00154{word-spacing:2.527722px;}
.ws19_c00154{word-spacing:4.656330px;}
.ws18_c00154{word-spacing:4.691340px;}
.ws7_c00154{word-spacing:5.041440px;}
.ws14_c00154{word-spacing:5.419548px;}
.ws16_c00154{word-spacing:6.133752px;}
.ws13_c00154{word-spacing:7.562160px;}
.ws27_c00154{word-spacing:9.015519px;}
.ws25_c00154{word-spacing:9.354624px;}
.ws28_c00154{word-spacing:9.518330px;}
.ws26_c00154{word-spacing:9.547563px;}
.ws1b_c00154{word-spacing:10.214080px;}
.ws1d_c00154{word-spacing:10.354399px;}
.ws1c_c00154{word-spacing:10.436252px;}
.ws2a_c00154{word-spacing:10.605805px;}
.ws29_c00154{word-spacing:10.763664px;}
.ws22_c00154{word-spacing:11.319095px;}
.ws23_c00154{word-spacing:11.646507px;}
.ws21_c00154{word-spacing:11.716667px;}
.ws12_c00154{word-spacing:15.831522px;}
.ws9_c00154{word-spacing:16.580736px;}
.wsf_c00154{word-spacing:16.930836px;}
.ws1f_c00154{word-spacing:23.135154px;}
.ws1e_c00154{word-spacing:23.480106px;}
.wsb_c00154{word-spacing:26.642610px;}
.ws6_c00154{word-spacing:28.043010px;}
.wse_c00154{word-spacing:37.782792px;}
._5_c00154{margin-left:-10.959452px;}
._4_c00154{margin-left:-9.715692px;}
._3_c00154{margin-left:-2.706786px;}
._1_c00154{margin-left:-1.036296px;}
._0_c00154{width:1.099314px;}
._2_c00154{width:5.930694px;}
.fc0_c00154{color:rgb(0,0,0);}
.fs2_c00154{font-size:37.809600px;}
.fs1_c00154{font-size:46.562400px;}
.fs3_c00154{font-size:58.466400px;}
.fs0_c00154{font-size:70.020000px;}
.y0_c00154{bottom:0.000000px;}
.y2_c00154{bottom:109.740968px;}
.y1_c00154{bottom:129.810450px;}
.y26_c00154{bottom:149.429548px;}
.y25_c00154{bottom:167.250107px;}
.y24_c00154{bottom:188.940450px;}
.y23_c00154{bottom:203.070107px;}
.y22_c00154{bottom:224.670450px;}
.y21_c00154{bottom:238.889548px;}
.y20_c00154{bottom:256.710107px;}
.y1f_c00154{bottom:278.400450px;}
.y1e_c00154{bottom:293.068362px;}
.y1d_c00154{bottom:325.468367px;}
.y1c_c00154{bottom:355.618979px;}
.y1b_c00154{bottom:385.858866px;}
.y1a_c00154{bottom:416.009478px;}
.y19_c00154{bottom:446.249365px;}
.y18_c00154{bottom:476.399977px;}
.y17_c00154{bottom:506.639865px;}
.y16_c00154{bottom:536.790477px;}
.y15_c00154{bottom:567.030365px;}
.y14_c00154{bottom:597.089950px;}
.y13_c00154{bottom:627.329838px;}
.y12_c00154{bottom:657.478602px;}
.y11_c00154{bottom:687.718489px;}
.y10_c00154{bottom:717.869101px;}
.yf_c00154{bottom:748.108989px;}
.ye_c00154{bottom:778.259601px;}
.yd_c00154{bottom:808.499488px;}
.yc_c00154{bottom:838.650100px;}
.yb_c00154{bottom:868.889988px;}
.ya_c00154{bottom:899.039563px;}
.y9_c00154{bottom:929.279451px;}
.y8_c00154{bottom:959.519339px;}
.y7_c00154{bottom:989.669950px;}
.y6_c00154{bottom:1019.909838px;}
.y5_c00154{bottom:1050.060553px;}
.y4_c00154{bottom:1080.300441px;}
.y3_c00154{bottom:1110.451053px;}
.h7_c00154{height:39.338549px;}
.h9_c00154{height:39.698549px;}
.h8_c00154{height:54.098549px;}
.h2_c00154{height:62.600889px;}
.h1_c00154{height:62.771836px;}
.h6_c00154{height:62.780188px;}
.h3_c00154{height:74.028372px;}
.h5_c00154{height:74.036178px;}
.h4_c00154{height:74.146010px;}
.h0_c00154{height:1263.000000px;}
.w0_c00154{width:892.500000px;}
.x0_c00154{left:0.000000px;}
.x2_c00154{left:82.710059px;}
.x1_c00154{left:431.730000px;}
@media print{
.v2_c00154{vertical-align:-13.120000pt;}
.v0_c00154{vertical-align:0.000000pt;}
.v1_c00154{vertical-align:28.799632pt;}
.ls11_c00154{letter-spacing:-0.306624pt;}
.ls19_c00154{letter-spacing:-0.275442pt;}
.ls12_c00154{letter-spacing:-0.233866pt;}
.ls16_c00154{letter-spacing:-0.161107pt;}
.ls18_c00154{letter-spacing:-0.155910pt;}
.ls1a_c00154{letter-spacing:-0.135122pt;}
.ls15_c00154{letter-spacing:-0.129925pt;}
.ls10_c00154{letter-spacing:-0.109137pt;}
.ls17_c00154{letter-spacing:-0.098743pt;}
.lse_c00154{letter-spacing:-0.067217pt;}
.ls13_c00154{letter-spacing:-0.057167pt;}
.ls5_c00154{letter-spacing:-0.056016pt;}
.lsd_c00154{letter-spacing:-0.037344pt;}
.ls9_c00154{letter-spacing:-0.031120pt;}
.lsb_c00154{letter-spacing:-0.024896pt;}
.ls1b_c00154{letter-spacing:-0.020788pt;}
.ls7_c00154{letter-spacing:-0.018672pt;}
.ls8_c00154{letter-spacing:-0.012448pt;}
.lsc_c00154{letter-spacing:-0.006224pt;}
.ls6_c00154{letter-spacing:0.000000pt;}
.ls2_c00154{letter-spacing:0.006224pt;}
.ls4_c00154{letter-spacing:0.015591pt;}
.ls1_c00154{letter-spacing:0.018672pt;}
.ls0_c00154{letter-spacing:0.020694pt;}
.lsa_c00154{letter-spacing:0.024896pt;}
.ls14_c00154{letter-spacing:0.249457pt;}
.ls3_c00154{letter-spacing:8.642633pt;}
.lsf_c00154{letter-spacing:8.970045pt;}
.ws2_c00154{word-spacing:-51.970133pt;}
.ws0_c00154{word-spacing:-11.526781pt;}
.ws1_c00154{word-spacing:-9.242347pt;}
.ws24_c00154{word-spacing:-0.322215pt;}
.ws2b_c00154{word-spacing:-0.285836pt;}
.ws11_c00154{word-spacing:-0.006224pt;}
.ws3_c00154{word-spacing:0.000000pt;}
.ws10_c00154{word-spacing:0.006224pt;}
.wsd_c00154{word-spacing:0.012448pt;}
.ws1a_c00154{word-spacing:0.024896pt;}
.ws20_c00154{word-spacing:0.140319pt;}
.ws5_c00154{word-spacing:0.304976pt;}
.wsc_c00154{word-spacing:0.317424pt;}
.ws17_c00154{word-spacing:0.329872pt;}
.ws15_c00154{word-spacing:1.269696pt;}
.ws8_c00154{word-spacing:1.935664pt;}
.wsa_c00154{word-spacing:2.240640pt;}
.ws4_c00154{word-spacing:2.246864pt;}
.ws19_c00154{word-spacing:4.138960pt;}
.ws18_c00154{word-spacing:4.170080pt;}
.ws7_c00154{word-spacing:4.481280pt;}
.ws14_c00154{word-spacing:4.817376pt;}
.ws16_c00154{word-spacing:5.452224pt;}
.ws13_c00154{word-spacing:6.721920pt;}
.ws27_c00154{word-spacing:8.013795pt;}
.ws25_c00154{word-spacing:8.315221pt;}
.ws28_c00154{word-spacing:8.460738pt;}
.ws26_c00154{word-spacing:8.486723pt;}
.ws1b_c00154{word-spacing:9.079182pt;}
.ws1d_c00154{word-spacing:9.203911pt;}
.ws1c_c00154{word-spacing:9.276669pt;}
.ws2a_c00154{word-spacing:9.427382pt;}
.ws29_c00154{word-spacing:9.567702pt;}
.ws22_c00154{word-spacing:10.061418pt;}
.ws23_c00154{word-spacing:10.352451pt;}
.ws21_c00154{word-spacing:10.414815pt;}
.ws12_c00154{word-spacing:14.072464pt;}
.ws9_c00154{word-spacing:14.738432pt;}
.wsf_c00154{word-spacing:15.049632pt;}
.ws1f_c00154{word-spacing:20.564582pt;}
.ws1e_c00154{word-spacing:20.871206pt;}
.wsb_c00154{word-spacing:23.682320pt;}
.ws6_c00154{word-spacing:24.927120pt;}
.wse_c00154{word-spacing:33.584704pt;}
._5_c00154{margin-left:-9.741735pt;}
._4_c00154{margin-left:-8.636170pt;}
._3_c00154{margin-left:-2.406032pt;}
._1_c00154{margin-left:-0.921152pt;}
._0_c00154{width:0.977168pt;}
._2_c00154{width:5.271728pt;}
.fs2_c00154{font-size:33.608533pt;}
.fs1_c00154{font-size:41.388800pt;}
.fs3_c00154{font-size:51.970133pt;}
.fs0_c00154{font-size:62.240000pt;}
.y0_c00154{bottom:0.000000pt;}
.y2_c00154{bottom:97.547527pt;}
.y1_c00154{bottom:115.387067pt;}
.y26_c00154{bottom:132.826265pt;}
.y25_c00154{bottom:148.666762pt;}
.y24_c00154{bottom:167.947067pt;}
.y23_c00154{bottom:180.506762pt;}
.y22_c00154{bottom:199.707067pt;}
.y21_c00154{bottom:212.346265pt;}
.y20_c00154{bottom:228.186762pt;}
.y1f_c00154{bottom:247.467067pt;}
.y1e_c00154{bottom:260.505211pt;}
.y1d_c00154{bottom:289.305215pt;}
.y1c_c00154{bottom:316.105759pt;}
.y1b_c00154{bottom:342.985659pt;}
.y1a_c00154{bottom:369.786203pt;}
.y19_c00154{bottom:396.666103pt;}
.y18_c00154{bottom:423.466647pt;}
.y17_c00154{bottom:450.346547pt;}
.y16_c00154{bottom:477.147091pt;}
.y15_c00154{bottom:504.026991pt;}
.y14_c00154{bottom:530.746623pt;}
.y13_c00154{bottom:557.626523pt;}
.y12_c00154{bottom:584.425424pt;}
.y11_c00154{bottom:611.305324pt;}
.y10_c00154{bottom:638.105868pt;}
.yf_c00154{bottom:664.985768pt;}
.ye_c00154{bottom:691.786312pt;}
.yd_c00154{bottom:718.666212pt;}
.yc_c00154{bottom:745.466756pt;}
.yb_c00154{bottom:772.346656pt;}
.ya_c00154{bottom:799.146279pt;}
.y9_c00154{bottom:826.026179pt;}
.y8_c00154{bottom:852.906079pt;}
.y7_c00154{bottom:879.706623pt;}
.y6_c00154{bottom:906.586523pt;}
.y5_c00154{bottom:933.387159pt;}
.y4_c00154{bottom:960.267059pt;}
.y3_c00154{bottom:987.067603pt;}
.h7_c00154{height:34.967599pt;}
.h9_c00154{height:35.287599pt;}
.h8_c00154{height:48.087599pt;}
.h2_c00154{height:55.645234pt;}
.h1_c00154{height:55.797187pt;}
.h6_c00154{height:55.804611pt;}
.h3_c00154{height:65.802998pt;}
.h5_c00154{height:65.809936pt;}
.h4_c00154{height:65.907565pt;}
.h0_c00154{height:1122.666667pt;}
.w0_c00154{width:793.333333pt;}
.x0_c00154{left:0.000000pt;}
.x2_c00154{left:73.520052pt;}
.x1_c00154{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2df1a739c36d5919bfd5b273.woff2')format("woff");}.ff1_c00155{font-family:ff1_c00155;line-height:1.106934;font-style:normal;font-weight:normal;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_736d79a976f5e3a63c9f7c30.woff2')format("woff");}.ff2_c00155{font-family:ff2_c00155;line-height:1.104492;font-style:normal;font-weight:normal;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_cad11f0c9819bc8151c81215.woff2')format("woff");}.ff3_c00155{font-family:ff3_c00155;line-height:1.133301;font-style:normal;font-weight:normal;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_93aa8b9890725bcfdc64b554.woff2')format("woff");}.ff4_c00155{font-family:ff4_c00155;line-height:1.133301;font-style:normal;font-weight:normal;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_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff5_c00155{font-family:ff5_c00155;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00155{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00155{vertical-align:-14.760000px;}
.v0_c00155{vertical-align:0.000000px;}
.v1_c00155{vertical-align:32.415612px;}
.ls13_c00155{letter-spacing:-0.397572px;}
.ls10_c00155{letter-spacing:-0.280639px;}
.ls11_c00155{letter-spacing:-0.140319px;}
.ls12_c00155{letter-spacing:-0.122779px;}
.lsd_c00155{letter-spacing:-0.075619px;}
.ls4_c00155{letter-spacing:-0.063018px;}
.lsb_c00155{letter-spacing:-0.049014px;}
.lsc_c00155{letter-spacing:-0.042012px;}
.ls6_c00155{letter-spacing:-0.035010px;}
.lse_c00155{letter-spacing:-0.029233px;}
.lsa_c00155{letter-spacing:-0.028008px;}
.ls9_c00155{letter-spacing:-0.021006px;}
.ls8_c00155{letter-spacing:-0.014004px;}
.ls7_c00155{letter-spacing:-0.007002px;}
.ls5_c00155{letter-spacing:0.000000px;}
.ls0_c00155{letter-spacing:0.007002px;}
.ls1_c00155{letter-spacing:0.014004px;}
.ls2_c00155{letter-spacing:0.023281px;}
.lsf_c00155{letter-spacing:0.093546px;}
.ls3_c00155{letter-spacing:0.362492px;}
.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:-12.967628px;}
.ws1_c00155{word-spacing:-10.397640px;}
.ws2_c00155{word-spacing:0.000000px;}
.wse_c00155{word-spacing:0.014004px;}
.ws14_c00155{word-spacing:0.028008px;}
.ws1a_c00155{word-spacing:1.057302px;}
.ws4_c00155{word-spacing:1.099314px;}
.ws1b_c00155{word-spacing:1.421406px;}
.wsb_c00155{word-spacing:2.499714px;}
.ws6_c00155{word-spacing:3.248928px;}
.ws7_c00155{word-spacing:3.592026px;}
.ws8_c00155{word-spacing:3.613032px;}
.ws15_c00155{word-spacing:3.970134px;}
.ws23_c00155{word-spacing:5.320442px;}
.ws19_c00155{word-spacing:5.384538px;}
.ws18_c00155{word-spacing:5.398542px;}
.ws10_c00155{word-spacing:5.412546px;}
.wsf_c00155{word-spacing:5.433552px;}
.ws22_c00155{word-spacing:5.443222px;}
.ws24_c00155{word-spacing:6.051272px;}
.ws12_c00155{word-spacing:6.469848px;}
.ws13_c00155{word-spacing:6.483852px;}
.ws1e_c00155{word-spacing:6.847956px;}
.ws5_c00155{word-spacing:8.633466px;}
.ws16_c00155{word-spacing:9.361674px;}
.wsc_c00155{word-spacing:9.739782px;}
.ws26_c00155{word-spacing:9.857435px;}
.ws25_c00155{word-spacing:9.874975px;}
.ws27_c00155{word-spacing:10.132227px;}
.ws20_c00155{word-spacing:11.511288px;}
.ws1f_c00155{word-spacing:11.518290px;}
.ws9_c00155{word-spacing:12.932694px;}
.ws21_c00155{word-spacing:12.967704px;}
.ws3_c00155{word-spacing:13.296798px;}
.wsa_c00155{word-spacing:13.324806px;}
.ws17_c00155{word-spacing:15.824520px;}
.wsd_c00155{word-spacing:19.423548px;}
.ws11_c00155{word-spacing:24.464988px;}
.ws1d_c00155{word-spacing:28.806228px;}
.ws1c_c00155{word-spacing:28.827234px;}
._0_c00155{margin-left:-13.317804px;}
._5_c00155{margin-left:-2.710494px;}
._2_c00155{margin-left:-1.267362px;}
._1_c00155{width:1.183338px;}
._4_c00155{width:5.930694px;}
._3_c00155{width:16.272648px;}
.fc0_c00155{color:rgb(0,0,0);}
.fs2_c00155{font-size:37.809600px;}
.fs1_c00155{font-size:46.562400px;}
.fs3_c00155{font-size:58.466400px;}
.fs0_c00155{font-size:70.020000px;}
.y0_c00155{bottom:0.000000px;}
.y2_c00155{bottom:109.740968px;}
.y1_c00155{bottom:129.810450px;}
.y23_c00155{bottom:149.429548px;}
.y22_c00155{bottom:167.250107px;}
.y21_c00155{bottom:188.940450px;}
.y20_c00155{bottom:203.608281px;}
.y1f_c00155{bottom:265.078839px;}
.y1e_c00155{bottom:295.229451px;}
.y1d_c00155{bottom:325.469338px;}
.y1c_c00155{bottom:355.619951px;}
.y1b_c00155{bottom:385.859838px;}
.y1a_c00155{bottom:416.006697px;}
.y19_c00155{bottom:446.246585px;}
.y18_c00155{bottom:476.397197px;}
.y17_c00155{bottom:506.637084px;}
.y16_c00155{bottom:536.787696px;}
.y15_c00155{bottom:567.027584px;}
.y14_c00155{bottom:597.087170px;}
.y13_c00155{bottom:627.327057px;}
.y12_c00155{bottom:657.477669px;}
.y11_c00155{bottom:687.717557px;}
.y10_c00155{bottom:717.868169px;}
.yf_c00155{bottom:748.108056px;}
.ye_c00155{bottom:778.258668px;}
.yd_c00155{bottom:808.498556px;}
.yc_c00155{bottom:838.649168px;}
.yb_c00155{bottom:868.889055px;}
.ya_c00155{bottom:899.039667px;}
.y9_c00155{bottom:929.279555px;}
.y8_c00155{bottom:959.519442px;}
.y7_c00155{bottom:989.670054px;}
.y6_c00155{bottom:1019.909942px;}
.y5_c00155{bottom:1050.060553px;}
.y4_c00155{bottom:1080.300441px;}
.y3_c00155{bottom:1110.451053px;}
.h5_c00155{height:39.338549px;}
.h6_c00155{height:54.098549px;}
.h2_c00155{height:62.600889px;}
.h1_c00155{height:62.771836px;}
.h4_c00155{height:62.780512px;}
.h3_c00155{height:74.044398px;}
.h0_c00155{height:1263.000000px;}
.w0_c00155{width:892.500000px;}
.x0_c00155{left:0.000000px;}
.x2_c00155{left:82.710059px;}
.x1_c00155{left:431.730000px;}
@media print{
.v2_c00155{vertical-align:-13.120000pt;}
.v0_c00155{vertical-align:0.000000pt;}
.v1_c00155{vertical-align:28.813877pt;}
.ls13_c00155{letter-spacing:-0.353397pt;}
.ls10_c00155{letter-spacing:-0.249457pt;}
.ls11_c00155{letter-spacing:-0.124728pt;}
.ls12_c00155{letter-spacing:-0.109137pt;}
.lsd_c00155{letter-spacing:-0.067217pt;}
.ls4_c00155{letter-spacing:-0.056016pt;}
.lsb_c00155{letter-spacing:-0.043568pt;}
.lsc_c00155{letter-spacing:-0.037344pt;}
.ls6_c00155{letter-spacing:-0.031120pt;}
.lse_c00155{letter-spacing:-0.025985pt;}
.lsa_c00155{letter-spacing:-0.024896pt;}
.ls9_c00155{letter-spacing:-0.018672pt;}
.ls8_c00155{letter-spacing:-0.012448pt;}
.ls7_c00155{letter-spacing:-0.006224pt;}
.ls5_c00155{letter-spacing:0.000000pt;}
.ls0_c00155{letter-spacing:0.006224pt;}
.ls1_c00155{letter-spacing:0.012448pt;}
.ls2_c00155{letter-spacing:0.020694pt;}
.lsf_c00155{letter-spacing:0.083152pt;}
.ls3_c00155{letter-spacing:0.322215pt;}
.ws0_c00155{word-spacing:-11.526781pt;}
.ws1_c00155{word-spacing:-9.242347pt;}
.ws2_c00155{word-spacing:0.000000pt;}
.wse_c00155{word-spacing:0.012448pt;}
.ws14_c00155{word-spacing:0.024896pt;}
.ws1a_c00155{word-spacing:0.939824pt;}
.ws4_c00155{word-spacing:0.977168pt;}
.ws1b_c00155{word-spacing:1.263472pt;}
.wsb_c00155{word-spacing:2.221968pt;}
.ws6_c00155{word-spacing:2.887936pt;}
.ws7_c00155{word-spacing:3.192912pt;}
.ws8_c00155{word-spacing:3.211584pt;}
.ws15_c00155{word-spacing:3.529008pt;}
.ws23_c00155{word-spacing:4.729282pt;}
.ws19_c00155{word-spacing:4.786256pt;}
.ws18_c00155{word-spacing:4.798704pt;}
.ws10_c00155{word-spacing:4.811152pt;}
.wsf_c00155{word-spacing:4.829824pt;}
.ws22_c00155{word-spacing:4.838419pt;}
.ws24_c00155{word-spacing:5.378909pt;}
.ws12_c00155{word-spacing:5.750976pt;}
.ws13_c00155{word-spacing:5.763424pt;}
.ws1e_c00155{word-spacing:6.087072pt;}
.ws5_c00155{word-spacing:7.674192pt;}
.ws16_c00155{word-spacing:8.321488pt;}
.wsc_c00155{word-spacing:8.657584pt;}
.ws26_c00155{word-spacing:8.762164pt;}
.ws25_c00155{word-spacing:8.777756pt;}
.ws27_c00155{word-spacing:9.006424pt;}
.ws20_c00155{word-spacing:10.232256pt;}
.ws1f_c00155{word-spacing:10.238480pt;}
.ws9_c00155{word-spacing:11.495728pt;}
.ws21_c00155{word-spacing:11.526848pt;}
.ws3_c00155{word-spacing:11.819376pt;}
.wsa_c00155{word-spacing:11.844272pt;}
.ws17_c00155{word-spacing:14.066240pt;}
.wsd_c00155{word-spacing:17.265376pt;}
.ws11_c00155{word-spacing:21.746656pt;}
.ws1d_c00155{word-spacing:25.605536pt;}
.ws1c_c00155{word-spacing:25.624208pt;}
._0_c00155{margin-left:-11.838048pt;}
._5_c00155{margin-left:-2.409328pt;}
._2_c00155{margin-left:-1.126544pt;}
._1_c00155{width:1.051856pt;}
._4_c00155{width:5.271728pt;}
._3_c00155{width:14.464576pt;}
.fs2_c00155{font-size:33.608533pt;}
.fs1_c00155{font-size:41.388800pt;}
.fs3_c00155{font-size:51.970133pt;}
.fs0_c00155{font-size:62.240000pt;}
.y0_c00155{bottom:0.000000pt;}
.y2_c00155{bottom:97.547527pt;}
.y1_c00155{bottom:115.387067pt;}
.y23_c00155{bottom:132.826265pt;}
.y22_c00155{bottom:148.666762pt;}
.y21_c00155{bottom:167.947067pt;}
.y20_c00155{bottom:180.985139pt;}
.y1f_c00155{bottom:235.625635pt;}
.y1e_c00155{bottom:262.426179pt;}
.y1d_c00155{bottom:289.306079pt;}
.y1c_c00155{bottom:316.106623pt;}
.y1b_c00155{bottom:342.986523pt;}
.y1a_c00155{bottom:369.783731pt;}
.y19_c00155{bottom:396.663631pt;}
.y18_c00155{bottom:423.464175pt;}
.y17_c00155{bottom:450.344075pt;}
.y16_c00155{bottom:477.144619pt;}
.y15_c00155{bottom:504.024519pt;}
.y14_c00155{bottom:530.744151pt;}
.y13_c00155{bottom:557.624051pt;}
.y12_c00155{bottom:584.424595pt;}
.y11_c00155{bottom:611.304495pt;}
.y10_c00155{bottom:638.105039pt;}
.yf_c00155{bottom:664.984939pt;}
.ye_c00155{bottom:691.785483pt;}
.yd_c00155{bottom:718.665383pt;}
.yc_c00155{bottom:745.465927pt;}
.yb_c00155{bottom:772.345827pt;}
.ya_c00155{bottom:799.146371pt;}
.y9_c00155{bottom:826.026271pt;}
.y8_c00155{bottom:852.906171pt;}
.y7_c00155{bottom:879.706715pt;}
.y6_c00155{bottom:906.586615pt;}
.y5_c00155{bottom:933.387159pt;}
.y4_c00155{bottom:960.267059pt;}
.y3_c00155{bottom:987.067603pt;}
.h5_c00155{height:34.967599pt;}
.h6_c00155{height:48.087599pt;}
.h2_c00155{height:55.645234pt;}
.h1_c00155{height:55.797187pt;}
.h4_c00155{height:55.804899pt;}
.h3_c00155{height:65.817243pt;}
.h0_c00155{height:1122.666667pt;}
.w0_c00155{width:793.333333pt;}
.x0_c00155{left:0.000000pt;}
.x2_c00155{left:73.520052pt;}
.x1_c00155{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bf51b5f46436b5c65f178869.woff2')format("woff");}.ff1_c00156{font-family:ff1_c00156;line-height:1.106934;font-style:normal;font-weight:normal;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_08c06b9ed1bdd420c1c95d3c.woff2')format("woff");}.ff2_c00156{font-family:ff2_c00156;line-height:1.104492;font-style:normal;font-weight:normal;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_6250f61acf18bfa63a3448bf.woff2')format("woff");}.ff3_c00156{font-family:ff3_c00156;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00156{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00156{vertical-align:-14.760000px;}
.v0_c00156{vertical-align:0.000000px;}
.v1_c00156{vertical-align:32.040036px;}
.lsc_c00156{letter-spacing:-0.075619px;}
.ls2_c00156{letter-spacing:-0.063018px;}
.lsd_c00156{letter-spacing:-0.058466px;}
.ls5_c00156{letter-spacing:-0.049014px;}
.lsb_c00156{letter-spacing:-0.042012px;}
.lsf_c00156{letter-spacing:-0.040926px;}
.ls8_c00156{letter-spacing:-0.035010px;}
.ls12_c00156{letter-spacing:-0.029233px;}
.ls4_c00156{letter-spacing:-0.028008px;}
.ls6_c00156{letter-spacing:-0.021006px;}
.ls7_c00156{letter-spacing:-0.014004px;}
.ls9_c00156{letter-spacing:-0.007002px;}
.ls3_c00156{letter-spacing:0.000000px;}
.ls1_c00156{letter-spacing:0.007002px;}
.ls0_c00156{letter-spacing:0.023281px;}
.ls10_c00156{letter-spacing:0.111086px;}
.lsa_c00156{letter-spacing:0.336096px;}
.ls11_c00156{letter-spacing:0.444345px;}
.lse_c00156{letter-spacing:0.502811px;}
.sc__c00156{text-shadow:none;}
.sc0_c00156{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00156{-webkit-text-stroke:0px transparent;}
.sc0_c00156{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00156{word-spacing:-12.967628px;}
.ws1_c00156{word-spacing:-10.397640px;}
.ws22_c00156{word-spacing:-0.456038px;}
.ws24_c00156{word-spacing:-0.432651px;}
.ws25_c00156{word-spacing:-0.315719px;}
.ws16_c00156{word-spacing:-0.014004px;}
.ws2_c00156{word-spacing:0.000000px;}
.ws5_c00156{word-spacing:0.007002px;}
.ws1b_c00156{word-spacing:0.014004px;}
.ws23_c00156{word-spacing:0.070160px;}
.wsa_c00156{word-spacing:0.336096px;}
.ws1a_c00156{word-spacing:0.364104px;}
.ws17_c00156{word-spacing:0.385110px;}
.ws1d_c00156{word-spacing:1.078308px;}
.ws12_c00156{word-spacing:2.856816px;}
.ws13_c00156{word-spacing:2.891826px;}
.ws4_c00156{word-spacing:4.306230px;}
.ws20_c00156{word-spacing:4.735778px;}
.ws18_c00156{word-spacing:5.048442px;}
.ws21_c00156{word-spacing:5.092423px;}
.ws3_c00156{word-spacing:6.133752px;}
.ws1f_c00156{word-spacing:6.349451px;}
.wsc_c00156{word-spacing:7.184052px;}
.wsb_c00156{word-spacing:7.198056px;}
.ws1c_c00156{word-spacing:8.633466px;}
.ws10_c00156{word-spacing:9.004572px;}
.ws11_c00156{word-spacing:9.375678px;}
.ws1e_c00156{word-spacing:11.231395px;}
.ws19_c00156{word-spacing:13.331808px;}
.wsd_c00156{word-spacing:14.060016px;}
.wse_c00156{word-spacing:15.474420px;}
.wsf_c00156{word-spacing:15.495426px;}
.ws14_c00156{word-spacing:17.638038px;}
.ws9_c00156{word-spacing:21.958272px;}
.ws15_c00156{word-spacing:22.672476px;}
.ws8_c00156{word-spacing:27.335808px;}
.ws7_c00156{word-spacing:27.356814px;}
.ws6_c00156{word-spacing:27.706914px;}
._3_c00156{margin-left:-2.710044px;}
._0_c00156{margin-left:-1.162332px;}
._1_c00156{width:1.442412px;}
._2_c00156{width:5.930694px;}
.fc0_c00156{color:rgb(0,0,0);}
.fs2_c00156{font-size:37.809600px;}
.fs1_c00156{font-size:46.562400px;}
.fs3_c00156{font-size:58.466400px;}
.fs0_c00156{font-size:70.020000px;}
.y0_c00156{bottom:0.000000px;}
.y2_c00156{bottom:109.740968px;}
.y1_c00156{bottom:129.810450px;}
.y22_c00156{bottom:153.120600px;}
.y21_c00156{bottom:191.370600px;}
.y20_c00156{bottom:226.021290px;}
.y1f_c00156{bottom:243.931010px;}
.y1e_c00156{bottom:261.840730px;}
.y1d_c00156{bottom:283.440450px;}
.y1c_c00156{bottom:298.108137px;}
.y1b_c00156{bottom:385.858951px;}
.y1a_c00156{bottom:416.009563px;}
.y19_c00156{bottom:446.249451px;}
.y18_c00156{bottom:476.400063px;}
.y17_c00156{bottom:506.639950px;}
.y16_c00156{bottom:536.790562px;}
.y15_c00156{bottom:567.027980px;}
.y14_c00156{bottom:597.087566px;}
.y13_c00156{bottom:627.327453px;}
.y12_c00156{bottom:657.478065px;}
.y11_c00156{bottom:687.717953px;}
.y10_c00156{bottom:717.868565px;}
.yf_c00156{bottom:748.108452px;}
.ye_c00156{bottom:778.259064px;}
.yd_c00156{bottom:808.498952px;}
.yc_c00156{bottom:838.649564px;}
.yb_c00156{bottom:868.889451px;}
.ya_c00156{bottom:899.040063px;}
.y9_c00156{bottom:929.279951px;}
.y8_c00156{bottom:959.519838px;}
.y7_c00156{bottom:989.670063px;}
.y6_c00156{bottom:1019.909951px;}
.y5_c00156{bottom:1050.060563px;}
.y4_c00156{bottom:1080.300441px;}
.y3_c00156{bottom:1110.451053px;}
.h9_c00156{height:39.337949px;}
.h7_c00156{height:39.338549px;}
.h8_c00156{height:54.098549px;}
.h3_c00156{height:62.600889px;}
.h1_c00156{height:62.771836px;}
.h6_c00156{height:62.781088px;}
.h4_c00156{height:73.670334px;}
.h5_c00156{height:73.678668px;}
.h2_c00156{height:73.782500px;}
.h0_c00156{height:1263.000000px;}
.w0_c00156{width:892.500000px;}
.x0_c00156{left:0.000000px;}
.x2_c00156{left:82.710059px;}
.x1_c00156{left:431.730000px;}
@media print{
.v2_c00156{vertical-align:-13.120000pt;}
.v0_c00156{vertical-align:0.000000pt;}
.v1_c00156{vertical-align:28.480032pt;}
.lsc_c00156{letter-spacing:-0.067217pt;}
.ls2_c00156{letter-spacing:-0.056016pt;}
.lsd_c00156{letter-spacing:-0.051970pt;}
.ls5_c00156{letter-spacing:-0.043568pt;}
.lsb_c00156{letter-spacing:-0.037344pt;}
.lsf_c00156{letter-spacing:-0.036379pt;}
.ls8_c00156{letter-spacing:-0.031120pt;}
.ls12_c00156{letter-spacing:-0.025985pt;}
.ls4_c00156{letter-spacing:-0.024896pt;}
.ls6_c00156{letter-spacing:-0.018672pt;}
.ls7_c00156{letter-spacing:-0.012448pt;}
.ls9_c00156{letter-spacing:-0.006224pt;}
.ls3_c00156{letter-spacing:0.000000pt;}
.ls1_c00156{letter-spacing:0.006224pt;}
.ls0_c00156{letter-spacing:0.020694pt;}
.ls10_c00156{letter-spacing:0.098743pt;}
.lsa_c00156{letter-spacing:0.298752pt;}
.ls11_c00156{letter-spacing:0.394973pt;}
.lse_c00156{letter-spacing:0.446943pt;}
.ws0_c00156{word-spacing:-11.526781pt;}
.ws1_c00156{word-spacing:-9.242347pt;}
.ws22_c00156{word-spacing:-0.405367pt;}
.ws24_c00156{word-spacing:-0.384579pt;}
.ws25_c00156{word-spacing:-0.280639pt;}
.ws16_c00156{word-spacing:-0.012448pt;}
.ws2_c00156{word-spacing:0.000000pt;}
.ws5_c00156{word-spacing:0.006224pt;}
.ws1b_c00156{word-spacing:0.012448pt;}
.ws23_c00156{word-spacing:0.062364pt;}
.wsa_c00156{word-spacing:0.298752pt;}
.ws1a_c00156{word-spacing:0.323648pt;}
.ws17_c00156{word-spacing:0.342320pt;}
.ws1d_c00156{word-spacing:0.958496pt;}
.ws12_c00156{word-spacing:2.539392pt;}
.ws13_c00156{word-spacing:2.570512pt;}
.ws4_c00156{word-spacing:3.827760pt;}
.ws20_c00156{word-spacing:4.209581pt;}
.ws18_c00156{word-spacing:4.487504pt;}
.ws21_c00156{word-spacing:4.526599pt;}
.ws3_c00156{word-spacing:5.452224pt;}
.ws1f_c00156{word-spacing:5.643956pt;}
.wsc_c00156{word-spacing:6.385824pt;}
.wsb_c00156{word-spacing:6.398272pt;}
.ws1c_c00156{word-spacing:7.674192pt;}
.ws10_c00156{word-spacing:8.004064pt;}
.ws11_c00156{word-spacing:8.333936pt;}
.ws1e_c00156{word-spacing:9.983463pt;}
.ws19_c00156{word-spacing:11.850496pt;}
.wsd_c00156{word-spacing:12.497792pt;}
.wse_c00156{word-spacing:13.755040pt;}
.wsf_c00156{word-spacing:13.773712pt;}
.ws14_c00156{word-spacing:15.678256pt;}
.ws9_c00156{word-spacing:19.518464pt;}
.ws15_c00156{word-spacing:20.153312pt;}
.ws8_c00156{word-spacing:24.298496pt;}
.ws7_c00156{word-spacing:24.317168pt;}
.ws6_c00156{word-spacing:24.628368pt;}
._3_c00156{margin-left:-2.408928pt;}
._0_c00156{margin-left:-1.033184pt;}
._1_c00156{width:1.282144pt;}
._2_c00156{width:5.271728pt;}
.fs2_c00156{font-size:33.608533pt;}
.fs1_c00156{font-size:41.388800pt;}
.fs3_c00156{font-size:51.970133pt;}
.fs0_c00156{font-size:62.240000pt;}
.y0_c00156{bottom:0.000000pt;}
.y2_c00156{bottom:97.547527pt;}
.y1_c00156{bottom:115.387067pt;}
.y22_c00156{bottom:136.107200pt;}
.y21_c00156{bottom:170.107200pt;}
.y20_c00156{bottom:200.907813pt;}
.y1f_c00156{bottom:216.827564pt;}
.y1e_c00156{bottom:232.747316pt;}
.y1d_c00156{bottom:251.947067pt;}
.y1c_c00156{bottom:264.985011pt;}
.y1b_c00156{bottom:342.985735pt;}
.y1a_c00156{bottom:369.786279pt;}
.y19_c00156{bottom:396.666179pt;}
.y18_c00156{bottom:423.466723pt;}
.y17_c00156{bottom:450.346623pt;}
.y16_c00156{bottom:477.147167pt;}
.y15_c00156{bottom:504.024871pt;}
.y14_c00156{bottom:530.744503pt;}
.y13_c00156{bottom:557.624403pt;}
.y12_c00156{bottom:584.424947pt;}
.y11_c00156{bottom:611.304847pt;}
.y10_c00156{bottom:638.105391pt;}
.yf_c00156{bottom:664.985291pt;}
.ye_c00156{bottom:691.785835pt;}
.yd_c00156{bottom:718.665735pt;}
.yc_c00156{bottom:745.466279pt;}
.yb_c00156{bottom:772.346179pt;}
.ya_c00156{bottom:799.146723pt;}
.y9_c00156{bottom:826.026623pt;}
.y8_c00156{bottom:852.906523pt;}
.y7_c00156{bottom:879.706723pt;}
.y6_c00156{bottom:906.586623pt;}
.y5_c00156{bottom:933.387167pt;}
.y4_c00156{bottom:960.267059pt;}
.y3_c00156{bottom:987.067603pt;}
.h9_c00156{height:34.967066pt;}
.h7_c00156{height:34.967599pt;}
.h8_c00156{height:48.087599pt;}
.h3_c00156{height:55.645234pt;}
.h1_c00156{height:55.797187pt;}
.h6_c00156{height:55.805411pt;}
.h4_c00156{height:65.484742pt;}
.h5_c00156{height:65.492150pt;}
.h2_c00156{height:65.584445pt;}
.h0_c00156{height:1122.666667pt;}
.w0_c00156{width:793.333333pt;}
.x0_c00156{left:0.000000pt;}
.x2_c00156{left:73.520052pt;}
.x1_c00156{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_413514db9588f88e8fafebe2.woff2')format("woff");}.ff1_c00157{font-family:ff1_c00157;line-height:1.106934;font-style:normal;font-weight:normal;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_798e6f77d6f8ca69f15e6f58.woff2')format("woff");}.ff2_c00157{font-family:ff2_c00157;line-height:1.104492;font-style:normal;font-weight:normal;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_1305e9ad8cdb752514edb508.woff2')format("woff");}.ff3_c00157{font-family:ff3_c00157;line-height:1.133301;font-style:normal;font-weight:normal;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_b6387957e6097e443e43a530.woff2')format("woff");}.ff4_c00157{font-family:ff4_c00157;line-height:1.133301;font-style:normal;font-weight:normal;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_d2ef0493caf4dc7a3c7550a1.woff2')format("woff");}.ff5_c00157{font-family:ff5_c00157;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00157;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff6_c00157{font-family:ff6_c00157;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00157{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00157{vertical-align:-32.040000px;}
.v3_c00157{vertical-align:-14.760000px;}
.v0_c00157{vertical-align:0.000000px;}
.v1_c00157{vertical-align:32.040036px;}
.ls24_c00157{letter-spacing:-0.344952px;}
.ls10_c00157{letter-spacing:-0.335249px;}
.ls20_c00157{letter-spacing:-0.134473px;}
.ls19_c00157{letter-spacing:-0.128626px;}
.lse_c00157{letter-spacing:-0.105030px;}
.ls14_c00157{letter-spacing:-0.075619px;}
.ls21_c00157{letter-spacing:-0.070160px;}
.ls1b_c00157{letter-spacing:-0.064313px;}
.lsa_c00157{letter-spacing:-0.063018px;}
.ls22_c00157{letter-spacing:-0.058466px;}
.ls12_c00157{letter-spacing:-0.042012px;}
.ls1c_c00157{letter-spacing:-0.035080px;}
.ls13_c00157{letter-spacing:-0.035010px;}
.ls17_c00157{letter-spacing:-0.029233px;}
.lsc_c00157{letter-spacing:-0.028008px;}
.lsf_c00157{letter-spacing:-0.021006px;}
.ls1e_c00157{letter-spacing:-0.017540px;}
.lsd_c00157{letter-spacing:-0.014004px;}
.ls1d_c00157{letter-spacing:-0.011693px;}
.ls11_c00157{letter-spacing:-0.007002px;}
.lsb_c00157{letter-spacing:0.000000px;}
.ls1_c00157{letter-spacing:0.007002px;}
.ls2_c00157{letter-spacing:0.014004px;}
.ls3_c00157{letter-spacing:0.021006px;}
.ls0_c00157{letter-spacing:0.023281px;}
.ls6_c00157{letter-spacing:0.028008px;}
.ls4_c00157{letter-spacing:0.035010px;}
.ls23_c00157{letter-spacing:0.035080px;}
.ls7_c00157{letter-spacing:0.049014px;}
.ls15_c00157{letter-spacing:0.058466px;}
.ls5_c00157{letter-spacing:0.091026px;}
.ls18_c00157{letter-spacing:0.163706px;}
.ls9_c00157{letter-spacing:0.204632px;}
.ls16_c00157{letter-spacing:0.280639px;}
.ls8_c00157{letter-spacing:0.362492px;}
.ls1f_c00157{letter-spacing:0.403418px;}
.ls1a_c00157{letter-spacing:0.894536px;}
.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;}
}
.ws4_c00157{word-spacing:-58.466400px;}
.ws0_c00157{word-spacing:-19.360530px;}
.ws5_c00157{word-spacing:-16.195193px;}
.ws1_c00157{word-spacing:-12.967628px;}
.ws2_c00157{word-spacing:-12.609098px;}
.ws3_c00157{word-spacing:-10.397640px;}
.ws23_c00157{word-spacing:-0.280639px;}
.ws1f_c00157{word-spacing:-0.268945px;}
.ws2e_c00157{word-spacing:-0.192939px;}
.ws21_c00157{word-spacing:-0.152013px;}
.ws1e_c00157{word-spacing:-0.046773px;}
.ws10_c00157{word-spacing:-0.014004px;}
.ws6_c00157{word-spacing:0.000000px;}
.ws1a_c00157{word-spacing:0.021006px;}
.ws25_c00157{word-spacing:0.023387px;}
.ws20_c00157{word-spacing:0.040926px;}
.ws24_c00157{word-spacing:0.046773px;}
.ws22_c00157{word-spacing:0.140319px;}
.ws17_c00157{word-spacing:0.315090px;}
.ws14_c00157{word-spacing:0.350100px;}
.ws19_c00157{word-spacing:0.357102px;}
.ws1c_c00157{word-spacing:1.015290px;}
.ws1b_c00157{word-spacing:1.078308px;}
.wse_c00157{word-spacing:1.393398px;}
.wsb_c00157{word-spacing:1.771506px;}
.wsf_c00157{word-spacing:1.778508px;}
.ws2a_c00157{word-spacing:2.601755px;}
.ws2b_c00157{word-spacing:2.952553px;}
.ws29_c00157{word-spacing:3.028560px;}
.ws18_c00157{word-spacing:4.649328px;}
.ws2c_c00157{word-spacing:6.098046px;}
.ws2d_c00157{word-spacing:6.565777px;}
.ws13_c00157{word-spacing:6.854958px;}
.ws12_c00157{word-spacing:8.892540px;}
.ws11_c00157{word-spacing:8.997570px;}
.ws9_c00157{word-spacing:9.697770px;}
.wsa_c00157{word-spacing:9.725778px;}
.wsc_c00157{word-spacing:9.732780px;}
.ws15_c00157{word-spacing:12.267504px;}
.ws28_c00157{word-spacing:12.570276px;}
.ws8_c00157{word-spacing:12.960702px;}
.ws27_c00157{word-spacing:12.991234px;}
.ws26_c00157{word-spacing:13.002927px;}
.ws7_c00157{word-spacing:13.331808px;}
.ws1d_c00157{word-spacing:15.145326px;}
.wsd_c00157{word-spacing:20.487852px;}
.ws16_c00157{word-spacing:22.315374px;}
._2_c00157{margin-left:-8.997570px;}
._4_c00157{margin-left:-2.706750px;}
._1_c00157{margin-left:-1.281366px;}
._0_c00157{width:1.652472px;}
._3_c00157{width:5.930694px;}
.fc0_c00157{color:rgb(0,0,0);}
.fs2_c00157{font-size:37.809600px;}
.fs1_c00157{font-size:46.562400px;}
.fs3_c00157{font-size:58.466400px;}
.fs0_c00157{font-size:70.020000px;}
.y0_c00157{bottom:0.000000px;}
.y2_c00157{bottom:109.740968px;}
.y1_c00157{bottom:129.810450px;}
.y23_c00157{bottom:149.429548px;}
.y22_c00157{bottom:167.250107px;}
.y21_c00157{bottom:188.940450px;}
.y20_c00157{bottom:203.070107px;}
.y1f_c00157{bottom:224.670450px;}
.y1e_c00157{bottom:242.580450px;}
.y1d_c00157{bottom:260.400450px;}
.y1c_c00157{bottom:275.160730px;}
.y1b_c00157{bottom:385.859365px;}
.y1a_c00157{bottom:416.009977px;}
.y19_c00157{bottom:446.249865px;}
.y18_c00157{bottom:476.400477px;}
.y17_c00157{bottom:506.640365px;}
.y16_c00157{bottom:536.790976px;}
.y15_c00157{bottom:567.030864px;}
.y14_c00157{bottom:597.088565px;}
.y13_c00157{bottom:627.328452px;}
.y12_c00157{bottom:657.479064px;}
.y11_c00157{bottom:687.718952px;}
.y10_c00157{bottom:717.869563px;}
.yf_c00157{bottom:748.109451px;}
.ye_c00157{bottom:778.260063px;}
.yd_c00157{bottom:808.499950px;}
.yc_c00157{bottom:838.650562px;}
.yb_c00157{bottom:868.889064px;}
.ya_c00157{bottom:899.039676px;}
.y9_c00157{bottom:929.279563px;}
.y8_c00157{bottom:959.519451px;}
.y7_c00157{bottom:989.670063px;}
.y6_c00157{bottom:1019.909951px;}
.y5_c00157{bottom:1050.060563px;}
.y4_c00157{bottom:1080.300441px;}
.y3_c00157{bottom:1110.451053px;}
.h7_c00157{height:39.338549px;}
.h8_c00157{height:39.698549px;}
.h9_c00157{height:54.098549px;}
.h2_c00157{height:62.600889px;}
.h1_c00157{height:62.771836px;}
.h3_c00157{height:73.668822px;}
.h6_c00157{height:73.673724px;}
.h4_c00157{height:73.674330px;}
.h5_c00157{height:74.036328px;}
.h0_c00157{height:1263.000000px;}
.w0_c00157{width:892.500000px;}
.x0_c00157{left:0.000000px;}
.x2_c00157{left:82.710059px;}
.x1_c00157{left:431.730000px;}
@media print{
.v2_c00157{vertical-align:-28.480000pt;}
.v3_c00157{vertical-align:-13.120000pt;}
.v0_c00157{vertical-align:0.000000pt;}
.v1_c00157{vertical-align:28.480032pt;}
.ls24_c00157{letter-spacing:-0.306624pt;}
.ls10_c00157{letter-spacing:-0.297999pt;}
.ls20_c00157{letter-spacing:-0.119531pt;}
.ls19_c00157{letter-spacing:-0.114334pt;}
.lse_c00157{letter-spacing:-0.093360pt;}
.ls14_c00157{letter-spacing:-0.067217pt;}
.ls21_c00157{letter-spacing:-0.062364pt;}
.ls1b_c00157{letter-spacing:-0.057167pt;}
.lsa_c00157{letter-spacing:-0.056016pt;}
.ls22_c00157{letter-spacing:-0.051970pt;}
.ls12_c00157{letter-spacing:-0.037344pt;}
.ls1c_c00157{letter-spacing:-0.031182pt;}
.ls13_c00157{letter-spacing:-0.031120pt;}
.ls17_c00157{letter-spacing:-0.025985pt;}
.lsc_c00157{letter-spacing:-0.024896pt;}
.lsf_c00157{letter-spacing:-0.018672pt;}
.ls1e_c00157{letter-spacing:-0.015591pt;}
.lsd_c00157{letter-spacing:-0.012448pt;}
.ls1d_c00157{letter-spacing:-0.010394pt;}
.ls11_c00157{letter-spacing:-0.006224pt;}
.lsb_c00157{letter-spacing:0.000000pt;}
.ls1_c00157{letter-spacing:0.006224pt;}
.ls2_c00157{letter-spacing:0.012448pt;}
.ls3_c00157{letter-spacing:0.018672pt;}
.ls0_c00157{letter-spacing:0.020694pt;}
.ls6_c00157{letter-spacing:0.024896pt;}
.ls4_c00157{letter-spacing:0.031120pt;}
.ls23_c00157{letter-spacing:0.031182pt;}
.ls7_c00157{letter-spacing:0.043568pt;}
.ls15_c00157{letter-spacing:0.051970pt;}
.ls5_c00157{letter-spacing:0.080912pt;}
.ls18_c00157{letter-spacing:0.145516pt;}
.ls9_c00157{letter-spacing:0.181895pt;}
.ls16_c00157{letter-spacing:0.249457pt;}
.ls8_c00157{letter-spacing:0.322215pt;}
.ls1f_c00157{letter-spacing:0.358594pt;}
.ls1a_c00157{letter-spacing:0.795143pt;}
.ws4_c00157{word-spacing:-51.970133pt;}
.ws0_c00157{word-spacing:-17.209360pt;}
.ws5_c00157{word-spacing:-14.395727pt;}
.ws1_c00157{word-spacing:-11.526781pt;}
.ws2_c00157{word-spacing:-11.208087pt;}
.ws3_c00157{word-spacing:-9.242347pt;}
.ws23_c00157{word-spacing:-0.249457pt;}
.ws1f_c00157{word-spacing:-0.239063pt;}
.ws2e_c00157{word-spacing:-0.171501pt;}
.ws21_c00157{word-spacing:-0.135122pt;}
.ws1e_c00157{word-spacing:-0.041576pt;}
.ws10_c00157{word-spacing:-0.012448pt;}
.ws6_c00157{word-spacing:0.000000pt;}
.ws1a_c00157{word-spacing:0.018672pt;}
.ws25_c00157{word-spacing:0.020788pt;}
.ws20_c00157{word-spacing:0.036379pt;}
.ws24_c00157{word-spacing:0.041576pt;}
.ws22_c00157{word-spacing:0.124728pt;}
.ws17_c00157{word-spacing:0.280080pt;}
.ws14_c00157{word-spacing:0.311200pt;}
.ws19_c00157{word-spacing:0.317424pt;}
.ws1c_c00157{word-spacing:0.902480pt;}
.ws1b_c00157{word-spacing:0.958496pt;}
.wse_c00157{word-spacing:1.238576pt;}
.wsb_c00157{word-spacing:1.574672pt;}
.wsf_c00157{word-spacing:1.580896pt;}
.ws2a_c00157{word-spacing:2.312671pt;}
.ws2b_c00157{word-spacing:2.624492pt;}
.ws29_c00157{word-spacing:2.692053pt;}
.ws18_c00157{word-spacing:4.132736pt;}
.ws2c_c00157{word-spacing:5.420485pt;}
.ws2d_c00157{word-spacing:5.836246pt;}
.ws13_c00157{word-spacing:6.093296pt;}
.ws12_c00157{word-spacing:7.904480pt;}
.ws11_c00157{word-spacing:7.997840pt;}
.ws9_c00157{word-spacing:8.620240pt;}
.wsa_c00157{word-spacing:8.645136pt;}
.wsc_c00157{word-spacing:8.651360pt;}
.ws15_c00157{word-spacing:10.904448pt;}
.ws28_c00157{word-spacing:11.173579pt;}
.ws8_c00157{word-spacing:11.520624pt;}
.ws27_c00157{word-spacing:11.547764pt;}
.ws26_c00157{word-spacing:11.558158pt;}
.ws7_c00157{word-spacing:11.850496pt;}
.ws1d_c00157{word-spacing:13.462512pt;}
.wsd_c00157{word-spacing:18.211424pt;}
.ws16_c00157{word-spacing:19.835888pt;}
._2_c00157{margin-left:-7.997840pt;}
._4_c00157{margin-left:-2.406000pt;}
._1_c00157{margin-left:-1.138992pt;}
._0_c00157{width:1.468864pt;}
._3_c00157{width:5.271728pt;}
.fs2_c00157{font-size:33.608533pt;}
.fs1_c00157{font-size:41.388800pt;}
.fs3_c00157{font-size:51.970133pt;}
.fs0_c00157{font-size:62.240000pt;}
.y0_c00157{bottom:0.000000pt;}
.y2_c00157{bottom:97.547527pt;}
.y1_c00157{bottom:115.387067pt;}
.y23_c00157{bottom:132.826265pt;}
.y22_c00157{bottom:148.666762pt;}
.y21_c00157{bottom:167.947067pt;}
.y20_c00157{bottom:180.506762pt;}
.y1f_c00157{bottom:199.707067pt;}
.y1e_c00157{bottom:215.627067pt;}
.y1d_c00157{bottom:231.467067pt;}
.y1c_c00157{bottom:244.587316pt;}
.y1b_c00157{bottom:342.986103pt;}
.y1a_c00157{bottom:369.786647pt;}
.y19_c00157{bottom:396.666547pt;}
.y18_c00157{bottom:423.467091pt;}
.y17_c00157{bottom:450.346991pt;}
.y16_c00157{bottom:477.147535pt;}
.y15_c00157{bottom:504.027435pt;}
.y14_c00157{bottom:530.745391pt;}
.y13_c00157{bottom:557.625291pt;}
.y12_c00157{bottom:584.425835pt;}
.y11_c00157{bottom:611.305735pt;}
.y10_c00157{bottom:638.106279pt;}
.yf_c00157{bottom:664.986179pt;}
.ye_c00157{bottom:691.786723pt;}
.yd_c00157{bottom:718.666623pt;}
.yc_c00157{bottom:745.467167pt;}
.yb_c00157{bottom:772.345835pt;}
.ya_c00157{bottom:799.146379pt;}
.y9_c00157{bottom:826.026279pt;}
.y8_c00157{bottom:852.906179pt;}
.y7_c00157{bottom:879.706723pt;}
.y6_c00157{bottom:906.586623pt;}
.y5_c00157{bottom:933.387167pt;}
.y4_c00157{bottom:960.267059pt;}
.y3_c00157{bottom:987.067603pt;}
.h7_c00157{height:34.967599pt;}
.h8_c00157{height:35.287599pt;}
.h9_c00157{height:48.087599pt;}
.h2_c00157{height:55.645234pt;}
.h1_c00157{height:55.797187pt;}
.h3_c00157{height:65.483398pt;}
.h6_c00157{height:65.487755pt;}
.h4_c00157{height:65.488294pt;}
.h5_c00157{height:65.810070pt;}
.h0_c00157{height:1122.666667pt;}
.w0_c00157{width:793.333333pt;}
.x0_c00157{left:0.000000pt;}
.x2_c00157{left:73.520052pt;}
.x1_c00157{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_03316329f09368a71f3934da.woff2')format("woff");}.ff1_c00158{font-family:ff1_c00158;line-height:1.106934;font-style:normal;font-weight:normal;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_fe2e80e4965a1a94f1f242dd.woff2')format("woff");}.ff2_c00158{font-family:ff2_c00158;line-height:1.104492;font-style:normal;font-weight:normal;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_1d1a1f0f910d13cabf30d936.woff2')format("woff");}.ff3_c00158{font-family:ff3_c00158;line-height:1.133301;font-style:normal;font-weight:normal;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_be3c734284df2e870034ae15.woff2')format("woff");}.ff4_c00158{font-family:ff4_c00158;line-height:1.133301;font-style:normal;font-weight:normal;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_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff5_c00158{font-family:ff5_c00158;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00158{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00158{vertical-align:-14.400000px;}
.v0_c00158{vertical-align:0.000000px;}
.v1_c00158{vertical-align:32.040036px;}
.ls1a_c00158{letter-spacing:-0.707443px;}
.ls1e_c00158{letter-spacing:-0.660670px;}
.ls23_c00158{letter-spacing:-0.298179px;}
.ls1c_c00158{letter-spacing:-0.198786px;}
.ls19_c00158{letter-spacing:-0.192939px;}
.ls18_c00158{letter-spacing:-0.169553px;}
.ls1d_c00158{letter-spacing:-0.146166px;}
.ls13_c00158{letter-spacing:-0.122779px;}
.ls21_c00158{letter-spacing:-0.093546px;}
.ls10_c00158{letter-spacing:-0.076006px;}
.lsd_c00158{letter-spacing:-0.075619px;}
.ls1f_c00158{letter-spacing:-0.064313px;}
.ls5_c00158{letter-spacing:-0.063018px;}
.lsa_c00158{letter-spacing:-0.056016px;}
.ls14_c00158{letter-spacing:-0.052620px;}
.ls24_c00158{letter-spacing:-0.046773px;}
.ls9_c00158{letter-spacing:-0.042012px;}
.lsc_c00158{letter-spacing:-0.035010px;}
.ls12_c00158{letter-spacing:-0.029233px;}
.ls7_c00158{letter-spacing:-0.028008px;}
.ls17_c00158{letter-spacing:-0.023387px;}
.ls22_c00158{letter-spacing:-0.017540px;}
.ls8_c00158{letter-spacing:-0.014004px;}
.lse_c00158{letter-spacing:-0.011693px;}
.lsb_c00158{letter-spacing:-0.007002px;}
.ls16_c00158{letter-spacing:-0.005847px;}
.ls6_c00158{letter-spacing:0.000000px;}
.ls4_c00158{letter-spacing:0.005847px;}
.ls3_c00158{letter-spacing:0.007002px;}
.ls1_c00158{letter-spacing:0.014004px;}
.ls1b_c00158{letter-spacing:0.017540px;}
.ls2_c00158{letter-spacing:0.021006px;}
.ls0_c00158{letter-spacing:0.023281px;}
.ls20_c00158{letter-spacing:0.076006px;}
.ls11_c00158{letter-spacing:0.152013px;}
.lsf_c00158{letter-spacing:0.327412px;}
.ls15_c00158{letter-spacing:0.368338px;}
.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;}
}
.ws3_c00158{word-spacing:-58.466400px;}
.ws2_c00158{word-spacing:-16.201039px;}
.ws0_c00158{word-spacing:-12.967628px;}
.ws1_c00158{word-spacing:-10.397640px;}
.ws33_c00158{word-spacing:-0.344952px;}
.ws9_c00158{word-spacing:-0.028008px;}
.wsc_c00158{word-spacing:-0.021006px;}
.ws13_c00158{word-spacing:-0.014004px;}
.ws4_c00158{word-spacing:0.000000px;}
.ws18_c00158{word-spacing:0.021006px;}
.ws34_c00158{word-spacing:0.058466px;}
.ws2d_c00158{word-spacing:0.315719px;}
.ws6_c00158{word-spacing:0.343098px;}
.ws11_c00158{word-spacing:0.350100px;}
.ws12_c00158{word-spacing:0.378108px;}
.ws17_c00158{word-spacing:0.735210px;}
.ws24_c00158{word-spacing:1.116708px;}
.ws25_c00158{word-spacing:1.262874px;}
.ws2f_c00158{word-spacing:1.379807px;}
.ws2a_c00158{word-spacing:1.438273px;}
.ws29_c00158{word-spacing:1.479200px;}
.ws2e_c00158{word-spacing:1.520126px;}
.ws7_c00158{word-spacing:1.771506px;}
.ws8_c00158{word-spacing:1.799514px;}
.ws19_c00158{word-spacing:2.156616px;}
.ws28_c00158{word-spacing:2.163257px;}
.ws14_c00158{word-spacing:3.984138px;}
.ws15_c00158{word-spacing:4.670334px;}
.ws16_c00158{word-spacing:4.677336px;}
.ws23_c00158{word-spacing:4.683159px;}
.wse_c00158{word-spacing:7.212060px;}
.wsd_c00158{word-spacing:7.226064px;}
.ws22_c00158{word-spacing:7.267374px;}
.ws21_c00158{word-spacing:7.337533px;}
.ws10_c00158{word-spacing:8.269362px;}
.ws32_c00158{word-spacing:8.670567px;}
.ws30_c00158{word-spacing:8.746573px;}
.ws31_c00158{word-spacing:8.851813px;}
.ws5_c00158{word-spacing:9.732780px;}
.ws1b_c00158{word-spacing:10.783080px;}
.ws1a_c00158{word-spacing:11.147184px;}
.ws1f_c00158{word-spacing:12.821682px;}
.ws20_c00158{word-spacing:13.002927px;}
.ws1e_c00158{word-spacing:13.049700px;}
.ws26_c00158{word-spacing:14.435354px;}
.ws27_c00158{word-spacing:14.967398px;}
.wsa_c00158{word-spacing:15.481422px;}
.wsf_c00158{word-spacing:15.523434px;}
.wsb_c00158{word-spacing:15.803514px;}
.ws2c_c00158{word-spacing:19.960429px;}
.ws2b_c00158{word-spacing:20.013049px;}
.ws1d_c00158{word-spacing:20.925125px;}
.ws1c_c00158{word-spacing:21.264230px;}
._0_c00158{margin-left:-9.718776px;}
._4_c00158{margin-left:-2.710278px;}
._2_c00158{margin-left:-1.001286px;}
._1_c00158{width:1.239354px;}
._3_c00158{width:5.930694px;}
.fc0_c00158{color:rgb(0,0,0);}
.fs2_c00158{font-size:37.809600px;}
.fs1_c00158{font-size:46.562400px;}
.fs3_c00158{font-size:58.466400px;}
.fs0_c00158{font-size:70.020000px;}
.y0_c00158{bottom:0.000000px;}
.y2_c00158{bottom:109.740968px;}
.y1_c00158{bottom:129.810450px;}
.y27_c00158{bottom:153.120600px;}
.y26_c00158{bottom:167.249548px;}
.y25_c00158{bottom:185.249891px;}
.y24_c00158{bottom:206.760450px;}
.y23_c00158{bottom:221.067251px;}
.y22_c00158{bottom:238.887809px;}
.y21_c00158{bottom:256.708368px;}
.y20_c00158{bottom:274.708711px;}
.y1f_c00158{bottom:292.529270px;}
.y1e_c00158{bottom:310.349828px;}
.y1d_c00158{bottom:328.350171px;}
.y1c_c00158{bottom:346.170730px;}
.y1b_c00158{bottom:367.680450px;}
.y1a_c00158{bottom:382.440112px;}
.y19_c00158{bottom:446.249338px;}
.y18_c00158{bottom:476.399950px;}
.y17_c00158{bottom:506.639838px;}
.y16_c00158{bottom:536.789591px;}
.y15_c00158{bottom:567.029478px;}
.y14_c00158{bottom:597.089064px;}
.y13_c00158{bottom:627.328952px;}
.y12_c00158{bottom:657.479564px;}
.y11_c00158{bottom:687.719451px;}
.y10_c00158{bottom:717.870063px;}
.yf_c00158{bottom:748.109951px;}
.ye_c00158{bottom:778.260562px;}
.yd_c00158{bottom:808.498565px;}
.yc_c00158{bottom:838.649177px;}
.yb_c00158{bottom:868.889064px;}
.ya_c00158{bottom:899.039676px;}
.y9_c00158{bottom:929.279563px;}
.y8_c00158{bottom:959.519451px;}
.y7_c00158{bottom:989.670063px;}
.y6_c00158{bottom:1019.909951px;}
.y5_c00158{bottom:1050.060563px;}
.y4_c00158{bottom:1080.300441px;}
.y3_c00158{bottom:1110.451053px;}
.ha_c00158{height:39.337949px;}
.h9_c00158{height:39.338549px;}
.h7_c00158{height:39.698549px;}
.h8_c00158{height:54.098549px;}
.h4_c00158{height:62.600889px;}
.h1_c00158{height:62.771836px;}
.h6_c00158{height:62.773186px;}
.h2_c00158{height:73.782500px;}
.h3_c00158{height:73.790006px;}
.h5_c00158{height:74.032224px;}
.h0_c00158{height:1263.000000px;}
.w0_c00158{width:892.500000px;}
.x0_c00158{left:0.000000px;}
.x2_c00158{left:82.710059px;}
.x1_c00158{left:431.730000px;}
@media print{
.v2_c00158{vertical-align:-12.800000pt;}
.v0_c00158{vertical-align:0.000000pt;}
.v1_c00158{vertical-align:28.480032pt;}
.ls1a_c00158{letter-spacing:-0.628839pt;}
.ls1e_c00158{letter-spacing:-0.587263pt;}
.ls23_c00158{letter-spacing:-0.265048pt;}
.ls1c_c00158{letter-spacing:-0.176698pt;}
.ls19_c00158{letter-spacing:-0.171501pt;}
.ls18_c00158{letter-spacing:-0.150713pt;}
.ls1d_c00158{letter-spacing:-0.129925pt;}
.ls13_c00158{letter-spacing:-0.109137pt;}
.ls21_c00158{letter-spacing:-0.083152pt;}
.ls10_c00158{letter-spacing:-0.067561pt;}
.lsd_c00158{letter-spacing:-0.067217pt;}
.ls1f_c00158{letter-spacing:-0.057167pt;}
.ls5_c00158{letter-spacing:-0.056016pt;}
.lsa_c00158{letter-spacing:-0.049792pt;}
.ls14_c00158{letter-spacing:-0.046773pt;}
.ls24_c00158{letter-spacing:-0.041576pt;}
.ls9_c00158{letter-spacing:-0.037344pt;}
.lsc_c00158{letter-spacing:-0.031120pt;}
.ls12_c00158{letter-spacing:-0.025985pt;}
.ls7_c00158{letter-spacing:-0.024896pt;}
.ls17_c00158{letter-spacing:-0.020788pt;}
.ls22_c00158{letter-spacing:-0.015591pt;}
.ls8_c00158{letter-spacing:-0.012448pt;}
.lse_c00158{letter-spacing:-0.010394pt;}
.lsb_c00158{letter-spacing:-0.006224pt;}
.ls16_c00158{letter-spacing:-0.005197pt;}
.ls6_c00158{letter-spacing:0.000000pt;}
.ls4_c00158{letter-spacing:0.005197pt;}
.ls3_c00158{letter-spacing:0.006224pt;}
.ls1_c00158{letter-spacing:0.012448pt;}
.ls1b_c00158{letter-spacing:0.015591pt;}
.ls2_c00158{letter-spacing:0.018672pt;}
.ls0_c00158{letter-spacing:0.020694pt;}
.ls20_c00158{letter-spacing:0.067561pt;}
.ls11_c00158{letter-spacing:0.135122pt;}
.lsf_c00158{letter-spacing:0.291033pt;}
.ls15_c00158{letter-spacing:0.327412pt;}
.ws3_c00158{word-spacing:-51.970133pt;}
.ws2_c00158{word-spacing:-14.400924pt;}
.ws0_c00158{word-spacing:-11.526781pt;}
.ws1_c00158{word-spacing:-9.242347pt;}
.ws33_c00158{word-spacing:-0.306624pt;}
.ws9_c00158{word-spacing:-0.024896pt;}
.wsc_c00158{word-spacing:-0.018672pt;}
.ws13_c00158{word-spacing:-0.012448pt;}
.ws4_c00158{word-spacing:0.000000pt;}
.ws18_c00158{word-spacing:0.018672pt;}
.ws34_c00158{word-spacing:0.051970pt;}
.ws2d_c00158{word-spacing:0.280639pt;}
.ws6_c00158{word-spacing:0.304976pt;}
.ws11_c00158{word-spacing:0.311200pt;}
.ws12_c00158{word-spacing:0.336096pt;}
.ws17_c00158{word-spacing:0.653520pt;}
.ws24_c00158{word-spacing:0.992630pt;}
.ws25_c00158{word-spacing:1.122555pt;}
.ws2f_c00158{word-spacing:1.226495pt;}
.ws2a_c00158{word-spacing:1.278465pt;}
.ws29_c00158{word-spacing:1.314844pt;}
.ws2e_c00158{word-spacing:1.351223pt;}
.ws7_c00158{word-spacing:1.574672pt;}
.ws8_c00158{word-spacing:1.599568pt;}
.ws19_c00158{word-spacing:1.916992pt;}
.ws28_c00158{word-spacing:1.922895pt;}
.ws14_c00158{word-spacing:3.541456pt;}
.ws15_c00158{word-spacing:4.151408pt;}
.ws16_c00158{word-spacing:4.157632pt;}
.ws23_c00158{word-spacing:4.162808pt;}
.wse_c00158{word-spacing:6.410720pt;}
.wsd_c00158{word-spacing:6.423168pt;}
.ws22_c00158{word-spacing:6.459888pt;}
.ws21_c00158{word-spacing:6.522252pt;}
.ws10_c00158{word-spacing:7.350544pt;}
.ws32_c00158{word-spacing:7.707171pt;}
.ws30_c00158{word-spacing:7.774732pt;}
.ws31_c00158{word-spacing:7.868278pt;}
.ws5_c00158{word-spacing:8.651360pt;}
.ws1b_c00158{word-spacing:9.584960pt;}
.ws1a_c00158{word-spacing:9.908608pt;}
.ws1f_c00158{word-spacing:11.397050pt;}
.ws20_c00158{word-spacing:11.558158pt;}
.ws1e_c00158{word-spacing:11.599734pt;}
.ws26_c00158{word-spacing:12.831426pt;}
.ws27_c00158{word-spacing:13.304354pt;}
.wsa_c00158{word-spacing:13.761264pt;}
.wsf_c00158{word-spacing:13.798608pt;}
.wsb_c00158{word-spacing:14.047568pt;}
.ws2c_c00158{word-spacing:17.742604pt;}
.ws2b_c00158{word-spacing:17.789377pt;}
.ws1d_c00158{word-spacing:18.600111pt;}
.ws1c_c00158{word-spacing:18.901537pt;}
._0_c00158{margin-left:-8.638912pt;}
._4_c00158{margin-left:-2.409136pt;}
._2_c00158{margin-left:-0.890032pt;}
._1_c00158{width:1.101648pt;}
._3_c00158{width:5.271728pt;}
.fs2_c00158{font-size:33.608533pt;}
.fs1_c00158{font-size:41.388800pt;}
.fs3_c00158{font-size:51.970133pt;}
.fs0_c00158{font-size:62.240000pt;}
.y0_c00158{bottom:0.000000pt;}
.y2_c00158{bottom:97.547527pt;}
.y1_c00158{bottom:115.387067pt;}
.y27_c00158{bottom:136.107200pt;}
.y26_c00158{bottom:148.666265pt;}
.y25_c00158{bottom:164.666570pt;}
.y24_c00158{bottom:183.787067pt;}
.y23_c00158{bottom:196.504223pt;}
.y22_c00158{bottom:212.344719pt;}
.y21_c00158{bottom:228.185216pt;}
.y20_c00158{bottom:244.185521pt;}
.y1f_c00158{bottom:260.026017pt;}
.y1e_c00158{bottom:275.866514pt;}
.y1d_c00158{bottom:291.866819pt;}
.y1c_c00158{bottom:307.707316pt;}
.y1b_c00158{bottom:326.827067pt;}
.y1a_c00158{bottom:339.946767pt;}
.y19_c00158{bottom:396.666079pt;}
.y18_c00158{bottom:423.466623pt;}
.y17_c00158{bottom:450.346523pt;}
.y16_c00158{bottom:477.146303pt;}
.y15_c00158{bottom:504.026203pt;}
.y14_c00158{bottom:530.745835pt;}
.y13_c00158{bottom:557.625735pt;}
.y12_c00158{bottom:584.426279pt;}
.y11_c00158{bottom:611.306179pt;}
.y10_c00158{bottom:638.106723pt;}
.yf_c00158{bottom:664.986623pt;}
.ye_c00158{bottom:691.787167pt;}
.yd_c00158{bottom:718.665391pt;}
.yc_c00158{bottom:745.465935pt;}
.yb_c00158{bottom:772.345835pt;}
.ya_c00158{bottom:799.146379pt;}
.y9_c00158{bottom:826.026279pt;}
.y8_c00158{bottom:852.906179pt;}
.y7_c00158{bottom:879.706723pt;}
.y6_c00158{bottom:906.586623pt;}
.y5_c00158{bottom:933.387167pt;}
.y4_c00158{bottom:960.267059pt;}
.y3_c00158{bottom:987.067603pt;}
.ha_c00158{height:34.967066pt;}
.h9_c00158{height:34.967599pt;}
.h7_c00158{height:35.287599pt;}
.h8_c00158{height:48.087599pt;}
.h4_c00158{height:55.645234pt;}
.h1_c00158{height:55.797187pt;}
.h6_c00158{height:55.798388pt;}
.h2_c00158{height:65.584445pt;}
.h3_c00158{height:65.591116pt;}
.h5_c00158{height:65.806422pt;}
.h0_c00158{height:1122.666667pt;}
.w0_c00158{width:793.333333pt;}
.x0_c00158{left:0.000000pt;}
.x2_c00158{left:73.520052pt;}
.x1_c00158{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8789493e1f70736fd43e667e.woff2')format("woff");}.ff1_c00159{font-family:ff1_c00159;line-height:1.106934;font-style:normal;font-weight:normal;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_bb5fe54643c476880f3ae6c5.woff2')format("woff");}.ff2_c00159{font-family:ff2_c00159;line-height:1.104492;font-style:normal;font-weight:normal;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_bc563c3c6afea092a28ba290.woff2')format("woff");}.ff3_c00159{font-family:ff3_c00159;line-height:1.133301;font-style:normal;font-weight:normal;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_016ccf38ba23b0a88e9767f4.woff2')format("woff");}.ff4_c00159{font-family:ff4_c00159;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00159;src:url('chunks/assets/font_311d9ee85c53779b22f9ea15.woff2')format("woff");}.ff5_c00159{font-family:ff5_c00159;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00159;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff6_c00159{font-family:ff6_c00159;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00159{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00159{vertical-align:-32.040000px;}
.v3_c00159{vertical-align:-14.400000px;}
.v0_c00159{vertical-align:0.000000px;}
.v1_c00159{vertical-align:32.047578px;}
.ls16_c00159{letter-spacing:-0.467731px;}
.ls10_c00159{letter-spacing:-0.335249px;}
.ls20_c00159{letter-spacing:-0.315719px;}
.ls1e_c00159{letter-spacing:-0.268945px;}
.ls14_c00159{letter-spacing:-0.245559px;}
.ls1c_c00159{letter-spacing:-0.081853px;}
.ls13_c00159{letter-spacing:-0.075619px;}
.ls1a_c00159{letter-spacing:-0.064313px;}
.ls9_c00159{letter-spacing:-0.063018px;}
.ls12_c00159{letter-spacing:-0.042012px;}
.lsc_c00159{letter-spacing:-0.035010px;}
.lsd_c00159{letter-spacing:-0.028008px;}
.lsf_c00159{letter-spacing:-0.021006px;}
.ls18_c00159{letter-spacing:-0.017540px;}
.lse_c00159{letter-spacing:-0.014004px;}
.lsb_c00159{letter-spacing:-0.007002px;}
.lsa_c00159{letter-spacing:0.000000px;}
.ls3_c00159{letter-spacing:0.007002px;}
.ls6_c00159{letter-spacing:0.017540px;}
.ls0_c00159{letter-spacing:0.021006px;}
.ls4_c00159{letter-spacing:0.023281px;}
.ls1_c00159{letter-spacing:0.049014px;}
.ls1d_c00159{letter-spacing:0.052620px;}
.ls5_c00159{letter-spacing:0.064313px;}
.ls15_c00159{letter-spacing:0.076006px;}
.ls2_c00159{letter-spacing:0.091026px;}
.ls8_c00159{letter-spacing:0.105240px;}
.ls19_c00159{letter-spacing:0.152013px;}
.ls1f_c00159{letter-spacing:0.263099px;}
.ls11_c00159{letter-spacing:0.343098px;}
.ls7_c00159{letter-spacing:0.362492px;}
.ls17_c00159{letter-spacing:0.432651px;}
.ls1b_c00159{letter-spacing:10.091301px;}
.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;}
}
.ws5_c00159{word-spacing:-58.466400px;}
.ws0_c00159{word-spacing:-19.556586px;}
.ws2_c00159{word-spacing:-19.465560px;}
.ws6_c00159{word-spacing:-16.212733px;}
.ws3_c00159{word-spacing:-12.967628px;}
.ws1_c00159{word-spacing:-12.609098px;}
.ws4_c00159{word-spacing:-10.397640px;}
.ws2e_c00159{word-spacing:-0.450191px;}
.ws25_c00159{word-spacing:-0.344952px;}
.ws2f_c00159{word-spacing:-0.029233px;}
.ws7_c00159{word-spacing:0.000000px;}
.wse_c00159{word-spacing:0.007002px;}
.ws19_c00159{word-spacing:0.028008px;}
.wsa_c00159{word-spacing:0.315090px;}
.ws18_c00159{word-spacing:0.336096px;}
.ws11_c00159{word-spacing:0.658188px;}
.ws1b_c00159{word-spacing:1.785510px;}
.ws24_c00159{word-spacing:2.818080px;}
.wsc_c00159{word-spacing:2.891826px;}
.wsb_c00159{word-spacing:2.898828px;}
.ws22_c00159{word-spacing:3.537217px;}
.ws21_c00159{word-spacing:3.858782px;}
.ws23_c00159{word-spacing:4.443446px;}
.wsd_c00159{word-spacing:4.677336px;}
.ws1c_c00159{word-spacing:5.041440px;}
.ws1e_c00159{word-spacing:6.084738px;}
.ws1f_c00159{word-spacing:6.140754px;}
.ws10_c00159{word-spacing:6.847956px;}
.ws15_c00159{word-spacing:7.919262px;}
.ws1d_c00159{word-spacing:8.990568px;}
.wsf_c00159{word-spacing:9.347670px;}
.ws29_c00159{word-spacing:9.798969px;}
.ws2d_c00159{word-spacing:9.828202px;}
.ws2b_c00159{word-spacing:10.038681px;}
.ws17_c00159{word-spacing:10.075878px;}
.ws2a_c00159{word-spacing:10.173154px;}
.ws2c_c00159{word-spacing:10.722738px;}
.ws1a_c00159{word-spacing:11.154186px;}
.ws9_c00159{word-spacing:12.561588px;}
.ws8_c00159{word-spacing:12.953700px;}
.ws27_c00159{word-spacing:15.780081px;}
.ws12_c00159{word-spacing:15.866532px;}
.ws28_c00159{word-spacing:16.060720px;}
.ws26_c00159{word-spacing:16.949409px;}
.ws14_c00159{word-spacing:19.073448px;}
.ws20_c00159{word-spacing:19.794654px;}
.ws13_c00159{word-spacing:20.893968px;}
.ws16_c00159{word-spacing:42.138036px;}
._4_c00159{margin-left:-10.237467px;}
._5_c00159{margin-left:-9.038905px;}
._3_c00159{margin-left:-2.712096px;}
._1_c00159{margin-left:-1.008288px;}
._0_c00159{width:1.176336px;}
._2_c00159{width:5.930694px;}
.fc0_c00159{color:rgb(0,0,0);}
.fs2_c00159{font-size:37.809600px;}
.fs1_c00159{font-size:46.562400px;}
.fs3_c00159{font-size:58.466400px;}
.fs0_c00159{font-size:70.020000px;}
.y0_c00159{bottom:0.000000px;}
.y2_c00159{bottom:109.740968px;}
.y1_c00159{bottom:129.810450px;}
.y24_c00159{bottom:149.429548px;}
.y23_c00159{bottom:167.250107px;}
.y22_c00159{bottom:188.940450px;}
.y21_c00159{bottom:203.070107px;}
.y20_c00159{bottom:224.670450px;}
.y1f_c00159{bottom:239.429874px;}
.y1e_c00159{bottom:295.230563px;}
.y1d_c00159{bottom:325.467480px;}
.y1c_c00159{bottom:355.618092px;}
.y1b_c00159{bottom:385.857979px;}
.y1a_c00159{bottom:416.008592px;}
.y19_c00159{bottom:446.248479px;}
.y18_c00159{bottom:476.399091px;}
.y17_c00159{bottom:506.638979px;}
.y16_c00159{bottom:536.789591px;}
.y15_c00159{bottom:567.029478px;}
.y14_c00159{bottom:597.089064px;}
.y13_c00159{bottom:627.328952px;}
.y12_c00159{bottom:657.479564px;}
.y11_c00159{bottom:687.719451px;}
.y10_c00159{bottom:717.870063px;}
.yf_c00159{bottom:748.109951px;}
.ye_c00159{bottom:778.260562px;}
.yd_c00159{bottom:808.498556px;}
.yc_c00159{bottom:838.649168px;}
.yb_c00159{bottom:868.889055px;}
.ya_c00159{bottom:899.039667px;}
.y9_c00159{bottom:929.279555px;}
.y8_c00159{bottom:959.519442px;}
.y7_c00159{bottom:989.670054px;}
.y6_c00159{bottom:1019.909942px;}
.y5_c00159{bottom:1050.060553px;}
.y4_c00159{bottom:1080.300441px;}
.y3_c00159{bottom:1110.451053px;}
.h8_c00159{height:39.338549px;}
.h6_c00159{height:39.698549px;}
.h7_c00159{height:54.098549px;}
.h2_c00159{height:62.600889px;}
.h1_c00159{height:62.771836px;}
.h5_c00159{height:62.774140px;}
.h3_c00159{height:73.676364px;}
.h4_c00159{height:73.794344px;}
.h0_c00159{height:1263.000000px;}
.w0_c00159{width:892.500000px;}
.x0_c00159{left:0.000000px;}
.x2_c00159{left:82.710059px;}
.x1_c00159{left:431.730000px;}
@media print{
.v2_c00159{vertical-align:-28.480000pt;}
.v3_c00159{vertical-align:-12.800000pt;}
.v0_c00159{vertical-align:0.000000pt;}
.v1_c00159{vertical-align:28.486736pt;}
.ls16_c00159{letter-spacing:-0.415761pt;}
.ls10_c00159{letter-spacing:-0.297999pt;}
.ls20_c00159{letter-spacing:-0.280639pt;}
.ls1e_c00159{letter-spacing:-0.239063pt;}
.ls14_c00159{letter-spacing:-0.218275pt;}
.ls1c_c00159{letter-spacing:-0.072758pt;}
.ls13_c00159{letter-spacing:-0.067217pt;}
.ls1a_c00159{letter-spacing:-0.057167pt;}
.ls9_c00159{letter-spacing:-0.056016pt;}
.ls12_c00159{letter-spacing:-0.037344pt;}
.lsc_c00159{letter-spacing:-0.031120pt;}
.lsd_c00159{letter-spacing:-0.024896pt;}
.lsf_c00159{letter-spacing:-0.018672pt;}
.ls18_c00159{letter-spacing:-0.015591pt;}
.lse_c00159{letter-spacing:-0.012448pt;}
.lsb_c00159{letter-spacing:-0.006224pt;}
.lsa_c00159{letter-spacing:0.000000pt;}
.ls3_c00159{letter-spacing:0.006224pt;}
.ls6_c00159{letter-spacing:0.015591pt;}
.ls0_c00159{letter-spacing:0.018672pt;}
.ls4_c00159{letter-spacing:0.020694pt;}
.ls1_c00159{letter-spacing:0.043568pt;}
.ls1d_c00159{letter-spacing:0.046773pt;}
.ls5_c00159{letter-spacing:0.057167pt;}
.ls15_c00159{letter-spacing:0.067561pt;}
.ls2_c00159{letter-spacing:0.080912pt;}
.ls8_c00159{letter-spacing:0.093546pt;}
.ls19_c00159{letter-spacing:0.135122pt;}
.ls1f_c00159{letter-spacing:0.233866pt;}
.ls11_c00159{letter-spacing:0.304976pt;}
.ls7_c00159{letter-spacing:0.322215pt;}
.ls17_c00159{letter-spacing:0.384579pt;}
.ls1b_c00159{letter-spacing:8.970045pt;}
.ws5_c00159{word-spacing:-51.970133pt;}
.ws0_c00159{word-spacing:-17.383632pt;}
.ws2_c00159{word-spacing:-17.302720pt;}
.ws6_c00159{word-spacing:-14.411318pt;}
.ws3_c00159{word-spacing:-11.526781pt;}
.ws1_c00159{word-spacing:-11.208087pt;}
.ws4_c00159{word-spacing:-9.242347pt;}
.ws2e_c00159{word-spacing:-0.400170pt;}
.ws25_c00159{word-spacing:-0.306624pt;}
.ws2f_c00159{word-spacing:-0.025985pt;}
.ws7_c00159{word-spacing:0.000000pt;}
.wse_c00159{word-spacing:0.006224pt;}
.ws19_c00159{word-spacing:0.024896pt;}
.wsa_c00159{word-spacing:0.280080pt;}
.ws18_c00159{word-spacing:0.298752pt;}
.ws11_c00159{word-spacing:0.585056pt;}
.ws1b_c00159{word-spacing:1.587120pt;}
.ws24_c00159{word-spacing:2.504960pt;}
.wsc_c00159{word-spacing:2.570512pt;}
.wsb_c00159{word-spacing:2.576736pt;}
.ws22_c00159{word-spacing:3.144193pt;}
.ws21_c00159{word-spacing:3.430029pt;}
.ws23_c00159{word-spacing:3.949730pt;}
.wsd_c00159{word-spacing:4.157632pt;}
.ws1c_c00159{word-spacing:4.481280pt;}
.ws1e_c00159{word-spacing:5.408656pt;}
.ws1f_c00159{word-spacing:5.458448pt;}
.ws10_c00159{word-spacing:6.087072pt;}
.ws15_c00159{word-spacing:7.039344pt;}
.ws1d_c00159{word-spacing:7.991616pt;}
.wsf_c00159{word-spacing:8.309040pt;}
.ws29_c00159{word-spacing:8.710194pt;}
.ws2d_c00159{word-spacing:8.736179pt;}
.ws2b_c00159{word-spacing:8.923272pt;}
.ws17_c00159{word-spacing:8.956336pt;}
.ws2a_c00159{word-spacing:9.042803pt;}
.ws2c_c00159{word-spacing:9.531322pt;}
.ws1a_c00159{word-spacing:9.914832pt;}
.ws9_c00159{word-spacing:11.165856pt;}
.ws8_c00159{word-spacing:11.514400pt;}
.ws27_c00159{word-spacing:14.026739pt;}
.ws12_c00159{word-spacing:14.103584pt;}
.ws28_c00159{word-spacing:14.276196pt;}
.ws26_c00159{word-spacing:15.066142pt;}
.ws14_c00159{word-spacing:16.954176pt;}
.ws20_c00159{word-spacing:17.595248pt;}
.ws13_c00159{word-spacing:18.572416pt;}
.ws16_c00159{word-spacing:37.456032pt;}
._4_c00159{margin-left:-9.099970pt;}
._5_c00159{margin-left:-8.034583pt;}
._3_c00159{margin-left:-2.410752pt;}
._1_c00159{margin-left:-0.896256pt;}
._0_c00159{width:1.045632pt;}
._2_c00159{width:5.271728pt;}
.fs2_c00159{font-size:33.608533pt;}
.fs1_c00159{font-size:41.388800pt;}
.fs3_c00159{font-size:51.970133pt;}
.fs0_c00159{font-size:62.240000pt;}
.y0_c00159{bottom:0.000000pt;}
.y2_c00159{bottom:97.547527pt;}
.y1_c00159{bottom:115.387067pt;}
.y24_c00159{bottom:132.826265pt;}
.y23_c00159{bottom:148.666762pt;}
.y22_c00159{bottom:167.947067pt;}
.y21_c00159{bottom:180.506762pt;}
.y20_c00159{bottom:199.707067pt;}
.y1f_c00159{bottom:212.826555pt;}
.y1e_c00159{bottom:262.427167pt;}
.y1d_c00159{bottom:289.304427pt;}
.y1c_c00159{bottom:316.104971pt;}
.y1b_c00159{bottom:342.984871pt;}
.y1a_c00159{bottom:369.785415pt;}
.y19_c00159{bottom:396.665315pt;}
.y18_c00159{bottom:423.465859pt;}
.y17_c00159{bottom:450.345759pt;}
.y16_c00159{bottom:477.146303pt;}
.y15_c00159{bottom:504.026203pt;}
.y14_c00159{bottom:530.745835pt;}
.y13_c00159{bottom:557.625735pt;}
.y12_c00159{bottom:584.426279pt;}
.y11_c00159{bottom:611.306179pt;}
.y10_c00159{bottom:638.106723pt;}
.yf_c00159{bottom:664.986623pt;}
.ye_c00159{bottom:691.787167pt;}
.yd_c00159{bottom:718.665383pt;}
.yc_c00159{bottom:745.465927pt;}
.yb_c00159{bottom:772.345827pt;}
.ya_c00159{bottom:799.146371pt;}
.y9_c00159{bottom:826.026271pt;}
.y8_c00159{bottom:852.906171pt;}
.y7_c00159{bottom:879.706715pt;}
.y6_c00159{bottom:906.586615pt;}
.y5_c00159{bottom:933.387159pt;}
.y4_c00159{bottom:960.267059pt;}
.y3_c00159{bottom:987.067603pt;}
.h8_c00159{height:34.967599pt;}
.h6_c00159{height:35.287599pt;}
.h7_c00159{height:48.087599pt;}
.h2_c00159{height:55.645234pt;}
.h1_c00159{height:55.797187pt;}
.h5_c00159{height:55.799235pt;}
.h3_c00159{height:65.490102pt;}
.h4_c00159{height:65.594972pt;}
.h0_c00159{height:1122.666667pt;}
.w0_c00159{width:793.333333pt;}
.x0_c00159{left:0.000000pt;}
.x2_c00159{left:73.520052pt;}
.x1_c00159{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0954cd898c6fd7ffd6ac69d3.woff2')format("woff");}.ff1_c00160{font-family:ff1_c00160;line-height:1.106934;font-style:normal;font-weight:normal;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_95fad45e25676cd8b82db816.woff2')format("woff");}.ff2_c00160{font-family:ff2_c00160;line-height:1.104492;font-style:normal;font-weight:normal;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_c47cc352c0936dd7635620c8.woff2')format("woff");}.ff3_c00160{font-family:ff3_c00160;line-height:1.133301;font-style:normal;font-weight:normal;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_b93d64105e724500e96ff175.woff2')format("woff");}.ff4_c00160{font-family:ff4_c00160;line-height:1.133301;font-style:normal;font-weight:normal;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_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff5_c00160{font-family:ff5_c00160;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00160;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff6_c00160{font-family:ff6_c00160;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00160{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00160{vertical-align:-14.760000px;}
.v0_c00160{vertical-align:0.000000px;}
.v1_c00160{vertical-align:32.405130px;}
.ls14_c00160{letter-spacing:-0.602204px;}
.ls1b_c00160{letter-spacing:-0.344952px;}
.ls12_c00160{letter-spacing:-0.280639px;}
.ls17_c00160{letter-spacing:-0.210479px;}
.ls1a_c00160{letter-spacing:-0.134473px;}
.ls1d_c00160{letter-spacing:-0.122779px;}
.ls18_c00160{letter-spacing:-0.081853px;}
.ls11_c00160{letter-spacing:-0.075619px;}
.ls9_c00160{letter-spacing:-0.063018px;}
.lsd_c00160{letter-spacing:-0.042012px;}
.ls1c_c00160{letter-spacing:-0.035080px;}
.ls10_c00160{letter-spacing:-0.035010px;}
.ls1e_c00160{letter-spacing:-0.029233px;}
.lsf_c00160{letter-spacing:-0.028008px;}
.lsb_c00160{letter-spacing:-0.021006px;}
.ls16_c00160{letter-spacing:-0.017540px;}
.lsc_c00160{letter-spacing:-0.014004px;}
.ls19_c00160{letter-spacing:-0.011693px;}
.lse_c00160{letter-spacing:-0.007002px;}
.lsa_c00160{letter-spacing:0.000000px;}
.ls0_c00160{letter-spacing:0.007002px;}
.ls2_c00160{letter-spacing:0.014004px;}
.ls1_c00160{letter-spacing:0.021006px;}
.ls4_c00160{letter-spacing:0.023281px;}
.ls7_c00160{letter-spacing:0.023387px;}
.ls3_c00160{letter-spacing:0.028008px;}
.ls5_c00160{letter-spacing:0.042012px;}
.ls15_c00160{letter-spacing:0.076006px;}
.ls13_c00160{letter-spacing:0.099393px;}
.ls6_c00160{letter-spacing:0.336096px;}
.ls8_c00160{letter-spacing:0.362492px;}
.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;}
}
.ws3_c00160{word-spacing:-58.466400px;}
.ws0_c00160{word-spacing:-19.465560px;}
.ws4_c00160{word-spacing:-16.294586px;}
.ws1_c00160{word-spacing:-12.967628px;}
.ws2_c00160{word-spacing:-10.397640px;}
.ws33_c00160{word-spacing:-0.315719px;}
.ws31_c00160{word-spacing:-0.309872px;}
.ws10_c00160{word-spacing:-0.035010px;}
.ws21_c00160{word-spacing:-0.021006px;}
.ws5_c00160{word-spacing:0.000000px;}
.wsa_c00160{word-spacing:0.007002px;}
.ws11_c00160{word-spacing:0.014004px;}
.ws2f_c00160{word-spacing:0.023387px;}
.ws32_c00160{word-spacing:0.134473px;}
.ws30_c00160{word-spacing:0.146166px;}
.ws1d_c00160{word-spacing:0.357102px;}
.ws17_c00160{word-spacing:0.378108px;}
.ws1c_c00160{word-spacing:1.085310px;}
.ws12_c00160{word-spacing:1.799514px;}
.ws1a_c00160{word-spacing:3.578022px;}
.ws1b_c00160{word-spacing:3.613032px;}
.ws15_c00160{word-spacing:3.963132px;}
.ws6_c00160{word-spacing:3.970134px;}
.ws24_c00160{word-spacing:4.671465px;}
.ws25_c00160{word-spacing:4.975491px;}
.ws16_c00160{word-spacing:5.034438px;}
.ws7_c00160{word-spacing:5.377536px;}
.ws26_c00160{word-spacing:5.653701px;}
.ws23_c00160{word-spacing:5.783652px;}
.ws2b_c00160{word-spacing:6.513157px;}
.ws2c_c00160{word-spacing:6.519004px;}
.ws2e_c00160{word-spacing:6.577470px;}
.ws2d_c00160{word-spacing:6.706096px;}
.ws2a_c00160{word-spacing:8.945359px;}
.ws20_c00160{word-spacing:9.718776px;}
.wsb_c00160{word-spacing:10.054872px;}
.ws8_c00160{word-spacing:10.467990px;}
.wsd_c00160{word-spacing:12.197484px;}
.wsc_c00160{word-spacing:12.575592px;}
.ws9_c00160{word-spacing:14.004000px;}
.ws14_c00160{word-spacing:15.061302px;}
.ws13_c00160{word-spacing:15.124320px;}
.ws22_c00160{word-spacing:15.467418px;}
.ws27_c00160{word-spacing:16.212733px;}
.ws28_c00160{word-spacing:16.575224px;}
.ws29_c00160{word-spacing:16.855863px;}
.ws19_c00160{word-spacing:17.238924px;}
.ws18_c00160{word-spacing:17.287938px;}
.ws1f_c00160{word-spacing:17.995140px;}
.ws1e_c00160{word-spacing:18.016146px;}
.wsf_c00160{word-spacing:25.172190px;}
.wse_c00160{word-spacing:25.550298px;}
._3_c00160{margin-left:-2.706462px;}
._1_c00160{margin-left:-1.015290px;}
._0_c00160{width:1.617462px;}
._2_c00160{width:5.930694px;}
.fc0_c00160{color:rgb(0,0,0);}
.fs2_c00160{font-size:37.809600px;}
.fs1_c00160{font-size:46.562400px;}
.fs3_c00160{font-size:58.466400px;}
.fs0_c00160{font-size:70.020000px;}
.y0_c00160{bottom:0.000000px;}
.y2_c00160{bottom:109.740968px;}
.y1_c00160{bottom:129.810450px;}
.y25_c00160{bottom:153.120600px;}
.y24_c00160{bottom:167.250108px;}
.y23_c00160{bottom:185.250451px;}
.y22_c00160{bottom:202.980387px;}
.y21_c00160{bottom:221.069891px;}
.y20_c00160{bottom:242.580450px;}
.y1f_c00160{bottom:257.248465px;}
.y1e_c00160{bottom:295.229064px;}
.y1d_c00160{bottom:325.468951px;}
.y1c_c00160{bottom:355.619563px;}
.y1b_c00160{bottom:385.859451px;}
.y1a_c00160{bottom:416.010063px;}
.y19_c00160{bottom:446.249950px;}
.y18_c00160{bottom:476.400562px;}
.y17_c00160{bottom:506.638367px;}
.y16_c00160{bottom:536.788978px;}
.y15_c00160{bottom:567.028866px;}
.y14_c00160{bottom:597.088452px;}
.y13_c00160{bottom:627.328340px;}
.y12_c00160{bottom:657.478952px;}
.y11_c00160{bottom:687.718839px;}
.y10_c00160{bottom:717.869451px;}
.yf_c00160{bottom:748.109339px;}
.ye_c00160{bottom:778.259951px;}
.yd_c00160{bottom:808.499838px;}
.yc_c00160{bottom:838.649168px;}
.yb_c00160{bottom:868.889055px;}
.ya_c00160{bottom:899.039667px;}
.y9_c00160{bottom:929.279555px;}
.y8_c00160{bottom:959.519442px;}
.y7_c00160{bottom:989.670054px;}
.y6_c00160{bottom:1019.909942px;}
.y5_c00160{bottom:1050.060553px;}
.y4_c00160{bottom:1080.300441px;}
.y3_c00160{bottom:1110.451053px;}
.h8_c00160{height:39.337949px;}
.h6_c00160{height:39.338549px;}
.h7_c00160{height:54.098549px;}
.h2_c00160{height:62.600889px;}
.h1_c00160{height:62.771836px;}
.h5_c00160{height:62.779774px;}
.h4_c00160{height:73.790798px;}
.h3_c00160{height:74.147594px;}
.h0_c00160{height:1263.000000px;}
.w0_c00160{width:892.500000px;}
.x0_c00160{left:0.000000px;}
.x2_c00160{left:82.710059px;}
.x1_c00160{left:431.730000px;}
@media print{
.v2_c00160{vertical-align:-13.120000pt;}
.v0_c00160{vertical-align:0.000000pt;}
.v1_c00160{vertical-align:28.804560pt;}
.ls14_c00160{letter-spacing:-0.535292pt;}
.ls1b_c00160{letter-spacing:-0.306624pt;}
.ls12_c00160{letter-spacing:-0.249457pt;}
.ls17_c00160{letter-spacing:-0.187092pt;}
.ls1a_c00160{letter-spacing:-0.119531pt;}
.ls1d_c00160{letter-spacing:-0.109137pt;}
.ls18_c00160{letter-spacing:-0.072758pt;}
.ls11_c00160{letter-spacing:-0.067217pt;}
.ls9_c00160{letter-spacing:-0.056016pt;}
.lsd_c00160{letter-spacing:-0.037344pt;}
.ls1c_c00160{letter-spacing:-0.031182pt;}
.ls10_c00160{letter-spacing:-0.031120pt;}
.ls1e_c00160{letter-spacing:-0.025985pt;}
.lsf_c00160{letter-spacing:-0.024896pt;}
.lsb_c00160{letter-spacing:-0.018672pt;}
.ls16_c00160{letter-spacing:-0.015591pt;}
.lsc_c00160{letter-spacing:-0.012448pt;}
.ls19_c00160{letter-spacing:-0.010394pt;}
.lse_c00160{letter-spacing:-0.006224pt;}
.lsa_c00160{letter-spacing:0.000000pt;}
.ls0_c00160{letter-spacing:0.006224pt;}
.ls2_c00160{letter-spacing:0.012448pt;}
.ls1_c00160{letter-spacing:0.018672pt;}
.ls4_c00160{letter-spacing:0.020694pt;}
.ls7_c00160{letter-spacing:0.020788pt;}
.ls3_c00160{letter-spacing:0.024896pt;}
.ls5_c00160{letter-spacing:0.037344pt;}
.ls15_c00160{letter-spacing:0.067561pt;}
.ls13_c00160{letter-spacing:0.088349pt;}
.ls6_c00160{letter-spacing:0.298752pt;}
.ls8_c00160{letter-spacing:0.322215pt;}
.ws3_c00160{word-spacing:-51.970133pt;}
.ws0_c00160{word-spacing:-17.302720pt;}
.ws4_c00160{word-spacing:-14.484076pt;}
.ws1_c00160{word-spacing:-11.526781pt;}
.ws2_c00160{word-spacing:-9.242347pt;}
.ws33_c00160{word-spacing:-0.280639pt;}
.ws31_c00160{word-spacing:-0.275442pt;}
.ws10_c00160{word-spacing:-0.031120pt;}
.ws21_c00160{word-spacing:-0.018672pt;}
.ws5_c00160{word-spacing:0.000000pt;}
.wsa_c00160{word-spacing:0.006224pt;}
.ws11_c00160{word-spacing:0.012448pt;}
.ws2f_c00160{word-spacing:0.020788pt;}
.ws32_c00160{word-spacing:0.119531pt;}
.ws30_c00160{word-spacing:0.129925pt;}
.ws1d_c00160{word-spacing:0.317424pt;}
.ws17_c00160{word-spacing:0.336096pt;}
.ws1c_c00160{word-spacing:0.964720pt;}
.ws12_c00160{word-spacing:1.599568pt;}
.ws1a_c00160{word-spacing:3.180464pt;}
.ws1b_c00160{word-spacing:3.211584pt;}
.ws15_c00160{word-spacing:3.522784pt;}
.ws6_c00160{word-spacing:3.529008pt;}
.ws24_c00160{word-spacing:4.152414pt;}
.ws25_c00160{word-spacing:4.422658pt;}
.ws16_c00160{word-spacing:4.475056pt;}
.ws7_c00160{word-spacing:4.780032pt;}
.ws26_c00160{word-spacing:5.025512pt;}
.ws23_c00160{word-spacing:5.141024pt;}
.ws2b_c00160{word-spacing:5.789473pt;}
.ws2c_c00160{word-spacing:5.794670pt;}
.ws2e_c00160{word-spacing:5.846640pt;}
.ws2d_c00160{word-spacing:5.960974pt;}
.ws2a_c00160{word-spacing:7.951430pt;}
.ws20_c00160{word-spacing:8.638912pt;}
.wsb_c00160{word-spacing:8.937664pt;}
.ws8_c00160{word-spacing:9.304880pt;}
.wsd_c00160{word-spacing:10.842208pt;}
.wsc_c00160{word-spacing:11.178304pt;}
.ws9_c00160{word-spacing:12.448000pt;}
.ws14_c00160{word-spacing:13.387824pt;}
.ws13_c00160{word-spacing:13.443840pt;}
.ws22_c00160{word-spacing:13.748816pt;}
.ws27_c00160{word-spacing:14.411318pt;}
.ws28_c00160{word-spacing:14.733533pt;}
.ws29_c00160{word-spacing:14.982989pt;}
.ws19_c00160{word-spacing:15.323488pt;}
.ws18_c00160{word-spacing:15.367056pt;}
.ws1f_c00160{word-spacing:15.995680pt;}
.ws1e_c00160{word-spacing:16.014352pt;}
.wsf_c00160{word-spacing:22.375280pt;}
.wse_c00160{word-spacing:22.711376pt;}
._3_c00160{margin-left:-2.405744pt;}
._1_c00160{margin-left:-0.902480pt;}
._0_c00160{width:1.437744pt;}
._2_c00160{width:5.271728pt;}
.fs2_c00160{font-size:33.608533pt;}
.fs1_c00160{font-size:41.388800pt;}
.fs3_c00160{font-size:51.970133pt;}
.fs0_c00160{font-size:62.240000pt;}
.y0_c00160{bottom:0.000000pt;}
.y2_c00160{bottom:97.547527pt;}
.y1_c00160{bottom:115.387067pt;}
.y25_c00160{bottom:136.107200pt;}
.y24_c00160{bottom:148.666763pt;}
.y23_c00160{bottom:164.667068pt;}
.y22_c00160{bottom:180.427011pt;}
.y21_c00160{bottom:196.506570pt;}
.y20_c00160{bottom:215.627067pt;}
.y1f_c00160{bottom:228.665303pt;}
.y1e_c00160{bottom:262.425835pt;}
.y1d_c00160{bottom:289.305735pt;}
.y1c_c00160{bottom:316.106279pt;}
.y1b_c00160{bottom:342.986179pt;}
.y1a_c00160{bottom:369.786723pt;}
.y19_c00160{bottom:396.666623pt;}
.y18_c00160{bottom:423.467167pt;}
.y17_c00160{bottom:450.345215pt;}
.y16_c00160{bottom:477.145759pt;}
.y15_c00160{bottom:504.025659pt;}
.y14_c00160{bottom:530.745291pt;}
.y13_c00160{bottom:557.625191pt;}
.y12_c00160{bottom:584.425735pt;}
.y11_c00160{bottom:611.305635pt;}
.y10_c00160{bottom:638.106179pt;}
.yf_c00160{bottom:664.986079pt;}
.ye_c00160{bottom:691.786623pt;}
.yd_c00160{bottom:718.666523pt;}
.yc_c00160{bottom:745.465927pt;}
.yb_c00160{bottom:772.345827pt;}
.ya_c00160{bottom:799.146371pt;}
.y9_c00160{bottom:826.026271pt;}
.y8_c00160{bottom:852.906171pt;}
.y7_c00160{bottom:879.706715pt;}
.y6_c00160{bottom:906.586615pt;}
.y5_c00160{bottom:933.387159pt;}
.y4_c00160{bottom:960.267059pt;}
.y3_c00160{bottom:987.067603pt;}
.h8_c00160{height:34.967066pt;}
.h6_c00160{height:34.967599pt;}
.h7_c00160{height:48.087599pt;}
.h2_c00160{height:55.645234pt;}
.h1_c00160{height:55.797187pt;}
.h5_c00160{height:55.804244pt;}
.h4_c00160{height:65.591820pt;}
.h3_c00160{height:65.908972pt;}
.h0_c00160{height:1122.666667pt;}
.w0_c00160{width:793.333333pt;}
.x0_c00160{left:0.000000pt;}
.x2_c00160{left:73.520052pt;}
.x1_c00160{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0552d028bfc55b7202fe1819.woff2')format("woff");}.ff1_c00161{font-family:ff1_c00161;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00161{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00161{vertical-align:0.000000px;}
.ls3_c00161{letter-spacing:-0.063018px;}
.lsa_c00161{letter-spacing:-0.049014px;}
.ls7_c00161{letter-spacing:-0.042012px;}
.lsb_c00161{letter-spacing:-0.035010px;}
.ls6_c00161{letter-spacing:-0.028008px;}
.ls9_c00161{letter-spacing:-0.021006px;}
.ls5_c00161{letter-spacing:-0.014004px;}
.ls8_c00161{letter-spacing:-0.007002px;}
.ls4_c00161{letter-spacing:0.000000px;}
.ls2_c00161{letter-spacing:0.007002px;}
.ls0_c00161{letter-spacing:0.021006px;}
.ls1_c00161{letter-spacing:0.049014px;}
.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;}
}
.ws8_c00161{word-spacing:-0.007002px;}
.ws0_c00161{word-spacing:0.000000px;}
.ws3_c00161{word-spacing:0.007002px;}
.ws11_c00161{word-spacing:0.014004px;}
.ws4_c00161{word-spacing:0.322092px;}
.ws16_c00161{word-spacing:0.378108px;}
.wsc_c00161{word-spacing:0.392112px;}
.ws5_c00161{word-spacing:0.707202px;}
.ws2_c00161{word-spacing:1.092312px;}
.ws9_c00161{word-spacing:4.691340px;}
.wsb_c00161{word-spacing:6.119748px;}
.wsa_c00161{word-spacing:6.504858px;}
.ws13_c00161{word-spacing:7.191054px;}
.ws1_c00161{word-spacing:9.361674px;}
.ws17_c00161{word-spacing:10.790082px;}
.ws7_c00161{word-spacing:12.267504px;}
.ws6_c00161{word-spacing:12.631608px;}
.ws10_c00161{word-spacing:12.939696px;}
.wsf_c00161{word-spacing:13.324806px;}
.ws18_c00161{word-spacing:14.753214px;}
.ws12_c00161{word-spacing:26.271504px;}
.wse_c00161{word-spacing:27.293796px;}
.wsd_c00161{word-spacing:27.363816px;}
.ws15_c00161{word-spacing:33.805656px;}
.ws14_c00161{word-spacing:33.833664px;}
._2_c00161{margin-left:-25.872390px;}
._1_c00161{margin-left:-1.316376px;}
._0_c00161{width:1.078308px;}
.fc0_c00161{color:rgb(0,0,0);}
.fs0_c00161{font-size:70.020000px;}
.y0_c00161{bottom:0.000000px;}
.y2_c00161{bottom:109.740968px;}
.y1_c00161{bottom:129.810450px;}
.y22_c00161{bottom:174.444699px;}
.y21_c00161{bottom:204.684587px;}
.y20_c00161{bottom:234.835199px;}
.y1f_c00161{bottom:265.075086px;}
.y1e_c00161{bottom:295.225698px;}
.y1d_c00161{bottom:325.465586px;}
.y1c_c00161{bottom:355.616198px;}
.y1b_c00161{bottom:385.856085px;}
.y1a_c00161{bottom:416.006697px;}
.y19_c00161{bottom:446.246585px;}
.y18_c00161{bottom:476.397197px;}
.y17_c00161{bottom:506.637084px;}
.y16_c00161{bottom:536.787696px;}
.y15_c00161{bottom:567.027584px;}
.y14_c00161{bottom:597.087170px;}
.y13_c00161{bottom:627.327057px;}
.y12_c00161{bottom:657.477669px;}
.y11_c00161{bottom:687.717557px;}
.y10_c00161{bottom:717.868169px;}
.yf_c00161{bottom:748.108056px;}
.ye_c00161{bottom:778.258668px;}
.yd_c00161{bottom:808.498556px;}
.yc_c00161{bottom:838.649168px;}
.yb_c00161{bottom:868.889055px;}
.ya_c00161{bottom:899.039667px;}
.y9_c00161{bottom:929.279555px;}
.y8_c00161{bottom:959.519442px;}
.y7_c00161{bottom:989.670054px;}
.y6_c00161{bottom:1019.909942px;}
.y5_c00161{bottom:1050.060553px;}
.y4_c00161{bottom:1080.300441px;}
.y3_c00161{bottom:1110.451053px;}
.h1_c00161{height:62.771836px;}
.h0_c00161{height:1263.000000px;}
.w0_c00161{width:892.500000px;}
.x0_c00161{left:0.000000px;}
.x2_c00161{left:82.710059px;}
.x1_c00161{left:431.730000px;}
@media print{
.v0_c00161{vertical-align:0.000000pt;}
.ls3_c00161{letter-spacing:-0.056016pt;}
.lsa_c00161{letter-spacing:-0.043568pt;}
.ls7_c00161{letter-spacing:-0.037344pt;}
.lsb_c00161{letter-spacing:-0.031120pt;}
.ls6_c00161{letter-spacing:-0.024896pt;}
.ls9_c00161{letter-spacing:-0.018672pt;}
.ls5_c00161{letter-spacing:-0.012448pt;}
.ls8_c00161{letter-spacing:-0.006224pt;}
.ls4_c00161{letter-spacing:0.000000pt;}
.ls2_c00161{letter-spacing:0.006224pt;}
.ls0_c00161{letter-spacing:0.018672pt;}
.ls1_c00161{letter-spacing:0.043568pt;}
.ws8_c00161{word-spacing:-0.006224pt;}
.ws0_c00161{word-spacing:0.000000pt;}
.ws3_c00161{word-spacing:0.006224pt;}
.ws11_c00161{word-spacing:0.012448pt;}
.ws4_c00161{word-spacing:0.286304pt;}
.ws16_c00161{word-spacing:0.336096pt;}
.wsc_c00161{word-spacing:0.348544pt;}
.ws5_c00161{word-spacing:0.628624pt;}
.ws2_c00161{word-spacing:0.970944pt;}
.ws9_c00161{word-spacing:4.170080pt;}
.wsb_c00161{word-spacing:5.439776pt;}
.wsa_c00161{word-spacing:5.782096pt;}
.ws13_c00161{word-spacing:6.392048pt;}
.ws1_c00161{word-spacing:8.321488pt;}
.ws17_c00161{word-spacing:9.591184pt;}
.ws7_c00161{word-spacing:10.904448pt;}
.ws6_c00161{word-spacing:11.228096pt;}
.ws10_c00161{word-spacing:11.501952pt;}
.wsf_c00161{word-spacing:11.844272pt;}
.ws18_c00161{word-spacing:13.113968pt;}
.ws12_c00161{word-spacing:23.352448pt;}
.wse_c00161{word-spacing:24.261152pt;}
.wsd_c00161{word-spacing:24.323392pt;}
.ws15_c00161{word-spacing:30.049472pt;}
.ws14_c00161{word-spacing:30.074368pt;}
._2_c00161{margin-left:-22.997680pt;}
._1_c00161{margin-left:-1.170112pt;}
._0_c00161{width:0.958496pt;}
.fs0_c00161{font-size:62.240000pt;}
.y0_c00161{bottom:0.000000pt;}
.y2_c00161{bottom:97.547527pt;}
.y1_c00161{bottom:115.387067pt;}
.y22_c00161{bottom:155.061955pt;}
.y21_c00161{bottom:181.941855pt;}
.y20_c00161{bottom:208.742399pt;}
.y1f_c00161{bottom:235.622299pt;}
.y1e_c00161{bottom:262.422843pt;}
.y1d_c00161{bottom:289.302743pt;}
.y1c_c00161{bottom:316.103287pt;}
.y1b_c00161{bottom:342.983187pt;}
.y1a_c00161{bottom:369.783731pt;}
.y19_c00161{bottom:396.663631pt;}
.y18_c00161{bottom:423.464175pt;}
.y17_c00161{bottom:450.344075pt;}
.y16_c00161{bottom:477.144619pt;}
.y15_c00161{bottom:504.024519pt;}
.y14_c00161{bottom:530.744151pt;}
.y13_c00161{bottom:557.624051pt;}
.y12_c00161{bottom:584.424595pt;}
.y11_c00161{bottom:611.304495pt;}
.y10_c00161{bottom:638.105039pt;}
.yf_c00161{bottom:664.984939pt;}
.ye_c00161{bottom:691.785483pt;}
.yd_c00161{bottom:718.665383pt;}
.yc_c00161{bottom:745.465927pt;}
.yb_c00161{bottom:772.345827pt;}
.ya_c00161{bottom:799.146371pt;}
.y9_c00161{bottom:826.026271pt;}
.y8_c00161{bottom:852.906171pt;}
.y7_c00161{bottom:879.706715pt;}
.y6_c00161{bottom:906.586615pt;}
.y5_c00161{bottom:933.387159pt;}
.y4_c00161{bottom:960.267059pt;}
.y3_c00161{bottom:987.067603pt;}
.h1_c00161{height:55.797187pt;}
.h0_c00161{height:1122.666667pt;}
.w0_c00161{width:793.333333pt;}
.x0_c00161{left:0.000000pt;}
.x2_c00161{left:73.520052pt;}
.x1_c00161{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_942e70ac3c9553ad5b08ffe6.woff2')format("woff");}.ff1_c00162{font-family:ff1_c00162;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00162;src:url('chunks/assets/font_30accf06a10942da181c9b94.woff2')format("woff");}.ff2_c00162{font-family:ff2_c00162;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00162;src:url('chunks/assets/font_bbb7addd79f8c049dbfade61.woff2')format("woff");}.ff3_c00162{font-family:ff3_c00162;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00162{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00162{vertical-align:0.000000px;}
.ls5_c00162{letter-spacing:-0.091166px;}
.ls3_c00162{letter-spacing:-0.063018px;}
.ls9_c00162{letter-spacing:-0.049014px;}
.ls7_c00162{letter-spacing:-0.035010px;}
.lsa_c00162{letter-spacing:-0.021006px;}
.ls8_c00162{letter-spacing:-0.014004px;}
.ls6_c00162{letter-spacing:-0.007002px;}
.ls4_c00162{letter-spacing:0.000000px;}
.ls0_c00162{letter-spacing:0.007002px;}
.ls1_c00162{letter-spacing:0.021006px;}
.ls2_c00162{letter-spacing:0.049014px;}
.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;}
}
.ws7_c00162{word-spacing:-0.007002px;}
.ws0_c00162{word-spacing:0.000000px;}
.wsa_c00162{word-spacing:0.035010px;}
.ws1_c00162{word-spacing:0.144346px;}
.wsd_c00162{word-spacing:2.506716px;}
.wse_c00162{word-spacing:3.248928px;}
.wsf_c00162{word-spacing:3.606030px;}
.ws6_c00162{word-spacing:4.320234px;}
.ws2_c00162{word-spacing:5.377536px;}
.ws5_c00162{word-spacing:5.384538px;}
.ws3_c00162{word-spacing:5.391540px;}
.ws4_c00162{word-spacing:5.419548px;}
.ws9_c00162{word-spacing:6.441840px;}
.ws8_c00162{word-spacing:6.497856px;}
.wsc_c00162{word-spacing:8.934552px;}
.wsb_c00162{word-spacing:8.976564px;}
.ws10_c00162{word-spacing:44.287650px;}
.ws11_c00162{word-spacing:44.294652px;}
._1_c00162{margin-left:-1.134324px;}
._0_c00162{width:1.309374px;}
.fc0_c00162{color:rgb(0,0,0);}
.fs0_c00162{font-size:70.020000px;}
.fs1_c00162{font-size:75.971400px;}
.y0_c00162{bottom:0.000000px;}
.y2_c00162{bottom:109.740968px;}
.y1_c00162{bottom:129.810450px;}
.y1d_c00162{bottom:271.108807px;}
.y1c_c00162{bottom:301.259419px;}
.y1b_c00162{bottom:331.499307px;}
.y1a_c00162{bottom:361.649919px;}
.y19_c00162{bottom:412.139590px;}
.y18_c00162{bottom:442.379478px;}
.y17_c00162{bottom:493.049451px;}
.y16_c00162{bottom:523.289338px;}
.y15_c00162{bottom:553.439950px;}
.y14_c00162{bottom:583.679838px;}
.y13_c00162{bottom:613.830450px;}
.y12_c00162{bottom:638.580450px;}
.y11_c00162{bottom:687.717557px;}
.y10_c00162{bottom:717.868169px;}
.yf_c00162{bottom:748.108056px;}
.ye_c00162{bottom:778.258668px;}
.yd_c00162{bottom:808.498556px;}
.yc_c00162{bottom:838.649168px;}
.yb_c00162{bottom:868.889055px;}
.ya_c00162{bottom:899.039667px;}
.y9_c00162{bottom:929.279555px;}
.y8_c00162{bottom:959.519442px;}
.y7_c00162{bottom:989.670054px;}
.y6_c00162{bottom:1019.909942px;}
.y5_c00162{bottom:1050.060553px;}
.y4_c00162{bottom:1080.300441px;}
.y3_c00162{bottom:1110.451053px;}
.h3_c00162{height:62.600889px;}
.h1_c00162{height:62.771836px;}
.h2_c00162{height:68.589413px;}
.h0_c00162{height:1263.000000px;}
.w0_c00162{width:892.500000px;}
.x0_c00162{left:0.000000px;}
.x2_c00162{left:82.710059px;}
.x1_c00162{left:431.730000px;}
@media print{
.v0_c00162{vertical-align:0.000000pt;}
.ls5_c00162{letter-spacing:-0.081036pt;}
.ls3_c00162{letter-spacing:-0.056016pt;}
.ls9_c00162{letter-spacing:-0.043568pt;}
.ls7_c00162{letter-spacing:-0.031120pt;}
.lsa_c00162{letter-spacing:-0.018672pt;}
.ls8_c00162{letter-spacing:-0.012448pt;}
.ls6_c00162{letter-spacing:-0.006224pt;}
.ls4_c00162{letter-spacing:0.000000pt;}
.ls0_c00162{letter-spacing:0.006224pt;}
.ls1_c00162{letter-spacing:0.018672pt;}
.ls2_c00162{letter-spacing:0.043568pt;}
.ws7_c00162{word-spacing:-0.006224pt;}
.ws0_c00162{word-spacing:0.000000pt;}
.wsa_c00162{word-spacing:0.031120pt;}
.ws1_c00162{word-spacing:0.128307pt;}
.wsd_c00162{word-spacing:2.228192pt;}
.wse_c00162{word-spacing:2.887936pt;}
.wsf_c00162{word-spacing:3.205360pt;}
.ws6_c00162{word-spacing:3.840208pt;}
.ws2_c00162{word-spacing:4.780032pt;}
.ws5_c00162{word-spacing:4.786256pt;}
.ws3_c00162{word-spacing:4.792480pt;}
.ws4_c00162{word-spacing:4.817376pt;}
.ws9_c00162{word-spacing:5.726080pt;}
.ws8_c00162{word-spacing:5.775872pt;}
.wsc_c00162{word-spacing:7.941824pt;}
.wsb_c00162{word-spacing:7.979168pt;}
.ws10_c00162{word-spacing:39.366800pt;}
.ws11_c00162{word-spacing:39.373024pt;}
._1_c00162{margin-left:-1.008288pt;}
._0_c00162{width:1.163888pt;}
.fs0_c00162{font-size:62.240000pt;}
.fs1_c00162{font-size:67.530133pt;}
.y0_c00162{bottom:0.000000pt;}
.y2_c00162{bottom:97.547527pt;}
.y1_c00162{bottom:115.387067pt;}
.y1d_c00162{bottom:240.985607pt;}
.y1c_c00162{bottom:267.786151pt;}
.y1b_c00162{bottom:294.666051pt;}
.y1a_c00162{bottom:321.466595pt;}
.y19_c00162{bottom:366.346303pt;}
.y18_c00162{bottom:393.226203pt;}
.y17_c00162{bottom:438.266179pt;}
.y16_c00162{bottom:465.146079pt;}
.y15_c00162{bottom:491.946623pt;}
.y14_c00162{bottom:518.826523pt;}
.y13_c00162{bottom:545.627067pt;}
.y12_c00162{bottom:567.627067pt;}
.y11_c00162{bottom:611.304495pt;}
.y10_c00162{bottom:638.105039pt;}
.yf_c00162{bottom:664.984939pt;}
.ye_c00162{bottom:691.785483pt;}
.yd_c00162{bottom:718.665383pt;}
.yc_c00162{bottom:745.465927pt;}
.yb_c00162{bottom:772.345827pt;}
.ya_c00162{bottom:799.146371pt;}
.y9_c00162{bottom:826.026271pt;}
.y8_c00162{bottom:852.906171pt;}
.y7_c00162{bottom:879.706715pt;}
.y6_c00162{bottom:906.586615pt;}
.y5_c00162{bottom:933.387159pt;}
.y4_c00162{bottom:960.267059pt;}
.y3_c00162{bottom:987.067603pt;}
.h3_c00162{height:55.645234pt;}
.h1_c00162{height:55.797187pt;}
.h2_c00162{height:60.968367pt;}
.h0_c00162{height:1122.666667pt;}
.w0_c00162{width:793.333333pt;}
.x0_c00162{left:0.000000pt;}
.x2_c00162{left:73.520052pt;}
.x1_c00162{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a324557507d3b8eebe059bff.woff2')format("woff");}.ff1_c00163{font-family:ff1_c00163;line-height:1.106934;font-style:normal;font-weight:normal;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_47107d373ff1dd5bc684e29b.woff2')format("woff");}.ff2_c00163{font-family:ff2_c00163;line-height:1.104492;font-style:normal;font-weight:normal;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_d2eea1d470d1d1282f274769.woff2')format("woff");}.ff3_c00163{font-family:ff3_c00163;line-height:1.133301;font-style:normal;font-weight:normal;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_f8367682b557912c4e201178.woff2')format("woff");}.ff4_c00163{font-family:ff4_c00163;line-height:1.133301;font-style:normal;font-weight:normal;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_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff5_c00163{font-family:ff5_c00163;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00163{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00163{vertical-align:-14.760000px;}
.v0_c00163{vertical-align:0.000000px;}
.v1_c00163{vertical-align:32.037138px;}
.ls19_c00163{letter-spacing:-0.707443px;}
.ls1b_c00163{letter-spacing:-0.432651px;}
.ls15_c00163{letter-spacing:-0.374185px;}
.lsb_c00163{letter-spacing:-0.335249px;}
.ls1a_c00163{letter-spacing:-0.146166px;}
.ls1c_c00163{letter-spacing:-0.111086px;}
.ls11_c00163{letter-spacing:-0.075619px;}
.ls7_c00163{letter-spacing:-0.063018px;}
.lsc_c00163{letter-spacing:-0.049014px;}
.ls14_c00163{letter-spacing:-0.046773px;}
.lse_c00163{letter-spacing:-0.042012px;}
.ls12_c00163{letter-spacing:-0.040926px;}
.ls10_c00163{letter-spacing:-0.035010px;}
.lsf_c00163{letter-spacing:-0.028008px;}
.lsa_c00163{letter-spacing:-0.021006px;}
.lsd_c00163{letter-spacing:-0.014004px;}
.ls9_c00163{letter-spacing:-0.007002px;}
.ls8_c00163{letter-spacing:0.000000px;}
.ls1_c00163{letter-spacing:0.014004px;}
.ls2_c00163{letter-spacing:0.021006px;}
.ls0_c00163{letter-spacing:0.023281px;}
.ls4_c00163{letter-spacing:0.035010px;}
.ls3_c00163{letter-spacing:0.042012px;}
.ls6_c00163{letter-spacing:0.058466px;}
.ls16_c00163{letter-spacing:0.105240px;}
.ls5_c00163{letter-spacing:0.116933px;}
.ls17_c00163{letter-spacing:0.356645px;}
.ls13_c00163{letter-spacing:0.491118px;}
.ls18_c00163{letter-spacing:0.508658px;}
.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;}
}
.ws3_c00163{word-spacing:-58.466400px;}
.ws1_c00163{word-spacing:-12.967628px;}
.ws0_c00163{word-spacing:-12.609098px;}
.ws2_c00163{word-spacing:-10.397640px;}
.ws21_c00163{word-spacing:-0.479424px;}
.wsb_c00163{word-spacing:-0.014004px;}
.wse_c00163{word-spacing:-0.007002px;}
.ws4_c00163{word-spacing:0.000000px;}
.ws6_c00163{word-spacing:0.007002px;}
.ws1d_c00163{word-spacing:0.014004px;}
.ws16_c00163{word-spacing:0.021006px;}
.ws10_c00163{word-spacing:0.028008px;}
.ws24_c00163{word-spacing:0.052620px;}
.ws23_c00163{word-spacing:0.058466px;}
.ws2d_c00163{word-spacing:0.122779px;}
.ws15_c00163{word-spacing:0.371106px;}
.ws29_c00163{word-spacing:0.719137px;}
.ws14_c00163{word-spacing:1.071306px;}
.wsf_c00163{word-spacing:1.799514px;}
.ws27_c00163{word-spacing:2.174950px;}
.ws28_c00163{word-spacing:2.742074px;}
.ws26_c00163{word-spacing:3.145492px;}
.ws11_c00163{word-spacing:3.213918px;}
.ws2a_c00163{word-spacing:3.396898px;}
.ws25_c00163{word-spacing:3.624917px;}
.ws2b_c00163{word-spacing:3.683383px;}
.ws2c_c00163{word-spacing:3.958175px;}
.ws1c_c00163{word-spacing:5.713632px;}
.ws1b_c00163{word-spacing:5.769648px;}
.ws8_c00163{word-spacing:6.847956px;}
.ws7_c00163{word-spacing:6.875964px;}
.ws13_c00163{word-spacing:12.225492px;}
.ws1f_c00163{word-spacing:12.494270px;}
.ws20_c00163{word-spacing:12.915228px;}
.ws1e_c00163{word-spacing:13.014621px;}
.ws9_c00163{word-spacing:13.324806px;}
.wsa_c00163{word-spacing:14.039010px;}
.ws5_c00163{word-spacing:14.753214px;}
.ws12_c00163{word-spacing:15.488424px;}
.ws17_c00163{word-spacing:15.866532px;}
.ws18_c00163{word-spacing:16.167618px;}
.ws22_c00163{word-spacing:16.253659px;}
.ws1a_c00163{word-spacing:17.582022px;}
.ws19_c00163{word-spacing:17.596026px;}
.wsc_c00163{word-spacing:19.437552px;}
.wsd_c00163{word-spacing:19.444554px;}
._3_c00163{margin-left:-2.712258px;}
._1_c00163{margin-left:-1.134324px;}
._0_c00163{width:1.169334px;}
._2_c00163{width:5.930694px;}
.fc0_c00163{color:rgb(0,0,0);}
.fs2_c00163{font-size:37.809600px;}
.fs1_c00163{font-size:46.562400px;}
.fs3_c00163{font-size:58.466400px;}
.fs0_c00163{font-size:70.020000px;}
.y0_c00163{bottom:0.000000px;}
.y2_c00163{bottom:109.740968px;}
.y1_c00163{bottom:129.810450px;}
.y21_c00163{bottom:149.429891px;}
.y20_c00163{bottom:170.940450px;}
.y1f_c00163{bottom:185.249891px;}
.y1e_c00163{bottom:206.760450px;}
.y1d_c00163{bottom:220.979828px;}
.y1c_c00163{bottom:238.889548px;}
.y1b_c00163{bottom:256.710107px;}
.y1a_c00163{bottom:278.400450px;}
.y19_c00163{bottom:293.068704px;}
.y18_c00163{bottom:363.988461px;}
.y17_c00163{bottom:394.139073px;}
.y16_c00163{bottom:424.378961px;}
.y15_c00163{bottom:454.529573px;}
.y14_c00163{bottom:484.680185px;}
.y13_c00163{bottom:525.179753px;}
.y12_c00163{bottom:575.758893px;}
.y11_c00163{bottom:606.089807px;}
.y10_c00163{bottom:636.240419px;}
.yf_c00163{bottom:666.480306px;}
.ye_c00163{bottom:696.630918px;}
.yd_c00163{bottom:747.120590px;}
.yc_c00163{bottom:777.449753px;}
.yb_c00163{bottom:828.029919px;}
.ya_c00163{bottom:858.269807px;}
.y9_c00163{bottom:908.759478px;}
.y8_c00163{bottom:939.088641px;}
.y7_c00163{bottom:969.239253px;}
.y6_c00163{bottom:999.479141px;}
.y5_c00163{bottom:1029.629752px;}
.y4_c00163{bottom:1080.211166px;}
.y3_c00163{bottom:1110.451053px;}
.h7_c00163{height:39.338549px;}
.h8_c00163{height:54.098549px;}
.h2_c00163{height:62.600889px;}
.h1_c00163{height:62.771836px;}
.h6_c00163{height:62.778820px;}
.h3_c00163{height:73.665924px;}
.h4_c00163{height:73.671510px;}
.h5_c00163{height:74.035014px;}
.h0_c00163{height:1263.000000px;}
.w0_c00163{width:892.500000px;}
.x0_c00163{left:0.000000px;}
.x2_c00163{left:82.710059px;}
.x1_c00163{left:431.730000px;}
@media print{
.v2_c00163{vertical-align:-13.120000pt;}
.v0_c00163{vertical-align:0.000000pt;}
.v1_c00163{vertical-align:28.477456pt;}
.ls19_c00163{letter-spacing:-0.628839pt;}
.ls1b_c00163{letter-spacing:-0.384579pt;}
.ls15_c00163{letter-spacing:-0.332609pt;}
.lsb_c00163{letter-spacing:-0.297999pt;}
.ls1a_c00163{letter-spacing:-0.129925pt;}
.ls1c_c00163{letter-spacing:-0.098743pt;}
.ls11_c00163{letter-spacing:-0.067217pt;}
.ls7_c00163{letter-spacing:-0.056016pt;}
.lsc_c00163{letter-spacing:-0.043568pt;}
.ls14_c00163{letter-spacing:-0.041576pt;}
.lse_c00163{letter-spacing:-0.037344pt;}
.ls12_c00163{letter-spacing:-0.036379pt;}
.ls10_c00163{letter-spacing:-0.031120pt;}
.lsf_c00163{letter-spacing:-0.024896pt;}
.lsa_c00163{letter-spacing:-0.018672pt;}
.lsd_c00163{letter-spacing:-0.012448pt;}
.ls9_c00163{letter-spacing:-0.006224pt;}
.ls8_c00163{letter-spacing:0.000000pt;}
.ls1_c00163{letter-spacing:0.012448pt;}
.ls2_c00163{letter-spacing:0.018672pt;}
.ls0_c00163{letter-spacing:0.020694pt;}
.ls4_c00163{letter-spacing:0.031120pt;}
.ls3_c00163{letter-spacing:0.037344pt;}
.ls6_c00163{letter-spacing:0.051970pt;}
.ls16_c00163{letter-spacing:0.093546pt;}
.ls5_c00163{letter-spacing:0.103940pt;}
.ls17_c00163{letter-spacing:0.317018pt;}
.ls13_c00163{letter-spacing:0.436549pt;}
.ls18_c00163{letter-spacing:0.452140pt;}
.ws3_c00163{word-spacing:-51.970133pt;}
.ws1_c00163{word-spacing:-11.526781pt;}
.ws0_c00163{word-spacing:-11.208087pt;}
.ws2_c00163{word-spacing:-9.242347pt;}
.ws21_c00163{word-spacing:-0.426155pt;}
.wsb_c00163{word-spacing:-0.012448pt;}
.wse_c00163{word-spacing:-0.006224pt;}
.ws4_c00163{word-spacing:0.000000pt;}
.ws6_c00163{word-spacing:0.006224pt;}
.ws1d_c00163{word-spacing:0.012448pt;}
.ws16_c00163{word-spacing:0.018672pt;}
.ws10_c00163{word-spacing:0.024896pt;}
.ws24_c00163{word-spacing:0.046773pt;}
.ws23_c00163{word-spacing:0.051970pt;}
.ws2d_c00163{word-spacing:0.109137pt;}
.ws15_c00163{word-spacing:0.329872pt;}
.ws29_c00163{word-spacing:0.639233pt;}
.ws14_c00163{word-spacing:0.952272pt;}
.wsf_c00163{word-spacing:1.599568pt;}
.ws27_c00163{word-spacing:1.933289pt;}
.ws28_c00163{word-spacing:2.437399pt;}
.ws26_c00163{word-spacing:2.795993pt;}
.ws11_c00163{word-spacing:2.856816pt;}
.ws2a_c00163{word-spacing:3.019465pt;}
.ws25_c00163{word-spacing:3.222148pt;}
.ws2b_c00163{word-spacing:3.274118pt;}
.ws2c_c00163{word-spacing:3.518378pt;}
.ws1c_c00163{word-spacing:5.078784pt;}
.ws1b_c00163{word-spacing:5.128576pt;}
.ws8_c00163{word-spacing:6.087072pt;}
.ws7_c00163{word-spacing:6.111968pt;}
.ws13_c00163{word-spacing:10.867104pt;}
.ws1f_c00163{word-spacing:11.106017pt;}
.ws20_c00163{word-spacing:11.480202pt;}
.ws1e_c00163{word-spacing:11.568552pt;}
.ws9_c00163{word-spacing:11.844272pt;}
.wsa_c00163{word-spacing:12.479120pt;}
.ws5_c00163{word-spacing:13.113968pt;}
.ws12_c00163{word-spacing:13.767488pt;}
.ws17_c00163{word-spacing:14.103584pt;}
.ws18_c00163{word-spacing:14.371216pt;}
.ws22_c00163{word-spacing:14.447697pt;}
.ws1a_c00163{word-spacing:15.628464pt;}
.ws19_c00163{word-spacing:15.640912pt;}
.wsc_c00163{word-spacing:17.277824pt;}
.wsd_c00163{word-spacing:17.284048pt;}
._3_c00163{margin-left:-2.410896pt;}
._1_c00163{margin-left:-1.008288pt;}
._0_c00163{width:1.039408pt;}
._2_c00163{width:5.271728pt;}
.fs2_c00163{font-size:33.608533pt;}
.fs1_c00163{font-size:41.388800pt;}
.fs3_c00163{font-size:51.970133pt;}
.fs0_c00163{font-size:62.240000pt;}
.y0_c00163{bottom:0.000000pt;}
.y2_c00163{bottom:97.547527pt;}
.y1_c00163{bottom:115.387067pt;}
.y21_c00163{bottom:132.826570pt;}
.y20_c00163{bottom:151.947067pt;}
.y1f_c00163{bottom:164.666570pt;}
.y1e_c00163{bottom:183.787067pt;}
.y1d_c00163{bottom:196.426514pt;}
.y1c_c00163{bottom:212.346265pt;}
.y1b_c00163{bottom:228.186762pt;}
.y1a_c00163{bottom:247.467067pt;}
.y19_c00163{bottom:260.505515pt;}
.y18_c00163{bottom:323.545299pt;}
.y17_c00163{bottom:350.345843pt;}
.y16_c00163{bottom:377.225743pt;}
.y15_c00163{bottom:404.026287pt;}
.y14_c00163{bottom:430.826831pt;}
.y13_c00163{bottom:466.826447pt;}
.y12_c00163{bottom:511.785683pt;}
.y11_c00163{bottom:538.746495pt;}
.y10_c00163{bottom:565.547039pt;}
.yf_c00163{bottom:592.426939pt;}
.ye_c00163{bottom:619.227483pt;}
.yd_c00163{bottom:664.107191pt;}
.yc_c00163{bottom:691.066447pt;}
.yb_c00163{bottom:736.026595pt;}
.ya_c00163{bottom:762.906495pt;}
.y9_c00163{bottom:807.786203pt;}
.y8_c00163{bottom:834.745459pt;}
.y7_c00163{bottom:861.546003pt;}
.y6_c00163{bottom:888.425903pt;}
.y5_c00163{bottom:915.226447pt;}
.y4_c00163{bottom:960.187703pt;}
.y3_c00163{bottom:987.067603pt;}
.h7_c00163{height:34.967599pt;}
.h8_c00163{height:48.087599pt;}
.h2_c00163{height:55.645234pt;}
.h1_c00163{height:55.797187pt;}
.h6_c00163{height:55.803396pt;}
.h3_c00163{height:65.480822pt;}
.h4_c00163{height:65.485787pt;}
.h5_c00163{height:65.808902pt;}
.h0_c00163{height:1122.666667pt;}
.w0_c00163{width:793.333333pt;}
.x0_c00163{left:0.000000pt;}
.x2_c00163{left:73.520052pt;}
.x1_c00163{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_68a3f474df0a59926d5e3d68.woff2')format("woff");}.ff1_c00164{font-family:ff1_c00164;line-height:1.106934;font-style:normal;font-weight:normal;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_e7f2e6c5e8346d191f693fba.woff2')format("woff");}.ff2_c00164{font-family:ff2_c00164;line-height:1.104492;font-style:normal;font-weight:normal;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_4cb8ccaae9493d2b0a4e4836.woff2')format("woff");}.ff3_c00164{font-family:ff3_c00164;line-height:1.133301;font-style:normal;font-weight:normal;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_3460982cf965121947965720.woff2')format("woff");}.ff4_c00164{font-family:ff4_c00164;line-height:1.133301;font-style:normal;font-weight:normal;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_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff5_c00164{font-family:ff5_c00164;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00164;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff6_c00164{font-family:ff6_c00164;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00164{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00164{vertical-align:-32.040000px;}
.v3_c00164{vertical-align:-14.760000px;}
.v0_c00164{vertical-align:0.000000px;}
.v1_c00164{vertical-align:32.051574px;}
.ls1a_c00164{letter-spacing:-0.397572px;}
.ls17_c00164{letter-spacing:-0.315719px;}
.ls14_c00164{letter-spacing:-0.298179px;}
.ls15_c00164{letter-spacing:-0.175399px;}
.ls19_c00164{letter-spacing:-0.140319px;}
.ls10_c00164{letter-spacing:-0.075619px;}
.ls8_c00164{letter-spacing:-0.063018px;}
.lsd_c00164{letter-spacing:-0.049014px;}
.lsf_c00164{letter-spacing:-0.035010px;}
.ls1b_c00164{letter-spacing:-0.029233px;}
.lsb_c00164{letter-spacing:-0.028008px;}
.ls11_c00164{letter-spacing:-0.023387px;}
.lse_c00164{letter-spacing:-0.021006px;}
.ls18_c00164{letter-spacing:-0.017540px;}
.lsa_c00164{letter-spacing:-0.014004px;}
.ls13_c00164{letter-spacing:-0.011693px;}
.lsc_c00164{letter-spacing:-0.007002px;}
.ls12_c00164{letter-spacing:-0.005847px;}
.ls9_c00164{letter-spacing:0.000000px;}
.ls3_c00164{letter-spacing:0.014004px;}
.ls4_c00164{letter-spacing:0.023281px;}
.ls0_c00164{letter-spacing:0.028008px;}
.ls5_c00164{letter-spacing:0.035010px;}
.ls6_c00164{letter-spacing:0.040926px;}
.ls2_c00164{letter-spacing:0.042012px;}
.ls1_c00164{letter-spacing:0.049014px;}
.ls7_c00164{letter-spacing:0.076006px;}
.ls16_c00164{letter-spacing:0.116933px;}
.sc__c00164{text-shadow:none;}
.sc0_c00164{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00164{-webkit-text-stroke:0px transparent;}
.sc0_c00164{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00164{word-spacing:-58.466400px;}
.ws3_c00164{word-spacing:-16.236119px;}
.ws0_c00164{word-spacing:-12.967628px;}
.ws1_c00164{word-spacing:-10.397640px;}
.ws27_c00164{word-spacing:-0.327412px;}
.ws23_c00164{word-spacing:-0.064313px;}
.ws8_c00164{word-spacing:-0.007002px;}
.ws4_c00164{word-spacing:0.000000px;}
.ws15_c00164{word-spacing:0.007002px;}
.ws11_c00164{word-spacing:0.014004px;}
.ws21_c00164{word-spacing:0.023387px;}
.ws1f_c00164{word-spacing:0.035080px;}
.ws2a_c00164{word-spacing:0.040926px;}
.ws14_c00164{word-spacing:0.350100px;}
.ws1d_c00164{word-spacing:0.357102px;}
.ws1a_c00164{word-spacing:0.371106px;}
.ws1e_c00164{word-spacing:0.378108px;}
.ws20_c00164{word-spacing:0.380032px;}
.ws22_c00164{word-spacing:0.672364px;}
.ws28_c00164{word-spacing:1.116708px;}
.ws29_c00164{word-spacing:1.596133px;}
.wsb_c00164{word-spacing:1.799514px;}
.wsa_c00164{word-spacing:2.198628px;}
.ws18_c00164{word-spacing:3.241926px;}
.ws13_c00164{word-spacing:3.620034px;}
.ws6_c00164{word-spacing:3.921120px;}
.ws7_c00164{word-spacing:3.977136px;}
.ws1b_c00164{word-spacing:5.027436px;}
.ws5_c00164{word-spacing:6.119748px;}
.ws16_c00164{word-spacing:6.469848px;}
.ws17_c00164{word-spacing:7.149042px;}
.wse_c00164{word-spacing:7.170048px;}
.ws19_c00164{word-spacing:7.926264px;}
.ws25_c00164{word-spacing:11.055996px;}
.wsd_c00164{word-spacing:11.105172px;}
.ws26_c00164{word-spacing:11.488648px;}
.wsc_c00164{word-spacing:11.525292px;}
.ws24_c00164{word-spacing:11.710820px;}
.ws9_c00164{word-spacing:19.017432px;}
.ws1c_c00164{word-spacing:19.066446px;}
.wsf_c00164{word-spacing:20.151756px;}
.ws10_c00164{word-spacing:20.172762px;}
.ws12_c00164{word-spacing:22.665474px;}
._3_c00164{margin-left:-2.710170px;}
._1_c00164{margin-left:-1.372392px;}
._0_c00164{width:1.134324px;}
._2_c00164{width:5.930694px;}
.fc0_c00164{color:rgb(0,0,0);}
.fs2_c00164{font-size:37.809600px;}
.fs1_c00164{font-size:46.562400px;}
.fs3_c00164{font-size:58.466400px;}
.fs0_c00164{font-size:70.020000px;}
.y0_c00164{bottom:0.000000px;}
.y2_c00164{bottom:109.740968px;}
.y1_c00164{bottom:129.810450px;}
.y23_c00164{bottom:149.429891px;}
.y22_c00164{bottom:170.940450px;}
.y21_c00164{bottom:185.249891px;}
.y20_c00164{bottom:206.760450px;}
.y1f_c00164{bottom:221.069891px;}
.y1e_c00164{bottom:242.580450px;}
.y1d_c00164{bottom:257.251103px;}
.y1c_c00164{bottom:355.619563px;}
.y1b_c00164{bottom:385.859451px;}
.y1a_c00164{bottom:416.010063px;}
.y19_c00164{bottom:446.249950px;}
.y18_c00164{bottom:476.400562px;}
.y17_c00164{bottom:506.639977px;}
.y16_c00164{bottom:536.790589px;}
.y15_c00164{bottom:567.030477px;}
.y14_c00164{bottom:597.090063px;}
.y13_c00164{bottom:627.329950px;}
.y12_c00164{bottom:657.480562px;}
.y11_c00164{bottom:687.717557px;}
.y10_c00164{bottom:717.868169px;}
.yf_c00164{bottom:748.108056px;}
.ye_c00164{bottom:778.258668px;}
.yd_c00164{bottom:808.498556px;}
.yc_c00164{bottom:838.649168px;}
.yb_c00164{bottom:868.889055px;}
.ya_c00164{bottom:899.039667px;}
.y9_c00164{bottom:929.279555px;}
.y8_c00164{bottom:959.519442px;}
.y7_c00164{bottom:989.670054px;}
.y6_c00164{bottom:1019.909942px;}
.y5_c00164{bottom:1050.060553px;}
.y4_c00164{bottom:1080.300441px;}
.y3_c00164{bottom:1110.451053px;}
.h6_c00164{height:39.338549px;}
.h7_c00164{height:54.098549px;}
.h2_c00164{height:62.600889px;}
.h1_c00164{height:62.771836px;}
.h4_c00164{height:73.784354px;}
.h3_c00164{height:73.794038px;}
.h5_c00164{height:74.032332px;}
.h0_c00164{height:1263.000000px;}
.w0_c00164{width:892.500000px;}
.x0_c00164{left:0.000000px;}
.x2_c00164{left:82.710059px;}
.x1_c00164{left:431.730000px;}
@media print{
.v2_c00164{vertical-align:-28.480000pt;}
.v3_c00164{vertical-align:-13.120000pt;}
.v0_c00164{vertical-align:0.000000pt;}
.v1_c00164{vertical-align:28.490288pt;}
.ls1a_c00164{letter-spacing:-0.353397pt;}
.ls17_c00164{letter-spacing:-0.280639pt;}
.ls14_c00164{letter-spacing:-0.265048pt;}
.ls15_c00164{letter-spacing:-0.155910pt;}
.ls19_c00164{letter-spacing:-0.124728pt;}
.ls10_c00164{letter-spacing:-0.067217pt;}
.ls8_c00164{letter-spacing:-0.056016pt;}
.lsd_c00164{letter-spacing:-0.043568pt;}
.lsf_c00164{letter-spacing:-0.031120pt;}
.ls1b_c00164{letter-spacing:-0.025985pt;}
.lsb_c00164{letter-spacing:-0.024896pt;}
.ls11_c00164{letter-spacing:-0.020788pt;}
.lse_c00164{letter-spacing:-0.018672pt;}
.ls18_c00164{letter-spacing:-0.015591pt;}
.lsa_c00164{letter-spacing:-0.012448pt;}
.ls13_c00164{letter-spacing:-0.010394pt;}
.lsc_c00164{letter-spacing:-0.006224pt;}
.ls12_c00164{letter-spacing:-0.005197pt;}
.ls9_c00164{letter-spacing:0.000000pt;}
.ls3_c00164{letter-spacing:0.012448pt;}
.ls4_c00164{letter-spacing:0.020694pt;}
.ls0_c00164{letter-spacing:0.024896pt;}
.ls5_c00164{letter-spacing:0.031120pt;}
.ls6_c00164{letter-spacing:0.036379pt;}
.ls2_c00164{letter-spacing:0.037344pt;}
.ls1_c00164{letter-spacing:0.043568pt;}
.ls7_c00164{letter-spacing:0.067561pt;}
.ls16_c00164{letter-spacing:0.103940pt;}
.ws2_c00164{word-spacing:-51.970133pt;}
.ws3_c00164{word-spacing:-14.432106pt;}
.ws0_c00164{word-spacing:-11.526781pt;}
.ws1_c00164{word-spacing:-9.242347pt;}
.ws27_c00164{word-spacing:-0.291033pt;}
.ws23_c00164{word-spacing:-0.057167pt;}
.ws8_c00164{word-spacing:-0.006224pt;}
.ws4_c00164{word-spacing:0.000000pt;}
.ws15_c00164{word-spacing:0.006224pt;}
.ws11_c00164{word-spacing:0.012448pt;}
.ws21_c00164{word-spacing:0.020788pt;}
.ws1f_c00164{word-spacing:0.031182pt;}
.ws2a_c00164{word-spacing:0.036379pt;}
.ws14_c00164{word-spacing:0.311200pt;}
.ws1d_c00164{word-spacing:0.317424pt;}
.ws1a_c00164{word-spacing:0.329872pt;}
.ws1e_c00164{word-spacing:0.336096pt;}
.ws20_c00164{word-spacing:0.337806pt;}
.ws22_c00164{word-spacing:0.597657pt;}
.ws28_c00164{word-spacing:0.992630pt;}
.ws29_c00164{word-spacing:1.418785pt;}
.wsb_c00164{word-spacing:1.599568pt;}
.wsa_c00164{word-spacing:1.954336pt;}
.ws18_c00164{word-spacing:2.881712pt;}
.ws13_c00164{word-spacing:3.217808pt;}
.ws6_c00164{word-spacing:3.485440pt;}
.ws7_c00164{word-spacing:3.535232pt;}
.ws1b_c00164{word-spacing:4.468832pt;}
.ws5_c00164{word-spacing:5.439776pt;}
.ws16_c00164{word-spacing:5.750976pt;}
.ws17_c00164{word-spacing:6.354704pt;}
.wse_c00164{word-spacing:6.373376pt;}
.ws19_c00164{word-spacing:7.045568pt;}
.ws25_c00164{word-spacing:9.827552pt;}
.wsd_c00164{word-spacing:9.871264pt;}
.ws26_c00164{word-spacing:10.212131pt;}
.wsc_c00164{word-spacing:10.244704pt;}
.ws24_c00164{word-spacing:10.409618pt;}
.ws9_c00164{word-spacing:16.904384pt;}
.ws1c_c00164{word-spacing:16.947952pt;}
.wsf_c00164{word-spacing:17.912672pt;}
.ws10_c00164{word-spacing:17.931344pt;}
.ws12_c00164{word-spacing:20.147088pt;}
._3_c00164{margin-left:-2.409040pt;}
._1_c00164{margin-left:-1.219904pt;}
._0_c00164{width:1.008288pt;}
._2_c00164{width:5.271728pt;}
.fs2_c00164{font-size:33.608533pt;}
.fs1_c00164{font-size:41.388800pt;}
.fs3_c00164{font-size:51.970133pt;}
.fs0_c00164{font-size:62.240000pt;}
.y0_c00164{bottom:0.000000pt;}
.y2_c00164{bottom:97.547527pt;}
.y1_c00164{bottom:115.387067pt;}
.y23_c00164{bottom:132.826570pt;}
.y22_c00164{bottom:151.947067pt;}
.y21_c00164{bottom:164.666570pt;}
.y20_c00164{bottom:183.787067pt;}
.y1f_c00164{bottom:196.506570pt;}
.y1e_c00164{bottom:215.627067pt;}
.y1d_c00164{bottom:228.667647pt;}
.y1c_c00164{bottom:316.106279pt;}
.y1b_c00164{bottom:342.986179pt;}
.y1a_c00164{bottom:369.786723pt;}
.y19_c00164{bottom:396.666623pt;}
.y18_c00164{bottom:423.467167pt;}
.y17_c00164{bottom:450.346647pt;}
.y16_c00164{bottom:477.147191pt;}
.y15_c00164{bottom:504.027091pt;}
.y14_c00164{bottom:530.746723pt;}
.y13_c00164{bottom:557.626623pt;}
.y12_c00164{bottom:584.427167pt;}
.y11_c00164{bottom:611.304495pt;}
.y10_c00164{bottom:638.105039pt;}
.yf_c00164{bottom:664.984939pt;}
.ye_c00164{bottom:691.785483pt;}
.yd_c00164{bottom:718.665383pt;}
.yc_c00164{bottom:745.465927pt;}
.yb_c00164{bottom:772.345827pt;}
.ya_c00164{bottom:799.146371pt;}
.y9_c00164{bottom:826.026271pt;}
.y8_c00164{bottom:852.906171pt;}
.y7_c00164{bottom:879.706715pt;}
.y6_c00164{bottom:906.586615pt;}
.y5_c00164{bottom:933.387159pt;}
.y4_c00164{bottom:960.267059pt;}
.y3_c00164{bottom:987.067603pt;}
.h6_c00164{height:34.967599pt;}
.h7_c00164{height:48.087599pt;}
.h2_c00164{height:55.645234pt;}
.h1_c00164{height:55.797187pt;}
.h4_c00164{height:65.586092pt;}
.h3_c00164{height:65.594700pt;}
.h5_c00164{height:65.806518pt;}
.h0_c00164{height:1122.666667pt;}
.w0_c00164{width:793.333333pt;}
.x0_c00164{left:0.000000pt;}
.x2_c00164{left:73.520052pt;}
.x1_c00164{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_31bcc2a5680a6e42b9012434.woff2')format("woff");}.ff1_c00165{font-family:ff1_c00165;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00165;src:url('chunks/assets/font_ac9f139e9ecf1334d8fae1b7.woff2')format("woff");}.ff2_c00165{font-family:ff2_c00165;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00165;src:url('chunks/assets/font_db75eae9313bc92fc24dd318.woff2')format("woff");}.ff3_c00165{font-family:ff3_c00165;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00165;src:url('chunks/assets/font_9eea1e80a1acd430c3041876.woff2')format("woff");}.ff4_c00165{font-family:ff4_c00165;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00165{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00165{vertical-align:-14.760000px;}
.v0_c00165{vertical-align:0.000000px;}
.v1_c00165{vertical-align:32.033682px;}
.ls14_c00165{letter-spacing:-0.707443px;}
.ls11_c00165{letter-spacing:-0.274792px;}
.ls10_c00165{letter-spacing:-0.075619px;}
.ls6_c00165{letter-spacing:-0.063018px;}
.lsa_c00165{letter-spacing:-0.056016px;}
.lsc_c00165{letter-spacing:-0.049014px;}
.ls16_c00165{letter-spacing:-0.046773px;}
.lsd_c00165{letter-spacing:-0.035010px;}
.ls9_c00165{letter-spacing:-0.028008px;}
.ls13_c00165{letter-spacing:-0.023387px;}
.lse_c00165{letter-spacing:-0.021006px;}
.ls18_c00165{letter-spacing:-0.017540px;}
.ls8_c00165{letter-spacing:-0.014004px;}
.lsb_c00165{letter-spacing:-0.007002px;}
.ls7_c00165{letter-spacing:0.000000px;}
.ls5_c00165{letter-spacing:0.005847px;}
.ls3_c00165{letter-spacing:0.007002px;}
.ls4_c00165{letter-spacing:0.014004px;}
.ls1_c00165{letter-spacing:0.023281px;}
.ls0_c00165{letter-spacing:0.028008px;}
.ls2_c00165{letter-spacing:0.056016px;}
.ls17_c00165{letter-spacing:0.140319px;}
.lsf_c00165{letter-spacing:0.343098px;}
.ls12_c00165{letter-spacing:0.467731px;}
.ls15_c00165{letter-spacing:17.651006px;}
.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:-19.465560px;}
.ws1_c00165{word-spacing:-12.967628px;}
.ws2_c00165{word-spacing:-10.397640px;}
.ws16_c00165{word-spacing:-0.007002px;}
.ws3_c00165{word-spacing:0.000000px;}
.ws15_c00165{word-spacing:0.014004px;}
.ws14_c00165{word-spacing:0.021006px;}
.ws27_c00165{word-spacing:0.029233px;}
.ws10_c00165{word-spacing:0.035010px;}
.wsb_c00165{word-spacing:0.357102px;}
.ws22_c00165{word-spacing:0.397572px;}
.ws23_c00165{word-spacing:0.719137px;}
.ws8_c00165{word-spacing:1.078308px;}
.ws1f_c00165{word-spacing:1.087475px;}
.ws7_c00165{word-spacing:1.120320px;}
.ws20_c00165{word-spacing:1.368114px;}
.ws1c_c00165{word-spacing:2.177622px;}
.wsf_c00165{word-spacing:3.942126px;}
.wse_c00165{word-spacing:3.963132px;}
.ws13_c00165{word-spacing:4.663332px;}
.ws11_c00165{word-spacing:4.677336px;}
.ws12_c00165{word-spacing:4.698342px;}
.ws1b_c00165{word-spacing:5.370534px;}
.ws1a_c00165{word-spacing:5.419548px;}
.ws6_c00165{word-spacing:6.490854px;}
.ws18_c00165{word-spacing:6.826950px;}
.ws1d_c00165{word-spacing:7.520148px;}
.ws1e_c00165{word-spacing:7.527150px;}
.ws25_c00165{word-spacing:8.150216px;}
.ws4_c00165{word-spacing:8.269362px;}
.ws5_c00165{word-spacing:8.283366px;}
.ws26_c00165{word-spacing:8.290536px;}
.ws17_c00165{word-spacing:10.446984px;}
.wsa_c00165{word-spacing:14.718204px;}
.ws21_c00165{word-spacing:15.745002px;}
.ws24_c00165{word-spacing:17.697779px;}
.wsd_c00165{word-spacing:19.731636px;}
.wsc_c00165{word-spacing:19.794654px;}
.ws19_c00165{word-spacing:21.601170px;}
.ws9_c00165{word-spacing:38.153898px;}
._5_c00165{margin-left:-18.700403px;}
._4_c00165{margin-left:-17.269550px;}
._6_c00165{margin-left:-15.850241px;}
._3_c00165{margin-left:-2.711124px;}
._1_c00165{margin-left:-1.001286px;}
._0_c00165{width:1.477422px;}
._2_c00165{width:5.930694px;}
.fc0_c00165{color:rgb(0,0,0);}
.fs2_c00165{font-size:37.809600px;}
.fs1_c00165{font-size:46.562400px;}
.fs3_c00165{font-size:58.466400px;}
.fs0_c00165{font-size:70.020000px;}
.y0_c00165{bottom:0.000000px;}
.y2_c00165{bottom:109.740968px;}
.y1_c00165{bottom:129.810450px;}
.y21_c00165{bottom:149.429548px;}
.y20_c00165{bottom:167.250107px;}
.y1f_c00165{bottom:188.940450px;}
.y1e_c00165{bottom:206.760450px;}
.y1d_c00165{bottom:224.670450px;}
.y1c_c00165{bottom:262.920450px;}
.y1b_c00165{bottom:297.571010px;}
.y1a_c00165{bottom:315.480730px;}
.y19_c00165{bottom:337.080450px;}
.y18_c00165{bottom:372.178411px;}
.y17_c00165{bottom:404.489140px;}
.y16_c00165{bottom:434.639752px;}
.y15_c00165{bottom:485.220891px;}
.y14_c00165{bottom:515.460778px;}
.y13_c00165{bottom:565.950090px;}
.y12_c00165{bottom:596.279253px;}
.y11_c00165{bottom:626.429865px;}
.y10_c00165{bottom:656.669752px;}
.yf_c00165{bottom:707.251004px;}
.ye_c00165{bottom:737.490891px;}
.yd_c00165{bottom:767.730779px;}
.yc_c00165{bottom:818.221003px;}
.yb_c00165{bottom:848.460891px;}
.ya_c00165{bottom:878.700779px;}
.y9_c00165{bottom:929.192030px;}
.y8_c00165{bottom:959.521193px;}
.y7_c00165{bottom:989.671805px;}
.y6_c00165{bottom:1019.911692px;}
.y5_c00165{bottom:1050.062304px;}
.y4_c00165{bottom:1080.302192px;}
.y3_c00165{bottom:1110.361778px;}
.h8_c00165{height:39.338549px;}
.ha_c00165{height:39.698549px;}
.h9_c00165{height:54.098549px;}
.h3_c00165{height:62.600889px;}
.h1_c00165{height:62.771836px;}
.h7_c00165{height:62.779990px;}
.h2_c00165{height:73.776146px;}
.h4_c00165{height:73.780250px;}
.h6_c00165{height:73.780700px;}
.h5_c00165{height:74.143904px;}
.h0_c00165{height:1263.000000px;}
.w0_c00165{width:892.500000px;}
.x0_c00165{left:0.000000px;}
.x2_c00165{left:82.710059px;}
.x1_c00165{left:431.730000px;}
@media print{
.v2_c00165{vertical-align:-13.120000pt;}
.v0_c00165{vertical-align:0.000000pt;}
.v1_c00165{vertical-align:28.474384pt;}
.ls14_c00165{letter-spacing:-0.628839pt;}
.ls11_c00165{letter-spacing:-0.244260pt;}
.ls10_c00165{letter-spacing:-0.067217pt;}
.ls6_c00165{letter-spacing:-0.056016pt;}
.lsa_c00165{letter-spacing:-0.049792pt;}
.lsc_c00165{letter-spacing:-0.043568pt;}
.ls16_c00165{letter-spacing:-0.041576pt;}
.lsd_c00165{letter-spacing:-0.031120pt;}
.ls9_c00165{letter-spacing:-0.024896pt;}
.ls13_c00165{letter-spacing:-0.020788pt;}
.lse_c00165{letter-spacing:-0.018672pt;}
.ls18_c00165{letter-spacing:-0.015591pt;}
.ls8_c00165{letter-spacing:-0.012448pt;}
.lsb_c00165{letter-spacing:-0.006224pt;}
.ls7_c00165{letter-spacing:0.000000pt;}
.ls5_c00165{letter-spacing:0.005197pt;}
.ls3_c00165{letter-spacing:0.006224pt;}
.ls4_c00165{letter-spacing:0.012448pt;}
.ls1_c00165{letter-spacing:0.020694pt;}
.ls0_c00165{letter-spacing:0.024896pt;}
.ls2_c00165{letter-spacing:0.049792pt;}
.ls17_c00165{letter-spacing:0.124728pt;}
.lsf_c00165{letter-spacing:0.304976pt;}
.ls12_c00165{letter-spacing:0.415761pt;}
.ls15_c00165{letter-spacing:15.689783pt;}
.ws0_c00165{word-spacing:-17.302720pt;}
.ws1_c00165{word-spacing:-11.526781pt;}
.ws2_c00165{word-spacing:-9.242347pt;}
.ws16_c00165{word-spacing:-0.006224pt;}
.ws3_c00165{word-spacing:0.000000pt;}
.ws15_c00165{word-spacing:0.012448pt;}
.ws14_c00165{word-spacing:0.018672pt;}
.ws27_c00165{word-spacing:0.025985pt;}
.ws10_c00165{word-spacing:0.031120pt;}
.wsb_c00165{word-spacing:0.317424pt;}
.ws22_c00165{word-spacing:0.353397pt;}
.ws23_c00165{word-spacing:0.639233pt;}
.ws8_c00165{word-spacing:0.958496pt;}
.ws1f_c00165{word-spacing:0.966644pt;}
.ws7_c00165{word-spacing:0.995840pt;}
.ws20_c00165{word-spacing:1.216101pt;}
.ws1c_c00165{word-spacing:1.935664pt;}
.wsf_c00165{word-spacing:3.504112pt;}
.wse_c00165{word-spacing:3.522784pt;}
.ws13_c00165{word-spacing:4.145184pt;}
.ws11_c00165{word-spacing:4.157632pt;}
.ws12_c00165{word-spacing:4.176304pt;}
.ws1b_c00165{word-spacing:4.773808pt;}
.ws1a_c00165{word-spacing:4.817376pt;}
.ws6_c00165{word-spacing:5.769648pt;}
.ws18_c00165{word-spacing:6.068400pt;}
.ws1d_c00165{word-spacing:6.684576pt;}
.ws1e_c00165{word-spacing:6.690800pt;}
.ws25_c00165{word-spacing:7.244637pt;}
.ws4_c00165{word-spacing:7.350544pt;}
.ws5_c00165{word-spacing:7.362992pt;}
.ws26_c00165{word-spacing:7.369365pt;}
.ws17_c00165{word-spacing:9.286208pt;}
.wsa_c00165{word-spacing:13.082848pt;}
.ws21_c00165{word-spacing:13.995557pt;}
.ws24_c00165{word-spacing:15.731359pt;}
.wsd_c00165{word-spacing:17.539232pt;}
.wsc_c00165{word-spacing:17.595248pt;}
.ws19_c00165{word-spacing:19.201040pt;}
.ws9_c00165{word-spacing:33.914576pt;}
._5_c00165{margin-left:-16.622580pt;}
._4_c00165{margin-left:-15.350711pt;}
._6_c00165{margin-left:-14.089103pt;}
._3_c00165{margin-left:-2.409888pt;}
._1_c00165{margin-left:-0.890032pt;}
._0_c00165{width:1.313264pt;}
._2_c00165{width:5.271728pt;}
.fs2_c00165{font-size:33.608533pt;}
.fs1_c00165{font-size:41.388800pt;}
.fs3_c00165{font-size:51.970133pt;}
.fs0_c00165{font-size:62.240000pt;}
.y0_c00165{bottom:0.000000pt;}
.y2_c00165{bottom:97.547527pt;}
.y1_c00165{bottom:115.387067pt;}
.y21_c00165{bottom:132.826265pt;}
.y20_c00165{bottom:148.666762pt;}
.y1f_c00165{bottom:167.947067pt;}
.y1e_c00165{bottom:183.787067pt;}
.y1d_c00165{bottom:199.707067pt;}
.y1c_c00165{bottom:233.707067pt;}
.y1b_c00165{bottom:264.507564pt;}
.y1a_c00165{bottom:280.427316pt;}
.y19_c00165{bottom:299.627067pt;}
.y18_c00165{bottom:330.825255pt;}
.y17_c00165{bottom:359.545903pt;}
.y16_c00165{bottom:386.346447pt;}
.y15_c00165{bottom:431.307459pt;}
.y14_c00165{bottom:458.187359pt;}
.y13_c00165{bottom:503.066747pt;}
.y12_c00165{bottom:530.026003pt;}
.y11_c00165{bottom:556.826547pt;}
.y10_c00165{bottom:583.706447pt;}
.yf_c00165{bottom:628.667559pt;}
.ye_c00165{bottom:655.547459pt;}
.yd_c00165{bottom:682.427359pt;}
.yc_c00165{bottom:727.307559pt;}
.yb_c00165{bottom:754.187459pt;}
.ya_c00165{bottom:781.067359pt;}
.y9_c00165{bottom:825.948471pt;}
.y8_c00165{bottom:852.907727pt;}
.y7_c00165{bottom:879.708271pt;}
.y6_c00165{bottom:906.588171pt;}
.y5_c00165{bottom:933.388715pt;}
.y4_c00165{bottom:960.268615pt;}
.y3_c00165{bottom:986.988247pt;}
.h8_c00165{height:34.967599pt;}
.ha_c00165{height:35.287599pt;}
.h9_c00165{height:48.087599pt;}
.h3_c00165{height:55.645234pt;}
.h1_c00165{height:55.797187pt;}
.h7_c00165{height:55.804436pt;}
.h2_c00165{height:65.578796pt;}
.h4_c00165{height:65.582445pt;}
.h6_c00165{height:65.582844pt;}
.h5_c00165{height:65.905692pt;}
.h0_c00165{height:1122.666667pt;}
.w0_c00165{width:793.333333pt;}
.x0_c00165{left:0.000000pt;}
.x2_c00165{left:73.520052pt;}
.x1_c00165{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_129080fb687b8f3c914ac872.woff2')format("woff");}.ff1_c00166{font-family:ff1_c00166;line-height:1.106934;font-style:normal;font-weight:normal;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_4a860191c1ee1646d9a383c5.woff2')format("woff");}.ff2_c00166{font-family:ff2_c00166;line-height:1.104492;font-style:normal;font-weight:normal;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_87d4aa87335012446d3382a6.woff2')format("woff");}.ff3_c00166{font-family:ff3_c00166;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00166;src:url('chunks/assets/font_b88e306058f190712f2b1bac.woff2')format("woff");}.ff4_c00166{font-family:ff4_c00166;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00166;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff5_c00166{font-family:ff5_c00166;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00166{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00166{vertical-align:-32.039400px;}
.v3_c00166{vertical-align:-14.760000px;}
.v0_c00166{vertical-align:0.000000px;}
.v1_c00166{vertical-align:32.037138px;}
.ls12_c00166{letter-spacing:-0.748370px;}
.ls1b_c00166{letter-spacing:-0.643130px;}
.ls11_c00166{letter-spacing:-0.169553px;}
.ls1a_c00166{letter-spacing:-0.146166px;}
.ls16_c00166{letter-spacing:-0.128626px;}
.lsf_c00166{letter-spacing:-0.075619px;}
.ls6_c00166{letter-spacing:-0.063018px;}
.ls10_c00166{letter-spacing:-0.058466px;}
.lsb_c00166{letter-spacing:-0.049014px;}
.ls18_c00166{letter-spacing:-0.046773px;}
.lsd_c00166{letter-spacing:-0.042012px;}
.lsc_c00166{letter-spacing:-0.035010px;}
.lsa_c00166{letter-spacing:-0.028008px;}
.lse_c00166{letter-spacing:-0.021006px;}
.ls15_c00166{letter-spacing:-0.017540px;}
.ls9_c00166{letter-spacing:-0.014004px;}
.ls13_c00166{letter-spacing:-0.011693px;}
.ls8_c00166{letter-spacing:-0.007002px;}
.ls7_c00166{letter-spacing:0.000000px;}
.ls3_c00166{letter-spacing:0.007002px;}
.ls2_c00166{letter-spacing:0.014004px;}
.ls0_c00166{letter-spacing:0.023281px;}
.ls1_c00166{letter-spacing:0.028008px;}
.ls4_c00166{letter-spacing:0.042012px;}
.ls5_c00166{letter-spacing:0.362492px;}
.ls19_c00166{letter-spacing:0.403418px;}
.ls17_c00166{letter-spacing:0.537891px;}
.ls14_c00166{letter-spacing:0.608051px;}
.sc__c00166{text-shadow:none;}
.sc0_c00166{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00166{-webkit-text-stroke:0px transparent;}
.sc0_c00166{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00166{word-spacing:-58.466400px;}
.ws0_c00166{word-spacing:-12.967628px;}
.ws1_c00166{word-spacing:-10.397640px;}
.ws28_c00166{word-spacing:-0.526198px;}
.ws12_c00166{word-spacing:-0.042012px;}
.ws2a_c00166{word-spacing:-0.029233px;}
.ws3_c00166{word-spacing:0.000000px;}
.ws24_c00166{word-spacing:0.023387px;}
.ws5_c00166{word-spacing:0.049014px;}
.ws1a_c00166{word-spacing:0.350100px;}
.ws11_c00166{word-spacing:0.378108px;}
.ws29_c00166{word-spacing:0.420958px;}
.ws27_c00166{word-spacing:0.502811px;}
.ws2b_c00166{word-spacing:0.520351px;}
.ws2c_c00166{word-spacing:0.654824px;}
.ws10_c00166{word-spacing:0.693198px;}
.ws4_c00166{word-spacing:0.714204px;}
.ws21_c00166{word-spacing:1.151788px;}
.wse_c00166{word-spacing:1.470420px;}
.ws22_c00166{word-spacing:1.625366px;}
.ws23_c00166{word-spacing:1.841692px;}
.ws15_c00166{word-spacing:2.499714px;}
.ws16_c00166{word-spacing:2.569734px;}
.ws17_c00166{word-spacing:2.856816px;}
.ws13_c00166{word-spacing:5.741640px;}
.ws14_c00166{word-spacing:5.762646px;}
.ws6_c00166{word-spacing:6.798942px;}
.ws8_c00166{word-spacing:8.255358px;}
.ws7_c00166{word-spacing:8.297370px;}
.ws25_c00166{word-spacing:8.407468px;}
.ws26_c00166{word-spacing:8.781653px;}
.wsd_c00166{word-spacing:8.976564px;}
.wsf_c00166{word-spacing:9.011574px;}
.wsa_c00166{word-spacing:11.497284px;}
.ws9_c00166{word-spacing:11.553300px;}
.ws1c_c00166{word-spacing:13.688910px;}
.ws1b_c00166{word-spacing:13.982994px;}
.ws1e_c00166{word-spacing:14.032008px;}
.ws1f_c00166{word-spacing:22.679478px;}
.ws20_c00166{word-spacing:28.078020px;}
.wsb_c00166{word-spacing:28.428120px;}
.wsc_c00166{word-spacing:28.463130px;}
.ws18_c00166{word-spacing:29.177334px;}
.ws1d_c00166{word-spacing:30.234636px;}
.ws19_c00166{word-spacing:30.976848px;}
._3_c00166{margin-left:-2.712564px;}
._0_c00166{margin-left:-1.092312px;}
._1_c00166{width:1.008288px;}
._2_c00166{width:5.930694px;}
._4_c00166{width:8.469688px;}
.fc0_c00166{color:rgb(0,0,0);}
.fs2_c00166{font-size:37.809600px;}
.fs1_c00166{font-size:46.562400px;}
.fs3_c00166{font-size:58.466400px;}
.fs0_c00166{font-size:70.020000px;}
.y0_c00166{bottom:0.000000px;}
.y2_c00166{bottom:109.740968px;}
.y1_c00166{bottom:129.810450px;}
.y20_c00166{bottom:149.429548px;}
.y1f_c00166{bottom:167.250107px;}
.y1e_c00166{bottom:188.940450px;}
.y1d_c00166{bottom:223.589891px;}
.y1c_c00166{bottom:245.100450px;}
.y1b_c00166{bottom:280.198674px;}
.y1a_c00166{bottom:313.859039px;}
.y19_c00166{bottom:344.098926px;}
.y18_c00166{bottom:374.249538px;}
.y17_c00166{bottom:404.489426px;}
.y16_c00166{bottom:434.640038px;}
.y15_c00166{bottom:485.220735px;}
.y14_c00166{bottom:515.460622px;}
.y13_c00166{bottom:545.700510px;}
.y12_c00166{bottom:575.851122px;}
.y11_c00166{bottom:626.340794px;}
.y10_c00166{bottom:656.669957px;}
.yf_c00166{bottom:686.820569px;}
.ye_c00166{bottom:737.401266px;}
.yd_c00166{bottom:767.730429px;}
.yc_c00166{bottom:797.881041px;}
.yb_c00166{bottom:828.120929px;}
.ya_c00166{bottom:886.620450px;}
.y9_c00166{bottom:908.848754px;}
.y8_c00166{bottom:939.088641px;}
.y7_c00166{bottom:969.239253px;}
.y6_c00166{bottom:999.479141px;}
.y5_c00166{bottom:1029.629752px;}
.y4_c00166{bottom:1080.211166px;}
.y3_c00166{bottom:1110.451053px;}
.h6_c00166{height:39.338549px;}
.h4_c00166{height:41.742464px;}
.h7_c00166{height:54.098549px;}
.h3_c00166{height:62.600889px;}
.h1_c00166{height:62.771836px;}
.h5_c00166{height:62.778940px;}
.h2_c00166{height:73.779602px;}
.h0_c00166{height:1263.000000px;}
.w0_c00166{width:892.500000px;}
.x0_c00166{left:0.000000px;}
.x2_c00166{left:82.710059px;}
.x1_c00166{left:431.730000px;}
@media print{
.v2_c00166{vertical-align:-28.479467pt;}
.v3_c00166{vertical-align:-13.120000pt;}
.v0_c00166{vertical-align:0.000000pt;}
.v1_c00166{vertical-align:28.477456pt;}
.ls12_c00166{letter-spacing:-0.665218pt;}
.ls1b_c00166{letter-spacing:-0.571671pt;}
.ls11_c00166{letter-spacing:-0.150713pt;}
.ls1a_c00166{letter-spacing:-0.129925pt;}
.ls16_c00166{letter-spacing:-0.114334pt;}
.lsf_c00166{letter-spacing:-0.067217pt;}
.ls6_c00166{letter-spacing:-0.056016pt;}
.ls10_c00166{letter-spacing:-0.051970pt;}
.lsb_c00166{letter-spacing:-0.043568pt;}
.ls18_c00166{letter-spacing:-0.041576pt;}
.lsd_c00166{letter-spacing:-0.037344pt;}
.lsc_c00166{letter-spacing:-0.031120pt;}
.lsa_c00166{letter-spacing:-0.024896pt;}
.lse_c00166{letter-spacing:-0.018672pt;}
.ls15_c00166{letter-spacing:-0.015591pt;}
.ls9_c00166{letter-spacing:-0.012448pt;}
.ls13_c00166{letter-spacing:-0.010394pt;}
.ls8_c00166{letter-spacing:-0.006224pt;}
.ls7_c00166{letter-spacing:0.000000pt;}
.ls3_c00166{letter-spacing:0.006224pt;}
.ls2_c00166{letter-spacing:0.012448pt;}
.ls0_c00166{letter-spacing:0.020694pt;}
.ls1_c00166{letter-spacing:0.024896pt;}
.ls4_c00166{letter-spacing:0.037344pt;}
.ls5_c00166{letter-spacing:0.322215pt;}
.ls19_c00166{letter-spacing:0.358594pt;}
.ls17_c00166{letter-spacing:0.478125pt;}
.ls14_c00166{letter-spacing:0.540489pt;}
.ws2_c00166{word-spacing:-51.970133pt;}
.ws0_c00166{word-spacing:-11.526781pt;}
.ws1_c00166{word-spacing:-9.242347pt;}
.ws28_c00166{word-spacing:-0.467731pt;}
.ws12_c00166{word-spacing:-0.037344pt;}
.ws2a_c00166{word-spacing:-0.025985pt;}
.ws3_c00166{word-spacing:0.000000pt;}
.ws24_c00166{word-spacing:0.020788pt;}
.ws5_c00166{word-spacing:0.043568pt;}
.ws1a_c00166{word-spacing:0.311200pt;}
.ws11_c00166{word-spacing:0.336096pt;}
.ws29_c00166{word-spacing:0.374185pt;}
.ws27_c00166{word-spacing:0.446943pt;}
.ws2b_c00166{word-spacing:0.462534pt;}
.ws2c_c00166{word-spacing:0.582065pt;}
.ws10_c00166{word-spacing:0.616176pt;}
.ws4_c00166{word-spacing:0.634848pt;}
.ws21_c00166{word-spacing:1.023812pt;}
.wse_c00166{word-spacing:1.307040pt;}
.ws22_c00166{word-spacing:1.444770pt;}
.ws23_c00166{word-spacing:1.637059pt;}
.ws15_c00166{word-spacing:2.221968pt;}
.ws16_c00166{word-spacing:2.284208pt;}
.ws17_c00166{word-spacing:2.539392pt;}
.ws13_c00166{word-spacing:5.103680pt;}
.ws14_c00166{word-spacing:5.122352pt;}
.ws6_c00166{word-spacing:6.043504pt;}
.ws8_c00166{word-spacing:7.338096pt;}
.ws7_c00166{word-spacing:7.375440pt;}
.ws25_c00166{word-spacing:7.473305pt;}
.ws26_c00166{word-spacing:7.805914pt;}
.wsd_c00166{word-spacing:7.979168pt;}
.wsf_c00166{word-spacing:8.010288pt;}
.wsa_c00166{word-spacing:10.219808pt;}
.ws9_c00166{word-spacing:10.269600pt;}
.ws1c_c00166{word-spacing:12.167920pt;}
.ws1b_c00166{word-spacing:12.429328pt;}
.ws1e_c00166{word-spacing:12.472896pt;}
.ws1f_c00166{word-spacing:20.159536pt;}
.ws20_c00166{word-spacing:24.958240pt;}
.wsb_c00166{word-spacing:25.269440pt;}
.wsc_c00166{word-spacing:25.300560pt;}
.ws18_c00166{word-spacing:25.935408pt;}
.ws1d_c00166{word-spacing:26.875232pt;}
.ws19_c00166{word-spacing:27.534976pt;}
._3_c00166{margin-left:-2.411168pt;}
._0_c00166{margin-left:-0.970944pt;}
._1_c00166{width:0.896256pt;}
._2_c00166{width:5.271728pt;}
._4_c00166{width:7.528612pt;}
.fs2_c00166{font-size:33.608533pt;}
.fs1_c00166{font-size:41.388800pt;}
.fs3_c00166{font-size:51.970133pt;}
.fs0_c00166{font-size:62.240000pt;}
.y0_c00166{bottom:0.000000pt;}
.y2_c00166{bottom:97.547527pt;}
.y1_c00166{bottom:115.387067pt;}
.y20_c00166{bottom:132.826265pt;}
.y1f_c00166{bottom:148.666762pt;}
.y1e_c00166{bottom:167.947067pt;}
.y1d_c00166{bottom:198.746570pt;}
.y1c_c00166{bottom:217.867067pt;}
.y1b_c00166{bottom:249.065488pt;}
.y1a_c00166{bottom:278.985812pt;}
.y19_c00166{bottom:305.865712pt;}
.y18_c00166{bottom:332.666256pt;}
.y17_c00166{bottom:359.546156pt;}
.y16_c00166{bottom:386.346700pt;}
.y15_c00166{bottom:431.307320pt;}
.y14_c00166{bottom:458.187220pt;}
.y13_c00166{bottom:485.067120pt;}
.y12_c00166{bottom:511.867664pt;}
.y11_c00166{bottom:556.747372pt;}
.y10_c00166{bottom:583.706628pt;}
.yf_c00166{bottom:610.507172pt;}
.ye_c00166{bottom:655.467792pt;}
.yd_c00166{bottom:682.427048pt;}
.yc_c00166{bottom:709.227592pt;}
.yb_c00166{bottom:736.107492pt;}
.ya_c00166{bottom:788.107067pt;}
.y9_c00166{bottom:807.865559pt;}
.y8_c00166{bottom:834.745459pt;}
.y7_c00166{bottom:861.546003pt;}
.y6_c00166{bottom:888.425903pt;}
.y5_c00166{bottom:915.226447pt;}
.y4_c00166{bottom:960.187703pt;}
.y3_c00166{bottom:987.067603pt;}
.h6_c00166{height:34.967599pt;}
.h4_c00166{height:37.104412pt;}
.h7_c00166{height:48.087599pt;}
.h3_c00166{height:55.645234pt;}
.h1_c00166{height:55.797187pt;}
.h5_c00166{height:55.803502pt;}
.h2_c00166{height:65.581868pt;}
.h0_c00166{height:1122.666667pt;}
.w0_c00166{width:793.333333pt;}
.x0_c00166{left:0.000000pt;}
.x2_c00166{left:73.520052pt;}
.x1_c00166{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_27431230951d0012e4146e0d.woff2')format("woff");}.ff1_c00167{font-family:ff1_c00167;line-height:1.106934;font-style:normal;font-weight:normal;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_354c8c29514fb6e323388c7a.woff2')format("woff");}.ff2_c00167{font-family:ff2_c00167;line-height:1.104492;font-style:normal;font-weight:normal;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_f903c6dca4efe5ccf5937ec5.woff2')format("woff");}.ff3_c00167{font-family:ff3_c00167;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00167;src:url('chunks/assets/font_8a8c5ed813f7cc786ea3fbbb.woff2')format("woff");}.ff4_c00167{font-family:ff4_c00167;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00167;src:url('chunks/assets/font_1b00c4e5376bb6616187c9ee.woff2')format("woff");}.ff5_c00167{font-family:ff5_c00167;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00167;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff6_c00167{font-family:ff6_c00167;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00167{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00167{vertical-align:-14.760000px;}
.v0_c00167{vertical-align:0.000000px;}
.v1_c00167{vertical-align:32.039136px;}
.ls13_c00167{letter-spacing:-0.707443px;}
.ls15_c00167{letter-spacing:-0.344952px;}
.ls17_c00167{letter-spacing:-0.233866px;}
.ls16_c00167{letter-spacing:-0.198786px;}
.ls11_c00167{letter-spacing:-0.157859px;}
.ls18_c00167{letter-spacing:-0.152013px;}
.ls12_c00167{letter-spacing:-0.128626px;}
.lsd_c00167{letter-spacing:-0.106360px;}
.ls10_c00167{letter-spacing:-0.075619px;}
.lsf_c00167{letter-spacing:-0.070020px;}
.ls6_c00167{letter-spacing:-0.063018px;}
.ls19_c00167{letter-spacing:-0.052620px;}
.lse_c00167{letter-spacing:-0.042012px;}
.lsc_c00167{letter-spacing:-0.035010px;}
.lsb_c00167{letter-spacing:-0.028008px;}
.ls9_c00167{letter-spacing:-0.021006px;}
.ls14_c00167{letter-spacing:-0.017540px;}
.ls8_c00167{letter-spacing:-0.014004px;}
.lsa_c00167{letter-spacing:-0.007002px;}
.ls7_c00167{letter-spacing:0.000000px;}
.ls2_c00167{letter-spacing:0.007002px;}
.ls0_c00167{letter-spacing:0.014004px;}
.ls1_c00167{letter-spacing:0.023281px;}
.ls3_c00167{letter-spacing:0.126036px;}
.ls5_c00167{letter-spacing:0.362492px;}
.ls4_c00167{letter-spacing:7.891254px;}
.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;}
}
.ws2_c00167{word-spacing:-58.466400px;}
.ws0_c00167{word-spacing:-12.967628px;}
.ws1_c00167{word-spacing:-10.397640px;}
.ws29_c00167{word-spacing:-0.292332px;}
.ws13_c00167{word-spacing:-0.140040px;}
.ws7_c00167{word-spacing:-0.007002px;}
.ws3_c00167{word-spacing:0.000000px;}
.ws14_c00167{word-spacing:0.144346px;}
.ws25_c00167{word-spacing:0.210479px;}
.ws12_c00167{word-spacing:0.364104px;}
.ws26_c00167{word-spacing:0.608051px;}
.ws27_c00167{word-spacing:0.719137px;}
.ws22_c00167{word-spacing:1.584439px;}
.ws28_c00167{word-spacing:1.607826px;}
.ws24_c00167{word-spacing:1.829998px;}
.ws21_c00167{word-spacing:1.970318px;}
.ws1e_c00167{word-spacing:2.534724px;}
.ws23_c00167{word-spacing:2.882394px;}
.wsd_c00167{word-spacing:3.220920px;}
.wsc_c00167{word-spacing:3.262932px;}
.ws1a_c00167{word-spacing:3.599028px;}
.ws1b_c00167{word-spacing:3.620034px;}
.ws8_c00167{word-spacing:3.949128px;}
.ws5_c00167{word-spacing:5.041440px;}
.ws6_c00167{word-spacing:5.048442px;}
.wsb_c00167{word-spacing:5.755644px;}
.wsa_c00167{word-spacing:5.776650px;}
.ws1d_c00167{word-spacing:7.919262px;}
.ws1c_c00167{word-spacing:7.975278px;}
.ws9_c00167{word-spacing:11.896398px;}
.ws1f_c00167{word-spacing:12.967704px;}
.ws20_c00167{word-spacing:13.324806px;}
.ws11_c00167{word-spacing:15.124320px;}
.ws10_c00167{word-spacing:16.895826px;}
.wse_c00167{word-spacing:16.909830px;}
.wsf_c00167{word-spacing:17.259930px;}
.ws4_c00167{word-spacing:18.331236px;}
.ws17_c00167{word-spacing:25.529292px;}
.ws18_c00167{word-spacing:25.928406px;}
.ws16_c00167{word-spacing:26.306514px;}
.ws19_c00167{word-spacing:29.149326px;}
.ws15_c00167{word-spacing:111.625884px;}
._3_c00167{margin-left:-2.706264px;}
._1_c00167{margin-left:-1.071306px;}
._0_c00167{width:1.211346px;}
._2_c00167{width:5.930694px;}
.fc0_c00167{color:rgb(0,0,0);}
.fs3_c00167{font-size:37.809600px;}
.fs1_c00167{font-size:46.562400px;}
.fs4_c00167{font-size:58.466400px;}
.fs0_c00167{font-size:70.020000px;}
.fs2_c00167{font-size:75.971400px;}
.y0_c00167{bottom:0.000000px;}
.y2_c00167{bottom:109.740968px;}
.y1_c00167{bottom:129.810450px;}
.y23_c00167{bottom:149.429891px;}
.y22_c00167{bottom:170.940450px;}
.y21_c00167{bottom:185.249891px;}
.y20_c00167{bottom:206.760450px;}
.y1f_c00167{bottom:221.429068px;}
.y1e_c00167{bottom:249.508839px;}
.y1d_c00167{bottom:279.659451px;}
.y1c_c00167{bottom:309.899338px;}
.y1b_c00167{bottom:340.049950px;}
.y1a_c00167{bottom:370.289838px;}
.y19_c00167{bottom:400.440063px;}
.y18_c00167{bottom:430.679950px;}
.y17_c00167{bottom:460.830562px;}
.y16_c00167{bottom:491.070450px;}
.y15_c00167{bottom:515.820450px;}
.y14_c00167{bottom:564.867250px;}
.y13_c00167{bottom:589.437269px;}
.y12_c00167{bottom:637.136643px;}
.y11_c00167{bottom:667.287255px;}
.y10_c00167{bottom:697.527143px;}
.yf_c00167{bottom:727.677754px;}
.ye_c00167{bottom:757.917642px;}
.yd_c00167{bottom:788.068254px;}
.yc_c00167{bottom:818.308142px;}
.yb_c00167{bottom:848.458754px;}
.ya_c00167{bottom:878.698641px;}
.y9_c00167{bottom:908.849253px;}
.y8_c00167{bottom:939.089140px;}
.y7_c00167{bottom:969.239753px;}
.y6_c00167{bottom:1019.820666px;}
.y5_c00167{bottom:1050.060553px;}
.y4_c00167{bottom:1080.300441px;}
.y3_c00167{bottom:1110.451053px;}
.h8_c00167{height:39.338549px;}
.h9_c00167{height:54.098549px;}
.h2_c00167{height:62.600889px;}
.h1_c00167{height:62.771836px;}
.h7_c00167{height:62.777362px;}
.h4_c00167{height:63.216299px;}
.h5_c00167{height:68.589413px;}
.h3_c00167{height:73.781600px;}
.h6_c00167{height:74.144612px;}
.h0_c00167{height:1263.000000px;}
.w0_c00167{width:892.500000px;}
.x0_c00167{left:0.000000px;}
.x2_c00167{left:82.710059px;}
.x1_c00167{left:431.730000px;}
@media print{
.v2_c00167{vertical-align:-13.120000pt;}
.v0_c00167{vertical-align:0.000000pt;}
.v1_c00167{vertical-align:28.479232pt;}
.ls13_c00167{letter-spacing:-0.628839pt;}
.ls15_c00167{letter-spacing:-0.306624pt;}
.ls17_c00167{letter-spacing:-0.207881pt;}
.ls16_c00167{letter-spacing:-0.176698pt;}
.ls11_c00167{letter-spacing:-0.140319pt;}
.ls18_c00167{letter-spacing:-0.135122pt;}
.ls12_c00167{letter-spacing:-0.114334pt;}
.lsd_c00167{letter-spacing:-0.094542pt;}
.ls10_c00167{letter-spacing:-0.067217pt;}
.lsf_c00167{letter-spacing:-0.062240pt;}
.ls6_c00167{letter-spacing:-0.056016pt;}
.ls19_c00167{letter-spacing:-0.046773pt;}
.lse_c00167{letter-spacing:-0.037344pt;}
.lsc_c00167{letter-spacing:-0.031120pt;}
.lsb_c00167{letter-spacing:-0.024896pt;}
.ls9_c00167{letter-spacing:-0.018672pt;}
.ls14_c00167{letter-spacing:-0.015591pt;}
.ls8_c00167{letter-spacing:-0.012448pt;}
.lsa_c00167{letter-spacing:-0.006224pt;}
.ls7_c00167{letter-spacing:0.000000pt;}
.ls2_c00167{letter-spacing:0.006224pt;}
.ls0_c00167{letter-spacing:0.012448pt;}
.ls1_c00167{letter-spacing:0.020694pt;}
.ls3_c00167{letter-spacing:0.112032pt;}
.ls5_c00167{letter-spacing:0.322215pt;}
.ls4_c00167{letter-spacing:7.014448pt;}
.ws2_c00167{word-spacing:-51.970133pt;}
.ws0_c00167{word-spacing:-11.526781pt;}
.ws1_c00167{word-spacing:-9.242347pt;}
.ws29_c00167{word-spacing:-0.259851pt;}
.ws13_c00167{word-spacing:-0.124480pt;}
.ws7_c00167{word-spacing:-0.006224pt;}
.ws3_c00167{word-spacing:0.000000pt;}
.ws14_c00167{word-spacing:0.128307pt;}
.ws25_c00167{word-spacing:0.187092pt;}
.ws12_c00167{word-spacing:0.323648pt;}
.ws26_c00167{word-spacing:0.540489pt;}
.ws27_c00167{word-spacing:0.639233pt;}
.ws22_c00167{word-spacing:1.408391pt;}
.ws28_c00167{word-spacing:1.429179pt;}
.ws24_c00167{word-spacing:1.626665pt;}
.ws21_c00167{word-spacing:1.751393pt;}
.ws1e_c00167{word-spacing:2.253088pt;}
.ws23_c00167{word-spacing:2.562128pt;}
.wsd_c00167{word-spacing:2.863040pt;}
.wsc_c00167{word-spacing:2.900384pt;}
.ws1a_c00167{word-spacing:3.199136pt;}
.ws1b_c00167{word-spacing:3.217808pt;}
.ws8_c00167{word-spacing:3.510336pt;}
.ws5_c00167{word-spacing:4.481280pt;}
.ws6_c00167{word-spacing:4.487504pt;}
.wsb_c00167{word-spacing:5.116128pt;}
.wsa_c00167{word-spacing:5.134800pt;}
.ws1d_c00167{word-spacing:7.039344pt;}
.ws1c_c00167{word-spacing:7.089136pt;}
.ws9_c00167{word-spacing:10.574576pt;}
.ws1f_c00167{word-spacing:11.526848pt;}
.ws20_c00167{word-spacing:11.844272pt;}
.ws11_c00167{word-spacing:13.443840pt;}
.ws10_c00167{word-spacing:15.018512pt;}
.wse_c00167{word-spacing:15.030960pt;}
.wsf_c00167{word-spacing:15.342160pt;}
.ws4_c00167{word-spacing:16.294432pt;}
.ws17_c00167{word-spacing:22.692704pt;}
.ws18_c00167{word-spacing:23.047472pt;}
.ws16_c00167{word-spacing:23.383568pt;}
.ws19_c00167{word-spacing:25.910512pt;}
.ws15_c00167{word-spacing:99.223008pt;}
._3_c00167{margin-left:-2.405568pt;}
._1_c00167{margin-left:-0.952272pt;}
._0_c00167{width:1.076752pt;}
._2_c00167{width:5.271728pt;}
.fs3_c00167{font-size:33.608533pt;}
.fs1_c00167{font-size:41.388800pt;}
.fs4_c00167{font-size:51.970133pt;}
.fs0_c00167{font-size:62.240000pt;}
.fs2_c00167{font-size:67.530133pt;}
.y0_c00167{bottom:0.000000pt;}
.y2_c00167{bottom:97.547527pt;}
.y1_c00167{bottom:115.387067pt;}
.y23_c00167{bottom:132.826570pt;}
.y22_c00167{bottom:151.947067pt;}
.y21_c00167{bottom:164.666570pt;}
.y20_c00167{bottom:183.787067pt;}
.y1f_c00167{bottom:196.825839pt;}
.y1e_c00167{bottom:221.785635pt;}
.y1d_c00167{bottom:248.586179pt;}
.y1c_c00167{bottom:275.466079pt;}
.y1b_c00167{bottom:302.266623pt;}
.y1a_c00167{bottom:329.146523pt;}
.y19_c00167{bottom:355.946723pt;}
.y18_c00167{bottom:382.826623pt;}
.y17_c00167{bottom:409.627167pt;}
.y16_c00167{bottom:436.507067pt;}
.y15_c00167{bottom:458.507067pt;}
.y14_c00167{bottom:502.104223pt;}
.y13_c00167{bottom:523.944239pt;}
.y12_c00167{bottom:566.343683pt;}
.y11_c00167{bottom:593.144227pt;}
.y10_c00167{bottom:620.024127pt;}
.yf_c00167{bottom:646.824671pt;}
.ye_c00167{bottom:673.704571pt;}
.yd_c00167{bottom:700.505115pt;}
.yc_c00167{bottom:727.385015pt;}
.yb_c00167{bottom:754.185559pt;}
.ya_c00167{bottom:781.065459pt;}
.y9_c00167{bottom:807.866003pt;}
.y8_c00167{bottom:834.745903pt;}
.y7_c00167{bottom:861.546447pt;}
.y6_c00167{bottom:906.507259pt;}
.y5_c00167{bottom:933.387159pt;}
.y4_c00167{bottom:960.267059pt;}
.y3_c00167{bottom:987.067603pt;}
.h8_c00167{height:34.967599pt;}
.h9_c00167{height:48.087599pt;}
.h2_c00167{height:55.645234pt;}
.h1_c00167{height:55.797187pt;}
.h7_c00167{height:55.802100pt;}
.h4_c00167{height:56.192266pt;}
.h5_c00167{height:60.968367pt;}
.h3_c00167{height:65.583645pt;}
.h6_c00167{height:65.906322pt;}
.h0_c00167{height:1122.666667pt;}
.w0_c00167{width:793.333333pt;}
.x0_c00167{left:0.000000pt;}
.x2_c00167{left:73.520052pt;}
.x1_c00167{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b95cea1141d1eae5069ad7c1.woff2')format("woff");}.ff1_c00168{font-family:ff1_c00168;line-height:1.106934;font-style:normal;font-weight:normal;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_a8bf6bab95a3362ab8b4fa82.woff2')format("woff");}.ff2_c00168{font-family:ff2_c00168;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00168;src:url('chunks/assets/font_6669870b7f6cf2f59297b7a7.woff2')format("woff");}.ff3_c00168{font-family:ff3_c00168;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00168;src:url('chunks/assets/font_ee6f4b4fec90eacf647394a8.woff2')format("woff");}.ff4_c00168{font-family:ff4_c00168;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00168;src:url('chunks/assets/font_87f81a95d9e077ab93440b13.woff2')format("woff");}.ff5_c00168{font-family:ff5_c00168;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00168;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff6_c00168{font-family:ff6_c00168;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00168{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00168{vertical-align:-14.760000px;}
.v0_c00168{vertical-align:0.000000px;}
.v1_c00168{vertical-align:32.049840px;}
.ls10_c00168{letter-spacing:-0.111086px;}
.lsd_c00168{letter-spacing:-0.075619px;}
.ls4_c00168{letter-spacing:-0.063018px;}
.lsc_c00168{letter-spacing:-0.060777px;}
.lsa_c00168{letter-spacing:-0.042012px;}
.ls6_c00168{letter-spacing:-0.035010px;}
.ls7_c00168{letter-spacing:-0.028008px;}
.ls11_c00168{letter-spacing:-0.023387px;}
.ls9_c00168{letter-spacing:-0.021006px;}
.ls8_c00168{letter-spacing:-0.014004px;}
.lsb_c00168{letter-spacing:-0.007002px;}
.ls5_c00168{letter-spacing:0.000000px;}
.ls2_c00168{letter-spacing:0.007002px;}
.ls13_c00168{letter-spacing:0.017540px;}
.ls1_c00168{letter-spacing:0.021006px;}
.ls3_c00168{letter-spacing:0.023281px;}
.ls0_c00168{letter-spacing:0.028008px;}
.lsf_c00168{letter-spacing:0.245559px;}
.lse_c00168{letter-spacing:0.397572px;}
.ls12_c00168{letter-spacing:7.214754px;}
.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;}
}
.ws3_c00168{word-spacing:-58.466400px;}
.ws2_c00168{word-spacing:-16.440752px;}
.ws4_c00168{word-spacing:-16.171806px;}
.ws0_c00168{word-spacing:-12.967628px;}
.ws1_c00168{word-spacing:-10.397640px;}
.ws20_c00168{word-spacing:-0.014004px;}
.ws5_c00168{word-spacing:0.000000px;}
.ws15_c00168{word-spacing:0.007002px;}
.ws6_c00168{word-spacing:0.021006px;}
.ws12_c00168{word-spacing:0.113957px;}
.ws16_c00168{word-spacing:0.364104px;}
.ws1f_c00168{word-spacing:0.371106px;}
.wsc_c00168{word-spacing:1.099314px;}
.wsb_c00168{word-spacing:1.428408px;}
.ws1e_c00168{word-spacing:1.449414px;}
.wse_c00168{word-spacing:1.806516px;}
.ws1b_c00168{word-spacing:2.548728px;}
.ws18_c00168{word-spacing:3.206916px;}
.ws14_c00168{word-spacing:3.227922px;}
.ws17_c00168{word-spacing:3.241926px;}
.ws13_c00168{word-spacing:3.262932px;}
.wsf_c00168{word-spacing:3.991140px;}
.ws9_c00168{word-spacing:4.320234px;}
.wsd_c00168{word-spacing:6.476850px;}
.wsa_c00168{word-spacing:6.861960px;}
.ws23_c00168{word-spacing:7.197214px;}
.ws7_c00168{word-spacing:7.933266px;}
.ws8_c00168{word-spacing:8.241354px;}
.ws1a_c00168{word-spacing:11.896398px;}
.ws21_c00168{word-spacing:15.096024px;}
.ws11_c00168{word-spacing:15.131322px;}
.ws22_c00168{word-spacing:15.604682px;}
.ws1d_c00168{word-spacing:16.195626px;}
.ws1c_c00168{word-spacing:16.223634px;}
.ws10_c00168{word-spacing:22.315374px;}
.ws19_c00168{word-spacing:27.027720px;}
._4_c00168{margin-left:-7.822804px;}
._5_c00168{margin-left:-6.320218px;}
._3_c00168{margin-left:-2.711424px;}
._1_c00168{margin-left:-1.148328px;}
._0_c00168{width:1.050300px;}
._2_c00168{width:5.930694px;}
.fc0_c00168{color:rgb(0,0,0);}
.fs3_c00168{font-size:37.809600px;}
.fs2_c00168{font-size:46.562400px;}
.fs4_c00168{font-size:58.466400px;}
.fs0_c00168{font-size:70.020000px;}
.fs1_c00168{font-size:75.971400px;}
.y0_c00168{bottom:0.000000px;}
.y2_c00168{bottom:109.740968px;}
.y1_c00168{bottom:129.810450px;}
.y23_c00168{bottom:149.429548px;}
.y22_c00168{bottom:167.250107px;}
.y21_c00168{bottom:188.940450px;}
.y20_c00168{bottom:203.609748px;}
.y1f_c00168{bottom:251.577990px;}
.y1e_c00168{bottom:281.728602px;}
.y1d_c00168{bottom:311.968490px;}
.y1c_c00168{bottom:342.119102px;}
.y1b_c00168{bottom:372.358989px;}
.y1a_c00168{bottom:402.509601px;}
.y19_c00168{bottom:432.660213px;}
.y18_c00168{bottom:462.900101px;}
.y17_c00168{bottom:493.050713px;}
.y16_c00168{bottom:523.290600px;}
.y15_c00168{bottom:548.130450px;}
.y14_c00168{bottom:597.087170px;}
.y13_c00168{bottom:627.327057px;}
.y12_c00168{bottom:657.477669px;}
.y11_c00168{bottom:687.717557px;}
.y10_c00168{bottom:717.868169px;}
.yf_c00168{bottom:748.108056px;}
.ye_c00168{bottom:778.258668px;}
.yd_c00168{bottom:808.498556px;}
.yc_c00168{bottom:838.649168px;}
.yb_c00168{bottom:868.889055px;}
.ya_c00168{bottom:899.039667px;}
.y9_c00168{bottom:929.279555px;}
.y8_c00168{bottom:959.519442px;}
.y7_c00168{bottom:989.670054px;}
.y6_c00168{bottom:1019.909942px;}
.y5_c00168{bottom:1050.060553px;}
.y4_c00168{bottom:1080.300441px;}
.y3_c00168{bottom:1110.451053px;}
.h7_c00168{height:39.338549px;}
.h8_c00168{height:54.098549px;}
.h4_c00168{height:62.600889px;}
.h1_c00168{height:62.771836px;}
.h6_c00168{height:62.774644px;}
.h2_c00168{height:63.216299px;}
.h3_c00168{height:68.589413px;}
.h5_c00168{height:73.678626px;}
.h0_c00168{height:1263.000000px;}
.w0_c00168{width:892.500000px;}
.x0_c00168{left:0.000000px;}
.x2_c00168{left:82.710059px;}
.x1_c00168{left:431.730000px;}
@media print{
.v2_c00168{vertical-align:-13.120000pt;}
.v0_c00168{vertical-align:0.000000pt;}
.v1_c00168{vertical-align:28.488747pt;}
.ls10_c00168{letter-spacing:-0.098743pt;}
.lsd_c00168{letter-spacing:-0.067217pt;}
.ls4_c00168{letter-spacing:-0.056016pt;}
.lsc_c00168{letter-spacing:-0.054024pt;}
.lsa_c00168{letter-spacing:-0.037344pt;}
.ls6_c00168{letter-spacing:-0.031120pt;}
.ls7_c00168{letter-spacing:-0.024896pt;}
.ls11_c00168{letter-spacing:-0.020788pt;}
.ls9_c00168{letter-spacing:-0.018672pt;}
.ls8_c00168{letter-spacing:-0.012448pt;}
.lsb_c00168{letter-spacing:-0.006224pt;}
.ls5_c00168{letter-spacing:0.000000pt;}
.ls2_c00168{letter-spacing:0.006224pt;}
.ls13_c00168{letter-spacing:0.015591pt;}
.ls1_c00168{letter-spacing:0.018672pt;}
.ls3_c00168{letter-spacing:0.020694pt;}
.ls0_c00168{letter-spacing:0.024896pt;}
.lsf_c00168{letter-spacing:0.218275pt;}
.lse_c00168{letter-spacing:0.353397pt;}
.ls12_c00168{letter-spacing:6.413114pt;}
.ws3_c00168{word-spacing:-51.970133pt;}
.ws2_c00168{word-spacing:-14.614001pt;}
.ws4_c00168{word-spacing:-14.374939pt;}
.ws0_c00168{word-spacing:-11.526781pt;}
.ws1_c00168{word-spacing:-9.242347pt;}
.ws20_c00168{word-spacing:-0.012448pt;}
.ws5_c00168{word-spacing:0.000000pt;}
.ws15_c00168{word-spacing:0.006224pt;}
.ws6_c00168{word-spacing:0.018672pt;}
.ws12_c00168{word-spacing:0.101295pt;}
.ws16_c00168{word-spacing:0.323648pt;}
.ws1f_c00168{word-spacing:0.329872pt;}
.wsc_c00168{word-spacing:0.977168pt;}
.wsb_c00168{word-spacing:1.269696pt;}
.ws1e_c00168{word-spacing:1.288368pt;}
.wse_c00168{word-spacing:1.605792pt;}
.ws1b_c00168{word-spacing:2.265536pt;}
.ws18_c00168{word-spacing:2.850592pt;}
.ws14_c00168{word-spacing:2.869264pt;}
.ws17_c00168{word-spacing:2.881712pt;}
.ws13_c00168{word-spacing:2.900384pt;}
.wsf_c00168{word-spacing:3.547680pt;}
.ws9_c00168{word-spacing:3.840208pt;}
.wsd_c00168{word-spacing:5.757200pt;}
.wsa_c00168{word-spacing:6.099520pt;}
.ws23_c00168{word-spacing:6.397523pt;}
.ws7_c00168{word-spacing:7.051792pt;}
.ws8_c00168{word-spacing:7.325648pt;}
.ws1a_c00168{word-spacing:10.574576pt;}
.ws21_c00168{word-spacing:13.418688pt;}
.ws11_c00168{word-spacing:13.450064pt;}
.ws22_c00168{word-spacing:13.870829pt;}
.ws1d_c00168{word-spacing:14.396112pt;}
.ws1c_c00168{word-spacing:14.421008pt;}
.ws10_c00168{word-spacing:19.835888pt;}
.ws19_c00168{word-spacing:24.024640pt;}
._4_c00168{margin-left:-6.953604pt;}
._5_c00168{margin-left:-5.617971pt;}
._3_c00168{margin-left:-2.410155pt;}
._1_c00168{margin-left:-1.020736pt;}
._0_c00168{width:0.933600pt;}
._2_c00168{width:5.271728pt;}
.fs3_c00168{font-size:33.608533pt;}
.fs2_c00168{font-size:41.388800pt;}
.fs4_c00168{font-size:51.970133pt;}
.fs0_c00168{font-size:62.240000pt;}
.fs1_c00168{font-size:67.530133pt;}
.y0_c00168{bottom:0.000000pt;}
.y2_c00168{bottom:97.547527pt;}
.y1_c00168{bottom:115.387067pt;}
.y23_c00168{bottom:132.826265pt;}
.y22_c00168{bottom:148.666762pt;}
.y21_c00168{bottom:167.947067pt;}
.y20_c00168{bottom:180.986443pt;}
.y1f_c00168{bottom:223.624880pt;}
.y1e_c00168{bottom:250.425424pt;}
.y1d_c00168{bottom:277.305324pt;}
.y1c_c00168{bottom:304.105868pt;}
.y1b_c00168{bottom:330.985768pt;}
.y1a_c00168{bottom:357.786312pt;}
.y19_c00168{bottom:384.586856pt;}
.y18_c00168{bottom:411.466756pt;}
.y17_c00168{bottom:438.267300pt;}
.y16_c00168{bottom:465.147200pt;}
.y15_c00168{bottom:487.227067pt;}
.y14_c00168{bottom:530.744151pt;}
.y13_c00168{bottom:557.624051pt;}
.y12_c00168{bottom:584.424595pt;}
.y11_c00168{bottom:611.304495pt;}
.y10_c00168{bottom:638.105039pt;}
.yf_c00168{bottom:664.984939pt;}
.ye_c00168{bottom:691.785483pt;}
.yd_c00168{bottom:718.665383pt;}
.yc_c00168{bottom:745.465927pt;}
.yb_c00168{bottom:772.345827pt;}
.ya_c00168{bottom:799.146371pt;}
.y9_c00168{bottom:826.026271pt;}
.y8_c00168{bottom:852.906171pt;}
.y7_c00168{bottom:879.706715pt;}
.y6_c00168{bottom:906.586615pt;}
.y5_c00168{bottom:933.387159pt;}
.y4_c00168{bottom:960.267059pt;}
.y3_c00168{bottom:987.067603pt;}
.h7_c00168{height:34.967599pt;}
.h8_c00168{height:48.087599pt;}
.h4_c00168{height:55.645234pt;}
.h1_c00168{height:55.797187pt;}
.h6_c00168{height:55.799683pt;}
.h2_c00168{height:56.192266pt;}
.h3_c00168{height:60.968367pt;}
.h5_c00168{height:65.492112pt;}
.h0_c00168{height:1122.666667pt;}
.w0_c00168{width:793.333333pt;}
.x0_c00168{left:0.000000pt;}
.x2_c00168{left:73.520052pt;}
.x1_c00168{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d6688f287dafc4d16603feee.woff2')format("woff");}.ff1_c00169{font-family:ff1_c00169;line-height:1.106934;font-style:normal;font-weight:normal;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_33bee77294d235f11212e235.woff2')format("woff");}.ff2_c00169{font-family:ff2_c00169;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00169{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00169{vertical-align:0.000000px;}
.ls5_c00169{letter-spacing:-0.063018px;}
.lsb_c00169{letter-spacing:-0.056016px;}
.lsc_c00169{letter-spacing:-0.049014px;}
.lsd_c00169{letter-spacing:-0.035010px;}
.ls8_c00169{letter-spacing:-0.028008px;}
.lsa_c00169{letter-spacing:-0.021006px;}
.ls7_c00169{letter-spacing:-0.014004px;}
.ls9_c00169{letter-spacing:-0.007002px;}
.ls6_c00169{letter-spacing:0.000000px;}
.ls2_c00169{letter-spacing:0.007002px;}
.ls3_c00169{letter-spacing:0.014004px;}
.ls4_c00169{letter-spacing:0.021006px;}
.ls1_c00169{letter-spacing:0.028008px;}
.ls0_c00169{letter-spacing:0.042012px;}
.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;}
}
.wsa_c00169{word-spacing:-0.028008px;}
.ws14_c00169{word-spacing:-0.007002px;}
.ws0_c00169{word-spacing:0.000000px;}
.ws6_c00169{word-spacing:0.014004px;}
.wsb_c00169{word-spacing:0.357102px;}
.ws15_c00169{word-spacing:0.371106px;}
.ws11_c00169{word-spacing:0.392112px;}
.wsf_c00169{word-spacing:0.686196px;}
.ws9_c00169{word-spacing:1.050300px;}
.ws1d_c00169{word-spacing:2.877822px;}
.ws19_c00169{word-spacing:3.227922px;}
.ws1a_c00169{word-spacing:3.634038px;}
.ws18_c00169{word-spacing:3.949128px;}
.ws5_c00169{word-spacing:4.999428px;}
.ws4_c00169{word-spacing:5.041440px;}
.ws7_c00169{word-spacing:6.826950px;}
.ws3_c00169{word-spacing:7.506144px;}
.ws8_c00169{word-spacing:7.541154px;}
.ws2_c00169{word-spacing:7.548156px;}
.ws1_c00169{word-spacing:7.919262px;}
.wsd_c00169{word-spacing:8.290368px;}
.ws1e_c00169{word-spacing:11.140182px;}
.ws1f_c00169{word-spacing:11.175192px;}
.ws1b_c00169{word-spacing:19.024434px;}
.ws1c_c00169{word-spacing:19.080450px;}
.ws16_c00169{word-spacing:20.872962px;}
.ws17_c00169{word-spacing:20.879964px;}
.wsc_c00169{word-spacing:29.156328px;}
.ws13_c00169{word-spacing:35.990280px;}
.wse_c00169{word-spacing:37.453698px;}
.ws10_c00169{word-spacing:39.246210px;}
.ws12_c00169{word-spacing:62.303796px;}
._1_c00169{margin-left:-1.043298px;}
._0_c00169{width:1.127322px;}
.fc0_c00169{color:rgb(0,0,0);}
.fs0_c00169{font-size:70.020000px;}
.y0_c00169{bottom:0.000000px;}
.y2_c00169{bottom:109.740968px;}
.y1_c00169{bottom:129.810450px;}
.y21_c00169{bottom:172.554114px;}
.y20_c00169{bottom:202.704726px;}
.y1f_c00169{bottom:232.944614px;}
.y1e_c00169{bottom:263.095226px;}
.y1d_c00169{bottom:293.335113px;}
.y1c_c00169{bottom:323.485725px;}
.y1b_c00169{bottom:353.725613px;}
.y1a_c00169{bottom:383.876225px;}
.y19_c00169{bottom:414.116112px;}
.y18_c00169{bottom:444.266724px;}
.y17_c00169{bottom:474.506612px;}
.y16_c00169{bottom:504.566198px;}
.y15_c00169{bottom:537.776684px;}
.y14_c00169{bottom:568.016571px;}
.y13_c00169{bottom:598.167183px;}
.y12_c00169{bottom:628.407071px;}
.y11_c00169{bottom:664.407854px;}
.y10_c00169{bottom:694.647741px;}
.yf_c00169{bottom:724.798353px;}
.ye_c00169{bottom:755.038241px;}
.yd_c00169{bottom:785.097826px;}
.yc_c00169{bottom:821.187885px;}
.yb_c00169{bottom:851.338497px;}
.ya_c00169{bottom:881.578385px;}
.y9_c00169{bottom:911.728996px;}
.y8_c00169{bottom:947.729780px;}
.y7_c00169{bottom:983.819838px;}
.y6_c00169{bottom:1013.970495px;}
.y5_c00169{bottom:1044.210382px;}
.y4_c00169{bottom:1074.360995px;}
.y3_c00169{bottom:1110.451053px;}
.h2_c00169{height:62.600889px;}
.h1_c00169{height:62.771836px;}
.h0_c00169{height:1263.000000px;}
.w0_c00169{width:892.500000px;}
.x0_c00169{left:0.000000px;}
.x2_c00169{left:82.710059px;}
.x3_c00169{left:114.840264px;}
.x1_c00169{left:431.730000px;}
@media print{
.v0_c00169{vertical-align:0.000000pt;}
.ls5_c00169{letter-spacing:-0.056016pt;}
.lsb_c00169{letter-spacing:-0.049792pt;}
.lsc_c00169{letter-spacing:-0.043568pt;}
.lsd_c00169{letter-spacing:-0.031120pt;}
.ls8_c00169{letter-spacing:-0.024896pt;}
.lsa_c00169{letter-spacing:-0.018672pt;}
.ls7_c00169{letter-spacing:-0.012448pt;}
.ls9_c00169{letter-spacing:-0.006224pt;}
.ls6_c00169{letter-spacing:0.000000pt;}
.ls2_c00169{letter-spacing:0.006224pt;}
.ls3_c00169{letter-spacing:0.012448pt;}
.ls4_c00169{letter-spacing:0.018672pt;}
.ls1_c00169{letter-spacing:0.024896pt;}
.ls0_c00169{letter-spacing:0.037344pt;}
.wsa_c00169{word-spacing:-0.024896pt;}
.ws14_c00169{word-spacing:-0.006224pt;}
.ws0_c00169{word-spacing:0.000000pt;}
.ws6_c00169{word-spacing:0.012448pt;}
.wsb_c00169{word-spacing:0.317424pt;}
.ws15_c00169{word-spacing:0.329872pt;}
.ws11_c00169{word-spacing:0.348544pt;}
.wsf_c00169{word-spacing:0.609952pt;}
.ws9_c00169{word-spacing:0.933600pt;}
.ws1d_c00169{word-spacing:2.558064pt;}
.ws19_c00169{word-spacing:2.869264pt;}
.ws1a_c00169{word-spacing:3.230256pt;}
.ws18_c00169{word-spacing:3.510336pt;}
.ws5_c00169{word-spacing:4.443936pt;}
.ws4_c00169{word-spacing:4.481280pt;}
.ws7_c00169{word-spacing:6.068400pt;}
.ws3_c00169{word-spacing:6.672128pt;}
.ws8_c00169{word-spacing:6.703248pt;}
.ws2_c00169{word-spacing:6.709472pt;}
.ws1_c00169{word-spacing:7.039344pt;}
.wsd_c00169{word-spacing:7.369216pt;}
.ws1e_c00169{word-spacing:9.902384pt;}
.ws1f_c00169{word-spacing:9.933504pt;}
.ws1b_c00169{word-spacing:16.910608pt;}
.ws1c_c00169{word-spacing:16.960400pt;}
.ws16_c00169{word-spacing:18.553744pt;}
.ws17_c00169{word-spacing:18.559968pt;}
.wsc_c00169{word-spacing:25.916736pt;}
.ws13_c00169{word-spacing:31.991360pt;}
.wse_c00169{word-spacing:33.292176pt;}
.ws10_c00169{word-spacing:34.885520pt;}
.ws12_c00169{word-spacing:55.381152pt;}
._1_c00169{margin-left:-0.927376pt;}
._0_c00169{width:1.002064pt;}
.fs0_c00169{font-size:62.240000pt;}
.y0_c00169{bottom:0.000000pt;}
.y2_c00169{bottom:97.547527pt;}
.y1_c00169{bottom:115.387067pt;}
.y21_c00169{bottom:153.381435pt;}
.y20_c00169{bottom:180.181979pt;}
.y1f_c00169{bottom:207.061879pt;}
.y1e_c00169{bottom:233.862423pt;}
.y1d_c00169{bottom:260.742323pt;}
.y1c_c00169{bottom:287.542867pt;}
.y1b_c00169{bottom:314.422767pt;}
.y1a_c00169{bottom:341.223311pt;}
.y19_c00169{bottom:368.103211pt;}
.y18_c00169{bottom:394.903755pt;}
.y17_c00169{bottom:421.783655pt;}
.y16_c00169{bottom:448.503287pt;}
.y15_c00169{bottom:478.023719pt;}
.y14_c00169{bottom:504.903619pt;}
.y13_c00169{bottom:531.704163pt;}
.y12_c00169{bottom:558.584063pt;}
.y11_c00169{bottom:590.584759pt;}
.y10_c00169{bottom:617.464659pt;}
.yf_c00169{bottom:644.265203pt;}
.ye_c00169{bottom:671.145103pt;}
.yd_c00169{bottom:697.864735pt;}
.yc_c00169{bottom:729.944787pt;}
.yb_c00169{bottom:756.745331pt;}
.ya_c00169{bottom:783.625231pt;}
.y9_c00169{bottom:810.425775pt;}
.y8_c00169{bottom:842.426471pt;}
.y7_c00169{bottom:874.506523pt;}
.y6_c00169{bottom:901.307107pt;}
.y5_c00169{bottom:928.187007pt;}
.y4_c00169{bottom:954.987551pt;}
.y3_c00169{bottom:987.067603pt;}
.h2_c00169{height:55.645234pt;}
.h1_c00169{height:55.797187pt;}
.h0_c00169{height:1122.666667pt;}
.w0_c00169{width:793.333333pt;}
.x0_c00169{left:0.000000pt;}
.x2_c00169{left:73.520052pt;}
.x3_c00169{left:102.080235pt;}
.x1_c00169{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4c2fcaff65c0edc0ee49bc55.woff2')format("woff");}.ff1_c00170{font-family:ff1_c00170;line-height:1.106934;font-style:normal;font-weight:normal;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_fe2857027bbed291c3f716bb.woff2')format("woff");}.ff2_c00170{font-family:ff2_c00170;line-height:1.104492;font-style:normal;font-weight:normal;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_828c1ed43b05750393033364.woff2')format("woff");}.ff3_c00170{font-family:ff3_c00170;line-height:1.133301;font-style:normal;font-weight:normal;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_e1a4c8d026609cc2a4ce8c19.woff2')format("woff");}.ff4_c00170{font-family:ff4_c00170;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00170;src:url('chunks/assets/font_2f2d138ff74aef5136b3b86e.woff2')format("woff");}.ff5_c00170{font-family:ff5_c00170;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00170{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00170{vertical-align:-14.760000px;}
.v0_c00170{vertical-align:0.000000px;}
.v1_c00170{vertical-align:32.040036px;}
.ls16_c00170{letter-spacing:-0.748370px;}
.ls19_c00170{letter-spacing:-0.461885px;}
.ls1d_c00170{letter-spacing:-0.263099px;}
.ls13_c00170{letter-spacing:-0.152013px;}
.ls1e_c00170{letter-spacing:-0.099393px;}
.ls14_c00170{letter-spacing:-0.076006px;}
.ls12_c00170{letter-spacing:-0.075619px;}
.ls18_c00170{letter-spacing:-0.064313px;}
.ls9_c00170{letter-spacing:-0.063018px;}
.ls11_c00170{letter-spacing:-0.049014px;}
.lsb_c00170{letter-spacing:-0.042012px;}
.ls20_c00170{letter-spacing:-0.035080px;}
.lsd_c00170{letter-spacing:-0.035010px;}
.lsf_c00170{letter-spacing:-0.028008px;}
.ls17_c00170{letter-spacing:-0.023387px;}
.lse_c00170{letter-spacing:-0.021006px;}
.lsc_c00170{letter-spacing:-0.014004px;}
.ls10_c00170{letter-spacing:-0.007002px;}
.lsa_c00170{letter-spacing:0.000000px;}
.ls8_c00170{letter-spacing:0.005847px;}
.ls1_c00170{letter-spacing:0.007002px;}
.ls3_c00170{letter-spacing:0.014004px;}
.ls0_c00170{letter-spacing:0.023281px;}
.ls5_c00170{letter-spacing:0.029233px;}
.ls2_c00170{letter-spacing:0.042012px;}
.ls6_c00170{letter-spacing:0.064313px;}
.ls7_c00170{letter-spacing:0.122779px;}
.ls15_c00170{letter-spacing:0.146166px;}
.ls1f_c00170{letter-spacing:0.298179px;}
.ls1a_c00170{letter-spacing:0.356645px;}
.ls4_c00170{letter-spacing:0.362492px;}
.ls1b_c00170{letter-spacing:0.537891px;}
.ls1c_c00170{letter-spacing:10.453792px;}
.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;}
}
.ws3_c00170{word-spacing:-58.466400px;}
.ws4_c00170{word-spacing:-16.259506px;}
.ws2_c00170{word-spacing:-15.446823px;}
.ws0_c00170{word-spacing:-12.967628px;}
.ws1_c00170{word-spacing:-10.397640px;}
.ws23_c00170{word-spacing:-0.344952px;}
.ws28_c00170{word-spacing:-0.286485px;}
.ws1c_c00170{word-spacing:-0.192939px;}
.ws22_c00170{word-spacing:-0.111086px;}
.ws1b_c00170{word-spacing:-0.052620px;}
.ws17_c00170{word-spacing:-0.028008px;}
.ws7_c00170{word-spacing:-0.014004px;}
.ws5_c00170{word-spacing:0.000000px;}
.ws2a_c00170{word-spacing:0.005847px;}
.ws1a_c00170{word-spacing:0.035010px;}
.ws29_c00170{word-spacing:0.046773px;}
.ws1d_c00170{word-spacing:0.087700px;}
.ws27_c00170{word-spacing:0.111086px;}
.ws26_c00170{word-spacing:0.274792px;}
.ws19_c00170{word-spacing:0.364104px;}
.wsd_c00170{word-spacing:0.371106px;}
.ws16_c00170{word-spacing:0.385110px;}
.ws9_c00170{word-spacing:2.184624px;}
.ws8_c00170{word-spacing:2.520720px;}
.wsb_c00170{word-spacing:2.863818px;}
.wsc_c00170{word-spacing:2.884824px;}
.ws1e_c00170{word-spacing:4.186194px;}
.ws21_c00170{word-spacing:4.303127px;}
.ws1f_c00170{word-spacing:4.355747px;}
.ws20_c00170{word-spacing:4.396673px;}
.ws11_c00170{word-spacing:4.670334px;}
.ws13_c00170{word-spacing:6.063732px;}
.ws15_c00170{word-spacing:6.462846px;}
.ws14_c00170{word-spacing:6.469848px;}
.ws18_c00170{word-spacing:7.198056px;}
.ws6_c00170{word-spacing:7.590168px;}
.ws25_c00170{word-spacing:9.915901px;}
.ws24_c00170{word-spacing:10.477179px;}
.wsa_c00170{word-spacing:12.260502px;}
.ws10_c00170{word-spacing:17.638038px;}
.wsf_c00170{word-spacing:17.652042px;}
.ws12_c00170{word-spacing:18.702342px;}
.wse_c00170{word-spacing:24.135894px;}
._2_c00170{margin-left:-18.723348px;}
._5_c00170{margin-left:-11.774324px;}
._6_c00170{margin-left:-9.782238px;}
._4_c00170{margin-left:-2.707434px;}
._1_c00170{margin-left:-1.113318px;}
._0_c00170{width:1.064304px;}
._3_c00170{width:5.930694px;}
.fc0_c00170{color:rgb(0,0,0);}
.fs2_c00170{font-size:37.809600px;}
.fs1_c00170{font-size:46.562400px;}
.fs3_c00170{font-size:58.466400px;}
.fs0_c00170{font-size:70.020000px;}
.y0_c00170{bottom:0.000000px;}
.y2_c00170{bottom:109.740968px;}
.y1_c00170{bottom:129.810450px;}
.y23_c00170{bottom:153.120600px;}
.y22_c00170{bottom:170.310637px;}
.y21_c00170{bottom:194.880450px;}
.y20_c00170{bottom:211.980730px;}
.y1f_c00170{bottom:233.580450px;}
.y1e_c00170{bottom:251.400450px;}
.y1d_c00170{bottom:266.071365px;}
.y1c_c00170{bottom:332.221010px;}
.y1b_c00170{bottom:374.070213px;}
.y1a_c00170{bottom:404.310101px;}
.y19_c00170{bottom:434.460713px;}
.y18_c00170{bottom:464.699878px;}
.y17_c00170{bottom:494.850490px;}
.y16_c00170{bottom:525.090378px;}
.y15_c00170{bottom:555.330265px;}
.y14_c00170{bottom:588.360109px;}
.y13_c00170{bottom:618.599997px;}
.y12_c00170{bottom:648.750609px;}
.y11_c00170{bottom:681.870069px;}
.y10_c00170{bottom:714.989529px;}
.yf_c00170{bottom:745.229416px;}
.ye_c00170{bottom:775.380028px;}
.yd_c00170{bottom:805.619916px;}
.yc_c00170{bottom:835.679502px;}
.yb_c00170{bottom:868.889988px;}
.ya_c00170{bottom:899.039676px;}
.y9_c00170{bottom:929.279563px;}
.y8_c00170{bottom:959.519451px;}
.y7_c00170{bottom:989.670063px;}
.y6_c00170{bottom:1019.909951px;}
.y5_c00170{bottom:1050.060563px;}
.y4_c00170{bottom:1080.300441px;}
.y3_c00170{bottom:1110.451053px;}
.h9_c00170{height:39.337949px;}
.h7_c00170{height:39.338549px;}
.h8_c00170{height:54.098549px;}
.h2_c00170{height:62.600889px;}
.h1_c00170{height:62.771836px;}
.h3_c00170{height:73.668822px;}
.h6_c00170{height:73.671672px;}
.h4_c00170{height:74.031882px;}
.h5_c00170{height:74.143826px;}
.h0_c00170{height:1263.000000px;}
.w0_c00170{width:892.500000px;}
.x0_c00170{left:0.000000px;}
.x2_c00170{left:82.710059px;}
.x1_c00170{left:431.730000px;}
@media print{
.v2_c00170{vertical-align:-13.120000pt;}
.v0_c00170{vertical-align:0.000000pt;}
.v1_c00170{vertical-align:28.480032pt;}
.ls16_c00170{letter-spacing:-0.665218pt;}
.ls19_c00170{letter-spacing:-0.410564pt;}
.ls1d_c00170{letter-spacing:-0.233866pt;}
.ls13_c00170{letter-spacing:-0.135122pt;}
.ls1e_c00170{letter-spacing:-0.088349pt;}
.ls14_c00170{letter-spacing:-0.067561pt;}
.ls12_c00170{letter-spacing:-0.067217pt;}
.ls18_c00170{letter-spacing:-0.057167pt;}
.ls9_c00170{letter-spacing:-0.056016pt;}
.ls11_c00170{letter-spacing:-0.043568pt;}
.lsb_c00170{letter-spacing:-0.037344pt;}
.ls20_c00170{letter-spacing:-0.031182pt;}
.lsd_c00170{letter-spacing:-0.031120pt;}
.lsf_c00170{letter-spacing:-0.024896pt;}
.ls17_c00170{letter-spacing:-0.020788pt;}
.lse_c00170{letter-spacing:-0.018672pt;}
.lsc_c00170{letter-spacing:-0.012448pt;}
.ls10_c00170{letter-spacing:-0.006224pt;}
.lsa_c00170{letter-spacing:0.000000pt;}
.ls8_c00170{letter-spacing:0.005197pt;}
.ls1_c00170{letter-spacing:0.006224pt;}
.ls3_c00170{letter-spacing:0.012448pt;}
.ls0_c00170{letter-spacing:0.020694pt;}
.ls5_c00170{letter-spacing:0.025985pt;}
.ls2_c00170{letter-spacing:0.037344pt;}
.ls6_c00170{letter-spacing:0.057167pt;}
.ls7_c00170{letter-spacing:0.109137pt;}
.ls15_c00170{letter-spacing:0.129925pt;}
.ls1f_c00170{letter-spacing:0.265048pt;}
.ls1a_c00170{letter-spacing:0.317018pt;}
.ls4_c00170{letter-spacing:0.322215pt;}
.ls1b_c00170{letter-spacing:0.478125pt;}
.ls1c_c00170{letter-spacing:9.292260pt;}
.ws3_c00170{word-spacing:-51.970133pt;}
.ws4_c00170{word-spacing:-14.452894pt;}
.ws2_c00170{word-spacing:-13.730509pt;}
.ws0_c00170{word-spacing:-11.526781pt;}
.ws1_c00170{word-spacing:-9.242347pt;}
.ws23_c00170{word-spacing:-0.306624pt;}
.ws28_c00170{word-spacing:-0.254654pt;}
.ws1c_c00170{word-spacing:-0.171501pt;}
.ws22_c00170{word-spacing:-0.098743pt;}
.ws1b_c00170{word-spacing:-0.046773pt;}
.ws17_c00170{word-spacing:-0.024896pt;}
.ws7_c00170{word-spacing:-0.012448pt;}
.ws5_c00170{word-spacing:0.000000pt;}
.ws2a_c00170{word-spacing:0.005197pt;}
.ws1a_c00170{word-spacing:0.031120pt;}
.ws29_c00170{word-spacing:0.041576pt;}
.ws1d_c00170{word-spacing:0.077955pt;}
.ws27_c00170{word-spacing:0.098743pt;}
.ws26_c00170{word-spacing:0.244260pt;}
.ws19_c00170{word-spacing:0.323648pt;}
.wsd_c00170{word-spacing:0.329872pt;}
.ws16_c00170{word-spacing:0.342320pt;}
.ws9_c00170{word-spacing:1.941888pt;}
.ws8_c00170{word-spacing:2.240640pt;}
.wsb_c00170{word-spacing:2.545616pt;}
.wsc_c00170{word-spacing:2.564288pt;}
.ws1e_c00170{word-spacing:3.721062pt;}
.ws21_c00170{word-spacing:3.825002pt;}
.ws1f_c00170{word-spacing:3.871775pt;}
.ws20_c00170{word-spacing:3.908154pt;}
.ws11_c00170{word-spacing:4.151408pt;}
.ws13_c00170{word-spacing:5.389984pt;}
.ws15_c00170{word-spacing:5.744752pt;}
.ws14_c00170{word-spacing:5.750976pt;}
.ws18_c00170{word-spacing:6.398272pt;}
.ws6_c00170{word-spacing:6.746816pt;}
.ws25_c00170{word-spacing:8.814135pt;}
.ws24_c00170{word-spacing:9.313048pt;}
.wsa_c00170{word-spacing:10.898224pt;}
.ws10_c00170{word-spacing:15.678256pt;}
.wsf_c00170{word-spacing:15.690704pt;}
.ws12_c00170{word-spacing:16.624304pt;}
.wse_c00170{word-spacing:21.454128pt;}
._2_c00170{margin-left:-16.642976pt;}
._5_c00170{margin-left:-10.466066pt;}
._6_c00170{margin-left:-8.695322pt;}
._4_c00170{margin-left:-2.406608pt;}
._1_c00170{margin-left:-0.989616pt;}
._0_c00170{width:0.946048pt;}
._3_c00170{width:5.271728pt;}
.fs2_c00170{font-size:33.608533pt;}
.fs1_c00170{font-size:41.388800pt;}
.fs3_c00170{font-size:51.970133pt;}
.fs0_c00170{font-size:62.240000pt;}
.y0_c00170{bottom:0.000000pt;}
.y2_c00170{bottom:97.547527pt;}
.y1_c00170{bottom:115.387067pt;}
.y23_c00170{bottom:136.107200pt;}
.y22_c00170{bottom:151.387233pt;}
.y21_c00170{bottom:173.227067pt;}
.y20_c00170{bottom:188.427316pt;}
.y1f_c00170{bottom:207.627067pt;}
.y1e_c00170{bottom:223.467067pt;}
.y1d_c00170{bottom:236.507880pt;}
.y1c_c00170{bottom:295.307564pt;}
.y1b_c00170{bottom:332.506856pt;}
.y1a_c00170{bottom:359.386756pt;}
.y19_c00170{bottom:386.187300pt;}
.y18_c00170{bottom:413.066559pt;}
.y17_c00170{bottom:439.867103pt;}
.y16_c00170{bottom:466.747003pt;}
.y15_c00170{bottom:493.626903pt;}
.y14_c00170{bottom:522.986764pt;}
.y13_c00170{bottom:549.866664pt;}
.y12_c00170{bottom:576.667208pt;}
.y11_c00170{bottom:606.106728pt;}
.y10_c00170{bottom:635.546248pt;}
.yf_c00170{bottom:662.426148pt;}
.ye_c00170{bottom:689.226692pt;}
.yd_c00170{bottom:716.106592pt;}
.yc_c00170{bottom:742.826224pt;}
.yb_c00170{bottom:772.346656pt;}
.ya_c00170{bottom:799.146379pt;}
.y9_c00170{bottom:826.026279pt;}
.y8_c00170{bottom:852.906179pt;}
.y7_c00170{bottom:879.706723pt;}
.y6_c00170{bottom:906.586623pt;}
.y5_c00170{bottom:933.387167pt;}
.y4_c00170{bottom:960.267059pt;}
.y3_c00170{bottom:987.067603pt;}
.h9_c00170{height:34.967066pt;}
.h7_c00170{height:34.967599pt;}
.h8_c00170{height:48.087599pt;}
.h2_c00170{height:55.645234pt;}
.h1_c00170{height:55.797187pt;}
.h3_c00170{height:65.483398pt;}
.h6_c00170{height:65.485931pt;}
.h4_c00170{height:65.806118pt;}
.h5_c00170{height:65.905623pt;}
.h0_c00170{height:1122.666667pt;}
.w0_c00170{width:793.333333pt;}
.x0_c00170{left:0.000000pt;}
.x2_c00170{left:73.520052pt;}
.x1_c00170{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_72d80df1dcf6b2c7793c9594.woff2')format("woff");}.ff1_c00171{font-family:ff1_c00171;line-height:1.106934;font-style:normal;font-weight:normal;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_c8dd815ed1999ee0ddc6964b.woff2')format("woff");}.ff2_c00171{font-family:ff2_c00171;line-height:1.104492;font-style:normal;font-weight:normal;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_5b6260cec8ab7fd94023bf30.woff2')format("woff");}.ff3_c00171{font-family:ff3_c00171;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00171;src:url('chunks/assets/font_c8cd7b3c00477571003ac9ab.woff2')format("woff");}.ff4_c00171{font-family:ff4_c00171;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00171;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff5_c00171{font-family:ff5_c00171;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00171;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff6_c00171{font-family:ff6_c00171;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00171{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00171{vertical-align:-14.760000px;}
.v0_c00171{vertical-align:0.000000px;}
.v1_c00171{vertical-align:32.042034px;}
.ls1b_c00171{letter-spacing:-0.707443px;}
.ls11_c00171{letter-spacing:-0.385878px;}
.ls16_c00171{letter-spacing:-0.111086px;}
.ls13_c00171{letter-spacing:-0.087700px;}
.ls10_c00171{letter-spacing:-0.075619px;}
.ls17_c00171{letter-spacing:-0.070160px;}
.ls7_c00171{letter-spacing:-0.063018px;}
.lse_c00171{letter-spacing:-0.049014px;}
.lsf_c00171{letter-spacing:-0.042012px;}
.ls12_c00171{letter-spacing:-0.040926px;}
.ls1a_c00171{letter-spacing:-0.035080px;}
.lsd_c00171{letter-spacing:-0.035010px;}
.lsb_c00171{letter-spacing:-0.028008px;}
.ls9_c00171{letter-spacing:-0.021006px;}
.ls1c_c00171{letter-spacing:-0.017540px;}
.lsc_c00171{letter-spacing:-0.014004px;}
.lsa_c00171{letter-spacing:-0.007002px;}
.ls8_c00171{letter-spacing:0.000000px;}
.ls5_c00171{letter-spacing:0.005847px;}
.ls4_c00171{letter-spacing:0.014004px;}
.ls2_c00171{letter-spacing:0.021006px;}
.ls1_c00171{letter-spacing:0.023281px;}
.ls3_c00171{letter-spacing:0.028008px;}
.ls0_c00171{letter-spacing:0.035010px;}
.ls19_c00171{letter-spacing:0.052620px;}
.ls15_c00171{letter-spacing:0.076006px;}
.ls14_c00171{letter-spacing:0.105240px;}
.ls18_c00171{letter-spacing:0.292332px;}
.ls6_c00171{letter-spacing:0.333258px;}
.sc__c00171{text-shadow:none;}
.sc0_c00171{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00171{-webkit-text-stroke:0px transparent;}
.sc0_c00171{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00171{word-spacing:-58.466400px;}
.ws0_c00171{word-spacing:-12.967628px;}
.ws1_c00171{word-spacing:-10.397640px;}
.ws27_c00171{word-spacing:-0.233866px;}
.wsf_c00171{word-spacing:-0.014004px;}
.ws3_c00171{word-spacing:0.000000px;}
.ws22_c00171{word-spacing:0.005847px;}
.ws16_c00171{word-spacing:0.028008px;}
.ws2c_c00171{word-spacing:0.029233px;}
.ws28_c00171{word-spacing:0.081853px;}
.ws12_c00171{word-spacing:0.343098px;}
.ws9_c00171{word-spacing:0.378108px;}
.ws1e_c00171{word-spacing:1.043298px;}
.ws10_c00171{word-spacing:1.407402px;}
.ws11_c00171{word-spacing:1.806516px;}
.ws1d_c00171{word-spacing:1.813518px;}
.ws26_c00171{word-spacing:2.426356px;}
.ws24_c00171{word-spacing:2.572522px;}
.ws25_c00171{word-spacing:2.981786px;}
.ws23_c00171{word-spacing:3.279965px;}
.ws1a_c00171{word-spacing:4.278222px;}
.ws1b_c00171{word-spacing:4.684338px;}
.ws4_c00171{word-spacing:4.992426px;}
.ws5_c00171{word-spacing:5.048442px;}
.wsc_c00171{word-spacing:6.840954px;}
.ws8_c00171{word-spacing:9.361674px;}
.ws13_c00171{word-spacing:10.103886px;}
.ws29_c00171{word-spacing:10.401173px;}
.ws2a_c00171{word-spacing:10.488872px;}
.ws6_c00171{word-spacing:10.790082px;}
.ws7_c00171{word-spacing:10.811088px;}
.ws2b_c00171{word-spacing:11.161236px;}
.ws19_c00171{word-spacing:14.760216px;}
.ws18_c00171{word-spacing:15.110316px;}
.ws15_c00171{word-spacing:15.502428px;}
.ws14_c00171{word-spacing:15.873534px;}
.ws1c_c00171{word-spacing:16.531722px;}
.ws1f_c00171{word-spacing:16.580736px;}
.wsd_c00171{word-spacing:18.723348px;}
.ws21_c00171{word-spacing:22.287366px;}
.ws20_c00171{word-spacing:22.672476px;}
.wsb_c00171{word-spacing:27.356814px;}
.wse_c00171{word-spacing:28.085022px;}
.ws17_c00171{word-spacing:29.114316px;}
.wsa_c00171{word-spacing:32.762358px;}
._2_c00171{margin-left:-29.163330px;}
._4_c00171{margin-left:-2.708982px;}
._1_c00171{margin-left:-1.029294px;}
._0_c00171{width:1.470420px;}
._3_c00171{width:5.930694px;}
.fc0_c00171{color:rgb(0,0,0);}
.fs2_c00171{font-size:37.809600px;}
.fs1_c00171{font-size:46.562400px;}
.fs3_c00171{font-size:58.466400px;}
.fs0_c00171{font-size:70.020000px;}
.y0_c00171{bottom:0.000000px;}
.y2_c00171{bottom:109.740968px;}
.y1_c00171{bottom:129.810450px;}
.y24_c00171{bottom:149.429891px;}
.y23_c00171{bottom:170.940450px;}
.y22_c00171{bottom:185.249891px;}
.y21_c00171{bottom:206.760450px;}
.y20_c00171{bottom:221.069891px;}
.y1f_c00171{bottom:242.580450px;}
.y1e_c00171{bottom:257.248150px;}
.y1d_c00171{bottom:302.067952px;}
.y1c_c00171{bottom:332.307840px;}
.y1b_c00171{bottom:362.458452px;}
.y1a_c00171{bottom:392.698339px;}
.y19_c00171{bottom:422.848951px;}
.y18_c00171{bottom:453.088839px;}
.y17_c00171{bottom:483.239451px;}
.y16_c00171{bottom:513.479338px;}
.y15_c00171{bottom:543.629950px;}
.y14_c00171{bottom:573.869838px;}
.y13_c00171{bottom:604.020063px;}
.y12_c00171{bottom:634.259951px;}
.y11_c00171{bottom:664.410562px;}
.y10_c00171{bottom:694.648295px;}
.yf_c00171{bottom:724.798906px;}
.ye_c00171{bottom:755.038794px;}
.yd_c00171{bottom:785.189406px;}
.yc_c00171{bottom:815.429293px;}
.yb_c00171{bottom:845.579905px;}
.ya_c00171{bottom:875.819793px;}
.y9_c00171{bottom:905.970405px;}
.y8_c00171{bottom:936.121017px;}
.y7_c00171{bottom:977.970220px;}
.y6_c00171{bottom:1019.909942px;}
.y5_c00171{bottom:1050.060553px;}
.y4_c00171{bottom:1080.300441px;}
.y3_c00171{bottom:1110.451053px;}
.h7_c00171{height:39.338549px;}
.h8_c00171{height:54.098549px;}
.h2_c00171{height:62.600889px;}
.h1_c00171{height:62.771836px;}
.h6_c00171{height:62.781034px;}
.h3_c00171{height:73.670820px;}
.h4_c00171{height:73.677408px;}
.h5_c00171{height:74.144012px;}
.h0_c00171{height:1263.000000px;}
.w0_c00171{width:892.500000px;}
.x0_c00171{left:0.000000px;}
.x2_c00171{left:82.710059px;}
.x1_c00171{left:431.730000px;}
@media print{
.v2_c00171{vertical-align:-13.120000pt;}
.v0_c00171{vertical-align:0.000000pt;}
.v1_c00171{vertical-align:28.481808pt;}
.ls1b_c00171{letter-spacing:-0.628839pt;}
.ls11_c00171{letter-spacing:-0.343003pt;}
.ls16_c00171{letter-spacing:-0.098743pt;}
.ls13_c00171{letter-spacing:-0.077955pt;}
.ls10_c00171{letter-spacing:-0.067217pt;}
.ls17_c00171{letter-spacing:-0.062364pt;}
.ls7_c00171{letter-spacing:-0.056016pt;}
.lse_c00171{letter-spacing:-0.043568pt;}
.lsf_c00171{letter-spacing:-0.037344pt;}
.ls12_c00171{letter-spacing:-0.036379pt;}
.ls1a_c00171{letter-spacing:-0.031182pt;}
.lsd_c00171{letter-spacing:-0.031120pt;}
.lsb_c00171{letter-spacing:-0.024896pt;}
.ls9_c00171{letter-spacing:-0.018672pt;}
.ls1c_c00171{letter-spacing:-0.015591pt;}
.lsc_c00171{letter-spacing:-0.012448pt;}
.lsa_c00171{letter-spacing:-0.006224pt;}
.ls8_c00171{letter-spacing:0.000000pt;}
.ls5_c00171{letter-spacing:0.005197pt;}
.ls4_c00171{letter-spacing:0.012448pt;}
.ls2_c00171{letter-spacing:0.018672pt;}
.ls1_c00171{letter-spacing:0.020694pt;}
.ls3_c00171{letter-spacing:0.024896pt;}
.ls0_c00171{letter-spacing:0.031120pt;}
.ls19_c00171{letter-spacing:0.046773pt;}
.ls15_c00171{letter-spacing:0.067561pt;}
.ls14_c00171{letter-spacing:0.093546pt;}
.ls18_c00171{letter-spacing:0.259851pt;}
.ls6_c00171{letter-spacing:0.296230pt;}
.ws2_c00171{word-spacing:-51.970133pt;}
.ws0_c00171{word-spacing:-11.526781pt;}
.ws1_c00171{word-spacing:-9.242347pt;}
.ws27_c00171{word-spacing:-0.207881pt;}
.wsf_c00171{word-spacing:-0.012448pt;}
.ws3_c00171{word-spacing:0.000000pt;}
.ws22_c00171{word-spacing:0.005197pt;}
.ws16_c00171{word-spacing:0.024896pt;}
.ws2c_c00171{word-spacing:0.025985pt;}
.ws28_c00171{word-spacing:0.072758pt;}
.ws12_c00171{word-spacing:0.304976pt;}
.ws9_c00171{word-spacing:0.336096pt;}
.ws1e_c00171{word-spacing:0.927376pt;}
.ws10_c00171{word-spacing:1.251024pt;}
.ws11_c00171{word-spacing:1.605792pt;}
.ws1d_c00171{word-spacing:1.612016pt;}
.ws26_c00171{word-spacing:2.156761pt;}
.ws24_c00171{word-spacing:2.286686pt;}
.ws25_c00171{word-spacing:2.650477pt;}
.ws23_c00171{word-spacing:2.915524pt;}
.ws1a_c00171{word-spacing:3.802864pt;}
.ws1b_c00171{word-spacing:4.163856pt;}
.ws4_c00171{word-spacing:4.437712pt;}
.ws5_c00171{word-spacing:4.487504pt;}
.wsc_c00171{word-spacing:6.080848pt;}
.ws8_c00171{word-spacing:8.321488pt;}
.ws13_c00171{word-spacing:8.981232pt;}
.ws29_c00171{word-spacing:9.245487pt;}
.ws2a_c00171{word-spacing:9.323442pt;}
.ws6_c00171{word-spacing:9.591184pt;}
.ws7_c00171{word-spacing:9.609856pt;}
.ws2b_c00171{word-spacing:9.921098pt;}
.ws19_c00171{word-spacing:13.120192pt;}
.ws18_c00171{word-spacing:13.431392pt;}
.ws15_c00171{word-spacing:13.779936pt;}
.ws14_c00171{word-spacing:14.109808pt;}
.ws1c_c00171{word-spacing:14.694864pt;}
.ws1f_c00171{word-spacing:14.738432pt;}
.wsd_c00171{word-spacing:16.642976pt;}
.ws21_c00171{word-spacing:19.810992pt;}
.ws20_c00171{word-spacing:20.153312pt;}
.wsb_c00171{word-spacing:24.317168pt;}
.wse_c00171{word-spacing:24.964464pt;}
.ws17_c00171{word-spacing:25.879392pt;}
.wsa_c00171{word-spacing:29.122096pt;}
._2_c00171{margin-left:-25.922960pt;}
._4_c00171{margin-left:-2.407984pt;}
._1_c00171{margin-left:-0.914928pt;}
._0_c00171{width:1.307040pt;}
._3_c00171{width:5.271728pt;}
.fs2_c00171{font-size:33.608533pt;}
.fs1_c00171{font-size:41.388800pt;}
.fs3_c00171{font-size:51.970133pt;}
.fs0_c00171{font-size:62.240000pt;}
.y0_c00171{bottom:0.000000pt;}
.y2_c00171{bottom:97.547527pt;}
.y1_c00171{bottom:115.387067pt;}
.y24_c00171{bottom:132.826570pt;}
.y23_c00171{bottom:151.947067pt;}
.y22_c00171{bottom:164.666570pt;}
.y21_c00171{bottom:183.787067pt;}
.y20_c00171{bottom:196.506570pt;}
.y1f_c00171{bottom:215.627067pt;}
.y1e_c00171{bottom:228.665023pt;}
.y1d_c00171{bottom:268.504847pt;}
.y1c_c00171{bottom:295.384747pt;}
.y1b_c00171{bottom:322.185291pt;}
.y1a_c00171{bottom:349.065191pt;}
.y19_c00171{bottom:375.865735pt;}
.y18_c00171{bottom:402.745635pt;}
.y17_c00171{bottom:429.546179pt;}
.y16_c00171{bottom:456.426079pt;}
.y15_c00171{bottom:483.226623pt;}
.y14_c00171{bottom:510.106523pt;}
.y13_c00171{bottom:536.906723pt;}
.y12_c00171{bottom:563.786623pt;}
.y11_c00171{bottom:590.587167pt;}
.y10_c00171{bottom:617.465151pt;}
.yf_c00171{bottom:644.265695pt;}
.ye_c00171{bottom:671.145595pt;}
.yd_c00171{bottom:697.946139pt;}
.yc_c00171{bottom:724.826039pt;}
.yb_c00171{bottom:751.626583pt;}
.ya_c00171{bottom:778.506483pt;}
.y9_c00171{bottom:805.307027pt;}
.y8_c00171{bottom:832.107571pt;}
.y7_c00171{bottom:869.306863pt;}
.y6_c00171{bottom:906.586615pt;}
.y5_c00171{bottom:933.387159pt;}
.y4_c00171{bottom:960.267059pt;}
.y3_c00171{bottom:987.067603pt;}
.h7_c00171{height:34.967599pt;}
.h8_c00171{height:48.087599pt;}
.h2_c00171{height:55.645234pt;}
.h1_c00171{height:55.797187pt;}
.h6_c00171{height:55.805364pt;}
.h3_c00171{height:65.485174pt;}
.h4_c00171{height:65.491030pt;}
.h5_c00171{height:65.905788pt;}
.h0_c00171{height:1122.666667pt;}
.w0_c00171{width:793.333333pt;}
.x0_c00171{left:0.000000pt;}
.x2_c00171{left:73.520052pt;}
.x1_c00171{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0d5075678893a22af157aec8.woff2')format("woff");}.ff1_c00172{font-family:ff1_c00172;line-height:1.106934;font-style:normal;font-weight:normal;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_9cfc890f3d74bb4575dcb7ed.woff2')format("woff");}.ff2_c00172{font-family:ff2_c00172;line-height:1.104492;font-style:normal;font-weight:normal;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_638da325d7dac528fb49e570.woff2')format("woff");}.ff3_c00172{font-family:ff3_c00172;line-height:1.133301;font-style:normal;font-weight:normal;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_03e70af103c8f533be094de8.woff2')format("woff");}.ff4_c00172{font-family:ff4_c00172;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00172{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00172{vertical-align:-32.040000px;}
.v3_c00172{vertical-align:-14.760000px;}
.v0_c00172{vertical-align:0.000000px;}
.v1_c00172{vertical-align:32.040036px;}
.ls11_c00172{letter-spacing:-0.292332px;}
.ls10_c00172{letter-spacing:-0.263099px;}
.lsf_c00172{letter-spacing:-0.192939px;}
.lse_c00172{letter-spacing:-0.099393px;}
.ls15_c00172{letter-spacing:-0.076006px;}
.lsd_c00172{letter-spacing:-0.075619px;}
.ls4_c00172{letter-spacing:-0.063018px;}
.ls7_c00172{letter-spacing:-0.042012px;}
.lsb_c00172{letter-spacing:-0.035010px;}
.ls14_c00172{letter-spacing:-0.029233px;}
.ls9_c00172{letter-spacing:-0.028008px;}
.ls6_c00172{letter-spacing:-0.021006px;}
.lsa_c00172{letter-spacing:-0.014004px;}
.lsc_c00172{letter-spacing:-0.007002px;}
.ls5_c00172{letter-spacing:0.000000px;}
.ls17_c00172{letter-spacing:0.005847px;}
.ls3_c00172{letter-spacing:0.007002px;}
.ls0_c00172{letter-spacing:0.021006px;}
.ls1_c00172{letter-spacing:0.023281px;}
.ls2_c00172{letter-spacing:0.028008px;}
.ls16_c00172{letter-spacing:0.052620px;}
.ls12_c00172{letter-spacing:0.058466px;}
.ls13_c00172{letter-spacing:0.204632px;}
.ls8_c00172{letter-spacing:0.343098px;}
.sc__c00172{text-shadow:none;}
.sc0_c00172{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00172{-webkit-text-stroke:0px transparent;}
.sc0_c00172{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00172{word-spacing:-19.808658px;}
.ws1_c00172{word-spacing:-12.967628px;}
.ws2_c00172{word-spacing:-10.397640px;}
.ws25_c00172{word-spacing:-0.192939px;}
.ws24_c00172{word-spacing:-0.046773px;}
.ws28_c00172{word-spacing:-0.040926px;}
.ws1a_c00172{word-spacing:-0.007002px;}
.ws3_c00172{word-spacing:0.000000px;}
.ws29_c00172{word-spacing:0.005847px;}
.ws8_c00172{word-spacing:0.014004px;}
.ws27_c00172{word-spacing:0.087700px;}
.ws23_c00172{word-spacing:0.304025px;}
.ws6_c00172{word-spacing:0.322092px;}
.ws1f_c00172{word-spacing:0.364104px;}
.ws9_c00172{word-spacing:0.371106px;}
.ws5_c00172{word-spacing:0.385110px;}
.ws26_c00172{word-spacing:0.403418px;}
.ws1d_c00172{word-spacing:1.442412px;}
.ws15_c00172{word-spacing:3.977136px;}
.wsc_c00172{word-spacing:4.334238px;}
.ws1e_c00172{word-spacing:5.027436px;}
.ws20_c00172{word-spacing:5.150890px;}
.ws21_c00172{word-spacing:5.244436px;}
.ws22_c00172{word-spacing:5.314596px;}
.ws18_c00172{word-spacing:5.741640px;}
.ws17_c00172{word-spacing:5.762646px;}
.ws1b_c00172{word-spacing:6.819948px;}
.ws16_c00172{word-spacing:6.840954px;}
.ws1c_c00172{word-spacing:6.847956px;}
.wsd_c00172{word-spacing:10.425978px;}
.ws19_c00172{word-spacing:11.175192px;}
.ws12_c00172{word-spacing:12.218490px;}
.wsf_c00172{word-spacing:16.573734px;}
.ws10_c00172{word-spacing:18.380250px;}
.ws4_c00172{word-spacing:19.087452px;}
.wse_c00172{word-spacing:20.879964px;}
.ws13_c00172{word-spacing:22.637466px;}
.ws14_c00172{word-spacing:22.686480px;}
.ws7_c00172{word-spacing:23.771790px;}
.ws11_c00172{word-spacing:26.985708px;}
.wsa_c00172{word-spacing:28.757214px;}
.wsb_c00172{word-spacing:28.827234px;}
._3_c00172{margin-left:-2.709882px;}
._1_c00172{margin-left:-1.317312px;}
._0_c00172{width:1.064304px;}
._2_c00172{width:5.930694px;}
.fc0_c00172{color:rgb(0,0,0);}
.fs2_c00172{font-size:37.809600px;}
.fs1_c00172{font-size:46.562400px;}
.fs3_c00172{font-size:58.466400px;}
.fs0_c00172{font-size:70.020000px;}
.y0_c00172{bottom:0.000000px;}
.y2_c00172{bottom:109.740968px;}
.y1_c00172{bottom:129.810450px;}
.y23_c00172{bottom:153.120600px;}
.y22_c00172{bottom:170.940450px;}
.y21_c00172{bottom:185.249891px;}
.y20_c00172{bottom:206.760450px;}
.y1f_c00172{bottom:221.430085px;}
.y1e_c00172{bottom:279.119563px;}
.y1d_c00172{bottom:309.359451px;}
.y1c_c00172{bottom:339.510063px;}
.y1b_c00172{bottom:369.749950px;}
.y1a_c00172{bottom:399.900562px;}
.y19_c00172{bottom:430.138839px;}
.y18_c00172{bottom:460.289451px;}
.y17_c00172{bottom:490.529338px;}
.y16_c00172{bottom:520.679950px;}
.y15_c00172{bottom:550.919838px;}
.y14_c00172{bottom:589.170132px;}
.y13_c00172{bottom:611.306490px;}
.y12_c00172{bottom:641.457102px;}
.y11_c00172{bottom:671.696990px;}
.y10_c00172{bottom:701.847602px;}
.yf_c00172{bottom:732.087489px;}
.ye_c00172{bottom:762.238101px;}
.yd_c00172{bottom:792.477989px;}
.yc_c00172{bottom:822.628601px;}
.yb_c00172{bottom:852.868488px;}
.ya_c00172{bottom:883.108376px;}
.y9_c00172{bottom:913.258988px;}
.y8_c00172{bottom:943.409600px;}
.y7_c00172{bottom:989.670063px;}
.y6_c00172{bottom:1019.909951px;}
.y5_c00172{bottom:1050.060563px;}
.y4_c00172{bottom:1080.300441px;}
.y3_c00172{bottom:1110.451053px;}
.ha_c00172{height:39.337949px;}
.h8_c00172{height:39.338549px;}
.h5_c00172{height:41.742464px;}
.h9_c00172{height:54.098549px;}
.h2_c00172{height:62.600889px;}
.h1_c00172{height:62.771836px;}
.h7_c00172{height:62.773294px;}
.h6_c00172{height:73.675230px;}
.h3_c00172{height:73.782500px;}
.h4_c00172{height:73.798304px;}
.h0_c00172{height:1263.000000px;}
.w0_c00172{width:892.500000px;}
.x0_c00172{left:0.000000px;}
.x2_c00172{left:82.710059px;}
.x1_c00172{left:431.730000px;}
@media print{
.v2_c00172{vertical-align:-28.480000pt;}
.v3_c00172{vertical-align:-13.120000pt;}
.v0_c00172{vertical-align:0.000000pt;}
.v1_c00172{vertical-align:28.480032pt;}
.ls11_c00172{letter-spacing:-0.259851pt;}
.ls10_c00172{letter-spacing:-0.233866pt;}
.lsf_c00172{letter-spacing:-0.171501pt;}
.lse_c00172{letter-spacing:-0.088349pt;}
.ls15_c00172{letter-spacing:-0.067561pt;}
.lsd_c00172{letter-spacing:-0.067217pt;}
.ls4_c00172{letter-spacing:-0.056016pt;}
.ls7_c00172{letter-spacing:-0.037344pt;}
.lsb_c00172{letter-spacing:-0.031120pt;}
.ls14_c00172{letter-spacing:-0.025985pt;}
.ls9_c00172{letter-spacing:-0.024896pt;}
.ls6_c00172{letter-spacing:-0.018672pt;}
.lsa_c00172{letter-spacing:-0.012448pt;}
.lsc_c00172{letter-spacing:-0.006224pt;}
.ls5_c00172{letter-spacing:0.000000pt;}
.ls17_c00172{letter-spacing:0.005197pt;}
.ls3_c00172{letter-spacing:0.006224pt;}
.ls0_c00172{letter-spacing:0.018672pt;}
.ls1_c00172{letter-spacing:0.020694pt;}
.ls2_c00172{letter-spacing:0.024896pt;}
.ls16_c00172{letter-spacing:0.046773pt;}
.ls12_c00172{letter-spacing:0.051970pt;}
.ls13_c00172{letter-spacing:0.181895pt;}
.ls8_c00172{letter-spacing:0.304976pt;}
.ws0_c00172{word-spacing:-17.607696pt;}
.ws1_c00172{word-spacing:-11.526781pt;}
.ws2_c00172{word-spacing:-9.242347pt;}
.ws25_c00172{word-spacing:-0.171501pt;}
.ws24_c00172{word-spacing:-0.041576pt;}
.ws28_c00172{word-spacing:-0.036379pt;}
.ws1a_c00172{word-spacing:-0.006224pt;}
.ws3_c00172{word-spacing:0.000000pt;}
.ws29_c00172{word-spacing:0.005197pt;}
.ws8_c00172{word-spacing:0.012448pt;}
.ws27_c00172{word-spacing:0.077955pt;}
.ws23_c00172{word-spacing:0.270245pt;}
.ws6_c00172{word-spacing:0.286304pt;}
.ws1f_c00172{word-spacing:0.323648pt;}
.ws9_c00172{word-spacing:0.329872pt;}
.ws5_c00172{word-spacing:0.342320pt;}
.ws26_c00172{word-spacing:0.358594pt;}
.ws1d_c00172{word-spacing:1.282144pt;}
.ws15_c00172{word-spacing:3.535232pt;}
.wsc_c00172{word-spacing:3.852656pt;}
.ws1e_c00172{word-spacing:4.468832pt;}
.ws20_c00172{word-spacing:4.578569pt;}
.ws21_c00172{word-spacing:4.661721pt;}
.ws22_c00172{word-spacing:4.724085pt;}
.ws18_c00172{word-spacing:5.103680pt;}
.ws17_c00172{word-spacing:5.122352pt;}
.ws1b_c00172{word-spacing:6.062176pt;}
.ws16_c00172{word-spacing:6.080848pt;}
.ws1c_c00172{word-spacing:6.087072pt;}
.wsd_c00172{word-spacing:9.267536pt;}
.ws19_c00172{word-spacing:9.933504pt;}
.ws12_c00172{word-spacing:10.860880pt;}
.wsf_c00172{word-spacing:14.732208pt;}
.ws10_c00172{word-spacing:16.338000pt;}
.ws4_c00172{word-spacing:16.966624pt;}
.wse_c00172{word-spacing:18.559968pt;}
.ws13_c00172{word-spacing:20.122192pt;}
.ws14_c00172{word-spacing:20.165760pt;}
.ws7_c00172{word-spacing:21.130480pt;}
.ws11_c00172{word-spacing:23.987296pt;}
.wsa_c00172{word-spacing:25.561968pt;}
.wsb_c00172{word-spacing:25.624208pt;}
._3_c00172{margin-left:-2.408784pt;}
._1_c00172{margin-left:-1.170944pt;}
._0_c00172{width:0.946048pt;}
._2_c00172{width:5.271728pt;}
.fs2_c00172{font-size:33.608533pt;}
.fs1_c00172{font-size:41.388800pt;}
.fs3_c00172{font-size:51.970133pt;}
.fs0_c00172{font-size:62.240000pt;}
.y0_c00172{bottom:0.000000pt;}
.y2_c00172{bottom:97.547527pt;}
.y1_c00172{bottom:115.387067pt;}
.y23_c00172{bottom:136.107200pt;}
.y22_c00172{bottom:151.947067pt;}
.y21_c00172{bottom:164.666570pt;}
.y20_c00172{bottom:183.787067pt;}
.y1f_c00172{bottom:196.826743pt;}
.y1e_c00172{bottom:248.106279pt;}
.y1d_c00172{bottom:274.986179pt;}
.y1c_c00172{bottom:301.786723pt;}
.y1b_c00172{bottom:328.666623pt;}
.y1a_c00172{bottom:355.467167pt;}
.y19_c00172{bottom:382.345635pt;}
.y18_c00172{bottom:409.146179pt;}
.y17_c00172{bottom:436.026079pt;}
.y16_c00172{bottom:462.826623pt;}
.y15_c00172{bottom:489.706523pt;}
.y14_c00172{bottom:523.706784pt;}
.y13_c00172{bottom:543.383547pt;}
.y12_c00172{bottom:570.184091pt;}
.y11_c00172{bottom:597.063991pt;}
.y10_c00172{bottom:623.864535pt;}
.yf_c00172{bottom:650.744435pt;}
.ye_c00172{bottom:677.544979pt;}
.yd_c00172{bottom:704.424879pt;}
.yc_c00172{bottom:731.225423pt;}
.yb_c00172{bottom:758.105323pt;}
.ya_c00172{bottom:784.985223pt;}
.y9_c00172{bottom:811.785767pt;}
.y8_c00172{bottom:838.586311pt;}
.y7_c00172{bottom:879.706723pt;}
.y6_c00172{bottom:906.586623pt;}
.y5_c00172{bottom:933.387167pt;}
.y4_c00172{bottom:960.267059pt;}
.y3_c00172{bottom:987.067603pt;}
.ha_c00172{height:34.967066pt;}
.h8_c00172{height:34.967599pt;}
.h5_c00172{height:37.104412pt;}
.h9_c00172{height:48.087599pt;}
.h2_c00172{height:55.645234pt;}
.h1_c00172{height:55.797187pt;}
.h7_c00172{height:55.798484pt;}
.h6_c00172{height:65.489094pt;}
.h3_c00172{height:65.584445pt;}
.h4_c00172{height:65.598492pt;}
.h0_c00172{height:1122.666667pt;}
.w0_c00172{width:793.333333pt;}
.x0_c00172{left:0.000000pt;}
.x2_c00172{left:73.520052pt;}
.x1_c00172{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9186aaee76800aec419f4e4f.woff2')format("woff");}.ff1_c00173{font-family:ff1_c00173;line-height:1.106934;font-style:normal;font-weight:normal;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_d2dec171201bf3ba73955e67.woff2')format("woff");}.ff2_c00173{font-family:ff2_c00173;line-height:1.104492;font-style:normal;font-weight:normal;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_2969ec10441c7f515054185e.woff2')format("woff");}.ff3_c00173{font-family:ff3_c00173;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00173;src:url('chunks/assets/font_62d90e27eaf59e159dea89bc.woff2')format("woff");}.ff4_c00173{font-family:ff4_c00173;line-height:1.133301;font-style:normal;font-weight:normal;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_efc336957e408a3772ef5c01.woff2')format("woff");}.ff5_c00173{font-family:ff5_c00173;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00173{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00173{vertical-align:-14.760000px;}
.v0_c00173{vertical-align:0.000000px;}
.v1_c00173{vertical-align:32.045580px;}
.ls13_c00173{letter-spacing:-0.590511px;}
.lsc_c00173{letter-spacing:-0.335249px;}
.lsd_c00173{letter-spacing:-0.334274px;}
.lsf_c00173{letter-spacing:-0.075619px;}
.ls4_c00173{letter-spacing:-0.063018px;}
.ls7_c00173{letter-spacing:-0.049014px;}
.ls9_c00173{letter-spacing:-0.042012px;}
.ls8_c00173{letter-spacing:-0.035010px;}
.ls6_c00173{letter-spacing:-0.028008px;}
.lsb_c00173{letter-spacing:-0.021006px;}
.lse_c00173{letter-spacing:-0.014004px;}
.lsa_c00173{letter-spacing:-0.007002px;}
.ls5_c00173{letter-spacing:0.000000px;}
.ls1_c00173{letter-spacing:0.014004px;}
.ls2_c00173{letter-spacing:0.017540px;}
.ls0_c00173{letter-spacing:0.021006px;}
.ls3_c00173{letter-spacing:0.035080px;}
.ls14_c00173{letter-spacing:0.046773px;}
.ls12_c00173{letter-spacing:0.058466px;}
.ls15_c00173{letter-spacing:0.093546px;}
.ls11_c00173{letter-spacing:0.105240px;}
.ls10_c00173{letter-spacing:0.116933px;}
.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:-12.609098px;}
.ws1_c00173{word-spacing:-10.397640px;}
.ws1f_c00173{word-spacing:-0.081853px;}
.ws20_c00173{word-spacing:-0.023387px;}
.ws2_c00173{word-spacing:0.000000px;}
.wsc_c00173{word-spacing:0.007002px;}
.ws15_c00173{word-spacing:0.021006px;}
.ws4_c00173{word-spacing:0.035010px;}
.wsd_c00173{word-spacing:0.645757px;}
.ws9_c00173{word-spacing:1.050300px;}
.ws8_c00173{word-spacing:1.106316px;}
.ws19_c00173{word-spacing:1.799514px;}
.ws5_c00173{word-spacing:2.128608px;}
.ws6_c00173{word-spacing:2.184624px;}
.ws1e_c00173{word-spacing:3.203959px;}
.ws18_c00173{word-spacing:3.606030px;}
.ws1d_c00173{word-spacing:4.203734px;}
.ws17_c00173{word-spacing:4.698342px;}
.ws3_c00173{word-spacing:5.412546px;}
.ws10_c00173{word-spacing:5.755644px;}
.wse_c00173{word-spacing:5.769648px;}
.wsf_c00173{word-spacing:5.776650px;}
.ws14_c00173{word-spacing:5.783652px;}
.wsa_c00173{word-spacing:6.112746px;}
.ws16_c00173{word-spacing:6.490854px;}
.ws13_c00173{word-spacing:7.170048px;}
.ws12_c00173{word-spacing:7.233066px;}
.ws11_c00173{word-spacing:13.324806px;}
.ws7_c00173{word-spacing:14.417118px;}
.wsb_c00173{word-spacing:15.474420px;}
.ws1b_c00173{word-spacing:15.750848px;}
.ws1a_c00173{word-spacing:16.095800px;}
.ws1c_c00173{word-spacing:21.556562px;}
._3_c00173{margin-left:-2.709774px;}
._1_c00173{margin-left:-1.043298px;}
._0_c00173{width:1.176336px;}
._2_c00173{width:5.930694px;}
._4_c00173{width:20.860812px;}
.fc0_c00173{color:rgb(0,0,0);}
.fs3_c00173{font-size:37.809600px;}
.fs1_c00173{font-size:46.562400px;}
.fs4_c00173{font-size:58.466400px;}
.fs0_c00173{font-size:70.020000px;}
.fs2_c00173{font-size:75.971400px;}
.y0_c00173{bottom:0.000000px;}
.y2_c00173{bottom:109.740968px;}
.y1_c00173{bottom:129.810450px;}
.y23_c00173{bottom:149.428990px;}
.y22_c00173{bottom:167.249548px;}
.y21_c00173{bottom:185.249891px;}
.y20_c00173{bottom:206.760450px;}
.y1f_c00173{bottom:221.427867px;}
.y1e_c00173{bottom:281.727340px;}
.y1d_c00173{bottom:311.967228px;}
.y1c_c00173{bottom:342.117840px;}
.y1b_c00173{bottom:372.357727px;}
.y1a_c00173{bottom:402.508339px;}
.y19_c00173{bottom:432.658951px;}
.y18_c00173{bottom:462.898839px;}
.y17_c00173{bottom:493.049451px;}
.y16_c00173{bottom:523.289338px;}
.y15_c00173{bottom:553.439950px;}
.y14_c00173{bottom:583.679838px;}
.y13_c00173{bottom:613.830450px;}
.y12_c00173{bottom:638.580450px;}
.y11_c00173{bottom:687.718952px;}
.y10_c00173{bottom:717.869563px;}
.yf_c00173{bottom:748.109451px;}
.ye_c00173{bottom:778.260063px;}
.yd_c00173{bottom:808.499950px;}
.yc_c00173{bottom:838.650562px;}
.yb_c00173{bottom:868.889055px;}
.ya_c00173{bottom:899.039667px;}
.y9_c00173{bottom:929.279555px;}
.y8_c00173{bottom:959.519442px;}
.y7_c00173{bottom:989.670054px;}
.y6_c00173{bottom:1019.909942px;}
.y5_c00173{bottom:1050.060553px;}
.y4_c00173{bottom:1080.300441px;}
.y3_c00173{bottom:1110.451053px;}
.h7_c00173{height:39.338549px;}
.h8_c00173{height:54.098549px;}
.h2_c00173{height:62.600889px;}
.h1_c00173{height:62.771836px;}
.h6_c00173{height:62.782168px;}
.h4_c00173{height:63.216299px;}
.h5_c00173{height:68.589413px;}
.h3_c00173{height:73.674366px;}
.h0_c00173{height:1263.000000px;}
.w0_c00173{width:892.500000px;}
.x0_c00173{left:0.000000px;}
.x2_c00173{left:82.710059px;}
.x3_c00173{left:94.319626px;}
.x1_c00173{left:431.730000px;}
@media print{
.v2_c00173{vertical-align:-13.120000pt;}
.v0_c00173{vertical-align:0.000000pt;}
.v1_c00173{vertical-align:28.484960pt;}
.ls13_c00173{letter-spacing:-0.524898pt;}
.lsc_c00173{letter-spacing:-0.297999pt;}
.lsd_c00173{letter-spacing:-0.297133pt;}
.lsf_c00173{letter-spacing:-0.067217pt;}
.ls4_c00173{letter-spacing:-0.056016pt;}
.ls7_c00173{letter-spacing:-0.043568pt;}
.ls9_c00173{letter-spacing:-0.037344pt;}
.ls8_c00173{letter-spacing:-0.031120pt;}
.ls6_c00173{letter-spacing:-0.024896pt;}
.lsb_c00173{letter-spacing:-0.018672pt;}
.lse_c00173{letter-spacing:-0.012448pt;}
.lsa_c00173{letter-spacing:-0.006224pt;}
.ls5_c00173{letter-spacing:0.000000pt;}
.ls1_c00173{letter-spacing:0.012448pt;}
.ls2_c00173{letter-spacing:0.015591pt;}
.ls0_c00173{letter-spacing:0.018672pt;}
.ls3_c00173{letter-spacing:0.031182pt;}
.ls14_c00173{letter-spacing:0.041576pt;}
.ls12_c00173{letter-spacing:0.051970pt;}
.ls15_c00173{letter-spacing:0.083152pt;}
.ls11_c00173{letter-spacing:0.093546pt;}
.ls10_c00173{letter-spacing:0.103940pt;}
.ws0_c00173{word-spacing:-11.208087pt;}
.ws1_c00173{word-spacing:-9.242347pt;}
.ws1f_c00173{word-spacing:-0.072758pt;}
.ws20_c00173{word-spacing:-0.020788pt;}
.ws2_c00173{word-spacing:0.000000pt;}
.wsc_c00173{word-spacing:0.006224pt;}
.ws15_c00173{word-spacing:0.018672pt;}
.ws4_c00173{word-spacing:0.031120pt;}
.wsd_c00173{word-spacing:0.574006pt;}
.ws9_c00173{word-spacing:0.933600pt;}
.ws8_c00173{word-spacing:0.983392pt;}
.ws19_c00173{word-spacing:1.599568pt;}
.ws5_c00173{word-spacing:1.892096pt;}
.ws6_c00173{word-spacing:1.941888pt;}
.ws1e_c00173{word-spacing:2.847963pt;}
.ws18_c00173{word-spacing:3.205360pt;}
.ws1d_c00173{word-spacing:3.736653pt;}
.ws17_c00173{word-spacing:4.176304pt;}
.ws3_c00173{word-spacing:4.811152pt;}
.ws10_c00173{word-spacing:5.116128pt;}
.wse_c00173{word-spacing:5.128576pt;}
.wsf_c00173{word-spacing:5.134800pt;}
.ws14_c00173{word-spacing:5.141024pt;}
.wsa_c00173{word-spacing:5.433552pt;}
.ws16_c00173{word-spacing:5.769648pt;}
.ws13_c00173{word-spacing:6.373376pt;}
.ws12_c00173{word-spacing:6.429392pt;}
.ws11_c00173{word-spacing:11.844272pt;}
.ws7_c00173{word-spacing:12.815216pt;}
.wsb_c00173{word-spacing:13.755040pt;}
.ws1b_c00173{word-spacing:14.000754pt;}
.ws1a_c00173{word-spacing:14.307378pt;}
.ws1c_c00173{word-spacing:19.161388pt;}
._3_c00173{margin-left:-2.408688pt;}
._1_c00173{margin-left:-0.927376pt;}
._0_c00173{width:1.045632pt;}
._2_c00173{width:5.271728pt;}
._4_c00173{width:18.542944pt;}
.fs3_c00173{font-size:33.608533pt;}
.fs1_c00173{font-size:41.388800pt;}
.fs4_c00173{font-size:51.970133pt;}
.fs0_c00173{font-size:62.240000pt;}
.fs2_c00173{font-size:67.530133pt;}
.y0_c00173{bottom:0.000000pt;}
.y2_c00173{bottom:97.547527pt;}
.y1_c00173{bottom:115.387067pt;}
.y23_c00173{bottom:132.825769pt;}
.y22_c00173{bottom:148.666265pt;}
.y21_c00173{bottom:164.666570pt;}
.y20_c00173{bottom:183.787067pt;}
.y1f_c00173{bottom:196.824771pt;}
.y1e_c00173{bottom:250.424303pt;}
.y1d_c00173{bottom:277.304203pt;}
.y1c_c00173{bottom:304.104747pt;}
.y1b_c00173{bottom:330.984647pt;}
.y1a_c00173{bottom:357.785191pt;}
.y19_c00173{bottom:384.585735pt;}
.y18_c00173{bottom:411.465635pt;}
.y17_c00173{bottom:438.266179pt;}
.y16_c00173{bottom:465.146079pt;}
.y15_c00173{bottom:491.946623pt;}
.y14_c00173{bottom:518.826523pt;}
.y13_c00173{bottom:545.627067pt;}
.y12_c00173{bottom:567.627067pt;}
.y11_c00173{bottom:611.305735pt;}
.y10_c00173{bottom:638.106279pt;}
.yf_c00173{bottom:664.986179pt;}
.ye_c00173{bottom:691.786723pt;}
.yd_c00173{bottom:718.666623pt;}
.yc_c00173{bottom:745.467167pt;}
.yb_c00173{bottom:772.345827pt;}
.ya_c00173{bottom:799.146371pt;}
.y9_c00173{bottom:826.026271pt;}
.y8_c00173{bottom:852.906171pt;}
.y7_c00173{bottom:879.706715pt;}
.y6_c00173{bottom:906.586615pt;}
.y5_c00173{bottom:933.387159pt;}
.y4_c00173{bottom:960.267059pt;}
.y3_c00173{bottom:987.067603pt;}
.h7_c00173{height:34.967599pt;}
.h8_c00173{height:48.087599pt;}
.h2_c00173{height:55.645234pt;}
.h1_c00173{height:55.797187pt;}
.h6_c00173{height:55.806372pt;}
.h4_c00173{height:56.192266pt;}
.h5_c00173{height:60.968367pt;}
.h3_c00173{height:65.488326pt;}
.h0_c00173{height:1122.666667pt;}
.w0_c00173{width:793.333333pt;}
.x0_c00173{left:0.000000pt;}
.x2_c00173{left:73.520052pt;}
.x3_c00173{left:83.839668pt;}
.x1_c00173{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_84e6d5969dea53d091d1ca39.woff2')format("woff");}.ff1_c00174{font-family:ff1_c00174;line-height:1.106934;font-style:normal;font-weight:normal;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_5f53ee22e0a83b084000f22d.woff2')format("woff");}.ff2_c00174{font-family:ff2_c00174;line-height:1.104492;font-style:normal;font-weight:normal;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_5d374087e5775eda3aa8e39f.woff2')format("woff");}.ff3_c00174{font-family:ff3_c00174;line-height:1.133301;font-style:normal;font-weight:normal;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_dd825a40ab7c67b021f9db5d.woff2')format("woff");}.ff4_c00174{font-family:ff4_c00174;line-height:1.133301;font-style:normal;font-weight:normal;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_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff5_c00174{font-family:ff5_c00174;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00174;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff6_c00174{font-family:ff6_c00174;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00174{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00174{vertical-align:-14.760600px;}
.v0_c00174{vertical-align:0.000000px;}
.v1_c00174{vertical-align:32.049342px;}
.lsf_c00174{letter-spacing:-0.333258px;}
.lse_c00174{letter-spacing:-0.075619px;}
.ls6_c00174{letter-spacing:-0.063018px;}
.lsd_c00174{letter-spacing:-0.042012px;}
.ls11_c00174{letter-spacing:-0.035080px;}
.lsb_c00174{letter-spacing:-0.035010px;}
.lsc_c00174{letter-spacing:-0.028008px;}
.lsa_c00174{letter-spacing:-0.021006px;}
.ls8_c00174{letter-spacing:-0.014004px;}
.ls9_c00174{letter-spacing:-0.007002px;}
.ls7_c00174{letter-spacing:0.000000px;}
.ls5_c00174{letter-spacing:0.005847px;}
.ls3_c00174{letter-spacing:0.007002px;}
.ls1_c00174{letter-spacing:0.014004px;}
.ls2_c00174{letter-spacing:0.023281px;}
.ls0_c00174{letter-spacing:0.028008px;}
.ls12_c00174{letter-spacing:0.046773px;}
.ls13_c00174{letter-spacing:0.111086px;}
.ls4_c00174{letter-spacing:0.385878px;}
.ls10_c00174{letter-spacing:0.537891px;}
.sc__c00174{text-shadow:none;}
.sc0_c00174{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00174{-webkit-text-stroke:0px transparent;}
.sc0_c00174{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00174{word-spacing:-58.466400px;}
.ws0_c00174{word-spacing:-12.967628px;}
.ws1_c00174{word-spacing:-10.397640px;}
.ws1d_c00174{word-spacing:-0.882843px;}
.ws21_c00174{word-spacing:-0.099393px;}
.ws20_c00174{word-spacing:-0.035080px;}
.wsb_c00174{word-spacing:-0.028008px;}
.ws3_c00174{word-spacing:0.000000px;}
.ws1f_c00174{word-spacing:0.005847px;}
.ws1c_c00174{word-spacing:0.011693px;}
.wsc_c00174{word-spacing:0.014004px;}
.ws16_c00174{word-spacing:0.329094px;}
.ws15_c00174{word-spacing:0.336096px;}
.ws1b_c00174{word-spacing:0.344952px;}
.ws5_c00174{word-spacing:0.350100px;}
.ws1e_c00174{word-spacing:0.409265px;}
.ws4_c00174{word-spacing:2.163618px;}
.ws17_c00174{word-spacing:2.863818px;}
.ws8_c00174{word-spacing:2.891826px;}
.ws11_c00174{word-spacing:3.213918px;}
.wsd_c00174{word-spacing:3.949128px;}
.ws12_c00174{word-spacing:5.391540px;}
.ws13_c00174{word-spacing:5.398542px;}
.ws18_c00174{word-spacing:6.091740px;}
.ws19_c00174{word-spacing:6.112746px;}
.ws6_c00174{word-spacing:9.004572px;}
.ws7_c00174{word-spacing:9.739782px;}
.ws14_c00174{word-spacing:11.875392px;}
.wse_c00174{word-spacing:12.960702px;}
.wsf_c00174{word-spacing:12.967704px;}
.ws10_c00174{word-spacing:14.410116px;}
.ws1a_c00174{word-spacing:15.509430px;}
.wsa_c00174{word-spacing:24.079878px;}
.ws9_c00174{word-spacing:24.107886px;}
._3_c00174{margin-left:-2.707038px;}
._0_c00174{margin-left:-1.001286px;}
._1_c00174{width:1.015290px;}
._2_c00174{width:5.930694px;}
.fc0_c00174{color:rgb(0,0,0);}
.fs2_c00174{font-size:37.809600px;}
.fs1_c00174{font-size:46.562400px;}
.fs3_c00174{font-size:58.466400px;}
.fs0_c00174{font-size:70.020000px;}
.y0_c00174{bottom:0.000000px;}
.y2_c00174{bottom:109.740968px;}
.y1_c00174{bottom:129.810450px;}
.y1e_c00174{bottom:153.120600px;}
.y1d_c00174{bottom:191.370600px;}
.y1c_c00174{bottom:226.560220px;}
.y1b_c00174{bottom:312.870373px;}
.y1a_c00174{bottom:343.020985px;}
.y19_c00174{bottom:373.260873px;}
.y18_c00174{bottom:403.411485px;}
.y17_c00174{bottom:440.851179px;}
.y16_c00174{bottom:478.471174px;}
.y15_c00174{bottom:508.530760px;}
.y14_c00174{bottom:545.970454px;}
.y13_c00174{bottom:583.589649px;}
.y12_c00174{bottom:613.740261px;}
.y11_c00174{bottom:643.980148px;}
.y10_c00174{bottom:674.130760px;}
.yf_c00174{bottom:711.570454px;}
.ye_c00174{bottom:749.188115px;}
.yd_c00174{bottom:779.338727px;}
.yc_c00174{bottom:809.489339px;}
.yb_c00174{bottom:847.020059px;}
.ya_c00174{bottom:884.550778px;}
.y9_c00174{bottom:914.790666px;}
.y8_c00174{bottom:944.850252px;}
.y7_c00174{bottom:975.090140px;}
.y6_c00174{bottom:1005.240751px;}
.y5_c00174{bottom:1042.680446px;}
.y4_c00174{bottom:1080.300441px;}
.y3_c00174{bottom:1110.451053px;}
.h6_c00174{height:39.337949px;}
.h2_c00174{height:62.600889px;}
.h1_c00174{height:62.771836px;}
.h5_c00174{height:62.772754px;}
.h3_c00174{height:73.678128px;}
.h4_c00174{height:73.785668px;}
.h0_c00174{height:1263.000000px;}
.w0_c00174{width:892.500000px;}
.x0_c00174{left:0.000000px;}
.x2_c00174{left:82.710059px;}
.x1_c00174{left:431.730000px;}
@media print{
.v2_c00174{vertical-align:-13.120533pt;}
.v0_c00174{vertical-align:0.000000pt;}
.v1_c00174{vertical-align:28.488304pt;}
.lsf_c00174{letter-spacing:-0.296230pt;}
.lse_c00174{letter-spacing:-0.067217pt;}
.ls6_c00174{letter-spacing:-0.056016pt;}
.lsd_c00174{letter-spacing:-0.037344pt;}
.ls11_c00174{letter-spacing:-0.031182pt;}
.lsb_c00174{letter-spacing:-0.031120pt;}
.lsc_c00174{letter-spacing:-0.024896pt;}
.lsa_c00174{letter-spacing:-0.018672pt;}
.ls8_c00174{letter-spacing:-0.012448pt;}
.ls9_c00174{letter-spacing:-0.006224pt;}
.ls7_c00174{letter-spacing:0.000000pt;}
.ls5_c00174{letter-spacing:0.005197pt;}
.ls3_c00174{letter-spacing:0.006224pt;}
.ls1_c00174{letter-spacing:0.012448pt;}
.ls2_c00174{letter-spacing:0.020694pt;}
.ls0_c00174{letter-spacing:0.024896pt;}
.ls12_c00174{letter-spacing:0.041576pt;}
.ls13_c00174{letter-spacing:0.098743pt;}
.ls4_c00174{letter-spacing:0.343003pt;}
.ls10_c00174{letter-spacing:0.478125pt;}
.ws2_c00174{word-spacing:-51.970133pt;}
.ws0_c00174{word-spacing:-11.526781pt;}
.ws1_c00174{word-spacing:-9.242347pt;}
.ws1d_c00174{word-spacing:-0.784749pt;}
.ws21_c00174{word-spacing:-0.088349pt;}
.ws20_c00174{word-spacing:-0.031182pt;}
.wsb_c00174{word-spacing:-0.024896pt;}
.ws3_c00174{word-spacing:0.000000pt;}
.ws1f_c00174{word-spacing:0.005197pt;}
.ws1c_c00174{word-spacing:0.010394pt;}
.wsc_c00174{word-spacing:0.012448pt;}
.ws16_c00174{word-spacing:0.292528pt;}
.ws15_c00174{word-spacing:0.298752pt;}
.ws1b_c00174{word-spacing:0.306624pt;}
.ws5_c00174{word-spacing:0.311200pt;}
.ws1e_c00174{word-spacing:0.363791pt;}
.ws4_c00174{word-spacing:1.923216pt;}
.ws17_c00174{word-spacing:2.545616pt;}
.ws8_c00174{word-spacing:2.570512pt;}
.ws11_c00174{word-spacing:2.856816pt;}
.wsd_c00174{word-spacing:3.510336pt;}
.ws12_c00174{word-spacing:4.792480pt;}
.ws13_c00174{word-spacing:4.798704pt;}
.ws18_c00174{word-spacing:5.414880pt;}
.ws19_c00174{word-spacing:5.433552pt;}
.ws6_c00174{word-spacing:8.004064pt;}
.ws7_c00174{word-spacing:8.657584pt;}
.ws14_c00174{word-spacing:10.555904pt;}
.wse_c00174{word-spacing:11.520624pt;}
.wsf_c00174{word-spacing:11.526848pt;}
.ws10_c00174{word-spacing:12.808992pt;}
.ws1a_c00174{word-spacing:13.786160pt;}
.wsa_c00174{word-spacing:21.404336pt;}
.ws9_c00174{word-spacing:21.429232pt;}
._3_c00174{margin-left:-2.406256pt;}
._0_c00174{margin-left:-0.890032pt;}
._1_c00174{width:0.902480pt;}
._2_c00174{width:5.271728pt;}
.fs2_c00174{font-size:33.608533pt;}
.fs1_c00174{font-size:41.388800pt;}
.fs3_c00174{font-size:51.970133pt;}
.fs0_c00174{font-size:62.240000pt;}
.y0_c00174{bottom:0.000000pt;}
.y2_c00174{bottom:97.547527pt;}
.y1_c00174{bottom:115.387067pt;}
.y1e_c00174{bottom:136.107200pt;}
.y1d_c00174{bottom:170.107200pt;}
.y1c_c00174{bottom:201.386863pt;}
.y1b_c00174{bottom:278.106999pt;}
.y1a_c00174{bottom:304.907543pt;}
.y19_c00174{bottom:331.787443pt;}
.y18_c00174{bottom:358.587987pt;}
.y17_c00174{bottom:391.867715pt;}
.y16_c00174{bottom:425.307711pt;}
.y15_c00174{bottom:452.027343pt;}
.y14_c00174{bottom:485.307071pt;}
.y13_c00174{bottom:518.746355pt;}
.y12_c00174{bottom:545.546899pt;}
.y11_c00174{bottom:572.426799pt;}
.y10_c00174{bottom:599.227343pt;}
.yf_c00174{bottom:632.507071pt;}
.ye_c00174{bottom:665.944991pt;}
.yd_c00174{bottom:692.745535pt;}
.yc_c00174{bottom:719.546079pt;}
.yb_c00174{bottom:752.906719pt;}
.ya_c00174{bottom:786.267359pt;}
.y9_c00174{bottom:813.147259pt;}
.y8_c00174{bottom:839.866891pt;}
.y7_c00174{bottom:866.746791pt;}
.y6_c00174{bottom:893.547335pt;}
.y5_c00174{bottom:926.827063pt;}
.y4_c00174{bottom:960.267059pt;}
.y3_c00174{bottom:987.067603pt;}
.h6_c00174{height:34.967066pt;}
.h2_c00174{height:55.645234pt;}
.h1_c00174{height:55.797187pt;}
.h5_c00174{height:55.798004pt;}
.h3_c00174{height:65.491670pt;}
.h4_c00174{height:65.587261pt;}
.h0_c00174{height:1122.666667pt;}
.w0_c00174{width:793.333333pt;}
.x0_c00174{left:0.000000pt;}
.x2_c00174{left:73.520052pt;}
.x1_c00174{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_52220fa2fb9343e3913db677.woff2')format("woff");}.ff1_c00175{font-family:ff1_c00175;line-height:1.106934;font-style:normal;font-weight:normal;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_6a3e2709a158e0d661dda400.woff2')format("woff");}.ff2_c00175{font-family:ff2_c00175;line-height:1.104492;font-style:normal;font-weight:normal;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_82d2c3a3a2fc71f193977420.woff2')format("woff");}.ff3_c00175{font-family:ff3_c00175;line-height:1.133301;font-style:normal;font-weight:normal;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_7fc8d7c771e0a2bdc00de5ad.woff2')format("woff");}.ff4_c00175{font-family:ff4_c00175;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00175{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00175{vertical-align:-14.760000px;}
.v0_c00175{vertical-align:0.000000px;}
.v1_c00175{vertical-align:32.040036px;}
.ls10_c00175{letter-spacing:-0.075619px;}
.ls12_c00175{letter-spacing:-0.064313px;}
.ls7_c00175{letter-spacing:-0.063018px;}
.lsb_c00175{letter-spacing:-0.056016px;}
.lse_c00175{letter-spacing:-0.042012px;}
.lsd_c00175{letter-spacing:-0.035010px;}
.lsc_c00175{letter-spacing:-0.028008px;}
.lsf_c00175{letter-spacing:-0.021006px;}
.lsa_c00175{letter-spacing:-0.014004px;}
.ls13_c00175{letter-spacing:-0.011693px;}
.ls9_c00175{letter-spacing:-0.007002px;}
.ls8_c00175{letter-spacing:0.000000px;}
.ls1_c00175{letter-spacing:0.007002px;}
.ls6_c00175{letter-spacing:0.011693px;}
.ls0_c00175{letter-spacing:0.014004px;}
.ls3_c00175{letter-spacing:0.021006px;}
.ls2_c00175{letter-spacing:0.023281px;}
.ls4_c00175{letter-spacing:0.035010px;}
.ls11_c00175{letter-spacing:0.046773px;}
.ls5_c00175{letter-spacing:0.056016px;}
.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:-12.967628px;}
.ws1_c00175{word-spacing:-10.397640px;}
.ws25_c00175{word-spacing:-0.035080px;}
.ws16_c00175{word-spacing:-0.035010px;}
.ws5_c00175{word-spacing:-0.021006px;}
.ws23_c00175{word-spacing:-0.007002px;}
.ws2_c00175{word-spacing:0.000000px;}
.ws1c_c00175{word-spacing:0.021006px;}
.ws27_c00175{word-spacing:0.023387px;}
.ws22_c00175{word-spacing:0.287082px;}
.wse_c00175{word-spacing:0.350100px;}
.wsa_c00175{word-spacing:0.399114px;}
.ws26_c00175{word-spacing:0.795143px;}
.wsb_c00175{word-spacing:1.764504px;}
.ws10_c00175{word-spacing:1.785510px;}
.wsf_c00175{word-spacing:2.177622px;}
.ws1e_c00175{word-spacing:3.192912px;}
.ws1f_c00175{word-spacing:3.578022px;}
.ws1d_c00175{word-spacing:3.599028px;}
.ws1a_c00175{word-spacing:4.649328px;}
.ws1b_c00175{word-spacing:4.698342px;}
.ws24_c00175{word-spacing:4.705344px;}
.ws15_c00175{word-spacing:5.027436px;}
.ws17_c00175{word-spacing:6.147756px;}
.ws11_c00175{word-spacing:7.555158px;}
.ws12_c00175{word-spacing:8.626464px;}
.wsc_c00175{word-spacing:8.969562px;}
.ws4_c00175{word-spacing:9.697770px;}
.ws3_c00175{word-spacing:10.054872px;}
.ws21_c00175{word-spacing:10.797084px;}
.ws20_c00175{word-spacing:10.804086px;}
.ws6_c00175{word-spacing:13.296798px;}
.ws7_c00175{word-spacing:13.310802px;}
.wsd_c00175{word-spacing:19.430550px;}
.ws8_c00175{word-spacing:20.508858px;}
.ws9_c00175{word-spacing:20.522862px;}
.ws14_c00175{word-spacing:22.700484px;}
.ws13_c00175{word-spacing:23.043582px;}
.ws19_c00175{word-spacing:28.064016px;}
.ws18_c00175{word-spacing:28.078020px;}
._3_c00175{margin-left:-2.716776px;}
._0_c00175{margin-left:-1.330380px;}
._1_c00175{width:1.015290px;}
._2_c00175{width:5.930694px;}
.fc0_c00175{color:rgb(0,0,0);}
.fs2_c00175{font-size:37.809600px;}
.fs1_c00175{font-size:46.562400px;}
.fs3_c00175{font-size:58.466400px;}
.fs0_c00175{font-size:70.020000px;}
.y0_c00175{bottom:0.000000px;}
.y2_c00175{bottom:109.740968px;}
.y1_c00175{bottom:129.810450px;}
.y21_c00175{bottom:153.120600px;}
.y20_c00175{bottom:170.940450px;}
.y1f_c00175{bottom:185.695361px;}
.y1e_c00175{bottom:222.235298px;}
.y1d_c00175{bottom:252.475185px;}
.y1c_c00175{bottom:282.625797px;}
.y1b_c00175{bottom:312.865685px;}
.y1a_c00175{bottom:350.305379px;}
.y19_c00175{bottom:387.836098px;}
.y18_c00175{bottom:418.075986px;}
.y17_c00175{bottom:448.226598px;}
.y16_c00175{bottom:478.377210px;}
.y15_c00175{bottom:515.907930px;}
.y14_c00175{bottom:553.347624px;}
.y13_c00175{bottom:583.587512px;}
.y12_c00175{bottom:613.738124px;}
.y11_c00175{bottom:643.978011px;}
.y10_c00175{bottom:674.128623px;}
.yf_c00175{bottom:704.368510px;}
.ye_c00175{bottom:741.808205px;}
.yd_c00175{bottom:779.338925px;}
.yc_c00175{bottom:809.578812px;}
.yb_c00175{bottom:839.729424px;}
.ya_c00175{bottom:869.880036px;}
.y9_c00175{bottom:907.410756px;}
.y8_c00175{bottom:944.850261px;}
.y7_c00175{bottom:975.090149px;}
.y6_c00175{bottom:1005.240761px;}
.y5_c00175{bottom:1042.680454px;}
.y4_c00175{bottom:1080.300441px;}
.y3_c00175{bottom:1110.451053px;}
.h7_c00175{height:39.337949px;}
.h6_c00175{height:39.338549px;}
.h2_c00175{height:62.600889px;}
.h1_c00175{height:62.771836px;}
.h5_c00175{height:62.792794px;}
.h3_c00175{height:73.782500px;}
.h4_c00175{height:74.143220px;}
.h0_c00175{height:1263.000000px;}
.w0_c00175{width:892.500000px;}
.x0_c00175{left:0.000000px;}
.x2_c00175{left:82.710059px;}
.x1_c00175{left:431.730000px;}
@media print{
.v2_c00175{vertical-align:-13.120000pt;}
.v0_c00175{vertical-align:0.000000pt;}
.v1_c00175{vertical-align:28.480032pt;}
.ls10_c00175{letter-spacing:-0.067217pt;}
.ls12_c00175{letter-spacing:-0.057167pt;}
.ls7_c00175{letter-spacing:-0.056016pt;}
.lsb_c00175{letter-spacing:-0.049792pt;}
.lse_c00175{letter-spacing:-0.037344pt;}
.lsd_c00175{letter-spacing:-0.031120pt;}
.lsc_c00175{letter-spacing:-0.024896pt;}
.lsf_c00175{letter-spacing:-0.018672pt;}
.lsa_c00175{letter-spacing:-0.012448pt;}
.ls13_c00175{letter-spacing:-0.010394pt;}
.ls9_c00175{letter-spacing:-0.006224pt;}
.ls8_c00175{letter-spacing:0.000000pt;}
.ls1_c00175{letter-spacing:0.006224pt;}
.ls6_c00175{letter-spacing:0.010394pt;}
.ls0_c00175{letter-spacing:0.012448pt;}
.ls3_c00175{letter-spacing:0.018672pt;}
.ls2_c00175{letter-spacing:0.020694pt;}
.ls4_c00175{letter-spacing:0.031120pt;}
.ls11_c00175{letter-spacing:0.041576pt;}
.ls5_c00175{letter-spacing:0.049792pt;}
.ws0_c00175{word-spacing:-11.526781pt;}
.ws1_c00175{word-spacing:-9.242347pt;}
.ws25_c00175{word-spacing:-0.031182pt;}
.ws16_c00175{word-spacing:-0.031120pt;}
.ws5_c00175{word-spacing:-0.018672pt;}
.ws23_c00175{word-spacing:-0.006224pt;}
.ws2_c00175{word-spacing:0.000000pt;}
.ws1c_c00175{word-spacing:0.018672pt;}
.ws27_c00175{word-spacing:0.020788pt;}
.ws22_c00175{word-spacing:0.255184pt;}
.wse_c00175{word-spacing:0.311200pt;}
.wsa_c00175{word-spacing:0.354768pt;}
.ws26_c00175{word-spacing:0.706794pt;}
.wsb_c00175{word-spacing:1.568448pt;}
.ws10_c00175{word-spacing:1.587120pt;}
.wsf_c00175{word-spacing:1.935664pt;}
.ws1e_c00175{word-spacing:2.838144pt;}
.ws1f_c00175{word-spacing:3.180464pt;}
.ws1d_c00175{word-spacing:3.199136pt;}
.ws1a_c00175{word-spacing:4.132736pt;}
.ws1b_c00175{word-spacing:4.176304pt;}
.ws24_c00175{word-spacing:4.182528pt;}
.ws15_c00175{word-spacing:4.468832pt;}
.ws17_c00175{word-spacing:5.464672pt;}
.ws11_c00175{word-spacing:6.715696pt;}
.ws12_c00175{word-spacing:7.667968pt;}
.wsc_c00175{word-spacing:7.972944pt;}
.ws4_c00175{word-spacing:8.620240pt;}
.ws3_c00175{word-spacing:8.937664pt;}
.ws21_c00175{word-spacing:9.597408pt;}
.ws20_c00175{word-spacing:9.603632pt;}
.ws6_c00175{word-spacing:11.819376pt;}
.ws7_c00175{word-spacing:11.831824pt;}
.wsd_c00175{word-spacing:17.271600pt;}
.ws8_c00175{word-spacing:18.230096pt;}
.ws9_c00175{word-spacing:18.242544pt;}
.ws14_c00175{word-spacing:20.178208pt;}
.ws13_c00175{word-spacing:20.483184pt;}
.ws19_c00175{word-spacing:24.945792pt;}
.ws18_c00175{word-spacing:24.958240pt;}
._3_c00175{margin-left:-2.414912pt;}
._0_c00175{margin-left:-1.182560pt;}
._1_c00175{width:0.902480pt;}
._2_c00175{width:5.271728pt;}
.fs2_c00175{font-size:33.608533pt;}
.fs1_c00175{font-size:41.388800pt;}
.fs3_c00175{font-size:51.970133pt;}
.fs0_c00175{font-size:62.240000pt;}
.y0_c00175{bottom:0.000000pt;}
.y2_c00175{bottom:97.547527pt;}
.y1_c00175{bottom:115.387067pt;}
.y21_c00175{bottom:136.107200pt;}
.y20_c00175{bottom:151.947067pt;}
.y1f_c00175{bottom:165.062543pt;}
.y1e_c00175{bottom:197.542487pt;}
.y1d_c00175{bottom:224.422387pt;}
.y1c_c00175{bottom:251.222931pt;}
.y1b_c00175{bottom:278.102831pt;}
.y1a_c00175{bottom:311.382559pt;}
.y19_c00175{bottom:344.743199pt;}
.y18_c00175{bottom:371.623099pt;}
.y17_c00175{bottom:398.423643pt;}
.y16_c00175{bottom:425.224187pt;}
.y15_c00175{bottom:458.584827pt;}
.y14_c00175{bottom:491.864555pt;}
.y13_c00175{bottom:518.744455pt;}
.y12_c00175{bottom:545.544999pt;}
.y11_c00175{bottom:572.424899pt;}
.y10_c00175{bottom:599.225443pt;}
.yf_c00175{bottom:626.105343pt;}
.ye_c00175{bottom:659.385071pt;}
.yd_c00175{bottom:692.745711pt;}
.yc_c00175{bottom:719.625611pt;}
.yb_c00175{bottom:746.426155pt;}
.ya_c00175{bottom:773.226699pt;}
.y9_c00175{bottom:806.587339pt;}
.y8_c00175{bottom:839.866899pt;}
.y7_c00175{bottom:866.746799pt;}
.y6_c00175{bottom:893.547343pt;}
.y5_c00175{bottom:926.827071pt;}
.y4_c00175{bottom:960.267059pt;}
.y3_c00175{bottom:987.067603pt;}
.h7_c00175{height:34.967066pt;}
.h6_c00175{height:34.967599pt;}
.h2_c00175{height:55.645234pt;}
.h1_c00175{height:55.797187pt;}
.h5_c00175{height:55.815817pt;}
.h3_c00175{height:65.584445pt;}
.h4_c00175{height:65.905084pt;}
.h0_c00175{height:1122.666667pt;}
.w0_c00175{width:793.333333pt;}
.x0_c00175{left:0.000000pt;}
.x2_c00175{left:73.520052pt;}
.x1_c00175{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_224f8a9e01d237487c37b642.woff2')format("woff");}.ff1_c00176{font-family:ff1_c00176;line-height:1.106934;font-style:normal;font-weight:normal;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_974676d815e905dd612a5a54.woff2')format("woff");}.ff2_c00176{font-family:ff2_c00176;line-height:1.104492;font-style:normal;font-weight:normal;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_4987f758319a8851d9bc3ac9.woff2')format("woff");}.ff3_c00176{font-family:ff3_c00176;line-height:1.133301;font-style:normal;font-weight:normal;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_ef49c60455693cd8792eec1f.woff2')format("woff");}.ff4_c00176{font-family:ff4_c00176;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00176;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff5_c00176{font-family:ff5_c00176;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00176;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff6_c00176{font-family:ff6_c00176;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00176{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00176{vertical-align:-14.760000px;}
.v0_c00176{vertical-align:0.000000px;}
.v1_c00176{vertical-align:32.399586px;}
.ls18_c00176{letter-spacing:-0.590511px;}
.ls16_c00176{letter-spacing:-0.344952px;}
.ls1b_c00176{letter-spacing:-0.292332px;}
.ls13_c00176{letter-spacing:-0.257252px;}
.ls1c_c00176{letter-spacing:-0.175399px;}
.ls1d_c00176{letter-spacing:-0.128626px;}
.ls15_c00176{letter-spacing:-0.111086px;}
.ls19_c00176{letter-spacing:-0.093546px;}
.ls17_c00176{letter-spacing:-0.087700px;}
.ls12_c00176{letter-spacing:-0.075619px;}
.lsf_c00176{letter-spacing:-0.070020px;}
.ls8_c00176{letter-spacing:-0.063018px;}
.ls10_c00176{letter-spacing:-0.056016px;}
.lsb_c00176{letter-spacing:-0.049014px;}
.ls1a_c00176{letter-spacing:-0.035080px;}
.lsd_c00176{letter-spacing:-0.035010px;}
.lse_c00176{letter-spacing:-0.028008px;}
.ls14_c00176{letter-spacing:-0.023387px;}
.ls11_c00176{letter-spacing:-0.021006px;}
.lsa_c00176{letter-spacing:-0.014004px;}
.lsc_c00176{letter-spacing:-0.007002px;}
.ls9_c00176{letter-spacing:0.000000px;}
.ls7_c00176{letter-spacing:0.005847px;}
.ls2_c00176{letter-spacing:0.007002px;}
.ls4_c00176{letter-spacing:0.021006px;}
.ls1_c00176{letter-spacing:0.023281px;}
.ls6_c00176{letter-spacing:0.099393px;}
.ls3_c00176{letter-spacing:0.140040px;}
.ls0_c00176{letter-spacing:0.334656px;}
.ls5_c00176{letter-spacing:0.362492px;}
.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;}
}
.ws4_c00176{word-spacing:-58.466400px;}
.ws1_c00176{word-spacing:-19.605600px;}
.ws5_c00176{word-spacing:-16.195193px;}
.ws3_c00176{word-spacing:-16.107493px;}
.ws0_c00176{word-spacing:-12.967628px;}
.ws2_c00176{word-spacing:-10.397640px;}
.ws26_c00176{word-spacing:-0.344952px;}
.wsc_c00176{word-spacing:-0.021006px;}
.ws6_c00176{word-spacing:0.000000px;}
.ws19_c00176{word-spacing:0.007002px;}
.wsd_c00176{word-spacing:0.021006px;}
.ws9_c00176{word-spacing:0.028008px;}
.ws20_c00176{word-spacing:0.046773px;}
.ws21_c00176{word-spacing:0.052620px;}
.ws15_c00176{word-spacing:0.350100px;}
.ws1d_c00176{word-spacing:0.602204px;}
.wse_c00176{word-spacing:5.055444px;}
.wsf_c00176{word-spacing:5.097456px;}
.ws24_c00176{word-spacing:6.261751px;}
.ws23_c00176{word-spacing:6.308525px;}
.ws25_c00176{word-spacing:6.390378px;}
.ws22_c00176{word-spacing:6.425457px;}
.ws1b_c00176{word-spacing:7.594785px;}
.ws1c_c00176{word-spacing:7.682485px;}
.ws1a_c00176{word-spacing:7.828651px;}
.ws8_c00176{word-spacing:7.954272px;}
.ws17_c00176{word-spacing:9.375678px;}
.ws13_c00176{word-spacing:9.732780px;}
.ws11_c00176{word-spacing:10.124892px;}
.ws12_c00176{word-spacing:10.439982px;}
.ws1f_c00176{word-spacing:11.792673px;}
.ws1e_c00176{word-spacing:11.985612px;}
.ws16_c00176{word-spacing:13.674906px;}
.wsb_c00176{word-spacing:14.025006px;}
.wsa_c00176{word-spacing:14.396112px;}
.ws10_c00176{word-spacing:15.103314px;}
.ws14_c00176{word-spacing:18.009144px;}
.ws7_c00176{word-spacing:19.801656px;}
.ws18_c00176{word-spacing:25.886394px;}
._3_c00176{margin-left:-2.706642px;}
._0_c00176{margin-left:-1.232352px;}
._1_c00176{width:1.071306px;}
._2_c00176{width:5.930694px;}
.fc0_c00176{color:rgb(0,0,0);}
.fs2_c00176{font-size:37.809600px;}
.fs1_c00176{font-size:46.562400px;}
.fs3_c00176{font-size:58.466400px;}
.fs0_c00176{font-size:70.020000px;}
.y0_c00176{bottom:0.000000px;}
.y2_c00176{bottom:109.740968px;}
.y1_c00176{bottom:129.810450px;}
.y21_c00176{bottom:149.429891px;}
.y20_c00176{bottom:170.940450px;}
.y1f_c00176{bottom:185.249891px;}
.y1e_c00176{bottom:206.760450px;}
.y1d_c00176{bottom:221.069891px;}
.y1c_c00176{bottom:242.580450px;}
.y1b_c00176{bottom:257.248574px;}
.y1a_c00176{bottom:372.268677px;}
.y19_c00176{bottom:402.508564px;}
.y18_c00176{bottom:432.659176px;}
.y17_c00176{bottom:462.899064px;}
.y16_c00176{bottom:493.049676px;}
.y15_c00176{bottom:523.289563px;}
.y14_c00176{bottom:553.349149px;}
.y13_c00176{bottom:583.589037px;}
.y12_c00176{bottom:613.739649px;}
.y11_c00176{bottom:643.979536px;}
.y10_c00176{bottom:674.130149px;}
.yf_c00176{bottom:704.370036px;}
.ye_c00176{bottom:741.809730px;}
.yd_c00176{bottom:779.338925px;}
.yc_c00176{bottom:809.578812px;}
.yb_c00176{bottom:839.729424px;}
.ya_c00176{bottom:869.880036px;}
.y9_c00176{bottom:907.410756px;}
.y8_c00176{bottom:944.850148px;}
.y7_c00176{bottom:975.090036px;}
.y6_c00176{bottom:1012.529730px;}
.y5_c00176{bottom:1050.060553px;}
.y4_c00176{bottom:1080.300441px;}
.y3_c00176{bottom:1110.451053px;}
.h7_c00176{height:39.338549px;}
.h8_c00176{height:54.098549px;}
.h2_c00176{height:62.600889px;}
.h1_c00176{height:62.771836px;}
.h6_c00176{height:62.779342px;}
.h3_c00176{height:74.142050px;}
.h4_c00176{height:74.143670px;}
.h5_c00176{height:74.148566px;}
.h0_c00176{height:1263.000000px;}
.w0_c00176{width:892.500000px;}
.x0_c00176{left:0.000000px;}
.x2_c00176{left:82.710059px;}
.x1_c00176{left:431.730000px;}
@media print{
.v2_c00176{vertical-align:-13.120000pt;}
.v0_c00176{vertical-align:0.000000pt;}
.v1_c00176{vertical-align:28.799632pt;}
.ls18_c00176{letter-spacing:-0.524898pt;}
.ls16_c00176{letter-spacing:-0.306624pt;}
.ls1b_c00176{letter-spacing:-0.259851pt;}
.ls13_c00176{letter-spacing:-0.228669pt;}
.ls1c_c00176{letter-spacing:-0.155910pt;}
.ls1d_c00176{letter-spacing:-0.114334pt;}
.ls15_c00176{letter-spacing:-0.098743pt;}
.ls19_c00176{letter-spacing:-0.083152pt;}
.ls17_c00176{letter-spacing:-0.077955pt;}
.ls12_c00176{letter-spacing:-0.067217pt;}
.lsf_c00176{letter-spacing:-0.062240pt;}
.ls8_c00176{letter-spacing:-0.056016pt;}
.ls10_c00176{letter-spacing:-0.049792pt;}
.lsb_c00176{letter-spacing:-0.043568pt;}
.ls1a_c00176{letter-spacing:-0.031182pt;}
.lsd_c00176{letter-spacing:-0.031120pt;}
.lse_c00176{letter-spacing:-0.024896pt;}
.ls14_c00176{letter-spacing:-0.020788pt;}
.ls11_c00176{letter-spacing:-0.018672pt;}
.lsa_c00176{letter-spacing:-0.012448pt;}
.lsc_c00176{letter-spacing:-0.006224pt;}
.ls9_c00176{letter-spacing:0.000000pt;}
.ls7_c00176{letter-spacing:0.005197pt;}
.ls2_c00176{letter-spacing:0.006224pt;}
.ls4_c00176{letter-spacing:0.018672pt;}
.ls1_c00176{letter-spacing:0.020694pt;}
.ls6_c00176{letter-spacing:0.088349pt;}
.ls3_c00176{letter-spacing:0.124480pt;}
.ls0_c00176{letter-spacing:0.297472pt;}
.ls5_c00176{letter-spacing:0.322215pt;}
.ws4_c00176{word-spacing:-51.970133pt;}
.ws1_c00176{word-spacing:-17.427200pt;}
.ws5_c00176{word-spacing:-14.395727pt;}
.ws3_c00176{word-spacing:-14.317772pt;}
.ws0_c00176{word-spacing:-11.526781pt;}
.ws2_c00176{word-spacing:-9.242347pt;}
.ws26_c00176{word-spacing:-0.306624pt;}
.wsc_c00176{word-spacing:-0.018672pt;}
.ws6_c00176{word-spacing:0.000000pt;}
.ws19_c00176{word-spacing:0.006224pt;}
.wsd_c00176{word-spacing:0.018672pt;}
.ws9_c00176{word-spacing:0.024896pt;}
.ws20_c00176{word-spacing:0.041576pt;}
.ws21_c00176{word-spacing:0.046773pt;}
.ws15_c00176{word-spacing:0.311200pt;}
.ws1d_c00176{word-spacing:0.535292pt;}
.wse_c00176{word-spacing:4.493728pt;}
.wsf_c00176{word-spacing:4.531072pt;}
.ws24_c00176{word-spacing:5.566001pt;}
.ws23_c00176{word-spacing:5.607577pt;}
.ws25_c00176{word-spacing:5.680336pt;}
.ws22_c00176{word-spacing:5.711518pt;}
.ws1b_c00176{word-spacing:6.750920pt;}
.ws1c_c00176{word-spacing:6.828876pt;}
.ws1a_c00176{word-spacing:6.958801pt;}
.ws8_c00176{word-spacing:7.070464pt;}
.ws17_c00176{word-spacing:8.333936pt;}
.ws13_c00176{word-spacing:8.651360pt;}
.ws11_c00176{word-spacing:8.999904pt;}
.ws12_c00176{word-spacing:9.279984pt;}
.ws1f_c00176{word-spacing:10.482376pt;}
.ws1e_c00176{word-spacing:10.653877pt;}
.ws16_c00176{word-spacing:12.155472pt;}
.wsb_c00176{word-spacing:12.466672pt;}
.wsa_c00176{word-spacing:12.796544pt;}
.ws10_c00176{word-spacing:13.425168pt;}
.ws14_c00176{word-spacing:16.008128pt;}
.ws7_c00176{word-spacing:17.601472pt;}
.ws18_c00176{word-spacing:23.010128pt;}
._3_c00176{margin-left:-2.405904pt;}
._0_c00176{margin-left:-1.095424pt;}
._1_c00176{width:0.952272pt;}
._2_c00176{width:5.271728pt;}
.fs2_c00176{font-size:33.608533pt;}
.fs1_c00176{font-size:41.388800pt;}
.fs3_c00176{font-size:51.970133pt;}
.fs0_c00176{font-size:62.240000pt;}
.y0_c00176{bottom:0.000000pt;}
.y2_c00176{bottom:97.547527pt;}
.y1_c00176{bottom:115.387067pt;}
.y21_c00176{bottom:132.826570pt;}
.y20_c00176{bottom:151.947067pt;}
.y1f_c00176{bottom:164.666570pt;}
.y1e_c00176{bottom:183.787067pt;}
.y1d_c00176{bottom:196.506570pt;}
.y1c_c00176{bottom:215.627067pt;}
.y1b_c00176{bottom:228.665399pt;}
.y1a_c00176{bottom:330.905491pt;}
.y19_c00176{bottom:357.785391pt;}
.y18_c00176{bottom:384.585935pt;}
.y17_c00176{bottom:411.465835pt;}
.y16_c00176{bottom:438.266379pt;}
.y15_c00176{bottom:465.146279pt;}
.y14_c00176{bottom:491.865911pt;}
.y13_c00176{bottom:518.745811pt;}
.y12_c00176{bottom:545.546355pt;}
.y11_c00176{bottom:572.426255pt;}
.y10_c00176{bottom:599.226799pt;}
.yf_c00176{bottom:626.106699pt;}
.ye_c00176{bottom:659.386427pt;}
.yd_c00176{bottom:692.745711pt;}
.yc_c00176{bottom:719.625611pt;}
.yb_c00176{bottom:746.426155pt;}
.ya_c00176{bottom:773.226699pt;}
.y9_c00176{bottom:806.587339pt;}
.y8_c00176{bottom:839.866799pt;}
.y7_c00176{bottom:866.746699pt;}
.y6_c00176{bottom:900.026427pt;}
.y5_c00176{bottom:933.387159pt;}
.y4_c00176{bottom:960.267059pt;}
.y3_c00176{bottom:987.067603pt;}
.h7_c00176{height:34.967599pt;}
.h8_c00176{height:48.087599pt;}
.h2_c00176{height:55.645234pt;}
.h1_c00176{height:55.797187pt;}
.h6_c00176{height:55.803859pt;}
.h3_c00176{height:65.904044pt;}
.h4_c00176{height:65.905485pt;}
.h5_c00176{height:65.909836pt;}
.h0_c00176{height:1122.666667pt;}
.w0_c00176{width:793.333333pt;}
.x0_c00176{left:0.000000pt;}
.x2_c00176{left:73.520052pt;}
.x1_c00176{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ecd3cb2e5cbee84b8aff57cb.woff2')format("woff");}.ff1_c00177{font-family:ff1_c00177;line-height:1.106934;font-style:normal;font-weight:normal;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_b1bc7a673c5962295cdbc61e.woff2')format("woff");}.ff2_c00177{font-family:ff2_c00177;line-height:1.104492;font-style:normal;font-weight:normal;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_f906499d690a56d09496a1cd.woff2')format("woff");}.ff3_c00177{font-family:ff3_c00177;line-height:1.133301;font-style:normal;font-weight:normal;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_5553013a622534c31cb74d0c.woff2')format("woff");}.ff4_c00177{font-family:ff4_c00177;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00177;src:url('chunks/assets/font_2f2d138ff74aef5136b3b86e.woff2')format("woff");}.ff5_c00177{font-family:ff5_c00177;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00177;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff6_c00177{font-family:ff6_c00177;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00177{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00177{vertical-align:-14.760000px;}
.v0_c00177{vertical-align:0.000000px;}
.v1_c00177{vertical-align:32.399586px;}
.ls1d_c00177{letter-spacing:-0.707443px;}
.ls14_c00177{letter-spacing:-0.344952px;}
.ls19_c00177{letter-spacing:-0.233866px;}
.ls13_c00177{letter-spacing:-0.216326px;}
.ls1c_c00177{letter-spacing:-0.169553px;}
.ls12_c00177{letter-spacing:-0.093546px;}
.ls16_c00177{letter-spacing:-0.081853px;}
.ls1a_c00177{letter-spacing:-0.076006px;}
.ls11_c00177{letter-spacing:-0.075619px;}
.ls8_c00177{letter-spacing:-0.063018px;}
.ls10_c00177{letter-spacing:-0.049014px;}
.ls17_c00177{letter-spacing:-0.046773px;}
.ls18_c00177{letter-spacing:-0.035080px;}
.lsb_c00177{letter-spacing:-0.035010px;}
.lsf_c00177{letter-spacing:-0.028008px;}
.lsd_c00177{letter-spacing:-0.021006px;}
.ls15_c00177{letter-spacing:-0.017540px;}
.lse_c00177{letter-spacing:-0.014004px;}
.lsa_c00177{letter-spacing:-0.007002px;}
.ls9_c00177{letter-spacing:0.000000px;}
.ls1_c00177{letter-spacing:0.007002px;}
.ls5_c00177{letter-spacing:0.017540px;}
.ls3_c00177{letter-spacing:0.021006px;}
.ls0_c00177{letter-spacing:0.023281px;}
.ls2_c00177{letter-spacing:0.028008px;}
.ls6_c00177{letter-spacing:0.029233px;}
.ls7_c00177{letter-spacing:0.070160px;}
.lsc_c00177{letter-spacing:0.084024px;}
.ls1b_c00177{letter-spacing:0.344952px;}
.ls4_c00177{letter-spacing:0.362492px;}
.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;}
}
.ws3_c00177{word-spacing:-58.466400px;}
.ws0_c00177{word-spacing:-19.549584px;}
.ws4_c00177{word-spacing:-15.850241px;}
.ws1_c00177{word-spacing:-12.967628px;}
.ws2_c00177{word-spacing:-10.397640px;}
.ws11_c00177{word-spacing:-0.350100px;}
.ws2e_c00177{word-spacing:-0.344952px;}
.ws5_c00177{word-spacing:0.000000px;}
.ws17_c00177{word-spacing:0.007002px;}
.ws12_c00177{word-spacing:0.014004px;}
.ws23_c00177{word-spacing:0.029233px;}
.ws20_c00177{word-spacing:0.035010px;}
.ws26_c00177{word-spacing:0.046773px;}
.ws25_c00177{word-spacing:0.058466px;}
.ws24_c00177{word-spacing:0.093546px;}
.ws21_c00177{word-spacing:0.105240px;}
.ws22_c00177{word-spacing:0.228019px;}
.ws1a_c00177{word-spacing:0.315090px;}
.wsa_c00177{word-spacing:0.343098px;}
.ws7_c00177{word-spacing:0.742212px;}
.wsd_c00177{word-spacing:1.435410px;}
.ws2b_c00177{word-spacing:1.742299px;}
.ws2a_c00177{word-spacing:1.783225px;}
.ws29_c00177{word-spacing:1.794918px;}
.ws28_c00177{word-spacing:1.888465px;}
.ws1f_c00177{word-spacing:2.121606px;}
.ws16_c00177{word-spacing:2.163618px;}
.ws9_c00177{word-spacing:2.170620px;}
.ws2c_c00177{word-spacing:2.344503px;}
.ws27_c00177{word-spacing:2.408816px;}
.ws2d_c00177{word-spacing:2.519902px;}
.ws8_c00177{word-spacing:2.527722px;}
.ws15_c00177{word-spacing:3.977136px;}
.ws6_c00177{word-spacing:4.313232px;}
.ws10_c00177{word-spacing:4.341240px;}
.ws18_c00177{word-spacing:4.663332px;}
.ws19_c00177{word-spacing:4.677336px;}
.ws1d_c00177{word-spacing:13.303800px;}
.ws1e_c00177{word-spacing:13.681908px;}
.wse_c00177{word-spacing:16.909830px;}
.wsf_c00177{word-spacing:16.937838px;}
.ws13_c00177{word-spacing:19.416546px;}
.ws14_c00177{word-spacing:19.430550px;}
.ws1c_c00177{word-spacing:21.594168px;}
.ws1b_c00177{word-spacing:21.622176px;}
.wsc_c00177{word-spacing:24.485994px;}
.wsb_c00177{word-spacing:24.843096px;}
._2_c00177{margin-left:-21.601170px;}
._4_c00177{margin-left:-2.706300px;}
._1_c00177{margin-left:-1.239354px;}
._0_c00177{width:1.043298px;}
._3_c00177{width:5.930694px;}
.fc0_c00177{color:rgb(0,0,0);}
.fs2_c00177{font-size:37.809600px;}
.fs1_c00177{font-size:46.562400px;}
.fs3_c00177{font-size:58.466400px;}
.fs0_c00177{font-size:70.020000px;}
.y0_c00177{bottom:0.000000px;}
.y2_c00177{bottom:109.740968px;}
.y1_c00177{bottom:129.810450px;}
.y25_c00177{bottom:149.429891px;}
.y24_c00177{bottom:170.940450px;}
.y23_c00177{bottom:185.249891px;}
.y22_c00177{bottom:206.760450px;}
.y21_c00177{bottom:224.670450px;}
.y20_c00177{bottom:242.580450px;}
.y1f_c00177{bottom:257.249852px;}
.y1e_c00177{bottom:295.229563px;}
.y1d_c00177{bottom:325.469451px;}
.y1c_c00177{bottom:355.620063px;}
.y1b_c00177{bottom:385.859950px;}
.y1a_c00177{bottom:416.010562px;}
.y19_c00177{bottom:446.248366px;}
.y18_c00177{bottom:476.398978px;}
.y17_c00177{bottom:506.638866px;}
.y16_c00177{bottom:536.789478px;}
.y15_c00177{bottom:567.029365px;}
.y14_c00177{bottom:597.088951px;}
.y13_c00177{bottom:627.328839px;}
.y12_c00177{bottom:657.479451px;}
.y11_c00177{bottom:687.719338px;}
.y10_c00177{bottom:717.869950px;}
.yf_c00177{bottom:748.109838px;}
.ye_c00177{bottom:778.258564px;}
.yd_c00177{bottom:808.498452px;}
.yc_c00177{bottom:838.649064px;}
.yb_c00177{bottom:868.888951px;}
.ya_c00177{bottom:899.039563px;}
.y9_c00177{bottom:929.279451px;}
.y8_c00177{bottom:959.519339px;}
.y7_c00177{bottom:989.669950px;}
.y6_c00177{bottom:1019.909838px;}
.y5_c00177{bottom:1050.060553px;}
.y4_c00177{bottom:1080.300441px;}
.y3_c00177{bottom:1110.451053px;}
.h8_c00177{height:39.338549px;}
.h9_c00177{height:39.698549px;}
.ha_c00177{height:54.098549px;}
.h2_c00177{height:62.600889px;}
.h1_c00177{height:62.771836px;}
.h7_c00177{height:62.774230px;}
.h5_c00177{height:73.677120px;}
.h3_c00177{height:74.028372px;}
.h6_c00177{height:74.032332px;}
.h4_c00177{height:74.036928px;}
.h0_c00177{height:1263.000000px;}
.w0_c00177{width:892.500000px;}
.x0_c00177{left:0.000000px;}
.x2_c00177{left:82.710059px;}
.x1_c00177{left:431.730000px;}
@media print{
.v2_c00177{vertical-align:-13.120000pt;}
.v0_c00177{vertical-align:0.000000pt;}
.v1_c00177{vertical-align:28.799632pt;}
.ls1d_c00177{letter-spacing:-0.628839pt;}
.ls14_c00177{letter-spacing:-0.306624pt;}
.ls19_c00177{letter-spacing:-0.207881pt;}
.ls13_c00177{letter-spacing:-0.192289pt;}
.ls1c_c00177{letter-spacing:-0.150713pt;}
.ls12_c00177{letter-spacing:-0.083152pt;}
.ls16_c00177{letter-spacing:-0.072758pt;}
.ls1a_c00177{letter-spacing:-0.067561pt;}
.ls11_c00177{letter-spacing:-0.067217pt;}
.ls8_c00177{letter-spacing:-0.056016pt;}
.ls10_c00177{letter-spacing:-0.043568pt;}
.ls17_c00177{letter-spacing:-0.041576pt;}
.ls18_c00177{letter-spacing:-0.031182pt;}
.lsb_c00177{letter-spacing:-0.031120pt;}
.lsf_c00177{letter-spacing:-0.024896pt;}
.lsd_c00177{letter-spacing:-0.018672pt;}
.ls15_c00177{letter-spacing:-0.015591pt;}
.lse_c00177{letter-spacing:-0.012448pt;}
.lsa_c00177{letter-spacing:-0.006224pt;}
.ls9_c00177{letter-spacing:0.000000pt;}
.ls1_c00177{letter-spacing:0.006224pt;}
.ls5_c00177{letter-spacing:0.015591pt;}
.ls3_c00177{letter-spacing:0.018672pt;}
.ls0_c00177{letter-spacing:0.020694pt;}
.ls2_c00177{letter-spacing:0.024896pt;}
.ls6_c00177{letter-spacing:0.025985pt;}
.ls7_c00177{letter-spacing:0.062364pt;}
.lsc_c00177{letter-spacing:0.074688pt;}
.ls1b_c00177{letter-spacing:0.306624pt;}
.ls4_c00177{letter-spacing:0.322215pt;}
.ws3_c00177{word-spacing:-51.970133pt;}
.ws0_c00177{word-spacing:-17.377408pt;}
.ws4_c00177{word-spacing:-14.089103pt;}
.ws1_c00177{word-spacing:-11.526781pt;}
.ws2_c00177{word-spacing:-9.242347pt;}
.ws11_c00177{word-spacing:-0.311200pt;}
.ws2e_c00177{word-spacing:-0.306624pt;}
.ws5_c00177{word-spacing:0.000000pt;}
.ws17_c00177{word-spacing:0.006224pt;}
.ws12_c00177{word-spacing:0.012448pt;}
.ws23_c00177{word-spacing:0.025985pt;}
.ws20_c00177{word-spacing:0.031120pt;}
.ws26_c00177{word-spacing:0.041576pt;}
.ws25_c00177{word-spacing:0.051970pt;}
.ws24_c00177{word-spacing:0.083152pt;}
.ws21_c00177{word-spacing:0.093546pt;}
.ws22_c00177{word-spacing:0.202684pt;}
.ws1a_c00177{word-spacing:0.280080pt;}
.wsa_c00177{word-spacing:0.304976pt;}
.ws7_c00177{word-spacing:0.659744pt;}
.wsd_c00177{word-spacing:1.275920pt;}
.ws2b_c00177{word-spacing:1.548710pt;}
.ws2a_c00177{word-spacing:1.585089pt;}
.ws29_c00177{word-spacing:1.595483pt;}
.ws28_c00177{word-spacing:1.678635pt;}
.ws1f_c00177{word-spacing:1.885872pt;}
.ws16_c00177{word-spacing:1.923216pt;}
.ws9_c00177{word-spacing:1.929440pt;}
.ws2c_c00177{word-spacing:2.084002pt;}
.ws27_c00177{word-spacing:2.141169pt;}
.ws2d_c00177{word-spacing:2.239913pt;}
.ws8_c00177{word-spacing:2.246864pt;}
.ws15_c00177{word-spacing:3.535232pt;}
.ws6_c00177{word-spacing:3.833984pt;}
.ws10_c00177{word-spacing:3.858880pt;}
.ws18_c00177{word-spacing:4.145184pt;}
.ws19_c00177{word-spacing:4.157632pt;}
.ws1d_c00177{word-spacing:11.825600pt;}
.ws1e_c00177{word-spacing:12.161696pt;}
.wse_c00177{word-spacing:15.030960pt;}
.wsf_c00177{word-spacing:15.055856pt;}
.ws13_c00177{word-spacing:17.259152pt;}
.ws14_c00177{word-spacing:17.271600pt;}
.ws1c_c00177{word-spacing:19.194816pt;}
.ws1b_c00177{word-spacing:19.219712pt;}
.wsc_c00177{word-spacing:21.765328pt;}
.wsb_c00177{word-spacing:22.082752pt;}
._2_c00177{margin-left:-19.201040pt;}
._4_c00177{margin-left:-2.405600pt;}
._1_c00177{margin-left:-1.101648pt;}
._0_c00177{width:0.927376pt;}
._3_c00177{width:5.271728pt;}
.fs2_c00177{font-size:33.608533pt;}
.fs1_c00177{font-size:41.388800pt;}
.fs3_c00177{font-size:51.970133pt;}
.fs0_c00177{font-size:62.240000pt;}
.y0_c00177{bottom:0.000000pt;}
.y2_c00177{bottom:97.547527pt;}
.y1_c00177{bottom:115.387067pt;}
.y25_c00177{bottom:132.826570pt;}
.y24_c00177{bottom:151.947067pt;}
.y23_c00177{bottom:164.666570pt;}
.y22_c00177{bottom:183.787067pt;}
.y21_c00177{bottom:199.707067pt;}
.y20_c00177{bottom:215.627067pt;}
.y1f_c00177{bottom:228.666535pt;}
.y1e_c00177{bottom:262.426279pt;}
.y1d_c00177{bottom:289.306179pt;}
.y1c_c00177{bottom:316.106723pt;}
.y1b_c00177{bottom:342.986623pt;}
.y1a_c00177{bottom:369.787167pt;}
.y19_c00177{bottom:396.665215pt;}
.y18_c00177{bottom:423.465759pt;}
.y17_c00177{bottom:450.345659pt;}
.y16_c00177{bottom:477.146203pt;}
.y15_c00177{bottom:504.026103pt;}
.y14_c00177{bottom:530.745735pt;}
.y13_c00177{bottom:557.625635pt;}
.y12_c00177{bottom:584.426179pt;}
.y11_c00177{bottom:611.306079pt;}
.y10_c00177{bottom:638.106623pt;}
.yf_c00177{bottom:664.986523pt;}
.ye_c00177{bottom:691.785391pt;}
.yd_c00177{bottom:718.665291pt;}
.yc_c00177{bottom:745.465835pt;}
.yb_c00177{bottom:772.345735pt;}
.ya_c00177{bottom:799.146279pt;}
.y9_c00177{bottom:826.026179pt;}
.y8_c00177{bottom:852.906079pt;}
.y7_c00177{bottom:879.706623pt;}
.y6_c00177{bottom:906.586523pt;}
.y5_c00177{bottom:933.387159pt;}
.y4_c00177{bottom:960.267059pt;}
.y3_c00177{bottom:987.067603pt;}
.h8_c00177{height:34.967599pt;}
.h9_c00177{height:35.287599pt;}
.ha_c00177{height:48.087599pt;}
.h2_c00177{height:55.645234pt;}
.h1_c00177{height:55.797187pt;}
.h7_c00177{height:55.799315pt;}
.h5_c00177{height:65.490774pt;}
.h3_c00177{height:65.802998pt;}
.h6_c00177{height:65.806518pt;}
.h4_c00177{height:65.810603pt;}
.h0_c00177{height:1122.666667pt;}
.w0_c00177{width:793.333333pt;}
.x0_c00177{left:0.000000pt;}
.x2_c00177{left:73.520052pt;}
.x1_c00177{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_92d686fe3cbe527fde0b4c76.woff2')format("woff");}.ff1_c00178{font-family:ff1_c00178;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00178;src:url('chunks/assets/font_cd9c4e40002c978a46b7f69b.woff2')format("woff");}.ff2_c00178{font-family:ff2_c00178;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00178;src:url('chunks/assets/font_cbc7bcb11a27cf586a6328f0.woff2')format("woff");}.ff3_c00178{font-family:ff3_c00178;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00178;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff4_c00178{font-family:ff4_c00178;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00178;src:url('chunks/assets/font_42667e5bf38ce9f72abf993d.woff2')format("woff");}.ff5_c00178{font-family:ff5_c00178;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00178;src:url('chunks/assets/font_b1d6e41c4b54b71cfaf38793.woff2')format("woff");}.ff6_c00178{font-family:ff6_c00178;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00178{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00178{vertical-align:-14.760000px;}
.v0_c00178{vertical-align:0.000000px;}
.v1_c00178{vertical-align:32.044032px;}
.ls14_c00178{letter-spacing:-0.730830px;}
.ls17_c00178{letter-spacing:-0.415111px;}
.ls1c_c00178{letter-spacing:-0.228019px;}
.ls16_c00178{letter-spacing:-0.181246px;}
.ls13_c00178{letter-spacing:-0.134473px;}
.ls1a_c00178{letter-spacing:-0.116933px;}
.ls19_c00178{letter-spacing:-0.093546px;}
.ls18_c00178{letter-spacing:-0.087700px;}
.ls12_c00178{letter-spacing:-0.075619px;}
.ls8_c00178{letter-spacing:-0.063018px;}
.lsf_c00178{letter-spacing:-0.056016px;}
.lsc_c00178{letter-spacing:-0.049014px;}
.lse_c00178{letter-spacing:-0.035010px;}
.ls10_c00178{letter-spacing:-0.028008px;}
.ls1d_c00178{letter-spacing:-0.023387px;}
.lsb_c00178{letter-spacing:-0.021006px;}
.lsd_c00178{letter-spacing:-0.014004px;}
.lsa_c00178{letter-spacing:-0.007002px;}
.ls9_c00178{letter-spacing:0.000000px;}
.ls1e_c00178{letter-spacing:0.005847px;}
.ls0_c00178{letter-spacing:0.007002px;}
.ls3_c00178{letter-spacing:0.021006px;}
.ls1_c00178{letter-spacing:0.023281px;}
.ls2_c00178{letter-spacing:0.028008px;}
.ls4_c00178{letter-spacing:0.064313px;}
.ls7_c00178{letter-spacing:0.076006px;}
.ls11_c00178{letter-spacing:0.084024px;}
.ls1b_c00178{letter-spacing:0.333258px;}
.ls15_c00178{letter-spacing:0.344952px;}
.ls5_c00178{letter-spacing:0.362492px;}
.ls6_c00178{letter-spacing:0.385878px;}
.sc__c00178{text-shadow:none;}
.sc0_c00178{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00178{-webkit-text-stroke:0px transparent;}
.sc0_c00178{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00178{word-spacing:-58.466400px;}
.ws3_c00178{word-spacing:-16.107493px;}
.ws0_c00178{word-spacing:-12.967628px;}
.ws1_c00178{word-spacing:-10.397640px;}
.ws1e_c00178{word-spacing:-0.374185px;}
.ws25_c00178{word-spacing:-0.321565px;}
.ws24_c00178{word-spacing:-0.228019px;}
.ws1c_c00178{word-spacing:-0.052620px;}
.ws5_c00178{word-spacing:-0.007002px;}
.ws4_c00178{word-spacing:0.000000px;}
.ws28_c00178{word-spacing:0.005847px;}
.ws27_c00178{word-spacing:0.035080px;}
.ws23_c00178{word-spacing:0.105240px;}
.ws1d_c00178{word-spacing:0.146166px;}
.ws26_c00178{word-spacing:0.239712px;}
.ws7_c00178{word-spacing:0.350100px;}
.ws16_c00178{word-spacing:0.357102px;}
.ws8_c00178{word-spacing:0.364104px;}
.ws17_c00178{word-spacing:0.371106px;}
.ws13_c00178{word-spacing:0.378108px;}
.ws9_c00178{word-spacing:0.392112px;}
.ws1b_c00178{word-spacing:1.078308px;}
.ws11_c00178{word-spacing:4.642326px;}
.wsc_c00178{word-spacing:6.126750px;}
.wsf_c00178{word-spacing:6.798942px;}
.wse_c00178{word-spacing:6.840954px;}
.wsa_c00178{word-spacing:6.861960px;}
.ws12_c00178{word-spacing:7.604172px;}
.ws6_c00178{word-spacing:8.619462px;}
.wsb_c00178{word-spacing:10.089882px;}
.ws14_c00178{word-spacing:13.275792px;}
.ws15_c00178{word-spacing:13.646898px;}
.wsd_c00178{word-spacing:14.039010px;}
.ws10_c00178{word-spacing:14.410116px;}
.ws20_c00178{word-spacing:17.113115px;}
.ws21_c00178{word-spacing:17.346981px;}
.ws22_c00178{word-spacing:17.575000px;}
.ws1f_c00178{word-spacing:18.025191px;}
.ws18_c00178{word-spacing:23.407686px;}
.ws1a_c00178{word-spacing:31.319946px;}
.ws19_c00178{word-spacing:31.326948px;}
._3_c00178{margin-left:-2.709540px;}
._1_c00178{margin-left:-1.015290px;}
._0_c00178{width:1.169334px;}
._2_c00178{width:5.930694px;}
.fc0_c00178{color:rgb(0,0,0);}
.fs2_c00178{font-size:37.809600px;}
.fs1_c00178{font-size:46.562400px;}
.fs3_c00178{font-size:58.466400px;}
.fs0_c00178{font-size:70.020000px;}
.y0_c00178{bottom:0.000000px;}
.y2_c00178{bottom:109.740968px;}
.y1_c00178{bottom:129.810450px;}
.y24_c00178{bottom:153.120600px;}
.y23_c00178{bottom:167.250107px;}
.y22_c00178{bottom:188.940450px;}
.y21_c00178{bottom:206.760450px;}
.y20_c00178{bottom:221.429213px;}
.y1f_c00178{bottom:253.290063px;}
.y1e_c00178{bottom:283.529951px;}
.y1d_c00178{bottom:313.680563px;}
.y1c_c00178{bottom:343.918722px;}
.y1b_c00178{bottom:374.069334px;}
.y1a_c00178{bottom:404.309221px;}
.y19_c00178{bottom:434.459833px;}
.y18_c00178{bottom:470.549892px;}
.y17_c00178{bottom:500.789780px;}
.y16_c00178{bottom:536.790562px;}
.y15_c00178{bottom:567.028592px;}
.y14_c00178{bottom:597.088178px;}
.y13_c00178{bottom:627.328065px;}
.y12_c00178{bottom:657.478677px;}
.y11_c00178{bottom:687.718565px;}
.y10_c00178{bottom:717.869177px;}
.yf_c00178{bottom:748.109064px;}
.ye_c00178{bottom:778.259676px;}
.yd_c00178{bottom:808.499564px;}
.yc_c00178{bottom:838.650176px;}
.yb_c00178{bottom:868.890063px;}
.ya_c00178{bottom:899.040675px;}
.y9_c00178{bottom:929.280563px;}
.y8_c00178{bottom:959.519442px;}
.y7_c00178{bottom:989.670054px;}
.y6_c00178{bottom:1019.909942px;}
.y5_c00178{bottom:1050.060553px;}
.y4_c00178{bottom:1080.300441px;}
.y3_c00178{bottom:1110.451053px;}
.h9_c00178{height:39.337949px;}
.h7_c00178{height:39.338549px;}
.h8_c00178{height:54.098549px;}
.h2_c00178{height:62.600889px;}
.h1_c00178{height:62.771836px;}
.h6_c00178{height:62.776786px;}
.h3_c00178{height:73.672818px;}
.h4_c00178{height:73.676220px;}
.h5_c00178{height:73.789376px;}
.h0_c00178{height:1263.000000px;}
.w0_c00178{width:892.500000px;}
.x0_c00178{left:0.000000px;}
.x2_c00178{left:82.710059px;}
.x1_c00178{left:431.730000px;}
@media print{
.v2_c00178{vertical-align:-13.120000pt;}
.v0_c00178{vertical-align:0.000000pt;}
.v1_c00178{vertical-align:28.483584pt;}
.ls14_c00178{letter-spacing:-0.649627pt;}
.ls17_c00178{letter-spacing:-0.368988pt;}
.ls1c_c00178{letter-spacing:-0.202684pt;}
.ls16_c00178{letter-spacing:-0.161107pt;}
.ls13_c00178{letter-spacing:-0.119531pt;}
.ls1a_c00178{letter-spacing:-0.103940pt;}
.ls19_c00178{letter-spacing:-0.083152pt;}
.ls18_c00178{letter-spacing:-0.077955pt;}
.ls12_c00178{letter-spacing:-0.067217pt;}
.ls8_c00178{letter-spacing:-0.056016pt;}
.lsf_c00178{letter-spacing:-0.049792pt;}
.lsc_c00178{letter-spacing:-0.043568pt;}
.lse_c00178{letter-spacing:-0.031120pt;}
.ls10_c00178{letter-spacing:-0.024896pt;}
.ls1d_c00178{letter-spacing:-0.020788pt;}
.lsb_c00178{letter-spacing:-0.018672pt;}
.lsd_c00178{letter-spacing:-0.012448pt;}
.lsa_c00178{letter-spacing:-0.006224pt;}
.ls9_c00178{letter-spacing:0.000000pt;}
.ls1e_c00178{letter-spacing:0.005197pt;}
.ls0_c00178{letter-spacing:0.006224pt;}
.ls3_c00178{letter-spacing:0.018672pt;}
.ls1_c00178{letter-spacing:0.020694pt;}
.ls2_c00178{letter-spacing:0.024896pt;}
.ls4_c00178{letter-spacing:0.057167pt;}
.ls7_c00178{letter-spacing:0.067561pt;}
.ls11_c00178{letter-spacing:0.074688pt;}
.ls1b_c00178{letter-spacing:0.296230pt;}
.ls15_c00178{letter-spacing:0.306624pt;}
.ls5_c00178{letter-spacing:0.322215pt;}
.ls6_c00178{letter-spacing:0.343003pt;}
.ws2_c00178{word-spacing:-51.970133pt;}
.ws3_c00178{word-spacing:-14.317772pt;}
.ws0_c00178{word-spacing:-11.526781pt;}
.ws1_c00178{word-spacing:-9.242347pt;}
.ws1e_c00178{word-spacing:-0.332609pt;}
.ws25_c00178{word-spacing:-0.285836pt;}
.ws24_c00178{word-spacing:-0.202684pt;}
.ws1c_c00178{word-spacing:-0.046773pt;}
.ws5_c00178{word-spacing:-0.006224pt;}
.ws4_c00178{word-spacing:0.000000pt;}
.ws28_c00178{word-spacing:0.005197pt;}
.ws27_c00178{word-spacing:0.031182pt;}
.ws23_c00178{word-spacing:0.093546pt;}
.ws1d_c00178{word-spacing:0.129925pt;}
.ws26_c00178{word-spacing:0.213078pt;}
.ws7_c00178{word-spacing:0.311200pt;}
.ws16_c00178{word-spacing:0.317424pt;}
.ws8_c00178{word-spacing:0.323648pt;}
.ws17_c00178{word-spacing:0.329872pt;}
.ws13_c00178{word-spacing:0.336096pt;}
.ws9_c00178{word-spacing:0.348544pt;}
.ws1b_c00178{word-spacing:0.958496pt;}
.ws11_c00178{word-spacing:4.126512pt;}
.wsc_c00178{word-spacing:5.446000pt;}
.wsf_c00178{word-spacing:6.043504pt;}
.wse_c00178{word-spacing:6.080848pt;}
.wsa_c00178{word-spacing:6.099520pt;}
.ws12_c00178{word-spacing:6.759264pt;}
.ws6_c00178{word-spacing:7.661744pt;}
.wsb_c00178{word-spacing:8.968784pt;}
.ws14_c00178{word-spacing:11.800704pt;}
.ws15_c00178{word-spacing:12.130576pt;}
.wsd_c00178{word-spacing:12.479120pt;}
.ws10_c00178{word-spacing:12.808992pt;}
.ws20_c00178{word-spacing:15.211658pt;}
.ws21_c00178{word-spacing:15.419539pt;}
.ws22_c00178{word-spacing:15.622222pt;}
.ws1f_c00178{word-spacing:16.022392pt;}
.ws18_c00178{word-spacing:20.806832pt;}
.ws1a_c00178{word-spacing:27.839952pt;}
.ws19_c00178{word-spacing:27.846176pt;}
._3_c00178{margin-left:-2.408480pt;}
._1_c00178{margin-left:-0.902480pt;}
._0_c00178{width:1.039408pt;}
._2_c00178{width:5.271728pt;}
.fs2_c00178{font-size:33.608533pt;}
.fs1_c00178{font-size:41.388800pt;}
.fs3_c00178{font-size:51.970133pt;}
.fs0_c00178{font-size:62.240000pt;}
.y0_c00178{bottom:0.000000pt;}
.y2_c00178{bottom:97.547527pt;}
.y1_c00178{bottom:115.387067pt;}
.y24_c00178{bottom:136.107200pt;}
.y23_c00178{bottom:148.666762pt;}
.y22_c00178{bottom:167.947067pt;}
.y21_c00178{bottom:183.787067pt;}
.y20_c00178{bottom:196.825967pt;}
.y1f_c00178{bottom:225.146723pt;}
.y1e_c00178{bottom:252.026623pt;}
.y1d_c00178{bottom:278.827167pt;}
.y1c_c00178{bottom:305.705531pt;}
.y1b_c00178{bottom:332.506075pt;}
.y1a_c00178{bottom:359.385975pt;}
.y19_c00178{bottom:386.186519pt;}
.y18_c00178{bottom:418.266571pt;}
.y17_c00178{bottom:445.146471pt;}
.y16_c00178{bottom:477.147167pt;}
.y15_c00178{bottom:504.025415pt;}
.y14_c00178{bottom:530.745047pt;}
.y13_c00178{bottom:557.624947pt;}
.y12_c00178{bottom:584.425491pt;}
.y11_c00178{bottom:611.305391pt;}
.y10_c00178{bottom:638.105935pt;}
.yf_c00178{bottom:664.985835pt;}
.ye_c00178{bottom:691.786379pt;}
.yd_c00178{bottom:718.666279pt;}
.yc_c00178{bottom:745.466823pt;}
.yb_c00178{bottom:772.346723pt;}
.ya_c00178{bottom:799.147267pt;}
.y9_c00178{bottom:826.027167pt;}
.y8_c00178{bottom:852.906171pt;}
.y7_c00178{bottom:879.706715pt;}
.y6_c00178{bottom:906.586615pt;}
.y5_c00178{bottom:933.387159pt;}
.y4_c00178{bottom:960.267059pt;}
.y3_c00178{bottom:987.067603pt;}
.h9_c00178{height:34.967066pt;}
.h7_c00178{height:34.967599pt;}
.h8_c00178{height:48.087599pt;}
.h2_c00178{height:55.645234pt;}
.h1_c00178{height:55.797187pt;}
.h6_c00178{height:55.801587pt;}
.h3_c00178{height:65.486950pt;}
.h4_c00178{height:65.489974pt;}
.h5_c00178{height:65.590556pt;}
.h0_c00178{height:1122.666667pt;}
.w0_c00178{width:793.333333pt;}
.x0_c00178{left:0.000000pt;}
.x2_c00178{left:73.520052pt;}
.x1_c00178{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7e6affe714e788542795939c.woff2')format("woff");}.ff1_c00179{font-family:ff1_c00179;line-height:1.106934;font-style:normal;font-weight:normal;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_4202537eae1dbb02b7e93f78.woff2')format("woff");}.ff2_c00179{font-family:ff2_c00179;line-height:1.104492;font-style:normal;font-weight:normal;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_4d9717846dac35a4e6e35fba.woff2')format("woff");}.ff3_c00179{font-family:ff3_c00179;line-height:1.133301;font-style:normal;font-weight:normal;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_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff4_c00179{font-family:ff4_c00179;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00179;src:url('chunks/assets/font_d3a695400e57feb345e8b09b.woff2')format("woff");}.ff5_c00179{font-family:ff5_c00179;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00179;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff6_c00179{font-family:ff6_c00179;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00179{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00179{vertical-align:-14.760000px;}
.v0_c00179{vertical-align:0.000000px;}
.v1_c00179{vertical-align:32.042034px;}
.ls19_c00179{letter-spacing:-0.707443px;}
.ls11_c00179{letter-spacing:-0.380032px;}
.ls1a_c00179{letter-spacing:-0.304025px;}
.ls1d_c00179{letter-spacing:-0.268945px;}
.ls12_c00179{letter-spacing:-0.228019px;}
.ls18_c00179{letter-spacing:-0.216326px;}
.ls15_c00179{letter-spacing:-0.157859px;}
.ls17_c00179{letter-spacing:-0.116933px;}
.ls14_c00179{letter-spacing:-0.087700px;}
.lsf_c00179{letter-spacing:-0.075619px;}
.ls16_c00179{letter-spacing:-0.064313px;}
.ls6_c00179{letter-spacing:-0.063018px;}
.ls13_c00179{letter-spacing:-0.052620px;}
.lse_c00179{letter-spacing:-0.049014px;}
.lsb_c00179{letter-spacing:-0.042012px;}
.ls10_c00179{letter-spacing:-0.035080px;}
.ls8_c00179{letter-spacing:-0.035010px;}
.ls9_c00179{letter-spacing:-0.028008px;}
.lsa_c00179{letter-spacing:-0.021006px;}
.lsc_c00179{letter-spacing:-0.014004px;}
.lsd_c00179{letter-spacing:-0.007002px;}
.ls7_c00179{letter-spacing:0.000000px;}
.ls2_c00179{letter-spacing:0.007002px;}
.ls0_c00179{letter-spacing:0.014004px;}
.ls5_c00179{letter-spacing:0.021006px;}
.ls3_c00179{letter-spacing:0.023281px;}
.ls1c_c00179{letter-spacing:0.058466px;}
.ls1b_c00179{letter-spacing:0.081853px;}
.ls1_c00179{letter-spacing:0.539154px;}
.ls4_c00179{letter-spacing:13.653900px;}
.sc__c00179{text-shadow:none;}
.sc0_c00179{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00179{-webkit-text-stroke:0px transparent;}
.sc0_c00179{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00179{word-spacing:-58.466400px;}
.ws3_c00179{word-spacing:-15.815161px;}
.ws0_c00179{word-spacing:-12.967628px;}
.ws1_c00179{word-spacing:-10.397640px;}
.ws24_c00179{word-spacing:-0.187092px;}
.ws4_c00179{word-spacing:0.000000px;}
.wsf_c00179{word-spacing:0.021006px;}
.ws2d_c00179{word-spacing:0.035080px;}
.ws25_c00179{word-spacing:0.076006px;}
.ws26_c00179{word-spacing:0.128626px;}
.ws12_c00179{word-spacing:0.357102px;}
.ws27_c00179{word-spacing:0.590511px;}
.ws28_c00179{word-spacing:0.719137px;}
.wsa_c00179{word-spacing:0.749214px;}
.ws11_c00179{word-spacing:1.057302px;}
.ws9_c00179{word-spacing:1.085310px;}
.ws1e_c00179{word-spacing:1.435410px;}
.ws1d_c00179{word-spacing:1.477422px;}
.ws17_c00179{word-spacing:3.269934px;}
.ws14_c00179{word-spacing:3.963132px;}
.ws15_c00179{word-spacing:4.649328px;}
.ws16_c00179{word-spacing:4.698342px;}
.ws6_c00179{word-spacing:7.534152px;}
.ws5_c00179{word-spacing:7.583166px;}
.ws1b_c00179{word-spacing:7.884252px;}
.ws1c_c00179{word-spacing:7.912260px;}
.wse_c00179{word-spacing:8.612460px;}
.ws2c_c00179{word-spacing:9.284464px;}
.ws21_c00179{word-spacing:10.506412px;}
.ws22_c00179{word-spacing:10.541492px;}
.ws23_c00179{word-spacing:10.681811px;}
.ws19_c00179{word-spacing:12.211488px;}
.ws1a_c00179{word-spacing:12.267504px;}
.ws10_c00179{word-spacing:13.310802px;}
.wsb_c00179{word-spacing:13.660902px;}
.wsc_c00179{word-spacing:13.667904px;}
.ws2b_c00179{word-spacing:13.996856px;}
.ws2a_c00179{word-spacing:15.774235px;}
.ws29_c00179{word-spacing:15.797621px;}
.ws18_c00179{word-spacing:16.230636px;}
.ws13_c00179{word-spacing:25.564302px;}
.ws8_c00179{word-spacing:28.449126px;}
.ws7_c00179{word-spacing:28.456128px;}
.ws1f_c00179{word-spacing:29.928950px;}
.ws20_c00179{word-spacing:30.478534px;}
.wsd_c00179{word-spacing:70.937262px;}
._2_c00179{margin-left:-70.594164px;}
._4_c00179{margin-left:-2.712204px;}
._1_c00179{margin-left:-1.243703px;}
._0_c00179{width:1.253358px;}
._3_c00179{width:5.930694px;}
.fc0_c00179{color:rgb(0,0,0);}
.fs2_c00179{font-size:37.809600px;}
.fs1_c00179{font-size:46.562400px;}
.fs3_c00179{font-size:58.466400px;}
.fs0_c00179{font-size:70.020000px;}
.y0_c00179{bottom:0.000000px;}
.y2_c00179{bottom:109.740968px;}
.y1_c00179{bottom:129.810450px;}
.y22_c00179{bottom:149.428990px;}
.y21_c00179{bottom:167.249548px;}
.y20_c00179{bottom:185.249891px;}
.y1f_c00179{bottom:206.760450px;}
.y1e_c00179{bottom:221.069333px;}
.y1d_c00179{bottom:238.889891px;}
.y1c_c00179{bottom:260.400450px;}
.y1b_c00179{bottom:275.158610px;}
.y1a_c00179{bottom:416.009091px;}
.y19_c00179{bottom:446.248978px;}
.y18_c00179{bottom:476.399590px;}
.y17_c00179{bottom:506.639478px;}
.y16_c00179{bottom:536.790090px;}
.y15_c00179{bottom:567.029977px;}
.y14_c00179{bottom:597.089563px;}
.y13_c00179{bottom:627.329451px;}
.y12_c00179{bottom:657.480063px;}
.y11_c00179{bottom:687.719950px;}
.y10_c00179{bottom:717.870563px;}
.yf_c00179{bottom:748.108564px;}
.ye_c00179{bottom:778.259176px;}
.yd_c00179{bottom:808.499064px;}
.yc_c00179{bottom:838.649676px;}
.yb_c00179{bottom:868.889563px;}
.ya_c00179{bottom:899.040175px;}
.y9_c00179{bottom:929.280063px;}
.y8_c00179{bottom:959.519951px;}
.y7_c00179{bottom:989.670562px;}
.y6_c00179{bottom:1019.909942px;}
.y5_c00179{bottom:1050.060553px;}
.y4_c00179{bottom:1080.300441px;}
.y3_c00179{bottom:1110.451053px;}
.h6_c00179{height:39.338549px;}
.h7_c00179{height:54.098549px;}
.h2_c00179{height:62.600889px;}
.h1_c00179{height:62.771836px;}
.h5_c00179{height:62.779198px;}
.h3_c00179{height:73.670820px;}
.h4_c00179{height:73.790006px;}
.h0_c00179{height:1263.000000px;}
.w0_c00179{width:892.500000px;}
.x0_c00179{left:0.000000px;}
.x2_c00179{left:82.710059px;}
.x1_c00179{left:431.730000px;}
@media print{
.v2_c00179{vertical-align:-13.120000pt;}
.v0_c00179{vertical-align:0.000000pt;}
.v1_c00179{vertical-align:28.481808pt;}
.ls19_c00179{letter-spacing:-0.628839pt;}
.ls11_c00179{letter-spacing:-0.337806pt;}
.ls1a_c00179{letter-spacing:-0.270245pt;}
.ls1d_c00179{letter-spacing:-0.239063pt;}
.ls12_c00179{letter-spacing:-0.202684pt;}
.ls18_c00179{letter-spacing:-0.192289pt;}
.ls15_c00179{letter-spacing:-0.140319pt;}
.ls17_c00179{letter-spacing:-0.103940pt;}
.ls14_c00179{letter-spacing:-0.077955pt;}
.lsf_c00179{letter-spacing:-0.067217pt;}
.ls16_c00179{letter-spacing:-0.057167pt;}
.ls6_c00179{letter-spacing:-0.056016pt;}
.ls13_c00179{letter-spacing:-0.046773pt;}
.lse_c00179{letter-spacing:-0.043568pt;}
.lsb_c00179{letter-spacing:-0.037344pt;}
.ls10_c00179{letter-spacing:-0.031182pt;}
.ls8_c00179{letter-spacing:-0.031120pt;}
.ls9_c00179{letter-spacing:-0.024896pt;}
.lsa_c00179{letter-spacing:-0.018672pt;}
.lsc_c00179{letter-spacing:-0.012448pt;}
.lsd_c00179{letter-spacing:-0.006224pt;}
.ls7_c00179{letter-spacing:0.000000pt;}
.ls2_c00179{letter-spacing:0.006224pt;}
.ls0_c00179{letter-spacing:0.012448pt;}
.ls5_c00179{letter-spacing:0.018672pt;}
.ls3_c00179{letter-spacing:0.020694pt;}
.ls1c_c00179{letter-spacing:0.051970pt;}
.ls1b_c00179{letter-spacing:0.072758pt;}
.ls1_c00179{letter-spacing:0.479248pt;}
.ls4_c00179{letter-spacing:12.136800pt;}
.ws2_c00179{word-spacing:-51.970133pt;}
.ws3_c00179{word-spacing:-14.057921pt;}
.ws0_c00179{word-spacing:-11.526781pt;}
.ws1_c00179{word-spacing:-9.242347pt;}
.ws24_c00179{word-spacing:-0.166304pt;}
.ws4_c00179{word-spacing:0.000000pt;}
.wsf_c00179{word-spacing:0.018672pt;}
.ws2d_c00179{word-spacing:0.031182pt;}
.ws25_c00179{word-spacing:0.067561pt;}
.ws26_c00179{word-spacing:0.114334pt;}
.ws12_c00179{word-spacing:0.317424pt;}
.ws27_c00179{word-spacing:0.524898pt;}
.ws28_c00179{word-spacing:0.639233pt;}
.wsa_c00179{word-spacing:0.665968pt;}
.ws11_c00179{word-spacing:0.939824pt;}
.ws9_c00179{word-spacing:0.964720pt;}
.ws1e_c00179{word-spacing:1.275920pt;}
.ws1d_c00179{word-spacing:1.313264pt;}
.ws17_c00179{word-spacing:2.906608pt;}
.ws14_c00179{word-spacing:3.522784pt;}
.ws15_c00179{word-spacing:4.132736pt;}
.ws16_c00179{word-spacing:4.176304pt;}
.ws6_c00179{word-spacing:6.697024pt;}
.ws5_c00179{word-spacing:6.740592pt;}
.ws1b_c00179{word-spacing:7.008224pt;}
.ws1c_c00179{word-spacing:7.033120pt;}
.wse_c00179{word-spacing:7.655520pt;}
.ws2c_c00179{word-spacing:8.252857pt;}
.ws21_c00179{word-spacing:9.339033pt;}
.ws22_c00179{word-spacing:9.370215pt;}
.ws23_c00179{word-spacing:9.494943pt;}
.ws19_c00179{word-spacing:10.854656pt;}
.ws1a_c00179{word-spacing:10.904448pt;}
.ws10_c00179{word-spacing:11.831824pt;}
.wsb_c00179{word-spacing:12.143024pt;}
.wsc_c00179{word-spacing:12.149248pt;}
.ws2b_c00179{word-spacing:12.441650pt;}
.ws2a_c00179{word-spacing:14.021542pt;}
.ws29_c00179{word-spacing:14.042330pt;}
.ws18_c00179{word-spacing:14.427232pt;}
.ws13_c00179{word-spacing:22.723824pt;}
.ws8_c00179{word-spacing:25.288112pt;}
.ws7_c00179{word-spacing:25.294336pt;}
.ws1f_c00179{word-spacing:26.603511pt;}
.ws20_c00179{word-spacing:27.092031pt;}
.wsd_c00179{word-spacing:63.055344pt;}
._2_c00179{margin-left:-62.750368pt;}
._4_c00179{margin-left:-2.410848pt;}
._1_c00179{margin-left:-1.105514pt;}
._0_c00179{width:1.114096pt;}
._3_c00179{width:5.271728pt;}
.fs2_c00179{font-size:33.608533pt;}
.fs1_c00179{font-size:41.388800pt;}
.fs3_c00179{font-size:51.970133pt;}
.fs0_c00179{font-size:62.240000pt;}
.y0_c00179{bottom:0.000000pt;}
.y2_c00179{bottom:97.547527pt;}
.y1_c00179{bottom:115.387067pt;}
.y22_c00179{bottom:132.825769pt;}
.y21_c00179{bottom:148.666265pt;}
.y20_c00179{bottom:164.666570pt;}
.y1f_c00179{bottom:183.787067pt;}
.y1e_c00179{bottom:196.506073pt;}
.y1d_c00179{bottom:212.346570pt;}
.y1c_c00179{bottom:231.467067pt;}
.y1b_c00179{bottom:244.585431pt;}
.y1a_c00179{bottom:369.785859pt;}
.y19_c00179{bottom:396.665759pt;}
.y18_c00179{bottom:423.466303pt;}
.y17_c00179{bottom:450.346203pt;}
.y16_c00179{bottom:477.146747pt;}
.y15_c00179{bottom:504.026647pt;}
.y14_c00179{bottom:530.746279pt;}
.y13_c00179{bottom:557.626179pt;}
.y12_c00179{bottom:584.426723pt;}
.y11_c00179{bottom:611.306623pt;}
.y10_c00179{bottom:638.107167pt;}
.yf_c00179{bottom:664.985391pt;}
.ye_c00179{bottom:691.785935pt;}
.yd_c00179{bottom:718.665835pt;}
.yc_c00179{bottom:745.466379pt;}
.yb_c00179{bottom:772.346279pt;}
.ya_c00179{bottom:799.146823pt;}
.y9_c00179{bottom:826.026723pt;}
.y8_c00179{bottom:852.906623pt;}
.y7_c00179{bottom:879.707167pt;}
.y6_c00179{bottom:906.586615pt;}
.y5_c00179{bottom:933.387159pt;}
.y4_c00179{bottom:960.267059pt;}
.y3_c00179{bottom:987.067603pt;}
.h6_c00179{height:34.967599pt;}
.h7_c00179{height:48.087599pt;}
.h2_c00179{height:55.645234pt;}
.h1_c00179{height:55.797187pt;}
.h5_c00179{height:55.803731pt;}
.h3_c00179{height:65.485174pt;}
.h4_c00179{height:65.591116pt;}
.h0_c00179{height:1122.666667pt;}
.w0_c00179{width:793.333333pt;}
.x0_c00179{left:0.000000pt;}
.x2_c00179{left:73.520052pt;}
.x1_c00179{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3420a19727c606d6bba0ff53.woff2')format("woff");}.ff1_c00180{font-family:ff1_c00180;line-height:1.106934;font-style:normal;font-weight:normal;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_3ff4e0dc7102d888d8bf042d.woff2')format("woff");}.ff2_c00180{font-family:ff2_c00180;line-height:1.104492;font-style:normal;font-weight:normal;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_4d5afe20e4f0ef209d8ce63a.woff2')format("woff");}.ff3_c00180{font-family:ff3_c00180;line-height:1.133301;font-style:normal;font-weight:normal;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_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff4_c00180{font-family:ff4_c00180;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00180;src:url('chunks/assets/font_04ffd031e1c793472dfa30e7.woff2')format("woff");}.ff5_c00180{font-family:ff5_c00180;line-height:1.133301;font-style:normal;font-weight:normal;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_2f2d138ff74aef5136b3b86e.woff2')format("woff");}.ff6_c00180{font-family:ff6_c00180;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00180{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00180{vertical-align:-14.759400px;}
.v0_c00180{vertical-align:0.000000px;}
.v1_c00180{vertical-align:32.040036px;}
.ls2f_c00180{letter-spacing:-0.707443px;}
.ls17_c00180{letter-spacing:-0.409265px;}
.ls34_c00180{letter-spacing:-0.374185px;}
.ls3b_c00180{letter-spacing:-0.344952px;}
.ls23_c00180{letter-spacing:-0.333258px;}
.ls39_c00180{letter-spacing:-0.309872px;}
.ls37_c00180{letter-spacing:-0.257252px;}
.ls29_c00180{letter-spacing:-0.192939px;}
.ls27_c00180{letter-spacing:-0.169553px;}
.ls33_c00180{letter-spacing:-0.146166px;}
.ls38_c00180{letter-spacing:-0.140319px;}
.ls20_c00180{letter-spacing:-0.134473px;}
.ls3a_c00180{letter-spacing:-0.122779px;}
.ls36_c00180{letter-spacing:-0.116933px;}
.ls26_c00180{letter-spacing:-0.105240px;}
.ls2b_c00180{letter-spacing:-0.099393px;}
.ls2c_c00180{letter-spacing:-0.093546px;}
.ls3c_c00180{letter-spacing:-0.087700px;}
.ls1d_c00180{letter-spacing:-0.081853px;}
.ls16_c00180{letter-spacing:-0.075619px;}
.ls2e_c00180{letter-spacing:-0.070160px;}
.ls31_c00180{letter-spacing:-0.064313px;}
.lsf_c00180{letter-spacing:-0.063018px;}
.ls1a_c00180{letter-spacing:-0.058466px;}
.ls30_c00180{letter-spacing:-0.052620px;}
.ls14_c00180{letter-spacing:-0.049014px;}
.ls13_c00180{letter-spacing:-0.042012px;}
.ls24_c00180{letter-spacing:-0.040926px;}
.ls11_c00180{letter-spacing:-0.035010px;}
.ls1c_c00180{letter-spacing:-0.029233px;}
.ls12_c00180{letter-spacing:-0.028008px;}
.ls2a_c00180{letter-spacing:-0.023387px;}
.ls1b_c00180{letter-spacing:-0.017540px;}
.ls15_c00180{letter-spacing:-0.014004px;}
.ls32_c00180{letter-spacing:-0.005847px;}
.ls10_c00180{letter-spacing:0.000000px;}
.lsc_c00180{letter-spacing:0.005847px;}
.ls0_c00180{letter-spacing:0.007002px;}
.ls4_c00180{letter-spacing:0.014004px;}
.ls5_c00180{letter-spacing:0.017540px;}
.ls3_c00180{letter-spacing:0.021006px;}
.ls1_c00180{letter-spacing:0.023281px;}
.lsa_c00180{letter-spacing:0.023387px;}
.ls6_c00180{letter-spacing:0.040926px;}
.ls2_c00180{letter-spacing:0.042012px;}
.lsb_c00180{letter-spacing:0.046773px;}
.ls9_c00180{letter-spacing:0.058466px;}
.ls21_c00180{letter-spacing:0.070160px;}
.ls25_c00180{letter-spacing:0.093546px;}
.ls28_c00180{letter-spacing:0.116933px;}
.ls2d_c00180{letter-spacing:0.128626px;}
.ls7_c00180{letter-spacing:0.152013px;}
.ls35_c00180{letter-spacing:0.228019px;}
.ls1e_c00180{letter-spacing:0.263099px;}
.ls1f_c00180{letter-spacing:0.286485px;}
.ls18_c00180{letter-spacing:0.344952px;}
.ls19_c00180{letter-spacing:0.350798px;}
.lsd_c00180{letter-spacing:0.362492px;}
.lse_c00180{letter-spacing:0.385878px;}
.ls22_c00180{letter-spacing:0.555431px;}
.ls8_c00180{letter-spacing:19.802570px;}
.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;}
}
.ws2_c00180{word-spacing:-58.466400px;}
.ws3_c00180{word-spacing:-16.218579px;}
.ws5_c00180{word-spacing:-16.195193px;}
.ws6_c00180{word-spacing:-16.107493px;}
.ws4_c00180{word-spacing:-15.821008px;}
.ws0_c00180{word-spacing:-12.967628px;}
.ws1_c00180{word-spacing:-10.397640px;}
.ws3e_c00180{word-spacing:-0.344952px;}
.ws3d_c00180{word-spacing:-0.280639px;}
.ws2c_c00180{word-spacing:-0.105240px;}
.ws15_c00180{word-spacing:-0.035010px;}
.ws16_c00180{word-spacing:-0.028008px;}
.ws7_c00180{word-spacing:0.000000px;}
.wsa_c00180{word-spacing:0.014004px;}
.ws38_c00180{word-spacing:0.017540px;}
.ws11_c00180{word-spacing:0.021006px;}
.ws37_c00180{word-spacing:0.076006px;}
.ws3f_c00180{word-spacing:0.134473px;}
.wsb_c00180{word-spacing:0.371106px;}
.ws2b_c00180{word-spacing:0.543738px;}
.wsd_c00180{word-spacing:2.506716px;}
.ws9_c00180{word-spacing:3.220920px;}
.ws8_c00180{word-spacing:3.262932px;}
.wse_c00180{word-spacing:3.627036px;}
.wsc_c00180{word-spacing:3.977136px;}
.wsf_c00180{word-spacing:3.984138px;}
.ws22_c00180{word-spacing:4.045875px;}
.ws23_c00180{word-spacing:4.110188px;}
.ws1c_c00180{word-spacing:5.063190px;}
.ws28_c00180{word-spacing:5.320442px;}
.ws19_c00180{word-spacing:5.355522px;}
.ws1a_c00180{word-spacing:5.396449px;}
.ws18_c00180{word-spacing:5.425682px;}
.ws27_c00180{word-spacing:5.454915px;}
.ws1b_c00180{word-spacing:6.086352px;}
.ws17_c00180{word-spacing:6.179898px;}
.ws29_c00180{word-spacing:6.425457px;}
.ws36_c00180{word-spacing:6.548237px;}
.ws2a_c00180{word-spacing:6.600857px;}
.ws12_c00180{word-spacing:6.826950px;}
.ws35_c00180{word-spacing:7.203060px;}
.ws43_c00180{word-spacing:7.524626px;}
.ws41_c00180{word-spacing:7.594785px;}
.ws44_c00180{word-spacing:7.694178px;}
.ws42_c00180{word-spacing:7.711718px;}
.ws40_c00180{word-spacing:7.828651px;}
.ws2d_c00180{word-spacing:9.325391px;}
.ws1d_c00180{word-spacing:9.331237px;}
.ws2e_c00180{word-spacing:9.395550px;}
.ws1f_c00180{word-spacing:9.582643px;}
.ws1e_c00180{word-spacing:9.752196px;}
.ws20_c00180{word-spacing:9.763889px;}
.ws21_c00180{word-spacing:9.816509px;}
.ws33_c00180{word-spacing:10.126380px;}
.ws32_c00180{word-spacing:10.132227px;}
.ws34_c00180{word-spacing:10.161460px;}
.ws31_c00180{word-spacing:11.406795px;}
.ws26_c00180{word-spacing:11.476954px;}
.ws30_c00180{word-spacing:11.628967px;}
.ws2f_c00180{word-spacing:11.634814px;}
.ws14_c00180{word-spacing:12.939696px;}
.ws13_c00180{word-spacing:15.516432px;}
.ws10_c00180{word-spacing:17.308944px;}
.ws25_c00180{word-spacing:19.258832px;}
.ws24_c00180{word-spacing:19.744103px;}
.ws39_c00180{word-spacing:21.761194px;}
.ws3a_c00180{word-spacing:21.807967px;}
.ws3b_c00180{word-spacing:23.421640px;}
.ws3c_c00180{word-spacing:23.544419px;}
._3_c00180{margin-left:-2.706120px;}
._1_c00180{margin-left:-1.666476px;}
._0_c00180{width:1.169334px;}
._2_c00180{width:5.930694px;}
._4_c00180{width:9.050593px;}
.fc0_c00180{color:rgb(0,0,0);}
.fs2_c00180{font-size:37.809600px;}
.fs1_c00180{font-size:46.562400px;}
.fs3_c00180{font-size:58.466400px;}
.fs0_c00180{font-size:70.020000px;}
.y0_c00180{bottom:0.000000px;}
.y2_c00180{bottom:109.740968px;}
.y1_c00180{bottom:129.810450px;}
.y29_c00180{bottom:149.429891px;}
.y28_c00180{bottom:170.940450px;}
.y27_c00180{bottom:185.249891px;}
.y26_c00180{bottom:206.760450px;}
.y25_c00180{bottom:224.039985px;}
.y24_c00180{bottom:244.830637px;}
.y23_c00180{bottom:269.310450px;}
.y22_c00180{bottom:289.377339px;}
.y21_c00180{bottom:307.287059px;}
.y20_c00180{bottom:325.196779px;}
.y1f_c00180{bottom:343.017338px;}
.y1e_c00180{bottom:361.017681px;}
.y1d_c00180{bottom:378.838239px;}
.y1c_c00180{bottom:396.568175px;}
.y1b_c00180{bottom:414.657679px;}
.y1a_c00180{bottom:432.478238px;}
.y19_c00180{bottom:450.298797px;}
.y18_c00180{bottom:468.299140px;}
.y17_c00180{bottom:486.119698px;}
.y16_c00180{bottom:504.120041px;}
.y15_c00180{bottom:525.630450px;}
.y14_c00180{bottom:540.300158px;}
.y13_c00180{bottom:580.708510px;}
.y12_c00180{bottom:610.768096px;}
.y11_c00180{bottom:648.298816px;}
.y10_c00180{bottom:685.829536px;}
.yf_c00180{bottom:716.069424px;}
.ye_c00180{bottom:746.220036px;}
.yd_c00180{bottom:783.659730px;}
.yc_c00180{bottom:821.190135px;}
.yb_c00180{bottom:851.340747px;}
.ya_c00180{bottom:881.580635px;}
.y9_c00180{bottom:917.670693px;}
.y8_c00180{bottom:953.580005px;}
.y7_c00180{bottom:983.819892px;}
.y6_c00180{bottom:1013.970504px;}
.y5_c00180{bottom:1050.060563px;}
.y4_c00180{bottom:1080.300441px;}
.y3_c00180{bottom:1110.451053px;}
.hb_c00180{height:39.338549px;}
.h8_c00180{height:39.339149px;}
.ha_c00180{height:39.698549px;}
.h9_c00180{height:54.098549px;}
.h2_c00180{height:62.600889px;}
.h1_c00180{height:62.771836px;}
.h7_c00180{height:62.773006px;}
.h3_c00180{height:73.668822px;}
.h5_c00180{height:73.670046px;}
.h6_c00180{height:73.676544px;}
.h4_c00180{height:74.030568px;}
.h0_c00180{height:1263.000000px;}
.w0_c00180{width:892.500000px;}
.x0_c00180{left:0.000000px;}
.x2_c00180{left:82.710059px;}
.x1_c00180{left:431.730000px;}
@media print{
.v2_c00180{vertical-align:-13.119467pt;}
.v0_c00180{vertical-align:0.000000pt;}
.v1_c00180{vertical-align:28.480032pt;}
.ls2f_c00180{letter-spacing:-0.628839pt;}
.ls17_c00180{letter-spacing:-0.363791pt;}
.ls34_c00180{letter-spacing:-0.332609pt;}
.ls3b_c00180{letter-spacing:-0.306624pt;}
.ls23_c00180{letter-spacing:-0.296230pt;}
.ls39_c00180{letter-spacing:-0.275442pt;}
.ls37_c00180{letter-spacing:-0.228669pt;}
.ls29_c00180{letter-spacing:-0.171501pt;}
.ls27_c00180{letter-spacing:-0.150713pt;}
.ls33_c00180{letter-spacing:-0.129925pt;}
.ls38_c00180{letter-spacing:-0.124728pt;}
.ls20_c00180{letter-spacing:-0.119531pt;}
.ls3a_c00180{letter-spacing:-0.109137pt;}
.ls36_c00180{letter-spacing:-0.103940pt;}
.ls26_c00180{letter-spacing:-0.093546pt;}
.ls2b_c00180{letter-spacing:-0.088349pt;}
.ls2c_c00180{letter-spacing:-0.083152pt;}
.ls3c_c00180{letter-spacing:-0.077955pt;}
.ls1d_c00180{letter-spacing:-0.072758pt;}
.ls16_c00180{letter-spacing:-0.067217pt;}
.ls2e_c00180{letter-spacing:-0.062364pt;}
.ls31_c00180{letter-spacing:-0.057167pt;}
.lsf_c00180{letter-spacing:-0.056016pt;}
.ls1a_c00180{letter-spacing:-0.051970pt;}
.ls30_c00180{letter-spacing:-0.046773pt;}
.ls14_c00180{letter-spacing:-0.043568pt;}
.ls13_c00180{letter-spacing:-0.037344pt;}
.ls24_c00180{letter-spacing:-0.036379pt;}
.ls11_c00180{letter-spacing:-0.031120pt;}
.ls1c_c00180{letter-spacing:-0.025985pt;}
.ls12_c00180{letter-spacing:-0.024896pt;}
.ls2a_c00180{letter-spacing:-0.020788pt;}
.ls1b_c00180{letter-spacing:-0.015591pt;}
.ls15_c00180{letter-spacing:-0.012448pt;}
.ls32_c00180{letter-spacing:-0.005197pt;}
.ls10_c00180{letter-spacing:0.000000pt;}
.lsc_c00180{letter-spacing:0.005197pt;}
.ls0_c00180{letter-spacing:0.006224pt;}
.ls4_c00180{letter-spacing:0.012448pt;}
.ls5_c00180{letter-spacing:0.015591pt;}
.ls3_c00180{letter-spacing:0.018672pt;}
.ls1_c00180{letter-spacing:0.020694pt;}
.lsa_c00180{letter-spacing:0.020788pt;}
.ls6_c00180{letter-spacing:0.036379pt;}
.ls2_c00180{letter-spacing:0.037344pt;}
.lsb_c00180{letter-spacing:0.041576pt;}
.ls9_c00180{letter-spacing:0.051970pt;}
.ls21_c00180{letter-spacing:0.062364pt;}
.ls25_c00180{letter-spacing:0.083152pt;}
.ls28_c00180{letter-spacing:0.103940pt;}
.ls2d_c00180{letter-spacing:0.114334pt;}
.ls7_c00180{letter-spacing:0.135122pt;}
.ls35_c00180{letter-spacing:0.202684pt;}
.ls1e_c00180{letter-spacing:0.233866pt;}
.ls1f_c00180{letter-spacing:0.254654pt;}
.ls18_c00180{letter-spacing:0.306624pt;}
.ls19_c00180{letter-spacing:0.311821pt;}
.lsd_c00180{letter-spacing:0.322215pt;}
.lse_c00180{letter-spacing:0.343003pt;}
.ls22_c00180{letter-spacing:0.493716pt;}
.ls8_c00180{letter-spacing:17.602284pt;}
.ws2_c00180{word-spacing:-51.970133pt;}
.ws3_c00180{word-spacing:-14.416515pt;}
.ws5_c00180{word-spacing:-14.395727pt;}
.ws6_c00180{word-spacing:-14.317772pt;}
.ws4_c00180{word-spacing:-14.063118pt;}
.ws0_c00180{word-spacing:-11.526781pt;}
.ws1_c00180{word-spacing:-9.242347pt;}
.ws3e_c00180{word-spacing:-0.306624pt;}
.ws3d_c00180{word-spacing:-0.249457pt;}
.ws2c_c00180{word-spacing:-0.093546pt;}
.ws15_c00180{word-spacing:-0.031120pt;}
.ws16_c00180{word-spacing:-0.024896pt;}
.ws7_c00180{word-spacing:0.000000pt;}
.wsa_c00180{word-spacing:0.012448pt;}
.ws38_c00180{word-spacing:0.015591pt;}
.ws11_c00180{word-spacing:0.018672pt;}
.ws37_c00180{word-spacing:0.067561pt;}
.ws3f_c00180{word-spacing:0.119531pt;}
.wsb_c00180{word-spacing:0.329872pt;}
.ws2b_c00180{word-spacing:0.483322pt;}
.wsd_c00180{word-spacing:2.228192pt;}
.ws9_c00180{word-spacing:2.863040pt;}
.ws8_c00180{word-spacing:2.900384pt;}
.wse_c00180{word-spacing:3.224032pt;}
.wsc_c00180{word-spacing:3.535232pt;}
.wsf_c00180{word-spacing:3.541456pt;}
.ws22_c00180{word-spacing:3.596333pt;}
.ws23_c00180{word-spacing:3.653500pt;}
.ws1c_c00180{word-spacing:4.500614pt;}
.ws28_c00180{word-spacing:4.729282pt;}
.ws19_c00180{word-spacing:4.760464pt;}
.ws1a_c00180{word-spacing:4.796843pt;}
.ws18_c00180{word-spacing:4.822828pt;}
.ws27_c00180{word-spacing:4.848813pt;}
.ws1b_c00180{word-spacing:5.410091pt;}
.ws17_c00180{word-spacing:5.493243pt;}
.ws29_c00180{word-spacing:5.711518pt;}
.ws36_c00180{word-spacing:5.820655pt;}
.ws2a_c00180{word-spacing:5.867428pt;}
.ws12_c00180{word-spacing:6.068400pt;}
.ws35_c00180{word-spacing:6.402720pt;}
.ws43_c00180{word-spacing:6.688556pt;}
.ws41_c00180{word-spacing:6.750920pt;}
.ws44_c00180{word-spacing:6.839270pt;}
.ws42_c00180{word-spacing:6.854861pt;}
.ws40_c00180{word-spacing:6.958801pt;}
.ws2d_c00180{word-spacing:8.289236pt;}
.ws1d_c00180{word-spacing:8.294433pt;}
.ws2e_c00180{word-spacing:8.351600pt;}
.ws1f_c00180{word-spacing:8.517905pt;}
.ws1e_c00180{word-spacing:8.668618pt;}
.ws20_c00180{word-spacing:8.679012pt;}
.ws21_c00180{word-spacing:8.725785pt;}
.ws33_c00180{word-spacing:9.001227pt;}
.ws32_c00180{word-spacing:9.006424pt;}
.ws34_c00180{word-spacing:9.032409pt;}
.ws31_c00180{word-spacing:10.139373pt;}
.ws26_c00180{word-spacing:10.201737pt;}
.ws30_c00180{word-spacing:10.336860pt;}
.ws2f_c00180{word-spacing:10.342057pt;}
.ws14_c00180{word-spacing:11.501952pt;}
.ws13_c00180{word-spacing:13.792384pt;}
.ws10_c00180{word-spacing:15.385728pt;}
.ws25_c00180{word-spacing:17.118962pt;}
.ws24_c00180{word-spacing:17.550314pt;}
.ws39_c00180{word-spacing:19.343284pt;}
.ws3a_c00180{word-spacing:19.384860pt;}
.ws3b_c00180{word-spacing:20.819235pt;}
.ws3c_c00180{word-spacing:20.928373pt;}
._3_c00180{margin-left:-2.405440pt;}
._1_c00180{margin-left:-1.481312pt;}
._0_c00180{width:1.039408pt;}
._2_c00180{width:5.271728pt;}
._4_c00180{width:8.044971pt;}
.fs2_c00180{font-size:33.608533pt;}
.fs1_c00180{font-size:41.388800pt;}
.fs3_c00180{font-size:51.970133pt;}
.fs0_c00180{font-size:62.240000pt;}
.y0_c00180{bottom:0.000000pt;}
.y2_c00180{bottom:97.547527pt;}
.y1_c00180{bottom:115.387067pt;}
.y29_c00180{bottom:132.826570pt;}
.y28_c00180{bottom:151.947067pt;}
.y27_c00180{bottom:164.666570pt;}
.y26_c00180{bottom:183.787067pt;}
.y25_c00180{bottom:199.146653pt;}
.y24_c00180{bottom:217.627233pt;}
.y23_c00180{bottom:239.387067pt;}
.y22_c00180{bottom:257.224301pt;}
.y21_c00180{bottom:273.144052pt;}
.y20_c00180{bottom:289.063804pt;}
.y1f_c00180{bottom:304.904300pt;}
.y1e_c00180{bottom:320.904605pt;}
.y1d_c00180{bottom:336.745102pt;}
.y1c_c00180{bottom:352.505045pt;}
.y1b_c00180{bottom:368.584604pt;}
.y1a_c00180{bottom:384.425100pt;}
.y19_c00180{bottom:400.265597pt;}
.y18_c00180{bottom:416.265902pt;}
.y17_c00180{bottom:432.106399pt;}
.y16_c00180{bottom:448.106703pt;}
.y15_c00180{bottom:467.227067pt;}
.y14_c00180{bottom:480.266807pt;}
.y13_c00180{bottom:516.185343pt;}
.y12_c00180{bottom:542.904975pt;}
.y11_c00180{bottom:576.265615pt;}
.y10_c00180{bottom:609.626255pt;}
.yf_c00180{bottom:636.506155pt;}
.ye_c00180{bottom:663.306699pt;}
.yd_c00180{bottom:696.586427pt;}
.yc_c00180{bottom:729.946787pt;}
.yb_c00180{bottom:756.747331pt;}
.ya_c00180{bottom:783.627231pt;}
.y9_c00180{bottom:815.707283pt;}
.y8_c00180{bottom:847.626671pt;}
.y7_c00180{bottom:874.506571pt;}
.y6_c00180{bottom:901.307115pt;}
.y5_c00180{bottom:933.387167pt;}
.y4_c00180{bottom:960.267059pt;}
.y3_c00180{bottom:987.067603pt;}
.hb_c00180{height:34.967599pt;}
.h8_c00180{height:34.968132pt;}
.ha_c00180{height:35.287599pt;}
.h9_c00180{height:48.087599pt;}
.h2_c00180{height:55.645234pt;}
.h1_c00180{height:55.797187pt;}
.h7_c00180{height:55.798227pt;}
.h3_c00180{height:65.483398pt;}
.h5_c00180{height:65.484486pt;}
.h6_c00180{height:65.490262pt;}
.h4_c00180{height:65.804950pt;}
.h0_c00180{height:1122.666667pt;}
.w0_c00180{width:793.333333pt;}
.x0_c00180{left:0.000000pt;}
.x2_c00180{left:73.520052pt;}
.x1_c00180{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ed5eb758a3625054eb5a670e.woff2')format("woff");}.ff1_c00181{font-family:ff1_c00181;line-height:1.106934;font-style:normal;font-weight:normal;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_34a153fa56c3bb8718baf093.woff2')format("woff");}.ff2_c00181{font-family:ff2_c00181;line-height:1.104492;font-style:normal;font-weight:normal;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_0b26d44a36323740dcecd041.woff2')format("woff");}.ff3_c00181{font-family:ff3_c00181;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00181;src:url('chunks/assets/font_83ef1862d09c1d8b61fb95f4.woff2')format("woff");}.ff4_c00181{font-family:ff4_c00181;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00181{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00181{vertical-align:0.000000px;}
.ls6_c00181{letter-spacing:-0.106360px;}
.ls1_c00181{letter-spacing:-0.063018px;}
.ls5_c00181{letter-spacing:-0.035010px;}
.ls3_c00181{letter-spacing:-0.021006px;}
.ls4_c00181{letter-spacing:-0.007002px;}
.ls2_c00181{letter-spacing:0.000000px;}
.ls0_c00181{letter-spacing:0.028008px;}
.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:0.000000px;}
.ws2_c00181{word-spacing:0.007002px;}
.ws5_c00181{word-spacing:0.113957px;}
.ws6_c00181{word-spacing:0.235511px;}
.ws4_c00181{word-spacing:0.378108px;}
.ws1_c00181{word-spacing:11.476278px;}
.ws3_c00181{word-spacing:13.310802px;}
._4_c00181{margin-left:-7.621566px;}
._0_c00181{margin-left:-1.022292px;}
._1_c00181{width:1.043298px;}
._3_c00181{width:5.930694px;}
._2_c00181{width:160.069250px;}
.fc0_c00181{color:rgb(0,0,0);}
.fs2_c00181{font-size:58.466400px;}
.fs0_c00181{font-size:70.020000px;}
.fs1_c00181{font-size:75.971400px;}
.y0_c00181{bottom:0.000000px;}
.y2_c00181{bottom:109.740968px;}
.y1_c00181{bottom:129.810450px;}
.y1f_c00181{bottom:149.430450px;}
.y1e_c00181{bottom:167.790113px;}
.y1d_c00181{bottom:287.130450px;}
.y1c_c00181{bottom:311.880450px;}
.y1b_c00181{bottom:361.014740px;}
.y1a_c00181{bottom:391.165352px;}
.y19_c00181{bottom:421.405239px;}
.y18_c00181{bottom:451.555851px;}
.y17_c00181{bottom:481.795739px;}
.y16_c00181{bottom:511.946350px;}
.y15_c00181{bottom:542.186238px;}
.y14_c00181{bottom:572.336850px;}
.y13_c00181{bottom:602.576738px;}
.y12_c00181{bottom:632.727350px;}
.y11_c00181{bottom:662.967237px;}
.y10_c00181{bottom:693.117849px;}
.yf_c00181{bottom:723.357736px;}
.ye_c00181{bottom:753.508349px;}
.yd_c00181{bottom:783.748236px;}
.yc_c00181{bottom:813.898848px;}
.yb_c00181{bottom:844.138735px;}
.ya_c00181{bottom:874.289347px;}
.y9_c00181{bottom:904.439959px;}
.y8_c00181{bottom:941.970679px;}
.y7_c00181{bottom:972.210567px;}
.y6_c00181{bottom:1008.120324px;}
.y5_c00181{bottom:1044.210382px;}
.y4_c00181{bottom:1074.360995px;}
.y3_c00181{bottom:1110.451053px;}
.h6_c00181{height:54.098549px;}
.h2_c00181{height:62.600889px;}
.h1_c00181{height:62.771836px;}
.h5_c00181{height:62.773786px;}
.h3_c00181{height:63.216299px;}
.h4_c00181{height:68.589413px;}
.h0_c00181{height:1263.000000px;}
.w0_c00181{width:892.500000px;}
.x0_c00181{left:0.000000px;}
.x2_c00181{left:82.710059px;}
.x3_c00181{left:94.319375px;}
.x1_c00181{left:431.730000px;}
@media print{
.v0_c00181{vertical-align:0.000000pt;}
.ls6_c00181{letter-spacing:-0.094542pt;}
.ls1_c00181{letter-spacing:-0.056016pt;}
.ls5_c00181{letter-spacing:-0.031120pt;}
.ls3_c00181{letter-spacing:-0.018672pt;}
.ls4_c00181{letter-spacing:-0.006224pt;}
.ls2_c00181{letter-spacing:0.000000pt;}
.ls0_c00181{letter-spacing:0.024896pt;}
.ws0_c00181{word-spacing:0.000000pt;}
.ws2_c00181{word-spacing:0.006224pt;}
.ws5_c00181{word-spacing:0.101295pt;}
.ws6_c00181{word-spacing:0.209343pt;}
.ws4_c00181{word-spacing:0.336096pt;}
.ws1_c00181{word-spacing:10.201136pt;}
.ws3_c00181{word-spacing:11.831824pt;}
._4_c00181{margin-left:-6.774725pt;}
._0_c00181{margin-left:-0.908704pt;}
._1_c00181{width:0.927376pt;}
._3_c00181{width:5.271728pt;}
._2_c00181{width:142.283778pt;}
.fs2_c00181{font-size:51.970133pt;}
.fs0_c00181{font-size:62.240000pt;}
.fs1_c00181{font-size:67.530133pt;}
.y0_c00181{bottom:0.000000pt;}
.y2_c00181{bottom:97.547527pt;}
.y1_c00181{bottom:115.387067pt;}
.y1f_c00181{bottom:132.827067pt;}
.y1e_c00181{bottom:149.146767pt;}
.y1d_c00181{bottom:255.227067pt;}
.y1c_c00181{bottom:277.227067pt;}
.y1b_c00181{bottom:320.901991pt;}
.y1a_c00181{bottom:347.702535pt;}
.y19_c00181{bottom:374.582435pt;}
.y18_c00181{bottom:401.382979pt;}
.y17_c00181{bottom:428.262879pt;}
.y16_c00181{bottom:455.063423pt;}
.y15_c00181{bottom:481.943323pt;}
.y14_c00181{bottom:508.743867pt;}
.y13_c00181{bottom:535.623767pt;}
.y12_c00181{bottom:562.424311pt;}
.y11_c00181{bottom:589.304211pt;}
.y10_c00181{bottom:616.104755pt;}
.yf_c00181{bottom:642.984655pt;}
.ye_c00181{bottom:669.785199pt;}
.yd_c00181{bottom:696.665099pt;}
.yc_c00181{bottom:723.465643pt;}
.yb_c00181{bottom:750.345543pt;}
.ya_c00181{bottom:777.146087pt;}
.y9_c00181{bottom:803.946631pt;}
.y8_c00181{bottom:837.307271pt;}
.y7_c00181{bottom:864.187171pt;}
.y6_c00181{bottom:896.106955pt;}
.y5_c00181{bottom:928.187007pt;}
.y4_c00181{bottom:954.987551pt;}
.y3_c00181{bottom:987.067603pt;}
.h6_c00181{height:48.087599pt;}
.h2_c00181{height:55.645234pt;}
.h1_c00181{height:55.797187pt;}
.h5_c00181{height:55.798921pt;}
.h3_c00181{height:56.192266pt;}
.h4_c00181{height:60.968367pt;}
.h0_c00181{height:1122.666667pt;}
.w0_c00181{width:793.333333pt;}
.x0_c00181{left:0.000000pt;}
.x2_c00181{left:73.520052pt;}
.x3_c00181{left:83.839444pt;}
.x1_c00181{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_986df4ad2a21a7328c2b2c20.woff2')format("woff");}.ff1_c00182{font-family:ff1_c00182;line-height:1.106934;font-style:normal;font-weight:normal;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_5f7418405e4fdd55582d6177.woff2')format("woff");}.ff2_c00182{font-family:ff2_c00182;line-height:1.104492;font-style:normal;font-weight:normal;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_71f4419739fd18aeb8508b0e.woff2')format("woff");}.ff3_c00182{font-family:ff3_c00182;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00182;src:url('chunks/assets/font_a916daedd88235602afcae81.woff2')format("woff");}.ff4_c00182{font-family:ff4_c00182;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00182;src:url('chunks/assets/font_d43b4d4496f126acfde4ff18.woff2')format("woff");}.ff5_c00182{font-family:ff5_c00182;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00182;src:url('chunks/assets/font_2f2d138ff74aef5136b3b86e.woff2')format("woff");}.ff6_c00182{font-family:ff6_c00182;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00182;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff7_c00182{font-family:ff7_c00182;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00182{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00182{vertical-align:-32.039400px;}
.v3_c00182{vertical-align:-14.760000px;}
.v0_c00182{vertical-align:0.000000px;}
.v1_c00182{vertical-align:32.402592px;}
.ls1f_c00182{letter-spacing:-0.385878px;}
.ls25_c00182{letter-spacing:-0.344952px;}
.ls24_c00182{letter-spacing:-0.315719px;}
.ls26_c00182{letter-spacing:-0.216326px;}
.ls18_c00182{letter-spacing:-0.152013px;}
.ls1d_c00182{letter-spacing:-0.122779px;}
.ls15_c00182{letter-spacing:-0.116933px;}
.ls17_c00182{letter-spacing:-0.111086px;}
.ls21_c00182{letter-spacing:-0.105240px;}
.ls1a_c00182{letter-spacing:-0.099393px;}
.ls14_c00182{letter-spacing:-0.075619px;}
.lsb_c00182{letter-spacing:-0.063018px;}
.ls19_c00182{letter-spacing:-0.058466px;}
.lsf_c00182{letter-spacing:-0.049014px;}
.ls13_c00182{letter-spacing:-0.035010px;}
.ls11_c00182{letter-spacing:-0.028008px;}
.ls1b_c00182{letter-spacing:-0.023387px;}
.ls12_c00182{letter-spacing:-0.021006px;}
.ls16_c00182{letter-spacing:-0.017540px;}
.lsd_c00182{letter-spacing:-0.014004px;}
.lse_c00182{letter-spacing:-0.007002px;}
.lsc_c00182{letter-spacing:0.000000px;}
.ls7_c00182{letter-spacing:0.005847px;}
.ls0_c00182{letter-spacing:0.007002px;}
.ls9_c00182{letter-spacing:0.011693px;}
.ls5_c00182{letter-spacing:0.014004px;}
.ls2_c00182{letter-spacing:0.021006px;}
.ls4_c00182{letter-spacing:0.023281px;}
.ls3_c00182{letter-spacing:0.028008px;}
.ls23_c00182{letter-spacing:0.029233px;}
.ls1_c00182{letter-spacing:0.042012px;}
.ls6_c00182{letter-spacing:0.070020px;}
.ls1c_c00182{letter-spacing:0.163706px;}
.ls20_c00182{letter-spacing:0.263099px;}
.ls27_c00182{letter-spacing:0.321565px;}
.lsa_c00182{letter-spacing:0.362492px;}
.ls10_c00182{letter-spacing:0.392112px;}
.ls1e_c00182{letter-spacing:0.502811px;}
.ls22_c00182{letter-spacing:0.537891px;}
.ls8_c00182{letter-spacing:0.713290px;}
.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;}
}
.ws2_c00182{word-spacing:-58.466400px;}
.ws3_c00182{word-spacing:-16.358899px;}
.ws0_c00182{word-spacing:-12.967628px;}
.ws1_c00182{word-spacing:-10.397640px;}
.ws29_c00182{word-spacing:-0.608051px;}
.ws30_c00182{word-spacing:-0.309872px;}
.ws1b_c00182{word-spacing:-0.084024px;}
.ws4_c00182{word-spacing:0.000000px;}
.ws2a_c00182{word-spacing:0.011693px;}
.ws13_c00182{word-spacing:0.014004px;}
.ws11_c00182{word-spacing:0.021006px;}
.ws2f_c00182{word-spacing:0.228019px;}
.ws22_c00182{word-spacing:0.882843px;}
.ws23_c00182{word-spacing:1.081628px;}
.ws21_c00182{word-spacing:1.204408px;}
.ws17_c00182{word-spacing:2.492712px;}
.ws16_c00182{word-spacing:2.527722px;}
.ws14_c00182{word-spacing:2.877822px;}
.wsc_c00182{word-spacing:4.642326px;}
.wsb_c00182{word-spacing:4.691340px;}
.wsa_c00182{word-spacing:4.712346px;}
.wse_c00182{word-spacing:5.356530px;}
.ws19_c00182{word-spacing:5.391540px;}
.wsd_c00182{word-spacing:5.412546px;}
.ws27_c00182{word-spacing:6.255905px;}
.ws18_c00182{word-spacing:7.198056px;}
.ws5_c00182{word-spacing:7.562160px;}
.ws2c_c00182{word-spacing:7.752645px;}
.ws2d_c00182{word-spacing:8.261302px;}
.ws2b_c00182{word-spacing:8.395775px;}
.ws2e_c00182{word-spacing:8.606254px;}
.ws26_c00182{word-spacing:9.758042px;}
.ws24_c00182{word-spacing:9.793122px;}
.ws25_c00182{word-spacing:9.834048px;}
.ws12_c00182{word-spacing:10.425978px;}
.ws28_c00182{word-spacing:11.389255px;}
.ws1d_c00182{word-spacing:11.868390px;}
.ws20_c00182{word-spacing:15.148644px;}
.ws1e_c00182{word-spacing:15.487749px;}
.ws1f_c00182{word-spacing:15.610529px;}
.ws1a_c00182{word-spacing:16.538724px;}
.wsf_c00182{word-spacing:18.009144px;}
.ws10_c00182{word-spacing:19.794654px;}
.ws15_c00182{word-spacing:20.158758px;}
.ws9_c00182{word-spacing:21.902256px;}
.ws7_c00182{word-spacing:21.937266px;}
.ws8_c00182{word-spacing:21.951270px;}
.ws1c_c00182{word-spacing:37.411686px;}
.ws6_c00182{word-spacing:77.393106px;}
._5_c00182{margin-left:-10.628240px;}
._4_c00182{margin-left:-2.712726px;}
._1_c00182{margin-left:-1.281366px;}
._0_c00182{width:1.127322px;}
._2_c00182{width:3.290940px;}
._3_c00182{width:5.930694px;}
.fc0_c00182{color:rgb(0,0,0);}
.fs2_c00182{font-size:37.809600px;}
.fs1_c00182{font-size:46.562400px;}
.fs3_c00182{font-size:58.466400px;}
.fs0_c00182{font-size:70.020000px;}
.y0_c00182{bottom:0.000000px;}
.y2_c00182{bottom:109.740968px;}
.y1_c00182{bottom:129.810450px;}
.y24_c00182{bottom:149.429891px;}
.y23_c00182{bottom:170.940450px;}
.y22_c00182{bottom:185.248088px;}
.y21_c00182{bottom:203.068647px;}
.y20_c00182{bottom:221.068990px;}
.y1f_c00182{bottom:238.889548px;}
.y1e_c00182{bottom:256.710107px;}
.y1d_c00182{bottom:278.400450px;}
.y1c_c00182{bottom:293.069966px;}
.y1b_c00182{bottom:359.580213px;}
.y1a_c00182{bottom:389.820101px;}
.y19_c00182{bottom:419.970713px;}
.y18_c00182{bottom:450.207014px;}
.y17_c00182{bottom:480.357626px;}
.y16_c00182{bottom:510.597513px;}
.y15_c00182{bottom:540.748125px;}
.y14_c00182{bottom:570.898737px;}
.y13_c00182{bottom:601.049349px;}
.y12_c00182{bottom:631.289237px;}
.y11_c00182{bottom:661.439849px;}
.y10_c00182{bottom:691.679736px;}
.yf_c00182{bottom:721.830348px;}
.ye_c00182{bottom:752.070235px;}
.yd_c00182{bottom:782.220848px;}
.yc_c00182{bottom:812.460735px;}
.yb_c00182{bottom:855.749802px;}
.ya_c00182{bottom:885.989690px;}
.y9_c00182{bottom:916.140302px;}
.y8_c00182{bottom:946.380189px;}
.y7_c00182{bottom:976.530801px;}
.y6_c00182{bottom:1006.770689px;}
.y5_c00182{bottom:1050.060553px;}
.y4_c00182{bottom:1080.300441px;}
.y3_c00182{bottom:1110.451053px;}
.h7_c00182{height:39.338549px;}
.h8_c00182{height:54.098549px;}
.h4_c00182{height:62.600889px;}
.h1_c00182{height:62.771836px;}
.h6_c00182{height:62.773774px;}
.h3_c00182{height:63.216299px;}
.h5_c00182{height:73.682532px;}
.h2_c00182{height:74.145056px;}
.h0_c00182{height:1263.000000px;}
.w0_c00182{width:892.500000px;}
.x0_c00182{left:0.000000px;}
.x2_c00182{left:82.710059px;}
.x3_c00182{left:85.589950px;}
.x1_c00182{left:431.730000px;}
@media print{
.v2_c00182{vertical-align:-28.479467pt;}
.v3_c00182{vertical-align:-13.120000pt;}
.v0_c00182{vertical-align:0.000000pt;}
.v1_c00182{vertical-align:28.802304pt;}
.ls1f_c00182{letter-spacing:-0.343003pt;}
.ls25_c00182{letter-spacing:-0.306624pt;}
.ls24_c00182{letter-spacing:-0.280639pt;}
.ls26_c00182{letter-spacing:-0.192289pt;}
.ls18_c00182{letter-spacing:-0.135122pt;}
.ls1d_c00182{letter-spacing:-0.109137pt;}
.ls15_c00182{letter-spacing:-0.103940pt;}
.ls17_c00182{letter-spacing:-0.098743pt;}
.ls21_c00182{letter-spacing:-0.093546pt;}
.ls1a_c00182{letter-spacing:-0.088349pt;}
.ls14_c00182{letter-spacing:-0.067217pt;}
.lsb_c00182{letter-spacing:-0.056016pt;}
.ls19_c00182{letter-spacing:-0.051970pt;}
.lsf_c00182{letter-spacing:-0.043568pt;}
.ls13_c00182{letter-spacing:-0.031120pt;}
.ls11_c00182{letter-spacing:-0.024896pt;}
.ls1b_c00182{letter-spacing:-0.020788pt;}
.ls12_c00182{letter-spacing:-0.018672pt;}
.ls16_c00182{letter-spacing:-0.015591pt;}
.lsd_c00182{letter-spacing:-0.012448pt;}
.lse_c00182{letter-spacing:-0.006224pt;}
.lsc_c00182{letter-spacing:0.000000pt;}
.ls7_c00182{letter-spacing:0.005197pt;}
.ls0_c00182{letter-spacing:0.006224pt;}
.ls9_c00182{letter-spacing:0.010394pt;}
.ls5_c00182{letter-spacing:0.012448pt;}
.ls2_c00182{letter-spacing:0.018672pt;}
.ls4_c00182{letter-spacing:0.020694pt;}
.ls3_c00182{letter-spacing:0.024896pt;}
.ls23_c00182{letter-spacing:0.025985pt;}
.ls1_c00182{letter-spacing:0.037344pt;}
.ls6_c00182{letter-spacing:0.062240pt;}
.ls1c_c00182{letter-spacing:0.145516pt;}
.ls20_c00182{letter-spacing:0.233866pt;}
.ls27_c00182{letter-spacing:0.285836pt;}
.lsa_c00182{letter-spacing:0.322215pt;}
.ls10_c00182{letter-spacing:0.348544pt;}
.ls1e_c00182{letter-spacing:0.446943pt;}
.ls22_c00182{letter-spacing:0.478125pt;}
.ls8_c00182{letter-spacing:0.634036pt;}
.ws2_c00182{word-spacing:-51.970133pt;}
.ws3_c00182{word-spacing:-14.541243pt;}
.ws0_c00182{word-spacing:-11.526781pt;}
.ws1_c00182{word-spacing:-9.242347pt;}
.ws29_c00182{word-spacing:-0.540489pt;}
.ws30_c00182{word-spacing:-0.275442pt;}
.ws1b_c00182{word-spacing:-0.074688pt;}
.ws4_c00182{word-spacing:0.000000pt;}
.ws2a_c00182{word-spacing:0.010394pt;}
.ws13_c00182{word-spacing:0.012448pt;}
.ws11_c00182{word-spacing:0.018672pt;}
.ws2f_c00182{word-spacing:0.202684pt;}
.ws22_c00182{word-spacing:0.784749pt;}
.ws23_c00182{word-spacing:0.961447pt;}
.ws21_c00182{word-spacing:1.070585pt;}
.ws17_c00182{word-spacing:2.215744pt;}
.ws16_c00182{word-spacing:2.246864pt;}
.ws14_c00182{word-spacing:2.558064pt;}
.wsc_c00182{word-spacing:4.126512pt;}
.wsb_c00182{word-spacing:4.170080pt;}
.wsa_c00182{word-spacing:4.188752pt;}
.wse_c00182{word-spacing:4.761360pt;}
.ws19_c00182{word-spacing:4.792480pt;}
.wsd_c00182{word-spacing:4.811152pt;}
.ws27_c00182{word-spacing:5.560804pt;}
.ws18_c00182{word-spacing:6.398272pt;}
.ws5_c00182{word-spacing:6.721920pt;}
.ws2c_c00182{word-spacing:6.891240pt;}
.ws2d_c00182{word-spacing:7.343380pt;}
.ws2b_c00182{word-spacing:7.462911pt;}
.ws2e_c00182{word-spacing:7.650004pt;}
.ws26_c00182{word-spacing:8.673815pt;}
.ws24_c00182{word-spacing:8.704997pt;}
.ws25_c00182{word-spacing:8.741376pt;}
.ws12_c00182{word-spacing:9.267536pt;}
.ws28_c00182{word-spacing:10.123782pt;}
.ws1d_c00182{word-spacing:10.549680pt;}
.ws20_c00182{word-spacing:13.465462pt;}
.ws1e_c00182{word-spacing:13.766888pt;}
.ws1f_c00182{word-spacing:13.876026pt;}
.ws1a_c00182{word-spacing:14.701088pt;}
.wsf_c00182{word-spacing:16.008128pt;}
.ws10_c00182{word-spacing:17.595248pt;}
.ws15_c00182{word-spacing:17.918896pt;}
.ws9_c00182{word-spacing:19.468672pt;}
.ws7_c00182{word-spacing:19.499792pt;}
.ws8_c00182{word-spacing:19.512240pt;}
.ws1c_c00182{word-spacing:33.254832pt;}
.ws6_c00182{word-spacing:68.793872pt;}
._5_c00182{margin-left:-9.447324pt;}
._4_c00182{margin-left:-2.411312pt;}
._1_c00182{margin-left:-1.138992pt;}
._0_c00182{width:1.002064pt;}
._2_c00182{width:2.925280pt;}
._3_c00182{width:5.271728pt;}
.fs2_c00182{font-size:33.608533pt;}
.fs1_c00182{font-size:41.388800pt;}
.fs3_c00182{font-size:51.970133pt;}
.fs0_c00182{font-size:62.240000pt;}
.y0_c00182{bottom:0.000000pt;}
.y2_c00182{bottom:97.547527pt;}
.y1_c00182{bottom:115.387067pt;}
.y24_c00182{bottom:132.826570pt;}
.y23_c00182{bottom:151.947067pt;}
.y22_c00182{bottom:164.664967pt;}
.y21_c00182{bottom:180.505464pt;}
.y20_c00182{bottom:196.505769pt;}
.y1f_c00182{bottom:212.346265pt;}
.y1e_c00182{bottom:228.186762pt;}
.y1d_c00182{bottom:247.467067pt;}
.y1c_c00182{bottom:260.506636pt;}
.y1b_c00182{bottom:319.626856pt;}
.y1a_c00182{bottom:346.506756pt;}
.y19_c00182{bottom:373.307300pt;}
.y18_c00182{bottom:400.184012pt;}
.y17_c00182{bottom:426.984556pt;}
.y16_c00182{bottom:453.864456pt;}
.y15_c00182{bottom:480.665000pt;}
.y14_c00182{bottom:507.465544pt;}
.y13_c00182{bottom:534.266088pt;}
.y12_c00182{bottom:561.145988pt;}
.y11_c00182{bottom:587.946532pt;}
.y10_c00182{bottom:614.826432pt;}
.yf_c00182{bottom:641.626976pt;}
.ye_c00182{bottom:668.506876pt;}
.yd_c00182{bottom:695.307420pt;}
.yc_c00182{bottom:722.187320pt;}
.yb_c00182{bottom:760.666491pt;}
.ya_c00182{bottom:787.546391pt;}
.y9_c00182{bottom:814.346935pt;}
.y8_c00182{bottom:841.226835pt;}
.y7_c00182{bottom:868.027379pt;}
.y6_c00182{bottom:894.907279pt;}
.y5_c00182{bottom:933.387159pt;}
.y4_c00182{bottom:960.267059pt;}
.y3_c00182{bottom:987.067603pt;}
.h7_c00182{height:34.967599pt;}
.h8_c00182{height:48.087599pt;}
.h4_c00182{height:55.645234pt;}
.h1_c00182{height:55.797187pt;}
.h6_c00182{height:55.798910pt;}
.h3_c00182{height:56.192266pt;}
.h5_c00182{height:65.495584pt;}
.h2_c00182{height:65.906716pt;}
.h0_c00182{height:1122.666667pt;}
.w0_c00182{width:793.333333pt;}
.x0_c00182{left:0.000000pt;}
.x2_c00182{left:73.520052pt;}
.x3_c00182{left:76.079956pt;}
.x1_c00182{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2c5f094303e439d2b2bd4812.woff2')format("woff");}.ff1_c00183{font-family:ff1_c00183;line-height:1.106934;font-style:normal;font-weight:normal;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_af81c026baa484242f6033ac.woff2')format("woff");}.ff2_c00183{font-family:ff2_c00183;line-height:1.104492;font-style:normal;font-weight:normal;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_af07f87b235e64bc82e2ad51.woff2')format("woff");}.ff3_c00183{font-family:ff3_c00183;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00183;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff4_c00183{font-family:ff4_c00183;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00183;src:url('chunks/assets/font_7094b9844918d2f652e62462.woff2')format("woff");}.ff5_c00183{font-family:ff5_c00183;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00183;src:url('chunks/assets/font_2f2d138ff74aef5136b3b86e.woff2')format("woff");}.ff6_c00183{font-family:ff6_c00183;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00183{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00183{vertical-align:-14.760000px;}
.v0_c00183{vertical-align:0.000000px;}
.v1_c00183{vertical-align:32.044032px;}
.ls19_c00183{letter-spacing:-0.707443px;}
.ls25_c00183{letter-spacing:-0.584664px;}
.ls26_c00183{letter-spacing:-0.368338px;}
.ls1c_c00183{letter-spacing:-0.344952px;}
.ls1a_c00183{letter-spacing:-0.321565px;}
.ls22_c00183{letter-spacing:-0.239712px;}
.ls1f_c00183{letter-spacing:-0.134473px;}
.ls16_c00183{letter-spacing:-0.099393px;}
.ls12_c00183{letter-spacing:-0.093546px;}
.ls11_c00183{letter-spacing:-0.075619px;}
.ls23_c00183{letter-spacing:-0.064313px;}
.lsa_c00183{letter-spacing:-0.063018px;}
.ls20_c00183{letter-spacing:-0.046773px;}
.ls14_c00183{letter-spacing:-0.035080px;}
.lse_c00183{letter-spacing:-0.035010px;}
.ls17_c00183{letter-spacing:-0.029233px;}
.ls10_c00183{letter-spacing:-0.028008px;}
.ls15_c00183{letter-spacing:-0.023387px;}
.lsc_c00183{letter-spacing:-0.021006px;}
.lsf_c00183{letter-spacing:-0.014004px;}
.lsd_c00183{letter-spacing:-0.007002px;}
.ls1d_c00183{letter-spacing:-0.005847px;}
.lsb_c00183{letter-spacing:0.000000px;}
.ls0_c00183{letter-spacing:0.007002px;}
.ls4_c00183{letter-spacing:0.013969px;}
.ls3_c00183{letter-spacing:0.014004px;}
.ls9_c00183{letter-spacing:0.017540px;}
.ls2_c00183{letter-spacing:0.023281px;}
.ls5_c00183{letter-spacing:0.028008px;}
.ls8_c00183{letter-spacing:0.040926px;}
.ls1_c00183{letter-spacing:0.042012px;}
.ls21_c00183{letter-spacing:0.058466px;}
.ls13_c00183{letter-spacing:0.105240px;}
.ls24_c00183{letter-spacing:0.175399px;}
.ls18_c00183{letter-spacing:0.204632px;}
.ls1e_c00183{letter-spacing:0.286485px;}
.ls7_c00183{letter-spacing:0.333258px;}
.ls6_c00183{letter-spacing:0.362492px;}
.ls1b_c00183{letter-spacing:0.537891px;}
.sc__c00183{text-shadow:none;}
.sc0_c00183{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00183{-webkit-text-stroke:0px transparent;}
.sc0_c00183{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00183{word-spacing:-58.466400px;}
.ws1_c00183{word-spacing:-19.451556px;}
.ws4_c00183{word-spacing:-16.160113px;}
.ws0_c00183{word-spacing:-12.967628px;}
.ws2_c00183{word-spacing:-10.397640px;}
.ws29_c00183{word-spacing:-0.631437px;}
.ws2d_c00183{word-spacing:-0.385878px;}
.ws17_c00183{word-spacing:-0.021006px;}
.ws37_c00183{word-spacing:-0.005847px;}
.ws5_c00183{word-spacing:0.000000px;}
.wsd_c00183{word-spacing:0.007002px;}
.ws12_c00183{word-spacing:0.009312px;}
.ws1d_c00183{word-spacing:0.014004px;}
.ws23_c00183{word-spacing:0.035080px;}
.ws2c_c00183{word-spacing:0.315719px;}
.ws16_c00183{word-spacing:0.329094px;}
.ws7_c00183{word-spacing:0.350100px;}
.ws8_c00183{word-spacing:0.378108px;}
.ws28_c00183{word-spacing:0.380032px;}
.ws2b_c00183{word-spacing:0.420958px;}
.ws2a_c00183{word-spacing:0.508658px;}
.ws24_c00183{word-spacing:0.888689px;}
.ws26_c00183{word-spacing:0.917922px;}
.ws25_c00183{word-spacing:1.777379px;}
.ws27_c00183{word-spacing:2.157410px;}
.ws20_c00183{word-spacing:2.198337px;}
.ws21_c00183{word-spacing:2.274343px;}
.ws1f_c00183{word-spacing:2.426356px;}
.ws1c_c00183{word-spacing:2.506716px;}
.ws1b_c00183{word-spacing:2.534724px;}
.ws22_c00183{word-spacing:2.560828px;}
.ws1e_c00183{word-spacing:2.625141px;}
.ws18_c00183{word-spacing:3.613032px;}
.ws19_c00183{word-spacing:7.548156px;}
.ws10_c00183{word-spacing:10.783080px;}
.ws11_c00183{word-spacing:10.811088px;}
.ws1a_c00183{word-spacing:11.105172px;}
.wse_c00183{word-spacing:11.161188px;}
.ws6_c00183{word-spacing:11.168190px;}
.ws34_c00183{word-spacing:13.160787px;}
.ws33_c00183{word-spacing:13.400499px;}
.ws36_c00183{word-spacing:14.061169px;}
.ws35_c00183{word-spacing:14.277495px;}
.ws2e_c00183{word-spacing:16.937716px;}
.ws31_c00183{word-spacing:16.966949px;}
.ws2f_c00183{word-spacing:17.171582px;}
.ws32_c00183{word-spacing:17.253435px;}
.ws30_c00183{word-spacing:17.428834px;}
.wsf_c00183{word-spacing:22.294368px;}
.ws14_c00183{word-spacing:22.679478px;}
.ws13_c00183{word-spacing:22.994568px;}
.wsa_c00183{word-spacing:26.978706px;}
.ws9_c00183{word-spacing:26.999712px;}
.ws15_c00183{word-spacing:30.234636px;}
.wsb_c00183{word-spacing:36.662472px;}
.wsc_c00183{word-spacing:36.725490px;}
._3_c00183{margin-left:-2.710386px;}
._0_c00183{margin-left:-1.127322px;}
._1_c00183{width:1.183338px;}
._2_c00183{width:5.930694px;}
.fc0_c00183{color:rgb(0,0,0);}
.fs2_c00183{font-size:37.809600px;}
.fs1_c00183{font-size:46.562400px;}
.fs3_c00183{font-size:58.466400px;}
.fs0_c00183{font-size:70.020000px;}
.y0_c00183{bottom:0.000000px;}
.y2_c00183{bottom:109.740968px;}
.y1_c00183{bottom:129.810450px;}
.y25_c00183{bottom:149.429548px;}
.y24_c00183{bottom:167.250107px;}
.y23_c00183{bottom:188.940450px;}
.y22_c00183{bottom:203.070107px;}
.y21_c00183{bottom:224.670450px;}
.y20_c00183{bottom:238.889891px;}
.y1f_c00183{bottom:260.400450px;}
.y1e_c00183{bottom:296.579891px;}
.y1d_c00183{bottom:318.090450px;}
.y1c_c00183{bottom:332.758717px;}
.y1b_c00183{bottom:362.459451px;}
.y1a_c00183{bottom:392.699338px;}
.y19_c00183{bottom:422.849950px;}
.y18_c00183{bottom:453.089838px;}
.y17_c00183{bottom:483.238951px;}
.y16_c00183{bottom:513.478839px;}
.y15_c00183{bottom:543.629451px;}
.y14_c00183{bottom:573.869338px;}
.y13_c00183{bottom:604.019950px;}
.y12_c00183{bottom:634.259838px;}
.y11_c00183{bottom:664.409109px;}
.y10_c00183{bottom:694.648997px;}
.yf_c00183{bottom:724.799608px;}
.ye_c00183{bottom:754.950221px;}
.yd_c00183{bottom:796.890248px;}
.yc_c00183{bottom:827.040860px;}
.yb_c00183{bottom:857.280747px;}
.ya_c00183{bottom:887.340333px;}
.y9_c00183{bottom:929.280563px;}
.y8_c00183{bottom:959.519442px;}
.y7_c00183{bottom:989.670054px;}
.y6_c00183{bottom:1019.909942px;}
.y5_c00183{bottom:1050.060553px;}
.y4_c00183{bottom:1080.300441px;}
.y3_c00183{bottom:1110.451053px;}
.h8_c00183{height:39.338549px;}
.ha_c00183{height:39.698549px;}
.h9_c00183{height:54.098549px;}
.h2_c00183{height:62.600889px;}
.h1_c00183{height:62.771836px;}
.h7_c00183{height:62.778766px;}
.h4_c00183{height:73.669596px;}
.h3_c00183{height:73.672818px;}
.h6_c00183{height:74.035380px;}
.h5_c00183{height:74.147828px;}
.h0_c00183{height:1263.000000px;}
.w0_c00183{width:892.500000px;}
.x0_c00183{left:0.000000px;}
.x2_c00183{left:82.710059px;}
.x3_c00183{left:113.309262px;}
.x1_c00183{left:431.730000px;}
@media print{
.v2_c00183{vertical-align:-13.120000pt;}
.v0_c00183{vertical-align:0.000000pt;}
.v1_c00183{vertical-align:28.483584pt;}
.ls19_c00183{letter-spacing:-0.628839pt;}
.ls25_c00183{letter-spacing:-0.519701pt;}
.ls26_c00183{letter-spacing:-0.327412pt;}
.ls1c_c00183{letter-spacing:-0.306624pt;}
.ls1a_c00183{letter-spacing:-0.285836pt;}
.ls22_c00183{letter-spacing:-0.213078pt;}
.ls1f_c00183{letter-spacing:-0.119531pt;}
.ls16_c00183{letter-spacing:-0.088349pt;}
.ls12_c00183{letter-spacing:-0.083152pt;}
.ls11_c00183{letter-spacing:-0.067217pt;}
.ls23_c00183{letter-spacing:-0.057167pt;}
.lsa_c00183{letter-spacing:-0.056016pt;}
.ls20_c00183{letter-spacing:-0.041576pt;}
.ls14_c00183{letter-spacing:-0.031182pt;}
.lse_c00183{letter-spacing:-0.031120pt;}
.ls17_c00183{letter-spacing:-0.025985pt;}
.ls10_c00183{letter-spacing:-0.024896pt;}
.ls15_c00183{letter-spacing:-0.020788pt;}
.lsc_c00183{letter-spacing:-0.018672pt;}
.lsf_c00183{letter-spacing:-0.012448pt;}
.lsd_c00183{letter-spacing:-0.006224pt;}
.ls1d_c00183{letter-spacing:-0.005197pt;}
.lsb_c00183{letter-spacing:0.000000pt;}
.ls0_c00183{letter-spacing:0.006224pt;}
.ls4_c00183{letter-spacing:0.012417pt;}
.ls3_c00183{letter-spacing:0.012448pt;}
.ls9_c00183{letter-spacing:0.015591pt;}
.ls2_c00183{letter-spacing:0.020694pt;}
.ls5_c00183{letter-spacing:0.024896pt;}
.ls8_c00183{letter-spacing:0.036379pt;}
.ls1_c00183{letter-spacing:0.037344pt;}
.ls21_c00183{letter-spacing:0.051970pt;}
.ls13_c00183{letter-spacing:0.093546pt;}
.ls24_c00183{letter-spacing:0.155910pt;}
.ls18_c00183{letter-spacing:0.181895pt;}
.ls1e_c00183{letter-spacing:0.254654pt;}
.ls7_c00183{letter-spacing:0.296230pt;}
.ls6_c00183{letter-spacing:0.322215pt;}
.ls1b_c00183{letter-spacing:0.478125pt;}
.ws3_c00183{word-spacing:-51.970133pt;}
.ws1_c00183{word-spacing:-17.290272pt;}
.ws4_c00183{word-spacing:-14.364545pt;}
.ws0_c00183{word-spacing:-11.526781pt;}
.ws2_c00183{word-spacing:-9.242347pt;}
.ws29_c00183{word-spacing:-0.561277pt;}
.ws2d_c00183{word-spacing:-0.343003pt;}
.ws17_c00183{word-spacing:-0.018672pt;}
.ws37_c00183{word-spacing:-0.005197pt;}
.ws5_c00183{word-spacing:0.000000pt;}
.wsd_c00183{word-spacing:0.006224pt;}
.ws12_c00183{word-spacing:0.008278pt;}
.ws1d_c00183{word-spacing:0.012448pt;}
.ws23_c00183{word-spacing:0.031182pt;}
.ws2c_c00183{word-spacing:0.280639pt;}
.ws16_c00183{word-spacing:0.292528pt;}
.ws7_c00183{word-spacing:0.311200pt;}
.ws8_c00183{word-spacing:0.336096pt;}
.ws28_c00183{word-spacing:0.337806pt;}
.ws2b_c00183{word-spacing:0.374185pt;}
.ws2a_c00183{word-spacing:0.452140pt;}
.ws24_c00183{word-spacing:0.789946pt;}
.ws26_c00183{word-spacing:0.815931pt;}
.ws25_c00183{word-spacing:1.579892pt;}
.ws27_c00183{word-spacing:1.917698pt;}
.ws20_c00183{word-spacing:1.954077pt;}
.ws21_c00183{word-spacing:2.021638pt;}
.ws1f_c00183{word-spacing:2.156761pt;}
.ws1c_c00183{word-spacing:2.228192pt;}
.ws1b_c00183{word-spacing:2.253088pt;}
.ws22_c00183{word-spacing:2.276292pt;}
.ws1e_c00183{word-spacing:2.333459pt;}
.ws18_c00183{word-spacing:3.211584pt;}
.ws19_c00183{word-spacing:6.709472pt;}
.ws10_c00183{word-spacing:9.584960pt;}
.ws11_c00183{word-spacing:9.609856pt;}
.ws1a_c00183{word-spacing:9.871264pt;}
.wse_c00183{word-spacing:9.921056pt;}
.ws6_c00183{word-spacing:9.927280pt;}
.ws34_c00183{word-spacing:11.698477pt;}
.ws33_c00183{word-spacing:11.911555pt;}
.ws36_c00183{word-spacing:12.498817pt;}
.ws35_c00183{word-spacing:12.691107pt;}
.ws2e_c00183{word-spacing:15.055748pt;}
.ws31_c00183{word-spacing:15.081733pt;}
.ws2f_c00183{word-spacing:15.263628pt;}
.ws32_c00183{word-spacing:15.336386pt;}
.ws30_c00183{word-spacing:15.492297pt;}
.wsf_c00183{word-spacing:19.817216pt;}
.ws14_c00183{word-spacing:20.159536pt;}
.ws13_c00183{word-spacing:20.439616pt;}
.wsa_c00183{word-spacing:23.981072pt;}
.ws9_c00183{word-spacing:23.999744pt;}
.ws15_c00183{word-spacing:26.875232pt;}
.wsb_c00183{word-spacing:32.588864pt;}
.wsc_c00183{word-spacing:32.644880pt;}
._3_c00183{margin-left:-2.409232pt;}
._0_c00183{margin-left:-1.002064pt;}
._1_c00183{width:1.051856pt;}
._2_c00183{width:5.271728pt;}
.fs2_c00183{font-size:33.608533pt;}
.fs1_c00183{font-size:41.388800pt;}
.fs3_c00183{font-size:51.970133pt;}
.fs0_c00183{font-size:62.240000pt;}
.y0_c00183{bottom:0.000000pt;}
.y2_c00183{bottom:97.547527pt;}
.y1_c00183{bottom:115.387067pt;}
.y25_c00183{bottom:132.826265pt;}
.y24_c00183{bottom:148.666762pt;}
.y23_c00183{bottom:167.947067pt;}
.y22_c00183{bottom:180.506762pt;}
.y21_c00183{bottom:199.707067pt;}
.y20_c00183{bottom:212.346570pt;}
.y1f_c00183{bottom:231.467067pt;}
.y1e_c00183{bottom:263.626570pt;}
.y1d_c00183{bottom:282.747067pt;}
.y1c_c00183{bottom:295.785527pt;}
.y1b_c00183{bottom:322.186179pt;}
.y1a_c00183{bottom:349.066079pt;}
.y19_c00183{bottom:375.866623pt;}
.y18_c00183{bottom:402.746523pt;}
.y17_c00183{bottom:429.545735pt;}
.y16_c00183{bottom:456.425635pt;}
.y15_c00183{bottom:483.226179pt;}
.y14_c00183{bottom:510.106079pt;}
.y13_c00183{bottom:536.906623pt;}
.y12_c00183{bottom:563.786523pt;}
.y11_c00183{bottom:590.585875pt;}
.y10_c00183{bottom:617.465775pt;}
.yf_c00183{bottom:644.266319pt;}
.ye_c00183{bottom:671.066863pt;}
.yd_c00183{bottom:708.346887pt;}
.yc_c00183{bottom:735.147431pt;}
.yb_c00183{bottom:762.027331pt;}
.ya_c00183{bottom:788.746963pt;}
.y9_c00183{bottom:826.027167pt;}
.y8_c00183{bottom:852.906171pt;}
.y7_c00183{bottom:879.706715pt;}
.y6_c00183{bottom:906.586615pt;}
.y5_c00183{bottom:933.387159pt;}
.y4_c00183{bottom:960.267059pt;}
.y3_c00183{bottom:987.067603pt;}
.h8_c00183{height:34.967599pt;}
.ha_c00183{height:35.287599pt;}
.h9_c00183{height:48.087599pt;}
.h2_c00183{height:55.645234pt;}
.h1_c00183{height:55.797187pt;}
.h7_c00183{height:55.803348pt;}
.h4_c00183{height:65.484086pt;}
.h3_c00183{height:65.486950pt;}
.h6_c00183{height:65.809227pt;}
.h5_c00183{height:65.909180pt;}
.h0_c00183{height:1122.666667pt;}
.w0_c00183{width:793.333333pt;}
.x0_c00183{left:0.000000pt;}
.x2_c00183{left:73.520052pt;}
.x3_c00183{left:100.719344pt;}
.x1_c00183{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a48f1c6b369822c89b53ee93.woff2')format("woff");}.ff1_c00184{font-family:ff1_c00184;line-height:1.106934;font-style:normal;font-weight:normal;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_3da4ce2bf0041b6343b8c4fb.woff2')format("woff");}.ff2_c00184{font-family:ff2_c00184;line-height:1.104492;font-style:normal;font-weight:normal;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_25f8977b21cc970cbb81d172.woff2')format("woff");}.ff3_c00184{font-family:ff3_c00184;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00184;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff4_c00184{font-family:ff4_c00184;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00184;src:url('chunks/assets/font_37ecc67421192c44c8357357.woff2')format("woff");}.ff5_c00184{font-family:ff5_c00184;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00184;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff6_c00184{font-family:ff6_c00184;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00184{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00184{vertical-align:-14.760000px;}
.v0_c00184{vertical-align:0.000000px;}
.v1_c00184{vertical-align:32.399586px;}
.ls17_c00184{letter-spacing:-1.064088px;}
.ls20_c00184{letter-spacing:-0.625590px;}
.ls16_c00184{letter-spacing:-0.362492px;}
.ls18_c00184{letter-spacing:-0.304025px;}
.ls15_c00184{letter-spacing:-0.286485px;}
.ls1d_c00184{letter-spacing:-0.216326px;}
.ls19_c00184{letter-spacing:-0.152013px;}
.ls1e_c00184{letter-spacing:-0.111086px;}
.ls1a_c00184{letter-spacing:-0.093546px;}
.ls1b_c00184{letter-spacing:-0.087700px;}
.lsf_c00184{letter-spacing:-0.075619px;}
.lse_c00184{letter-spacing:-0.070020px;}
.ls1c_c00184{letter-spacing:-0.064313px;}
.ls6_c00184{letter-spacing:-0.063018px;}
.lsc_c00184{letter-spacing:-0.042012px;}
.ls11_c00184{letter-spacing:-0.040926px;}
.ls9_c00184{letter-spacing:-0.035010px;}
.ls14_c00184{letter-spacing:-0.029233px;}
.lsa_c00184{letter-spacing:-0.028008px;}
.ls1f_c00184{letter-spacing:-0.023387px;}
.ls8_c00184{letter-spacing:-0.021006px;}
.lsd_c00184{letter-spacing:-0.014004px;}
.lsb_c00184{letter-spacing:-0.007002px;}
.ls7_c00184{letter-spacing:0.000000px;}
.ls4_c00184{letter-spacing:0.005847px;}
.ls3_c00184{letter-spacing:0.007002px;}
.ls1_c00184{letter-spacing:0.014004px;}
.ls0_c00184{letter-spacing:0.023281px;}
.ls2_c00184{letter-spacing:0.035010px;}
.ls10_c00184{letter-spacing:0.268945px;}
.ls5_c00184{letter-spacing:0.362492px;}
.ls13_c00184{letter-spacing:0.403418px;}
.ls12_c00184{letter-spacing:0.537891px;}
.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;}
}
.ws2_c00184{word-spacing:-58.466400px;}
.ws3_c00184{word-spacing:-16.154266px;}
.ws0_c00184{word-spacing:-12.967628px;}
.ws1_c00184{word-spacing:-10.397640px;}
.ws18_c00184{word-spacing:-0.358530px;}
.ws14_c00184{word-spacing:-0.301086px;}
.ws4_c00184{word-spacing:0.000000px;}
.ws7_c00184{word-spacing:0.014004px;}
.ws2f_c00184{word-spacing:0.035080px;}
.ws2c_c00184{word-spacing:0.070160px;}
.ws2e_c00184{word-spacing:0.122779px;}
.ws2d_c00184{word-spacing:0.228019px;}
.ws1b_c00184{word-spacing:0.357102px;}
.ws17_c00184{word-spacing:0.364104px;}
.ws30_c00184{word-spacing:0.637284px;}
.wse_c00184{word-spacing:1.813518px;}
.ws29_c00184{word-spacing:1.900158px;}
.ws27_c00184{word-spacing:1.964471px;}
.ws1c_c00184{word-spacing:2.513718px;}
.ws2a_c00184{word-spacing:2.537442px;}
.ws28_c00184{word-spacing:2.625141px;}
.ws8_c00184{word-spacing:3.935124px;}
.ws9_c00184{word-spacing:3.984138px;}
.ws10_c00184{word-spacing:4.992426px;}
.wsf_c00184{word-spacing:5.027436px;}
.ws13_c00184{word-spacing:5.034438px;}
.ws11_c00184{word-spacing:5.377536px;}
.ws12_c00184{word-spacing:5.412546px;}
.ws6_c00184{word-spacing:6.861960px;}
.ws20_c00184{word-spacing:9.196765px;}
.ws21_c00184{word-spacing:9.331237px;}
.ws1a_c00184{word-spacing:9.347670px;}
.wsd_c00184{word-spacing:9.725778px;}
.ws1e_c00184{word-spacing:9.775582px;}
.ws1f_c00184{word-spacing:10.085454px;}
.ws22_c00184{word-spacing:10.483026px;}
.ws23_c00184{word-spacing:10.740278px;}
.ws26_c00184{word-spacing:10.757818px;}
.ws24_c00184{word-spacing:10.816284px;}
.ws19_c00184{word-spacing:10.825092px;}
.wsc_c00184{word-spacing:11.518290px;}
.ws25_c00184{word-spacing:11.880372px;}
.ws15_c00184{word-spacing:12.211488px;}
.wsa_c00184{word-spacing:14.032008px;}
.wsb_c00184{word-spacing:14.067018px;}
.ws2b_c00184{word-spacing:14.119636px;}
.ws16_c00184{word-spacing:17.624034px;}
.ws1d_c00184{word-spacing:17.744552px;}
.ws5_c00184{word-spacing:34.925976px;}
._3_c00184{margin-left:-2.709774px;}
._1_c00184{margin-left:-1.344384px;}
._0_c00184{width:1.092312px;}
._2_c00184{width:5.930694px;}
.fc0_c00184{color:rgb(0,0,0);}
.fs2_c00184{font-size:37.809600px;}
.fs1_c00184{font-size:46.562400px;}
.fs3_c00184{font-size:58.466400px;}
.fs0_c00184{font-size:70.020000px;}
.y0_c00184{bottom:0.000000px;}
.y2_c00184{bottom:109.740968px;}
.y1_c00184{bottom:129.810450px;}
.y26_c00184{bottom:153.120600px;}
.y25_c00184{bottom:170.940450px;}
.y24_c00184{bottom:188.940450px;}
.y23_c00184{bottom:203.068088px;}
.y22_c00184{bottom:221.068431px;}
.y21_c00184{bottom:238.888990px;}
.y20_c00184{bottom:256.709548px;}
.y1f_c00184{bottom:274.709891px;}
.y1e_c00184{bottom:296.220450px;}
.y1d_c00184{bottom:310.889946px;}
.y1c_c00184{bottom:333.660450px;}
.y1b_c00184{bottom:369.747997px;}
.y1a_c00184{bottom:399.898609px;}
.y19_c00184{bottom:435.988668px;}
.y18_c00184{bottom:472.078727px;}
.y17_c00184{bottom:502.229338px;}
.y16_c00184{bottom:532.469226px;}
.y15_c00184{bottom:562.619838px;}
.y14_c00184{bottom:592.768839px;}
.y13_c00184{bottom:622.919451px;}
.y12_c00184{bottom:653.159338px;}
.y11_c00184{bottom:683.309951px;}
.y10_c00184{bottom:713.549838px;}
.yf_c00184{bottom:743.698443px;}
.ye_c00184{bottom:773.938331px;}
.yd_c00184{bottom:804.088943px;}
.yc_c00184{bottom:834.328830px;}
.yb_c00184{bottom:864.479442px;}
.ya_c00184{bottom:894.719329px;}
.y9_c00184{bottom:924.869942px;}
.y8_c00184{bottom:955.109829px;}
.y7_c00184{bottom:985.260441px;}
.y6_c00184{bottom:1015.500329px;}
.y5_c00184{bottom:1050.060553px;}
.y4_c00184{bottom:1080.300441px;}
.y3_c00184{bottom:1110.451053px;}
.ha_c00184{height:39.337949px;}
.h8_c00184{height:39.338549px;}
.h9_c00184{height:54.098549px;}
.h3_c00184{height:62.600889px;}
.h1_c00184{height:62.771836px;}
.h7_c00184{height:62.773852px;}
.h5_c00184{height:73.788908px;}
.h6_c00184{height:73.792274px;}
.h4_c00184{height:74.036814px;}
.h2_c00184{height:74.142050px;}
.h0_c00184{height:1263.000000px;}
.w0_c00184{width:892.500000px;}
.x0_c00184{left:0.000000px;}
.x2_c00184{left:82.710059px;}
.x1_c00184{left:431.730000px;}
@media print{
.v2_c00184{vertical-align:-13.120000pt;}
.v0_c00184{vertical-align:0.000000pt;}
.v1_c00184{vertical-align:28.799632pt;}
.ls17_c00184{letter-spacing:-0.945856pt;}
.ls20_c00184{letter-spacing:-0.556080pt;}
.ls16_c00184{letter-spacing:-0.322215pt;}
.ls18_c00184{letter-spacing:-0.270245pt;}
.ls15_c00184{letter-spacing:-0.254654pt;}
.ls1d_c00184{letter-spacing:-0.192289pt;}
.ls19_c00184{letter-spacing:-0.135122pt;}
.ls1e_c00184{letter-spacing:-0.098743pt;}
.ls1a_c00184{letter-spacing:-0.083152pt;}
.ls1b_c00184{letter-spacing:-0.077955pt;}
.lsf_c00184{letter-spacing:-0.067217pt;}
.lse_c00184{letter-spacing:-0.062240pt;}
.ls1c_c00184{letter-spacing:-0.057167pt;}
.ls6_c00184{letter-spacing:-0.056016pt;}
.lsc_c00184{letter-spacing:-0.037344pt;}
.ls11_c00184{letter-spacing:-0.036379pt;}
.ls9_c00184{letter-spacing:-0.031120pt;}
.ls14_c00184{letter-spacing:-0.025985pt;}
.lsa_c00184{letter-spacing:-0.024896pt;}
.ls1f_c00184{letter-spacing:-0.020788pt;}
.ls8_c00184{letter-spacing:-0.018672pt;}
.lsd_c00184{letter-spacing:-0.012448pt;}
.lsb_c00184{letter-spacing:-0.006224pt;}
.ls7_c00184{letter-spacing:0.000000pt;}
.ls4_c00184{letter-spacing:0.005197pt;}
.ls3_c00184{letter-spacing:0.006224pt;}
.ls1_c00184{letter-spacing:0.012448pt;}
.ls0_c00184{letter-spacing:0.020694pt;}
.ls2_c00184{letter-spacing:0.031120pt;}
.ls10_c00184{letter-spacing:0.239063pt;}
.ls5_c00184{letter-spacing:0.322215pt;}
.ls13_c00184{letter-spacing:0.358594pt;}
.ls12_c00184{letter-spacing:0.478125pt;}
.ws2_c00184{word-spacing:-51.970133pt;}
.ws3_c00184{word-spacing:-14.359348pt;}
.ws0_c00184{word-spacing:-11.526781pt;}
.ws1_c00184{word-spacing:-9.242347pt;}
.ws18_c00184{word-spacing:-0.318694pt;}
.ws14_c00184{word-spacing:-0.267632pt;}
.ws4_c00184{word-spacing:0.000000pt;}
.ws7_c00184{word-spacing:0.012448pt;}
.ws2f_c00184{word-spacing:0.031182pt;}
.ws2c_c00184{word-spacing:0.062364pt;}
.ws2e_c00184{word-spacing:0.109137pt;}
.ws2d_c00184{word-spacing:0.202684pt;}
.ws1b_c00184{word-spacing:0.317424pt;}
.ws17_c00184{word-spacing:0.323648pt;}
.ws30_c00184{word-spacing:0.566474pt;}
.wse_c00184{word-spacing:1.612016pt;}
.ws29_c00184{word-spacing:1.689029pt;}
.ws27_c00184{word-spacing:1.746196pt;}
.ws1c_c00184{word-spacing:2.234416pt;}
.ws2a_c00184{word-spacing:2.255504pt;}
.ws28_c00184{word-spacing:2.333459pt;}
.ws8_c00184{word-spacing:3.497888pt;}
.ws9_c00184{word-spacing:3.541456pt;}
.ws10_c00184{word-spacing:4.437712pt;}
.wsf_c00184{word-spacing:4.468832pt;}
.ws13_c00184{word-spacing:4.475056pt;}
.ws11_c00184{word-spacing:4.780032pt;}
.ws12_c00184{word-spacing:4.811152pt;}
.ws6_c00184{word-spacing:6.099520pt;}
.ws20_c00184{word-spacing:8.174902pt;}
.ws21_c00184{word-spacing:8.294433pt;}
.ws1a_c00184{word-spacing:8.309040pt;}
.wsd_c00184{word-spacing:8.645136pt;}
.ws1e_c00184{word-spacing:8.689406pt;}
.ws1f_c00184{word-spacing:8.964848pt;}
.ws22_c00184{word-spacing:9.318245pt;}
.ws23_c00184{word-spacing:9.546913pt;}
.ws26_c00184{word-spacing:9.562505pt;}
.ws24_c00184{word-spacing:9.614475pt;}
.ws19_c00184{word-spacing:9.622304pt;}
.wsc_c00184{word-spacing:10.238480pt;}
.ws25_c00184{word-spacing:10.560331pt;}
.ws15_c00184{word-spacing:10.854656pt;}
.wsa_c00184{word-spacing:12.472896pt;}
.wsb_c00184{word-spacing:12.504016pt;}
.ws2b_c00184{word-spacing:12.550787pt;}
.ws16_c00184{word-spacing:15.665808pt;}
.ws1d_c00184{word-spacing:15.772935pt;}
.ws5_c00184{word-spacing:31.045312pt;}
._3_c00184{margin-left:-2.408688pt;}
._1_c00184{margin-left:-1.195008pt;}
._0_c00184{width:0.970944pt;}
._2_c00184{width:5.271728pt;}
.fs2_c00184{font-size:33.608533pt;}
.fs1_c00184{font-size:41.388800pt;}
.fs3_c00184{font-size:51.970133pt;}
.fs0_c00184{font-size:62.240000pt;}
.y0_c00184{bottom:0.000000pt;}
.y2_c00184{bottom:97.547527pt;}
.y1_c00184{bottom:115.387067pt;}
.y26_c00184{bottom:136.107200pt;}
.y25_c00184{bottom:151.947067pt;}
.y24_c00184{bottom:167.947067pt;}
.y23_c00184{bottom:180.504967pt;}
.y22_c00184{bottom:196.505272pt;}
.y21_c00184{bottom:212.345769pt;}
.y20_c00184{bottom:228.186265pt;}
.y1f_c00184{bottom:244.186570pt;}
.y1e_c00184{bottom:263.307067pt;}
.y1d_c00184{bottom:276.346619pt;}
.y1c_c00184{bottom:296.587067pt;}
.y1b_c00184{bottom:328.664887pt;}
.y1a_c00184{bottom:355.465431pt;}
.y19_c00184{bottom:387.545483pt;}
.y18_c00184{bottom:419.625535pt;}
.y17_c00184{bottom:446.426079pt;}
.y16_c00184{bottom:473.305979pt;}
.y15_c00184{bottom:500.106523pt;}
.y14_c00184{bottom:526.905635pt;}
.y13_c00184{bottom:553.706179pt;}
.y12_c00184{bottom:580.586079pt;}
.y11_c00184{bottom:607.386623pt;}
.y10_c00184{bottom:634.266523pt;}
.yf_c00184{bottom:661.065283pt;}
.ye_c00184{bottom:687.945183pt;}
.yd_c00184{bottom:714.745727pt;}
.yc_c00184{bottom:741.625627pt;}
.yb_c00184{bottom:768.426171pt;}
.ya_c00184{bottom:795.306071pt;}
.y9_c00184{bottom:822.106615pt;}
.y8_c00184{bottom:848.986515pt;}
.y7_c00184{bottom:875.787059pt;}
.y6_c00184{bottom:902.666959pt;}
.y5_c00184{bottom:933.387159pt;}
.y4_c00184{bottom:960.267059pt;}
.y3_c00184{bottom:987.067603pt;}
.ha_c00184{height:34.967066pt;}
.h8_c00184{height:34.967599pt;}
.h9_c00184{height:48.087599pt;}
.h3_c00184{height:55.645234pt;}
.h1_c00184{height:55.797187pt;}
.h7_c00184{height:55.798979pt;}
.h5_c00184{height:65.590140pt;}
.h6_c00184{height:65.593132pt;}
.h4_c00184{height:65.810502pt;}
.h2_c00184{height:65.904044pt;}
.h0_c00184{height:1122.666667pt;}
.w0_c00184{width:793.333333pt;}
.x0_c00184{left:0.000000pt;}
.x2_c00184{left:73.520052pt;}
.x1_c00184{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bbfc9194507fd801ce10f3db.woff2')format("woff");}.ff1_c00185{font-family:ff1_c00185;line-height:1.106934;font-style:normal;font-weight:normal;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_766b59a1803ef515031ee81f.woff2')format("woff");}.ff2_c00185{font-family:ff2_c00185;line-height:1.104492;font-style:normal;font-weight:normal;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_5b123f03ae48057282c6a2a0.woff2')format("woff");}.ff3_c00185{font-family:ff3_c00185;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00185;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff4_c00185{font-family:ff4_c00185;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00185;src:url('chunks/assets/font_05750603d7b1ec9ea732a91b.woff2')format("woff");}.ff5_c00185{font-family:ff5_c00185;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00185{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00185{vertical-align:-14.400000px;}
.v0_c00185{vertical-align:0.000000px;}
.v1_c00185{vertical-align:32.034582px;}
.ls12_c00185{letter-spacing:-0.081853px;}
.lsc_c00185{letter-spacing:-0.075619px;}
.lsd_c00185{letter-spacing:-0.070160px;}
.ls4_c00185{letter-spacing:-0.063018px;}
.ls10_c00185{letter-spacing:-0.058466px;}
.ls13_c00185{letter-spacing:-0.052620px;}
.ls6_c00185{letter-spacing:-0.042012px;}
.lsf_c00185{letter-spacing:-0.035080px;}
.ls8_c00185{letter-spacing:-0.035010px;}
.ls16_c00185{letter-spacing:-0.029233px;}
.ls7_c00185{letter-spacing:-0.028008px;}
.lsa_c00185{letter-spacing:-0.021006px;}
.ls11_c00185{letter-spacing:-0.017540px;}
.lsb_c00185{letter-spacing:-0.014004px;}
.ls9_c00185{letter-spacing:-0.007002px;}
.ls14_c00185{letter-spacing:-0.005847px;}
.ls5_c00185{letter-spacing:0.000000px;}
.ls1_c00185{letter-spacing:0.007002px;}
.ls2_c00185{letter-spacing:0.014004px;}
.ls0_c00185{letter-spacing:0.023281px;}
.ls3_c00185{letter-spacing:0.028008px;}
.lse_c00185{letter-spacing:0.058466px;}
.ls15_c00185{letter-spacing:0.286485px;}
.ls17_c00185{letter-spacing:0.385878px;}
.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;}
}
.ws3_c00185{word-spacing:-58.466400px;}
.ws0_c00185{word-spacing:-19.402542px;}
.ws1_c00185{word-spacing:-12.967628px;}
.ws2_c00185{word-spacing:-10.397640px;}
.ws2a_c00185{word-spacing:-0.374185px;}
.ws21_c00185{word-spacing:-0.309872px;}
.ws22_c00185{word-spacing:-0.286485px;}
.ws20_c00185{word-spacing:-0.046773px;}
.ws1a_c00185{word-spacing:-0.028008px;}
.ws1c_c00185{word-spacing:-0.007002px;}
.ws4_c00185{word-spacing:0.000000px;}
.wsd_c00185{word-spacing:0.007002px;}
.ws27_c00185{word-spacing:0.017540px;}
.ws26_c00185{word-spacing:0.029233px;}
.ws11_c00185{word-spacing:0.049014px;}
.ws1f_c00185{word-spacing:0.081853px;}
.ws19_c00185{word-spacing:0.357102px;}
.ws6_c00185{word-spacing:1.827522px;}
.ws15_c00185{word-spacing:2.177622px;}
.ws1e_c00185{word-spacing:2.478708px;}
.ws14_c00185{word-spacing:2.520720px;}
.ws1b_c00185{word-spacing:3.241926px;}
.ws10_c00185{word-spacing:4.663332px;}
.ws12_c00185{word-spacing:4.684338px;}
.wsf_c00185{word-spacing:5.020434px;}
.ws16_c00185{word-spacing:5.734638px;}
.ws17_c00185{word-spacing:5.783652px;}
.wsb_c00185{word-spacing:6.112746px;}
.wsa_c00185{word-spacing:6.133752px;}
.ws18_c00185{word-spacing:6.147756px;}
.wse_c00185{word-spacing:8.262360px;}
.ws9_c00185{word-spacing:13.338810px;}
.ws5_c00185{word-spacing:13.709916px;}
.ws25_c00185{word-spacing:14.827079px;}
.ws23_c00185{word-spacing:15.148644px;}
.ws24_c00185{word-spacing:15.212957px;}
.ws13_c00185{word-spacing:21.965274px;}
.ws7_c00185{word-spacing:25.214202px;}
.ws8_c00185{word-spacing:25.585308px;}
.wsc_c00185{word-spacing:26.635608px;}
.ws28_c00185{word-spacing:44.007659px;}
.ws29_c00185{word-spacing:44.323378px;}
.ws1d_c00185{word-spacing:68.759640px;}
._3_c00185{margin-left:-2.712330px;}
._0_c00185{margin-left:-1.099314px;}
._1_c00185{width:1.162332px;}
._2_c00185{width:5.930694px;}
.fc0_c00185{color:rgb(0,0,0);}
.fs2_c00185{font-size:37.809600px;}
.fs1_c00185{font-size:46.562400px;}
.fs3_c00185{font-size:58.466400px;}
.fs0_c00185{font-size:70.020000px;}
.y0_c00185{bottom:0.000000px;}
.y2_c00185{bottom:109.740968px;}
.y1_c00185{bottom:129.810450px;}
.y22_c00185{bottom:149.429891px;}
.y21_c00185{bottom:170.940450px;}
.y20_c00185{bottom:185.249891px;}
.y1f_c00185{bottom:206.760450px;}
.y1e_c00185{bottom:224.670450px;}
.y1d_c00185{bottom:239.428520px;}
.y1c_c00185{bottom:332.308299px;}
.y1b_c00185{bottom:362.458911px;}
.y1a_c00185{bottom:392.698799px;}
.y19_c00185{bottom:422.849411px;}
.y18_c00185{bottom:453.089298px;}
.y17_c00185{bottom:483.239910px;}
.y16_c00185{bottom:513.479798px;}
.y15_c00185{bottom:543.630410px;}
.y14_c00185{bottom:573.781022px;}
.y13_c00185{bottom:606.900482px;}
.y12_c00185{bottom:637.140369px;}
.y11_c00185{bottom:667.290981px;}
.y10_c00185{bottom:697.441593px;}
.yf_c00185{bottom:730.561053px;}
.ye_c00185{bottom:765.209217px;}
.yd_c00185{bottom:795.359829px;}
.yc_c00185{bottom:825.599716px;}
.yb_c00185{bottom:860.159838px;}
.ya_c00185{bottom:890.310320px;}
.y9_c00185{bottom:920.550207px;}
.y8_c00185{bottom:955.110329px;}
.y7_c00185{bottom:989.671805px;}
.y6_c00185{bottom:1019.911692px;}
.y5_c00185{bottom:1050.062304px;}
.y4_c00185{bottom:1080.302192px;}
.y3_c00185{bottom:1110.361778px;}
.h8_c00185{height:39.338549px;}
.h7_c00185{height:39.698549px;}
.h9_c00185{height:54.098549px;}
.h2_c00185{height:62.600889px;}
.h1_c00185{height:62.771836px;}
.h6_c00185{height:62.779558px;}
.h3_c00185{height:73.663368px;}
.h5_c00185{height:73.673718px;}
.h4_c00185{height:74.142986px;}
.h0_c00185{height:1263.000000px;}
.w0_c00185{width:892.500000px;}
.x0_c00185{left:0.000000px;}
.x2_c00185{left:82.710059px;}
.x4_c00185{left:85.590212px;}
.x3_c00185{left:114.839573px;}
.x1_c00185{left:431.730000px;}
@media print{
.v2_c00185{vertical-align:-12.800000pt;}
.v0_c00185{vertical-align:0.000000pt;}
.v1_c00185{vertical-align:28.475184pt;}
.ls12_c00185{letter-spacing:-0.072758pt;}
.lsc_c00185{letter-spacing:-0.067217pt;}
.lsd_c00185{letter-spacing:-0.062364pt;}
.ls4_c00185{letter-spacing:-0.056016pt;}
.ls10_c00185{letter-spacing:-0.051970pt;}
.ls13_c00185{letter-spacing:-0.046773pt;}
.ls6_c00185{letter-spacing:-0.037344pt;}
.lsf_c00185{letter-spacing:-0.031182pt;}
.ls8_c00185{letter-spacing:-0.031120pt;}
.ls16_c00185{letter-spacing:-0.025985pt;}
.ls7_c00185{letter-spacing:-0.024896pt;}
.lsa_c00185{letter-spacing:-0.018672pt;}
.ls11_c00185{letter-spacing:-0.015591pt;}
.lsb_c00185{letter-spacing:-0.012448pt;}
.ls9_c00185{letter-spacing:-0.006224pt;}
.ls14_c00185{letter-spacing:-0.005197pt;}
.ls5_c00185{letter-spacing:0.000000pt;}
.ls1_c00185{letter-spacing:0.006224pt;}
.ls2_c00185{letter-spacing:0.012448pt;}
.ls0_c00185{letter-spacing:0.020694pt;}
.ls3_c00185{letter-spacing:0.024896pt;}
.lse_c00185{letter-spacing:0.051970pt;}
.ls15_c00185{letter-spacing:0.254654pt;}
.ls17_c00185{letter-spacing:0.343003pt;}
.ws3_c00185{word-spacing:-51.970133pt;}
.ws0_c00185{word-spacing:-17.246704pt;}
.ws1_c00185{word-spacing:-11.526781pt;}
.ws2_c00185{word-spacing:-9.242347pt;}
.ws2a_c00185{word-spacing:-0.332609pt;}
.ws21_c00185{word-spacing:-0.275442pt;}
.ws22_c00185{word-spacing:-0.254654pt;}
.ws20_c00185{word-spacing:-0.041576pt;}
.ws1a_c00185{word-spacing:-0.024896pt;}
.ws1c_c00185{word-spacing:-0.006224pt;}
.ws4_c00185{word-spacing:0.000000pt;}
.wsd_c00185{word-spacing:0.006224pt;}
.ws27_c00185{word-spacing:0.015591pt;}
.ws26_c00185{word-spacing:0.025985pt;}
.ws11_c00185{word-spacing:0.043568pt;}
.ws1f_c00185{word-spacing:0.072758pt;}
.ws19_c00185{word-spacing:0.317424pt;}
.ws6_c00185{word-spacing:1.624464pt;}
.ws15_c00185{word-spacing:1.935664pt;}
.ws1e_c00185{word-spacing:2.203296pt;}
.ws14_c00185{word-spacing:2.240640pt;}
.ws1b_c00185{word-spacing:2.881712pt;}
.ws10_c00185{word-spacing:4.145184pt;}
.ws12_c00185{word-spacing:4.163856pt;}
.wsf_c00185{word-spacing:4.462608pt;}
.ws16_c00185{word-spacing:5.097456pt;}
.ws17_c00185{word-spacing:5.141024pt;}
.wsb_c00185{word-spacing:5.433552pt;}
.wsa_c00185{word-spacing:5.452224pt;}
.ws18_c00185{word-spacing:5.464672pt;}
.wse_c00185{word-spacing:7.344320pt;}
.ws9_c00185{word-spacing:11.856720pt;}
.ws5_c00185{word-spacing:12.186592pt;}
.ws25_c00185{word-spacing:13.179626pt;}
.ws23_c00185{word-spacing:13.465462pt;}
.ws24_c00185{word-spacing:13.522629pt;}
.ws13_c00185{word-spacing:19.524688pt;}
.ws7_c00185{word-spacing:22.412624pt;}
.ws8_c00185{word-spacing:22.742496pt;}
.wsc_c00185{word-spacing:23.676096pt;}
.ws28_c00185{word-spacing:39.117919pt;}
.ws29_c00185{word-spacing:39.398558pt;}
.ws1d_c00185{word-spacing:61.119680pt;}
._3_c00185{margin-left:-2.410960pt;}
._0_c00185{margin-left:-0.977168pt;}
._1_c00185{width:1.033184pt;}
._2_c00185{width:5.271728pt;}
.fs2_c00185{font-size:33.608533pt;}
.fs1_c00185{font-size:41.388800pt;}
.fs3_c00185{font-size:51.970133pt;}
.fs0_c00185{font-size:62.240000pt;}
.y0_c00185{bottom:0.000000pt;}
.y2_c00185{bottom:97.547527pt;}
.y1_c00185{bottom:115.387067pt;}
.y22_c00185{bottom:132.826570pt;}
.y21_c00185{bottom:151.947067pt;}
.y20_c00185{bottom:164.666570pt;}
.y1f_c00185{bottom:183.787067pt;}
.y1e_c00185{bottom:199.707067pt;}
.y1d_c00185{bottom:212.825351pt;}
.y1c_c00185{bottom:295.385155pt;}
.y1b_c00185{bottom:322.185699pt;}
.y1a_c00185{bottom:349.065599pt;}
.y19_c00185{bottom:375.866143pt;}
.y18_c00185{bottom:402.746043pt;}
.y17_c00185{bottom:429.546587pt;}
.y16_c00185{bottom:456.426487pt;}
.y15_c00185{bottom:483.227031pt;}
.y14_c00185{bottom:510.027575pt;}
.y13_c00185{bottom:539.467095pt;}
.y12_c00185{bottom:566.346995pt;}
.y11_c00185{bottom:593.147539pt;}
.y10_c00185{bottom:619.948083pt;}
.yf_c00185{bottom:649.387603pt;}
.ye_c00185{bottom:680.185971pt;}
.yd_c00185{bottom:706.986515pt;}
.yc_c00185{bottom:733.866415pt;}
.yb_c00185{bottom:764.586523pt;}
.ya_c00185{bottom:791.386951pt;}
.y9_c00185{bottom:818.266851pt;}
.y8_c00185{bottom:848.986959pt;}
.y7_c00185{bottom:879.708271pt;}
.y6_c00185{bottom:906.588171pt;}
.y5_c00185{bottom:933.388715pt;}
.y4_c00185{bottom:960.268615pt;}
.y3_c00185{bottom:986.988247pt;}
.h8_c00185{height:34.967599pt;}
.h7_c00185{height:35.287599pt;}
.h9_c00185{height:48.087599pt;}
.h2_c00185{height:55.645234pt;}
.h1_c00185{height:55.797187pt;}
.h6_c00185{height:55.804051pt;}
.h3_c00185{height:65.478550pt;}
.h5_c00185{height:65.487750pt;}
.h4_c00185{height:65.904876pt;}
.h0_c00185{height:1122.666667pt;}
.w0_c00185{width:793.333333pt;}
.x0_c00185{left:0.000000pt;}
.x2_c00185{left:73.520052pt;}
.x4_c00185{left:76.080188pt;}
.x3_c00185{left:102.079620pt;}
.x1_c00185{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c8312e55ba66a4098b35f5aa.woff2')format("woff");}.ff1_c00186{font-family:ff1_c00186;line-height:1.106934;font-style:normal;font-weight:normal;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_d4b2b899e981e9da75eb705f.woff2')format("woff");}.ff2_c00186{font-family:ff2_c00186;line-height:1.104492;font-style:normal;font-weight:normal;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_6c59b8c66a15aa20a98aa4a1.woff2')format("woff");}.ff3_c00186{font-family:ff3_c00186;line-height:1.133301;font-style:normal;font-weight:normal;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_6cf152dd31fcf4eb641ebccd.woff2')format("woff");}.ff4_c00186{font-family:ff4_c00186;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00186;src:url('chunks/assets/font_d2ef0493caf4dc7a3c7550a1.woff2')format("woff");}.ff5_c00186{font-family:ff5_c00186;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00186;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff6_c00186{font-family:ff6_c00186;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00186{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00186{vertical-align:-14.400000px;}
.v0_c00186{vertical-align:0.000000px;}
.v1_c00186{vertical-align:32.040036px;}
.ls19_c00186{letter-spacing:-0.707443px;}
.ls1e_c00186{letter-spacing:-0.660670px;}
.ls18_c00186{letter-spacing:-0.485271px;}
.ls17_c00186{letter-spacing:-0.432651px;}
.ls12_c00186{letter-spacing:-0.222172px;}
.ls14_c00186{letter-spacing:-0.122779px;}
.ls1a_c00186{letter-spacing:-0.105240px;}
.ls1b_c00186{letter-spacing:-0.087700px;}
.ls15_c00186{letter-spacing:-0.079400px;}
.ls11_c00186{letter-spacing:-0.075619px;}
.ls13_c00186{letter-spacing:-0.070160px;}
.ls9_c00186{letter-spacing:-0.063018px;}
.ls1d_c00186{letter-spacing:-0.046773px;}
.lsd_c00186{letter-spacing:-0.042012px;}
.ls16_c00186{letter-spacing:-0.040926px;}
.lsc_c00186{letter-spacing:-0.035010px;}
.lsf_c00186{letter-spacing:-0.028008px;}
.lsb_c00186{letter-spacing:-0.021006px;}
.lse_c00186{letter-spacing:-0.014004px;}
.ls10_c00186{letter-spacing:-0.007002px;}
.lsa_c00186{letter-spacing:0.000000px;}
.ls1_c00186{letter-spacing:0.007002px;}
.ls2_c00186{letter-spacing:0.014004px;}
.ls0_c00186{letter-spacing:0.023281px;}
.ls8_c00186{letter-spacing:0.023387px;}
.ls4_c00186{letter-spacing:0.028008px;}
.ls7_c00186{letter-spacing:0.029233px;}
.ls3_c00186{letter-spacing:0.042012px;}
.ls1c_c00186{letter-spacing:0.152013px;}
.ls6_c00186{letter-spacing:0.362492px;}
.ls5_c00186{letter-spacing:10.085454px;}
.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;}
}
.ws4_c00186{word-spacing:-58.466400px;}
.ws1_c00186{word-spacing:-19.465560px;}
.ws6_c00186{word-spacing:-16.089953px;}
.ws5_c00186{word-spacing:-15.709922px;}
.ws0_c00186{word-spacing:-12.967628px;}
.ws2_c00186{word-spacing:-10.397640px;}
.ws3_c00186{word-spacing:-10.393859px;}
.ws7_c00186{word-spacing:0.000000px;}
.ws1e_c00186{word-spacing:0.007002px;}
.wsc_c00186{word-spacing:0.014004px;}
.ws9_c00186{word-spacing:0.021006px;}
.ws1c_c00186{word-spacing:0.028008px;}
.ws2f_c00186{word-spacing:0.058466px;}
.ws27_c00186{word-spacing:0.134473px;}
.ws30_c00186{word-spacing:0.315719px;}
.wsd_c00186{word-spacing:0.336096px;}
.wsb_c00186{word-spacing:0.357102px;}
.ws1d_c00186{word-spacing:0.364104px;}
.ws19_c00186{word-spacing:0.378108px;}
.wse_c00186{word-spacing:0.385110px;}
.ws8_c00186{word-spacing:1.085310px;}
.ws2b_c00186{word-spacing:1.426580px;}
.ws28_c00186{word-spacing:1.496740px;}
.ws29_c00186{word-spacing:1.888465px;}
.ws24_c00186{word-spacing:2.163618px;}
.ws2a_c00186{word-spacing:2.519902px;}
.ws21_c00186{word-spacing:3.241926px;}
.ws22_c00186{word-spacing:3.592026px;}
.ws11_c00186{word-spacing:4.299228px;}
.ws12_c00186{word-spacing:4.306230px;}
.ws10_c00186{word-spacing:5.377536px;}
.wsf_c00186{word-spacing:5.426550px;}
.ws23_c00186{word-spacing:7.156044px;}
.wsa_c00186{word-spacing:7.590168px;}
.ws13_c00186{word-spacing:7.891254px;}
.ws25_c00186{word-spacing:10.313473px;}
.ws26_c00186{word-spacing:10.523952px;}
.ws17_c00186{word-spacing:11.868390px;}
.ws18_c00186{word-spacing:12.232494px;}
.ws16_c00186{word-spacing:12.939696px;}
.ws20_c00186{word-spacing:13.324806px;}
.ws1a_c00186{word-spacing:22.651470px;}
.ws15_c00186{word-spacing:31.985136px;}
.ws14_c00186{word-spacing:32.034150px;}
.ws1b_c00186{word-spacing:32.412258px;}
.ws2d_c00186{word-spacing:38.739837px;}
.ws2e_c00186{word-spacing:38.868463px;}
.ws2c_c00186{word-spacing:38.979549px;}
.ws1f_c00186{word-spacing:44.294652px;}
._3_c00186{margin-left:-2.706552px;}
._0_c00186{margin-left:-1.169334px;}
._1_c00186{width:1.029294px;}
._2_c00186{width:5.930694px;}
.fc0_c00186{color:rgb(0,0,0);}
.fs2_c00186{font-size:37.809600px;}
.fs1_c00186{font-size:46.562400px;}
.fs3_c00186{font-size:58.466400px;}
.fs0_c00186{font-size:70.020000px;}
.y0_c00186{bottom:0.000000px;}
.y2_c00186{bottom:109.740968px;}
.y1_c00186{bottom:129.810450px;}
.y23_c00186{bottom:149.429548px;}
.y22_c00186{bottom:167.250107px;}
.y21_c00186{bottom:188.940450px;}
.y20_c00186{bottom:203.070107px;}
.y1f_c00186{bottom:224.670450px;}
.y1e_c00186{bottom:261.297682px;}
.y1d_c00186{bottom:300.627916px;}
.y1c_c00186{bottom:330.778528px;}
.y1b_c00186{bottom:361.018416px;}
.y1a_c00186{bottom:391.169028px;}
.y19_c00186{bottom:421.408915px;}
.y18_c00186{bottom:464.698780px;}
.y17_c00186{bottom:497.909266px;}
.y16_c00186{bottom:528.059878px;}
.y15_c00186{bottom:558.299766px;}
.y14_c00186{bottom:588.359352px;}
.y13_c00186{bottom:621.569838px;}
.y12_c00186{bottom:651.718533px;}
.y11_c00186{bottom:681.958421px;}
.y10_c00186{bottom:712.109033px;}
.yf_c00186{bottom:742.348920px;}
.ye_c00186{bottom:772.499532px;}
.yd_c00186{bottom:802.739420px;}
.yc_c00186{bottom:832.890032px;}
.yb_c00186{bottom:863.129919px;}
.ya_c00186{bottom:893.280531px;}
.y9_c00186{bottom:923.520419px;}
.y8_c00186{bottom:953.580005px;}
.y7_c00186{bottom:986.790491px;}
.y6_c00186{bottom:1016.850077px;}
.y5_c00186{bottom:1050.060563px;}
.y4_c00186{bottom:1080.300441px;}
.y3_c00186{bottom:1110.451053px;}
.h8_c00186{height:39.338549px;}
.h6_c00186{height:39.698549px;}
.h7_c00186{height:54.098549px;}
.h2_c00186{height:62.600889px;}
.h1_c00186{height:62.771836px;}
.h5_c00186{height:62.782906px;}
.h3_c00186{height:73.668822px;}
.h4_c00186{height:74.036454px;}
.h0_c00186{height:1263.000000px;}
.w0_c00186{width:892.500000px;}
.x0_c00186{left:0.000000px;}
.x2_c00186{left:82.710059px;}
.x3_c00186{left:106.110328px;}
.x1_c00186{left:431.730000px;}
@media print{
.v2_c00186{vertical-align:-12.800000pt;}
.v0_c00186{vertical-align:0.000000pt;}
.v1_c00186{vertical-align:28.480032pt;}
.ls19_c00186{letter-spacing:-0.628839pt;}
.ls1e_c00186{letter-spacing:-0.587263pt;}
.ls18_c00186{letter-spacing:-0.431352pt;}
.ls17_c00186{letter-spacing:-0.384579pt;}
.ls12_c00186{letter-spacing:-0.197487pt;}
.ls14_c00186{letter-spacing:-0.109137pt;}
.ls1a_c00186{letter-spacing:-0.093546pt;}
.ls1b_c00186{letter-spacing:-0.077955pt;}
.ls15_c00186{letter-spacing:-0.070578pt;}
.ls11_c00186{letter-spacing:-0.067217pt;}
.ls13_c00186{letter-spacing:-0.062364pt;}
.ls9_c00186{letter-spacing:-0.056016pt;}
.ls1d_c00186{letter-spacing:-0.041576pt;}
.lsd_c00186{letter-spacing:-0.037344pt;}
.ls16_c00186{letter-spacing:-0.036379pt;}
.lsc_c00186{letter-spacing:-0.031120pt;}
.lsf_c00186{letter-spacing:-0.024896pt;}
.lsb_c00186{letter-spacing:-0.018672pt;}
.lse_c00186{letter-spacing:-0.012448pt;}
.ls10_c00186{letter-spacing:-0.006224pt;}
.lsa_c00186{letter-spacing:0.000000pt;}
.ls1_c00186{letter-spacing:0.006224pt;}
.ls2_c00186{letter-spacing:0.012448pt;}
.ls0_c00186{letter-spacing:0.020694pt;}
.ls8_c00186{letter-spacing:0.020788pt;}
.ls4_c00186{letter-spacing:0.024896pt;}
.ls7_c00186{letter-spacing:0.025985pt;}
.ls3_c00186{letter-spacing:0.037344pt;}
.ls1c_c00186{letter-spacing:0.135122pt;}
.ls6_c00186{letter-spacing:0.322215pt;}
.ls5_c00186{letter-spacing:8.964848pt;}
.ws4_c00186{word-spacing:-51.970133pt;}
.ws1_c00186{word-spacing:-17.302720pt;}
.ws6_c00186{word-spacing:-14.302181pt;}
.ws5_c00186{word-spacing:-13.964375pt;}
.ws0_c00186{word-spacing:-11.526781pt;}
.ws2_c00186{word-spacing:-9.242347pt;}
.ws3_c00186{word-spacing:-9.238986pt;}
.ws7_c00186{word-spacing:0.000000pt;}
.ws1e_c00186{word-spacing:0.006224pt;}
.wsc_c00186{word-spacing:0.012448pt;}
.ws9_c00186{word-spacing:0.018672pt;}
.ws1c_c00186{word-spacing:0.024896pt;}
.ws2f_c00186{word-spacing:0.051970pt;}
.ws27_c00186{word-spacing:0.119531pt;}
.ws30_c00186{word-spacing:0.280639pt;}
.wsd_c00186{word-spacing:0.298752pt;}
.wsb_c00186{word-spacing:0.317424pt;}
.ws1d_c00186{word-spacing:0.323648pt;}
.ws19_c00186{word-spacing:0.336096pt;}
.wse_c00186{word-spacing:0.342320pt;}
.ws8_c00186{word-spacing:0.964720pt;}
.ws2b_c00186{word-spacing:1.268071pt;}
.ws28_c00186{word-spacing:1.330435pt;}
.ws29_c00186{word-spacing:1.678635pt;}
.ws24_c00186{word-spacing:1.923216pt;}
.ws2a_c00186{word-spacing:2.239913pt;}
.ws21_c00186{word-spacing:2.881712pt;}
.ws22_c00186{word-spacing:3.192912pt;}
.ws11_c00186{word-spacing:3.821536pt;}
.ws12_c00186{word-spacing:3.827760pt;}
.ws10_c00186{word-spacing:4.780032pt;}
.wsf_c00186{word-spacing:4.823600pt;}
.ws23_c00186{word-spacing:6.360928pt;}
.wsa_c00186{word-spacing:6.746816pt;}
.ws13_c00186{word-spacing:7.014448pt;}
.ws25_c00186{word-spacing:9.167532pt;}
.ws26_c00186{word-spacing:9.354624pt;}
.ws17_c00186{word-spacing:10.549680pt;}
.ws18_c00186{word-spacing:10.873328pt;}
.ws16_c00186{word-spacing:11.501952pt;}
.ws20_c00186{word-spacing:11.844272pt;}
.ws1a_c00186{word-spacing:20.134640pt;}
.ws15_c00186{word-spacing:28.431232pt;}
.ws14_c00186{word-spacing:28.474800pt;}
.ws1b_c00186{word-spacing:28.810896pt;}
.ws2d_c00186{word-spacing:34.435410pt;}
.ws2e_c00186{word-spacing:34.549745pt;}
.ws2c_c00186{word-spacing:34.648488pt;}
.ws1f_c00186{word-spacing:39.373024pt;}
._3_c00186{margin-left:-2.405824pt;}
._0_c00186{margin-left:-1.039408pt;}
._1_c00186{width:0.914928pt;}
._2_c00186{width:5.271728pt;}
.fs2_c00186{font-size:33.608533pt;}
.fs1_c00186{font-size:41.388800pt;}
.fs3_c00186{font-size:51.970133pt;}
.fs0_c00186{font-size:62.240000pt;}
.y0_c00186{bottom:0.000000pt;}
.y2_c00186{bottom:97.547527pt;}
.y1_c00186{bottom:115.387067pt;}
.y23_c00186{bottom:132.826265pt;}
.y22_c00186{bottom:148.666762pt;}
.y21_c00186{bottom:167.947067pt;}
.y20_c00186{bottom:180.506762pt;}
.y1f_c00186{bottom:199.707067pt;}
.y1e_c00186{bottom:232.264607pt;}
.y1d_c00186{bottom:267.224815pt;}
.y1c_c00186{bottom:294.025359pt;}
.y1b_c00186{bottom:320.905259pt;}
.y1a_c00186{bottom:347.705803pt;}
.y19_c00186{bottom:374.585703pt;}
.y18_c00186{bottom:413.065583pt;}
.y17_c00186{bottom:442.586015pt;}
.y16_c00186{bottom:469.386559pt;}
.y15_c00186{bottom:496.266459pt;}
.y14_c00186{bottom:522.986091pt;}
.y13_c00186{bottom:552.506523pt;}
.y12_c00186{bottom:579.305363pt;}
.y11_c00186{bottom:606.185263pt;}
.y10_c00186{bottom:632.985807pt;}
.yf_c00186{bottom:659.865707pt;}
.ye_c00186{bottom:686.666251pt;}
.yd_c00186{bottom:713.546151pt;}
.yc_c00186{bottom:740.346695pt;}
.yb_c00186{bottom:767.226595pt;}
.ya_c00186{bottom:794.027139pt;}
.y9_c00186{bottom:820.907039pt;}
.y8_c00186{bottom:847.626671pt;}
.y7_c00186{bottom:877.147103pt;}
.y6_c00186{bottom:903.866735pt;}
.y5_c00186{bottom:933.387167pt;}
.y4_c00186{bottom:960.267059pt;}
.y3_c00186{bottom:987.067603pt;}
.h8_c00186{height:34.967599pt;}
.h6_c00186{height:35.287599pt;}
.h7_c00186{height:48.087599pt;}
.h2_c00186{height:55.645234pt;}
.h1_c00186{height:55.797187pt;}
.h5_c00186{height:55.807028pt;}
.h3_c00186{height:65.483398pt;}
.h4_c00186{height:65.810182pt;}
.h0_c00186{height:1122.666667pt;}
.w0_c00186{width:793.333333pt;}
.x0_c00186{left:0.000000pt;}
.x2_c00186{left:73.520052pt;}
.x3_c00186{left:94.320292pt;}
.x1_c00186{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5fa670517c9c0ab829cc8e28.woff2')format("woff");}.ff1_c00187{font-family:ff1_c00187;line-height:1.106934;font-style:normal;font-weight:normal;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_1faea4c4e39b5bfd8e81b6fb.woff2')format("woff");}.ff2_c00187{font-family:ff2_c00187;line-height:1.104492;font-style:normal;font-weight:normal;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_72cc0e58bff748aa9b5d6e5f.woff2')format("woff");}.ff3_c00187{font-family:ff3_c00187;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00187;src:url('chunks/assets/font_8847c2f916e51e7a47420cb9.woff2')format("woff");}.ff4_c00187{font-family:ff4_c00187;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00187;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff5_c00187{font-family:ff5_c00187;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00187;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff6_c00187{font-family:ff6_c00187;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00187{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00187{vertical-align:-14.760000px;}
.v0_c00187{vertical-align:0.000000px;}
.v1_c00187{vertical-align:32.040036px;}
.ls27_c00187{letter-spacing:-0.292332px;}
.ls20_c00187{letter-spacing:-0.239712px;}
.ls1f_c00187{letter-spacing:-0.192939px;}
.ls16_c00187{letter-spacing:-0.187092px;}
.ls1d_c00187{letter-spacing:-0.152013px;}
.ls1a_c00187{letter-spacing:-0.134473px;}
.ls22_c00187{letter-spacing:-0.076006px;}
.ls14_c00187{letter-spacing:-0.075619px;}
.ls15_c00187{letter-spacing:-0.070160px;}
.ls13_c00187{letter-spacing:-0.070020px;}
.ls8_c00187{letter-spacing:-0.063018px;}
.ls28_c00187{letter-spacing:-0.058466px;}
.lsa_c00187{letter-spacing:-0.056016px;}
.ls21_c00187{letter-spacing:-0.052620px;}
.ls12_c00187{letter-spacing:-0.049014px;}
.lsc_c00187{letter-spacing:-0.042012px;}
.ls24_c00187{letter-spacing:-0.040926px;}
.ls1c_c00187{letter-spacing:-0.035080px;}
.lsf_c00187{letter-spacing:-0.035010px;}
.lsb_c00187{letter-spacing:-0.028008px;}
.ls26_c00187{letter-spacing:-0.023387px;}
.lse_c00187{letter-spacing:-0.021006px;}
.ls11_c00187{letter-spacing:-0.014004px;}
.ls10_c00187{letter-spacing:-0.007002px;}
.ls9_c00187{letter-spacing:0.000000px;}
.ls3_c00187{letter-spacing:0.005847px;}
.ls6_c00187{letter-spacing:0.011693px;}
.ls0_c00187{letter-spacing:0.014004px;}
.ls1_c00187{letter-spacing:0.023281px;}
.ls1e_c00187{letter-spacing:0.023387px;}
.ls2_c00187{letter-spacing:0.028008px;}
.ls1b_c00187{letter-spacing:0.058466px;}
.ls25_c00187{letter-spacing:0.081853px;}
.ls4_c00187{letter-spacing:0.099393px;}
.ls5_c00187{letter-spacing:0.105240px;}
.ls17_c00187{letter-spacing:0.128626px;}
.ls7_c00187{letter-spacing:0.333258px;}
.lsd_c00187{letter-spacing:0.343098px;}
.ls23_c00187{letter-spacing:0.344952px;}
.ls18_c00187{letter-spacing:0.537891px;}
.ls19_c00187{letter-spacing:0.824376px;}
.sc__c00187{text-shadow:none;}
.sc0_c00187{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00187{-webkit-text-stroke:0px transparent;}
.sc0_c00187{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00187{word-spacing:-58.466400px;}
.ws3_c00187{word-spacing:-16.043180px;}
.ws0_c00187{word-spacing:-12.967628px;}
.ws1_c00187{word-spacing:-10.397640px;}
.ws31_c00187{word-spacing:-0.678210px;}
.ws22_c00187{word-spacing:-0.157859px;}
.ws28_c00187{word-spacing:-0.046773px;}
.ws6_c00187{word-spacing:-0.028008px;}
.ws1e_c00187{word-spacing:-0.014004px;}
.ws4_c00187{word-spacing:0.000000px;}
.ws13_c00187{word-spacing:0.021006px;}
.ws8_c00187{word-spacing:0.028008px;}
.ws12_c00187{word-spacing:0.035010px;}
.ws39_c00187{word-spacing:0.035080px;}
.ws5_c00187{word-spacing:0.042012px;}
.ws38_c00187{word-spacing:0.070160px;}
.ws21_c00187{word-spacing:0.081853px;}
.ws32_c00187{word-spacing:0.146166px;}
.ws2e_c00187{word-spacing:0.204632px;}
.ws23_c00187{word-spacing:0.245559px;}
.ws30_c00187{word-spacing:0.251406px;}
.ws37_c00187{word-spacing:0.304025px;}
.ws18_c00187{word-spacing:0.315090px;}
.ws2f_c00187{word-spacing:0.362492px;}
.ws7_c00187{word-spacing:0.371106px;}
.ws33_c00187{word-spacing:0.426805px;}
.ws34_c00187{word-spacing:0.450191px;}
.ws36_c00187{word-spacing:0.754217px;}
.ws35_c00187{word-spacing:1.011469px;}
.ws1d_c00187{word-spacing:1.806516px;}
.ws1c_c00187{word-spacing:2.219634px;}
.ws25_c00187{word-spacing:2.426356px;}
.ws24_c00187{word-spacing:3.075333px;}
.ws17_c00187{word-spacing:3.213918px;}
.ws16_c00187{word-spacing:3.255930px;}
.ws26_c00187{word-spacing:3.320892px;}
.ws27_c00187{word-spacing:3.385205px;}
.ws1b_c00187{word-spacing:5.748642px;}
.ws1a_c00187{word-spacing:5.797656px;}
.ws19_c00187{word-spacing:6.112746px;}
.wsb_c00187{word-spacing:7.191054px;}
.wsa_c00187{word-spacing:7.219062px;}
.ws29_c00187{word-spacing:8.191143px;}
.wsc_c00187{word-spacing:10.797084px;}
.wse_c00187{word-spacing:11.133180px;}
.ws10_c00187{word-spacing:11.147184px;}
.wsf_c00187{word-spacing:11.154186px;}
.wsd_c00187{word-spacing:11.182194px;}
.ws2d_c00187{word-spacing:12.505963px;}
.ws2a_c00187{word-spacing:13.008774px;}
.ws2c_c00187{word-spacing:13.125707px;}
.ws2b_c00187{word-spacing:13.371266px;}
.ws1f_c00187{word-spacing:15.131322px;}
.ws20_c00187{word-spacing:19.787652px;}
.ws15_c00187{word-spacing:21.258072px;}
.ws14_c00187{word-spacing:28.442124px;}
.ws11_c00187{word-spacing:31.305942px;}
.ws9_c00187{word-spacing:37.446696px;}
._3_c00187{margin-left:-2.711880px;}
._1_c00187{margin-left:-1.085310px;}
._0_c00187{width:1.169334px;}
._2_c00187{width:5.930694px;}
.fc1_c00187{color:rgb(0,126,0);}
.fc0_c00187{color:rgb(0,0,0);}
.fs2_c00187{font-size:37.809600px;}
.fs1_c00187{font-size:46.562400px;}
.fs3_c00187{font-size:58.466400px;}
.fs0_c00187{font-size:70.020000px;}
.y0_c00187{bottom:0.000000px;}
.y2_c00187{bottom:109.740968px;}
.y1_c00187{bottom:129.810450px;}
.y26_c00187{bottom:149.429548px;}
.y25_c00187{bottom:167.250107px;}
.y24_c00187{bottom:188.940450px;}
.y23_c00187{bottom:203.069548px;}
.y22_c00187{bottom:221.069891px;}
.y21_c00187{bottom:242.580450px;}
.y20_c00187{bottom:256.710107px;}
.y1f_c00187{bottom:278.400450px;}
.y1e_c00187{bottom:296.220450px;}
.y1d_c00187{bottom:310.888924px;}
.y1c_c00187{bottom:355.619451px;}
.y1b_c00187{bottom:385.859338px;}
.y1a_c00187{bottom:416.009951px;}
.y19_c00187{bottom:446.249838px;}
.y18_c00187{bottom:476.400063px;}
.y17_c00187{bottom:506.639950px;}
.y16_c00187{bottom:536.790562px;}
.y15_c00187{bottom:567.028978px;}
.y14_c00187{bottom:597.088565px;}
.y13_c00187{bottom:627.328452px;}
.y12_c00187{bottom:657.479064px;}
.y11_c00187{bottom:687.718952px;}
.y10_c00187{bottom:717.869563px;}
.yf_c00187{bottom:748.109451px;}
.ye_c00187{bottom:778.260063px;}
.yd_c00187{bottom:808.499950px;}
.yc_c00187{bottom:838.650562px;}
.yb_c00187{bottom:868.889064px;}
.ya_c00187{bottom:899.039676px;}
.y9_c00187{bottom:929.279563px;}
.y8_c00187{bottom:959.519451px;}
.y7_c00187{bottom:989.670063px;}
.y6_c00187{bottom:1019.909951px;}
.y5_c00187{bottom:1050.060563px;}
.y4_c00187{bottom:1080.300441px;}
.y3_c00187{bottom:1110.451053px;}
.h8_c00187{height:39.338549px;}
.h9_c00187{height:54.098549px;}
.h3_c00187{height:62.600889px;}
.h1_c00187{height:62.771836px;}
.h7_c00187{height:62.777938px;}
.h4_c00187{height:73.674330px;}
.h2_c00187{height:73.782500px;}
.h5_c00187{height:73.788350px;}
.h6_c00187{height:74.144612px;}
.h0_c00187{height:1263.000000px;}
.w0_c00187{width:892.500000px;}
.x0_c00187{left:0.000000px;}
.x2_c00187{left:82.710059px;}
.x1_c00187{left:431.730000px;}
@media print{
.v2_c00187{vertical-align:-13.120000pt;}
.v0_c00187{vertical-align:0.000000pt;}
.v1_c00187{vertical-align:28.480032pt;}
.ls27_c00187{letter-spacing:-0.259851pt;}
.ls20_c00187{letter-spacing:-0.213078pt;}
.ls1f_c00187{letter-spacing:-0.171501pt;}
.ls16_c00187{letter-spacing:-0.166304pt;}
.ls1d_c00187{letter-spacing:-0.135122pt;}
.ls1a_c00187{letter-spacing:-0.119531pt;}
.ls22_c00187{letter-spacing:-0.067561pt;}
.ls14_c00187{letter-spacing:-0.067217pt;}
.ls15_c00187{letter-spacing:-0.062364pt;}
.ls13_c00187{letter-spacing:-0.062240pt;}
.ls8_c00187{letter-spacing:-0.056016pt;}
.ls28_c00187{letter-spacing:-0.051970pt;}
.lsa_c00187{letter-spacing:-0.049792pt;}
.ls21_c00187{letter-spacing:-0.046773pt;}
.ls12_c00187{letter-spacing:-0.043568pt;}
.lsc_c00187{letter-spacing:-0.037344pt;}
.ls24_c00187{letter-spacing:-0.036379pt;}
.ls1c_c00187{letter-spacing:-0.031182pt;}
.lsf_c00187{letter-spacing:-0.031120pt;}
.lsb_c00187{letter-spacing:-0.024896pt;}
.ls26_c00187{letter-spacing:-0.020788pt;}
.lse_c00187{letter-spacing:-0.018672pt;}
.ls11_c00187{letter-spacing:-0.012448pt;}
.ls10_c00187{letter-spacing:-0.006224pt;}
.ls9_c00187{letter-spacing:0.000000pt;}
.ls3_c00187{letter-spacing:0.005197pt;}
.ls6_c00187{letter-spacing:0.010394pt;}
.ls0_c00187{letter-spacing:0.012448pt;}
.ls1_c00187{letter-spacing:0.020694pt;}
.ls1e_c00187{letter-spacing:0.020788pt;}
.ls2_c00187{letter-spacing:0.024896pt;}
.ls1b_c00187{letter-spacing:0.051970pt;}
.ls25_c00187{letter-spacing:0.072758pt;}
.ls4_c00187{letter-spacing:0.088349pt;}
.ls5_c00187{letter-spacing:0.093546pt;}
.ls17_c00187{letter-spacing:0.114334pt;}
.ls7_c00187{letter-spacing:0.296230pt;}
.lsd_c00187{letter-spacing:0.304976pt;}
.ls23_c00187{letter-spacing:0.306624pt;}
.ls18_c00187{letter-spacing:0.478125pt;}
.ls19_c00187{letter-spacing:0.732779pt;}
.ws2_c00187{word-spacing:-51.970133pt;}
.ws3_c00187{word-spacing:-14.260605pt;}
.ws0_c00187{word-spacing:-11.526781pt;}
.ws1_c00187{word-spacing:-9.242347pt;}
.ws31_c00187{word-spacing:-0.602854pt;}
.ws22_c00187{word-spacing:-0.140319pt;}
.ws28_c00187{word-spacing:-0.041576pt;}
.ws6_c00187{word-spacing:-0.024896pt;}
.ws1e_c00187{word-spacing:-0.012448pt;}
.ws4_c00187{word-spacing:0.000000pt;}
.ws13_c00187{word-spacing:0.018672pt;}
.ws8_c00187{word-spacing:0.024896pt;}
.ws12_c00187{word-spacing:0.031120pt;}
.ws39_c00187{word-spacing:0.031182pt;}
.ws5_c00187{word-spacing:0.037344pt;}
.ws38_c00187{word-spacing:0.062364pt;}
.ws21_c00187{word-spacing:0.072758pt;}
.ws32_c00187{word-spacing:0.129925pt;}
.ws2e_c00187{word-spacing:0.181895pt;}
.ws23_c00187{word-spacing:0.218275pt;}
.ws30_c00187{word-spacing:0.223472pt;}
.ws37_c00187{word-spacing:0.270245pt;}
.ws18_c00187{word-spacing:0.280080pt;}
.ws2f_c00187{word-spacing:0.322215pt;}
.ws7_c00187{word-spacing:0.329872pt;}
.ws33_c00187{word-spacing:0.379382pt;}
.ws34_c00187{word-spacing:0.400170pt;}
.ws36_c00187{word-spacing:0.670415pt;}
.ws35_c00187{word-spacing:0.899083pt;}
.ws1d_c00187{word-spacing:1.605792pt;}
.ws1c_c00187{word-spacing:1.973008pt;}
.ws25_c00187{word-spacing:2.156761pt;}
.ws24_c00187{word-spacing:2.733629pt;}
.ws17_c00187{word-spacing:2.856816pt;}
.ws16_c00187{word-spacing:2.894160pt;}
.ws26_c00187{word-spacing:2.951904pt;}
.ws27_c00187{word-spacing:3.009071pt;}
.ws1b_c00187{word-spacing:5.109904pt;}
.ws1a_c00187{word-spacing:5.153472pt;}
.ws19_c00187{word-spacing:5.433552pt;}
.wsb_c00187{word-spacing:6.392048pt;}
.wsa_c00187{word-spacing:6.416944pt;}
.ws29_c00187{word-spacing:7.281016pt;}
.wsc_c00187{word-spacing:9.597408pt;}
.wse_c00187{word-spacing:9.896160pt;}
.ws10_c00187{word-spacing:9.908608pt;}
.wsf_c00187{word-spacing:9.914832pt;}
.wsd_c00187{word-spacing:9.939728pt;}
.ws2d_c00187{word-spacing:11.116412pt;}
.ws2a_c00187{word-spacing:11.563355pt;}
.ws2c_c00187{word-spacing:11.667295pt;}
.ws2b_c00187{word-spacing:11.885569pt;}
.ws1f_c00187{word-spacing:13.450064pt;}
.ws20_c00187{word-spacing:17.589024pt;}
.ws15_c00187{word-spacing:18.896064pt;}
.ws14_c00187{word-spacing:25.281888pt;}
.ws11_c00187{word-spacing:27.827504pt;}
.ws9_c00187{word-spacing:33.285952pt;}
._3_c00187{margin-left:-2.410560pt;}
._1_c00187{margin-left:-0.964720pt;}
._0_c00187{width:1.039408pt;}
._2_c00187{width:5.271728pt;}
.fs2_c00187{font-size:33.608533pt;}
.fs1_c00187{font-size:41.388800pt;}
.fs3_c00187{font-size:51.970133pt;}
.fs0_c00187{font-size:62.240000pt;}
.y0_c00187{bottom:0.000000pt;}
.y2_c00187{bottom:97.547527pt;}
.y1_c00187{bottom:115.387067pt;}
.y26_c00187{bottom:132.826265pt;}
.y25_c00187{bottom:148.666762pt;}
.y24_c00187{bottom:167.947067pt;}
.y23_c00187{bottom:180.506265pt;}
.y22_c00187{bottom:196.506570pt;}
.y21_c00187{bottom:215.627067pt;}
.y20_c00187{bottom:228.186762pt;}
.y1f_c00187{bottom:247.467067pt;}
.y1e_c00187{bottom:263.307067pt;}
.y1d_c00187{bottom:276.345711pt;}
.y1c_c00187{bottom:316.106179pt;}
.y1b_c00187{bottom:342.986079pt;}
.y1a_c00187{bottom:369.786623pt;}
.y19_c00187{bottom:396.666523pt;}
.y18_c00187{bottom:423.466723pt;}
.y17_c00187{bottom:450.346623pt;}
.y16_c00187{bottom:477.147167pt;}
.y15_c00187{bottom:504.025759pt;}
.y14_c00187{bottom:530.745391pt;}
.y13_c00187{bottom:557.625291pt;}
.y12_c00187{bottom:584.425835pt;}
.y11_c00187{bottom:611.305735pt;}
.y10_c00187{bottom:638.106279pt;}
.yf_c00187{bottom:664.986179pt;}
.ye_c00187{bottom:691.786723pt;}
.yd_c00187{bottom:718.666623pt;}
.yc_c00187{bottom:745.467167pt;}
.yb_c00187{bottom:772.345835pt;}
.ya_c00187{bottom:799.146379pt;}
.y9_c00187{bottom:826.026279pt;}
.y8_c00187{bottom:852.906179pt;}
.y7_c00187{bottom:879.706723pt;}
.y6_c00187{bottom:906.586623pt;}
.y5_c00187{bottom:933.387167pt;}
.y4_c00187{bottom:960.267059pt;}
.y3_c00187{bottom:987.067603pt;}
.h8_c00187{height:34.967599pt;}
.h9_c00187{height:48.087599pt;}
.h3_c00187{height:55.645234pt;}
.h1_c00187{height:55.797187pt;}
.h7_c00187{height:55.802612pt;}
.h4_c00187{height:65.488294pt;}
.h2_c00187{height:65.584445pt;}
.h5_c00187{height:65.589644pt;}
.h6_c00187{height:65.906322pt;}
.h0_c00187{height:1122.666667pt;}
.w0_c00187{width:793.333333pt;}
.x0_c00187{left:0.000000pt;}
.x2_c00187{left:73.520052pt;}
.x1_c00187{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fefd4e5db87534226fb4be31.woff2')format("woff");}.ff1_c00188{font-family:ff1_c00188;line-height:1.106934;font-style:normal;font-weight:normal;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_dbcfd91a052ee35ab16209f5.woff2')format("woff");}.ff2_c00188{font-family:ff2_c00188;line-height:1.104492;font-style:normal;font-weight:normal;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_42d18d15310ecdc5c8ad5317.woff2')format("woff");}.ff3_c00188{font-family:ff3_c00188;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00188{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00188{vertical-align:-14.760000px;}
.v0_c00188{vertical-align:0.000000px;}
.v1_c00188{vertical-align:32.404626px;}
.lsf_c00188{letter-spacing:-0.075619px;}
.lsa_c00188{letter-spacing:-0.070020px;}
.ls4_c00188{letter-spacing:-0.063018px;}
.lsc_c00188{letter-spacing:-0.056016px;}
.ls9_c00188{letter-spacing:-0.049014px;}
.lsd_c00188{letter-spacing:-0.035010px;}
.ls8_c00188{letter-spacing:-0.028008px;}
.ls7_c00188{letter-spacing:-0.021006px;}
.ls6_c00188{letter-spacing:-0.014004px;}
.lse_c00188{letter-spacing:-0.007002px;}
.ls5_c00188{letter-spacing:0.000000px;}
.ls0_c00188{letter-spacing:0.014004px;}
.ls1_c00188{letter-spacing:0.023281px;}
.ls3_c00188{letter-spacing:0.140319px;}
.ls2_c00188{letter-spacing:0.192939px;}
.lsb_c00188{letter-spacing:0.203058px;}
.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;}
}
.ws2_c00188{word-spacing:-19.465560px;}
.ws0_c00188{word-spacing:-19.395540px;}
.ws1_c00188{word-spacing:-12.967628px;}
.ws3_c00188{word-spacing:-10.397640px;}
.ws22_c00188{word-spacing:-0.181246px;}
.ws23_c00188{word-spacing:-0.128626px;}
.ws19_c00188{word-spacing:-0.014004px;}
.ws4_c00188{word-spacing:0.000000px;}
.ws9_c00188{word-spacing:0.014004px;}
.ws1d_c00188{word-spacing:0.021006px;}
.ws12_c00188{word-spacing:1.078308px;}
.ws1e_c00188{word-spacing:1.092312px;}
.ws11_c00188{word-spacing:1.106316px;}
.wse_c00188{word-spacing:1.477422px;}
.ws8_c00188{word-spacing:2.863818px;}
.ws7_c00188{word-spacing:2.877822px;}
.ws1f_c00188{word-spacing:3.283938px;}
.ws1b_c00188{word-spacing:3.956130px;}
.ws1a_c00188{word-spacing:3.970134px;}
.wsa_c00188{word-spacing:7.548156px;}
.wsd_c00188{word-spacing:8.612460px;}
.wsc_c00188{word-spacing:8.647470px;}
.wsb_c00188{word-spacing:11.882394px;}
.ws17_c00188{word-spacing:14.025006px;}
.ws20_c00188{word-spacing:14.039010px;}
.ws21_c00188{word-spacing:14.074020px;}
.ws18_c00188{word-spacing:14.424120px;}
.ws13_c00188{word-spacing:15.264360px;}
.ws5_c00188{word-spacing:15.481422px;}
.ws6_c00188{word-spacing:15.488424px;}
.ws14_c00188{word-spacing:15.845526px;}
.ws15_c00188{word-spacing:15.880536px;}
.ws16_c00188{word-spacing:19.822662px;}
.ws1c_c00188{word-spacing:24.478992px;}
.ws10_c00188{word-spacing:26.670618px;}
.wsf_c00188{word-spacing:27.034722px;}
._3_c00188{margin-left:-2.706300px;}
._1_c00188{margin-left:-1.071306px;}
._0_c00188{width:1.302372px;}
._2_c00188{width:5.930694px;}
.fc0_c00188{color:rgb(0,0,0);}
.fs2_c00188{font-size:37.809600px;}
.fs1_c00188{font-size:46.562400px;}
.fs3_c00188{font-size:58.466400px;}
.fs0_c00188{font-size:70.020000px;}
.y0_c00188{bottom:0.000000px;}
.y2_c00188{bottom:109.740968px;}
.y1_c00188{bottom:129.810450px;}
.y23_c00188{bottom:149.429891px;}
.y22_c00188{bottom:170.940450px;}
.y21_c00188{bottom:185.249891px;}
.y20_c00188{bottom:206.760450px;}
.y1f_c00188{bottom:221.430141px;}
.y1e_c00188{bottom:245.639556px;}
.y1d_c00188{bottom:275.790168px;}
.y1c_c00188{bottom:306.030056px;}
.y1b_c00188{bottom:350.760582px;}
.y1a_c00188{bottom:383.880042px;}
.y19_c00188{bottom:414.030654px;}
.y18_c00188{bottom:447.150114px;}
.y17_c00188{bottom:480.357984px;}
.y16_c00188{bottom:510.597871px;}
.y15_c00188{bottom:540.748484px;}
.y14_c00188{bottom:570.899096px;}
.y13_c00188{bottom:601.049707px;}
.y12_c00188{bottom:631.289595px;}
.y11_c00188{bottom:661.440207px;}
.y10_c00188{bottom:697.440990px;}
.yf_c00188{bottom:730.559294px;}
.ye_c00188{bottom:760.799181px;}
.yd_c00188{bottom:790.949793px;}
.yc_c00188{bottom:821.189681px;}
.yb_c00188{bottom:855.749802px;}
.ya_c00188{bottom:885.989690px;}
.y9_c00188{bottom:916.140302px;}
.y8_c00188{bottom:946.380189px;}
.y7_c00188{bottom:980.940311px;}
.y6_c00188{bottom:1015.500432px;}
.y5_c00188{bottom:1045.651044px;}
.y4_c00188{bottom:1075.890932px;}
.y3_c00188{bottom:1110.451053px;}
.h6_c00188{height:39.338549px;}
.h7_c00188{height:54.098549px;}
.h2_c00188{height:62.600889px;}
.h1_c00188{height:62.771836px;}
.h5_c00188{height:62.773072px;}
.h3_c00188{height:74.033412px;}
.h4_c00188{height:74.039250px;}
.h0_c00188{height:1263.000000px;}
.w0_c00188{width:892.500000px;}
.x0_c00188{left:0.000000px;}
.x2_c00188{left:82.710059px;}
.x3_c00188{left:114.840486px;}
.x1_c00188{left:431.730000px;}
@media print{
.v2_c00188{vertical-align:-13.120000pt;}
.v0_c00188{vertical-align:0.000000pt;}
.v1_c00188{vertical-align:28.804112pt;}
.lsf_c00188{letter-spacing:-0.067217pt;}
.lsa_c00188{letter-spacing:-0.062240pt;}
.ls4_c00188{letter-spacing:-0.056016pt;}
.lsc_c00188{letter-spacing:-0.049792pt;}
.ls9_c00188{letter-spacing:-0.043568pt;}
.lsd_c00188{letter-spacing:-0.031120pt;}
.ls8_c00188{letter-spacing:-0.024896pt;}
.ls7_c00188{letter-spacing:-0.018672pt;}
.ls6_c00188{letter-spacing:-0.012448pt;}
.lse_c00188{letter-spacing:-0.006224pt;}
.ls5_c00188{letter-spacing:0.000000pt;}
.ls0_c00188{letter-spacing:0.012448pt;}
.ls1_c00188{letter-spacing:0.020694pt;}
.ls3_c00188{letter-spacing:0.124728pt;}
.ls2_c00188{letter-spacing:0.171501pt;}
.lsb_c00188{letter-spacing:0.180496pt;}
.ws2_c00188{word-spacing:-17.302720pt;}
.ws0_c00188{word-spacing:-17.240480pt;}
.ws1_c00188{word-spacing:-11.526781pt;}
.ws3_c00188{word-spacing:-9.242347pt;}
.ws22_c00188{word-spacing:-0.161107pt;}
.ws23_c00188{word-spacing:-0.114334pt;}
.ws19_c00188{word-spacing:-0.012448pt;}
.ws4_c00188{word-spacing:0.000000pt;}
.ws9_c00188{word-spacing:0.012448pt;}
.ws1d_c00188{word-spacing:0.018672pt;}
.ws12_c00188{word-spacing:0.958496pt;}
.ws1e_c00188{word-spacing:0.970944pt;}
.ws11_c00188{word-spacing:0.983392pt;}
.wse_c00188{word-spacing:1.313264pt;}
.ws8_c00188{word-spacing:2.545616pt;}
.ws7_c00188{word-spacing:2.558064pt;}
.ws1f_c00188{word-spacing:2.919056pt;}
.ws1b_c00188{word-spacing:3.516560pt;}
.ws1a_c00188{word-spacing:3.529008pt;}
.wsa_c00188{word-spacing:6.709472pt;}
.wsd_c00188{word-spacing:7.655520pt;}
.wsc_c00188{word-spacing:7.686640pt;}
.wsb_c00188{word-spacing:10.562128pt;}
.ws17_c00188{word-spacing:12.466672pt;}
.ws20_c00188{word-spacing:12.479120pt;}
.ws21_c00188{word-spacing:12.510240pt;}
.ws18_c00188{word-spacing:12.821440pt;}
.ws13_c00188{word-spacing:13.568320pt;}
.ws5_c00188{word-spacing:13.761264pt;}
.ws6_c00188{word-spacing:13.767488pt;}
.ws14_c00188{word-spacing:14.084912pt;}
.ws15_c00188{word-spacing:14.116032pt;}
.ws16_c00188{word-spacing:17.620144pt;}
.ws1c_c00188{word-spacing:21.759104pt;}
.ws10_c00188{word-spacing:23.707216pt;}
.wsf_c00188{word-spacing:24.030864pt;}
._3_c00188{margin-left:-2.405600pt;}
._1_c00188{margin-left:-0.952272pt;}
._0_c00188{width:1.157664pt;}
._2_c00188{width:5.271728pt;}
.fs2_c00188{font-size:33.608533pt;}
.fs1_c00188{font-size:41.388800pt;}
.fs3_c00188{font-size:51.970133pt;}
.fs0_c00188{font-size:62.240000pt;}
.y0_c00188{bottom:0.000000pt;}
.y2_c00188{bottom:97.547527pt;}
.y1_c00188{bottom:115.387067pt;}
.y23_c00188{bottom:132.826570pt;}
.y22_c00188{bottom:151.947067pt;}
.y21_c00188{bottom:164.666570pt;}
.y20_c00188{bottom:183.787067pt;}
.y1f_c00188{bottom:196.826792pt;}
.y1e_c00188{bottom:218.346272pt;}
.y1d_c00188{bottom:245.146816pt;}
.y1c_c00188{bottom:272.026716pt;}
.y1b_c00188{bottom:311.787184pt;}
.y1a_c00188{bottom:341.226704pt;}
.y19_c00188{bottom:368.027248pt;}
.y18_c00188{bottom:397.466768pt;}
.y17_c00188{bottom:426.984875pt;}
.y16_c00188{bottom:453.864775pt;}
.y15_c00188{bottom:480.665319pt;}
.y14_c00188{bottom:507.465863pt;}
.y13_c00188{bottom:534.266407pt;}
.y12_c00188{bottom:561.146307pt;}
.y11_c00188{bottom:587.946851pt;}
.y10_c00188{bottom:619.947547pt;}
.yf_c00188{bottom:649.386039pt;}
.ye_c00188{bottom:676.265939pt;}
.yd_c00188{bottom:703.066483pt;}
.yc_c00188{bottom:729.946383pt;}
.yb_c00188{bottom:760.666491pt;}
.ya_c00188{bottom:787.546391pt;}
.y9_c00188{bottom:814.346935pt;}
.y8_c00188{bottom:841.226835pt;}
.y7_c00188{bottom:871.946943pt;}
.y6_c00188{bottom:902.667051pt;}
.y5_c00188{bottom:929.467595pt;}
.y4_c00188{bottom:956.347495pt;}
.y3_c00188{bottom:987.067603pt;}
.h6_c00188{height:34.967599pt;}
.h7_c00188{height:48.087599pt;}
.h2_c00188{height:55.645234pt;}
.h1_c00188{height:55.797187pt;}
.h5_c00188{height:55.798286pt;}
.h3_c00188{height:65.807478pt;}
.h4_c00188{height:65.812667pt;}
.h0_c00188{height:1122.666667pt;}
.w0_c00188{width:793.333333pt;}
.x0_c00188{left:0.000000pt;}
.x2_c00188{left:73.520052pt;}
.x3_c00188{left:102.080432pt;}
.x1_c00188{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ce0b360947c2b349ed43d50b.woff2')format("woff");}.ff1_c00189{font-family:ff1_c00189;line-height:1.106934;font-style:normal;font-weight:normal;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_40b3bb0c4c919f6d089051c5.woff2')format("woff");}.ff2_c00189{font-family:ff2_c00189;line-height:1.104492;font-style:normal;font-weight:normal;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_ff66ceb7733a0d3d96d46f09.woff2')format("woff");}.ff3_c00189{font-family:ff3_c00189;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00189;src:url('chunks/assets/font_92c2e7a5945c2ca6efab7dfd.woff2')format("woff");}.ff4_c00189{font-family:ff4_c00189;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00189{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00189{vertical-align:-14.760600px;}
.v0_c00189{vertical-align:0.000000px;}
.v1_c00189{vertical-align:32.042556px;}
.lsd_c00189{letter-spacing:-0.134473px;}
.lsc_c00189{letter-spacing:-0.075619px;}
.ls3_c00189{letter-spacing:-0.063018px;}
.ls6_c00189{letter-spacing:-0.049014px;}
.lsb_c00189{letter-spacing:-0.042012px;}
.lsf_c00189{letter-spacing:-0.035080px;}
.ls9_c00189{letter-spacing:-0.035010px;}
.lsa_c00189{letter-spacing:-0.028008px;}
.ls7_c00189{letter-spacing:-0.021006px;}
.ls8_c00189{letter-spacing:-0.014004px;}
.ls5_c00189{letter-spacing:-0.007002px;}
.ls4_c00189{letter-spacing:0.000000px;}
.ls1_c00189{letter-spacing:0.007002px;}
.ls0_c00189{letter-spacing:0.023281px;}
.ls2_c00189{letter-spacing:0.049014px;}
.lse_c00189{letter-spacing:0.204632px;}
.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:-10.397640px;}
.ws6_c00189{word-spacing:-0.371106px;}
.ws19_c00189{word-spacing:-0.192939px;}
.ws1_c00189{word-spacing:0.000000px;}
.ws15_c00189{word-spacing:0.028008px;}
.ws1a_c00189{word-spacing:0.046773px;}
.ws18_c00189{word-spacing:0.146166px;}
.wsb_c00189{word-spacing:0.350100px;}
.ws7_c00189{word-spacing:0.364104px;}
.ws8_c00189{word-spacing:0.378108px;}
.ws4_c00189{word-spacing:0.385110px;}
.wse_c00189{word-spacing:0.714204px;}
.ws10_c00189{word-spacing:0.735210px;}
.wsd_c00189{word-spacing:0.742212px;}
.ws17_c00189{word-spacing:1.057302px;}
.ws13_c00189{word-spacing:1.092312px;}
.wsf_c00189{word-spacing:2.520720px;}
.ws11_c00189{word-spacing:3.536010px;}
.ws16_c00189{word-spacing:3.606030px;}
.ws12_c00189{word-spacing:3.963132px;}
.ws2_c00189{word-spacing:11.511288px;}
.ws3_c00189{word-spacing:14.795226px;}
.wsa_c00189{word-spacing:17.617032px;}
.ws9_c00189{word-spacing:17.673048px;}
.ws14_c00189{word-spacing:23.743782px;}
.ws5_c00189{word-spacing:29.170332px;}
.wsc_c00189{word-spacing:38.511000px;}
._3_c00189{margin-left:-2.708154px;}
._0_c00189{margin-left:-1.330380px;}
._1_c00189{width:1.029294px;}
._2_c00189{width:5.930694px;}
.fc0_c00189{color:rgb(0,0,0);}
.fs2_c00189{font-size:37.809600px;}
.fs1_c00189{font-size:46.562400px;}
.fs3_c00189{font-size:58.466400px;}
.fs0_c00189{font-size:70.020000px;}
.y0_c00189{bottom:0.000000px;}
.y2_c00189{bottom:109.740968px;}
.y1_c00189{bottom:129.810450px;}
.y21_c00189{bottom:153.120600px;}
.y20_c00189{bottom:167.786436px;}
.y1f_c00189{bottom:250.406535px;}
.y1e_c00189{bottom:280.646423px;}
.y1d_c00189{bottom:310.797035px;}
.y1c_c00189{bottom:341.036922px;}
.y1b_c00189{bottom:371.187534px;}
.y1a_c00189{bottom:401.427422px;}
.y19_c00189{bottom:431.578034px;}
.y18_c00189{bottom:461.817921px;}
.y17_c00189{bottom:491.968533px;}
.y16_c00189{bottom:522.208421px;}
.y15_c00189{bottom:552.359033px;}
.y14_c00189{bottom:582.598920px;}
.y13_c00189{bottom:612.749532px;}
.y12_c00189{bottom:642.989420px;}
.y11_c00189{bottom:673.140032px;}
.y10_c00189{bottom:703.379919px;}
.yf_c00189{bottom:733.530531px;}
.ye_c00189{bottom:763.770419px;}
.yd_c00189{bottom:794.010306px;}
.yc_c00189{bottom:824.160918px;}
.yb_c00189{bottom:854.400806px;}
.ya_c00189{bottom:884.460392px;}
.y9_c00189{bottom:920.549811px;}
.y8_c00189{bottom:950.700423px;}
.y7_c00189{bottom:980.940311px;}
.y6_c00189{bottom:1016.850068px;}
.y5_c00189{bottom:1050.060553px;}
.y4_c00189{bottom:1080.300441px;}
.y3_c00189{bottom:1110.451053px;}
.h4_c00189{height:39.337949px;}
.h1_c00189{height:62.771836px;}
.h3_c00189{height:62.788492px;}
.h2_c00189{height:73.785020px;}
.h0_c00189{height:1263.000000px;}
.w0_c00189{width:892.500000px;}
.x0_c00189{left:0.000000px;}
.x2_c00189{left:82.710059px;}
.x3_c00189{left:114.840022px;}
.x1_c00189{left:431.730000px;}
@media print{
.v2_c00189{vertical-align:-13.120533pt;}
.v0_c00189{vertical-align:0.000000pt;}
.v1_c00189{vertical-align:28.482272pt;}
.lsd_c00189{letter-spacing:-0.119531pt;}
.lsc_c00189{letter-spacing:-0.067217pt;}
.ls3_c00189{letter-spacing:-0.056016pt;}
.ls6_c00189{letter-spacing:-0.043568pt;}
.lsb_c00189{letter-spacing:-0.037344pt;}
.lsf_c00189{letter-spacing:-0.031182pt;}
.ls9_c00189{letter-spacing:-0.031120pt;}
.lsa_c00189{letter-spacing:-0.024896pt;}
.ls7_c00189{letter-spacing:-0.018672pt;}
.ls8_c00189{letter-spacing:-0.012448pt;}
.ls5_c00189{letter-spacing:-0.006224pt;}
.ls4_c00189{letter-spacing:0.000000pt;}
.ls1_c00189{letter-spacing:0.006224pt;}
.ls0_c00189{letter-spacing:0.020694pt;}
.ls2_c00189{letter-spacing:0.043568pt;}
.lse_c00189{letter-spacing:0.181895pt;}
.ws0_c00189{word-spacing:-9.242347pt;}
.ws6_c00189{word-spacing:-0.329872pt;}
.ws19_c00189{word-spacing:-0.171501pt;}
.ws1_c00189{word-spacing:0.000000pt;}
.ws15_c00189{word-spacing:0.024896pt;}
.ws1a_c00189{word-spacing:0.041576pt;}
.ws18_c00189{word-spacing:0.129925pt;}
.wsb_c00189{word-spacing:0.311200pt;}
.ws7_c00189{word-spacing:0.323648pt;}
.ws8_c00189{word-spacing:0.336096pt;}
.ws4_c00189{word-spacing:0.342320pt;}
.wse_c00189{word-spacing:0.634848pt;}
.ws10_c00189{word-spacing:0.653520pt;}
.wsd_c00189{word-spacing:0.659744pt;}
.ws17_c00189{word-spacing:0.939824pt;}
.ws13_c00189{word-spacing:0.970944pt;}
.wsf_c00189{word-spacing:2.240640pt;}
.ws11_c00189{word-spacing:3.143120pt;}
.ws16_c00189{word-spacing:3.205360pt;}
.ws12_c00189{word-spacing:3.522784pt;}
.ws2_c00189{word-spacing:10.232256pt;}
.ws3_c00189{word-spacing:13.151312pt;}
.wsa_c00189{word-spacing:15.659584pt;}
.ws9_c00189{word-spacing:15.709376pt;}
.ws14_c00189{word-spacing:21.105584pt;}
.ws5_c00189{word-spacing:25.929184pt;}
.wsc_c00189{word-spacing:34.232000pt;}
._3_c00189{margin-left:-2.407248pt;}
._0_c00189{margin-left:-1.182560pt;}
._1_c00189{width:0.914928pt;}
._2_c00189{width:5.271728pt;}
.fs2_c00189{font-size:33.608533pt;}
.fs1_c00189{font-size:41.388800pt;}
.fs3_c00189{font-size:51.970133pt;}
.fs0_c00189{font-size:62.240000pt;}
.y0_c00189{bottom:0.000000pt;}
.y2_c00189{bottom:97.547527pt;}
.y1_c00189{bottom:115.387067pt;}
.y21_c00189{bottom:136.107200pt;}
.y20_c00189{bottom:149.143499pt;}
.y1f_c00189{bottom:222.583587pt;}
.y1e_c00189{bottom:249.463487pt;}
.y1d_c00189{bottom:276.264031pt;}
.y1c_c00189{bottom:303.143931pt;}
.y1b_c00189{bottom:329.944475pt;}
.y1a_c00189{bottom:356.824375pt;}
.y19_c00189{bottom:383.624919pt;}
.y18_c00189{bottom:410.504819pt;}
.y17_c00189{bottom:437.305363pt;}
.y16_c00189{bottom:464.185263pt;}
.y15_c00189{bottom:490.985807pt;}
.y14_c00189{bottom:517.865707pt;}
.y13_c00189{bottom:544.666251pt;}
.y12_c00189{bottom:571.546151pt;}
.y11_c00189{bottom:598.346695pt;}
.y10_c00189{bottom:625.226595pt;}
.yf_c00189{bottom:652.027139pt;}
.ye_c00189{bottom:678.907039pt;}
.yd_c00189{bottom:705.786939pt;}
.yc_c00189{bottom:732.587483pt;}
.yb_c00189{bottom:759.467383pt;}
.ya_c00189{bottom:786.187015pt;}
.y9_c00189{bottom:818.266499pt;}
.y8_c00189{bottom:845.067043pt;}
.y7_c00189{bottom:871.946943pt;}
.y6_c00189{bottom:903.866727pt;}
.y5_c00189{bottom:933.387159pt;}
.y4_c00189{bottom:960.267059pt;}
.y3_c00189{bottom:987.067603pt;}
.h4_c00189{height:34.967066pt;}
.h1_c00189{height:55.797187pt;}
.h3_c00189{height:55.811993pt;}
.h2_c00189{height:65.586684pt;}
.h0_c00189{height:1122.666667pt;}
.w0_c00189{width:793.333333pt;}
.x0_c00189{left:0.000000pt;}
.x2_c00189{left:73.520052pt;}
.x3_c00189{left:102.080020pt;}
.x1_c00189{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c265b85338d8228548391b11.woff2')format("woff");}.ff1_c00190{font-family:ff1_c00190;line-height:1.106934;font-style:normal;font-weight:normal;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_efb2a629d034beca83043650.woff2')format("woff");}.ff2_c00190{font-family:ff2_c00190;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00190;src:url('chunks/assets/font_58a6b95bd7375d1bedf52aeb.woff2')format("woff");}.ff3_c00190{font-family:ff3_c00190;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00190;src:url('chunks/assets/font_b9dc6678ca5c6cc447565f7d.woff2')format("woff");}.ff4_c00190{font-family:ff4_c00190;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00190;src:url('chunks/assets/font_60bcd9a6378b963bd8afaad9.woff2')format("woff");}.ff5_c00190{font-family:ff5_c00190;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00190{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00190{vertical-align:-14.760000px;}
.v0_c00190{vertical-align:0.000000px;}
.v1_c00190{vertical-align:32.054868px;}
.ls15_c00190{letter-spacing:-0.344952px;}
.lsa_c00190{letter-spacing:-0.091166px;}
.lsf_c00190{letter-spacing:-0.084024px;}
.ls12_c00190{letter-spacing:-0.075619px;}
.ls8_c00190{letter-spacing:-0.063018px;}
.ls13_c00190{letter-spacing:-0.058466px;}
.ls11_c00190{letter-spacing:-0.049014px;}
.ls14_c00190{letter-spacing:-0.046773px;}
.lsc_c00190{letter-spacing:-0.042012px;}
.lse_c00190{letter-spacing:-0.028008px;}
.lsb_c00190{letter-spacing:-0.021006px;}
.lsd_c00190{letter-spacing:-0.014004px;}
.ls10_c00190{letter-spacing:-0.007002px;}
.ls9_c00190{letter-spacing:0.000000px;}
.ls16_c00190{letter-spacing:0.005847px;}
.ls3_c00190{letter-spacing:0.007002px;}
.ls4_c00190{letter-spacing:0.014004px;}
.ls1_c00190{letter-spacing:0.021006px;}
.ls7_c00190{letter-spacing:0.023281px;}
.ls6_c00190{letter-spacing:0.028008px;}
.ls5_c00190{letter-spacing:0.035010px;}
.ls0_c00190{letter-spacing:0.084024px;}
.ls2_c00190{letter-spacing:0.133038px;}
.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:-12.967628px;}
.ws1_c00190{word-spacing:-10.397640px;}
.ws5_c00190{word-spacing:-0.147042px;}
.ws2_c00190{word-spacing:0.000000px;}
.ws22_c00190{word-spacing:0.005847px;}
.ws1f_c00190{word-spacing:0.049014px;}
.ws13_c00190{word-spacing:0.070020px;}
.ws6_c00190{word-spacing:0.129151px;}
.wsd_c00190{word-spacing:0.385110px;}
.ws10_c00190{word-spacing:1.750500px;}
.wse_c00190{word-spacing:1.771506px;}
.wsf_c00190{word-spacing:1.806516px;}
.wsb_c00190{word-spacing:4.299228px;}
.ws7_c00190{word-spacing:4.327236px;}
.wsa_c00190{word-spacing:4.663332px;}
.ws18_c00190{word-spacing:4.677336px;}
.ws19_c00190{word-spacing:5.762646px;}
.ws21_c00190{word-spacing:6.179898px;}
.ws20_c00190{word-spacing:6.191592px;}
.ws11_c00190{word-spacing:6.427836px;}
.ws12_c00190{word-spacing:6.476850px;}
.ws1c_c00190{word-spacing:6.490854px;}
.ws8_c00190{word-spacing:6.504858px;}
.ws1e_c00190{word-spacing:7.597170px;}
.ws9_c00190{word-spacing:8.640468px;}
.wsc_c00190{word-spacing:10.096884px;}
.ws14_c00190{word-spacing:10.755072px;}
.ws15_c00190{word-spacing:11.147184px;}
.ws16_c00190{word-spacing:11.175192px;}
.ws17_c00190{word-spacing:12.960702px;}
.ws1b_c00190{word-spacing:14.732208px;}
.ws1a_c00190{word-spacing:15.110316px;}
.ws1d_c00190{word-spacing:38.511000px;}
.ws3_c00190{word-spacing:59.299938px;}
.ws4_c00190{word-spacing:59.727060px;}
._3_c00190{margin-left:-2.706984px;}
._0_c00190{margin-left:-1.085310px;}
._1_c00190{width:1.154765px;}
._2_c00190{width:5.930694px;}
.fc0_c00190{color:rgb(0,0,0);}
.fs3_c00190{font-size:37.809600px;}
.fs2_c00190{font-size:46.562400px;}
.fs4_c00190{font-size:58.466400px;}
.fs0_c00190{font-size:70.020000px;}
.fs1_c00190{font-size:75.971400px;}
.y0_c00190{bottom:0.000000px;}
.y2_c00190{bottom:109.740968px;}
.y1_c00190{bottom:129.810450px;}
.y21_c00190{bottom:149.429891px;}
.y20_c00190{bottom:170.940450px;}
.y1f_c00190{bottom:185.699883px;}
.y1e_c00190{bottom:276.956733px;}
.y1d_c00190{bottom:307.196621px;}
.y1c_c00190{bottom:337.436508px;}
.y1b_c00190{bottom:367.587120px;}
.y1a_c00190{bottom:397.827008px;}
.y19_c00190{bottom:427.977620px;}
.y18_c00190{bottom:458.217507px;}
.y17_c00190{bottom:488.457395px;}
.y16_c00190{bottom:518.516981px;}
.y15_c00190{bottom:569.186954px;}
.y14_c00190{bottom:599.426841px;}
.y13_c00190{bottom:629.577453px;}
.y12_c00190{bottom:659.817341px;}
.y11_c00190{bottom:689.967953px;}
.y10_c00190{bottom:720.207840px;}
.yf_c00190{bottom:750.358452px;}
.ye_c00190{bottom:780.598340px;}
.yd_c00190{bottom:810.748952px;}
.yc_c00190{bottom:840.988839px;}
.yb_c00190{bottom:871.139451px;}
.ya_c00190{bottom:901.379339px;}
.y9_c00190{bottom:931.529951px;}
.y8_c00190{bottom:961.769838px;}
.y7_c00190{bottom:991.920450px;}
.y6_c00190{bottom:1016.760450px;}
.y5_c00190{bottom:1065.809802px;}
.y4_c00190{bottom:1090.290545px;}
.y3_c00190{bottom:1110.451053px;}
.h7_c00190{height:39.338549px;}
.h8_c00190{height:54.098549px;}
.h4_c00190{height:62.600889px;}
.h1_c00190{height:62.771836px;}
.h6_c00190{height:62.774704px;}
.h2_c00190{height:63.216299px;}
.h3_c00190{height:68.589413px;}
.h5_c00190{height:73.683654px;}
.h0_c00190{height:1263.000000px;}
.w0_c00190{width:892.500000px;}
.x0_c00190{left:0.000000px;}
.x2_c00190{left:82.710059px;}
.x1_c00190{left:431.730000px;}
@media print{
.v2_c00190{vertical-align:-13.120000pt;}
.v0_c00190{vertical-align:0.000000pt;}
.v1_c00190{vertical-align:28.493216pt;}
.ls15_c00190{letter-spacing:-0.306624pt;}
.lsa_c00190{letter-spacing:-0.081036pt;}
.lsf_c00190{letter-spacing:-0.074688pt;}
.ls12_c00190{letter-spacing:-0.067217pt;}
.ls8_c00190{letter-spacing:-0.056016pt;}
.ls13_c00190{letter-spacing:-0.051970pt;}
.ls11_c00190{letter-spacing:-0.043568pt;}
.ls14_c00190{letter-spacing:-0.041576pt;}
.lsc_c00190{letter-spacing:-0.037344pt;}
.lse_c00190{letter-spacing:-0.024896pt;}
.lsb_c00190{letter-spacing:-0.018672pt;}
.lsd_c00190{letter-spacing:-0.012448pt;}
.ls10_c00190{letter-spacing:-0.006224pt;}
.ls9_c00190{letter-spacing:0.000000pt;}
.ls16_c00190{letter-spacing:0.005197pt;}
.ls3_c00190{letter-spacing:0.006224pt;}
.ls4_c00190{letter-spacing:0.012448pt;}
.ls1_c00190{letter-spacing:0.018672pt;}
.ls7_c00190{letter-spacing:0.020694pt;}
.ls6_c00190{letter-spacing:0.024896pt;}
.ls5_c00190{letter-spacing:0.031120pt;}
.ls0_c00190{letter-spacing:0.074688pt;}
.ls2_c00190{letter-spacing:0.118256pt;}
.ws0_c00190{word-spacing:-11.526781pt;}
.ws1_c00190{word-spacing:-9.242347pt;}
.ws5_c00190{word-spacing:-0.130704pt;}
.ws2_c00190{word-spacing:0.000000pt;}
.ws22_c00190{word-spacing:0.005197pt;}
.ws1f_c00190{word-spacing:0.043568pt;}
.ws13_c00190{word-spacing:0.062240pt;}
.ws6_c00190{word-spacing:0.114801pt;}
.wsd_c00190{word-spacing:0.342320pt;}
.ws10_c00190{word-spacing:1.556000pt;}
.wse_c00190{word-spacing:1.574672pt;}
.wsf_c00190{word-spacing:1.605792pt;}
.wsb_c00190{word-spacing:3.821536pt;}
.ws7_c00190{word-spacing:3.846432pt;}
.wsa_c00190{word-spacing:4.145184pt;}
.ws18_c00190{word-spacing:4.157632pt;}
.ws19_c00190{word-spacing:5.122352pt;}
.ws21_c00190{word-spacing:5.493243pt;}
.ws20_c00190{word-spacing:5.503637pt;}
.ws11_c00190{word-spacing:5.713632pt;}
.ws12_c00190{word-spacing:5.757200pt;}
.ws1c_c00190{word-spacing:5.769648pt;}
.ws8_c00190{word-spacing:5.782096pt;}
.ws1e_c00190{word-spacing:6.753040pt;}
.ws9_c00190{word-spacing:7.680416pt;}
.wsc_c00190{word-spacing:8.975008pt;}
.ws14_c00190{word-spacing:9.560064pt;}
.ws15_c00190{word-spacing:9.908608pt;}
.ws16_c00190{word-spacing:9.933504pt;}
.ws17_c00190{word-spacing:11.520624pt;}
.ws1b_c00190{word-spacing:13.095296pt;}
.ws1a_c00190{word-spacing:13.431392pt;}
.ws1d_c00190{word-spacing:34.232000pt;}
.ws3_c00190{word-spacing:52.711056pt;}
.ws4_c00190{word-spacing:53.090720pt;}
._3_c00190{margin-left:-2.406208pt;}
._0_c00190{margin-left:-0.964720pt;}
._1_c00190{width:1.026458pt;}
._2_c00190{width:5.271728pt;}
.fs3_c00190{font-size:33.608533pt;}
.fs2_c00190{font-size:41.388800pt;}
.fs4_c00190{font-size:51.970133pt;}
.fs0_c00190{font-size:62.240000pt;}
.fs1_c00190{font-size:67.530133pt;}
.y0_c00190{bottom:0.000000pt;}
.y2_c00190{bottom:97.547527pt;}
.y1_c00190{bottom:115.387067pt;}
.y21_c00190{bottom:132.826570pt;}
.y20_c00190{bottom:151.947067pt;}
.y1f_c00190{bottom:165.066563pt;}
.y1e_c00190{bottom:246.183763pt;}
.y1d_c00190{bottom:273.063663pt;}
.y1c_c00190{bottom:299.943563pt;}
.y1b_c00190{bottom:326.744107pt;}
.y1a_c00190{bottom:353.624007pt;}
.y19_c00190{bottom:380.424551pt;}
.y18_c00190{bottom:407.304451pt;}
.y17_c00190{bottom:434.184351pt;}
.y16_c00190{bottom:460.903983pt;}
.y15_c00190{bottom:505.943959pt;}
.y14_c00190{bottom:532.823859pt;}
.y13_c00190{bottom:559.624403pt;}
.y12_c00190{bottom:586.504303pt;}
.y11_c00190{bottom:613.304847pt;}
.y10_c00190{bottom:640.184747pt;}
.yf_c00190{bottom:666.985291pt;}
.ye_c00190{bottom:693.865191pt;}
.yd_c00190{bottom:720.665735pt;}
.yc_c00190{bottom:747.545635pt;}
.yb_c00190{bottom:774.346179pt;}
.ya_c00190{bottom:801.226079pt;}
.y9_c00190{bottom:828.026623pt;}
.y8_c00190{bottom:854.906523pt;}
.y7_c00190{bottom:881.707067pt;}
.y6_c00190{bottom:903.787067pt;}
.y5_c00190{bottom:947.386491pt;}
.y4_c00190{bottom:969.147151pt;}
.y3_c00190{bottom:987.067603pt;}
.h7_c00190{height:34.967599pt;}
.h8_c00190{height:48.087599pt;}
.h4_c00190{height:55.645234pt;}
.h1_c00190{height:55.797187pt;}
.h6_c00190{height:55.799737pt;}
.h2_c00190{height:56.192266pt;}
.h3_c00190{height:60.968367pt;}
.h5_c00190{height:65.496582pt;}
.h0_c00190{height:1122.666667pt;}
.w0_c00190{width:793.333333pt;}
.x0_c00190{left:0.000000pt;}
.x2_c00190{left:73.520052pt;}
.x1_c00190{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5726820d8d38b3247d48c8f5.woff2')format("woff");}.ff1_c00191{font-family:ff1_c00191;line-height:1.106934;font-style:normal;font-weight:normal;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_910abd9f6a9eaa45866b8f15.woff2')format("woff");}.ff2_c00191{font-family:ff2_c00191;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00191;src:url('chunks/assets/font_0d0b49f6fe383f87d92b87db.woff2')format("woff");}.ff3_c00191{font-family:ff3_c00191;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00191;src:url('chunks/assets/font_50e4da4bf43732f7e7e9fbe9.woff2')format("woff");}.ff4_c00191{font-family:ff4_c00191;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00191;src:url('chunks/assets/font_d2ef0493caf4dc7a3c7550a1.woff2')format("woff");}.ff5_c00191{font-family:ff5_c00191;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00191;src:url('chunks/assets/font_77a829f1af32b04ad138488d.woff2')format("woff");}.ff6_c00191{font-family:ff6_c00191;line-height:1.133301;font-style:normal;font-weight: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_c00191;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff7_c00191{font-family:ff7_c00191;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00191{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00191{vertical-align:-14.760000px;}
.v0_c00191{vertical-align:0.000000px;}
.v1_c00191{vertical-align:32.413686px;}
.ls11_c00191{letter-spacing:-0.730830px;}
.ls1c_c00191{letter-spacing:-0.707443px;}
.ls14_c00191{letter-spacing:-0.339105px;}
.lse_c00191{letter-spacing:-0.335249px;}
.lsd_c00191{letter-spacing:-0.154044px;}
.lsa_c00191{letter-spacing:-0.129151px;}
.ls16_c00191{letter-spacing:-0.093546px;}
.ls18_c00191{letter-spacing:-0.087700px;}
.ls1b_c00191{letter-spacing:-0.076006px;}
.ls10_c00191{letter-spacing:-0.075619px;}
.ls5_c00191{letter-spacing:-0.063018px;}
.ls19_c00191{letter-spacing:-0.052620px;}
.ls9_c00191{letter-spacing:-0.042012px;}
.ls17_c00191{letter-spacing:-0.035080px;}
.lsb_c00191{letter-spacing:-0.035010px;}
.ls7_c00191{letter-spacing:-0.028008px;}
.lsc_c00191{letter-spacing:-0.021006px;}
.ls1a_c00191{letter-spacing:-0.017540px;}
.lsf_c00191{letter-spacing:-0.014004px;}
.ls15_c00191{letter-spacing:-0.011693px;}
.ls8_c00191{letter-spacing:-0.007002px;}
.ls6_c00191{letter-spacing:0.000000px;}
.ls4_c00191{letter-spacing:0.011693px;}
.ls0_c00191{letter-spacing:0.021006px;}
.ls2_c00191{letter-spacing:0.028008px;}
.ls1_c00191{letter-spacing:0.084024px;}
.ls12_c00191{letter-spacing:0.233866px;}
.ls3_c00191{letter-spacing:0.362492px;}
.ls13_c00191{letter-spacing:0.467731px;}
.sc__c00191{text-shadow:none;}
.sc0_c00191{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00191{-webkit-text-stroke:0px transparent;}
.sc0_c00191{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00191{word-spacing:-58.466400px;}
.ws3_c00191{word-spacing:-16.107493px;}
.ws0_c00191{word-spacing:-12.609098px;}
.ws1_c00191{word-spacing:-10.397640px;}
.ws1c_c00191{word-spacing:-0.222172px;}
.ws1d_c00191{word-spacing:-0.093546px;}
.wsc_c00191{word-spacing:-0.014004px;}
.ws10_c00191{word-spacing:-0.007002px;}
.ws4_c00191{word-spacing:0.000000px;}
.wsd_c00191{word-spacing:0.014004px;}
.ws22_c00191{word-spacing:0.029233px;}
.ws21_c00191{word-spacing:0.064313px;}
.ws23_c00191{word-spacing:0.087700px;}
.wsf_c00191{word-spacing:0.259074px;}
.ws11_c00191{word-spacing:0.364104px;}
.wse_c00191{word-spacing:0.378108px;}
.ws1f_c00191{word-spacing:0.385878px;}
.ws20_c00191{word-spacing:0.409265px;}
.ws9_c00191{word-spacing:0.440634px;}
.ws24_c00191{word-spacing:0.719137px;}
.ws1e_c00191{word-spacing:1.069935px;}
.wsa_c00191{word-spacing:1.099314px;}
.ws1b_c00191{word-spacing:1.461660px;}
.ws15_c00191{word-spacing:1.792512px;}
.ws12_c00191{word-spacing:2.142612px;}
.ws5_c00191{word-spacing:2.177622px;}
.ws19_c00191{word-spacing:4.999428px;}
.ws7_c00191{word-spacing:5.034438px;}
.ws6_c00191{word-spacing:5.048442px;}
.ws17_c00191{word-spacing:10.446984px;}
.ws18_c00191{word-spacing:10.804086px;}
.ws1a_c00191{word-spacing:18.359244px;}
.wsb_c00191{word-spacing:18.688338px;}
.ws16_c00191{word-spacing:18.716346px;}
.ws8_c00191{word-spacing:25.907400px;}
.ws14_c00191{word-spacing:37.047582px;}
.ws13_c00191{word-spacing:37.404684px;}
._3_c00191{margin-left:-2.708010px;}
._1_c00191{margin-left:-1.295370px;}
._0_c00191{width:1.274364px;}
._2_c00191{width:5.930694px;}
.fc0_c00191{color:rgb(0,0,0);}
.fs3_c00191{font-size:37.809600px;}
.fs2_c00191{font-size:46.562400px;}
.fs4_c00191{font-size:58.466400px;}
.fs0_c00191{font-size:70.020000px;}
.fs1_c00191{font-size:75.971400px;}
.y0_c00191{bottom:0.000000px;}
.y2_c00191{bottom:109.740968px;}
.y1_c00191{bottom:129.810450px;}
.y22_c00191{bottom:149.429891px;}
.y21_c00191{bottom:170.940450px;}
.y20_c00191{bottom:185.697543px;}
.y1f_c00191{bottom:244.108227px;}
.y1e_c00191{bottom:274.348114px;}
.y1d_c00191{bottom:304.498726px;}
.y1c_c00191{bottom:334.738614px;}
.y1b_c00191{bottom:364.889226px;}
.y1a_c00191{bottom:395.039838px;}
.y19_c00191{bottom:425.187179px;}
.y18_c00191{bottom:455.427066px;}
.y17_c00191{bottom:485.577678px;}
.y16_c00191{bottom:515.817566px;}
.y15_c00191{bottom:545.968178px;}
.y14_c00191{bottom:576.208065px;}
.y13_c00191{bottom:606.358677px;}
.y12_c00191{bottom:636.598565px;}
.y11_c00191{bottom:666.749176px;}
.y10_c00191{bottom:696.989064px;}
.yf_c00191{bottom:727.139676px;}
.ye_c00191{bottom:757.379564px;}
.yd_c00191{bottom:787.619451px;}
.yc_c00191{bottom:817.770063px;}
.yb_c00191{bottom:848.009951px;}
.ya_c00191{bottom:878.160562px;}
.y9_c00191{bottom:908.400450px;}
.y8_c00191{bottom:933.150450px;}
.y7_c00191{bottom:972.210567px;}
.y6_c00191{bottom:1019.909942px;}
.y5_c00191{bottom:1050.060553px;}
.y4_c00191{bottom:1080.300441px;}
.y3_c00191{bottom:1110.451053px;}
.h7_c00191{height:39.338549px;}
.h8_c00191{height:54.098549px;}
.h4_c00191{height:62.600889px;}
.h1_c00191{height:62.771836px;}
.h6_c00191{height:62.784064px;}
.h3_c00191{height:63.216299px;}
.h2_c00191{height:68.589413px;}
.h5_c00191{height:74.042472px;}
.h0_c00191{height:1263.000000px;}
.w0_c00191{width:892.500000px;}
.x0_c00191{left:0.000000px;}
.x2_c00191{left:82.710059px;}
.x1_c00191{left:431.730000px;}
@media print{
.v2_c00191{vertical-align:-13.120000pt;}
.v0_c00191{vertical-align:0.000000pt;}
.v1_c00191{vertical-align:28.812165pt;}
.ls11_c00191{letter-spacing:-0.649627pt;}
.ls1c_c00191{letter-spacing:-0.628839pt;}
.ls14_c00191{letter-spacing:-0.301427pt;}
.lse_c00191{letter-spacing:-0.297999pt;}
.lsd_c00191{letter-spacing:-0.136928pt;}
.lsa_c00191{letter-spacing:-0.114801pt;}
.ls16_c00191{letter-spacing:-0.083152pt;}
.ls18_c00191{letter-spacing:-0.077955pt;}
.ls1b_c00191{letter-spacing:-0.067561pt;}
.ls10_c00191{letter-spacing:-0.067217pt;}
.ls5_c00191{letter-spacing:-0.056016pt;}
.ls19_c00191{letter-spacing:-0.046773pt;}
.ls9_c00191{letter-spacing:-0.037344pt;}
.ls17_c00191{letter-spacing:-0.031182pt;}
.lsb_c00191{letter-spacing:-0.031120pt;}
.ls7_c00191{letter-spacing:-0.024896pt;}
.lsc_c00191{letter-spacing:-0.018672pt;}
.ls1a_c00191{letter-spacing:-0.015591pt;}
.lsf_c00191{letter-spacing:-0.012448pt;}
.ls15_c00191{letter-spacing:-0.010394pt;}
.ls8_c00191{letter-spacing:-0.006224pt;}
.ls6_c00191{letter-spacing:0.000000pt;}
.ls4_c00191{letter-spacing:0.010394pt;}
.ls0_c00191{letter-spacing:0.018672pt;}
.ls2_c00191{letter-spacing:0.024896pt;}
.ls1_c00191{letter-spacing:0.074688pt;}
.ls12_c00191{letter-spacing:0.207881pt;}
.ls3_c00191{letter-spacing:0.322215pt;}
.ls13_c00191{letter-spacing:0.415761pt;}
.ws2_c00191{word-spacing:-51.970133pt;}
.ws3_c00191{word-spacing:-14.317772pt;}
.ws0_c00191{word-spacing:-11.208087pt;}
.ws1_c00191{word-spacing:-9.242347pt;}
.ws1c_c00191{word-spacing:-0.197487pt;}
.ws1d_c00191{word-spacing:-0.083152pt;}
.wsc_c00191{word-spacing:-0.012448pt;}
.ws10_c00191{word-spacing:-0.006224pt;}
.ws4_c00191{word-spacing:0.000000pt;}
.wsd_c00191{word-spacing:0.012448pt;}
.ws22_c00191{word-spacing:0.025985pt;}
.ws21_c00191{word-spacing:0.057167pt;}
.ws23_c00191{word-spacing:0.077955pt;}
.wsf_c00191{word-spacing:0.230288pt;}
.ws11_c00191{word-spacing:0.323648pt;}
.wse_c00191{word-spacing:0.336096pt;}
.ws1f_c00191{word-spacing:0.343003pt;}
.ws20_c00191{word-spacing:0.363791pt;}
.ws9_c00191{word-spacing:0.391675pt;}
.ws24_c00191{word-spacing:0.639233pt;}
.ws1e_c00191{word-spacing:0.951053pt;}
.wsa_c00191{word-spacing:0.977168pt;}
.ws1b_c00191{word-spacing:1.299253pt;}
.ws15_c00191{word-spacing:1.593344pt;}
.ws12_c00191{word-spacing:1.904544pt;}
.ws5_c00191{word-spacing:1.935664pt;}
.ws19_c00191{word-spacing:4.443936pt;}
.ws7_c00191{word-spacing:4.475056pt;}
.ws6_c00191{word-spacing:4.487504pt;}
.ws17_c00191{word-spacing:9.286208pt;}
.ws18_c00191{word-spacing:9.603632pt;}
.ws1a_c00191{word-spacing:16.319328pt;}
.wsb_c00191{word-spacing:16.611856pt;}
.ws16_c00191{word-spacing:16.636752pt;}
.ws8_c00191{word-spacing:23.028800pt;}
.ws14_c00191{word-spacing:32.931184pt;}
.ws13_c00191{word-spacing:33.248608pt;}
._3_c00191{margin-left:-2.407120pt;}
._1_c00191{margin-left:-1.151440pt;}
._0_c00191{width:1.132768pt;}
._2_c00191{width:5.271728pt;}
.fs3_c00191{font-size:33.608533pt;}
.fs2_c00191{font-size:41.388800pt;}
.fs4_c00191{font-size:51.970133pt;}
.fs0_c00191{font-size:62.240000pt;}
.fs1_c00191{font-size:67.530133pt;}
.y0_c00191{bottom:0.000000pt;}
.y2_c00191{bottom:97.547527pt;}
.y1_c00191{bottom:115.387067pt;}
.y22_c00191{bottom:132.826570pt;}
.y21_c00191{bottom:151.947067pt;}
.y20_c00191{bottom:165.064483pt;}
.y1f_c00191{bottom:216.985091pt;}
.y1e_c00191{bottom:243.864991pt;}
.y1d_c00191{bottom:270.665535pt;}
.y1c_c00191{bottom:297.545435pt;}
.y1b_c00191{bottom:324.345979pt;}
.y1a_c00191{bottom:351.146523pt;}
.y19_c00191{bottom:377.944159pt;}
.y18_c00191{bottom:404.824059pt;}
.y17_c00191{bottom:431.624603pt;}
.y16_c00191{bottom:458.504503pt;}
.y15_c00191{bottom:485.305047pt;}
.y14_c00191{bottom:512.184947pt;}
.y13_c00191{bottom:538.985491pt;}
.y12_c00191{bottom:565.865391pt;}
.y11_c00191{bottom:592.665935pt;}
.y10_c00191{bottom:619.545835pt;}
.yf_c00191{bottom:646.346379pt;}
.ye_c00191{bottom:673.226279pt;}
.yd_c00191{bottom:700.106179pt;}
.yc_c00191{bottom:726.906723pt;}
.yb_c00191{bottom:753.786623pt;}
.ya_c00191{bottom:780.587167pt;}
.y9_c00191{bottom:807.467067pt;}
.y8_c00191{bottom:829.467067pt;}
.y7_c00191{bottom:864.187171pt;}
.y6_c00191{bottom:906.586615pt;}
.y5_c00191{bottom:933.387159pt;}
.y4_c00191{bottom:960.267059pt;}
.y3_c00191{bottom:987.067603pt;}
.h7_c00191{height:34.967599pt;}
.h8_c00191{height:48.087599pt;}
.h4_c00191{height:55.645234pt;}
.h1_c00191{height:55.797187pt;}
.h6_c00191{height:55.808057pt;}
.h3_c00191{height:56.192266pt;}
.h2_c00191{height:60.968367pt;}
.h5_c00191{height:65.815531pt;}
.h0_c00191{height:1122.666667pt;}
.w0_c00191{width:793.333333pt;}
.x0_c00191{left:0.000000pt;}
.x2_c00191{left:73.520052pt;}
.x1_c00191{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c1d2cd56b279e7b94ba7b550.woff2')format("woff");}.ff1_c00192{font-family:ff1_c00192;line-height:1.106934;font-style:normal;font-weight:normal;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_1f9d8714205652ad31366944.woff2')format("woff");}.ff2_c00192{font-family:ff2_c00192;line-height:1.104492;font-style:normal;font-weight:normal;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_bcd8272aa2839aefbe4596f2.woff2')format("woff");}.ff3_c00192{font-family:ff3_c00192;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00192;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff4_c00192{font-family:ff4_c00192;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00192;src:url('chunks/assets/font_d71ea32b81f07843a540acf3.woff2')format("woff");}.ff5_c00192{font-family:ff5_c00192;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00192;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff6_c00192{font-family:ff6_c00192;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00192{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00192{vertical-align:-14.760000px;}
.v0_c00192{vertical-align:0.000000px;}
.v1_c00192{vertical-align:32.040036px;}
.ls20_c00192{letter-spacing:-0.812683px;}
.ls1a_c00192{letter-spacing:-0.374185px;}
.ls15_c00192{letter-spacing:-0.344952px;}
.ls1f_c00192{letter-spacing:-0.263099px;}
.ls16_c00192{letter-spacing:-0.099393px;}
.ls1b_c00192{letter-spacing:-0.087700px;}
.ls11_c00192{letter-spacing:-0.075619px;}
.ls18_c00192{letter-spacing:-0.070160px;}
.ls19_c00192{letter-spacing:-0.064313px;}
.ls8_c00192{letter-spacing:-0.063018px;}
.lsc_c00192{letter-spacing:-0.056016px;}
.ls1d_c00192{letter-spacing:-0.052620px;}
.lse_c00192{letter-spacing:-0.042012px;}
.ls12_c00192{letter-spacing:-0.040926px;}
.lsb_c00192{letter-spacing:-0.035010px;}
.lsd_c00192{letter-spacing:-0.028008px;}
.ls14_c00192{letter-spacing:-0.023387px;}
.ls10_c00192{letter-spacing:-0.021006px;}
.ls1e_c00192{letter-spacing:-0.017540px;}
.lsf_c00192{letter-spacing:-0.014004px;}
.ls21_c00192{letter-spacing:-0.011693px;}
.lsa_c00192{letter-spacing:-0.007002px;}
.ls9_c00192{letter-spacing:0.000000px;}
.ls17_c00192{letter-spacing:0.005847px;}
.ls0_c00192{letter-spacing:0.007002px;}
.ls6_c00192{letter-spacing:0.011693px;}
.ls3_c00192{letter-spacing:0.014004px;}
.ls4_c00192{letter-spacing:0.021006px;}
.ls1_c00192{letter-spacing:0.023281px;}
.ls2_c00192{letter-spacing:0.028008px;}
.ls5_c00192{letter-spacing:0.029233px;}
.ls7_c00192{letter-spacing:0.099393px;}
.ls13_c00192{letter-spacing:0.257252px;}
.ls1c_c00192{letter-spacing:0.344952px;}
.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;}
}
.ws4_c00192{word-spacing:-58.466400px;}
.ws2_c00192{word-spacing:-19.465560px;}
.ws1_c00192{word-spacing:-19.423548px;}
.ws5_c00192{word-spacing:-15.821008px;}
.ws0_c00192{word-spacing:-12.967628px;}
.ws3_c00192{word-spacing:-10.397640px;}
.ws33_c00192{word-spacing:-0.087700px;}
.ws8_c00192{word-spacing:-0.021006px;}
.ws11_c00192{word-spacing:-0.007002px;}
.ws6_c00192{word-spacing:0.000000px;}
.ws29_c00192{word-spacing:0.005847px;}
.ws9_c00192{word-spacing:0.021006px;}
.ws34_c00192{word-spacing:0.023387px;}
.ws23_c00192{word-spacing:0.028008px;}
.ws28_c00192{word-spacing:0.111086px;}
.ws31_c00192{word-spacing:0.274792px;}
.ws32_c00192{word-spacing:0.467731px;}
.ws22_c00192{word-spacing:1.820520px;}
.ws2e_c00192{word-spacing:1.829998px;}
.ws2f_c00192{word-spacing:1.865078px;}
.ws2d_c00192{word-spacing:1.900158px;}
.ws30_c00192{word-spacing:2.549135px;}
.wsf_c00192{word-spacing:3.578022px;}
.wsa_c00192{word-spacing:3.984138px;}
.ws1e_c00192{word-spacing:4.348242px;}
.ws1b_c00192{word-spacing:4.663332px;}
.ws1a_c00192{word-spacing:4.684338px;}
.wsd_c00192{word-spacing:6.455844px;}
.wsb_c00192{word-spacing:6.462846px;}
.wsc_c00192{word-spacing:6.525864px;}
.ws12_c00192{word-spacing:7.156044px;}
.ws13_c00192{word-spacing:7.177050px;}
.ws21_c00192{word-spacing:7.905258px;}
.ws25_c00192{word-spacing:8.758267px;}
.ws26_c00192{word-spacing:8.986286px;}
.ws27_c00192{word-spacing:9.038905px;}
.ws24_c00192{word-spacing:9.056445px;}
.ws14_c00192{word-spacing:9.732780px;}
.ws2c_c00192{word-spacing:10.857210px;}
.ws2b_c00192{word-spacing:11.237242px;}
.ws2a_c00192{word-spacing:11.243089px;}
.ws7_c00192{word-spacing:12.232494px;}
.ws15_c00192{word-spacing:12.981708px;}
.ws1c_c00192{word-spacing:14.025006px;}
.ws1f_c00192{word-spacing:16.181622px;}
.ws10_c00192{word-spacing:17.301942px;}
.ws16_c00192{word-spacing:18.023148px;}
.ws18_c00192{word-spacing:19.080450px;}
.ws19_c00192{word-spacing:19.395540px;}
.ws17_c00192{word-spacing:19.465560px;}
.ws20_c00192{word-spacing:21.202056px;}
.wse_c00192{word-spacing:21.622176px;}
.ws1d_c00192{word-spacing:29.856528px;}
._3_c00192{margin-left:-2.712906px;}
._1_c00192{margin-left:-1.085310px;}
._0_c00192{width:1.253358px;}
._4_c00192{width:2.341573px;}
._2_c00192{width:5.930694px;}
.fc0_c00192{color:rgb(0,0,0);}
.fs2_c00192{font-size:37.809600px;}
.fs1_c00192{font-size:46.562400px;}
.fs3_c00192{font-size:58.466400px;}
.fs0_c00192{font-size:70.020000px;}
.y0_c00192{bottom:0.000000px;}
.y2_c00192{bottom:109.740968px;}
.y1_c00192{bottom:129.810450px;}
.y25_c00192{bottom:153.120600px;}
.y24_c00192{bottom:167.249548px;}
.y23_c00192{bottom:185.249891px;}
.y22_c00192{bottom:206.760450px;}
.y21_c00192{bottom:221.069891px;}
.y20_c00192{bottom:242.580450px;}
.y1f_c00192{bottom:257.247966px;}
.y1e_c00192{bottom:295.228564px;}
.y1d_c00192{bottom:325.468452px;}
.y1c_c00192{bottom:355.619064px;}
.y1b_c00192{bottom:385.858951px;}
.y1a_c00192{bottom:416.009563px;}
.y19_c00192{bottom:446.249451px;}
.y18_c00192{bottom:476.400063px;}
.y17_c00192{bottom:506.639950px;}
.y16_c00192{bottom:536.790562px;}
.y15_c00192{bottom:567.028978px;}
.y14_c00192{bottom:597.088565px;}
.y13_c00192{bottom:627.328452px;}
.y12_c00192{bottom:657.479064px;}
.y11_c00192{bottom:687.718952px;}
.y10_c00192{bottom:717.869563px;}
.yf_c00192{bottom:748.109451px;}
.ye_c00192{bottom:778.260063px;}
.yd_c00192{bottom:808.499950px;}
.yc_c00192{bottom:838.650562px;}
.yb_c00192{bottom:868.889064px;}
.ya_c00192{bottom:899.039676px;}
.y9_c00192{bottom:929.279563px;}
.y8_c00192{bottom:959.519451px;}
.y7_c00192{bottom:989.670063px;}
.y6_c00192{bottom:1019.909951px;}
.y5_c00192{bottom:1050.060563px;}
.y4_c00192{bottom:1080.300441px;}
.y3_c00192{bottom:1110.451053px;}
.h9_c00192{height:39.337949px;}
.h7_c00192{height:39.338549px;}
.h8_c00192{height:54.098549px;}
.h2_c00192{height:62.600889px;}
.h1_c00192{height:62.771836px;}
.h6_c00192{height:62.781772px;}
.h3_c00192{height:73.668822px;}
.h4_c00192{height:73.788008px;}
.h5_c00192{height:73.788350px;}
.h0_c00192{height:1263.000000px;}
.w0_c00192{width:892.500000px;}
.x0_c00192{left:0.000000px;}
.x2_c00192{left:82.710059px;}
.x1_c00192{left:431.730000px;}
@media print{
.v2_c00192{vertical-align:-13.120000pt;}
.v0_c00192{vertical-align:0.000000pt;}
.v1_c00192{vertical-align:28.480032pt;}
.ls20_c00192{letter-spacing:-0.722385pt;}
.ls1a_c00192{letter-spacing:-0.332609pt;}
.ls15_c00192{letter-spacing:-0.306624pt;}
.ls1f_c00192{letter-spacing:-0.233866pt;}
.ls16_c00192{letter-spacing:-0.088349pt;}
.ls1b_c00192{letter-spacing:-0.077955pt;}
.ls11_c00192{letter-spacing:-0.067217pt;}
.ls18_c00192{letter-spacing:-0.062364pt;}
.ls19_c00192{letter-spacing:-0.057167pt;}
.ls8_c00192{letter-spacing:-0.056016pt;}
.lsc_c00192{letter-spacing:-0.049792pt;}
.ls1d_c00192{letter-spacing:-0.046773pt;}
.lse_c00192{letter-spacing:-0.037344pt;}
.ls12_c00192{letter-spacing:-0.036379pt;}
.lsb_c00192{letter-spacing:-0.031120pt;}
.lsd_c00192{letter-spacing:-0.024896pt;}
.ls14_c00192{letter-spacing:-0.020788pt;}
.ls10_c00192{letter-spacing:-0.018672pt;}
.ls1e_c00192{letter-spacing:-0.015591pt;}
.lsf_c00192{letter-spacing:-0.012448pt;}
.ls21_c00192{letter-spacing:-0.010394pt;}
.lsa_c00192{letter-spacing:-0.006224pt;}
.ls9_c00192{letter-spacing:0.000000pt;}
.ls17_c00192{letter-spacing:0.005197pt;}
.ls0_c00192{letter-spacing:0.006224pt;}
.ls6_c00192{letter-spacing:0.010394pt;}
.ls3_c00192{letter-spacing:0.012448pt;}
.ls4_c00192{letter-spacing:0.018672pt;}
.ls1_c00192{letter-spacing:0.020694pt;}
.ls2_c00192{letter-spacing:0.024896pt;}
.ls5_c00192{letter-spacing:0.025985pt;}
.ls7_c00192{letter-spacing:0.088349pt;}
.ls13_c00192{letter-spacing:0.228669pt;}
.ls1c_c00192{letter-spacing:0.306624pt;}
.ws4_c00192{word-spacing:-51.970133pt;}
.ws2_c00192{word-spacing:-17.302720pt;}
.ws1_c00192{word-spacing:-17.265376pt;}
.ws5_c00192{word-spacing:-14.063118pt;}
.ws0_c00192{word-spacing:-11.526781pt;}
.ws3_c00192{word-spacing:-9.242347pt;}
.ws33_c00192{word-spacing:-0.077955pt;}
.ws8_c00192{word-spacing:-0.018672pt;}
.ws11_c00192{word-spacing:-0.006224pt;}
.ws6_c00192{word-spacing:0.000000pt;}
.ws29_c00192{word-spacing:0.005197pt;}
.ws9_c00192{word-spacing:0.018672pt;}
.ws34_c00192{word-spacing:0.020788pt;}
.ws23_c00192{word-spacing:0.024896pt;}
.ws28_c00192{word-spacing:0.098743pt;}
.ws31_c00192{word-spacing:0.244260pt;}
.ws32_c00192{word-spacing:0.415761pt;}
.ws22_c00192{word-spacing:1.618240pt;}
.ws2e_c00192{word-spacing:1.626665pt;}
.ws2f_c00192{word-spacing:1.657847pt;}
.ws2d_c00192{word-spacing:1.689029pt;}
.ws30_c00192{word-spacing:2.265898pt;}
.wsf_c00192{word-spacing:3.180464pt;}
.wsa_c00192{word-spacing:3.541456pt;}
.ws1e_c00192{word-spacing:3.865104pt;}
.ws1b_c00192{word-spacing:4.145184pt;}
.ws1a_c00192{word-spacing:4.163856pt;}
.wsd_c00192{word-spacing:5.738528pt;}
.wsb_c00192{word-spacing:5.744752pt;}
.wsc_c00192{word-spacing:5.800768pt;}
.ws12_c00192{word-spacing:6.360928pt;}
.ws13_c00192{word-spacing:6.379600pt;}
.ws21_c00192{word-spacing:7.026896pt;}
.ws25_c00192{word-spacing:7.785126pt;}
.ws26_c00192{word-spacing:7.987809pt;}
.ws27_c00192{word-spacing:8.034583pt;}
.ws24_c00192{word-spacing:8.050174pt;}
.ws14_c00192{word-spacing:8.651360pt;}
.ws2c_c00192{word-spacing:9.650854pt;}
.ws2b_c00192{word-spacing:9.988660pt;}
.ws2a_c00192{word-spacing:9.993857pt;}
.ws7_c00192{word-spacing:10.873328pt;}
.ws15_c00192{word-spacing:11.539296pt;}
.ws1c_c00192{word-spacing:12.466672pt;}
.ws1f_c00192{word-spacing:14.383664pt;}
.ws10_c00192{word-spacing:15.379504pt;}
.ws16_c00192{word-spacing:16.020576pt;}
.ws18_c00192{word-spacing:16.960400pt;}
.ws19_c00192{word-spacing:17.240480pt;}
.ws17_c00192{word-spacing:17.302720pt;}
.ws20_c00192{word-spacing:18.846272pt;}
.wse_c00192{word-spacing:19.219712pt;}
.ws1d_c00192{word-spacing:26.539136pt;}
._3_c00192{margin-left:-2.411472pt;}
._1_c00192{margin-left:-0.964720pt;}
._0_c00192{width:1.114096pt;}
._4_c00192{width:2.081398pt;}
._2_c00192{width:5.271728pt;}
.fs2_c00192{font-size:33.608533pt;}
.fs1_c00192{font-size:41.388800pt;}
.fs3_c00192{font-size:51.970133pt;}
.fs0_c00192{font-size:62.240000pt;}
.y0_c00192{bottom:0.000000pt;}
.y2_c00192{bottom:97.547527pt;}
.y1_c00192{bottom:115.387067pt;}
.y25_c00192{bottom:136.107200pt;}
.y24_c00192{bottom:148.666265pt;}
.y23_c00192{bottom:164.666570pt;}
.y22_c00192{bottom:183.787067pt;}
.y21_c00192{bottom:196.506570pt;}
.y20_c00192{bottom:215.627067pt;}
.y1f_c00192{bottom:228.664859pt;}
.y1e_c00192{bottom:262.425391pt;}
.y1d_c00192{bottom:289.305291pt;}
.y1c_c00192{bottom:316.105835pt;}
.y1b_c00192{bottom:342.985735pt;}
.y1a_c00192{bottom:369.786279pt;}
.y19_c00192{bottom:396.666179pt;}
.y18_c00192{bottom:423.466723pt;}
.y17_c00192{bottom:450.346623pt;}
.y16_c00192{bottom:477.147167pt;}
.y15_c00192{bottom:504.025759pt;}
.y14_c00192{bottom:530.745391pt;}
.y13_c00192{bottom:557.625291pt;}
.y12_c00192{bottom:584.425835pt;}
.y11_c00192{bottom:611.305735pt;}
.y10_c00192{bottom:638.106279pt;}
.yf_c00192{bottom:664.986179pt;}
.ye_c00192{bottom:691.786723pt;}
.yd_c00192{bottom:718.666623pt;}
.yc_c00192{bottom:745.467167pt;}
.yb_c00192{bottom:772.345835pt;}
.ya_c00192{bottom:799.146379pt;}
.y9_c00192{bottom:826.026279pt;}
.y8_c00192{bottom:852.906179pt;}
.y7_c00192{bottom:879.706723pt;}
.y6_c00192{bottom:906.586623pt;}
.y5_c00192{bottom:933.387167pt;}
.y4_c00192{bottom:960.267059pt;}
.y3_c00192{bottom:987.067603pt;}
.h9_c00192{height:34.967066pt;}
.h7_c00192{height:34.967599pt;}
.h8_c00192{height:48.087599pt;}
.h2_c00192{height:55.645234pt;}
.h1_c00192{height:55.797187pt;}
.h6_c00192{height:55.806019pt;}
.h3_c00192{height:65.483398pt;}
.h4_c00192{height:65.589340pt;}
.h5_c00192{height:65.589644pt;}
.h0_c00192{height:1122.666667pt;}
.w0_c00192{width:793.333333pt;}
.x0_c00192{left:0.000000pt;}
.x2_c00192{left:73.520052pt;}
.x1_c00192{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_26236561a8beb19d55079931.woff2')format("woff");}.ff1_c00193{font-family:ff1_c00193;line-height:1.106934;font-style:normal;font-weight:normal;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_0eafd19c0c9ab1f889dc5a5f.woff2')format("woff");}.ff2_c00193{font-family:ff2_c00193;line-height:1.104492;font-style:normal;font-weight:normal;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_51372b21eefa2930d487fe84.woff2')format("woff");}.ff3_c00193{font-family:ff3_c00193;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00193;src:url('chunks/assets/font_45770a49097d71a605f618eb.woff2')format("woff");}.ff4_c00193{font-family:ff4_c00193;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00193{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00193{vertical-align:-14.400000px;}
.v0_c00193{vertical-align:0.000000px;}
.v1_c00193{vertical-align:32.044032px;}
.ls14_c00193{letter-spacing:-0.707443px;}
.ls10_c00193{letter-spacing:-0.133038px;}
.ls16_c00193{letter-spacing:-0.099393px;}
.ls15_c00193{letter-spacing:-0.081853px;}
.ls12_c00193{letter-spacing:-0.075619px;}
.ls8_c00193{letter-spacing:-0.063018px;}
.lse_c00193{letter-spacing:-0.056016px;}
.lsc_c00193{letter-spacing:-0.049014px;}
.ls11_c00193{letter-spacing:-0.035010px;}
.lsd_c00193{letter-spacing:-0.028008px;}
.lsf_c00193{letter-spacing:-0.021006px;}
.ls13_c00193{letter-spacing:-0.017540px;}
.lsa_c00193{letter-spacing:-0.014004px;}
.lsb_c00193{letter-spacing:-0.007002px;}
.ls9_c00193{letter-spacing:0.000000px;}
.ls0_c00193{letter-spacing:0.007002px;}
.ls2_c00193{letter-spacing:0.023281px;}
.ls6_c00193{letter-spacing:0.023387px;}
.ls5_c00193{letter-spacing:0.028008px;}
.ls3_c00193{letter-spacing:0.035010px;}
.ls4_c00193{letter-spacing:0.042012px;}
.ls1_c00193{letter-spacing:0.077022px;}
.ls7_c00193{letter-spacing:0.362492px;}
.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;}
}
.ws1_c00193{word-spacing:-19.332522px;}
.ws0_c00193{word-spacing:-12.967628px;}
.ws2_c00193{word-spacing:-10.397640px;}
.ws13_c00193{word-spacing:-0.056016px;}
.ws4_c00193{word-spacing:-0.021006px;}
.ws3_c00193{word-spacing:0.000000px;}
.ws14_c00193{word-spacing:0.007002px;}
.ws22_c00193{word-spacing:0.029233px;}
.ws5_c00193{word-spacing:0.266076px;}
.ws6_c00193{word-spacing:0.350100px;}
.ws1d_c00193{word-spacing:0.364104px;}
.ws12_c00193{word-spacing:0.392112px;}
.ws23_c00193{word-spacing:0.719137px;}
.ws10_c00193{word-spacing:3.185910px;}
.wsf_c00193{word-spacing:3.641040px;}
.wsc_c00193{word-spacing:4.320234px;}
.wsd_c00193{word-spacing:4.334238px;}
.ws1e_c00193{word-spacing:5.431529px;}
.ws16_c00193{word-spacing:6.098742px;}
.ws18_c00193{word-spacing:6.112746px;}
.ws17_c00193{word-spacing:6.133752px;}
.ws1f_c00193{word-spacing:6.478077px;}
.ws15_c00193{word-spacing:6.798942px;}
.ws11_c00193{word-spacing:7.905258px;}
.ws1c_c00193{word-spacing:9.718776px;}
.ws20_c00193{word-spacing:10.892290px;}
.ws21_c00193{word-spacing:10.915677px;}
.wse_c00193{word-spacing:12.603600px;}
.wsa_c00193{word-spacing:13.674906px;}
.wsb_c00193{word-spacing:13.716918px;}
.ws1a_c00193{word-spacing:21.545154px;}
.ws19_c00193{word-spacing:21.622176px;}
.ws7_c00193{word-spacing:29.506428px;}
.ws1b_c00193{word-spacing:29.870532px;}
.ws9_c00193{word-spacing:31.270932px;}
.ws8_c00193{word-spacing:31.312944px;}
._3_c00193{margin-left:-2.712906px;}
._0_c00193{margin-left:-1.008288px;}
._1_c00193{width:1.183338px;}
._4_c00193{width:2.491795px;}
._2_c00193{width:5.930694px;}
.fc0_c00193{color:rgb(0,0,0);}
.fs2_c00193{font-size:37.809600px;}
.fs1_c00193{font-size:46.562400px;}
.fs3_c00193{font-size:58.466400px;}
.fs0_c00193{font-size:70.020000px;}
.y0_c00193{bottom:0.000000px;}
.y2_c00193{bottom:109.740968px;}
.y1_c00193{bottom:129.810450px;}
.y21_c00193{bottom:149.429891px;}
.y20_c00193{bottom:167.250450px;}
.y1f_c00193{bottom:188.940450px;}
.y1e_c00193{bottom:203.070107px;}
.y1d_c00193{bottom:224.670450px;}
.y1c_c00193{bottom:239.429541px;}
.y1b_c00193{bottom:385.858866px;}
.y1a_c00193{bottom:416.009478px;}
.y19_c00193{bottom:446.249365px;}
.y18_c00193{bottom:476.399977px;}
.y17_c00193{bottom:506.639865px;}
.y16_c00193{bottom:536.790477px;}
.y15_c00193{bottom:567.030365px;}
.y14_c00193{bottom:597.089950px;}
.y13_c00193{bottom:627.329838px;}
.y12_c00193{bottom:657.478677px;}
.y11_c00193{bottom:687.718565px;}
.y10_c00193{bottom:717.869177px;}
.yf_c00193{bottom:748.109064px;}
.ye_c00193{bottom:778.259676px;}
.yd_c00193{bottom:808.499564px;}
.yc_c00193{bottom:838.650176px;}
.yb_c00193{bottom:868.890063px;}
.ya_c00193{bottom:899.040675px;}
.y9_c00193{bottom:929.280563px;}
.y8_c00193{bottom:959.519442px;}
.y7_c00193{bottom:989.670054px;}
.y6_c00193{bottom:1019.909942px;}
.y5_c00193{bottom:1050.060553px;}
.y4_c00193{bottom:1080.300441px;}
.y3_c00193{bottom:1110.451053px;}
.h8_c00193{height:39.338549px;}
.h6_c00193{height:39.698549px;}
.h7_c00193{height:54.098549px;}
.h2_c00193{height:62.600889px;}
.h1_c00193{height:62.771836px;}
.h5_c00193{height:62.775472px;}
.h3_c00193{height:73.672818px;}
.h4_c00193{height:74.035878px;}
.h0_c00193{height:1263.000000px;}
.w0_c00193{width:892.500000px;}
.x0_c00193{left:0.000000px;}
.x2_c00193{left:82.710059px;}
.x1_c00193{left:431.730000px;}
@media print{
.v2_c00193{vertical-align:-12.800000pt;}
.v0_c00193{vertical-align:0.000000pt;}
.v1_c00193{vertical-align:28.483584pt;}
.ls14_c00193{letter-spacing:-0.628839pt;}
.ls10_c00193{letter-spacing:-0.118256pt;}
.ls16_c00193{letter-spacing:-0.088349pt;}
.ls15_c00193{letter-spacing:-0.072758pt;}
.ls12_c00193{letter-spacing:-0.067217pt;}
.ls8_c00193{letter-spacing:-0.056016pt;}
.lse_c00193{letter-spacing:-0.049792pt;}
.lsc_c00193{letter-spacing:-0.043568pt;}
.ls11_c00193{letter-spacing:-0.031120pt;}
.lsd_c00193{letter-spacing:-0.024896pt;}
.lsf_c00193{letter-spacing:-0.018672pt;}
.ls13_c00193{letter-spacing:-0.015591pt;}
.lsa_c00193{letter-spacing:-0.012448pt;}
.lsb_c00193{letter-spacing:-0.006224pt;}
.ls9_c00193{letter-spacing:0.000000pt;}
.ls0_c00193{letter-spacing:0.006224pt;}
.ls2_c00193{letter-spacing:0.020694pt;}
.ls6_c00193{letter-spacing:0.020788pt;}
.ls5_c00193{letter-spacing:0.024896pt;}
.ls3_c00193{letter-spacing:0.031120pt;}
.ls4_c00193{letter-spacing:0.037344pt;}
.ls1_c00193{letter-spacing:0.068464pt;}
.ls7_c00193{letter-spacing:0.322215pt;}
.ws1_c00193{word-spacing:-17.184464pt;}
.ws0_c00193{word-spacing:-11.526781pt;}
.ws2_c00193{word-spacing:-9.242347pt;}
.ws13_c00193{word-spacing:-0.049792pt;}
.ws4_c00193{word-spacing:-0.018672pt;}
.ws3_c00193{word-spacing:0.000000pt;}
.ws14_c00193{word-spacing:0.006224pt;}
.ws22_c00193{word-spacing:0.025985pt;}
.ws5_c00193{word-spacing:0.236512pt;}
.ws6_c00193{word-spacing:0.311200pt;}
.ws1d_c00193{word-spacing:0.323648pt;}
.ws12_c00193{word-spacing:0.348544pt;}
.ws23_c00193{word-spacing:0.639233pt;}
.ws10_c00193{word-spacing:2.831920pt;}
.wsf_c00193{word-spacing:3.236480pt;}
.wsc_c00193{word-spacing:3.840208pt;}
.wsd_c00193{word-spacing:3.852656pt;}
.ws1e_c00193{word-spacing:4.828025pt;}
.ws16_c00193{word-spacing:5.421104pt;}
.ws18_c00193{word-spacing:5.433552pt;}
.ws17_c00193{word-spacing:5.452224pt;}
.ws1f_c00193{word-spacing:5.758291pt;}
.ws15_c00193{word-spacing:6.043504pt;}
.ws11_c00193{word-spacing:7.026896pt;}
.ws1c_c00193{word-spacing:8.638912pt;}
.ws20_c00193{word-spacing:9.682036pt;}
.ws21_c00193{word-spacing:9.702824pt;}
.wse_c00193{word-spacing:11.203200pt;}
.wsa_c00193{word-spacing:12.155472pt;}
.wsb_c00193{word-spacing:12.192816pt;}
.ws1a_c00193{word-spacing:19.151248pt;}
.ws19_c00193{word-spacing:19.219712pt;}
.ws7_c00193{word-spacing:26.227936pt;}
.ws1b_c00193{word-spacing:26.551584pt;}
.ws9_c00193{word-spacing:27.796384pt;}
.ws8_c00193{word-spacing:27.833728pt;}
._3_c00193{margin-left:-2.411472pt;}
._0_c00193{margin-left:-0.896256pt;}
._1_c00193{width:1.051856pt;}
._4_c00193{width:2.214929pt;}
._2_c00193{width:5.271728pt;}
.fs2_c00193{font-size:33.608533pt;}
.fs1_c00193{font-size:41.388800pt;}
.fs3_c00193{font-size:51.970133pt;}
.fs0_c00193{font-size:62.240000pt;}
.y0_c00193{bottom:0.000000pt;}
.y2_c00193{bottom:97.547527pt;}
.y1_c00193{bottom:115.387067pt;}
.y21_c00193{bottom:132.826570pt;}
.y20_c00193{bottom:148.667067pt;}
.y1f_c00193{bottom:167.947067pt;}
.y1e_c00193{bottom:180.506762pt;}
.y1d_c00193{bottom:199.707067pt;}
.y1c_c00193{bottom:212.826259pt;}
.y1b_c00193{bottom:342.985659pt;}
.y1a_c00193{bottom:369.786203pt;}
.y19_c00193{bottom:396.666103pt;}
.y18_c00193{bottom:423.466647pt;}
.y17_c00193{bottom:450.346547pt;}
.y16_c00193{bottom:477.147091pt;}
.y15_c00193{bottom:504.026991pt;}
.y14_c00193{bottom:530.746623pt;}
.y13_c00193{bottom:557.626523pt;}
.y12_c00193{bottom:584.425491pt;}
.y11_c00193{bottom:611.305391pt;}
.y10_c00193{bottom:638.105935pt;}
.yf_c00193{bottom:664.985835pt;}
.ye_c00193{bottom:691.786379pt;}
.yd_c00193{bottom:718.666279pt;}
.yc_c00193{bottom:745.466823pt;}
.yb_c00193{bottom:772.346723pt;}
.ya_c00193{bottom:799.147267pt;}
.y9_c00193{bottom:826.027167pt;}
.y8_c00193{bottom:852.906171pt;}
.y7_c00193{bottom:879.706715pt;}
.y6_c00193{bottom:906.586615pt;}
.y5_c00193{bottom:933.387159pt;}
.y4_c00193{bottom:960.267059pt;}
.y3_c00193{bottom:987.067603pt;}
.h8_c00193{height:34.967599pt;}
.h6_c00193{height:35.287599pt;}
.h7_c00193{height:48.087599pt;}
.h2_c00193{height:55.645234pt;}
.h1_c00193{height:55.797187pt;}
.h5_c00193{height:55.800419pt;}
.h3_c00193{height:65.486950pt;}
.h4_c00193{height:65.809670pt;}
.h0_c00193{height:1122.666667pt;}
.w0_c00193{width:793.333333pt;}
.x0_c00193{left:0.000000pt;}
.x2_c00193{left:73.520052pt;}
.x1_c00193{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_93461943c29be0d0c6391307.woff2')format("woff");}.ff1_c00194{font-family:ff1_c00194;line-height:1.106934;font-style:normal;font-weight:normal;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_b7d80542898af809b12874cc.woff2')format("woff");}.ff2_c00194{font-family:ff2_c00194;line-height:1.104492;font-style:normal;font-weight:normal;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_c5d35d685a9aad65803a6a35.woff2')format("woff");}.ff3_c00194{font-family:ff3_c00194;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00194;src:url('chunks/assets/font_f3feab98eaea28ab38bba4fc.woff2')format("woff");}.ff4_c00194{font-family:ff4_c00194;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00194;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff5_c00194{font-family:ff5_c00194;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00194;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff6_c00194{font-family:ff6_c00194;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00194{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00194{vertical-align:-14.400000px;}
.v0_c00194{vertical-align:0.000000px;}
.v1_c00194{vertical-align:32.399586px;}
.ls1a_c00194{letter-spacing:-0.385878px;}
.ls1f_c00194{letter-spacing:-0.268945px;}
.ls1c_c00194{letter-spacing:-0.122779px;}
.ls17_c00194{letter-spacing:-0.111086px;}
.ls18_c00194{letter-spacing:-0.076006px;}
.ls12_c00194{letter-spacing:-0.075619px;}
.ls16_c00194{letter-spacing:-0.070160px;}
.ls9_c00194{letter-spacing:-0.063018px;}
.lse_c00194{letter-spacing:-0.049014px;}
.ls10_c00194{letter-spacing:-0.042012px;}
.ls11_c00194{letter-spacing:-0.035010px;}
.lsf_c00194{letter-spacing:-0.028008px;}
.ls15_c00194{letter-spacing:-0.023387px;}
.lsb_c00194{letter-spacing:-0.021006px;}
.lsc_c00194{letter-spacing:-0.014004px;}
.ls19_c00194{letter-spacing:-0.011693px;}
.lsd_c00194{letter-spacing:-0.007002px;}
.ls1b_c00194{letter-spacing:-0.005847px;}
.lsa_c00194{letter-spacing:0.000000px;}
.ls1_c00194{letter-spacing:0.007002px;}
.ls6_c00194{letter-spacing:0.014004px;}
.ls3_c00194{letter-spacing:0.021006px;}
.ls2_c00194{letter-spacing:0.023281px;}
.ls8_c00194{letter-spacing:0.023387px;}
.ls5_c00194{letter-spacing:0.028008px;}
.ls1d_c00194{letter-spacing:0.029233px;}
.ls13_c00194{letter-spacing:0.052620px;}
.ls0_c00194{letter-spacing:0.056016px;}
.ls20_c00194{letter-spacing:0.169553px;}
.ls4_c00194{letter-spacing:0.336096px;}
.ls7_c00194{letter-spacing:0.362492px;}
.ls1e_c00194{letter-spacing:0.385878px;}
.ls14_c00194{letter-spacing:0.450191px;}
.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;}
}
.ws3_c00194{word-spacing:-58.466400px;}
.ws2_c00194{word-spacing:-16.645384px;}
.ws4_c00194{word-spacing:-16.084107px;}
.ws0_c00194{word-spacing:-12.967628px;}
.ws1_c00194{word-spacing:-10.397640px;}
.ws9_c00194{word-spacing:-0.021006px;}
.ws2f_c00194{word-spacing:-0.011693px;}
.wsa_c00194{word-spacing:-0.007002px;}
.ws5_c00194{word-spacing:0.000000px;}
.ws1c_c00194{word-spacing:0.014004px;}
.ws33_c00194{word-spacing:0.023387px;}
.ws2e_c00194{word-spacing:0.344952px;}
.ws11_c00194{word-spacing:0.385110px;}
.ws23_c00194{word-spacing:0.714204px;}
.ws20_c00194{word-spacing:1.785510px;}
.ws21_c00194{word-spacing:1.806516px;}
.ws19_c00194{word-spacing:1.820520px;}
.ws7_c00194{word-spacing:2.093598px;}
.ws1b_c00194{word-spacing:2.135610px;}
.ws8_c00194{word-spacing:2.156616px;}
.ws1a_c00194{word-spacing:2.527722px;}
.ws17_c00194{word-spacing:4.292226px;}
.ws22_c00194{word-spacing:4.341240px;}
.ws18_c00194{word-spacing:4.698342px;}
.ws1e_c00194{word-spacing:5.027436px;}
.ws15_c00194{word-spacing:5.377536px;}
.wsf_c00194{word-spacing:5.762646px;}
.ws6_c00194{word-spacing:6.483852px;}
.ws14_c00194{word-spacing:7.520148px;}
.ws12_c00194{word-spacing:7.548156px;}
.ws13_c00194{word-spacing:7.576164px;}
.wsb_c00194{word-spacing:8.976564px;}
.ws1f_c00194{word-spacing:8.997570px;}
.wsc_c00194{word-spacing:9.396684px;}
.ws24_c00194{word-spacing:9.753786px;}
.ws32_c00194{word-spacing:10.284240px;}
.ws30_c00194{word-spacing:10.465486px;}
.ws31_c00194{word-spacing:10.722738px;}
.ws10_c00194{word-spacing:11.168190px;}
.wsd_c00194{word-spacing:14.053014px;}
.ws2d_c00194{word-spacing:14.897239px;}
.ws2c_c00194{word-spacing:15.136951px;}
.ws29_c00194{word-spacing:15.142798px;}
.ws2b_c00194{word-spacing:15.201264px;}
.ws28_c00194{word-spacing:15.207111px;}
.ws26_c00194{word-spacing:15.516983px;}
.ws27_c00194{word-spacing:15.563756px;}
.ws25_c00194{word-spacing:15.803468px;}
.ws2a_c00194{word-spacing:15.879474px;}
.ws1d_c00194{word-spacing:16.188624px;}
.wse_c00194{word-spacing:16.524720px;}
.ws16_c00194{word-spacing:19.458558px;}
._3_c00194{margin-left:-2.712780px;}
._1_c00194{margin-left:-1.085310px;}
._0_c00194{width:1.267362px;}
._2_c00194{width:5.930694px;}
.fc0_c00194{color:rgb(0,0,0);}
.fs2_c00194{font-size:37.809600px;}
.fs1_c00194{font-size:46.562400px;}
.fs3_c00194{font-size:58.466400px;}
.fs0_c00194{font-size:70.020000px;}
.y0_c00194{bottom:0.000000px;}
.y2_c00194{bottom:109.740968px;}
.y1_c00194{bottom:129.810450px;}
.y24_c00194{bottom:149.429891px;}
.y23_c00194{bottom:170.940450px;}
.y22_c00194{bottom:185.249548px;}
.y21_c00194{bottom:203.070107px;}
.y20_c00194{bottom:224.670450px;}
.y1f_c00194{bottom:239.427903px;}
.y1e_c00194{bottom:295.228591px;}
.y1d_c00194{bottom:325.468479px;}
.y1c_c00194{bottom:355.619091px;}
.y1b_c00194{bottom:385.858978px;}
.y1a_c00194{bottom:416.009590px;}
.y19_c00194{bottom:446.249478px;}
.y18_c00194{bottom:476.400090px;}
.y17_c00194{bottom:506.639977px;}
.y16_c00194{bottom:536.790589px;}
.y15_c00194{bottom:567.030477px;}
.y14_c00194{bottom:597.090063px;}
.y13_c00194{bottom:627.329950px;}
.y12_c00194{bottom:657.480562px;}
.y11_c00194{bottom:687.717453px;}
.y10_c00194{bottom:717.868065px;}
.yf_c00194{bottom:748.107953px;}
.ye_c00194{bottom:778.258564px;}
.yd_c00194{bottom:808.498452px;}
.yc_c00194{bottom:838.649064px;}
.yb_c00194{bottom:868.888951px;}
.ya_c00194{bottom:899.039563px;}
.y9_c00194{bottom:929.279451px;}
.y8_c00194{bottom:959.519339px;}
.y7_c00194{bottom:989.669950px;}
.y6_c00194{bottom:1019.909838px;}
.y5_c00194{bottom:1050.060553px;}
.y4_c00194{bottom:1080.300441px;}
.y3_c00194{bottom:1110.451053px;}
.h8_c00194{height:39.338549px;}
.h6_c00194{height:39.698549px;}
.h7_c00194{height:54.098549px;}
.h2_c00194{height:62.600889px;}
.h1_c00194{height:62.771836px;}
.h5_c00194{height:62.782024px;}
.h4_c00194{height:73.680774px;}
.h3_c00194{height:74.028372px;}
.h0_c00194{height:1263.000000px;}
.w0_c00194{width:892.500000px;}
.x0_c00194{left:0.000000px;}
.x2_c00194{left:82.710059px;}
.x1_c00194{left:431.730000px;}
@media print{
.v2_c00194{vertical-align:-12.800000pt;}
.v0_c00194{vertical-align:0.000000pt;}
.v1_c00194{vertical-align:28.799632pt;}
.ls1a_c00194{letter-spacing:-0.343003pt;}
.ls1f_c00194{letter-spacing:-0.239063pt;}
.ls1c_c00194{letter-spacing:-0.109137pt;}
.ls17_c00194{letter-spacing:-0.098743pt;}
.ls18_c00194{letter-spacing:-0.067561pt;}
.ls12_c00194{letter-spacing:-0.067217pt;}
.ls16_c00194{letter-spacing:-0.062364pt;}
.ls9_c00194{letter-spacing:-0.056016pt;}
.lse_c00194{letter-spacing:-0.043568pt;}
.ls10_c00194{letter-spacing:-0.037344pt;}
.ls11_c00194{letter-spacing:-0.031120pt;}
.lsf_c00194{letter-spacing:-0.024896pt;}
.ls15_c00194{letter-spacing:-0.020788pt;}
.lsb_c00194{letter-spacing:-0.018672pt;}
.lsc_c00194{letter-spacing:-0.012448pt;}
.ls19_c00194{letter-spacing:-0.010394pt;}
.lsd_c00194{letter-spacing:-0.006224pt;}
.ls1b_c00194{letter-spacing:-0.005197pt;}
.lsa_c00194{letter-spacing:0.000000pt;}
.ls1_c00194{letter-spacing:0.006224pt;}
.ls6_c00194{letter-spacing:0.012448pt;}
.ls3_c00194{letter-spacing:0.018672pt;}
.ls2_c00194{letter-spacing:0.020694pt;}
.ls8_c00194{letter-spacing:0.020788pt;}
.ls5_c00194{letter-spacing:0.024896pt;}
.ls1d_c00194{letter-spacing:0.025985pt;}
.ls13_c00194{letter-spacing:0.046773pt;}
.ls0_c00194{letter-spacing:0.049792pt;}
.ls20_c00194{letter-spacing:0.150713pt;}
.ls4_c00194{letter-spacing:0.298752pt;}
.ls7_c00194{letter-spacing:0.322215pt;}
.ls1e_c00194{letter-spacing:0.343003pt;}
.ls14_c00194{letter-spacing:0.400170pt;}
.ws3_c00194{word-spacing:-51.970133pt;}
.ws2_c00194{word-spacing:-14.795897pt;}
.ws4_c00194{word-spacing:-14.296984pt;}
.ws0_c00194{word-spacing:-11.526781pt;}
.ws1_c00194{word-spacing:-9.242347pt;}
.ws9_c00194{word-spacing:-0.018672pt;}
.ws2f_c00194{word-spacing:-0.010394pt;}
.wsa_c00194{word-spacing:-0.006224pt;}
.ws5_c00194{word-spacing:0.000000pt;}
.ws1c_c00194{word-spacing:0.012448pt;}
.ws33_c00194{word-spacing:0.020788pt;}
.ws2e_c00194{word-spacing:0.306624pt;}
.ws11_c00194{word-spacing:0.342320pt;}
.ws23_c00194{word-spacing:0.634848pt;}
.ws20_c00194{word-spacing:1.587120pt;}
.ws21_c00194{word-spacing:1.605792pt;}
.ws19_c00194{word-spacing:1.618240pt;}
.ws7_c00194{word-spacing:1.860976pt;}
.ws1b_c00194{word-spacing:1.898320pt;}
.ws8_c00194{word-spacing:1.916992pt;}
.ws1a_c00194{word-spacing:2.246864pt;}
.ws17_c00194{word-spacing:3.815312pt;}
.ws22_c00194{word-spacing:3.858880pt;}
.ws18_c00194{word-spacing:4.176304pt;}
.ws1e_c00194{word-spacing:4.468832pt;}
.ws15_c00194{word-spacing:4.780032pt;}
.wsf_c00194{word-spacing:5.122352pt;}
.ws6_c00194{word-spacing:5.763424pt;}
.ws14_c00194{word-spacing:6.684576pt;}
.ws12_c00194{word-spacing:6.709472pt;}
.ws13_c00194{word-spacing:6.734368pt;}
.wsb_c00194{word-spacing:7.979168pt;}
.ws1f_c00194{word-spacing:7.997840pt;}
.wsc_c00194{word-spacing:8.352608pt;}
.ws24_c00194{word-spacing:8.670032pt;}
.ws32_c00194{word-spacing:9.141546pt;}
.ws30_c00194{word-spacing:9.302654pt;}
.ws31_c00194{word-spacing:9.531322pt;}
.ws10_c00194{word-spacing:9.927280pt;}
.wsd_c00194{word-spacing:12.491568pt;}
.ws2d_c00194{word-spacing:13.241990pt;}
.ws2c_c00194{word-spacing:13.455068pt;}
.ws29_c00194{word-spacing:13.460265pt;}
.ws2b_c00194{word-spacing:13.512235pt;}
.ws28_c00194{word-spacing:13.517432pt;}
.ws26_c00194{word-spacing:13.792873pt;}
.ws27_c00194{word-spacing:13.834449pt;}
.ws25_c00194{word-spacing:14.047527pt;}
.ws2a_c00194{word-spacing:14.115088pt;}
.ws1d_c00194{word-spacing:14.389888pt;}
.wse_c00194{word-spacing:14.688640pt;}
.ws16_c00194{word-spacing:17.296496pt;}
._3_c00194{margin-left:-2.411360pt;}
._1_c00194{margin-left:-0.964720pt;}
._0_c00194{width:1.126544pt;}
._2_c00194{width:5.271728pt;}
.fs2_c00194{font-size:33.608533pt;}
.fs1_c00194{font-size:41.388800pt;}
.fs3_c00194{font-size:51.970133pt;}
.fs0_c00194{font-size:62.240000pt;}
.y0_c00194{bottom:0.000000pt;}
.y2_c00194{bottom:97.547527pt;}
.y1_c00194{bottom:115.387067pt;}
.y24_c00194{bottom:132.826570pt;}
.y23_c00194{bottom:151.947067pt;}
.y22_c00194{bottom:164.666265pt;}
.y21_c00194{bottom:180.506762pt;}
.y20_c00194{bottom:199.707067pt;}
.y1f_c00194{bottom:212.824803pt;}
.y1e_c00194{bottom:262.425415pt;}
.y1d_c00194{bottom:289.305315pt;}
.y1c_c00194{bottom:316.105859pt;}
.y1b_c00194{bottom:342.985759pt;}
.y1a_c00194{bottom:369.786303pt;}
.y19_c00194{bottom:396.666203pt;}
.y18_c00194{bottom:423.466747pt;}
.y17_c00194{bottom:450.346647pt;}
.y16_c00194{bottom:477.147191pt;}
.y15_c00194{bottom:504.027091pt;}
.y14_c00194{bottom:530.746723pt;}
.y13_c00194{bottom:557.626623pt;}
.y12_c00194{bottom:584.427167pt;}
.y11_c00194{bottom:611.304403pt;}
.y10_c00194{bottom:638.104947pt;}
.yf_c00194{bottom:664.984847pt;}
.ye_c00194{bottom:691.785391pt;}
.yd_c00194{bottom:718.665291pt;}
.yc_c00194{bottom:745.465835pt;}
.yb_c00194{bottom:772.345735pt;}
.ya_c00194{bottom:799.146279pt;}
.y9_c00194{bottom:826.026179pt;}
.y8_c00194{bottom:852.906079pt;}
.y7_c00194{bottom:879.706623pt;}
.y6_c00194{bottom:906.586523pt;}
.y5_c00194{bottom:933.387159pt;}
.y4_c00194{bottom:960.267059pt;}
.y3_c00194{bottom:987.067603pt;}
.h8_c00194{height:34.967599pt;}
.h6_c00194{height:35.287599pt;}
.h7_c00194{height:48.087599pt;}
.h2_c00194{height:55.645234pt;}
.h1_c00194{height:55.797187pt;}
.h5_c00194{height:55.806243pt;}
.h4_c00194{height:65.494022pt;}
.h3_c00194{height:65.802998pt;}
.h0_c00194{height:1122.666667pt;}
.w0_c00194{width:793.333333pt;}
.x0_c00194{left:0.000000pt;}
.x2_c00194{left:73.520052pt;}
.x1_c00194{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f33cc769e11ace3dda7d1b25.woff2')format("woff");}.ff1_c00195{font-family:ff1_c00195;line-height:1.106934;font-style:normal;font-weight:normal;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_a0b261cbafbc7c1d3c908c63.woff2')format("woff");}.ff2_c00195{font-family:ff2_c00195;line-height:1.104492;font-style:normal;font-weight:normal;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_4ef8b5a4682161a56f24ab00.woff2')format("woff");}.ff3_c00195{font-family:ff3_c00195;line-height:1.133301;font-style:normal;font-weight:normal;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_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff4_c00195{font-family:ff4_c00195;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00195;src:url('chunks/assets/font_2432fda2459d2021a8ec6ccc.woff2')format("woff");}.ff5_c00195{font-family:ff5_c00195;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00195;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff6_c00195{font-family:ff6_c00195;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00195{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00195{vertical-align:-14.760600px;}
.v0_c00195{vertical-align:0.000000px;}
.v1_c00195{vertical-align:32.411124px;}
.lsc_c00195{letter-spacing:-0.335249px;}
.lse_c00195{letter-spacing:-0.116933px;}
.lsd_c00195{letter-spacing:-0.075619px;}
.ls3_c00195{letter-spacing:-0.063018px;}
.ls8_c00195{letter-spacing:-0.049014px;}
.lsa_c00195{letter-spacing:-0.042012px;}
.lsb_c00195{letter-spacing:-0.035010px;}
.ls7_c00195{letter-spacing:-0.028008px;}
.ls11_c00195{letter-spacing:-0.023387px;}
.ls5_c00195{letter-spacing:-0.021006px;}
.ls6_c00195{letter-spacing:-0.014004px;}
.ls12_c00195{letter-spacing:-0.011693px;}
.ls9_c00195{letter-spacing:-0.007002px;}
.ls10_c00195{letter-spacing:-0.005847px;}
.ls4_c00195{letter-spacing:0.000000px;}
.ls0_c00195{letter-spacing:0.007002px;}
.ls1_c00195{letter-spacing:0.014004px;}
.ls2_c00195{letter-spacing:0.021006px;}
.lsf_c00195{letter-spacing:0.216326px;}
.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;}
}
.ws3_c00195{word-spacing:-58.466400px;}
.ws2_c00195{word-spacing:-16.078260px;}
.ws0_c00195{word-spacing:-12.609098px;}
.ws1_c00195{word-spacing:-10.397640px;}
.ws26_c00195{word-spacing:-0.561277px;}
.ws4_c00195{word-spacing:0.000000px;}
.ws27_c00195{word-spacing:0.017540px;}
.wsf_c00195{word-spacing:0.028008px;}
.ws28_c00195{word-spacing:0.035080px;}
.ws17_c00195{word-spacing:0.049014px;}
.ws9_c00195{word-spacing:0.343098px;}
.ws6_c00195{word-spacing:0.357102px;}
.ws24_c00195{word-spacing:0.371106px;}
.ws29_c00195{word-spacing:0.385878px;}
.ws25_c00195{word-spacing:0.728208px;}
.ws7_c00195{word-spacing:1.456416px;}
.ws12_c00195{word-spacing:3.269934px;}
.ws1a_c00195{word-spacing:4.663332px;}
.ws13_c00195{word-spacing:6.126750px;}
.ws14_c00195{word-spacing:6.140754px;}
.ws1f_c00195{word-spacing:7.212060px;}
.ws1e_c00195{word-spacing:7.562160px;}
.ws1d_c00195{word-spacing:7.576164px;}
.wsb_c00195{word-spacing:8.969562px;}
.wsa_c00195{word-spacing:8.976564px;}
.ws1b_c00195{word-spacing:8.990568px;}
.wsc_c00195{word-spacing:9.032580px;}
.ws15_c00195{word-spacing:11.175192px;}
.ws16_c00195{word-spacing:11.210202px;}
.ws23_c00195{word-spacing:12.239496px;}
.ws19_c00195{word-spacing:12.624606px;}
.ws18_c00195{word-spacing:12.981708px;}
.wse_c00195{word-spacing:13.310802px;}
.wsd_c00195{word-spacing:13.660902px;}
.ws22_c00195{word-spacing:14.046012px;}
.ws1c_c00195{word-spacing:17.624034px;}
.ws10_c00195{word-spacing:20.872962px;}
.ws11_c00195{word-spacing:21.202056px;}
.ws20_c00195{word-spacing:21.965274px;}
.ws21_c00195{word-spacing:21.972276px;}
.ws8_c00195{word-spacing:23.743782px;}
.ws5_c00195{word-spacing:25.207200px;}
._3_c00195{margin-left:-2.711016px;}
._1_c00195{margin-left:-1.204344px;}
._0_c00195{width:1.267362px;}
._2_c00195{width:5.930694px;}
.fc0_c00195{color:rgb(0,0,0);}
.fs2_c00195{font-size:37.809600px;}
.fs1_c00195{font-size:46.562400px;}
.fs3_c00195{font-size:58.466400px;}
.fs0_c00195{font-size:70.020000px;}
.y0_c00195{bottom:0.000000px;}
.y2_c00195{bottom:109.740968px;}
.y1_c00195{bottom:129.810450px;}
.y23_c00195{bottom:153.120600px;}
.y22_c00195{bottom:167.786828px;}
.y21_c00195{bottom:204.687367px;}
.y20_c00195{bottom:234.837979px;}
.y1f_c00195{bottom:265.077867px;}
.y1e_c00195{bottom:295.228479px;}
.y1d_c00195{bottom:325.468367px;}
.y1c_c00195{bottom:355.618979px;}
.y1b_c00195{bottom:385.858866px;}
.y1a_c00195{bottom:416.009478px;}
.y19_c00195{bottom:446.249365px;}
.y18_c00195{bottom:476.399977px;}
.y17_c00195{bottom:506.639865px;}
.y16_c00195{bottom:536.790477px;}
.y15_c00195{bottom:567.030365px;}
.y14_c00195{bottom:597.089950px;}
.y13_c00195{bottom:627.329838px;}
.y12_c00195{bottom:657.477669px;}
.y11_c00195{bottom:687.717557px;}
.y10_c00195{bottom:717.868169px;}
.yf_c00195{bottom:748.108056px;}
.ye_c00195{bottom:778.258668px;}
.yd_c00195{bottom:808.498556px;}
.yc_c00195{bottom:838.649168px;}
.yb_c00195{bottom:868.889055px;}
.ya_c00195{bottom:899.039667px;}
.y9_c00195{bottom:929.279555px;}
.y8_c00195{bottom:959.519442px;}
.y7_c00195{bottom:989.670054px;}
.y6_c00195{bottom:1019.909942px;}
.y5_c00195{bottom:1050.060553px;}
.y4_c00195{bottom:1080.300441px;}
.y3_c00195{bottom:1110.451053px;}
.h5_c00195{height:39.337949px;}
.h2_c00195{height:62.600889px;}
.h1_c00195{height:62.771836px;}
.h4_c00195{height:62.786926px;}
.h3_c00195{height:74.039910px;}
.h0_c00195{height:1263.000000px;}
.w0_c00195{width:892.500000px;}
.x0_c00195{left:0.000000px;}
.x2_c00195{left:82.710059px;}
.x1_c00195{left:431.730000px;}
@media print{
.v2_c00195{vertical-align:-13.120533pt;}
.v0_c00195{vertical-align:0.000000pt;}
.v1_c00195{vertical-align:28.809888pt;}
.lsc_c00195{letter-spacing:-0.297999pt;}
.lse_c00195{letter-spacing:-0.103940pt;}
.lsd_c00195{letter-spacing:-0.067217pt;}
.ls3_c00195{letter-spacing:-0.056016pt;}
.ls8_c00195{letter-spacing:-0.043568pt;}
.lsa_c00195{letter-spacing:-0.037344pt;}
.lsb_c00195{letter-spacing:-0.031120pt;}
.ls7_c00195{letter-spacing:-0.024896pt;}
.ls11_c00195{letter-spacing:-0.020788pt;}
.ls5_c00195{letter-spacing:-0.018672pt;}
.ls6_c00195{letter-spacing:-0.012448pt;}
.ls12_c00195{letter-spacing:-0.010394pt;}
.ls9_c00195{letter-spacing:-0.006224pt;}
.ls10_c00195{letter-spacing:-0.005197pt;}
.ls4_c00195{letter-spacing:0.000000pt;}
.ls0_c00195{letter-spacing:0.006224pt;}
.ls1_c00195{letter-spacing:0.012448pt;}
.ls2_c00195{letter-spacing:0.018672pt;}
.lsf_c00195{letter-spacing:0.192289pt;}
.ws3_c00195{word-spacing:-51.970133pt;}
.ws2_c00195{word-spacing:-14.291787pt;}
.ws0_c00195{word-spacing:-11.208087pt;}
.ws1_c00195{word-spacing:-9.242347pt;}
.ws26_c00195{word-spacing:-0.498913pt;}
.ws4_c00195{word-spacing:0.000000pt;}
.ws27_c00195{word-spacing:0.015591pt;}
.wsf_c00195{word-spacing:0.024896pt;}
.ws28_c00195{word-spacing:0.031182pt;}
.ws17_c00195{word-spacing:0.043568pt;}
.ws9_c00195{word-spacing:0.304976pt;}
.ws6_c00195{word-spacing:0.317424pt;}
.ws24_c00195{word-spacing:0.329872pt;}
.ws29_c00195{word-spacing:0.343003pt;}
.ws25_c00195{word-spacing:0.647296pt;}
.ws7_c00195{word-spacing:1.294592pt;}
.ws12_c00195{word-spacing:2.906608pt;}
.ws1a_c00195{word-spacing:4.145184pt;}
.ws13_c00195{word-spacing:5.446000pt;}
.ws14_c00195{word-spacing:5.458448pt;}
.ws1f_c00195{word-spacing:6.410720pt;}
.ws1e_c00195{word-spacing:6.721920pt;}
.ws1d_c00195{word-spacing:6.734368pt;}
.wsb_c00195{word-spacing:7.972944pt;}
.wsa_c00195{word-spacing:7.979168pt;}
.ws1b_c00195{word-spacing:7.991616pt;}
.wsc_c00195{word-spacing:8.028960pt;}
.ws15_c00195{word-spacing:9.933504pt;}
.ws16_c00195{word-spacing:9.964624pt;}
.ws23_c00195{word-spacing:10.879552pt;}
.ws19_c00195{word-spacing:11.221872pt;}
.ws18_c00195{word-spacing:11.539296pt;}
.wse_c00195{word-spacing:11.831824pt;}
.wsd_c00195{word-spacing:12.143024pt;}
.ws22_c00195{word-spacing:12.485344pt;}
.ws1c_c00195{word-spacing:15.665808pt;}
.ws10_c00195{word-spacing:18.553744pt;}
.ws11_c00195{word-spacing:18.846272pt;}
.ws20_c00195{word-spacing:19.524688pt;}
.ws21_c00195{word-spacing:19.530912pt;}
.ws8_c00195{word-spacing:21.105584pt;}
.ws5_c00195{word-spacing:22.406400pt;}
._3_c00195{margin-left:-2.409792pt;}
._1_c00195{margin-left:-1.070528pt;}
._0_c00195{width:1.126544pt;}
._2_c00195{width:5.271728pt;}
.fs2_c00195{font-size:33.608533pt;}
.fs1_c00195{font-size:41.388800pt;}
.fs3_c00195{font-size:51.970133pt;}
.fs0_c00195{font-size:62.240000pt;}
.y0_c00195{bottom:0.000000pt;}
.y2_c00195{bottom:97.547527pt;}
.y1_c00195{bottom:115.387067pt;}
.y23_c00195{bottom:136.107200pt;}
.y22_c00195{bottom:149.143847pt;}
.y21_c00195{bottom:181.944327pt;}
.y20_c00195{bottom:208.744871pt;}
.y1f_c00195{bottom:235.624771pt;}
.y1e_c00195{bottom:262.425315pt;}
.y1d_c00195{bottom:289.305215pt;}
.y1c_c00195{bottom:316.105759pt;}
.y1b_c00195{bottom:342.985659pt;}
.y1a_c00195{bottom:369.786203pt;}
.y19_c00195{bottom:396.666103pt;}
.y18_c00195{bottom:423.466647pt;}
.y17_c00195{bottom:450.346547pt;}
.y16_c00195{bottom:477.147091pt;}
.y15_c00195{bottom:504.026991pt;}
.y14_c00195{bottom:530.746623pt;}
.y13_c00195{bottom:557.626523pt;}
.y12_c00195{bottom:584.424595pt;}
.y11_c00195{bottom:611.304495pt;}
.y10_c00195{bottom:638.105039pt;}
.yf_c00195{bottom:664.984939pt;}
.ye_c00195{bottom:691.785483pt;}
.yd_c00195{bottom:718.665383pt;}
.yc_c00195{bottom:745.465927pt;}
.yb_c00195{bottom:772.345827pt;}
.ya_c00195{bottom:799.146371pt;}
.y9_c00195{bottom:826.026271pt;}
.y8_c00195{bottom:852.906171pt;}
.y7_c00195{bottom:879.706715pt;}
.y6_c00195{bottom:906.586615pt;}
.y5_c00195{bottom:933.387159pt;}
.y4_c00195{bottom:960.267059pt;}
.y3_c00195{bottom:987.067603pt;}
.h5_c00195{height:34.967066pt;}
.h2_c00195{height:55.645234pt;}
.h1_c00195{height:55.797187pt;}
.h4_c00195{height:55.810601pt;}
.h3_c00195{height:65.813254pt;}
.h0_c00195{height:1122.666667pt;}
.w0_c00195{width:793.333333pt;}
.x0_c00195{left:0.000000pt;}
.x2_c00195{left:73.520052pt;}
.x1_c00195{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f0e266f85b4982b219589985.woff2')format("woff");}.ff1_c00196{font-family:ff1_c00196;line-height:1.106934;font-style:normal;font-weight:normal;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_9c52f57bcc18f5c9bd89bd4a.woff2')format("woff");}.ff2_c00196{font-family:ff2_c00196;line-height:1.104492;font-style:normal;font-weight:normal;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_39702cd7b5c2e4d10263c30d.woff2')format("woff");}.ff3_c00196{font-family:ff3_c00196;line-height:1.133301;font-style:normal;font-weight:normal;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_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff4_c00196{font-family:ff4_c00196;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00196;src:url('chunks/assets/font_33bd6840824f319068e08614.woff2')format("woff");}.ff5_c00196{font-family:ff5_c00196;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00196{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00196{vertical-align:-14.760000px;}
.v0_c00196{vertical-align:0.000000px;}
.v1_c00196{vertical-align:32.055462px;}
.ls10_c00196{letter-spacing:-0.128626px;}
.lsf_c00196{letter-spacing:-0.111086px;}
.lsd_c00196{letter-spacing:-0.075619px;}
.ls3_c00196{letter-spacing:-0.063018px;}
.lsa_c00196{letter-spacing:-0.056016px;}
.lsb_c00196{letter-spacing:-0.049014px;}
.ls8_c00196{letter-spacing:-0.042012px;}
.lse_c00196{letter-spacing:-0.035080px;}
.lsc_c00196{letter-spacing:-0.035010px;}
.ls7_c00196{letter-spacing:-0.028008px;}
.ls5_c00196{letter-spacing:-0.021006px;}
.ls6_c00196{letter-spacing:-0.014004px;}
.ls12_c00196{letter-spacing:-0.011693px;}
.ls9_c00196{letter-spacing:-0.007002px;}
.ls4_c00196{letter-spacing:0.000000px;}
.ls0_c00196{letter-spacing:0.007002px;}
.ls1_c00196{letter-spacing:0.023281px;}
.ls2_c00196{letter-spacing:0.362492px;}
.ls11_c00196{letter-spacing:0.537891px;}
.sc__c00196{text-shadow:none;}
.sc0_c00196{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00196{-webkit-text-stroke:0px transparent;}
.sc0_c00196{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00196{word-spacing:-58.466400px;}
.ws3_c00196{word-spacing:-16.066567px;}
.ws0_c00196{word-spacing:-12.967628px;}
.ws1_c00196{word-spacing:-10.397640px;}
.ws25_c00196{word-spacing:-0.526198px;}
.ws1c_c00196{word-spacing:-0.021006px;}
.ws10_c00196{word-spacing:-0.007002px;}
.ws4_c00196{word-spacing:0.000000px;}
.ws14_c00196{word-spacing:0.021006px;}
.ws26_c00196{word-spacing:0.023387px;}
.ws5_c00196{word-spacing:0.728208px;}
.ws9_c00196{word-spacing:0.749214px;}
.wsf_c00196{word-spacing:0.756216px;}
.wse_c00196{word-spacing:1.085310px;}
.ws1e_c00196{word-spacing:1.449414px;}
.ws18_c00196{word-spacing:1.820520px;}
.ws13_c00196{word-spacing:2.198628px;}
.ws1f_c00196{word-spacing:2.856816px;}
.ws1a_c00196{word-spacing:2.863818px;}
.ws19_c00196{word-spacing:2.870820px;}
.ws20_c00196{word-spacing:3.241926px;}
.wsc_c00196{word-spacing:3.963132px;}
.ws17_c00196{word-spacing:4.663332px;}
.ws16_c00196{word-spacing:4.698342px;}
.ws1b_c00196{word-spacing:6.126750px;}
.ws21_c00196{word-spacing:7.541154px;}
.wsa_c00196{word-spacing:7.555158px;}
.wsb_c00196{word-spacing:7.562160px;}
.wsd_c00196{word-spacing:9.039582px;}
.ws15_c00196{word-spacing:9.375678px;}
.ws8_c00196{word-spacing:9.732780px;}
.ws7_c00196{word-spacing:12.239496px;}
.ws6_c00196{word-spacing:16.181622px;}
.ws1d_c00196{word-spacing:19.801656px;}
.ws22_c00196{word-spacing:21.272076px;}
.ws23_c00196{word-spacing:21.287616px;}
.ws24_c00196{word-spacing:21.363623px;}
.ws11_c00196{word-spacing:23.386680px;}
.ws12_c00196{word-spacing:23.750784px;}
._3_c00196{margin-left:-2.708964px;}
._0_c00196{margin-left:-1.204344px;}
._1_c00196{width:1.036296px;}
._2_c00196{width:5.930694px;}
.fc0_c00196{color:rgb(0,0,0);}
.fs2_c00196{font-size:37.809600px;}
.fs1_c00196{font-size:46.562400px;}
.fs3_c00196{font-size:58.466400px;}
.fs0_c00196{font-size:70.020000px;}
.y0_c00196{bottom:0.000000px;}
.y2_c00196{bottom:109.740968px;}
.y1_c00196{bottom:129.810450px;}
.y23_c00196{bottom:149.429891px;}
.y22_c00196{bottom:170.940450px;}
.y21_c00196{bottom:185.699028px;}
.y20_c00196{bottom:234.839064px;}
.y1f_c00196{bottom:265.078951px;}
.y1e_c00196{bottom:295.229563px;}
.y1d_c00196{bottom:325.469451px;}
.y1c_c00196{bottom:355.620063px;}
.y1b_c00196{bottom:385.859950px;}
.y1a_c00196{bottom:416.010562px;}
.y19_c00196{bottom:446.246585px;}
.y18_c00196{bottom:476.397197px;}
.y17_c00196{bottom:506.637084px;}
.y16_c00196{bottom:536.787696px;}
.y15_c00196{bottom:567.027584px;}
.y14_c00196{bottom:597.087170px;}
.y13_c00196{bottom:627.327057px;}
.y12_c00196{bottom:657.477669px;}
.y11_c00196{bottom:687.717557px;}
.y10_c00196{bottom:717.868169px;}
.yf_c00196{bottom:748.108056px;}
.ye_c00196{bottom:778.258668px;}
.yd_c00196{bottom:808.498556px;}
.yc_c00196{bottom:838.649168px;}
.yb_c00196{bottom:868.889055px;}
.ya_c00196{bottom:899.039667px;}
.y9_c00196{bottom:929.279555px;}
.y8_c00196{bottom:959.519442px;}
.y7_c00196{bottom:989.670054px;}
.y6_c00196{bottom:1019.909942px;}
.y5_c00196{bottom:1050.060553px;}
.y4_c00196{bottom:1080.300441px;}
.y3_c00196{bottom:1110.451053px;}
.h5_c00196{height:39.338549px;}
.h6_c00196{height:54.098549px;}
.h2_c00196{height:62.600889px;}
.h1_c00196{height:62.771836px;}
.h4_c00196{height:62.778124px;}
.h3_c00196{height:73.684248px;}
.h0_c00196{height:1263.000000px;}
.w0_c00196{width:892.500000px;}
.x0_c00196{left:0.000000px;}
.x2_c00196{left:82.710059px;}
.x1_c00196{left:431.730000px;}
@media print{
.v2_c00196{vertical-align:-13.120000pt;}
.v0_c00196{vertical-align:0.000000pt;}
.v1_c00196{vertical-align:28.493744pt;}
.ls10_c00196{letter-spacing:-0.114334pt;}
.lsf_c00196{letter-spacing:-0.098743pt;}
.lsd_c00196{letter-spacing:-0.067217pt;}
.ls3_c00196{letter-spacing:-0.056016pt;}
.lsa_c00196{letter-spacing:-0.049792pt;}
.lsb_c00196{letter-spacing:-0.043568pt;}
.ls8_c00196{letter-spacing:-0.037344pt;}
.lse_c00196{letter-spacing:-0.031182pt;}
.lsc_c00196{letter-spacing:-0.031120pt;}
.ls7_c00196{letter-spacing:-0.024896pt;}
.ls5_c00196{letter-spacing:-0.018672pt;}
.ls6_c00196{letter-spacing:-0.012448pt;}
.ls12_c00196{letter-spacing:-0.010394pt;}
.ls9_c00196{letter-spacing:-0.006224pt;}
.ls4_c00196{letter-spacing:0.000000pt;}
.ls0_c00196{letter-spacing:0.006224pt;}
.ls1_c00196{letter-spacing:0.020694pt;}
.ls2_c00196{letter-spacing:0.322215pt;}
.ls11_c00196{letter-spacing:0.478125pt;}
.ws2_c00196{word-spacing:-51.970133pt;}
.ws3_c00196{word-spacing:-14.281393pt;}
.ws0_c00196{word-spacing:-11.526781pt;}
.ws1_c00196{word-spacing:-9.242347pt;}
.ws25_c00196{word-spacing:-0.467731pt;}
.ws1c_c00196{word-spacing:-0.018672pt;}
.ws10_c00196{word-spacing:-0.006224pt;}
.ws4_c00196{word-spacing:0.000000pt;}
.ws14_c00196{word-spacing:0.018672pt;}
.ws26_c00196{word-spacing:0.020788pt;}
.ws5_c00196{word-spacing:0.647296pt;}
.ws9_c00196{word-spacing:0.665968pt;}
.wsf_c00196{word-spacing:0.672192pt;}
.wse_c00196{word-spacing:0.964720pt;}
.ws1e_c00196{word-spacing:1.288368pt;}
.ws18_c00196{word-spacing:1.618240pt;}
.ws13_c00196{word-spacing:1.954336pt;}
.ws1f_c00196{word-spacing:2.539392pt;}
.ws1a_c00196{word-spacing:2.545616pt;}
.ws19_c00196{word-spacing:2.551840pt;}
.ws20_c00196{word-spacing:2.881712pt;}
.wsc_c00196{word-spacing:3.522784pt;}
.ws17_c00196{word-spacing:4.145184pt;}
.ws16_c00196{word-spacing:4.176304pt;}
.ws1b_c00196{word-spacing:5.446000pt;}
.ws21_c00196{word-spacing:6.703248pt;}
.wsa_c00196{word-spacing:6.715696pt;}
.wsb_c00196{word-spacing:6.721920pt;}
.wsd_c00196{word-spacing:8.035184pt;}
.ws15_c00196{word-spacing:8.333936pt;}
.ws8_c00196{word-spacing:8.651360pt;}
.ws7_c00196{word-spacing:10.879552pt;}
.ws6_c00196{word-spacing:14.383664pt;}
.ws1d_c00196{word-spacing:17.601472pt;}
.ws22_c00196{word-spacing:18.908512pt;}
.ws23_c00196{word-spacing:18.922326pt;}
.ws24_c00196{word-spacing:18.989887pt;}
.ws11_c00196{word-spacing:20.788160pt;}
.ws12_c00196{word-spacing:21.111808pt;}
._3_c00196{margin-left:-2.407968pt;}
._0_c00196{margin-left:-1.070528pt;}
._1_c00196{width:0.921152pt;}
._2_c00196{width:5.271728pt;}
.fs2_c00196{font-size:33.608533pt;}
.fs1_c00196{font-size:41.388800pt;}
.fs3_c00196{font-size:51.970133pt;}
.fs0_c00196{font-size:62.240000pt;}
.y0_c00196{bottom:0.000000pt;}
.y2_c00196{bottom:97.547527pt;}
.y1_c00196{bottom:115.387067pt;}
.y23_c00196{bottom:132.826570pt;}
.y22_c00196{bottom:151.947067pt;}
.y21_c00196{bottom:165.065803pt;}
.y20_c00196{bottom:208.745835pt;}
.y1f_c00196{bottom:235.625735pt;}
.y1e_c00196{bottom:262.426279pt;}
.y1d_c00196{bottom:289.306179pt;}
.y1c_c00196{bottom:316.106723pt;}
.y1b_c00196{bottom:342.986623pt;}
.y1a_c00196{bottom:369.787167pt;}
.y19_c00196{bottom:396.663631pt;}
.y18_c00196{bottom:423.464175pt;}
.y17_c00196{bottom:450.344075pt;}
.y16_c00196{bottom:477.144619pt;}
.y15_c00196{bottom:504.024519pt;}
.y14_c00196{bottom:530.744151pt;}
.y13_c00196{bottom:557.624051pt;}
.y12_c00196{bottom:584.424595pt;}
.y11_c00196{bottom:611.304495pt;}
.y10_c00196{bottom:638.105039pt;}
.yf_c00196{bottom:664.984939pt;}
.ye_c00196{bottom:691.785483pt;}
.yd_c00196{bottom:718.665383pt;}
.yc_c00196{bottom:745.465927pt;}
.yb_c00196{bottom:772.345827pt;}
.ya_c00196{bottom:799.146371pt;}
.y9_c00196{bottom:826.026271pt;}
.y8_c00196{bottom:852.906171pt;}
.y7_c00196{bottom:879.706715pt;}
.y6_c00196{bottom:906.586615pt;}
.y5_c00196{bottom:933.387159pt;}
.y4_c00196{bottom:960.267059pt;}
.y3_c00196{bottom:987.067603pt;}
.h5_c00196{height:34.967599pt;}
.h6_c00196{height:48.087599pt;}
.h2_c00196{height:55.645234pt;}
.h1_c00196{height:55.797187pt;}
.h4_c00196{height:55.802777pt;}
.h3_c00196{height:65.497110pt;}
.h0_c00196{height:1122.666667pt;}
.w0_c00196{width:793.333333pt;}
.x0_c00196{left:0.000000pt;}
.x2_c00196{left:73.520052pt;}
.x1_c00196{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e260ae18e81b50e703cc8ceb.woff2')format("woff");}.ff1_c00197{font-family:ff1_c00197;line-height:1.106934;font-style:normal;font-weight:normal;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_aae11de15e61b2d6e568983d.woff2')format("woff");}.ff2_c00197{font-family:ff2_c00197;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00197{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00197{vertical-align:0.000000px;}
.ls5_c00197{letter-spacing:-0.063018px;}
.lsd_c00197{letter-spacing:-0.049014px;}
.lsc_c00197{letter-spacing:-0.042012px;}
.ls9_c00197{letter-spacing:-0.035010px;}
.ls7_c00197{letter-spacing:-0.028008px;}
.lsa_c00197{letter-spacing:-0.021006px;}
.lsb_c00197{letter-spacing:-0.014004px;}
.ls8_c00197{letter-spacing:-0.007002px;}
.ls6_c00197{letter-spacing:0.000000px;}
.ls0_c00197{letter-spacing:0.007002px;}
.ls1_c00197{letter-spacing:0.014004px;}
.ls3_c00197{letter-spacing:0.021006px;}
.ls4_c00197{letter-spacing:0.028008px;}
.ls2_c00197{letter-spacing:0.042012px;}
.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;}
}
.wsa_c00197{word-spacing:-0.413118px;}
.ws1f_c00197{word-spacing:-0.042012px;}
.ws3_c00197{word-spacing:-0.007002px;}
.ws0_c00197{word-spacing:0.000000px;}
.ws4_c00197{word-spacing:0.350100px;}
.wsb_c00197{word-spacing:0.357102px;}
.ws5_c00197{word-spacing:0.735210px;}
.ws19_c00197{word-spacing:2.170620px;}
.ws21_c00197{word-spacing:3.578022px;}
.ws22_c00197{word-spacing:3.592026px;}
.ws1c_c00197{word-spacing:5.020434px;}
.ws1b_c00197{word-spacing:5.034438px;}
.ws10_c00197{word-spacing:6.455844px;}
.ws12_c00197{word-spacing:7.205058px;}
.ws1a_c00197{word-spacing:7.954272px;}
.ws2_c00197{word-spacing:10.811088px;}
.ws1_c00197{word-spacing:11.140182px;}
.ws7_c00197{word-spacing:12.260502px;}
.wse_c00197{word-spacing:12.575592px;}
.ws8_c00197{word-spacing:12.603600px;}
.ws20_c00197{word-spacing:13.681908px;}
.wsc_c00197{word-spacing:15.502428px;}
.wsd_c00197{word-spacing:15.859530px;}
.ws1e_c00197{word-spacing:16.538724px;}
.ws6_c00197{word-spacing:16.580736px;}
.ws1d_c00197{word-spacing:16.923834px;}
.ws9_c00197{word-spacing:18.695340px;}
.ws15_c00197{word-spacing:18.702342px;}
.ws14_c00197{word-spacing:18.723348px;}
.ws18_c00197{word-spacing:19.829664px;}
.ws16_c00197{word-spacing:21.209058px;}
.ws17_c00197{word-spacing:21.230064px;}
.ws13_c00197{word-spacing:22.287366px;}
.ws11_c00197{word-spacing:28.778220px;}
.wsf_c00197{word-spacing:41.024718px;}
._2_c00197{margin-left:-5.846670px;}
._1_c00197{margin-left:-1.043298px;}
._0_c00197{width:1.309374px;}
.fc0_c00197{color:rgb(0,0,0);}
.fs0_c00197{font-size:70.020000px;}
.y0_c00197{bottom:0.000000px;}
.y2_c00197{bottom:109.740968px;}
.y1_c00197{bottom:129.810450px;}
.y22_c00197{bottom:174.444699px;}
.y21_c00197{bottom:204.684587px;}
.y20_c00197{bottom:234.835199px;}
.y1f_c00197{bottom:265.075086px;}
.y1e_c00197{bottom:295.225698px;}
.y1d_c00197{bottom:325.465586px;}
.y1c_c00197{bottom:355.616198px;}
.y1b_c00197{bottom:385.856085px;}
.y1a_c00197{bottom:416.006697px;}
.y19_c00197{bottom:446.246585px;}
.y18_c00197{bottom:476.397197px;}
.y17_c00197{bottom:506.637084px;}
.y16_c00197{bottom:536.787696px;}
.y15_c00197{bottom:567.027584px;}
.y14_c00197{bottom:597.087170px;}
.y13_c00197{bottom:627.327057px;}
.y12_c00197{bottom:657.477669px;}
.y11_c00197{bottom:687.717557px;}
.y10_c00197{bottom:717.868169px;}
.yf_c00197{bottom:748.108056px;}
.ye_c00197{bottom:778.258668px;}
.yd_c00197{bottom:808.498556px;}
.yc_c00197{bottom:838.649168px;}
.yb_c00197{bottom:868.889055px;}
.ya_c00197{bottom:899.039667px;}
.y9_c00197{bottom:929.279555px;}
.y8_c00197{bottom:959.519442px;}
.y7_c00197{bottom:989.670054px;}
.y6_c00197{bottom:1019.909942px;}
.y5_c00197{bottom:1050.060553px;}
.y4_c00197{bottom:1080.300441px;}
.y3_c00197{bottom:1110.451053px;}
.h2_c00197{height:62.600889px;}
.h1_c00197{height:62.771836px;}
.h0_c00197{height:1263.000000px;}
.w0_c00197{width:892.500000px;}
.x0_c00197{left:0.000000px;}
.x2_c00197{left:82.710059px;}
.x1_c00197{left:431.730000px;}
@media print{
.v0_c00197{vertical-align:0.000000pt;}
.ls5_c00197{letter-spacing:-0.056016pt;}
.lsd_c00197{letter-spacing:-0.043568pt;}
.lsc_c00197{letter-spacing:-0.037344pt;}
.ls9_c00197{letter-spacing:-0.031120pt;}
.ls7_c00197{letter-spacing:-0.024896pt;}
.lsa_c00197{letter-spacing:-0.018672pt;}
.lsb_c00197{letter-spacing:-0.012448pt;}
.ls8_c00197{letter-spacing:-0.006224pt;}
.ls6_c00197{letter-spacing:0.000000pt;}
.ls0_c00197{letter-spacing:0.006224pt;}
.ls1_c00197{letter-spacing:0.012448pt;}
.ls3_c00197{letter-spacing:0.018672pt;}
.ls4_c00197{letter-spacing:0.024896pt;}
.ls2_c00197{letter-spacing:0.037344pt;}
.wsa_c00197{word-spacing:-0.367216pt;}
.ws1f_c00197{word-spacing:-0.037344pt;}
.ws3_c00197{word-spacing:-0.006224pt;}
.ws0_c00197{word-spacing:0.000000pt;}
.ws4_c00197{word-spacing:0.311200pt;}
.wsb_c00197{word-spacing:0.317424pt;}
.ws5_c00197{word-spacing:0.653520pt;}
.ws19_c00197{word-spacing:1.929440pt;}
.ws21_c00197{word-spacing:3.180464pt;}
.ws22_c00197{word-spacing:3.192912pt;}
.ws1c_c00197{word-spacing:4.462608pt;}
.ws1b_c00197{word-spacing:4.475056pt;}
.ws10_c00197{word-spacing:5.738528pt;}
.ws12_c00197{word-spacing:6.404496pt;}
.ws1a_c00197{word-spacing:7.070464pt;}
.ws2_c00197{word-spacing:9.609856pt;}
.ws1_c00197{word-spacing:9.902384pt;}
.ws7_c00197{word-spacing:10.898224pt;}
.wse_c00197{word-spacing:11.178304pt;}
.ws8_c00197{word-spacing:11.203200pt;}
.ws20_c00197{word-spacing:12.161696pt;}
.wsc_c00197{word-spacing:13.779936pt;}
.wsd_c00197{word-spacing:14.097360pt;}
.ws1e_c00197{word-spacing:14.701088pt;}
.ws6_c00197{word-spacing:14.738432pt;}
.ws1d_c00197{word-spacing:15.043408pt;}
.ws9_c00197{word-spacing:16.618080pt;}
.ws15_c00197{word-spacing:16.624304pt;}
.ws14_c00197{word-spacing:16.642976pt;}
.ws18_c00197{word-spacing:17.626368pt;}
.ws16_c00197{word-spacing:18.852496pt;}
.ws17_c00197{word-spacing:18.871168pt;}
.ws13_c00197{word-spacing:19.810992pt;}
.ws11_c00197{word-spacing:25.580640pt;}
.wsf_c00197{word-spacing:36.466416pt;}
._2_c00197{margin-left:-5.197040pt;}
._1_c00197{margin-left:-0.927376pt;}
._0_c00197{width:1.163888pt;}
.fs0_c00197{font-size:62.240000pt;}
.y0_c00197{bottom:0.000000pt;}
.y2_c00197{bottom:97.547527pt;}
.y1_c00197{bottom:115.387067pt;}
.y22_c00197{bottom:155.061955pt;}
.y21_c00197{bottom:181.941855pt;}
.y20_c00197{bottom:208.742399pt;}
.y1f_c00197{bottom:235.622299pt;}
.y1e_c00197{bottom:262.422843pt;}
.y1d_c00197{bottom:289.302743pt;}
.y1c_c00197{bottom:316.103287pt;}
.y1b_c00197{bottom:342.983187pt;}
.y1a_c00197{bottom:369.783731pt;}
.y19_c00197{bottom:396.663631pt;}
.y18_c00197{bottom:423.464175pt;}
.y17_c00197{bottom:450.344075pt;}
.y16_c00197{bottom:477.144619pt;}
.y15_c00197{bottom:504.024519pt;}
.y14_c00197{bottom:530.744151pt;}
.y13_c00197{bottom:557.624051pt;}
.y12_c00197{bottom:584.424595pt;}
.y11_c00197{bottom:611.304495pt;}
.y10_c00197{bottom:638.105039pt;}
.yf_c00197{bottom:664.984939pt;}
.ye_c00197{bottom:691.785483pt;}
.yd_c00197{bottom:718.665383pt;}
.yc_c00197{bottom:745.465927pt;}
.yb_c00197{bottom:772.345827pt;}
.ya_c00197{bottom:799.146371pt;}
.y9_c00197{bottom:826.026271pt;}
.y8_c00197{bottom:852.906171pt;}
.y7_c00197{bottom:879.706715pt;}
.y6_c00197{bottom:906.586615pt;}
.y5_c00197{bottom:933.387159pt;}
.y4_c00197{bottom:960.267059pt;}
.y3_c00197{bottom:987.067603pt;}
.h2_c00197{height:55.645234pt;}
.h1_c00197{height:55.797187pt;}
.h0_c00197{height:1122.666667pt;}
.w0_c00197{width:793.333333pt;}
.x0_c00197{left:0.000000pt;}
.x2_c00197{left:73.520052pt;}
.x1_c00197{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d43d3858c9310aed6d83f092.woff2')format("woff");}.ff1_c00198{font-family:ff1_c00198;line-height:1.106934;font-style:normal;font-weight:normal;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_299683cbb7720460fcd48a40.woff2')format("woff");}.ff2_c00198{font-family:ff2_c00198;line-height:1.104492;font-style:normal;font-weight:normal;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_4567a5c6fdc65b680f8d01d2.woff2')format("woff");}.ff3_c00198{font-family:ff3_c00198;line-height:1.133301;font-style:normal;font-weight:normal;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_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff4_c00198{font-family:ff4_c00198;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00198;src:url('chunks/assets/font_bd6aaf5cfd997aab31dfaedc.woff2')format("woff");}.ff5_c00198{font-family:ff5_c00198;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00198;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff6_c00198{font-family:ff6_c00198;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00198;src:url('chunks/assets/font_4c2af8c8e368ebb1e101bc14.woff2')format("woff");}.ff7_c00198{font-family:ff7_c00198;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00198{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00198{vertical-align:-14.760000px;}
.v0_c00198{vertical-align:0.000000px;}
.v1_c00198{vertical-align:32.403132px;}
.ls1d_c00198{letter-spacing:-0.707443px;}
.ls14_c00198{letter-spacing:-0.239712px;}
.ls1c_c00198{letter-spacing:-0.140319px;}
.ls18_c00198{letter-spacing:-0.105240px;}
.ls16_c00198{letter-spacing:-0.087700px;}
.ls12_c00198{letter-spacing:-0.075619px;}
.ls9_c00198{letter-spacing:-0.063018px;}
.ls1f_c00198{letter-spacing:-0.046773px;}
.lsf_c00198{letter-spacing:-0.042012px;}
.ls21_c00198{letter-spacing:-0.040926px;}
.ls19_c00198{letter-spacing:-0.035080px;}
.lsd_c00198{letter-spacing:-0.035010px;}
.ls10_c00198{letter-spacing:-0.028008px;}
.lsc_c00198{letter-spacing:-0.021006px;}
.ls1a_c00198{letter-spacing:-0.017540px;}
.lse_c00198{letter-spacing:-0.014004px;}
.ls1e_c00198{letter-spacing:-0.011693px;}
.lsb_c00198{letter-spacing:-0.007002px;}
.ls17_c00198{letter-spacing:-0.005847px;}
.lsa_c00198{letter-spacing:0.000000px;}
.ls6_c00198{letter-spacing:0.005847px;}
.ls2_c00198{letter-spacing:0.007002px;}
.ls3_c00198{letter-spacing:0.014004px;}
.ls0_c00198{letter-spacing:0.021006px;}
.ls1_c00198{letter-spacing:0.023281px;}
.ls7_c00198{letter-spacing:0.029233px;}
.ls4_c00198{letter-spacing:0.046773px;}
.ls1b_c00198{letter-spacing:0.076006px;}
.ls8_c00198{letter-spacing:0.087700px;}
.ls13_c00198{letter-spacing:0.169553px;}
.ls11_c00198{letter-spacing:0.343098px;}
.ls5_c00198{letter-spacing:0.362492px;}
.ls15_c00198{letter-spacing:0.380032px;}
.ls20_c00198{letter-spacing:7.214754px;}
.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;}
}
.ws2_c00198{word-spacing:-58.466400px;}
.ws4_c00198{word-spacing:-16.189346px;}
.ws3_c00198{word-spacing:-16.107493px;}
.ws0_c00198{word-spacing:-12.967628px;}
.ws1_c00198{word-spacing:-10.397640px;}
.ws22_c00198{word-spacing:-0.357102px;}
.ws36_c00198{word-spacing:-0.298179px;}
.ws10_c00198{word-spacing:-0.035010px;}
.ws2b_c00198{word-spacing:-0.017540px;}
.ws5_c00198{word-spacing:0.000000px;}
.ws21_c00198{word-spacing:0.014004px;}
.ws14_c00198{word-spacing:0.021006px;}
.ws20_c00198{word-spacing:0.329094px;}
.wsd_c00198{word-spacing:0.357102px;}
.wsc_c00198{word-spacing:0.378108px;}
.ws1f_c00198{word-spacing:0.693198px;}
.ws23_c00198{word-spacing:1.071306px;}
.ws24_c00198{word-spacing:1.421406px;}
.ws18_c00198{word-spacing:3.970134px;}
.ws26_c00198{word-spacing:4.313232px;}
.ws19_c00198{word-spacing:4.341240px;}
.ws34_c00198{word-spacing:4.344054px;}
.ws7_c00198{word-spacing:4.684338px;}
.ws8_c00198{word-spacing:4.691340px;}
.ws35_c00198{word-spacing:4.706545px;}
.ws31_c00198{word-spacing:4.975491px;}
.ws32_c00198{word-spacing:5.191816px;}
.ws33_c00198{word-spacing:5.758940px;}
.ws25_c00198{word-spacing:6.868962px;}
.ws37_c00198{word-spacing:7.127054px;}
.wsf_c00198{word-spacing:7.198056px;}
.wse_c00198{word-spacing:7.205058px;}
.ws38_c00198{word-spacing:7.255680px;}
.ws1c_c00198{word-spacing:7.548156px;}
.ws1b_c00198{word-spacing:7.555158px;}
.wsb_c00198{word-spacing:7.905258px;}
.wsa_c00198{word-spacing:7.926264px;}
.ws6_c00198{word-spacing:10.790082px;}
.ws17_c00198{word-spacing:12.232494px;}
.ws1e_c00198{word-spacing:12.253500px;}
.ws1d_c00198{word-spacing:12.575592px;}
.ws11_c00198{word-spacing:12.582594px;}
.ws2c_c00198{word-spacing:12.716442px;}
.ws12_c00198{word-spacing:12.988710px;}
.ws2d_c00198{word-spacing:13.008774px;}
.ws27_c00198{word-spacing:13.166633px;}
.ws2a_c00198{word-spacing:13.330339px;}
.ws9_c00198{word-spacing:13.331808px;}
.ws28_c00198{word-spacing:13.646058px;}
.ws29_c00198{word-spacing:13.932543px;}
.ws1a_c00198{word-spacing:14.389110px;}
.ws2f_c00198{word-spacing:16.949409px;}
.ws2e_c00198{word-spacing:16.966949px;}
.ws30_c00198{word-spacing:17.206662px;}
.ws13_c00198{word-spacing:19.430550px;}
.ws15_c00198{word-spacing:24.843096px;}
.ws16_c00198{word-spacing:25.214202px;}
._2_c00198{margin-left:-12.603600px;}
._6_c00198{margin-left:-8.091684px;}
._7_c00198{margin-left:-6.676863px;}
._4_c00198{margin-left:-2.706444px;}
._0_c00198{margin-left:-1.267362px;}
._1_c00198{width:1.022292px;}
._3_c00198{width:5.930694px;}
._5_c00198{width:12.687196px;}
.fc0_c00198{color:rgb(0,0,0);}
.fs2_c00198{font-size:37.809600px;}
.fs1_c00198{font-size:46.562400px;}
.fs3_c00198{font-size:58.466400px;}
.fs0_c00198{font-size:70.020000px;}
.y0_c00198{bottom:0.000000px;}
.y2_c00198{bottom:109.740968px;}
.y1_c00198{bottom:129.810450px;}
.y26_c00198{bottom:149.429891px;}
.y25_c00198{bottom:170.940450px;}
.y24_c00198{bottom:185.248431px;}
.y23_c00198{bottom:203.068990px;}
.y22_c00198{bottom:221.069333px;}
.y21_c00198{bottom:238.889891px;}
.y20_c00198{bottom:260.400450px;}
.y1f_c00198{bottom:274.709891px;}
.y1e_c00198{bottom:296.220450px;}
.y1d_c00198{bottom:310.889037px;}
.y1c_c00198{bottom:355.619563px;}
.y1b_c00198{bottom:385.859451px;}
.y1a_c00198{bottom:416.010063px;}
.y19_c00198{bottom:446.249950px;}
.y18_c00198{bottom:476.400562px;}
.y17_c00198{bottom:506.639865px;}
.y16_c00198{bottom:536.790477px;}
.y15_c00198{bottom:567.030365px;}
.y14_c00198{bottom:597.089950px;}
.y13_c00198{bottom:627.329838px;}
.y12_c00198{bottom:657.478602px;}
.y11_c00198{bottom:687.718489px;}
.y10_c00198{bottom:717.869101px;}
.yf_c00198{bottom:748.108989px;}
.ye_c00198{bottom:778.259601px;}
.yd_c00198{bottom:808.499488px;}
.yc_c00198{bottom:838.650100px;}
.yb_c00198{bottom:868.889988px;}
.ya_c00198{bottom:899.039667px;}
.y9_c00198{bottom:929.279555px;}
.y8_c00198{bottom:959.519442px;}
.y7_c00198{bottom:989.670054px;}
.y6_c00198{bottom:1019.909942px;}
.y5_c00198{bottom:1050.060553px;}
.y4_c00198{bottom:1080.300441px;}
.y3_c00198{bottom:1110.451053px;}
.h7_c00198{height:39.338549px;}
.h8_c00198{height:54.098549px;}
.h2_c00198{height:62.600889px;}
.h1_c00198{height:62.771836px;}
.h6_c00198{height:62.777488px;}
.h5_c00198{height:73.784804px;}
.h3_c00198{height:74.031918px;}
.h4_c00198{height:74.149856px;}
.h0_c00198{height:1263.000000px;}
.w0_c00198{width:892.500000px;}
.x0_c00198{left:0.000000px;}
.x2_c00198{left:82.710059px;}
.x1_c00198{left:431.730000px;}
@media print{
.v2_c00198{vertical-align:-13.120000pt;}
.v0_c00198{vertical-align:0.000000pt;}
.v1_c00198{vertical-align:28.802784pt;}
.ls1d_c00198{letter-spacing:-0.628839pt;}
.ls14_c00198{letter-spacing:-0.213078pt;}
.ls1c_c00198{letter-spacing:-0.124728pt;}
.ls18_c00198{letter-spacing:-0.093546pt;}
.ls16_c00198{letter-spacing:-0.077955pt;}
.ls12_c00198{letter-spacing:-0.067217pt;}
.ls9_c00198{letter-spacing:-0.056016pt;}
.ls1f_c00198{letter-spacing:-0.041576pt;}
.lsf_c00198{letter-spacing:-0.037344pt;}
.ls21_c00198{letter-spacing:-0.036379pt;}
.ls19_c00198{letter-spacing:-0.031182pt;}
.lsd_c00198{letter-spacing:-0.031120pt;}
.ls10_c00198{letter-spacing:-0.024896pt;}
.lsc_c00198{letter-spacing:-0.018672pt;}
.ls1a_c00198{letter-spacing:-0.015591pt;}
.lse_c00198{letter-spacing:-0.012448pt;}
.ls1e_c00198{letter-spacing:-0.010394pt;}
.lsb_c00198{letter-spacing:-0.006224pt;}
.ls17_c00198{letter-spacing:-0.005197pt;}
.lsa_c00198{letter-spacing:0.000000pt;}
.ls6_c00198{letter-spacing:0.005197pt;}
.ls2_c00198{letter-spacing:0.006224pt;}
.ls3_c00198{letter-spacing:0.012448pt;}
.ls0_c00198{letter-spacing:0.018672pt;}
.ls1_c00198{letter-spacing:0.020694pt;}
.ls7_c00198{letter-spacing:0.025985pt;}
.ls4_c00198{letter-spacing:0.041576pt;}
.ls1b_c00198{letter-spacing:0.067561pt;}
.ls8_c00198{letter-spacing:0.077955pt;}
.ls13_c00198{letter-spacing:0.150713pt;}
.ls11_c00198{letter-spacing:0.304976pt;}
.ls5_c00198{letter-spacing:0.322215pt;}
.ls15_c00198{letter-spacing:0.337806pt;}
.ls20_c00198{letter-spacing:6.413114pt;}
.ws2_c00198{word-spacing:-51.970133pt;}
.ws4_c00198{word-spacing:-14.390530pt;}
.ws3_c00198{word-spacing:-14.317772pt;}
.ws0_c00198{word-spacing:-11.526781pt;}
.ws1_c00198{word-spacing:-9.242347pt;}
.ws22_c00198{word-spacing:-0.317424pt;}
.ws36_c00198{word-spacing:-0.265048pt;}
.ws10_c00198{word-spacing:-0.031120pt;}
.ws2b_c00198{word-spacing:-0.015591pt;}
.ws5_c00198{word-spacing:0.000000pt;}
.ws21_c00198{word-spacing:0.012448pt;}
.ws14_c00198{word-spacing:0.018672pt;}
.ws20_c00198{word-spacing:0.292528pt;}
.wsd_c00198{word-spacing:0.317424pt;}
.wsc_c00198{word-spacing:0.336096pt;}
.ws1f_c00198{word-spacing:0.616176pt;}
.ws23_c00198{word-spacing:0.952272pt;}
.ws24_c00198{word-spacing:1.263472pt;}
.ws18_c00198{word-spacing:3.529008pt;}
.ws26_c00198{word-spacing:3.833984pt;}
.ws19_c00198{word-spacing:3.858880pt;}
.ws34_c00198{word-spacing:3.861381pt;}
.ws7_c00198{word-spacing:4.163856pt;}
.ws8_c00198{word-spacing:4.170080pt;}
.ws35_c00198{word-spacing:4.183596pt;}
.ws31_c00198{word-spacing:4.422658pt;}
.ws32_c00198{word-spacing:4.614948pt;}
.ws33_c00198{word-spacing:5.119058pt;}
.ws25_c00198{word-spacing:6.105744pt;}
.ws37_c00198{word-spacing:6.335159pt;}
.wsf_c00198{word-spacing:6.398272pt;}
.wse_c00198{word-spacing:6.404496pt;}
.ws38_c00198{word-spacing:6.449494pt;}
.ws1c_c00198{word-spacing:6.709472pt;}
.ws1b_c00198{word-spacing:6.715696pt;}
.wsb_c00198{word-spacing:7.026896pt;}
.wsa_c00198{word-spacing:7.045568pt;}
.ws6_c00198{word-spacing:9.591184pt;}
.ws17_c00198{word-spacing:10.873328pt;}
.ws1e_c00198{word-spacing:10.892000pt;}
.ws1d_c00198{word-spacing:11.178304pt;}
.ws11_c00198{word-spacing:11.184528pt;}
.ws2c_c00198{word-spacing:11.303504pt;}
.ws12_c00198{word-spacing:11.545520pt;}
.ws2d_c00198{word-spacing:11.563355pt;}
.ws27_c00198{word-spacing:11.703674pt;}
.ws2a_c00198{word-spacing:11.849190pt;}
.ws9_c00198{word-spacing:11.850496pt;}
.ws28_c00198{word-spacing:12.129829pt;}
.ws29_c00198{word-spacing:12.384483pt;}
.ws1a_c00198{word-spacing:12.790320pt;}
.ws2f_c00198{word-spacing:15.066142pt;}
.ws2e_c00198{word-spacing:15.081733pt;}
.ws30_c00198{word-spacing:15.294810pt;}
.ws13_c00198{word-spacing:17.271600pt;}
.ws15_c00198{word-spacing:22.082752pt;}
.ws16_c00198{word-spacing:22.412624pt;}
._2_c00198{margin-left:-11.203200pt;}
._6_c00198{margin-left:-7.192608pt;}
._7_c00198{margin-left:-5.934989pt;}
._4_c00198{margin-left:-2.405728pt;}
._0_c00198{margin-left:-1.126544pt;}
._1_c00198{width:0.908704pt;}
._3_c00198{width:5.271728pt;}
._5_c00198{width:11.277508pt;}
.fs2_c00198{font-size:33.608533pt;}
.fs1_c00198{font-size:41.388800pt;}
.fs3_c00198{font-size:51.970133pt;}
.fs0_c00198{font-size:62.240000pt;}
.y0_c00198{bottom:0.000000pt;}
.y2_c00198{bottom:97.547527pt;}
.y1_c00198{bottom:115.387067pt;}
.y26_c00198{bottom:132.826570pt;}
.y25_c00198{bottom:151.947067pt;}
.y24_c00198{bottom:164.665272pt;}
.y23_c00198{bottom:180.505769pt;}
.y22_c00198{bottom:196.506073pt;}
.y21_c00198{bottom:212.346570pt;}
.y20_c00198{bottom:231.467067pt;}
.y1f_c00198{bottom:244.186570pt;}
.y1e_c00198{bottom:263.307067pt;}
.y1d_c00198{bottom:276.345811pt;}
.y1c_c00198{bottom:316.106279pt;}
.y1b_c00198{bottom:342.986179pt;}
.y1a_c00198{bottom:369.786723pt;}
.y19_c00198{bottom:396.666623pt;}
.y18_c00198{bottom:423.467167pt;}
.y17_c00198{bottom:450.346547pt;}
.y16_c00198{bottom:477.147091pt;}
.y15_c00198{bottom:504.026991pt;}
.y14_c00198{bottom:530.746623pt;}
.y13_c00198{bottom:557.626523pt;}
.y12_c00198{bottom:584.425424pt;}
.y11_c00198{bottom:611.305324pt;}
.y10_c00198{bottom:638.105868pt;}
.yf_c00198{bottom:664.985768pt;}
.ye_c00198{bottom:691.786312pt;}
.yd_c00198{bottom:718.666212pt;}
.yc_c00198{bottom:745.466756pt;}
.yb_c00198{bottom:772.346656pt;}
.ya_c00198{bottom:799.146371pt;}
.y9_c00198{bottom:826.026271pt;}
.y8_c00198{bottom:852.906171pt;}
.y7_c00198{bottom:879.706715pt;}
.y6_c00198{bottom:906.586615pt;}
.y5_c00198{bottom:933.387159pt;}
.y4_c00198{bottom:960.267059pt;}
.y3_c00198{bottom:987.067603pt;}
.h7_c00198{height:34.967599pt;}
.h8_c00198{height:48.087599pt;}
.h2_c00198{height:55.645234pt;}
.h1_c00198{height:55.797187pt;}
.h6_c00198{height:55.802212pt;}
.h5_c00198{height:65.586492pt;}
.h3_c00198{height:65.806150pt;}
.h4_c00198{height:65.910983pt;}
.h0_c00198{height:1122.666667pt;}
.w0_c00198{width:793.333333pt;}
.x0_c00198{left:0.000000pt;}
.x2_c00198{left:73.520052pt;}
.x1_c00198{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a9b82339949fbc8642251e41.woff2')format("woff");}.ff1_c00199{font-family:ff1_c00199;line-height:1.106934;font-style:normal;font-weight:normal;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_c49175451db55aa72562a943.woff2')format("woff");}.ff2_c00199{font-family:ff2_c00199;line-height:0.892090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00199;src:url('chunks/assets/font_71f4419739fd18aeb8508b0e.woff2')format("woff");}.ff3_c00199{font-family:ff3_c00199;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00199{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00199{vertical-align:0.000000px;}
.ls2_c00199{letter-spacing:-0.063018px;}
.lsb_c00199{letter-spacing:-0.056016px;}
.ls8_c00199{letter-spacing:-0.049014px;}
.ls4_c00199{letter-spacing:-0.042012px;}
.ls7_c00199{letter-spacing:-0.035010px;}
.ls5_c00199{letter-spacing:-0.028008px;}
.ls6_c00199{letter-spacing:-0.021006px;}
.ls9_c00199{letter-spacing:-0.014004px;}
.lsa_c00199{letter-spacing:-0.007002px;}
.ls3_c00199{letter-spacing:0.000000px;}
.ls1_c00199{letter-spacing:0.007002px;}
.ls0_c00199{letter-spacing:0.329094px;}
.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:-70.020000px;}
.ws1_c00199{word-spacing:0.000000px;}
.ws4_c00199{word-spacing:0.014004px;}
.wsb_c00199{word-spacing:0.035010px;}
.ws13_c00199{word-spacing:0.350100px;}
.ws11_c00199{word-spacing:0.364104px;}
.ws1b_c00199{word-spacing:0.371106px;}
.ws12_c00199{word-spacing:0.392112px;}
.ws1e_c00199{word-spacing:0.399114px;}
.ws1c_c00199{word-spacing:2.499714px;}
.ws1d_c00199{word-spacing:2.534724px;}
.ws9_c00199{word-spacing:3.606030px;}
.ws2_c00199{word-spacing:3.627036px;}
.wsa_c00199{word-spacing:3.984138px;}
.ws19_c00199{word-spacing:6.105744px;}
.ws1a_c00199{word-spacing:6.112746px;}
.wsd_c00199{word-spacing:7.905258px;}
.wse_c00199{word-spacing:7.919262px;}
.ws17_c00199{word-spacing:7.926264px;}
.ws6_c00199{word-spacing:11.168190px;}
.ws16_c00199{word-spacing:14.032008px;}
.ws3_c00199{word-spacing:15.131322px;}
.ws14_c00199{word-spacing:16.188624px;}
.ws15_c00199{word-spacing:16.195626px;}
.ws5_c00199{word-spacing:16.209630px;}
.ws8_c00199{word-spacing:18.709344px;}
.ws7_c00199{word-spacing:18.737352px;}
.ws10_c00199{word-spacing:20.144754px;}
.wsf_c00199{word-spacing:20.158758px;}
.wsc_c00199{word-spacing:28.456128px;}
.ws18_c00199{word-spacing:29.142324px;}
._1_c00199{margin-left:-1.120320px;}
._0_c00199{width:1.127322px;}
.fc0_c00199{color:rgb(0,0,0);}
.fs0_c00199{font-size:70.020000px;}
.y0_c00199{bottom:0.000000px;}
.y2_c00199{bottom:109.740968px;}
.y1_c00199{bottom:129.810450px;}
.y22_c00199{bottom:174.444699px;}
.y21_c00199{bottom:204.684587px;}
.y20_c00199{bottom:234.835199px;}
.y1f_c00199{bottom:265.075086px;}
.y1e_c00199{bottom:295.225698px;}
.y1d_c00199{bottom:325.465586px;}
.y1c_c00199{bottom:355.616198px;}
.y1b_c00199{bottom:385.856085px;}
.y1a_c00199{bottom:416.006697px;}
.y19_c00199{bottom:446.246585px;}
.y18_c00199{bottom:476.397197px;}
.y17_c00199{bottom:506.637084px;}
.y16_c00199{bottom:536.787696px;}
.y15_c00199{bottom:567.027584px;}
.y14_c00199{bottom:597.087170px;}
.y13_c00199{bottom:627.327057px;}
.y12_c00199{bottom:657.477669px;}
.y11_c00199{bottom:687.717557px;}
.y10_c00199{bottom:717.868169px;}
.yf_c00199{bottom:748.108056px;}
.ye_c00199{bottom:778.258668px;}
.yd_c00199{bottom:808.498556px;}
.yc_c00199{bottom:838.649168px;}
.yb_c00199{bottom:868.889055px;}
.ya_c00199{bottom:899.039667px;}
.y9_c00199{bottom:929.279555px;}
.y8_c00199{bottom:959.519442px;}
.y7_c00199{bottom:989.670054px;}
.y6_c00199{bottom:1019.909942px;}
.y5_c00199{bottom:1050.060553px;}
.y4_c00199{bottom:1080.300441px;}
.y3_c00199{bottom:1110.451053px;}
.h1_c00199{height:62.771836px;}
.h2_c00199{height:63.216299px;}
.h0_c00199{height:1263.000000px;}
.w0_c00199{width:892.500000px;}
.x0_c00199{left:0.000000px;}
.x2_c00199{left:82.710059px;}
.x1_c00199{left:431.730000px;}
@media print{
.v0_c00199{vertical-align:0.000000pt;}
.ls2_c00199{letter-spacing:-0.056016pt;}
.lsb_c00199{letter-spacing:-0.049792pt;}
.ls8_c00199{letter-spacing:-0.043568pt;}
.ls4_c00199{letter-spacing:-0.037344pt;}
.ls7_c00199{letter-spacing:-0.031120pt;}
.ls5_c00199{letter-spacing:-0.024896pt;}
.ls6_c00199{letter-spacing:-0.018672pt;}
.ls9_c00199{letter-spacing:-0.012448pt;}
.lsa_c00199{letter-spacing:-0.006224pt;}
.ls3_c00199{letter-spacing:0.000000pt;}
.ls1_c00199{letter-spacing:0.006224pt;}
.ls0_c00199{letter-spacing:0.292528pt;}
.ws0_c00199{word-spacing:-62.240000pt;}
.ws1_c00199{word-spacing:0.000000pt;}
.ws4_c00199{word-spacing:0.012448pt;}
.wsb_c00199{word-spacing:0.031120pt;}
.ws13_c00199{word-spacing:0.311200pt;}
.ws11_c00199{word-spacing:0.323648pt;}
.ws1b_c00199{word-spacing:0.329872pt;}
.ws12_c00199{word-spacing:0.348544pt;}
.ws1e_c00199{word-spacing:0.354768pt;}
.ws1c_c00199{word-spacing:2.221968pt;}
.ws1d_c00199{word-spacing:2.253088pt;}
.ws9_c00199{word-spacing:3.205360pt;}
.ws2_c00199{word-spacing:3.224032pt;}
.wsa_c00199{word-spacing:3.541456pt;}
.ws19_c00199{word-spacing:5.427328pt;}
.ws1a_c00199{word-spacing:5.433552pt;}
.wsd_c00199{word-spacing:7.026896pt;}
.wse_c00199{word-spacing:7.039344pt;}
.ws17_c00199{word-spacing:7.045568pt;}
.ws6_c00199{word-spacing:9.927280pt;}
.ws16_c00199{word-spacing:12.472896pt;}
.ws3_c00199{word-spacing:13.450064pt;}
.ws14_c00199{word-spacing:14.389888pt;}
.ws15_c00199{word-spacing:14.396112pt;}
.ws5_c00199{word-spacing:14.408560pt;}
.ws8_c00199{word-spacing:16.630528pt;}
.ws7_c00199{word-spacing:16.655424pt;}
.ws10_c00199{word-spacing:17.906448pt;}
.wsf_c00199{word-spacing:17.918896pt;}
.wsc_c00199{word-spacing:25.294336pt;}
.ws18_c00199{word-spacing:25.904288pt;}
._1_c00199{margin-left:-0.995840pt;}
._0_c00199{width:1.002064pt;}
.fs0_c00199{font-size:62.240000pt;}
.y0_c00199{bottom:0.000000pt;}
.y2_c00199{bottom:97.547527pt;}
.y1_c00199{bottom:115.387067pt;}
.y22_c00199{bottom:155.061955pt;}
.y21_c00199{bottom:181.941855pt;}
.y20_c00199{bottom:208.742399pt;}
.y1f_c00199{bottom:235.622299pt;}
.y1e_c00199{bottom:262.422843pt;}
.y1d_c00199{bottom:289.302743pt;}
.y1c_c00199{bottom:316.103287pt;}
.y1b_c00199{bottom:342.983187pt;}
.y1a_c00199{bottom:369.783731pt;}
.y19_c00199{bottom:396.663631pt;}
.y18_c00199{bottom:423.464175pt;}
.y17_c00199{bottom:450.344075pt;}
.y16_c00199{bottom:477.144619pt;}
.y15_c00199{bottom:504.024519pt;}
.y14_c00199{bottom:530.744151pt;}
.y13_c00199{bottom:557.624051pt;}
.y12_c00199{bottom:584.424595pt;}
.y11_c00199{bottom:611.304495pt;}
.y10_c00199{bottom:638.105039pt;}
.yf_c00199{bottom:664.984939pt;}
.ye_c00199{bottom:691.785483pt;}
.yd_c00199{bottom:718.665383pt;}
.yc_c00199{bottom:745.465927pt;}
.yb_c00199{bottom:772.345827pt;}
.ya_c00199{bottom:799.146371pt;}
.y9_c00199{bottom:826.026271pt;}
.y8_c00199{bottom:852.906171pt;}
.y7_c00199{bottom:879.706715pt;}
.y6_c00199{bottom:906.586615pt;}
.y5_c00199{bottom:933.387159pt;}
.y4_c00199{bottom:960.267059pt;}
.y3_c00199{bottom:987.067603pt;}
.h1_c00199{height:55.797187pt;}
.h2_c00199{height:56.192266pt;}
.h0_c00199{height:1122.666667pt;}
.w0_c00199{width:793.333333pt;}
.x0_c00199{left:0.000000pt;}
.x2_c00199{left:73.520052pt;}
.x1_c00199{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_80ed4df8781f11fc43306f88.woff2')format("woff");}.ff1_c00200{font-family:ff1_c00200;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00200;src:url('chunks/assets/font_4754e48f3706d58aaf00e932.woff2')format("woff");}.ff2_c00200{font-family:ff2_c00200;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00200;src:url('chunks/assets/font_05ffb59f7736df56071a7b2f.woff2')format("woff");}.ff3_c00200{font-family:ff3_c00200;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00200;src:url('chunks/assets/font_a34cf3947fc04bfacba8dc2f.woff2')format("woff");}.ff4_c00200{font-family:ff4_c00200;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00200;src:url('chunks/assets/font_d45a3ed6195e3b8eb0578674.woff2')format("woff");}.ff5_c00200{font-family:ff5_c00200;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00200;src:url('chunks/assets/font_6924e29be8722b88467543b7.woff2')format("woff");}.ff6_c00200{font-family:ff6_c00200;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00200;src:url('chunks/assets/font_d3cddcbaae31d6489ca7c650.woff2')format("woff");}.ff7_c00200{font-family:ff7_c00200;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00200{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00200{vertical-align:-14.760000px;}
.v0_c00200{vertical-align:0.000000px;}
.v1_c00200{vertical-align:32.049990px;}
.ls7_c00200{letter-spacing:-0.410246px;}
.ls12_c00200{letter-spacing:-0.362492px;}
.ls8_c00200{letter-spacing:-0.167137px;}
.ls18_c00200{letter-spacing:-0.146166px;}
.ls19_c00200{letter-spacing:-0.116933px;}
.ls6_c00200{letter-spacing:-0.113957px;}
.ls11_c00200{letter-spacing:-0.081853px;}
.ls15_c00200{letter-spacing:-0.075619px;}
.ls4_c00200{letter-spacing:-0.063018px;}
.lsc_c00200{letter-spacing:-0.049014px;}
.ls10_c00200{letter-spacing:-0.042012px;}
.ls13_c00200{letter-spacing:-0.035080px;}
.lsa_c00200{letter-spacing:-0.035010px;}
.lse_c00200{letter-spacing:-0.028008px;}
.ls1b_c00200{letter-spacing:-0.023387px;}
.lsd_c00200{letter-spacing:-0.021006px;}
.lsf_c00200{letter-spacing:-0.014004px;}
.lsb_c00200{letter-spacing:-0.007002px;}
.ls5_c00200{letter-spacing:0.000000px;}
.ls0_c00200{letter-spacing:0.007002px;}
.ls2_c00200{letter-spacing:0.011693px;}
.ls1_c00200{letter-spacing:0.023281px;}
.ls3_c00200{letter-spacing:0.268945px;}
.ls14_c00200{letter-spacing:0.339105px;}
.ls1a_c00200{letter-spacing:0.403418px;}
.ls16_c00200{letter-spacing:0.473578px;}
.ls17_c00200{letter-spacing:0.543738px;}
.ls9_c00200{letter-spacing:1687.306950px;}
.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;}
}
.ws1_c00200{word-spacing:-58.466400px;}
.ws4_c00200{word-spacing:-16.598611px;}
.ws2_c00200{word-spacing:-16.534298px;}
.ws0_c00200{word-spacing:-12.967628px;}
.ws3_c00200{word-spacing:-10.397640px;}
.ws1c_c00200{word-spacing:-0.007002px;}
.ws5_c00200{word-spacing:0.000000px;}
.ws23_c00200{word-spacing:0.035080px;}
.ws22_c00200{word-spacing:0.128626px;}
.ws6_c00200{word-spacing:0.334274px;}
.ws14_c00200{word-spacing:0.392112px;}
.ws8_c00200{word-spacing:0.478620px;}
.ws7_c00200{word-spacing:0.539397px;}
.ws21_c00200{word-spacing:0.549584px;}
.wsf_c00200{word-spacing:0.700200px;}
.ws1a_c00200{word-spacing:1.106316px;}
.ws19_c00200{word-spacing:1.792512px;}
.ws18_c00200{word-spacing:1.827522px;}
.ws1e_c00200{word-spacing:1.894311px;}
.ws20_c00200{word-spacing:2.058017px;}
.ws1d_c00200{word-spacing:2.163257px;}
.ws1f_c00200{word-spacing:2.210030px;}
.ws10_c00200{word-spacing:2.884824px;}
.ws12_c00200{word-spacing:4.691340px;}
.ws15_c00200{word-spacing:5.062446px;}
.wsb_c00200{word-spacing:7.184052px;}
.wsa_c00200{word-spacing:7.191054px;}
.wsd_c00200{word-spacing:8.290368px;}
.wsc_c00200{word-spacing:8.318376px;}
.ws11_c00200{word-spacing:11.511288px;}
.ws9_c00200{word-spacing:11.539296px;}
.wse_c00200{word-spacing:13.303800px;}
.ws16_c00200{word-spacing:16.566732px;}
.ws13_c00200{word-spacing:18.359244px;}
.ws17_c00200{word-spacing:19.458558px;}
.ws1b_c00200{word-spacing:28.057014px;}
._3_c00200{margin-left:-2.711628px;}
._1_c00200{margin-left:-1.337382px;}
._0_c00200{width:1.192751px;}
._4_c00200{width:2.728809px;}
._2_c00200{width:5.930694px;}
.fc0_c00200{color:rgb(0,0,0);}
.fs4_c00200{font-size:37.809600px;}
.fs2_c00200{font-size:46.562400px;}
.fs3_c00200{font-size:58.466400px;}
.fs0_c00200{font-size:70.020000px;}
.fs1_c00200{font-size:75.971400px;}
.y0_c00200{bottom:0.000000px;}
.y2_c00200{bottom:109.740968px;}
.y1_c00200{bottom:129.810450px;}
.y23_c00200{bottom:149.429548px;}
.y22_c00200{bottom:167.250107px;}
.y21_c00200{bottom:188.940450px;}
.y20_c00200{bottom:203.070107px;}
.y1f_c00200{bottom:221.070450px;}
.y1e_c00200{bottom:239.429118px;}
.y1d_c00200{bottom:311.969838px;}
.y1c_c00200{bottom:342.118452px;}
.y1b_c00200{bottom:372.358339px;}
.y1a_c00200{bottom:402.508951px;}
.y19_c00200{bottom:432.659563px;}
.y18_c00200{bottom:462.899451px;}
.y17_c00200{bottom:493.050063px;}
.y16_c00200{bottom:523.289951px;}
.y15_c00200{bottom:553.440562px;}
.y14_c00200{bottom:583.677952px;}
.y13_c00200{bottom:613.828564px;}
.y12_c00200{bottom:644.068452px;}
.y11_c00200{bottom:674.219064px;}
.y10_c00200{bottom:704.458952px;}
.yf_c00200{bottom:734.609563px;}
.ye_c00200{bottom:764.849451px;}
.yd_c00200{bottom:795.000063px;}
.yc_c00200{bottom:825.239951px;}
.yb_c00200{bottom:855.390562px;}
.ya_c00200{bottom:885.630450px;}
.y9_c00200{bottom:910.380450px;}
.y8_c00200{bottom:959.519442px;}
.y7_c00200{bottom:989.670054px;}
.y6_c00200{bottom:1019.909942px;}
.y5_c00200{bottom:1050.060553px;}
.y4_c00200{bottom:1080.300441px;}
.y3_c00200{bottom:1110.451053px;}
.h9_c00200{height:39.338549px;}
.h8_c00200{height:54.098549px;}
.h4_c00200{height:62.600889px;}
.h1_c00200{height:62.771836px;}
.h7_c00200{height:62.777164px;}
.h2_c00200{height:63.216299px;}
.h3_c00200{height:68.589413px;}
.h5_c00200{height:73.792454px;}
.h6_c00200{height:74.036778px;}
.h0_c00200{height:1263.000000px;}
.w0_c00200{width:892.500000px;}
.x0_c00200{left:0.000000px;}
.x2_c00200{left:82.710059px;}
.x1_c00200{left:431.730000px;}
@media print{
.v2_c00200{vertical-align:-13.120000pt;}
.v0_c00200{vertical-align:0.000000pt;}
.v1_c00200{vertical-align:28.488880pt;}
.ls7_c00200{letter-spacing:-0.364663pt;}
.ls12_c00200{letter-spacing:-0.322215pt;}
.ls8_c00200{letter-spacing:-0.148566pt;}
.ls18_c00200{letter-spacing:-0.129925pt;}
.ls19_c00200{letter-spacing:-0.103940pt;}
.ls6_c00200{letter-spacing:-0.101295pt;}
.ls11_c00200{letter-spacing:-0.072758pt;}
.ls15_c00200{letter-spacing:-0.067217pt;}
.ls4_c00200{letter-spacing:-0.056016pt;}
.lsc_c00200{letter-spacing:-0.043568pt;}
.ls10_c00200{letter-spacing:-0.037344pt;}
.ls13_c00200{letter-spacing:-0.031182pt;}
.lsa_c00200{letter-spacing:-0.031120pt;}
.lse_c00200{letter-spacing:-0.024896pt;}
.ls1b_c00200{letter-spacing:-0.020788pt;}
.lsd_c00200{letter-spacing:-0.018672pt;}
.lsf_c00200{letter-spacing:-0.012448pt;}
.lsb_c00200{letter-spacing:-0.006224pt;}
.ls5_c00200{letter-spacing:0.000000pt;}
.ls0_c00200{letter-spacing:0.006224pt;}
.ls2_c00200{letter-spacing:0.010394pt;}
.ls1_c00200{letter-spacing:0.020694pt;}
.ls3_c00200{letter-spacing:0.239063pt;}
.ls14_c00200{letter-spacing:0.301427pt;}
.ls1a_c00200{letter-spacing:0.358594pt;}
.ls16_c00200{letter-spacing:0.420958pt;}
.ls17_c00200{letter-spacing:0.483322pt;}
.ls9_c00200{letter-spacing:1499.828400pt;}
.ws1_c00200{word-spacing:-51.970133pt;}
.ws4_c00200{word-spacing:-14.754321pt;}
.ws2_c00200{word-spacing:-14.697154pt;}
.ws0_c00200{word-spacing:-11.526781pt;}
.ws3_c00200{word-spacing:-9.242347pt;}
.ws1c_c00200{word-spacing:-0.006224pt;}
.ws5_c00200{word-spacing:0.000000pt;}
.ws23_c00200{word-spacing:0.031182pt;}
.ws22_c00200{word-spacing:0.114334pt;}
.ws6_c00200{word-spacing:0.297133pt;}
.ws14_c00200{word-spacing:0.348544pt;}
.ws8_c00200{word-spacing:0.425440pt;}
.ws7_c00200{word-spacing:0.479464pt;}
.ws21_c00200{word-spacing:0.488519pt;}
.wsf_c00200{word-spacing:0.622400pt;}
.ws1a_c00200{word-spacing:0.983392pt;}
.ws19_c00200{word-spacing:1.593344pt;}
.ws18_c00200{word-spacing:1.624464pt;}
.ws1e_c00200{word-spacing:1.683832pt;}
.ws20_c00200{word-spacing:1.829349pt;}
.ws1d_c00200{word-spacing:1.922895pt;}
.ws1f_c00200{word-spacing:1.964471pt;}
.ws10_c00200{word-spacing:2.564288pt;}
.ws12_c00200{word-spacing:4.170080pt;}
.ws15_c00200{word-spacing:4.499952pt;}
.wsb_c00200{word-spacing:6.385824pt;}
.wsa_c00200{word-spacing:6.392048pt;}
.wsd_c00200{word-spacing:7.369216pt;}
.wsc_c00200{word-spacing:7.394112pt;}
.ws11_c00200{word-spacing:10.232256pt;}
.ws9_c00200{word-spacing:10.257152pt;}
.wse_c00200{word-spacing:11.825600pt;}
.ws16_c00200{word-spacing:14.725984pt;}
.ws13_c00200{word-spacing:16.319328pt;}
.ws17_c00200{word-spacing:17.296496pt;}
.ws1b_c00200{word-spacing:24.939568pt;}
._3_c00200{margin-left:-2.410336pt;}
._1_c00200{margin-left:-1.188784pt;}
._0_c00200{width:1.060223pt;}
._4_c00200{width:2.425608pt;}
._2_c00200{width:5.271728pt;}
.fs4_c00200{font-size:33.608533pt;}
.fs2_c00200{font-size:41.388800pt;}
.fs3_c00200{font-size:51.970133pt;}
.fs0_c00200{font-size:62.240000pt;}
.fs1_c00200{font-size:67.530133pt;}
.y0_c00200{bottom:0.000000pt;}
.y2_c00200{bottom:97.547527pt;}
.y1_c00200{bottom:115.387067pt;}
.y23_c00200{bottom:132.826265pt;}
.y22_c00200{bottom:148.666762pt;}
.y21_c00200{bottom:167.947067pt;}
.y20_c00200{bottom:180.506762pt;}
.y1f_c00200{bottom:196.507067pt;}
.y1e_c00200{bottom:212.825883pt;}
.y1d_c00200{bottom:277.306523pt;}
.y1c_c00200{bottom:304.105291pt;}
.y1b_c00200{bottom:330.985191pt;}
.y1a_c00200{bottom:357.785735pt;}
.y19_c00200{bottom:384.586279pt;}
.y18_c00200{bottom:411.466179pt;}
.y17_c00200{bottom:438.266723pt;}
.y16_c00200{bottom:465.146623pt;}
.y15_c00200{bottom:491.947167pt;}
.y14_c00200{bottom:518.824847pt;}
.y13_c00200{bottom:545.625391pt;}
.y12_c00200{bottom:572.505291pt;}
.y11_c00200{bottom:599.305835pt;}
.y10_c00200{bottom:626.185735pt;}
.yf_c00200{bottom:652.986279pt;}
.ye_c00200{bottom:679.866179pt;}
.yd_c00200{bottom:706.666723pt;}
.yc_c00200{bottom:733.546623pt;}
.yb_c00200{bottom:760.347167pt;}
.ya_c00200{bottom:787.227067pt;}
.y9_c00200{bottom:809.227067pt;}
.y8_c00200{bottom:852.906171pt;}
.y7_c00200{bottom:879.706715pt;}
.y6_c00200{bottom:906.586615pt;}
.y5_c00200{bottom:933.387159pt;}
.y4_c00200{bottom:960.267059pt;}
.y3_c00200{bottom:987.067603pt;}
.h9_c00200{height:34.967599pt;}
.h8_c00200{height:48.087599pt;}
.h4_c00200{height:55.645234pt;}
.h1_c00200{height:55.797187pt;}
.h7_c00200{height:55.801923pt;}
.h2_c00200{height:56.192266pt;}
.h3_c00200{height:60.968367pt;}
.h5_c00200{height:65.593292pt;}
.h6_c00200{height:65.810470pt;}
.h0_c00200{height:1122.666667pt;}
.w0_c00200{width:793.333333pt;}
.x0_c00200{left:0.000000pt;}
.x2_c00200{left:73.520052pt;}
.x1_c00200{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_88ac5109eb95c470f65e5cb8.woff2')format("woff");}.ff1_c00201{font-family:ff1_c00201;line-height:1.106934;font-style:normal;font-weight:normal;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_308d0a966b36c2bd3232b832.woff2')format("woff");}.ff2_c00201{font-family:ff2_c00201;line-height:1.104492;font-style:normal;font-weight:normal;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_dc95ca225b0ba5dc6bbff3f2.woff2')format("woff");}.ff3_c00201{font-family:ff3_c00201;line-height:1.133301;font-style:normal;font-weight:normal;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_ecc748384f6cbb9091409dc9.woff2')format("woff");}.ff4_c00201{font-family:ff4_c00201;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00201{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00201{vertical-align:-14.760000px;}
.v0_c00201{vertical-align:0.000000px;}
.v1_c00201{vertical-align:32.053572px;}
.lsf_c00201{letter-spacing:-0.335249px;}
.ls14_c00201{letter-spacing:-0.233866px;}
.lse_c00201{letter-spacing:-0.091026px;}
.ls10_c00201{letter-spacing:-0.075619px;}
.ls5_c00201{letter-spacing:-0.063018px;}
.lsd_c00201{letter-spacing:-0.056016px;}
.lsb_c00201{letter-spacing:-0.049014px;}
.ls11_c00201{letter-spacing:-0.046773px;}
.lsc_c00201{letter-spacing:-0.042012px;}
.ls13_c00201{letter-spacing:-0.040926px;}
.ls8_c00201{letter-spacing:-0.035010px;}
.ls12_c00201{letter-spacing:-0.029233px;}
.ls7_c00201{letter-spacing:-0.021006px;}
.lsa_c00201{letter-spacing:-0.014004px;}
.ls9_c00201{letter-spacing:-0.007002px;}
.ls6_c00201{letter-spacing:0.000000px;}
.ls0_c00201{letter-spacing:0.007002px;}
.ls2_c00201{letter-spacing:0.014004px;}
.ls1_c00201{letter-spacing:0.021006px;}
.ls4_c00201{letter-spacing:0.023281px;}
.ls3_c00201{letter-spacing:0.035010px;}
.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:-19.374534px;}
.ws2_c00201{word-spacing:-12.967628px;}
.ws1_c00201{word-spacing:-12.609098px;}
.ws3_c00201{word-spacing:-10.397640px;}
.ws1d_c00201{word-spacing:-0.357102px;}
.ws27_c00201{word-spacing:-0.111086px;}
.ws23_c00201{word-spacing:-0.021006px;}
.ws4_c00201{word-spacing:0.000000px;}
.ws22_c00201{word-spacing:0.021006px;}
.wsf_c00201{word-spacing:0.350100px;}
.ws9_c00201{word-spacing:0.700200px;}
.ws12_c00201{word-spacing:0.742212px;}
.ws13_c00201{word-spacing:1.050300px;}
.ws8_c00201{word-spacing:1.085310px;}
.ws26_c00201{word-spacing:1.496740px;}
.ws1b_c00201{word-spacing:2.541726px;}
.ws17_c00201{word-spacing:2.828808px;}
.ws16_c00201{word-spacing:2.856816px;}
.wse_c00201{word-spacing:2.912832px;}
.ws14_c00201{word-spacing:3.248928px;}
.ws15_c00201{word-spacing:3.592026px;}
.ws20_c00201{word-spacing:4.292226px;}
.ws1a_c00201{word-spacing:5.041440px;}
.ws21_c00201{word-spacing:6.504858px;}
.wsb_c00201{word-spacing:6.805944px;}
.wsa_c00201{word-spacing:6.833952px;}
.ws7_c00201{word-spacing:6.861960px;}
.ws10_c00201{word-spacing:7.205058px;}
.wsd_c00201{word-spacing:7.562160px;}
.ws11_c00201{word-spacing:7.576164px;}
.ws1f_c00201{word-spacing:9.018576px;}
.ws1e_c00201{word-spacing:9.039582px;}
.ws1c_c00201{word-spacing:12.568590px;}
.wsc_c00201{word-spacing:14.767218px;}
.ws5_c00201{word-spacing:19.423548px;}
.ws6_c00201{word-spacing:21.965274px;}
.ws19_c00201{word-spacing:26.684622px;}
.ws18_c00201{word-spacing:27.027720px;}
.ws25_c00201{word-spacing:28.841475px;}
.ws24_c00201{word-spacing:29.221507px;}
._1_c00201{margin-left:-18.898398px;}
._3_c00201{margin-left:-7.828236px;}
._5_c00201{margin-left:-2.708172px;}
._0_c00201{margin-left:-1.050300px;}
._2_c00201{width:1.071306px;}
._4_c00201{width:5.930694px;}
.fc0_c00201{color:rgb(0,0,0);}
.fs2_c00201{font-size:37.809600px;}
.fs1_c00201{font-size:46.562400px;}
.fs3_c00201{font-size:58.466400px;}
.fs0_c00201{font-size:70.020000px;}
.y0_c00201{bottom:0.000000px;}
.y2_c00201{bottom:109.740968px;}
.y1_c00201{bottom:129.810450px;}
.y23_c00201{bottom:153.120600px;}
.y22_c00201{bottom:167.249548px;}
.y21_c00201{bottom:185.249891px;}
.y20_c00201{bottom:206.760450px;}
.y1f_c00201{bottom:221.429622px;}
.y1e_c00201{bottom:295.228951px;}
.y1d_c00201{bottom:325.468839px;}
.y1c_c00201{bottom:355.619451px;}
.y1b_c00201{bottom:385.859338px;}
.y1a_c00201{bottom:416.009951px;}
.y19_c00201{bottom:446.249838px;}
.y18_c00201{bottom:476.400589px;}
.y17_c00201{bottom:506.640477px;}
.y16_c00201{bottom:536.791089px;}
.y15_c00201{bottom:567.030976px;}
.y14_c00201{bottom:597.090562px;}
.y13_c00201{bottom:627.327057px;}
.y12_c00201{bottom:657.477669px;}
.y11_c00201{bottom:687.717557px;}
.y10_c00201{bottom:717.868169px;}
.yf_c00201{bottom:748.108056px;}
.ye_c00201{bottom:778.258668px;}
.yd_c00201{bottom:808.498556px;}
.yc_c00201{bottom:838.649168px;}
.yb_c00201{bottom:868.889055px;}
.ya_c00201{bottom:899.039667px;}
.y9_c00201{bottom:929.279555px;}
.y8_c00201{bottom:959.519442px;}
.y7_c00201{bottom:989.670054px;}
.y6_c00201{bottom:1019.909942px;}
.y5_c00201{bottom:1050.060553px;}
.y4_c00201{bottom:1080.300441px;}
.y3_c00201{bottom:1110.451053px;}
.h8_c00201{height:39.337949px;}
.h6_c00201{height:39.338549px;}
.h7_c00201{height:54.098549px;}
.h2_c00201{height:62.600889px;}
.h1_c00201{height:62.771836px;}
.h5_c00201{height:62.775148px;}
.h3_c00201{height:73.796036px;}
.h4_c00201{height:74.142506px;}
.h0_c00201{height:1263.000000px;}
.w0_c00201{width:892.500000px;}
.x0_c00201{left:0.000000px;}
.x2_c00201{left:82.710059px;}
.x1_c00201{left:431.730000px;}
@media print{
.v2_c00201{vertical-align:-13.120000pt;}
.v0_c00201{vertical-align:0.000000pt;}
.v1_c00201{vertical-align:28.492064pt;}
.lsf_c00201{letter-spacing:-0.297999pt;}
.ls14_c00201{letter-spacing:-0.207881pt;}
.lse_c00201{letter-spacing:-0.080912pt;}
.ls10_c00201{letter-spacing:-0.067217pt;}
.ls5_c00201{letter-spacing:-0.056016pt;}
.lsd_c00201{letter-spacing:-0.049792pt;}
.lsb_c00201{letter-spacing:-0.043568pt;}
.ls11_c00201{letter-spacing:-0.041576pt;}
.lsc_c00201{letter-spacing:-0.037344pt;}
.ls13_c00201{letter-spacing:-0.036379pt;}
.ls8_c00201{letter-spacing:-0.031120pt;}
.ls12_c00201{letter-spacing:-0.025985pt;}
.ls7_c00201{letter-spacing:-0.018672pt;}
.lsa_c00201{letter-spacing:-0.012448pt;}
.ls9_c00201{letter-spacing:-0.006224pt;}
.ls6_c00201{letter-spacing:0.000000pt;}
.ls0_c00201{letter-spacing:0.006224pt;}
.ls2_c00201{letter-spacing:0.012448pt;}
.ls1_c00201{letter-spacing:0.018672pt;}
.ls4_c00201{letter-spacing:0.020694pt;}
.ls3_c00201{letter-spacing:0.031120pt;}
.ws0_c00201{word-spacing:-17.221808pt;}
.ws2_c00201{word-spacing:-11.526781pt;}
.ws1_c00201{word-spacing:-11.208087pt;}
.ws3_c00201{word-spacing:-9.242347pt;}
.ws1d_c00201{word-spacing:-0.317424pt;}
.ws27_c00201{word-spacing:-0.098743pt;}
.ws23_c00201{word-spacing:-0.018672pt;}
.ws4_c00201{word-spacing:0.000000pt;}
.ws22_c00201{word-spacing:0.018672pt;}
.wsf_c00201{word-spacing:0.311200pt;}
.ws9_c00201{word-spacing:0.622400pt;}
.ws12_c00201{word-spacing:0.659744pt;}
.ws13_c00201{word-spacing:0.933600pt;}
.ws8_c00201{word-spacing:0.964720pt;}
.ws26_c00201{word-spacing:1.330435pt;}
.ws1b_c00201{word-spacing:2.259312pt;}
.ws17_c00201{word-spacing:2.514496pt;}
.ws16_c00201{word-spacing:2.539392pt;}
.wse_c00201{word-spacing:2.589184pt;}
.ws14_c00201{word-spacing:2.887936pt;}
.ws15_c00201{word-spacing:3.192912pt;}
.ws20_c00201{word-spacing:3.815312pt;}
.ws1a_c00201{word-spacing:4.481280pt;}
.ws21_c00201{word-spacing:5.782096pt;}
.wsb_c00201{word-spacing:6.049728pt;}
.wsa_c00201{word-spacing:6.074624pt;}
.ws7_c00201{word-spacing:6.099520pt;}
.ws10_c00201{word-spacing:6.404496pt;}
.wsd_c00201{word-spacing:6.721920pt;}
.ws11_c00201{word-spacing:6.734368pt;}
.ws1f_c00201{word-spacing:8.016512pt;}
.ws1e_c00201{word-spacing:8.035184pt;}
.ws1c_c00201{word-spacing:11.172080pt;}
.wsc_c00201{word-spacing:13.126416pt;}
.ws5_c00201{word-spacing:17.265376pt;}
.ws6_c00201{word-spacing:19.524688pt;}
.ws19_c00201{word-spacing:23.719664pt;}
.ws18_c00201{word-spacing:24.024640pt;}
.ws25_c00201{word-spacing:25.636867pt;}
.ws24_c00201{word-spacing:25.974673pt;}
._1_c00201{margin-left:-16.798576pt;}
._3_c00201{margin-left:-6.958432pt;}
._5_c00201{margin-left:-2.407264pt;}
._0_c00201{margin-left:-0.933600pt;}
._2_c00201{width:0.952272pt;}
._4_c00201{width:5.271728pt;}
.fs2_c00201{font-size:33.608533pt;}
.fs1_c00201{font-size:41.388800pt;}
.fs3_c00201{font-size:51.970133pt;}
.fs0_c00201{font-size:62.240000pt;}
.y0_c00201{bottom:0.000000pt;}
.y2_c00201{bottom:97.547527pt;}
.y1_c00201{bottom:115.387067pt;}
.y23_c00201{bottom:136.107200pt;}
.y22_c00201{bottom:148.666265pt;}
.y21_c00201{bottom:164.666570pt;}
.y20_c00201{bottom:183.787067pt;}
.y1f_c00201{bottom:196.826331pt;}
.y1e_c00201{bottom:262.425735pt;}
.y1d_c00201{bottom:289.305635pt;}
.y1c_c00201{bottom:316.106179pt;}
.y1b_c00201{bottom:342.986079pt;}
.y1a_c00201{bottom:369.786623pt;}
.y19_c00201{bottom:396.666523pt;}
.y18_c00201{bottom:423.467191pt;}
.y17_c00201{bottom:450.347091pt;}
.y16_c00201{bottom:477.147635pt;}
.y15_c00201{bottom:504.027535pt;}
.y14_c00201{bottom:530.747167pt;}
.y13_c00201{bottom:557.624051pt;}
.y12_c00201{bottom:584.424595pt;}
.y11_c00201{bottom:611.304495pt;}
.y10_c00201{bottom:638.105039pt;}
.yf_c00201{bottom:664.984939pt;}
.ye_c00201{bottom:691.785483pt;}
.yd_c00201{bottom:718.665383pt;}
.yc_c00201{bottom:745.465927pt;}
.yb_c00201{bottom:772.345827pt;}
.ya_c00201{bottom:799.146371pt;}
.y9_c00201{bottom:826.026271pt;}
.y8_c00201{bottom:852.906171pt;}
.y7_c00201{bottom:879.706715pt;}
.y6_c00201{bottom:906.586615pt;}
.y5_c00201{bottom:933.387159pt;}
.y4_c00201{bottom:960.267059pt;}
.y3_c00201{bottom:987.067603pt;}
.h8_c00201{height:34.967066pt;}
.h6_c00201{height:34.967599pt;}
.h7_c00201{height:48.087599pt;}
.h2_c00201{height:55.645234pt;}
.h1_c00201{height:55.797187pt;}
.h5_c00201{height:55.800132pt;}
.h3_c00201{height:65.596476pt;}
.h4_c00201{height:65.904450pt;}
.h0_c00201{height:1122.666667pt;}
.w0_c00201{width:793.333333pt;}
.x0_c00201{left:0.000000pt;}
.x2_c00201{left:73.520052pt;}
.x1_c00201{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_47f7e702c5f9f03c343c2b4c.woff2')format("woff");}.ff1_c00202{font-family:ff1_c00202;line-height:1.106934;font-style:normal;font-weight:normal;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_affa3ff2ee635d36d88d7f62.woff2')format("woff");}.ff2_c00202{font-family:ff2_c00202;line-height:1.104492;font-style:normal;font-weight:normal;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_3374a7fa44ce6e3e238a4c1c.woff2')format("woff");}.ff3_c00202{font-family:ff3_c00202;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00202;src:url('chunks/assets/font_9217fe35edbec72cbaca4b1a.woff2')format("woff");}.ff4_c00202{font-family:ff4_c00202;line-height:0.892090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00202;src:url('chunks/assets/font_c299349f9cec5a008bbfc505.woff2')format("woff");}.ff5_c00202{font-family:ff5_c00202;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00202;src:url('chunks/assets/font_aeb73fadf599a11070c874ab.woff2')format("woff");}.ff6_c00202{font-family:ff6_c00202;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00202;src:url('chunks/assets/font_d0d88764e218abb1c676129a.woff2')format("woff");}.ff7_c00202{font-family:ff7_c00202;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00202{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00202{vertical-align:-14.760000px;}
.v0_c00202{vertical-align:0.000000px;}
.v1_c00202{vertical-align:32.041584px;}
.ls13_c00202{letter-spacing:-0.250706px;}
.ls17_c00202{letter-spacing:-0.222172px;}
.ls1a_c00202{letter-spacing:-0.163706px;}
.ls11_c00202{letter-spacing:-0.113957px;}
.ls12_c00202{letter-spacing:-0.098763px;}
.ls16_c00202{letter-spacing:-0.075619px;}
.ls19_c00202{letter-spacing:-0.064313px;}
.ls8_c00202{letter-spacing:-0.063018px;}
.ls14_c00202{letter-spacing:-0.060777px;}
.lsa_c00202{letter-spacing:-0.056016px;}
.lsc_c00202{letter-spacing:-0.035010px;}
.ls10_c00202{letter-spacing:-0.028008px;}
.lsd_c00202{letter-spacing:-0.021006px;}
.lsb_c00202{letter-spacing:-0.014004px;}
.lse_c00202{letter-spacing:-0.007002px;}
.ls9_c00202{letter-spacing:0.000000px;}
.ls2_c00202{letter-spacing:0.007002px;}
.ls1_c00202{letter-spacing:0.021006px;}
.ls3_c00202{letter-spacing:0.023281px;}
.ls6_c00202{letter-spacing:0.035010px;}
.ls4_c00202{letter-spacing:0.049014px;}
.ls15_c00202{letter-spacing:0.070020px;}
.ls18_c00202{letter-spacing:0.081853px;}
.ls0_c00202{letter-spacing:0.336096px;}
.lsf_c00202{letter-spacing:0.343098px;}
.ls7_c00202{letter-spacing:0.357102px;}
.ls1b_c00202{letter-spacing:0.537891px;}
.ls5_c00202{letter-spacing:0.630180px;}
.sc__c00202{text-shadow:none;}
.sc0_c00202{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00202{-webkit-text-stroke:0px transparent;}
.sc0_c00202{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00202{word-spacing:-70.020000px;}
.ws3_c00202{word-spacing:-58.466400px;}
.ws4_c00202{word-spacing:-16.195193px;}
.ws0_c00202{word-spacing:-12.967628px;}
.ws2_c00202{word-spacing:-10.397640px;}
.ws2d_c00202{word-spacing:-0.286485px;}
.ws5_c00202{word-spacing:0.000000px;}
.ws2c_c00202{word-spacing:0.076006px;}
.ws1c_c00202{word-spacing:0.151943px;}
.ws1d_c00202{word-spacing:0.227914px;}
.ws27_c00202{word-spacing:0.233866px;}
.wsc_c00202{word-spacing:0.350100px;}
.ws13_c00202{word-spacing:0.371106px;}
.ws1e_c00202{word-spacing:0.562188px;}
.wsb_c00202{word-spacing:4.656330px;}
.wsa_c00202{word-spacing:4.684338px;}
.ws10_c00202{word-spacing:6.413832px;}
.wsf_c00202{word-spacing:6.490854px;}
.ws8_c00202{word-spacing:7.919262px;}
.ws12_c00202{word-spacing:8.647470px;}
.ws11_c00202{word-spacing:8.689482px;}
.ws23_c00202{word-spacing:9.312660px;}
.ws25_c00202{word-spacing:9.347670px;}
.ws24_c00202{word-spacing:9.634752px;}
.ws22_c00202{word-spacing:9.697770px;}
.ws18_c00202{word-spacing:10.460988px;}
.ws20_c00202{word-spacing:14.060016px;}
.ws21_c00202{word-spacing:15.460416px;}
.ws17_c00202{word-spacing:15.915546px;}
.ws16_c00202{word-spacing:16.559730px;}
.ws29_c00202{word-spacing:16.639537px;}
.ws28_c00202{word-spacing:16.850016px;}
.ws1b_c00202{word-spacing:17.273934px;}
.ws19_c00202{word-spacing:17.322948px;}
.ws1a_c00202{word-spacing:17.329950px;}
.ws2b_c00202{word-spacing:17.475607px;}
.ws2a_c00202{word-spacing:18.539695px;}
.ws14_c00202{word-spacing:19.458558px;}
.wsd_c00202{word-spacing:21.615174px;}
.wse_c00202{word-spacing:21.622176px;}
.ws7_c00202{word-spacing:22.287366px;}
.ws26_c00202{word-spacing:22.315374px;}
.ws6_c00202{word-spacing:22.364388px;}
.ws15_c00202{word-spacing:24.464988px;}
.ws1f_c00202{word-spacing:30.591738px;}
.ws9_c00202{word-spacing:34.939980px;}
._3_c00202{margin-left:-2.711574px;}
._1_c00202{margin-left:-1.092312px;}
._0_c00202{width:1.092312px;}
._2_c00202{width:5.930694px;}
.fc0_c00202{color:rgb(0,0,0);}
.fs3_c00202{font-size:37.809600px;}
.fs1_c00202{font-size:46.562400px;}
.fs4_c00202{font-size:58.466400px;}
.fs0_c00202{font-size:70.020000px;}
.fs2_c00202{font-size:75.971400px;}
.y0_c00202{bottom:0.000000px;}
.y2_c00202{bottom:109.740968px;}
.y1_c00202{bottom:129.810450px;}
.y23_c00202{bottom:149.429548px;}
.y22_c00202{bottom:167.250107px;}
.y21_c00202{bottom:188.940450px;}
.y20_c00202{bottom:206.760450px;}
.y1f_c00202{bottom:221.430589px;}
.y1e_c00202{bottom:281.730063px;}
.y1d_c00202{bottom:311.969950px;}
.y1c_c00202{bottom:342.120563px;}
.y1b_c00202{bottom:372.358726px;}
.y1a_c00202{bottom:402.509338px;}
.y19_c00202{bottom:432.659950px;}
.y18_c00202{bottom:462.899838px;}
.y17_c00202{bottom:493.050450px;}
.y16_c00202{bottom:517.890450px;}
.y15_c00202{bottom:567.029865px;}
.y14_c00202{bottom:597.089451px;}
.y13_c00202{bottom:627.329338px;}
.y12_c00202{bottom:657.479950px;}
.y11_c00202{bottom:687.719838px;}
.y10_c00202{bottom:717.868565px;}
.yf_c00202{bottom:748.108452px;}
.ye_c00202{bottom:778.259064px;}
.yd_c00202{bottom:808.498952px;}
.yc_c00202{bottom:838.649564px;}
.yb_c00202{bottom:868.889451px;}
.ya_c00202{bottom:899.040063px;}
.y9_c00202{bottom:929.279951px;}
.y8_c00202{bottom:959.519838px;}
.y7_c00202{bottom:989.670054px;}
.y6_c00202{bottom:1019.909942px;}
.y5_c00202{bottom:1050.060553px;}
.y4_c00202{bottom:1080.300441px;}
.y3_c00202{bottom:1110.451053px;}
.h7_c00202{height:39.338549px;}
.h8_c00202{height:54.098549px;}
.h2_c00202{height:62.600889px;}
.h1_c00202{height:62.771836px;}
.h6_c00202{height:62.778730px;}
.h5_c00202{height:68.589413px;}
.h3_c00202{height:73.670370px;}
.h4_c00202{height:74.150006px;}
.h0_c00202{height:1263.000000px;}
.w0_c00202{width:892.500000px;}
.x0_c00202{left:0.000000px;}
.x2_c00202{left:82.710059px;}
.x1_c00202{left:431.730000px;}
@media print{
.v2_c00202{vertical-align:-13.120000pt;}
.v0_c00202{vertical-align:0.000000pt;}
.v1_c00202{vertical-align:28.481408pt;}
.ls13_c00202{letter-spacing:-0.222849pt;}
.ls17_c00202{letter-spacing:-0.197487pt;}
.ls1a_c00202{letter-spacing:-0.145516pt;}
.ls11_c00202{letter-spacing:-0.101295pt;}
.ls12_c00202{letter-spacing:-0.087789pt;}
.ls16_c00202{letter-spacing:-0.067217pt;}
.ls19_c00202{letter-spacing:-0.057167pt;}
.ls8_c00202{letter-spacing:-0.056016pt;}
.ls14_c00202{letter-spacing:-0.054024pt;}
.lsa_c00202{letter-spacing:-0.049792pt;}
.lsc_c00202{letter-spacing:-0.031120pt;}
.ls10_c00202{letter-spacing:-0.024896pt;}
.lsd_c00202{letter-spacing:-0.018672pt;}
.lsb_c00202{letter-spacing:-0.012448pt;}
.lse_c00202{letter-spacing:-0.006224pt;}
.ls9_c00202{letter-spacing:0.000000pt;}
.ls2_c00202{letter-spacing:0.006224pt;}
.ls1_c00202{letter-spacing:0.018672pt;}
.ls3_c00202{letter-spacing:0.020694pt;}
.ls6_c00202{letter-spacing:0.031120pt;}
.ls4_c00202{letter-spacing:0.043568pt;}
.ls15_c00202{letter-spacing:0.062240pt;}
.ls18_c00202{letter-spacing:0.072758pt;}
.ls0_c00202{letter-spacing:0.298752pt;}
.lsf_c00202{letter-spacing:0.304976pt;}
.ls7_c00202{letter-spacing:0.317424pt;}
.ls1b_c00202{letter-spacing:0.478125pt;}
.ls5_c00202{letter-spacing:0.560160pt;}
.ws1_c00202{word-spacing:-62.240000pt;}
.ws3_c00202{word-spacing:-51.970133pt;}
.ws4_c00202{word-spacing:-14.395727pt;}
.ws0_c00202{word-spacing:-11.526781pt;}
.ws2_c00202{word-spacing:-9.242347pt;}
.ws2d_c00202{word-spacing:-0.254654pt;}
.ws5_c00202{word-spacing:0.000000pt;}
.ws2c_c00202{word-spacing:0.067561pt;}
.ws1c_c00202{word-spacing:0.135060pt;}
.ws1d_c00202{word-spacing:0.202590pt;}
.ws27_c00202{word-spacing:0.207881pt;}
.wsc_c00202{word-spacing:0.311200pt;}
.ws13_c00202{word-spacing:0.329872pt;}
.ws1e_c00202{word-spacing:0.499723pt;}
.wsb_c00202{word-spacing:4.138960pt;}
.wsa_c00202{word-spacing:4.163856pt;}
.ws10_c00202{word-spacing:5.701184pt;}
.wsf_c00202{word-spacing:5.769648pt;}
.ws8_c00202{word-spacing:7.039344pt;}
.ws12_c00202{word-spacing:7.686640pt;}
.ws11_c00202{word-spacing:7.723984pt;}
.ws23_c00202{word-spacing:8.277920pt;}
.ws25_c00202{word-spacing:8.309040pt;}
.ws24_c00202{word-spacing:8.564224pt;}
.ws22_c00202{word-spacing:8.620240pt;}
.ws18_c00202{word-spacing:9.298656pt;}
.ws20_c00202{word-spacing:12.497792pt;}
.ws21_c00202{word-spacing:13.742592pt;}
.ws17_c00202{word-spacing:14.147152pt;}
.ws16_c00202{word-spacing:14.719760pt;}
.ws29_c00202{word-spacing:14.790700pt;}
.ws28_c00202{word-spacing:14.977792pt;}
.ws1b_c00202{word-spacing:15.354608pt;}
.ws19_c00202{word-spacing:15.398176pt;}
.ws1a_c00202{word-spacing:15.404400pt;}
.ws2b_c00202{word-spacing:15.533873pt;}
.ws2a_c00202{word-spacing:16.479729pt;}
.ws14_c00202{word-spacing:17.296496pt;}
.wsd_c00202{word-spacing:19.213488pt;}
.wse_c00202{word-spacing:19.219712pt;}
.ws7_c00202{word-spacing:19.810992pt;}
.ws26_c00202{word-spacing:19.835888pt;}
.ws6_c00202{word-spacing:19.879456pt;}
.ws15_c00202{word-spacing:21.746656pt;}
.ws1f_c00202{word-spacing:27.192656pt;}
.ws9_c00202{word-spacing:31.057760pt;}
._3_c00202{margin-left:-2.410288pt;}
._1_c00202{margin-left:-0.970944pt;}
._0_c00202{width:0.970944pt;}
._2_c00202{width:5.271728pt;}
.fs3_c00202{font-size:33.608533pt;}
.fs1_c00202{font-size:41.388800pt;}
.fs4_c00202{font-size:51.970133pt;}
.fs0_c00202{font-size:62.240000pt;}
.fs2_c00202{font-size:67.530133pt;}
.y0_c00202{bottom:0.000000pt;}
.y2_c00202{bottom:97.547527pt;}
.y1_c00202{bottom:115.387067pt;}
.y23_c00202{bottom:132.826265pt;}
.y22_c00202{bottom:148.666762pt;}
.y21_c00202{bottom:167.947067pt;}
.y20_c00202{bottom:183.787067pt;}
.y1f_c00202{bottom:196.827191pt;}
.y1e_c00202{bottom:250.426723pt;}
.y1d_c00202{bottom:277.306623pt;}
.y1c_c00202{bottom:304.107167pt;}
.y1b_c00202{bottom:330.985535pt;}
.y1a_c00202{bottom:357.786079pt;}
.y19_c00202{bottom:384.586623pt;}
.y18_c00202{bottom:411.466523pt;}
.y17_c00202{bottom:438.267067pt;}
.y16_c00202{bottom:460.347067pt;}
.y15_c00202{bottom:504.026547pt;}
.y14_c00202{bottom:530.746179pt;}
.y13_c00202{bottom:557.626079pt;}
.y12_c00202{bottom:584.426623pt;}
.y11_c00202{bottom:611.306523pt;}
.y10_c00202{bottom:638.105391pt;}
.yf_c00202{bottom:664.985291pt;}
.ye_c00202{bottom:691.785835pt;}
.yd_c00202{bottom:718.665735pt;}
.yc_c00202{bottom:745.466279pt;}
.yb_c00202{bottom:772.346179pt;}
.ya_c00202{bottom:799.146723pt;}
.y9_c00202{bottom:826.026623pt;}
.y8_c00202{bottom:852.906523pt;}
.y7_c00202{bottom:879.706715pt;}
.y6_c00202{bottom:906.586615pt;}
.y5_c00202{bottom:933.387159pt;}
.y4_c00202{bottom:960.267059pt;}
.y3_c00202{bottom:987.067603pt;}
.h7_c00202{height:34.967599pt;}
.h8_c00202{height:48.087599pt;}
.h2_c00202{height:55.645234pt;}
.h1_c00202{height:55.797187pt;}
.h6_c00202{height:55.803316pt;}
.h5_c00202{height:60.968367pt;}
.h3_c00202{height:65.484774pt;}
.h4_c00202{height:65.911116pt;}
.h0_c00202{height:1122.666667pt;}
.w0_c00202{width:793.333333pt;}
.x0_c00202{left:0.000000pt;}
.x2_c00202{left:73.520052pt;}
.x1_c00202{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_33b1cff184889f078e04bdb0.woff2')format("woff");}.ff1_c00203{font-family:ff1_c00203;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00203{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00203{vertical-align:0.000000px;}
.ls4_c00203{letter-spacing:-0.063018px;}
.lsa_c00203{letter-spacing:-0.042012px;}
.ls9_c00203{letter-spacing:-0.035010px;}
.ls8_c00203{letter-spacing:-0.028008px;}
.lsb_c00203{letter-spacing:-0.021006px;}
.ls7_c00203{letter-spacing:-0.014004px;}
.ls6_c00203{letter-spacing:-0.007002px;}
.ls5_c00203{letter-spacing:0.000000px;}
.ls0_c00203{letter-spacing:0.014004px;}
.ls2_c00203{letter-spacing:0.028008px;}
.ls3_c00203{letter-spacing:0.035010px;}
.ls1_c00203{letter-spacing:0.056016px;}
.lsc_c00203{letter-spacing:0.343098px;}
.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;}
}
.ws3_c00203{word-spacing:-0.070020px;}
.ws9_c00203{word-spacing:-0.014004px;}
.ws0_c00203{word-spacing:0.000000px;}
.ws2_c00203{word-spacing:0.329094px;}
.wsb_c00203{word-spacing:0.357102px;}
.wsc_c00203{word-spacing:0.371106px;}
.wsd_c00203{word-spacing:0.385110px;}
.ws1_c00203{word-spacing:1.792512px;}
.ws1a_c00203{word-spacing:3.248928px;}
.wse_c00203{word-spacing:4.292226px;}
.wsf_c00203{word-spacing:4.334238px;}
.ws1e_c00203{word-spacing:6.119748px;}
.ws16_c00203{word-spacing:6.126750px;}
.ws1d_c00203{word-spacing:6.133752px;}
.ws12_c00203{word-spacing:7.548156px;}
.ws1c_c00203{word-spacing:12.911688px;}
.ws19_c00203{word-spacing:12.974706px;}
.ws1b_c00203{word-spacing:13.289796px;}
.wsa_c00203{word-spacing:13.303800px;}
.ws8_c00203{word-spacing:14.389110px;}
.ws14_c00203{word-spacing:15.117318px;}
.ws13_c00203{word-spacing:15.131322px;}
.ws1f_c00203{word-spacing:19.080450px;}
.ws6_c00203{word-spacing:20.116746px;}
.ws5_c00203{word-spacing:20.158758px;}
.ws7_c00203{word-spacing:20.179764px;}
.ws18_c00203{word-spacing:21.587166px;}
.ws17_c00203{word-spacing:21.615174px;}
.ws4_c00203{word-spacing:23.414688px;}
.ws11_c00203{word-spacing:25.893396px;}
.ws10_c00203{word-spacing:26.236494px;}
.ws15_c00203{word-spacing:32.748354px;}
._2_c00203{margin-left:-23.400684px;}
._0_c00203{margin-left:-1.330380px;}
._1_c00203{width:1.029294px;}
.fc0_c00203{color:rgb(0,0,0);}
.fs0_c00203{font-size:70.020000px;}
.y0_c00203{bottom:0.000000px;}
.y2_c00203{bottom:109.740968px;}
.y1_c00203{bottom:129.810450px;}
.y22_c00203{bottom:174.444699px;}
.y21_c00203{bottom:204.684587px;}
.y20_c00203{bottom:234.835199px;}
.y1f_c00203{bottom:265.075086px;}
.y1e_c00203{bottom:295.225698px;}
.y1d_c00203{bottom:325.465586px;}
.y1c_c00203{bottom:355.616198px;}
.y1b_c00203{bottom:385.856085px;}
.y1a_c00203{bottom:416.006697px;}
.y19_c00203{bottom:446.246585px;}
.y18_c00203{bottom:476.397197px;}
.y17_c00203{bottom:506.637084px;}
.y16_c00203{bottom:536.787696px;}
.y15_c00203{bottom:567.027584px;}
.y14_c00203{bottom:597.087170px;}
.y13_c00203{bottom:627.327057px;}
.y12_c00203{bottom:657.477669px;}
.y11_c00203{bottom:687.717557px;}
.y10_c00203{bottom:717.868169px;}
.yf_c00203{bottom:748.108056px;}
.ye_c00203{bottom:778.258668px;}
.yd_c00203{bottom:808.498556px;}
.yc_c00203{bottom:838.649168px;}
.yb_c00203{bottom:868.889055px;}
.ya_c00203{bottom:899.039667px;}
.y9_c00203{bottom:929.279555px;}
.y8_c00203{bottom:959.519442px;}
.y7_c00203{bottom:989.670054px;}
.y6_c00203{bottom:1019.909942px;}
.y5_c00203{bottom:1050.060553px;}
.y4_c00203{bottom:1080.300441px;}
.y3_c00203{bottom:1110.451053px;}
.h1_c00203{height:62.771836px;}
.h0_c00203{height:1263.000000px;}
.w0_c00203{width:892.500000px;}
.x0_c00203{left:0.000000px;}
.x2_c00203{left:82.710059px;}
.x1_c00203{left:431.730000px;}
@media print{
.v0_c00203{vertical-align:0.000000pt;}
.ls4_c00203{letter-spacing:-0.056016pt;}
.lsa_c00203{letter-spacing:-0.037344pt;}
.ls9_c00203{letter-spacing:-0.031120pt;}
.ls8_c00203{letter-spacing:-0.024896pt;}
.lsb_c00203{letter-spacing:-0.018672pt;}
.ls7_c00203{letter-spacing:-0.012448pt;}
.ls6_c00203{letter-spacing:-0.006224pt;}
.ls5_c00203{letter-spacing:0.000000pt;}
.ls0_c00203{letter-spacing:0.012448pt;}
.ls2_c00203{letter-spacing:0.024896pt;}
.ls3_c00203{letter-spacing:0.031120pt;}
.ls1_c00203{letter-spacing:0.049792pt;}
.lsc_c00203{letter-spacing:0.304976pt;}
.ws3_c00203{word-spacing:-0.062240pt;}
.ws9_c00203{word-spacing:-0.012448pt;}
.ws0_c00203{word-spacing:0.000000pt;}
.ws2_c00203{word-spacing:0.292528pt;}
.wsb_c00203{word-spacing:0.317424pt;}
.wsc_c00203{word-spacing:0.329872pt;}
.wsd_c00203{word-spacing:0.342320pt;}
.ws1_c00203{word-spacing:1.593344pt;}
.ws1a_c00203{word-spacing:2.887936pt;}
.wse_c00203{word-spacing:3.815312pt;}
.wsf_c00203{word-spacing:3.852656pt;}
.ws1e_c00203{word-spacing:5.439776pt;}
.ws16_c00203{word-spacing:5.446000pt;}
.ws1d_c00203{word-spacing:5.452224pt;}
.ws12_c00203{word-spacing:6.709472pt;}
.ws1c_c00203{word-spacing:11.477056pt;}
.ws19_c00203{word-spacing:11.533072pt;}
.ws1b_c00203{word-spacing:11.813152pt;}
.wsa_c00203{word-spacing:11.825600pt;}
.ws8_c00203{word-spacing:12.790320pt;}
.ws14_c00203{word-spacing:13.437616pt;}
.ws13_c00203{word-spacing:13.450064pt;}
.ws1f_c00203{word-spacing:16.960400pt;}
.ws6_c00203{word-spacing:17.881552pt;}
.ws5_c00203{word-spacing:17.918896pt;}
.ws7_c00203{word-spacing:17.937568pt;}
.ws18_c00203{word-spacing:19.188592pt;}
.ws17_c00203{word-spacing:19.213488pt;}
.ws4_c00203{word-spacing:20.813056pt;}
.ws11_c00203{word-spacing:23.016352pt;}
.ws10_c00203{word-spacing:23.321328pt;}
.ws15_c00203{word-spacing:29.109648pt;}
._2_c00203{margin-left:-20.800608pt;}
._0_c00203{margin-left:-1.182560pt;}
._1_c00203{width:0.914928pt;}
.fs0_c00203{font-size:62.240000pt;}
.y0_c00203{bottom:0.000000pt;}
.y2_c00203{bottom:97.547527pt;}
.y1_c00203{bottom:115.387067pt;}
.y22_c00203{bottom:155.061955pt;}
.y21_c00203{bottom:181.941855pt;}
.y20_c00203{bottom:208.742399pt;}
.y1f_c00203{bottom:235.622299pt;}
.y1e_c00203{bottom:262.422843pt;}
.y1d_c00203{bottom:289.302743pt;}
.y1c_c00203{bottom:316.103287pt;}
.y1b_c00203{bottom:342.983187pt;}
.y1a_c00203{bottom:369.783731pt;}
.y19_c00203{bottom:396.663631pt;}
.y18_c00203{bottom:423.464175pt;}
.y17_c00203{bottom:450.344075pt;}
.y16_c00203{bottom:477.144619pt;}
.y15_c00203{bottom:504.024519pt;}
.y14_c00203{bottom:530.744151pt;}
.y13_c00203{bottom:557.624051pt;}
.y12_c00203{bottom:584.424595pt;}
.y11_c00203{bottom:611.304495pt;}
.y10_c00203{bottom:638.105039pt;}
.yf_c00203{bottom:664.984939pt;}
.ye_c00203{bottom:691.785483pt;}
.yd_c00203{bottom:718.665383pt;}
.yc_c00203{bottom:745.465927pt;}
.yb_c00203{bottom:772.345827pt;}
.ya_c00203{bottom:799.146371pt;}
.y9_c00203{bottom:826.026271pt;}
.y8_c00203{bottom:852.906171pt;}
.y7_c00203{bottom:879.706715pt;}
.y6_c00203{bottom:906.586615pt;}
.y5_c00203{bottom:933.387159pt;}
.y4_c00203{bottom:960.267059pt;}
.y3_c00203{bottom:987.067603pt;}
.h1_c00203{height:55.797187pt;}
.h0_c00203{height:1122.666667pt;}
.w0_c00203{width:793.333333pt;}
.x0_c00203{left:0.000000pt;}
.x2_c00203{left:73.520052pt;}
.x1_c00203{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_34b8cfc49811213538af250e.woff2')format("woff");}.ff1_c00204{font-family:ff1_c00204;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00204{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00204{vertical-align:0.000000px;}
.ls4_c00204{letter-spacing:-0.063018px;}
.lsb_c00204{letter-spacing:-0.049014px;}
.lsa_c00204{letter-spacing:-0.042012px;}
.ls7_c00204{letter-spacing:-0.035010px;}
.ls6_c00204{letter-spacing:-0.028008px;}
.ls8_c00204{letter-spacing:-0.021006px;}
.ls9_c00204{letter-spacing:-0.014004px;}
.lsc_c00204{letter-spacing:-0.007002px;}
.ls5_c00204{letter-spacing:0.000000px;}
.ls1_c00204{letter-spacing:0.007002px;}
.ls0_c00204{letter-spacing:0.014004px;}
.ls2_c00204{letter-spacing:0.042012px;}
.ls3_c00204{letter-spacing:0.049014px;}
.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;}
}
.wsd_c00204{word-spacing:-0.322092px;}
.ws0_c00204{word-spacing:0.000000px;}
.ws1e_c00204{word-spacing:0.007002px;}
.ws1f_c00204{word-spacing:0.014004px;}
.ws19_c00204{word-spacing:0.364104px;}
.ws3_c00204{word-spacing:0.378108px;}
.ws1d_c00204{word-spacing:0.392112px;}
.ws20_c00204{word-spacing:0.707202px;}
.wse_c00204{word-spacing:0.728208px;}
.ws16_c00204{word-spacing:1.414404px;}
.ws9_c00204{word-spacing:1.421406px;}
.wsf_c00204{word-spacing:1.428408px;}
.ws8_c00204{word-spacing:1.799514px;}
.ws7_c00204{word-spacing:1.806516px;}
.ws18_c00204{word-spacing:2.135610px;}
.ws5_c00204{word-spacing:3.613032px;}
.ws15_c00204{word-spacing:4.684338px;}
.ws14_c00204{word-spacing:4.978422px;}
.ws13_c00204{word-spacing:5.027436px;}
.wsb_c00204{word-spacing:6.091740px;}
.wsa_c00204{word-spacing:6.105744px;}
.ws1a_c00204{word-spacing:7.548156px;}
.ws4_c00204{word-spacing:8.290368px;}
.ws10_c00204{word-spacing:9.361674px;}
.ws2_c00204{word-spacing:9.690768px;}
.ws1_c00204{word-spacing:10.096884px;}
.ws17_c00204{word-spacing:12.932694px;}
.ws11_c00204{word-spacing:14.704200px;}
.ws6_c00204{word-spacing:14.739210px;}
.ws12_c00204{word-spacing:14.746212px;}
.wsc_c00204{word-spacing:14.788224px;}
.ws21_c00204{word-spacing:18.352242px;}
.ws22_c00204{word-spacing:18.394254px;}
.ws1b_c00204{word-spacing:22.700484px;}
.ws1c_c00204{word-spacing:23.043582px;}
._2_c00204{margin-left:-8.283366px;}
._1_c00204{margin-left:-1.092312px;}
._0_c00204{width:1.197342px;}
.fc0_c00204{color:rgb(0,0,0);}
.fs0_c00204{font-size:70.020000px;}
.y0_c00204{bottom:0.000000px;}
.y2_c00204{bottom:109.740968px;}
.y1_c00204{bottom:129.810450px;}
.y22_c00204{bottom:174.444699px;}
.y21_c00204{bottom:204.684587px;}
.y20_c00204{bottom:234.835199px;}
.y1f_c00204{bottom:265.075086px;}
.y1e_c00204{bottom:295.225698px;}
.y1d_c00204{bottom:325.465586px;}
.y1c_c00204{bottom:355.616198px;}
.y1b_c00204{bottom:385.856085px;}
.y1a_c00204{bottom:416.006697px;}
.y19_c00204{bottom:446.246585px;}
.y18_c00204{bottom:476.397197px;}
.y17_c00204{bottom:506.637084px;}
.y16_c00204{bottom:536.787696px;}
.y15_c00204{bottom:567.027584px;}
.y14_c00204{bottom:597.087170px;}
.y13_c00204{bottom:627.327057px;}
.y12_c00204{bottom:657.477669px;}
.y11_c00204{bottom:687.717557px;}
.y10_c00204{bottom:717.868169px;}
.yf_c00204{bottom:748.108056px;}
.ye_c00204{bottom:778.258668px;}
.yd_c00204{bottom:808.498556px;}
.yc_c00204{bottom:838.649168px;}
.yb_c00204{bottom:868.889055px;}
.ya_c00204{bottom:899.039667px;}
.y9_c00204{bottom:929.279555px;}
.y8_c00204{bottom:959.519442px;}
.y7_c00204{bottom:989.670054px;}
.y6_c00204{bottom:1019.909942px;}
.y5_c00204{bottom:1050.060553px;}
.y4_c00204{bottom:1080.300441px;}
.y3_c00204{bottom:1110.451053px;}
.h1_c00204{height:62.771836px;}
.h0_c00204{height:1263.000000px;}
.w0_c00204{width:892.500000px;}
.x0_c00204{left:0.000000px;}
.x2_c00204{left:82.710059px;}
.x1_c00204{left:431.730000px;}
@media print{
.v0_c00204{vertical-align:0.000000pt;}
.ls4_c00204{letter-spacing:-0.056016pt;}
.lsb_c00204{letter-spacing:-0.043568pt;}
.lsa_c00204{letter-spacing:-0.037344pt;}
.ls7_c00204{letter-spacing:-0.031120pt;}
.ls6_c00204{letter-spacing:-0.024896pt;}
.ls8_c00204{letter-spacing:-0.018672pt;}
.ls9_c00204{letter-spacing:-0.012448pt;}
.lsc_c00204{letter-spacing:-0.006224pt;}
.ls5_c00204{letter-spacing:0.000000pt;}
.ls1_c00204{letter-spacing:0.006224pt;}
.ls0_c00204{letter-spacing:0.012448pt;}
.ls2_c00204{letter-spacing:0.037344pt;}
.ls3_c00204{letter-spacing:0.043568pt;}
.wsd_c00204{word-spacing:-0.286304pt;}
.ws0_c00204{word-spacing:0.000000pt;}
.ws1e_c00204{word-spacing:0.006224pt;}
.ws1f_c00204{word-spacing:0.012448pt;}
.ws19_c00204{word-spacing:0.323648pt;}
.ws3_c00204{word-spacing:0.336096pt;}
.ws1d_c00204{word-spacing:0.348544pt;}
.ws20_c00204{word-spacing:0.628624pt;}
.wse_c00204{word-spacing:0.647296pt;}
.ws16_c00204{word-spacing:1.257248pt;}
.ws9_c00204{word-spacing:1.263472pt;}
.wsf_c00204{word-spacing:1.269696pt;}
.ws8_c00204{word-spacing:1.599568pt;}
.ws7_c00204{word-spacing:1.605792pt;}
.ws18_c00204{word-spacing:1.898320pt;}
.ws5_c00204{word-spacing:3.211584pt;}
.ws15_c00204{word-spacing:4.163856pt;}
.ws14_c00204{word-spacing:4.425264pt;}
.ws13_c00204{word-spacing:4.468832pt;}
.wsb_c00204{word-spacing:5.414880pt;}
.wsa_c00204{word-spacing:5.427328pt;}
.ws1a_c00204{word-spacing:6.709472pt;}
.ws4_c00204{word-spacing:7.369216pt;}
.ws10_c00204{word-spacing:8.321488pt;}
.ws2_c00204{word-spacing:8.614016pt;}
.ws1_c00204{word-spacing:8.975008pt;}
.ws17_c00204{word-spacing:11.495728pt;}
.ws11_c00204{word-spacing:13.070400pt;}
.ws6_c00204{word-spacing:13.101520pt;}
.ws12_c00204{word-spacing:13.107744pt;}
.wsc_c00204{word-spacing:13.145088pt;}
.ws21_c00204{word-spacing:16.313104pt;}
.ws22_c00204{word-spacing:16.350448pt;}
.ws1b_c00204{word-spacing:20.178208pt;}
.ws1c_c00204{word-spacing:20.483184pt;}
._2_c00204{margin-left:-7.362992pt;}
._1_c00204{margin-left:-0.970944pt;}
._0_c00204{width:1.064304pt;}
.fs0_c00204{font-size:62.240000pt;}
.y0_c00204{bottom:0.000000pt;}
.y2_c00204{bottom:97.547527pt;}
.y1_c00204{bottom:115.387067pt;}
.y22_c00204{bottom:155.061955pt;}
.y21_c00204{bottom:181.941855pt;}
.y20_c00204{bottom:208.742399pt;}
.y1f_c00204{bottom:235.622299pt;}
.y1e_c00204{bottom:262.422843pt;}
.y1d_c00204{bottom:289.302743pt;}
.y1c_c00204{bottom:316.103287pt;}
.y1b_c00204{bottom:342.983187pt;}
.y1a_c00204{bottom:369.783731pt;}
.y19_c00204{bottom:396.663631pt;}
.y18_c00204{bottom:423.464175pt;}
.y17_c00204{bottom:450.344075pt;}
.y16_c00204{bottom:477.144619pt;}
.y15_c00204{bottom:504.024519pt;}
.y14_c00204{bottom:530.744151pt;}
.y13_c00204{bottom:557.624051pt;}
.y12_c00204{bottom:584.424595pt;}
.y11_c00204{bottom:611.304495pt;}
.y10_c00204{bottom:638.105039pt;}
.yf_c00204{bottom:664.984939pt;}
.ye_c00204{bottom:691.785483pt;}
.yd_c00204{bottom:718.665383pt;}
.yc_c00204{bottom:745.465927pt;}
.yb_c00204{bottom:772.345827pt;}
.ya_c00204{bottom:799.146371pt;}
.y9_c00204{bottom:826.026271pt;}
.y8_c00204{bottom:852.906171pt;}
.y7_c00204{bottom:879.706715pt;}
.y6_c00204{bottom:906.586615pt;}
.y5_c00204{bottom:933.387159pt;}
.y4_c00204{bottom:960.267059pt;}
.y3_c00204{bottom:987.067603pt;}
.h1_c00204{height:55.797187pt;}
.h0_c00204{height:1122.666667pt;}
.w0_c00204{width:793.333333pt;}
.x0_c00204{left:0.000000pt;}
.x2_c00204{left:73.520052pt;}
.x1_c00204{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c4123cbb64682be5613477e0.woff2')format("woff");}.ff1_c00205{font-family:ff1_c00205;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00205{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00205{vertical-align:0.000000px;}
.ls3_c00205{letter-spacing:-0.063018px;}
.lsb_c00205{letter-spacing:-0.049014px;}
.lsa_c00205{letter-spacing:-0.042012px;}
.ls6_c00205{letter-spacing:-0.035010px;}
.ls7_c00205{letter-spacing:-0.028008px;}
.ls5_c00205{letter-spacing:-0.021006px;}
.ls8_c00205{letter-spacing:-0.014004px;}
.ls9_c00205{letter-spacing:-0.007002px;}
.ls4_c00205{letter-spacing:0.000000px;}
.ls0_c00205{letter-spacing:0.007002px;}
.ls1_c00205{letter-spacing:0.056016px;}
.ls2_c00205{letter-spacing:0.063018px;}
.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;}
}
.wsf_c00205{word-spacing:-0.070020px;}
.ws0_c00205{word-spacing:0.000000px;}
.wsa_c00205{word-spacing:0.028008px;}
.ws18_c00205{word-spacing:0.350100px;}
.ws3_c00205{word-spacing:0.378108px;}
.ws17_c00205{word-spacing:0.385110px;}
.ws4_c00205{word-spacing:1.463418px;}
.wsb_c00205{word-spacing:3.599028px;}
.wsc_c00205{word-spacing:3.606030px;}
.ws10_c00205{word-spacing:3.963132px;}
.wse_c00205{word-spacing:5.377536px;}
.wsd_c00205{word-spacing:5.412546px;}
.ws5_c00205{word-spacing:7.576164px;}
.ws12_c00205{word-spacing:8.668476px;}
.ws8_c00205{word-spacing:9.354672px;}
.ws7_c00205{word-spacing:9.718776px;}
.ws19_c00205{word-spacing:10.075878px;}
.ws6_c00205{word-spacing:10.089882px;}
.ws11_c00205{word-spacing:13.310802px;}
.ws15_c00205{word-spacing:13.961988px;}
.ws16_c00205{word-spacing:14.025006px;}
.ws14_c00205{word-spacing:16.909830px;}
.ws2_c00205{word-spacing:20.137752px;}
.ws13_c00205{word-spacing:21.979278px;}
.ws1_c00205{word-spacing:22.686480px;}
.ws9_c00205{word-spacing:23.022576px;}
.ws1a_c00205{word-spacing:28.477134px;}
._1_c00205{margin-left:-1.435410px;}
._0_c00205{width:1.008288px;}
.fc0_c00205{color:rgb(0,0,0);}
.fs0_c00205{font-size:70.020000px;}
.y0_c00205{bottom:0.000000px;}
.y2_c00205{bottom:109.740968px;}
.y1_c00205{bottom:129.810450px;}
.y22_c00205{bottom:174.444699px;}
.y21_c00205{bottom:204.684587px;}
.y20_c00205{bottom:234.835199px;}
.y1f_c00205{bottom:265.075086px;}
.y1e_c00205{bottom:295.225698px;}
.y1d_c00205{bottom:325.465586px;}
.y1c_c00205{bottom:355.616198px;}
.y1b_c00205{bottom:385.856085px;}
.y1a_c00205{bottom:416.006697px;}
.y19_c00205{bottom:446.246585px;}
.y18_c00205{bottom:476.397197px;}
.y17_c00205{bottom:506.637084px;}
.y16_c00205{bottom:536.787696px;}
.y15_c00205{bottom:567.027584px;}
.y14_c00205{bottom:597.087170px;}
.y13_c00205{bottom:627.327057px;}
.y12_c00205{bottom:657.477669px;}
.y11_c00205{bottom:687.717557px;}
.y10_c00205{bottom:717.868169px;}
.yf_c00205{bottom:748.108056px;}
.ye_c00205{bottom:778.258668px;}
.yd_c00205{bottom:808.498556px;}
.yc_c00205{bottom:838.649168px;}
.yb_c00205{bottom:868.889055px;}
.ya_c00205{bottom:899.039667px;}
.y9_c00205{bottom:929.279555px;}
.y8_c00205{bottom:959.519442px;}
.y7_c00205{bottom:989.670054px;}
.y6_c00205{bottom:1019.909942px;}
.y5_c00205{bottom:1050.060553px;}
.y4_c00205{bottom:1080.300441px;}
.y3_c00205{bottom:1110.451053px;}
.h1_c00205{height:62.771836px;}
.h0_c00205{height:1263.000000px;}
.w0_c00205{width:892.500000px;}
.x0_c00205{left:0.000000px;}
.x2_c00205{left:82.710059px;}
.x1_c00205{left:431.730000px;}
@media print{
.v0_c00205{vertical-align:0.000000pt;}
.ls3_c00205{letter-spacing:-0.056016pt;}
.lsb_c00205{letter-spacing:-0.043568pt;}
.lsa_c00205{letter-spacing:-0.037344pt;}
.ls6_c00205{letter-spacing:-0.031120pt;}
.ls7_c00205{letter-spacing:-0.024896pt;}
.ls5_c00205{letter-spacing:-0.018672pt;}
.ls8_c00205{letter-spacing:-0.012448pt;}
.ls9_c00205{letter-spacing:-0.006224pt;}
.ls4_c00205{letter-spacing:0.000000pt;}
.ls0_c00205{letter-spacing:0.006224pt;}
.ls1_c00205{letter-spacing:0.049792pt;}
.ls2_c00205{letter-spacing:0.056016pt;}
.wsf_c00205{word-spacing:-0.062240pt;}
.ws0_c00205{word-spacing:0.000000pt;}
.wsa_c00205{word-spacing:0.024896pt;}
.ws18_c00205{word-spacing:0.311200pt;}
.ws3_c00205{word-spacing:0.336096pt;}
.ws17_c00205{word-spacing:0.342320pt;}
.ws4_c00205{word-spacing:1.300816pt;}
.wsb_c00205{word-spacing:3.199136pt;}
.wsc_c00205{word-spacing:3.205360pt;}
.ws10_c00205{word-spacing:3.522784pt;}
.wse_c00205{word-spacing:4.780032pt;}
.wsd_c00205{word-spacing:4.811152pt;}
.ws5_c00205{word-spacing:6.734368pt;}
.ws12_c00205{word-spacing:7.705312pt;}
.ws8_c00205{word-spacing:8.315264pt;}
.ws7_c00205{word-spacing:8.638912pt;}
.ws19_c00205{word-spacing:8.956336pt;}
.ws6_c00205{word-spacing:8.968784pt;}
.ws11_c00205{word-spacing:11.831824pt;}
.ws15_c00205{word-spacing:12.410656pt;}
.ws16_c00205{word-spacing:12.466672pt;}
.ws14_c00205{word-spacing:15.030960pt;}
.ws2_c00205{word-spacing:17.900224pt;}
.ws13_c00205{word-spacing:19.537136pt;}
.ws1_c00205{word-spacing:20.165760pt;}
.ws9_c00205{word-spacing:20.464512pt;}
.ws1a_c00205{word-spacing:25.313008pt;}
._1_c00205{margin-left:-1.275920pt;}
._0_c00205{width:0.896256pt;}
.fs0_c00205{font-size:62.240000pt;}
.y0_c00205{bottom:0.000000pt;}
.y2_c00205{bottom:97.547527pt;}
.y1_c00205{bottom:115.387067pt;}
.y22_c00205{bottom:155.061955pt;}
.y21_c00205{bottom:181.941855pt;}
.y20_c00205{bottom:208.742399pt;}
.y1f_c00205{bottom:235.622299pt;}
.y1e_c00205{bottom:262.422843pt;}
.y1d_c00205{bottom:289.302743pt;}
.y1c_c00205{bottom:316.103287pt;}
.y1b_c00205{bottom:342.983187pt;}
.y1a_c00205{bottom:369.783731pt;}
.y19_c00205{bottom:396.663631pt;}
.y18_c00205{bottom:423.464175pt;}
.y17_c00205{bottom:450.344075pt;}
.y16_c00205{bottom:477.144619pt;}
.y15_c00205{bottom:504.024519pt;}
.y14_c00205{bottom:530.744151pt;}
.y13_c00205{bottom:557.624051pt;}
.y12_c00205{bottom:584.424595pt;}
.y11_c00205{bottom:611.304495pt;}
.y10_c00205{bottom:638.105039pt;}
.yf_c00205{bottom:664.984939pt;}
.ye_c00205{bottom:691.785483pt;}
.yd_c00205{bottom:718.665383pt;}
.yc_c00205{bottom:745.465927pt;}
.yb_c00205{bottom:772.345827pt;}
.ya_c00205{bottom:799.146371pt;}
.y9_c00205{bottom:826.026271pt;}
.y8_c00205{bottom:852.906171pt;}
.y7_c00205{bottom:879.706715pt;}
.y6_c00205{bottom:906.586615pt;}
.y5_c00205{bottom:933.387159pt;}
.y4_c00205{bottom:960.267059pt;}
.y3_c00205{bottom:987.067603pt;}
.h1_c00205{height:55.797187pt;}
.h0_c00205{height:1122.666667pt;}
.w0_c00205{width:793.333333pt;}
.x0_c00205{left:0.000000pt;}
.x2_c00205{left:73.520052pt;}
.x1_c00205{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e02e057050f4ca6d047dec6b.woff2')format("woff");}.ff1_c00206{font-family:ff1_c00206;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00206{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00206{vertical-align:0.000000px;}
.ls5_c00206{letter-spacing:-0.063018px;}
.lsc_c00206{letter-spacing:-0.042012px;}
.ls8_c00206{letter-spacing:-0.035010px;}
.ls9_c00206{letter-spacing:-0.028008px;}
.lsb_c00206{letter-spacing:-0.021006px;}
.ls7_c00206{letter-spacing:-0.014004px;}
.lsa_c00206{letter-spacing:-0.007002px;}
.ls6_c00206{letter-spacing:0.000000px;}
.ls0_c00206{letter-spacing:0.007002px;}
.ls2_c00206{letter-spacing:0.014004px;}
.ls1_c00206{letter-spacing:0.021006px;}
.ls3_c00206{letter-spacing:0.035010px;}
.ls4_c00206{letter-spacing:0.063018px;}
.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;}
}
.ws7_c00206{word-spacing:-0.021006px;}
.ws0_c00206{word-spacing:0.000000px;}
.ws2_c00206{word-spacing:0.021006px;}
.wsa_c00206{word-spacing:0.364104px;}
.ws9_c00206{word-spacing:0.721206px;}
.ws5_c00206{word-spacing:1.785510px;}
.ws18_c00206{word-spacing:1.806516px;}
.ws6_c00206{word-spacing:1.813518px;}
.wsc_c00206{word-spacing:2.520720px;}
.wsb_c00206{word-spacing:2.541726px;}
.wsd_c00206{word-spacing:3.241926px;}
.wse_c00206{word-spacing:3.564018px;}
.ws1_c00206{word-spacing:4.320234px;}
.ws11_c00206{word-spacing:5.755644px;}
.ws10_c00206{word-spacing:5.769648px;}
.ws14_c00206{word-spacing:6.140754px;}
.ws1d_c00206{word-spacing:8.591454px;}
.ws15_c00206{word-spacing:8.612460px;}
.ws1c_c00206{word-spacing:8.654472px;}
.ws16_c00206{word-spacing:8.962560px;}
.wsf_c00206{word-spacing:9.368676px;}
.ws12_c00206{word-spacing:9.711774px;}
.ws22_c00206{word-spacing:9.746784px;}
.ws1b_c00206{word-spacing:10.432980px;}
.ws19_c00206{word-spacing:10.460988px;}
.ws21_c00206{word-spacing:10.720062px;}
.ws1a_c00206{word-spacing:10.790082px;}
.ws20_c00206{word-spacing:10.811088px;}
.ws8_c00206{word-spacing:11.511288px;}
.ws13_c00206{word-spacing:13.681908px;}
.ws3_c00206{word-spacing:16.188624px;}
.ws4_c00206{word-spacing:16.202628px;}
.ws17_c00206{word-spacing:19.451556px;}
.ws1f_c00206{word-spacing:29.149326px;}
.ws1e_c00206{word-spacing:29.177334px;}
._1_c00206{margin-left:-1.078308px;}
._0_c00206{width:1.029294px;}
.fc0_c00206{color:rgb(0,0,0);}
.fs0_c00206{font-size:70.020000px;}
.y0_c00206{bottom:0.000000px;}
.y2_c00206{bottom:109.740968px;}
.y1_c00206{bottom:129.810450px;}
.y22_c00206{bottom:174.444699px;}
.y21_c00206{bottom:204.684587px;}
.y20_c00206{bottom:234.835199px;}
.y1f_c00206{bottom:265.075086px;}
.y1e_c00206{bottom:295.225698px;}
.y1d_c00206{bottom:325.465586px;}
.y1c_c00206{bottom:355.616198px;}
.y1b_c00206{bottom:385.856085px;}
.y1a_c00206{bottom:416.006697px;}
.y19_c00206{bottom:446.246585px;}
.y18_c00206{bottom:476.397197px;}
.y17_c00206{bottom:506.637084px;}
.y16_c00206{bottom:536.787696px;}
.y15_c00206{bottom:567.027584px;}
.y14_c00206{bottom:597.087170px;}
.y13_c00206{bottom:627.327057px;}
.y12_c00206{bottom:657.477669px;}
.y11_c00206{bottom:687.717557px;}
.y10_c00206{bottom:717.868169px;}
.yf_c00206{bottom:748.108056px;}
.ye_c00206{bottom:778.258668px;}
.yd_c00206{bottom:808.498556px;}
.yc_c00206{bottom:838.649168px;}
.yb_c00206{bottom:868.889055px;}
.ya_c00206{bottom:899.039667px;}
.y9_c00206{bottom:929.279555px;}
.y8_c00206{bottom:959.519442px;}
.y7_c00206{bottom:989.670054px;}
.y6_c00206{bottom:1019.909942px;}
.y5_c00206{bottom:1050.060553px;}
.y4_c00206{bottom:1080.300441px;}
.y3_c00206{bottom:1110.451053px;}
.h1_c00206{height:62.771836px;}
.h0_c00206{height:1263.000000px;}
.w0_c00206{width:892.500000px;}
.x0_c00206{left:0.000000px;}
.x2_c00206{left:82.710059px;}
.x1_c00206{left:431.730000px;}
@media print{
.v0_c00206{vertical-align:0.000000pt;}
.ls5_c00206{letter-spacing:-0.056016pt;}
.lsc_c00206{letter-spacing:-0.037344pt;}
.ls8_c00206{letter-spacing:-0.031120pt;}
.ls9_c00206{letter-spacing:-0.024896pt;}
.lsb_c00206{letter-spacing:-0.018672pt;}
.ls7_c00206{letter-spacing:-0.012448pt;}
.lsa_c00206{letter-spacing:-0.006224pt;}
.ls6_c00206{letter-spacing:0.000000pt;}
.ls0_c00206{letter-spacing:0.006224pt;}
.ls2_c00206{letter-spacing:0.012448pt;}
.ls1_c00206{letter-spacing:0.018672pt;}
.ls3_c00206{letter-spacing:0.031120pt;}
.ls4_c00206{letter-spacing:0.056016pt;}
.ws7_c00206{word-spacing:-0.018672pt;}
.ws0_c00206{word-spacing:0.000000pt;}
.ws2_c00206{word-spacing:0.018672pt;}
.wsa_c00206{word-spacing:0.323648pt;}
.ws9_c00206{word-spacing:0.641072pt;}
.ws5_c00206{word-spacing:1.587120pt;}
.ws18_c00206{word-spacing:1.605792pt;}
.ws6_c00206{word-spacing:1.612016pt;}
.wsc_c00206{word-spacing:2.240640pt;}
.wsb_c00206{word-spacing:2.259312pt;}
.wsd_c00206{word-spacing:2.881712pt;}
.wse_c00206{word-spacing:3.168016pt;}
.ws1_c00206{word-spacing:3.840208pt;}
.ws11_c00206{word-spacing:5.116128pt;}
.ws10_c00206{word-spacing:5.128576pt;}
.ws14_c00206{word-spacing:5.458448pt;}
.ws1d_c00206{word-spacing:7.636848pt;}
.ws15_c00206{word-spacing:7.655520pt;}
.ws1c_c00206{word-spacing:7.692864pt;}
.ws16_c00206{word-spacing:7.966720pt;}
.wsf_c00206{word-spacing:8.327712pt;}
.ws12_c00206{word-spacing:8.632688pt;}
.ws22_c00206{word-spacing:8.663808pt;}
.ws1b_c00206{word-spacing:9.273760pt;}
.ws19_c00206{word-spacing:9.298656pt;}
.ws21_c00206{word-spacing:9.528944pt;}
.ws1a_c00206{word-spacing:9.591184pt;}
.ws20_c00206{word-spacing:9.609856pt;}
.ws8_c00206{word-spacing:10.232256pt;}
.ws13_c00206{word-spacing:12.161696pt;}
.ws3_c00206{word-spacing:14.389888pt;}
.ws4_c00206{word-spacing:14.402336pt;}
.ws17_c00206{word-spacing:17.290272pt;}
.ws1f_c00206{word-spacing:25.910512pt;}
.ws1e_c00206{word-spacing:25.935408pt;}
._1_c00206{margin-left:-0.958496pt;}
._0_c00206{width:0.914928pt;}
.fs0_c00206{font-size:62.240000pt;}
.y0_c00206{bottom:0.000000pt;}
.y2_c00206{bottom:97.547527pt;}
.y1_c00206{bottom:115.387067pt;}
.y22_c00206{bottom:155.061955pt;}
.y21_c00206{bottom:181.941855pt;}
.y20_c00206{bottom:208.742399pt;}
.y1f_c00206{bottom:235.622299pt;}
.y1e_c00206{bottom:262.422843pt;}
.y1d_c00206{bottom:289.302743pt;}
.y1c_c00206{bottom:316.103287pt;}
.y1b_c00206{bottom:342.983187pt;}
.y1a_c00206{bottom:369.783731pt;}
.y19_c00206{bottom:396.663631pt;}
.y18_c00206{bottom:423.464175pt;}
.y17_c00206{bottom:450.344075pt;}
.y16_c00206{bottom:477.144619pt;}
.y15_c00206{bottom:504.024519pt;}
.y14_c00206{bottom:530.744151pt;}
.y13_c00206{bottom:557.624051pt;}
.y12_c00206{bottom:584.424595pt;}
.y11_c00206{bottom:611.304495pt;}
.y10_c00206{bottom:638.105039pt;}
.yf_c00206{bottom:664.984939pt;}
.ye_c00206{bottom:691.785483pt;}
.yd_c00206{bottom:718.665383pt;}
.yc_c00206{bottom:745.465927pt;}
.yb_c00206{bottom:772.345827pt;}
.ya_c00206{bottom:799.146371pt;}
.y9_c00206{bottom:826.026271pt;}
.y8_c00206{bottom:852.906171pt;}
.y7_c00206{bottom:879.706715pt;}
.y6_c00206{bottom:906.586615pt;}
.y5_c00206{bottom:933.387159pt;}
.y4_c00206{bottom:960.267059pt;}
.y3_c00206{bottom:987.067603pt;}
.h1_c00206{height:55.797187pt;}
.h0_c00206{height:1122.666667pt;}
.w0_c00206{width:793.333333pt;}
.x0_c00206{left:0.000000pt;}
.x2_c00206{left:73.520052pt;}
.x1_c00206{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_59eff3b80899d22ae0f6b063.woff2')format("woff");}.ff1_c00207{font-family:ff1_c00207;line-height:1.106934;font-style:normal;font-weight:normal;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_34c1ed0097923fb1ebfa6cb7.woff2')format("woff");}.ff2_c00207{font-family:ff2_c00207;line-height:1.104492;font-style:normal;font-weight:normal;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_86c454ff5490852fcd3558da.woff2')format("woff");}.ff3_c00207{font-family:ff3_c00207;line-height:1.133301;font-style:normal;font-weight:normal;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_8e2f16809c52cb09d782dd85.woff2')format("woff");}.ff4_c00207{font-family:ff4_c00207;line-height:1.133301;font-style:normal;font-weight:normal;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_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff5_c00207{font-family:ff5_c00207;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00207;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff6_c00207{font-family:ff6_c00207;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00207{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00207{vertical-align:-14.760000px;}
.v0_c00207{vertical-align:0.000000px;}
.v1_c00207{vertical-align:32.053464px;}
.lsc_c00207{letter-spacing:-0.335249px;}
.lsf_c00207{letter-spacing:-0.268945px;}
.lsd_c00207{letter-spacing:-0.075619px;}
.ls4_c00207{letter-spacing:-0.063018px;}
.lsb_c00207{letter-spacing:-0.042012px;}
.ls9_c00207{letter-spacing:-0.035010px;}
.ls6_c00207{letter-spacing:-0.028008px;}
.ls7_c00207{letter-spacing:-0.021006px;}
.ls8_c00207{letter-spacing:-0.014004px;}
.lse_c00207{letter-spacing:-0.011693px;}
.lsa_c00207{letter-spacing:-0.007002px;}
.ls5_c00207{letter-spacing:0.000000px;}
.ls1_c00207{letter-spacing:0.007002px;}
.ls0_c00207{letter-spacing:0.021006px;}
.ls3_c00207{letter-spacing:0.023387px;}
.ls10_c00207{letter-spacing:0.169553px;}
.ls2_c00207{letter-spacing:0.362492px;}
.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;}
}
.ws3_c00207{word-spacing:-58.466400px;}
.ws0_c00207{word-spacing:-19.423548px;}
.ws1_c00207{word-spacing:-12.609098px;}
.ws2_c00207{word-spacing:-10.397640px;}
.ws1d_c00207{word-spacing:-0.011693px;}
.ws17_c00207{word-spacing:-0.007002px;}
.ws4_c00207{word-spacing:0.000000px;}
.ws1e_c00207{word-spacing:0.023387px;}
.ws18_c00207{word-spacing:0.336096px;}
.ws12_c00207{word-spacing:0.742212px;}
.wsf_c00207{word-spacing:1.778508px;}
.ws10_c00207{word-spacing:2.142612px;}
.ws15_c00207{word-spacing:2.177622px;}
.wsa_c00207{word-spacing:3.241926px;}
.ws11_c00207{word-spacing:5.748642px;}
.ws19_c00207{word-spacing:6.112746px;}
.ws16_c00207{word-spacing:6.469848px;}
.wsb_c00207{word-spacing:8.283366px;}
.ws8_c00207{word-spacing:8.997570px;}
.ws7_c00207{word-spacing:9.004572px;}
.ws1c_c00207{word-spacing:10.284240px;}
.ws9_c00207{word-spacing:10.460988px;}
.ws1a_c00207{word-spacing:10.465486px;}
.ws1b_c00207{word-spacing:10.722738px;}
.wsd_c00207{word-spacing:12.575592px;}
.wsc_c00207{word-spacing:12.603600px;}
.wse_c00207{word-spacing:17.652042px;}
.ws6_c00207{word-spacing:20.844954px;}
.ws5_c00207{word-spacing:20.893968px;}
.ws13_c00207{word-spacing:26.635608px;}
.ws14_c00207{word-spacing:26.663616px;}
._3_c00207{margin-left:-2.710116px;}
._1_c00207{margin-left:-1.197342px;}
._0_c00207{width:1.456416px;}
._2_c00207{width:5.930694px;}
.fc0_c00207{color:rgb(0,0,0);}
.fs2_c00207{font-size:37.809600px;}
.fs1_c00207{font-size:46.562400px;}
.fs3_c00207{font-size:58.466400px;}
.fs0_c00207{font-size:70.020000px;}
.y0_c00207{bottom:0.000000px;}
.y2_c00207{bottom:109.740968px;}
.y1_c00207{bottom:129.810450px;}
.y23_c00207{bottom:149.429891px;}
.y22_c00207{bottom:170.940450px;}
.y21_c00207{bottom:185.698528px;}
.y20_c00207{bottom:234.838564px;}
.y1f_c00207{bottom:265.078452px;}
.y1e_c00207{bottom:295.229064px;}
.y1d_c00207{bottom:325.468951px;}
.y1c_c00207{bottom:355.619563px;}
.y1b_c00207{bottom:385.859451px;}
.y1a_c00207{bottom:416.010063px;}
.y19_c00207{bottom:446.249950px;}
.y18_c00207{bottom:476.400562px;}
.y17_c00207{bottom:506.637084px;}
.y16_c00207{bottom:536.787696px;}
.y15_c00207{bottom:567.027584px;}
.y14_c00207{bottom:597.087170px;}
.y13_c00207{bottom:627.327057px;}
.y12_c00207{bottom:657.477669px;}
.y11_c00207{bottom:687.717557px;}
.y10_c00207{bottom:717.868169px;}
.yf_c00207{bottom:748.108056px;}
.ye_c00207{bottom:778.258668px;}
.yd_c00207{bottom:808.498556px;}
.yc_c00207{bottom:838.649168px;}
.yb_c00207{bottom:868.889055px;}
.ya_c00207{bottom:899.039667px;}
.y9_c00207{bottom:929.279555px;}
.y8_c00207{bottom:959.519442px;}
.y7_c00207{bottom:989.670054px;}
.y6_c00207{bottom:1019.909942px;}
.y5_c00207{bottom:1050.060553px;}
.y4_c00207{bottom:1080.300441px;}
.y3_c00207{bottom:1110.451053px;}
.h5_c00207{height:39.338549px;}
.h6_c00207{height:54.098549px;}
.h2_c00207{height:62.600889px;}
.h1_c00207{height:62.771836px;}
.h4_c00207{height:62.780122px;}
.h3_c00207{height:73.682250px;}
.h0_c00207{height:1263.000000px;}
.w0_c00207{width:892.500000px;}
.x0_c00207{left:0.000000px;}
.x2_c00207{left:82.710059px;}
.x1_c00207{left:431.730000px;}
@media print{
.v2_c00207{vertical-align:-13.120000pt;}
.v0_c00207{vertical-align:0.000000pt;}
.v1_c00207{vertical-align:28.491968pt;}
.lsc_c00207{letter-spacing:-0.297999pt;}
.lsf_c00207{letter-spacing:-0.239063pt;}
.lsd_c00207{letter-spacing:-0.067217pt;}
.ls4_c00207{letter-spacing:-0.056016pt;}
.lsb_c00207{letter-spacing:-0.037344pt;}
.ls9_c00207{letter-spacing:-0.031120pt;}
.ls6_c00207{letter-spacing:-0.024896pt;}
.ls7_c00207{letter-spacing:-0.018672pt;}
.ls8_c00207{letter-spacing:-0.012448pt;}
.lse_c00207{letter-spacing:-0.010394pt;}
.lsa_c00207{letter-spacing:-0.006224pt;}
.ls5_c00207{letter-spacing:0.000000pt;}
.ls1_c00207{letter-spacing:0.006224pt;}
.ls0_c00207{letter-spacing:0.018672pt;}
.ls3_c00207{letter-spacing:0.020788pt;}
.ls10_c00207{letter-spacing:0.150713pt;}
.ls2_c00207{letter-spacing:0.322215pt;}
.ws3_c00207{word-spacing:-51.970133pt;}
.ws0_c00207{word-spacing:-17.265376pt;}
.ws1_c00207{word-spacing:-11.208087pt;}
.ws2_c00207{word-spacing:-9.242347pt;}
.ws1d_c00207{word-spacing:-0.010394pt;}
.ws17_c00207{word-spacing:-0.006224pt;}
.ws4_c00207{word-spacing:0.000000pt;}
.ws1e_c00207{word-spacing:0.020788pt;}
.ws18_c00207{word-spacing:0.298752pt;}
.ws12_c00207{word-spacing:0.659744pt;}
.wsf_c00207{word-spacing:1.580896pt;}
.ws10_c00207{word-spacing:1.904544pt;}
.ws15_c00207{word-spacing:1.935664pt;}
.wsa_c00207{word-spacing:2.881712pt;}
.ws11_c00207{word-spacing:5.109904pt;}
.ws19_c00207{word-spacing:5.433552pt;}
.ws16_c00207{word-spacing:5.750976pt;}
.wsb_c00207{word-spacing:7.362992pt;}
.ws8_c00207{word-spacing:7.997840pt;}
.ws7_c00207{word-spacing:8.004064pt;}
.ws1c_c00207{word-spacing:9.141546pt;}
.ws9_c00207{word-spacing:9.298656pt;}
.ws1a_c00207{word-spacing:9.302654pt;}
.ws1b_c00207{word-spacing:9.531322pt;}
.wsd_c00207{word-spacing:11.178304pt;}
.wsc_c00207{word-spacing:11.203200pt;}
.wse_c00207{word-spacing:15.690704pt;}
.ws6_c00207{word-spacing:18.528848pt;}
.ws5_c00207{word-spacing:18.572416pt;}
.ws13_c00207{word-spacing:23.676096pt;}
.ws14_c00207{word-spacing:23.700992pt;}
._3_c00207{margin-left:-2.408992pt;}
._1_c00207{margin-left:-1.064304pt;}
._0_c00207{width:1.294592pt;}
._2_c00207{width:5.271728pt;}
.fs2_c00207{font-size:33.608533pt;}
.fs1_c00207{font-size:41.388800pt;}
.fs3_c00207{font-size:51.970133pt;}
.fs0_c00207{font-size:62.240000pt;}
.y0_c00207{bottom:0.000000pt;}
.y2_c00207{bottom:97.547527pt;}
.y1_c00207{bottom:115.387067pt;}
.y23_c00207{bottom:132.826570pt;}
.y22_c00207{bottom:151.947067pt;}
.y21_c00207{bottom:165.065359pt;}
.y20_c00207{bottom:208.745391pt;}
.y1f_c00207{bottom:235.625291pt;}
.y1e_c00207{bottom:262.425835pt;}
.y1d_c00207{bottom:289.305735pt;}
.y1c_c00207{bottom:316.106279pt;}
.y1b_c00207{bottom:342.986179pt;}
.y1a_c00207{bottom:369.786723pt;}
.y19_c00207{bottom:396.666623pt;}
.y18_c00207{bottom:423.467167pt;}
.y17_c00207{bottom:450.344075pt;}
.y16_c00207{bottom:477.144619pt;}
.y15_c00207{bottom:504.024519pt;}
.y14_c00207{bottom:530.744151pt;}
.y13_c00207{bottom:557.624051pt;}
.y12_c00207{bottom:584.424595pt;}
.y11_c00207{bottom:611.304495pt;}
.y10_c00207{bottom:638.105039pt;}
.yf_c00207{bottom:664.984939pt;}
.ye_c00207{bottom:691.785483pt;}
.yd_c00207{bottom:718.665383pt;}
.yc_c00207{bottom:745.465927pt;}
.yb_c00207{bottom:772.345827pt;}
.ya_c00207{bottom:799.146371pt;}
.y9_c00207{bottom:826.026271pt;}
.y8_c00207{bottom:852.906171pt;}
.y7_c00207{bottom:879.706715pt;}
.y6_c00207{bottom:906.586615pt;}
.y5_c00207{bottom:933.387159pt;}
.y4_c00207{bottom:960.267059pt;}
.y3_c00207{bottom:987.067603pt;}
.h5_c00207{height:34.967599pt;}
.h6_c00207{height:48.087599pt;}
.h2_c00207{height:55.645234pt;}
.h1_c00207{height:55.797187pt;}
.h4_c00207{height:55.804553pt;}
.h3_c00207{height:65.495334pt;}
.h0_c00207{height:1122.666667pt;}
.w0_c00207{width:793.333333pt;}
.x0_c00207{left:0.000000pt;}
.x2_c00207{left:73.520052pt;}
.x1_c00207{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e82d599889595428e6253c54.woff2')format("woff");}.ff1_c00208{font-family:ff1_c00208;line-height:1.106934;font-style:normal;font-weight:normal;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_d3ca85c449063f3479d3705f.woff2')format("woff");}.ff2_c00208{font-family:ff2_c00208;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00208;src:url('chunks/assets/font_a12926c207225281a226b5d2.woff2')format("woff");}.ff3_c00208{font-family:ff3_c00208;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00208;src:url('chunks/assets/font_7374a86086728c7c6e3f788d.woff2')format("woff");}.ff4_c00208{font-family:ff4_c00208;line-height:1.104492;font-style:normal;font-weight:normal;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_304487359086f9f86d4552c1.woff2')format("woff");}.ff5_c00208{font-family:ff5_c00208;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00208{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00208{vertical-align:0.000000px;}
.ls12_c00208{letter-spacing:-0.077022px;}
.ls8_c00208{letter-spacing:-0.063018px;}
.lsa_c00208{letter-spacing:-0.053180px;}
.lsd_c00208{letter-spacing:-0.042012px;}
.ls10_c00208{letter-spacing:-0.035010px;}
.lsc_c00208{letter-spacing:-0.028008px;}
.ls11_c00208{letter-spacing:-0.021006px;}
.lse_c00208{letter-spacing:-0.014004px;}
.lsf_c00208{letter-spacing:-0.007002px;}
.ls9_c00208{letter-spacing:0.000000px;}
.ls3_c00208{letter-spacing:0.007002px;}
.ls7_c00208{letter-spacing:0.014004px;}
.ls2_c00208{letter-spacing:0.021006px;}
.ls6_c00208{letter-spacing:0.028008px;}
.ls0_c00208{letter-spacing:0.030389px;}
.ls1_c00208{letter-spacing:0.035010px;}
.ls5_c00208{letter-spacing:0.161046px;}
.ls4_c00208{letter-spacing:53.257212px;}
.lsb_c00208{letter-spacing:1858.309794px;}
.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:-70.020000px;}
.wsa_c00208{word-spacing:-0.364104px;}
.ws1b_c00208{word-spacing:-0.343098px;}
.ws1c_c00208{word-spacing:-0.175050px;}
.ws1d_c00208{word-spacing:-0.042012px;}
.ws9_c00208{word-spacing:-0.007002px;}
.ws1_c00208{word-spacing:0.000000px;}
.ws2_c00208{word-spacing:0.098763px;}
.ws3_c00208{word-spacing:0.182331px;}
.ws17_c00208{word-spacing:0.364104px;}
.ws1a_c00208{word-spacing:0.420120px;}
.ws1e_c00208{word-spacing:2.149614px;}
.ws19_c00208{word-spacing:5.398542px;}
.ws18_c00208{word-spacing:5.405544px;}
.ws14_c00208{word-spacing:7.898256px;}
.ws13_c00208{word-spacing:7.933266px;}
.ws16_c00208{word-spacing:9.340668px;}
.ws15_c00208{word-spacing:9.382680px;}
.ws6_c00208{word-spacing:11.525292px;}
.ws7_c00208{word-spacing:11.546298px;}
.ws4_c00208{word-spacing:12.911688px;}
.ws5_c00208{word-spacing:12.974706px;}
.ws1f_c00208{word-spacing:13.289796px;}
.wsb_c00208{word-spacing:13.317804px;}
.wsc_c00208{word-spacing:13.338810px;}
.wsd_c00208{word-spacing:20.165760px;}
.wse_c00208{word-spacing:20.529864px;}
.ws8_c00208{word-spacing:21.958272px;}
.ws11_c00208{word-spacing:22.658472px;}
.ws10_c00208{word-spacing:23.008572px;}
.ws12_c00208{word-spacing:23.036580px;}
.wsf_c00208{word-spacing:36.347382px;}
._0_c00208{margin-left:-1.663774px;}
._1_c00208{width:1.218348px;}
.fc0_c00208{color:rgb(0,0,0);}
.fs0_c00208{font-size:70.020000px;}
.fs1_c00208{font-size:75.971400px;}
.y0_c00208{bottom:0.000000px;}
.y2_c00208{bottom:109.740968px;}
.y1_c00208{bottom:129.810450px;}
.y1c_c00208{bottom:180.749879px;}
.y1b_c00208{bottom:210.989766px;}
.y1a_c00208{bottom:261.570464px;}
.y19_c00208{bottom:292.890410px;}
.y18_c00208{bottom:344.640441px;}
.y17_c00208{bottom:395.310414px;}
.y16_c00208{bottom:425.550302px;}
.y15_c00208{bottom:476.039973px;}
.y14_c00208{bottom:506.369136px;}
.y13_c00208{bottom:536.519748px;}
.y12_c00208{bottom:566.759636px;}
.y11_c00208{bottom:596.910248px;}
.y10_c00208{bottom:647.490945px;}
.yf_c00208{bottom:677.730833px;}
.ye_c00208{bottom:707.970720px;}
.yd_c00208{bottom:758.460392px;}
.yc_c00208{bottom:788.700279px;}
.yb_c00208{bottom:818.940167px;}
.ya_c00208{bottom:849.090779px;}
.y9_c00208{bottom:899.580450px;}
.y8_c00208{bottom:940.530450px;}
.y7_c00208{bottom:989.670054px;}
.y6_c00208{bottom:1019.909942px;}
.y5_c00208{bottom:1050.060553px;}
.y4_c00208{bottom:1080.300441px;}
.y3_c00208{bottom:1110.451053px;}
.h4_c00208{height:62.600889px;}
.h1_c00208{height:62.771836px;}
.h2_c00208{height:68.589413px;}
.h3_c00208{height:73.028672px;}
.h0_c00208{height:1263.000000px;}
.w0_c00208{width:892.500000px;}
.x0_c00208{left:0.000000px;}
.x2_c00208{left:82.710059px;}
.x3_c00208{left:100.260513px;}
.x4_c00208{left:135.270513px;}
.x1_c00208{left:431.730000px;}
@media print{
.v0_c00208{vertical-align:0.000000pt;}
.ls12_c00208{letter-spacing:-0.068464pt;}
.ls8_c00208{letter-spacing:-0.056016pt;}
.lsa_c00208{letter-spacing:-0.047271pt;}
.lsd_c00208{letter-spacing:-0.037344pt;}
.ls10_c00208{letter-spacing:-0.031120pt;}
.lsc_c00208{letter-spacing:-0.024896pt;}
.ls11_c00208{letter-spacing:-0.018672pt;}
.lse_c00208{letter-spacing:-0.012448pt;}
.lsf_c00208{letter-spacing:-0.006224pt;}
.ls9_c00208{letter-spacing:0.000000pt;}
.ls3_c00208{letter-spacing:0.006224pt;}
.ls7_c00208{letter-spacing:0.012448pt;}
.ls2_c00208{letter-spacing:0.018672pt;}
.ls6_c00208{letter-spacing:0.024896pt;}
.ls0_c00208{letter-spacing:0.027012pt;}
.ls1_c00208{letter-spacing:0.031120pt;}
.ls5_c00208{letter-spacing:0.143152pt;}
.ls4_c00208{letter-spacing:47.339744pt;}
.lsb_c00208{letter-spacing:1651.830928pt;}
.ws0_c00208{word-spacing:-62.240000pt;}
.wsa_c00208{word-spacing:-0.323648pt;}
.ws1b_c00208{word-spacing:-0.304976pt;}
.ws1c_c00208{word-spacing:-0.155600pt;}
.ws1d_c00208{word-spacing:-0.037344pt;}
.ws9_c00208{word-spacing:-0.006224pt;}
.ws1_c00208{word-spacing:0.000000pt;}
.ws2_c00208{word-spacing:0.087789pt;}
.ws3_c00208{word-spacing:0.162072pt;}
.ws17_c00208{word-spacing:0.323648pt;}
.ws1a_c00208{word-spacing:0.373440pt;}
.ws1e_c00208{word-spacing:1.910768pt;}
.ws19_c00208{word-spacing:4.798704pt;}
.ws18_c00208{word-spacing:4.804928pt;}
.ws14_c00208{word-spacing:7.020672pt;}
.ws13_c00208{word-spacing:7.051792pt;}
.ws16_c00208{word-spacing:8.302816pt;}
.ws15_c00208{word-spacing:8.340160pt;}
.ws6_c00208{word-spacing:10.244704pt;}
.ws7_c00208{word-spacing:10.263376pt;}
.ws4_c00208{word-spacing:11.477056pt;}
.ws5_c00208{word-spacing:11.533072pt;}
.ws1f_c00208{word-spacing:11.813152pt;}
.wsb_c00208{word-spacing:11.838048pt;}
.wsc_c00208{word-spacing:11.856720pt;}
.wsd_c00208{word-spacing:17.925120pt;}
.wse_c00208{word-spacing:18.248768pt;}
.ws8_c00208{word-spacing:19.518464pt;}
.ws11_c00208{word-spacing:20.140864pt;}
.ws10_c00208{word-spacing:20.452064pt;}
.ws12_c00208{word-spacing:20.476960pt;}
.wsf_c00208{word-spacing:32.308784pt;}
._0_c00208{margin-left:-1.478910pt;}
._1_c00208{width:1.082976pt;}
.fs0_c00208{font-size:62.240000pt;}
.fs1_c00208{font-size:67.530133pt;}
.y0_c00208{bottom:0.000000pt;}
.y2_c00208{bottom:97.547527pt;}
.y1_c00208{bottom:115.387067pt;}
.y1c_c00208{bottom:160.666559pt;}
.y1b_c00208{bottom:187.546459pt;}
.y1a_c00208{bottom:232.507079pt;}
.y19_c00208{bottom:260.347031pt;}
.y18_c00208{bottom:306.347059pt;}
.y17_c00208{bottom:351.387035pt;}
.y16_c00208{bottom:378.266935pt;}
.y15_c00208{bottom:423.146643pt;}
.y14_c00208{bottom:450.105899pt;}
.y13_c00208{bottom:476.906443pt;}
.y12_c00208{bottom:503.786343pt;}
.y11_c00208{bottom:530.586887pt;}
.y10_c00208{bottom:575.547507pt;}
.yf_c00208{bottom:602.427407pt;}
.ye_c00208{bottom:629.307307pt;}
.yd_c00208{bottom:674.187015pt;}
.yc_c00208{bottom:701.066915pt;}
.yb_c00208{bottom:727.946815pt;}
.ya_c00208{bottom:754.747359pt;}
.y9_c00208{bottom:799.627067pt;}
.y8_c00208{bottom:836.027067pt;}
.y7_c00208{bottom:879.706715pt;}
.y6_c00208{bottom:906.586615pt;}
.y5_c00208{bottom:933.387159pt;}
.y4_c00208{bottom:960.267059pt;}
.y3_c00208{bottom:987.067603pt;}
.h4_c00208{height:55.645234pt;}
.h1_c00208{height:55.797187pt;}
.h2_c00208{height:60.968367pt;}
.h3_c00208{height:64.914375pt;}
.h0_c00208{height:1122.666667pt;}
.w0_c00208{width:793.333333pt;}
.x0_c00208{left:0.000000pt;}
.x2_c00208{left:73.520052pt;}
.x3_c00208{left:89.120456pt;}
.x4_c00208{left:120.240456pt;}
.x1_c00208{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5e179a6a1346b61e10a8a2e3.woff2')format("woff");}.ff1_c00209{font-family:ff1_c00209;line-height:1.106934;font-style:normal;font-weight:normal;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_3d2dd4ddab4189c6411fbfd3.woff2')format("woff");}.ff2_c00209{font-family:ff2_c00209;line-height:1.104492;font-style:normal;font-weight:normal;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_6e62f9b9638306f4a903458d.woff2')format("woff");}.ff3_c00209{font-family:ff3_c00209;line-height:1.133301;font-style:normal;font-weight:normal;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_ae4b7adb81975ca572f70288.woff2')format("woff");}.ff4_c00209{font-family:ff4_c00209;line-height:1.133301;font-style:normal;font-weight:normal;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_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff5_c00209{font-family:ff5_c00209;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00209;src:url('chunks/assets/font_311d9ee85c53779b22f9ea15.woff2')format("woff");}.ff6_c00209{font-family:ff6_c00209;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00209{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00209{vertical-align:-14.760000px;}
.v0_c00209{vertical-align:0.000000px;}
.v1_c00209{vertical-align:32.037138px;}
.ls20_c00209{letter-spacing:-0.707443px;}
.ls13_c00209{letter-spacing:-0.385878px;}
.ls1a_c00209{letter-spacing:-0.344952px;}
.ls19_c00209{letter-spacing:-0.286485px;}
.ls1d_c00209{letter-spacing:-0.192939px;}
.ls1f_c00209{letter-spacing:-0.175399px;}
.ls22_c00209{letter-spacing:-0.134473px;}
.ls15_c00209{letter-spacing:-0.116933px;}
.ls10_c00209{letter-spacing:-0.081853px;}
.ls23_c00209{letter-spacing:-0.076006px;}
.lsf_c00209{letter-spacing:-0.075619px;}
.ls1c_c00209{letter-spacing:-0.064313px;}
.ls6_c00209{letter-spacing:-0.063018px;}
.ls12_c00209{letter-spacing:-0.052620px;}
.lsb_c00209{letter-spacing:-0.049014px;}
.lse_c00209{letter-spacing:-0.042012px;}
.ls14_c00209{letter-spacing:-0.040926px;}
.lsc_c00209{letter-spacing:-0.035010px;}
.ls8_c00209{letter-spacing:-0.028008px;}
.ls9_c00209{letter-spacing:-0.021006px;}
.ls16_c00209{letter-spacing:-0.017540px;}
.lsd_c00209{letter-spacing:-0.014004px;}
.lsa_c00209{letter-spacing:-0.007002px;}
.ls1b_c00209{letter-spacing:-0.005847px;}
.ls7_c00209{letter-spacing:0.000000px;}
.ls5_c00209{letter-spacing:0.005847px;}
.ls0_c00209{letter-spacing:0.007002px;}
.ls3_c00209{letter-spacing:0.014004px;}
.ls4_c00209{letter-spacing:0.021006px;}
.ls2_c00209{letter-spacing:0.023281px;}
.ls1_c00209{letter-spacing:0.035010px;}
.ls1e_c00209{letter-spacing:0.076006px;}
.ls18_c00209{letter-spacing:0.233866px;}
.ls11_c00209{letter-spacing:0.268945px;}
.ls24_c00209{letter-spacing:0.350798px;}
.ls21_c00209{letter-spacing:0.368338px;}
.ls17_c00209{letter-spacing:19.451771px;}
.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;}
}
.ws3_c00209{word-spacing:-58.466400px;}
.ws6_c00209{word-spacing:-16.545991px;}
.ws2_c00209{word-spacing:-16.464138px;}
.ws5_c00209{word-spacing:-16.130880px;}
.ws4_c00209{word-spacing:-15.809315px;}
.ws0_c00209{word-spacing:-12.967628px;}
.ws1_c00209{word-spacing:-10.397640px;}
.ws9_c00209{word-spacing:-0.049014px;}
.ws27_c00209{word-spacing:-0.014004px;}
.ws7_c00209{word-spacing:0.000000px;}
.ws18_c00209{word-spacing:0.021006px;}
.ws2d_c00209{word-spacing:0.029233px;}
.ws2c_c00209{word-spacing:0.128626px;}
.wsf_c00209{word-spacing:0.364104px;}
.ws24_c00209{word-spacing:0.385110px;}
.ws16_c00209{word-spacing:0.714204px;}
.ws17_c00209{word-spacing:0.735210px;}
.ws26_c00209{word-spacing:1.064304px;}
.ws1e_c00209{word-spacing:1.393398px;}
.ws25_c00209{word-spacing:1.414404px;}
.ws10_c00209{word-spacing:1.449414px;}
.ws32_c00209{word-spacing:1.736452px;}
.ws1d_c00209{word-spacing:1.778508px;}
.wsa_c00209{word-spacing:1.813518px;}
.ws31_c00209{word-spacing:2.005398px;}
.ws1a_c00209{word-spacing:2.870820px;}
.wsd_c00209{word-spacing:5.727636px;}
.wsc_c00209{word-spacing:6.091740px;}
.wse_c00209{word-spacing:6.098742px;}
.ws2a_c00209{word-spacing:6.852262px;}
.ws2b_c00209{word-spacing:6.893189px;}
.ws28_c00209{word-spacing:6.934115px;}
.ws19_c00209{word-spacing:7.163046px;}
.ws29_c00209{word-spacing:7.267374px;}
.ws8_c00209{word-spacing:8.619462px;}
.ws38_c00209{word-spacing:9.448170px;}
.ws37_c00209{word-spacing:9.506637px;}
.ws11_c00209{word-spacing:10.432980px;}
.ws14_c00209{word-spacing:10.453986px;}
.ws15_c00209{word-spacing:10.832094px;}
.ws1b_c00209{word-spacing:11.154186px;}
.ws1c_c00209{word-spacing:11.182194px;}
.ws22_c00209{word-spacing:11.497284px;}
.ws23_c00209{word-spacing:11.882394px;}
.ws36_c00209{word-spacing:17.282668px;}
.ws34_c00209{word-spacing:17.645160px;}
.ws33_c00209{word-spacing:17.826405px;}
.ws35_c00209{word-spacing:18.720941px;}
.ws2e_c00209{word-spacing:19.212059px;}
.ws2f_c00209{word-spacing:19.217906px;}
.ws30_c00209{word-spacing:19.738257px;}
.ws20_c00209{word-spacing:20.179764px;}
.wsb_c00209{word-spacing:20.865960px;}
.ws12_c00209{word-spacing:23.015574px;}
.ws13_c00209{word-spacing:23.365674px;}
.ws21_c00209{word-spacing:26.635608px;}
.ws1f_c00209{word-spacing:43.923546px;}
._6_c00209{margin-left:-19.796723px;}
._5_c00209{margin-left:-18.760456px;}
._4_c00209{margin-left:-2.708838px;}
._1_c00209{margin-left:-1.141326px;}
._0_c00209{width:1.169334px;}
._3_c00209{width:5.930694px;}
._7_c00209{width:20.398378px;}
._2_c00209{width:23.596740px;}
.fc0_c00209{color:rgb(0,0,0);}
.fs2_c00209{font-size:37.809600px;}
.fs1_c00209{font-size:46.562400px;}
.fs3_c00209{font-size:58.466400px;}
.fs0_c00209{font-size:70.020000px;}
.y0_c00209{bottom:0.000000px;}
.y2_c00209{bottom:109.740968px;}
.y1_c00209{bottom:129.810450px;}
.y22_c00209{bottom:149.428647px;}
.y21_c00209{bottom:167.249205px;}
.y20_c00209{bottom:185.249548px;}
.y1f_c00209{bottom:203.070107px;}
.y1e_c00209{bottom:224.670450px;}
.y1d_c00209{bottom:238.889891px;}
.y1c_c00209{bottom:260.400450px;}
.y1b_c00209{bottom:275.159919px;}
.y1a_c00209{bottom:313.770698px;}
.y19_c00209{bottom:344.099861px;}
.y18_c00209{bottom:394.589532px;}
.y17_c00209{bottom:424.829420px;}
.y16_c00209{bottom:455.069307px;}
.y15_c00209{bottom:485.309194px;}
.y14_c00209{bottom:515.459807px;}
.y13_c00209{bottom:545.699694px;}
.y12_c00209{bottom:575.850306px;}
.y11_c00209{bottom:626.339978px;}
.y10_c00209{bottom:656.669141px;}
.yf_c00209{bottom:686.819753px;}
.ye_c00209{bottom:737.399532px;}
.yd_c00209{bottom:767.728695px;}
.yc_c00209{bottom:797.879307px;}
.yb_c00209{bottom:828.119195px;}
.ya_c00209{bottom:858.269807px;}
.y9_c00209{bottom:888.509694px;}
.y8_c00209{bottom:938.999366px;}
.y7_c00209{bottom:969.239253px;}
.y6_c00209{bottom:999.479141px;}
.y5_c00209{bottom:1029.629752px;}
.y4_c00209{bottom:1080.211166px;}
.y3_c00209{bottom:1110.451053px;}
.h6_c00209{height:39.338549px;}
.h8_c00209{height:39.698549px;}
.h7_c00209{height:54.098549px;}
.h2_c00209{height:62.600889px;}
.h1_c00209{height:62.771836px;}
.h5_c00209{height:62.773960px;}
.h3_c00209{height:73.665924px;}
.h4_c00209{height:74.032458px;}
.h0_c00209{height:1263.000000px;}
.w0_c00209{width:892.500000px;}
.x0_c00209{left:0.000000px;}
.x2_c00209{left:82.710059px;}
.x1_c00209{left:431.730000px;}
@media print{
.v2_c00209{vertical-align:-13.120000pt;}
.v0_c00209{vertical-align:0.000000pt;}
.v1_c00209{vertical-align:28.477456pt;}
.ls20_c00209{letter-spacing:-0.628839pt;}
.ls13_c00209{letter-spacing:-0.343003pt;}
.ls1a_c00209{letter-spacing:-0.306624pt;}
.ls19_c00209{letter-spacing:-0.254654pt;}
.ls1d_c00209{letter-spacing:-0.171501pt;}
.ls1f_c00209{letter-spacing:-0.155910pt;}
.ls22_c00209{letter-spacing:-0.119531pt;}
.ls15_c00209{letter-spacing:-0.103940pt;}
.ls10_c00209{letter-spacing:-0.072758pt;}
.ls23_c00209{letter-spacing:-0.067561pt;}
.lsf_c00209{letter-spacing:-0.067217pt;}
.ls1c_c00209{letter-spacing:-0.057167pt;}
.ls6_c00209{letter-spacing:-0.056016pt;}
.ls12_c00209{letter-spacing:-0.046773pt;}
.lsb_c00209{letter-spacing:-0.043568pt;}
.lse_c00209{letter-spacing:-0.037344pt;}
.ls14_c00209{letter-spacing:-0.036379pt;}
.lsc_c00209{letter-spacing:-0.031120pt;}
.ls8_c00209{letter-spacing:-0.024896pt;}
.ls9_c00209{letter-spacing:-0.018672pt;}
.ls16_c00209{letter-spacing:-0.015591pt;}
.lsd_c00209{letter-spacing:-0.012448pt;}
.lsa_c00209{letter-spacing:-0.006224pt;}
.ls1b_c00209{letter-spacing:-0.005197pt;}
.ls7_c00209{letter-spacing:0.000000pt;}
.ls5_c00209{letter-spacing:0.005197pt;}
.ls0_c00209{letter-spacing:0.006224pt;}
.ls3_c00209{letter-spacing:0.012448pt;}
.ls4_c00209{letter-spacing:0.018672pt;}
.ls2_c00209{letter-spacing:0.020694pt;}
.ls1_c00209{letter-spacing:0.031120pt;}
.ls1e_c00209{letter-spacing:0.067561pt;}
.ls18_c00209{letter-spacing:0.207881pt;}
.ls11_c00209{letter-spacing:0.239063pt;}
.ls24_c00209{letter-spacing:0.311821pt;}
.ls21_c00209{letter-spacing:0.327412pt;}
.ls17_c00209{letter-spacing:17.290463pt;}
.ws3_c00209{word-spacing:-51.970133pt;}
.ws6_c00209{word-spacing:-14.707548pt;}
.ws2_c00209{word-spacing:-14.634790pt;}
.ws5_c00209{word-spacing:-14.338560pt;}
.ws4_c00209{word-spacing:-14.052724pt;}
.ws0_c00209{word-spacing:-11.526781pt;}
.ws1_c00209{word-spacing:-9.242347pt;}
.ws9_c00209{word-spacing:-0.043568pt;}
.ws27_c00209{word-spacing:-0.012448pt;}
.ws7_c00209{word-spacing:0.000000pt;}
.ws18_c00209{word-spacing:0.018672pt;}
.ws2d_c00209{word-spacing:0.025985pt;}
.ws2c_c00209{word-spacing:0.114334pt;}
.wsf_c00209{word-spacing:0.323648pt;}
.ws24_c00209{word-spacing:0.342320pt;}
.ws16_c00209{word-spacing:0.634848pt;}
.ws17_c00209{word-spacing:0.653520pt;}
.ws26_c00209{word-spacing:0.946048pt;}
.ws1e_c00209{word-spacing:1.238576pt;}
.ws25_c00209{word-spacing:1.257248pt;}
.ws10_c00209{word-spacing:1.288368pt;}
.ws32_c00209{word-spacing:1.543513pt;}
.ws1d_c00209{word-spacing:1.580896pt;}
.wsa_c00209{word-spacing:1.612016pt;}
.ws31_c00209{word-spacing:1.782576pt;}
.ws1a_c00209{word-spacing:2.551840pt;}
.wsd_c00209{word-spacing:5.091232pt;}
.wsc_c00209{word-spacing:5.414880pt;}
.wse_c00209{word-spacing:5.421104pt;}
.ws2a_c00209{word-spacing:6.090900pt;}
.ws2b_c00209{word-spacing:6.127279pt;}
.ws28_c00209{word-spacing:6.163658pt;}
.ws19_c00209{word-spacing:6.367152pt;}
.ws29_c00209{word-spacing:6.459888pt;}
.ws8_c00209{word-spacing:7.661744pt;}
.ws38_c00209{word-spacing:8.398374pt;}
.ws37_c00209{word-spacing:8.450344pt;}
.ws11_c00209{word-spacing:9.273760pt;}
.ws14_c00209{word-spacing:9.292432pt;}
.ws15_c00209{word-spacing:9.628528pt;}
.ws1b_c00209{word-spacing:9.914832pt;}
.ws1c_c00209{word-spacing:9.939728pt;}
.ws22_c00209{word-spacing:10.219808pt;}
.ws23_c00209{word-spacing:10.562128pt;}
.ws36_c00209{word-spacing:15.362371pt;}
.ws34_c00209{word-spacing:15.684586pt;}
.ws33_c00209{word-spacing:15.845694pt;}
.ws35_c00209{word-spacing:16.640837pt;}
.ws2e_c00209{word-spacing:17.077386pt;}
.ws2f_c00209{word-spacing:17.082583pt;}
.ws30_c00209{word-spacing:17.545117pt;}
.ws20_c00209{word-spacing:17.937568pt;}
.wsb_c00209{word-spacing:18.547520pt;}
.ws12_c00209{word-spacing:20.458288pt;}
.ws13_c00209{word-spacing:20.769488pt;}
.ws21_c00209{word-spacing:23.676096pt;}
.ws1f_c00209{word-spacing:39.043152pt;}
._6_c00209{margin-left:-17.597087pt;}
._5_c00209{margin-left:-16.675961pt;}
._4_c00209{margin-left:-2.407856pt;}
._1_c00209{margin-left:-1.014512pt;}
._0_c00209{width:1.039408pt;}
._3_c00209{width:5.271728pt;}
._7_c00209{width:18.131892pt;}
._2_c00209{width:20.974880pt;}
.fs2_c00209{font-size:33.608533pt;}
.fs1_c00209{font-size:41.388800pt;}
.fs3_c00209{font-size:51.970133pt;}
.fs0_c00209{font-size:62.240000pt;}
.y0_c00209{bottom:0.000000pt;}
.y2_c00209{bottom:97.547527pt;}
.y1_c00209{bottom:115.387067pt;}
.y22_c00209{bottom:132.825464pt;}
.y21_c00209{bottom:148.665960pt;}
.y20_c00209{bottom:164.666265pt;}
.y1f_c00209{bottom:180.506762pt;}
.y1e_c00209{bottom:199.707067pt;}
.y1d_c00209{bottom:212.346570pt;}
.y1c_c00209{bottom:231.467067pt;}
.y1b_c00209{bottom:244.586595pt;}
.y1a_c00209{bottom:278.907287pt;}
.y19_c00209{bottom:305.866543pt;}
.y18_c00209{bottom:350.746251pt;}
.y17_c00209{bottom:377.626151pt;}
.y16_c00209{bottom:404.506051pt;}
.y15_c00209{bottom:431.385951pt;}
.y14_c00209{bottom:458.186495pt;}
.y13_c00209{bottom:485.066395pt;}
.y12_c00209{bottom:511.866939pt;}
.y11_c00209{bottom:556.746647pt;}
.y10_c00209{bottom:583.705903pt;}
.yf_c00209{bottom:610.506447pt;}
.ye_c00209{bottom:655.466251pt;}
.yd_c00209{bottom:682.425507pt;}
.yc_c00209{bottom:709.226051pt;}
.yb_c00209{bottom:736.105951pt;}
.ya_c00209{bottom:762.906495pt;}
.y9_c00209{bottom:789.786395pt;}
.y8_c00209{bottom:834.666103pt;}
.y7_c00209{bottom:861.546003pt;}
.y6_c00209{bottom:888.425903pt;}
.y5_c00209{bottom:915.226447pt;}
.y4_c00209{bottom:960.187703pt;}
.y3_c00209{bottom:987.067603pt;}
.h6_c00209{height:34.967599pt;}
.h8_c00209{height:35.287599pt;}
.h7_c00209{height:48.087599pt;}
.h2_c00209{height:55.645234pt;}
.h1_c00209{height:55.797187pt;}
.h5_c00209{height:55.799076pt;}
.h3_c00209{height:65.480822pt;}
.h4_c00209{height:65.806630pt;}
.h0_c00209{height:1122.666667pt;}
.w0_c00209{width:793.333333pt;}
.x0_c00209{left:0.000000pt;}
.x2_c00209{left:73.520052pt;}
.x1_c00209{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d1b0393a1975968bf4cd767c.woff2')format("woff");}.ff1_c00210{font-family:ff1_c00210;line-height:1.106934;font-style:normal;font-weight:normal;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_907ead5e8023c5763fafc0f7.woff2')format("woff");}.ff2_c00210{font-family:ff2_c00210;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00210{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00210{vertical-align:0.000000px;}
.ls4_c00210{letter-spacing:-0.063018px;}
.lsb_c00210{letter-spacing:-0.049014px;}
.ls7_c00210{letter-spacing:-0.042012px;}
.ls6_c00210{letter-spacing:-0.035010px;}
.ls9_c00210{letter-spacing:-0.028008px;}
.lsc_c00210{letter-spacing:-0.021006px;}
.lsa_c00210{letter-spacing:-0.014004px;}
.ls8_c00210{letter-spacing:-0.007002px;}
.ls5_c00210{letter-spacing:0.000000px;}
.ls0_c00210{letter-spacing:0.007002px;}
.ls3_c00210{letter-spacing:0.014004px;}
.ls2_c00210{letter-spacing:0.028008px;}
.ls1_c00210{letter-spacing:0.049014px;}
.sc__c00210{text-shadow:none;}
.sc0_c00210{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00210{-webkit-text-stroke:0px transparent;}
.sc0_c00210{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00210{word-spacing:-70.020000px;}
.wsf_c00210{word-spacing:-0.063018px;}
.ws12_c00210{word-spacing:-0.042012px;}
.ws17_c00210{word-spacing:-0.028008px;}
.ws5_c00210{word-spacing:-0.021006px;}
.ws4_c00210{word-spacing:-0.007002px;}
.ws1_c00210{word-spacing:0.000000px;}
.ws11_c00210{word-spacing:0.007002px;}
.ws14_c00210{word-spacing:0.014004px;}
.ws2_c00210{word-spacing:0.021006px;}
.ws3_c00210{word-spacing:0.028008px;}
.wse_c00210{word-spacing:0.364104px;}
.ws6_c00210{word-spacing:0.371106px;}
.wsd_c00210{word-spacing:0.392112px;}
.wsc_c00210{word-spacing:1.078308px;}
.wsb_c00210{word-spacing:2.142612px;}
.wsa_c00210{word-spacing:2.170620px;}
.ws13_c00210{word-spacing:2.884824px;}
.ws10_c00210{word-spacing:3.599028px;}
.ws9_c00210{word-spacing:12.239496px;}
.ws16_c00210{word-spacing:18.723348px;}
.ws15_c00210{word-spacing:18.744354px;}
.ws7_c00210{word-spacing:31.663044px;}
.ws8_c00210{word-spacing:31.677048px;}
._2_c00210{margin-left:-1.232352px;}
._1_c00210{width:1.120320px;}
._3_c00210{width:18.268218px;}
._7_c00210{width:31.221918px;}
._6_c00210{width:47.067444px;}
._0_c00210{width:49.945266px;}
._4_c00210{width:52.101882px;}
._5_c00210{width:53.180190px;}
.fc0_c00210{color:rgb(0,0,0);}
.fs0_c00210{font-size:70.020000px;}
.y0_c00210{bottom:0.000000px;}
.y2_c00210{bottom:109.740968px;}
.y1_c00210{bottom:129.810450px;}
.y1d_c00210{bottom:164.738177px;}
.y1c_c00210{bottom:194.978064px;}
.y1b_c00210{bottom:226.298010px;}
.y1a_c00210{bottom:278.048042px;}
.y19_c00210{bottom:328.718015px;}
.y18_c00210{bottom:379.298712px;}
.y17_c00210{bottom:409.538600px;}
.y16_c00210{bottom:440.858546px;}
.y15_c00210{bottom:472.267767px;}
.y14_c00210{bottom:524.017799px;}
.y13_c00210{bottom:554.346962px;}
.y12_c00210{bottom:604.836633px;}
.y11_c00210{bottom:636.245855px;}
.y10_c00210{bottom:666.485742px;}
.yf_c00210{bottom:697.894964px;}
.ye_c00210{bottom:727.954550px;}
.yd_c00210{bottom:779.793857px;}
.yc_c00210{bottom:810.033744px;}
.yb_c00210{bottom:840.273631px;}
.ya_c00210{bottom:890.763303px;}
.y9_c00210{bottom:922.172525px;}
.y8_c00210{bottom:952.412412px;}
.y7_c00210{bottom:983.732358px;}
.y6_c00210{bottom:1015.141580px;}
.y5_c00210{bottom:1046.461526px;}
.y4_c00210{bottom:1077.870747px;}
.y3_c00210{bottom:1109.190693px;}
.h1_c00210{height:62.771836px;}
.h0_c00210{height:1263.000000px;}
.w0_c00210{width:892.500000px;}
.x0_c00210{left:0.000000px;}
.x2_c00210{left:82.710059px;}
.x5_c00210{left:103.500747px;}
.x3_c00210{left:108.990315px;}
.x6_c00210{left:129.689977px;}
.x4_c00210{left:135.270572px;}
.x1_c00210{left:431.730000px;}
@media print{
.v0_c00210{vertical-align:0.000000pt;}
.ls4_c00210{letter-spacing:-0.056016pt;}
.lsb_c00210{letter-spacing:-0.043568pt;}
.ls7_c00210{letter-spacing:-0.037344pt;}
.ls6_c00210{letter-spacing:-0.031120pt;}
.ls9_c00210{letter-spacing:-0.024896pt;}
.lsc_c00210{letter-spacing:-0.018672pt;}
.lsa_c00210{letter-spacing:-0.012448pt;}
.ls8_c00210{letter-spacing:-0.006224pt;}
.ls5_c00210{letter-spacing:0.000000pt;}
.ls0_c00210{letter-spacing:0.006224pt;}
.ls3_c00210{letter-spacing:0.012448pt;}
.ls2_c00210{letter-spacing:0.024896pt;}
.ls1_c00210{letter-spacing:0.043568pt;}
.ws0_c00210{word-spacing:-62.240000pt;}
.wsf_c00210{word-spacing:-0.056016pt;}
.ws12_c00210{word-spacing:-0.037344pt;}
.ws17_c00210{word-spacing:-0.024896pt;}
.ws5_c00210{word-spacing:-0.018672pt;}
.ws4_c00210{word-spacing:-0.006224pt;}
.ws1_c00210{word-spacing:0.000000pt;}
.ws11_c00210{word-spacing:0.006224pt;}
.ws14_c00210{word-spacing:0.012448pt;}
.ws2_c00210{word-spacing:0.018672pt;}
.ws3_c00210{word-spacing:0.024896pt;}
.wse_c00210{word-spacing:0.323648pt;}
.ws6_c00210{word-spacing:0.329872pt;}
.wsd_c00210{word-spacing:0.348544pt;}
.wsc_c00210{word-spacing:0.958496pt;}
.wsb_c00210{word-spacing:1.904544pt;}
.wsa_c00210{word-spacing:1.929440pt;}
.ws13_c00210{word-spacing:2.564288pt;}
.ws10_c00210{word-spacing:3.199136pt;}
.ws9_c00210{word-spacing:10.879552pt;}
.ws16_c00210{word-spacing:16.642976pt;}
.ws15_c00210{word-spacing:16.661648pt;}
.ws7_c00210{word-spacing:28.144928pt;}
.ws8_c00210{word-spacing:28.157376pt;}
._2_c00210{margin-left:-1.095424pt;}
._1_c00210{width:0.995840pt;}
._3_c00210{width:16.238416pt;}
._7_c00210{width:27.752816pt;}
._6_c00210{width:41.837728pt;}
._0_c00210{width:44.395792pt;}
._4_c00210{width:46.312784pt;}
._5_c00210{width:47.271280pt;}
.fs0_c00210{font-size:62.240000pt;}
.y0_c00210{bottom:0.000000pt;}
.y2_c00210{bottom:97.547527pt;}
.y1_c00210{bottom:115.387067pt;}
.y1d_c00210{bottom:146.433935pt;}
.y1c_c00210{bottom:173.313835pt;}
.y1b_c00210{bottom:201.153787pt;}
.y1a_c00210{bottom:247.153815pt;}
.y19_c00210{bottom:292.193791pt;}
.y18_c00210{bottom:337.154411pt;}
.y17_c00210{bottom:364.034311pt;}
.y16_c00210{bottom:391.874263pt;}
.y15_c00210{bottom:419.793571pt;}
.y14_c00210{bottom:465.793599pt;}
.y13_c00210{bottom:492.752855pt;}
.y12_c00210{bottom:537.632563pt;}
.y11_c00210{bottom:565.551871pt;}
.y10_c00210{bottom:592.431771pt;}
.yf_c00210{bottom:620.351079pt;}
.ye_c00210{bottom:647.070711pt;}
.yd_c00210{bottom:693.150095pt;}
.yc_c00210{bottom:720.029995pt;}
.yb_c00210{bottom:746.909895pt;}
.ya_c00210{bottom:791.789603pt;}
.y9_c00210{bottom:819.708911pt;}
.y8_c00210{bottom:846.588811pt;}
.y7_c00210{bottom:874.428763pt;}
.y6_c00210{bottom:902.348071pt;}
.y5_c00210{bottom:930.188023pt;}
.y4_c00210{bottom:958.107331pt;}
.y3_c00210{bottom:985.947283pt;}
.h1_c00210{height:55.797187pt;}
.h0_c00210{height:1122.666667pt;}
.w0_c00210{width:793.333333pt;}
.x0_c00210{left:0.000000pt;}
.x2_c00210{left:73.520052pt;}
.x5_c00210{left:92.000664pt;}
.x3_c00210{left:96.880280pt;}
.x6_c00210{left:115.279980pt;}
.x4_c00210{left:120.240508pt;}
.x1_c00210{left:383.760000pt;}
}





    body { margin: 0; background: #f3f4f6; }
    #page-container { margin: 0 auto; }
    .pf_c00211 {
      width: 900px;
      min-height: 280px;
      margin: 16px auto;
      background: #fff;
      border: 1px solid #e5e7eb;
      box-shadow: 0 8px 22px rgba(15, 23, 42, .08);
      position: relative;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }
    .scieee-page-failed_c00211 {
      padding: 42px;
      color: #374151;
      font-size: 14px;
      line-height: 1.45;
    }
    .scieee-page-failed_c00211 b {
      display: block;
      margin-bottom: 8px;
      font-size: 18px;
      color: #111827;
    }
    .scieee-page-failed_c00211 code {
      display: block;
      margin-top: 12px;
      white-space: pre-wrap;
      color: #6b7280;
      font-size: 12px;
    }
  




/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8d3c82a845fde5ef95569281.woff2')format("woff");}.ff1_c00212{font-family:ff1_c00212;line-height:1.106934;font-style:normal;font-weight:normal;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_71f4419739fd18aeb8508b0e.woff2')format("woff");}.ff2_c00212{font-family:ff2_c00212;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00212{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00212{vertical-align:0.000000px;}
.ls5_c00212{letter-spacing:-0.063018px;}
.ls9_c00212{letter-spacing:-0.042012px;}
.lsa_c00212{letter-spacing:-0.028008px;}
.ls8_c00212{letter-spacing:-0.021006px;}
.ls7_c00212{letter-spacing:-0.014004px;}
.lsb_c00212{letter-spacing:-0.007002px;}
.ls6_c00212{letter-spacing:0.000000px;}
.ls0_c00212{letter-spacing:0.007002px;}
.ls4_c00212{letter-spacing:0.014004px;}
.ls2_c00212{letter-spacing:0.021006px;}
.ls3_c00212{letter-spacing:0.035010px;}
.ls1_c00212{letter-spacing:0.189054px;}
.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;}
}
.wse_c00212{word-spacing:-0.371106px;}
.ws7_c00212{word-spacing:-0.203058px;}
.ws14_c00212{word-spacing:-0.028008px;}
.ws0_c00212{word-spacing:0.000000px;}
.ws1e_c00212{word-spacing:0.007002px;}
.ws10_c00212{word-spacing:0.028008px;}
.ws15_c00212{word-spacing:0.350100px;}
.ws16_c00212{word-spacing:0.357102px;}
.ws5_c00212{word-spacing:0.371106px;}
.ws4_c00212{word-spacing:0.728208px;}
.ws11_c00212{word-spacing:2.128608px;}
.ws12_c00212{word-spacing:2.485710px;}
.wsc_c00212{word-spacing:2.828808px;}
.wsd_c00212{word-spacing:2.863818px;}
.ws1d_c00212{word-spacing:3.606030px;}
.ws1a_c00212{word-spacing:4.670334px;}
.ws1b_c00212{word-spacing:4.684338px;}
.ws1c_c00212{word-spacing:5.020434px;}
.ws17_c00212{word-spacing:5.363532px;}
.ws8_c00212{word-spacing:5.398542px;}
.ws18_c00212{word-spacing:6.847956px;}
.ws19_c00212{word-spacing:8.983566px;}
.ws3_c00212{word-spacing:11.882394px;}
.ws9_c00212{word-spacing:13.667904px;}
.wsb_c00212{word-spacing:16.181622px;}
.wsa_c00212{word-spacing:16.524720px;}
.ws13_c00212{word-spacing:18.716346px;}
.wsf_c00212{word-spacing:22.350384px;}
.ws6_c00212{word-spacing:24.135894px;}
.ws1_c00212{word-spacing:29.499426px;}
.ws2_c00212{word-spacing:29.506428px;}
._1_c00212{margin-left:-28.715202px;}
._2_c00212{margin-left:-1.218348px;}
._0_c00212{width:1.239354px;}
.fc0_c00212{color:rgb(0,0,0);}
.fs0_c00212{font-size:70.020000px;}
.y0_c00212{bottom:0.000000px;}
.y2_c00212{bottom:109.740968px;}
.y1_c00212{bottom:129.810450px;}
.y1d_c00212{bottom:182.365712px;}
.y1c_c00212{bottom:233.035685px;}
.y1b_c00212{bottom:283.616382px;}
.y1a_c00212{bottom:334.197080px;}
.y19_c00212{bottom:384.867053px;}
.y18_c00212{bottom:415.197966px;}
.y17_c00212{bottom:445.348578px;}
.y16_c00212{bottom:475.588466px;}
.y15_c00212{bottom:505.739078px;}
.y14_c00212{bottom:535.889690px;}
.y13_c00212{bottom:566.040302px;}
.y12_c00212{bottom:596.280189px;}
.y11_c00212{bottom:646.860886px;}
.y10_c00212{bottom:677.100774px;}
.yf_c00212{bottom:707.340662px;}
.ye_c00212{bottom:737.491274px;}
.yd_c00212{bottom:767.731161px;}
.yc_c00212{bottom:818.220833px;}
.yb_c00212{bottom:848.460720px;}
.ya_c00212{bottom:878.700607px;}
.y9_c00212{bottom:908.851219px;}
.y8_c00212{bottom:939.091107px;}
.y7_c00212{bottom:989.580779px;}
.y6_c00212{bottom:1019.909942px;}
.y5_c00212{bottom:1050.060553px;}
.y4_c00212{bottom:1080.300441px;}
.y3_c00212{bottom:1110.451053px;}
.h1_c00212{height:62.771836px;}
.h2_c00212{height:63.216299px;}
.h0_c00212{height:1263.000000px;}
.w0_c00212{width:892.500000px;}
.x0_c00212{left:0.000000px;}
.x2_c00212{left:82.710059px;}
.x1_c00212{left:431.730000px;}
@media print{
.v0_c00212{vertical-align:0.000000pt;}
.ls5_c00212{letter-spacing:-0.056016pt;}
.ls9_c00212{letter-spacing:-0.037344pt;}
.lsa_c00212{letter-spacing:-0.024896pt;}
.ls8_c00212{letter-spacing:-0.018672pt;}
.ls7_c00212{letter-spacing:-0.012448pt;}
.lsb_c00212{letter-spacing:-0.006224pt;}
.ls6_c00212{letter-spacing:0.000000pt;}
.ls0_c00212{letter-spacing:0.006224pt;}
.ls4_c00212{letter-spacing:0.012448pt;}
.ls2_c00212{letter-spacing:0.018672pt;}
.ls3_c00212{letter-spacing:0.031120pt;}
.ls1_c00212{letter-spacing:0.168048pt;}
.wse_c00212{word-spacing:-0.329872pt;}
.ws7_c00212{word-spacing:-0.180496pt;}
.ws14_c00212{word-spacing:-0.024896pt;}
.ws0_c00212{word-spacing:0.000000pt;}
.ws1e_c00212{word-spacing:0.006224pt;}
.ws10_c00212{word-spacing:0.024896pt;}
.ws15_c00212{word-spacing:0.311200pt;}
.ws16_c00212{word-spacing:0.317424pt;}
.ws5_c00212{word-spacing:0.329872pt;}
.ws4_c00212{word-spacing:0.647296pt;}
.ws11_c00212{word-spacing:1.892096pt;}
.ws12_c00212{word-spacing:2.209520pt;}
.wsc_c00212{word-spacing:2.514496pt;}
.wsd_c00212{word-spacing:2.545616pt;}
.ws1d_c00212{word-spacing:3.205360pt;}
.ws1a_c00212{word-spacing:4.151408pt;}
.ws1b_c00212{word-spacing:4.163856pt;}
.ws1c_c00212{word-spacing:4.462608pt;}
.ws17_c00212{word-spacing:4.767584pt;}
.ws8_c00212{word-spacing:4.798704pt;}
.ws18_c00212{word-spacing:6.087072pt;}
.ws19_c00212{word-spacing:7.985392pt;}
.ws3_c00212{word-spacing:10.562128pt;}
.ws9_c00212{word-spacing:12.149248pt;}
.wsb_c00212{word-spacing:14.383664pt;}
.wsa_c00212{word-spacing:14.688640pt;}
.ws13_c00212{word-spacing:16.636752pt;}
.wsf_c00212{word-spacing:19.867008pt;}
.ws6_c00212{word-spacing:21.454128pt;}
.ws1_c00212{word-spacing:26.221712pt;}
.ws2_c00212{word-spacing:26.227936pt;}
._1_c00212{margin-left:-25.524624pt;}
._2_c00212{margin-left:-1.082976pt;}
._0_c00212{width:1.101648pt;}
.fs0_c00212{font-size:62.240000pt;}
.y0_c00212{bottom:0.000000pt;}
.y2_c00212{bottom:97.547527pt;}
.y1_c00212{bottom:115.387067pt;}
.y1d_c00212{bottom:162.102855pt;}
.y1c_c00212{bottom:207.142831pt;}
.y1b_c00212{bottom:252.103451pt;}
.y1a_c00212{bottom:297.064071pt;}
.y19_c00212{bottom:342.104047pt;}
.y18_c00212{bottom:369.064859pt;}
.y17_c00212{bottom:395.865403pt;}
.y16_c00212{bottom:422.745303pt;}
.y15_c00212{bottom:449.545847pt;}
.y14_c00212{bottom:476.346391pt;}
.y13_c00212{bottom:503.146935pt;}
.y12_c00212{bottom:530.026835pt;}
.y11_c00212{bottom:574.987455pt;}
.y10_c00212{bottom:601.867355pt;}
.yf_c00212{bottom:628.747255pt;}
.ye_c00212{bottom:655.547799pt;}
.yd_c00212{bottom:682.427699pt;}
.yc_c00212{bottom:727.307407pt;}
.yb_c00212{bottom:754.187307pt;}
.ya_c00212{bottom:781.067207pt;}
.y9_c00212{bottom:807.867751pt;}
.y8_c00212{bottom:834.747651pt;}
.y7_c00212{bottom:879.627359pt;}
.y6_c00212{bottom:906.586615pt;}
.y5_c00212{bottom:933.387159pt;}
.y4_c00212{bottom:960.267059pt;}
.y3_c00212{bottom:987.067603pt;}
.h1_c00212{height:55.797187pt;}
.h2_c00212{height:56.192266pt;}
.h0_c00212{height:1122.666667pt;}
.w0_c00212{width:793.333333pt;}
.x0_c00212{left:0.000000pt;}
.x2_c00212{left:73.520052pt;}
.x1_c00212{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d01752a8b247d6ce3d03f444.woff2')format("woff");}.ff1_c00213{font-family:ff1_c00213;line-height:1.106934;font-style:normal;font-weight:normal;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_055d03beeeb755d5ae038e39.woff2')format("woff");}.ff2_c00213{font-family:ff2_c00213;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00213{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00213{vertical-align:0.000000px;}
.lsb_c00213{letter-spacing:-0.461885px;}
.ls8_c00213{letter-spacing:-0.076006px;}
.ls3_c00213{letter-spacing:-0.063018px;}
.ls5_c00213{letter-spacing:-0.060777px;}
.lsc_c00213{letter-spacing:-0.049014px;}
.lsa_c00213{letter-spacing:-0.035010px;}
.ls7_c00213{letter-spacing:-0.028008px;}
.ls9_c00213{letter-spacing:-0.014004px;}
.ls6_c00213{letter-spacing:-0.007002px;}
.ls4_c00213{letter-spacing:0.000000px;}
.ls0_c00213{letter-spacing:0.007002px;}
.ls2_c00213{letter-spacing:0.014004px;}
.ls1_c00213{letter-spacing:0.021006px;}
.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;}
}
.ws11_c00213{word-spacing:-0.035010px;}
.wsf_c00213{word-spacing:-0.028008px;}
.ws0_c00213{word-spacing:0.000000px;}
.ws8_c00213{word-spacing:0.014004px;}
.ws10_c00213{word-spacing:0.035010px;}
.ws1_c00213{word-spacing:0.189929px;}
.wsd_c00213{word-spacing:1.442412px;}
.wse_c00213{word-spacing:3.963132px;}
.wsa_c00213{word-spacing:6.119748px;}
.ws9_c00213{word-spacing:6.133752px;}
.ws5_c00213{word-spacing:8.619462px;}
.ws4_c00213{word-spacing:8.647470px;}
.ws3_c00213{word-spacing:9.375678px;}
.ws6_c00213{word-spacing:13.303800px;}
.ws7_c00213{word-spacing:13.674906px;}
.ws2_c00213{word-spacing:14.396112px;}
.wsb_c00213{word-spacing:15.446412px;}
.wsc_c00213{word-spacing:15.859530px;}
._1_c00213{margin-left:-1.253358px;}
._0_c00213{width:1.120320px;}
._3_c00213{width:28.569942px;}
._2_c00213{width:30.627960px;}
.fc0_c00213{color:rgb(0,0,0);}
.fs2_c00213{font-size:58.466400px;}
.fs0_c00213{font-size:70.020000px;}
.fs1_c00213{font-size:75.971400px;}
.y0_c00213{bottom:0.000000px;}
.y2_c00213{bottom:109.740968px;}
.y1_c00213{bottom:129.810450px;}
.y1a_c00213{bottom:158.787891px;}
.y19_c00213{bottom:209.368588px;}
.y18_c00213{bottom:260.038562px;}
.y17_c00213{bottom:310.619259px;}
.y16_c00213{bottom:361.199957px;}
.y15_c00213{bottom:411.959205px;}
.y14_c00213{bottom:462.539903px;}
.y13_c00213{bottom:513.120600px;}
.y12_c00213{bottom:543.360063px;}
.y11_c00213{bottom:573.599950px;}
.y10_c00213{bottom:603.750563px;}
.yf_c00213{bottom:633.990450px;}
.ye_c00213{bottom:664.140562px;}
.yd_c00213{bottom:694.380450px;}
.yc_c00213{bottom:744.870175px;}
.yb_c00213{bottom:775.110063px;}
.ya_c00213{bottom:805.349951px;}
.y9_c00213{bottom:835.500562px;}
.y8_c00213{bottom:865.740450px;}
.y7_c00213{bottom:906.600450px;}
.y6_c00213{bottom:958.530410px;}
.y5_c00213{bottom:1009.111107px;}
.y4_c00213{bottom:1059.781080px;}
.y3_c00213{bottom:1110.361778px;}
.h1_c00213{height:62.771836px;}
.h2_c00213{height:63.216299px;}
.h3_c00213{height:68.589413px;}
.h0_c00213{height:1263.000000px;}
.w0_c00213{width:892.500000px;}
.x0_c00213{left:0.000000px;}
.x2_c00213{left:82.710059px;}
.x3_c00213{left:108.990000px;}
.x4_c00213{left:135.270000px;}
.x1_c00213{left:431.730000px;}
@media print{
.v0_c00213{vertical-align:0.000000pt;}
.lsb_c00213{letter-spacing:-0.410564pt;}
.ls8_c00213{letter-spacing:-0.067561pt;}
.ls3_c00213{letter-spacing:-0.056016pt;}
.ls5_c00213{letter-spacing:-0.054024pt;}
.lsc_c00213{letter-spacing:-0.043568pt;}
.lsa_c00213{letter-spacing:-0.031120pt;}
.ls7_c00213{letter-spacing:-0.024896pt;}
.ls9_c00213{letter-spacing:-0.012448pt;}
.ls6_c00213{letter-spacing:-0.006224pt;}
.ls4_c00213{letter-spacing:0.000000pt;}
.ls0_c00213{letter-spacing:0.006224pt;}
.ls2_c00213{letter-spacing:0.012448pt;}
.ls1_c00213{letter-spacing:0.018672pt;}
.ws11_c00213{word-spacing:-0.031120pt;}
.wsf_c00213{word-spacing:-0.024896pt;}
.ws0_c00213{word-spacing:0.000000pt;}
.ws8_c00213{word-spacing:0.012448pt;}
.ws10_c00213{word-spacing:0.031120pt;}
.ws1_c00213{word-spacing:0.168825pt;}
.wsd_c00213{word-spacing:1.282144pt;}
.wse_c00213{word-spacing:3.522784pt;}
.wsa_c00213{word-spacing:5.439776pt;}
.ws9_c00213{word-spacing:5.452224pt;}
.ws5_c00213{word-spacing:7.661744pt;}
.ws4_c00213{word-spacing:7.686640pt;}
.ws3_c00213{word-spacing:8.333936pt;}
.ws6_c00213{word-spacing:11.825600pt;}
.ws7_c00213{word-spacing:12.155472pt;}
.ws2_c00213{word-spacing:12.796544pt;}
.wsb_c00213{word-spacing:13.730144pt;}
.wsc_c00213{word-spacing:14.097360pt;}
._1_c00213{margin-left:-1.114096pt;}
._0_c00213{width:0.995840pt;}
._3_c00213{width:25.395504pt;}
._2_c00213{width:27.224853pt;}
.fs2_c00213{font-size:51.970133pt;}
.fs0_c00213{font-size:62.240000pt;}
.fs1_c00213{font-size:67.530133pt;}
.y0_c00213{bottom:0.000000pt;}
.y2_c00213{bottom:97.547527pt;}
.y1_c00213{bottom:115.387067pt;}
.y1a_c00213{bottom:141.144792pt;}
.y19_c00213{bottom:186.105412pt;}
.y18_c00213{bottom:231.145388pt;}
.y17_c00213{bottom:276.106008pt;}
.y16_c00213{bottom:321.066628pt;}
.y15_c00213{bottom:366.185960pt;}
.y14_c00213{bottom:411.146580pt;}
.y13_c00213{bottom:456.107200pt;}
.y12_c00213{bottom:482.986723pt;}
.y11_c00213{bottom:509.866623pt;}
.y10_c00213{bottom:536.667167pt;}
.yf_c00213{bottom:563.547067pt;}
.ye_c00213{bottom:590.347167pt;}
.yd_c00213{bottom:617.227067pt;}
.yc_c00213{bottom:662.106823pt;}
.yb_c00213{bottom:688.986723pt;}
.ya_c00213{bottom:715.866623pt;}
.y9_c00213{bottom:742.667167pt;}
.y8_c00213{bottom:769.547067pt;}
.y7_c00213{bottom:805.867067pt;}
.y6_c00213{bottom:852.027031pt;}
.y5_c00213{bottom:896.987651pt;}
.y4_c00213{bottom:942.027627pt;}
.y3_c00213{bottom:986.988247pt;}
.h1_c00213{height:55.797187pt;}
.h2_c00213{height:56.192266pt;}
.h3_c00213{height:60.968367pt;}
.h0_c00213{height:1122.666667pt;}
.w0_c00213{width:793.333333pt;}
.x0_c00213{left:0.000000pt;}
.x2_c00213{left:73.520052pt;}
.x3_c00213{left:96.880000pt;}
.x4_c00213{left:120.240000pt;}
.x1_c00213{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f6ffd0034158464c9cd4da09.woff2')format("woff");}.ff1_c00214{font-family:ff1_c00214;line-height:1.106934;font-style:normal;font-weight:normal;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_7aa1bb93ad5a97b2bba970c9.woff2')format("woff");}.ff2_c00214{font-family:ff2_c00214;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00214;src:url('chunks/assets/font_9217fe35edbec72cbaca4b1a.woff2')format("woff");}.ff3_c00214{font-family:ff3_c00214;line-height:0.892090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00214{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00214{vertical-align:0.000000px;}
.ls7_c00214{letter-spacing:-0.379857px;}
.ls6_c00214{letter-spacing:-0.129151px;}
.ls8_c00214{letter-spacing:-0.091166px;}
.ls4_c00214{letter-spacing:-0.063018px;}
.lsf_c00214{letter-spacing:-0.056016px;}
.lsc_c00214{letter-spacing:-0.042012px;}
.ls9_c00214{letter-spacing:-0.035010px;}
.lse_c00214{letter-spacing:-0.028008px;}
.lsa_c00214{letter-spacing:-0.021006px;}
.lsd_c00214{letter-spacing:-0.014004px;}
.lsb_c00214{letter-spacing:-0.007002px;}
.ls5_c00214{letter-spacing:0.000000px;}
.ls1_c00214{letter-spacing:0.007002px;}
.ls3_c00214{letter-spacing:0.014004px;}
.ls2_c00214{letter-spacing:0.049014px;}
.ls0_c00214{letter-spacing:0.329094px;}
.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:-70.020000px;}
.ws1_c00214{word-spacing:0.000000px;}
.ws14_c00214{word-spacing:0.021006px;}
.ws2_c00214{word-spacing:0.258303px;}
.wsa_c00214{word-spacing:0.364104px;}
.ws3_c00214{word-spacing:0.600174px;}
.ws22_c00214{word-spacing:1.428408px;}
.wse_c00214{word-spacing:2.149614px;}
.wsc_c00214{word-spacing:2.492712px;}
.wsb_c00214{word-spacing:2.548728px;}
.wsd_c00214{word-spacing:2.849814px;}
.ws12_c00214{word-spacing:2.884824px;}
.ws13_c00214{word-spacing:2.898828px;}
.ws1f_c00214{word-spacing:4.313232px;}
.ws11_c00214{word-spacing:4.677336px;}
.ws1d_c00214{word-spacing:5.377536px;}
.ws1e_c00214{word-spacing:5.398542px;}
.ws6_c00214{word-spacing:5.405544px;}
.ws21_c00214{word-spacing:6.091740px;}
.ws15_c00214{word-spacing:6.133752px;}
.ws16_c00214{word-spacing:6.140754px;}
.ws10_c00214{word-spacing:8.997570px;}
.wsf_c00214{word-spacing:9.004572px;}
.ws20_c00214{word-spacing:10.439982px;}
.ws9_c00214{word-spacing:11.455272px;}
.ws8_c00214{word-spacing:11.497284px;}
.ws7_c00214{word-spacing:11.875392px;}
.ws18_c00214{word-spacing:13.660902px;}
.ws17_c00214{word-spacing:14.032008px;}
.ws1a_c00214{word-spacing:20.529864px;}
.ws1b_c00214{word-spacing:20.536866px;}
.ws1c_c00214{word-spacing:20.564874px;}
.ws4_c00214{word-spacing:24.499998px;}
.ws19_c00214{word-spacing:29.884536px;}
.ws5_c00214{word-spacing:33.105456px;}
._1_c00214{margin-left:-1.211346px;}
._0_c00214{width:1.185154px;}
.fc0_c00214{color:rgb(0,0,0);}
.fs0_c00214{font-size:70.020000px;}
.fs1_c00214{font-size:75.971400px;}
.y0_c00214{bottom:0.000000px;}
.y2_c00214{bottom:109.740968px;}
.y1_c00214{bottom:129.810450px;}
.y1c_c00214{bottom:229.346922px;}
.y1b_c00214{bottom:259.586810px;}
.y1a_c00214{bottom:289.826697px;}
.y19_c00214{bottom:319.977309px;}
.y18_c00214{bottom:350.217197px;}
.y17_c00214{bottom:380.367809px;}
.y16_c00214{bottom:410.607696px;}
.y15_c00214{bottom:440.758308px;}
.y14_c00214{bottom:470.998196px;}
.y13_c00214{bottom:501.148808px;}
.y12_c00214{bottom:551.729505px;}
.y11_c00214{bottom:581.969393px;}
.y10_c00214{bottom:612.209280px;}
.yf_c00214{bottom:642.359892px;}
.ye_c00214{bottom:672.599780px;}
.yd_c00214{bottom:723.089451px;}
.yc_c00214{bottom:753.329339px;}
.yb_c00214{bottom:783.569226px;}
.ya_c00214{bottom:813.719838px;}
.y9_c00214{bottom:843.870450px;}
.y8_c00214{bottom:884.819450px;}
.y7_c00214{bottom:906.600450px;}
.y6_c00214{bottom:958.530410px;}
.y5_c00214{bottom:1009.111107px;}
.y4_c00214{bottom:1059.781080px;}
.y3_c00214{bottom:1110.361778px;}
.h1_c00214{height:62.771836px;}
.h2_c00214{height:63.216299px;}
.h3_c00214{height:68.589413px;}
.h0_c00214{height:1263.000000px;}
.w0_c00214{width:892.500000px;}
.x0_c00214{left:0.000000px;}
.x2_c00214{left:82.710059px;}
.x1_c00214{left:431.730000px;}
@media print{
.v0_c00214{vertical-align:0.000000pt;}
.ls7_c00214{letter-spacing:-0.337651pt;}
.ls6_c00214{letter-spacing:-0.114801pt;}
.ls8_c00214{letter-spacing:-0.081036pt;}
.ls4_c00214{letter-spacing:-0.056016pt;}
.lsf_c00214{letter-spacing:-0.049792pt;}
.lsc_c00214{letter-spacing:-0.037344pt;}
.ls9_c00214{letter-spacing:-0.031120pt;}
.lse_c00214{letter-spacing:-0.024896pt;}
.lsa_c00214{letter-spacing:-0.018672pt;}
.lsd_c00214{letter-spacing:-0.012448pt;}
.lsb_c00214{letter-spacing:-0.006224pt;}
.ls5_c00214{letter-spacing:0.000000pt;}
.ls1_c00214{letter-spacing:0.006224pt;}
.ls3_c00214{letter-spacing:0.012448pt;}
.ls2_c00214{letter-spacing:0.043568pt;}
.ls0_c00214{letter-spacing:0.292528pt;}
.ws0_c00214{word-spacing:-62.240000pt;}
.ws1_c00214{word-spacing:0.000000pt;}
.ws14_c00214{word-spacing:0.018672pt;}
.ws2_c00214{word-spacing:0.229602pt;}
.wsa_c00214{word-spacing:0.323648pt;}
.ws3_c00214{word-spacing:0.533488pt;}
.ws22_c00214{word-spacing:1.269696pt;}
.wse_c00214{word-spacing:1.910768pt;}
.wsc_c00214{word-spacing:2.215744pt;}
.wsb_c00214{word-spacing:2.265536pt;}
.wsd_c00214{word-spacing:2.533168pt;}
.ws12_c00214{word-spacing:2.564288pt;}
.ws13_c00214{word-spacing:2.576736pt;}
.ws1f_c00214{word-spacing:3.833984pt;}
.ws11_c00214{word-spacing:4.157632pt;}
.ws1d_c00214{word-spacing:4.780032pt;}
.ws1e_c00214{word-spacing:4.798704pt;}
.ws6_c00214{word-spacing:4.804928pt;}
.ws21_c00214{word-spacing:5.414880pt;}
.ws15_c00214{word-spacing:5.452224pt;}
.ws16_c00214{word-spacing:5.458448pt;}
.ws10_c00214{word-spacing:7.997840pt;}
.wsf_c00214{word-spacing:8.004064pt;}
.ws20_c00214{word-spacing:9.279984pt;}
.ws9_c00214{word-spacing:10.182464pt;}
.ws8_c00214{word-spacing:10.219808pt;}
.ws7_c00214{word-spacing:10.555904pt;}
.ws18_c00214{word-spacing:12.143024pt;}
.ws17_c00214{word-spacing:12.472896pt;}
.ws1a_c00214{word-spacing:18.248768pt;}
.ws1b_c00214{word-spacing:18.254992pt;}
.ws1c_c00214{word-spacing:18.279888pt;}
.ws4_c00214{word-spacing:21.777776pt;}
.ws19_c00214{word-spacing:26.564032pt;}
.ws5_c00214{word-spacing:29.427072pt;}
._1_c00214{margin-left:-1.076752pt;}
._0_c00214{width:1.053470pt;}
.fs0_c00214{font-size:62.240000pt;}
.fs1_c00214{font-size:67.530133pt;}
.y0_c00214{bottom:0.000000pt;}
.y2_c00214{bottom:97.547527pt;}
.y1_c00214{bottom:115.387067pt;}
.y1c_c00214{bottom:203.863931pt;}
.y1b_c00214{bottom:230.743831pt;}
.y1a_c00214{bottom:257.623731pt;}
.y19_c00214{bottom:284.424275pt;}
.y18_c00214{bottom:311.304175pt;}
.y17_c00214{bottom:338.104719pt;}
.y16_c00214{bottom:364.984619pt;}
.y15_c00214{bottom:391.785163pt;}
.y14_c00214{bottom:418.665063pt;}
.y13_c00214{bottom:445.465607pt;}
.y12_c00214{bottom:490.426227pt;}
.y11_c00214{bottom:517.306127pt;}
.y10_c00214{bottom:544.186027pt;}
.yf_c00214{bottom:570.986571pt;}
.ye_c00214{bottom:597.866471pt;}
.yd_c00214{bottom:642.746179pt;}
.yc_c00214{bottom:669.626079pt;}
.yb_c00214{bottom:696.505979pt;}
.ya_c00214{bottom:723.306523pt;}
.y9_c00214{bottom:750.107067pt;}
.y8_c00214{bottom:786.506177pt;}
.y7_c00214{bottom:805.867067pt;}
.y6_c00214{bottom:852.027031pt;}
.y5_c00214{bottom:896.987651pt;}
.y4_c00214{bottom:942.027627pt;}
.y3_c00214{bottom:986.988247pt;}
.h1_c00214{height:55.797187pt;}
.h2_c00214{height:56.192266pt;}
.h3_c00214{height:60.968367pt;}
.h0_c00214{height:1122.666667pt;}
.w0_c00214{width:793.333333pt;}
.x0_c00214{left:0.000000pt;}
.x2_c00214{left:73.520052pt;}
.x1_c00214{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_43f38bd3926c29b40f61c34e.woff2')format("woff");}.ff1_c00215{font-family:ff1_c00215;line-height:1.106934;font-style:normal;font-weight:normal;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_37b4da673551dae7e1cfa04f.woff2')format("woff");}.ff2_c00215{font-family:ff2_c00215;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00215;src:url('chunks/assets/font_9217fe35edbec72cbaca4b1a.woff2')format("woff");}.ff3_c00215{font-family:ff3_c00215;line-height:0.892090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00215;src:url('chunks/assets/font_af62f9049d184d0355e92726.woff2')format("woff");}.ff4_c00215{font-family:ff4_c00215;line-height:1.104492;font-style:normal;font-weight:normal;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_4c59b2fc0b0f6c62ddc3fa41.woff2')format("woff");}.ff5_c00215{font-family:ff5_c00215;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00215;src:url('chunks/assets/font_311d9ee85c53779b22f9ea15.woff2')format("woff");}.ff6_c00215{font-family:ff6_c00215;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00215;src:url('chunks/assets/font_4d30c4a78f53a14375081d3f.woff2')format("woff");}.ff7_c00215{font-family:ff7_c00215;line-height:1.133301;font-style:normal;font-weight: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_c00215;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff8_c00215{font-family:ff8_c00215;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00215;src:url('chunks/assets/font_c2d0a549e34b9efc7f727297.woff2')format("woff");}.ff9_c00215{font-family:ff9_c00215;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00215{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00215{vertical-align:-14.760000px;}
.v0_c00215{vertical-align:0.000000px;}
.v1_c00215{vertical-align:32.049882px;}
.ls1c_c00215{letter-spacing:-0.707443px;}
.ls1e_c00215{letter-spacing:-0.368338px;}
.ls16_c00215{letter-spacing:-0.309872px;}
.ls1a_c00215{letter-spacing:-0.192939px;}
.ls15_c00215{letter-spacing:-0.146166px;}
.ls10_c00215{letter-spacing:-0.112032px;}
.lsc_c00215{letter-spacing:-0.106360px;}
.ls14_c00215{letter-spacing:-0.075619px;}
.ls19_c00215{letter-spacing:-0.064313px;}
.ls8_c00215{letter-spacing:-0.063018px;}
.ls12_c00215{letter-spacing:-0.056016px;}
.ls1d_c00215{letter-spacing:-0.052620px;}
.lse_c00215{letter-spacing:-0.049014px;}
.ls13_c00215{letter-spacing:-0.042012px;}
.lsb_c00215{letter-spacing:-0.037986px;}
.ls11_c00215{letter-spacing:-0.028008px;}
.lsa_c00215{letter-spacing:-0.021006px;}
.lsd_c00215{letter-spacing:-0.014004px;}
.lsf_c00215{letter-spacing:-0.007002px;}
.ls1f_c00215{letter-spacing:-0.005847px;}
.ls9_c00215{letter-spacing:0.000000px;}
.ls6_c00215{letter-spacing:0.005847px;}
.ls1_c00215{letter-spacing:0.007002px;}
.ls18_c00215{letter-spacing:0.011693px;}
.ls3_c00215{letter-spacing:0.014004px;}
.ls4_c00215{letter-spacing:0.023281px;}
.ls2_c00215{letter-spacing:0.028008px;}
.ls5_c00215{letter-spacing:0.029233px;}
.ls1b_c00215{letter-spacing:0.076006px;}
.ls0_c00215{letter-spacing:0.329094px;}
.ls7_c00215{letter-spacing:0.362492px;}
.ls17_c00215{letter-spacing:0.374185px;}
.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:-70.020000px;}
.ws4_c00215{word-spacing:-58.466400px;}
.ws1_c00215{word-spacing:-19.437552px;}
.ws8_c00215{word-spacing:-16.195193px;}
.ws5_c00215{word-spacing:-16.130880px;}
.ws6_c00215{word-spacing:-15.826854px;}
.ws2_c00215{word-spacing:-12.967628px;}
.ws3_c00215{word-spacing:-10.397640px;}
.ws7_c00215{word-spacing:-0.058466px;}
.ws9_c00215{word-spacing:0.000000px;}
.wsc_c00215{word-spacing:0.007002px;}
.ws1d_c00215{word-spacing:0.014004px;}
.ws2e_c00215{word-spacing:0.017540px;}
.wsd_c00215{word-spacing:0.167137px;}
.ws1b_c00215{word-spacing:0.693198px;}
.ws1c_c00215{word-spacing:0.728208px;}
.ws29_c00215{word-spacing:1.736452px;}
.ws28_c00215{word-spacing:2.005398px;}
.ws25_c00215{word-spacing:2.145717px;}
.ws24_c00215{word-spacing:2.321116px;}
.ws26_c00215{word-spacing:2.484822px;}
.ws27_c00215{word-spacing:2.841467px;}
.wsb_c00215{word-spacing:2.884824px;}
.ws21_c00215{word-spacing:3.599028px;}
.ws11_c00215{word-spacing:3.956130px;}
.ws12_c00215{word-spacing:3.970134px;}
.ws13_c00215{word-spacing:4.061160px;}
.ws14_c00215{word-spacing:5.398542px;}
.ws16_c00215{word-spacing:5.412546px;}
.ws15_c00215{word-spacing:5.433552px;}
.ws10_c00215{word-spacing:5.762646px;}
.ws1e_c00215{word-spacing:7.947270px;}
.ws1f_c00215{word-spacing:8.297370px;}
.ws20_c00215{word-spacing:8.332380px;}
.ws2a_c00215{word-spacing:9.208458px;}
.ws2b_c00215{word-spacing:9.728809px;}
.ws2d_c00215{word-spacing:9.787275px;}
.ws19_c00215{word-spacing:10.397970px;}
.ws2c_c00215{word-spacing:10.442099px;}
.ws1a_c00215{word-spacing:10.481994px;}
.wse_c00215{word-spacing:14.046012px;}
.ws22_c00215{word-spacing:18.723348px;}
.ws23_c00215{word-spacing:18.730350px;}
.ws17_c00215{word-spacing:21.951270px;}
.wsa_c00215{word-spacing:22.329378px;}
.wsf_c00215{word-spacing:25.935408px;}
.ws18_c00215{word-spacing:28.421118px;}
._4_c00215{margin-left:-2.693772px;}
._1_c00215{margin-left:-1.299111px;}
._0_c00215{width:1.022292px;}
._2_c00215{width:3.458988px;}
._3_c00215{width:5.930694px;}
.fc0_c00215{color:rgb(0,0,0);}
.fs3_c00215{font-size:37.809600px;}
.fs2_c00215{font-size:46.562400px;}
.fs4_c00215{font-size:58.466400px;}
.fs0_c00215{font-size:70.020000px;}
.fs1_c00215{font-size:75.971400px;}
.y0_c00215{bottom:0.000000px;}
.y2_c00215{bottom:109.740968px;}
.y1_c00215{bottom:129.810450px;}
.y1e_c00215{bottom:149.428990px;}
.y1d_c00215{bottom:167.249548px;}
.y1c_c00215{bottom:185.249891px;}
.y1b_c00215{bottom:206.760450px;}
.y1a_c00215{bottom:221.428132px;}
.y19_c00215{bottom:291.178556px;}
.y18_c00215{bottom:321.418443px;}
.y17_c00215{bottom:351.569055px;}
.y16_c00215{bottom:402.149752px;}
.y15_c00215{bottom:452.727980px;}
.y14_c00215{bottom:482.967867px;}
.y13_c00215{bottom:513.207754px;}
.y12_c00215{bottom:543.358367px;}
.y11_c00215{bottom:593.939064px;}
.y10_c00215{bottom:624.268227px;}
.yf_c00215{bottom:654.418839px;}
.ye_c00215{bottom:684.569451px;}
.yd_c00215{bottom:714.720063px;}
.yc_c00215{bottom:744.959950px;}
.yb_c00215{bottom:775.110563px;}
.ya_c00215{bottom:805.350450px;}
.y9_c00215{bottom:846.210450px;}
.y8_c00215{bottom:898.139910px;}
.y7_c00215{bottom:948.720608px;}
.y6_c00215{bottom:999.390581px;}
.y5_c00215{bottom:1049.971278px;}
.y4_c00215{bottom:1080.300441px;}
.y3_c00215{bottom:1110.451053px;}
.h7_c00215{height:39.338549px;}
.h8_c00215{height:54.098549px;}
.h4_c00215{height:62.600889px;}
.h1_c00215{height:62.771836px;}
.h6_c00215{height:62.781106px;}
.h2_c00215{height:63.216299px;}
.h3_c00215{height:68.589413px;}
.h5_c00215{height:73.678668px;}
.h0_c00215{height:1263.000000px;}
.w0_c00215{width:892.500000px;}
.x0_c00215{left:0.000000px;}
.x2_c00215{left:82.710059px;}
.x3_c00215{left:100.260014px;}
.x1_c00215{left:431.730000px;}
@media print{
.v2_c00215{vertical-align:-13.120000pt;}
.v0_c00215{vertical-align:0.000000pt;}
.v1_c00215{vertical-align:28.488784pt;}
.ls1c_c00215{letter-spacing:-0.628839pt;}
.ls1e_c00215{letter-spacing:-0.327412pt;}
.ls16_c00215{letter-spacing:-0.275442pt;}
.ls1a_c00215{letter-spacing:-0.171501pt;}
.ls15_c00215{letter-spacing:-0.129925pt;}
.ls10_c00215{letter-spacing:-0.099584pt;}
.lsc_c00215{letter-spacing:-0.094542pt;}
.ls14_c00215{letter-spacing:-0.067217pt;}
.ls19_c00215{letter-spacing:-0.057167pt;}
.ls8_c00215{letter-spacing:-0.056016pt;}
.ls12_c00215{letter-spacing:-0.049792pt;}
.ls1d_c00215{letter-spacing:-0.046773pt;}
.lse_c00215{letter-spacing:-0.043568pt;}
.ls13_c00215{letter-spacing:-0.037344pt;}
.lsb_c00215{letter-spacing:-0.033765pt;}
.ls11_c00215{letter-spacing:-0.024896pt;}
.lsa_c00215{letter-spacing:-0.018672pt;}
.lsd_c00215{letter-spacing:-0.012448pt;}
.lsf_c00215{letter-spacing:-0.006224pt;}
.ls1f_c00215{letter-spacing:-0.005197pt;}
.ls9_c00215{letter-spacing:0.000000pt;}
.ls6_c00215{letter-spacing:0.005197pt;}
.ls1_c00215{letter-spacing:0.006224pt;}
.ls18_c00215{letter-spacing:0.010394pt;}
.ls3_c00215{letter-spacing:0.012448pt;}
.ls4_c00215{letter-spacing:0.020694pt;}
.ls2_c00215{letter-spacing:0.024896pt;}
.ls5_c00215{letter-spacing:0.025985pt;}
.ls1b_c00215{letter-spacing:0.067561pt;}
.ls0_c00215{letter-spacing:0.292528pt;}
.ls7_c00215{letter-spacing:0.322215pt;}
.ls17_c00215{letter-spacing:0.332609pt;}
.ws0_c00215{word-spacing:-62.240000pt;}
.ws4_c00215{word-spacing:-51.970133pt;}
.ws1_c00215{word-spacing:-17.277824pt;}
.ws8_c00215{word-spacing:-14.395727pt;}
.ws5_c00215{word-spacing:-14.338560pt;}
.ws6_c00215{word-spacing:-14.068315pt;}
.ws2_c00215{word-spacing:-11.526781pt;}
.ws3_c00215{word-spacing:-9.242347pt;}
.ws7_c00215{word-spacing:-0.051970pt;}
.ws9_c00215{word-spacing:0.000000pt;}
.wsc_c00215{word-spacing:0.006224pt;}
.ws1d_c00215{word-spacing:0.012448pt;}
.ws2e_c00215{word-spacing:0.015591pt;}
.wsd_c00215{word-spacing:0.148566pt;}
.ws1b_c00215{word-spacing:0.616176pt;}
.ws1c_c00215{word-spacing:0.647296pt;}
.ws29_c00215{word-spacing:1.543513pt;}
.ws28_c00215{word-spacing:1.782576pt;}
.ws25_c00215{word-spacing:1.907304pt;}
.ws24_c00215{word-spacing:2.063214pt;}
.ws26_c00215{word-spacing:2.208731pt;}
.ws27_c00215{word-spacing:2.525748pt;}
.wsb_c00215{word-spacing:2.564288pt;}
.ws21_c00215{word-spacing:3.199136pt;}
.ws11_c00215{word-spacing:3.516560pt;}
.ws12_c00215{word-spacing:3.529008pt;}
.ws13_c00215{word-spacing:3.609920pt;}
.ws14_c00215{word-spacing:4.798704pt;}
.ws16_c00215{word-spacing:4.811152pt;}
.ws15_c00215{word-spacing:4.829824pt;}
.ws10_c00215{word-spacing:5.122352pt;}
.ws1e_c00215{word-spacing:7.064240pt;}
.ws1f_c00215{word-spacing:7.375440pt;}
.ws20_c00215{word-spacing:7.406560pt;}
.ws2a_c00215{word-spacing:8.185296pt;}
.ws2b_c00215{word-spacing:8.647830pt;}
.ws2d_c00215{word-spacing:8.699800pt;}
.ws19_c00215{word-spacing:9.242640pt;}
.ws2c_c00215{word-spacing:9.281866pt;}
.ws1a_c00215{word-spacing:9.317328pt;}
.wse_c00215{word-spacing:12.485344pt;}
.ws22_c00215{word-spacing:16.642976pt;}
.ws23_c00215{word-spacing:16.649200pt;}
.ws17_c00215{word-spacing:19.512240pt;}
.wsa_c00215{word-spacing:19.848336pt;}
.wsf_c00215{word-spacing:23.053696pt;}
.ws18_c00215{word-spacing:25.263216pt;}
._4_c00215{margin-left:-2.394464pt;}
._1_c00215{margin-left:-1.154765pt;}
._0_c00215{width:0.908704pt;}
._2_c00215{width:3.074656pt;}
._3_c00215{width:5.271728pt;}
.fs3_c00215{font-size:33.608533pt;}
.fs2_c00215{font-size:41.388800pt;}
.fs4_c00215{font-size:51.970133pt;}
.fs0_c00215{font-size:62.240000pt;}
.fs1_c00215{font-size:67.530133pt;}
.y0_c00215{bottom:0.000000pt;}
.y2_c00215{bottom:97.547527pt;}
.y1_c00215{bottom:115.387067pt;}
.y1e_c00215{bottom:132.825769pt;}
.y1d_c00215{bottom:148.666265pt;}
.y1c_c00215{bottom:164.666570pt;}
.y1b_c00215{bottom:183.787067pt;}
.y1a_c00215{bottom:196.825007pt;}
.y19_c00215{bottom:258.825383pt;}
.y18_c00215{bottom:285.705283pt;}
.y17_c00215{bottom:312.505827pt;}
.y16_c00215{bottom:357.466447pt;}
.y15_c00215{bottom:402.424871pt;}
.y14_c00215{bottom:429.304771pt;}
.y13_c00215{bottom:456.184671pt;}
.y12_c00215{bottom:482.985215pt;}
.y11_c00215{bottom:527.945835pt;}
.y10_c00215{bottom:554.905091pt;}
.yf_c00215{bottom:581.705635pt;}
.ye_c00215{bottom:608.506179pt;}
.yd_c00215{bottom:635.306723pt;}
.yc_c00215{bottom:662.186623pt;}
.yb_c00215{bottom:688.987167pt;}
.ya_c00215{bottom:715.867067pt;}
.y9_c00215{bottom:752.187067pt;}
.y8_c00215{bottom:798.346587pt;}
.y7_c00215{bottom:843.307207pt;}
.y6_c00215{bottom:888.347183pt;}
.y5_c00215{bottom:933.307803pt;}
.y4_c00215{bottom:960.267059pt;}
.y3_c00215{bottom:987.067603pt;}
.h7_c00215{height:34.967599pt;}
.h8_c00215{height:48.087599pt;}
.h4_c00215{height:55.645234pt;}
.h1_c00215{height:55.797187pt;}
.h6_c00215{height:55.805428pt;}
.h2_c00215{height:56.192266pt;}
.h3_c00215{height:60.968367pt;}
.h5_c00215{height:65.492150pt;}
.h0_c00215{height:1122.666667pt;}
.w0_c00215{width:793.333333pt;}
.x0_c00215{left:0.000000pt;}
.x2_c00215{left:73.520052pt;}
.x3_c00215{left:89.120012pt;}
.x1_c00215{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_00cc375d93c38220c52ddfa5.woff2')format("woff");}.ff1_c00216{font-family:ff1_c00216;line-height:1.106934;font-style:normal;font-weight:normal;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_7b71b238d9f1f55dd8dcfa58.woff2')format("woff");}.ff2_c00216{font-family:ff2_c00216;line-height:0.892090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00216;src:url('chunks/assets/font_71f4419739fd18aeb8508b0e.woff2')format("woff");}.ff3_c00216{font-family:ff3_c00216;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00216{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00216{vertical-align:0.000000px;}
.ls1_c00216{letter-spacing:-0.063018px;}
.ls4_c00216{letter-spacing:-0.056016px;}
.lsa_c00216{letter-spacing:-0.049014px;}
.ls6_c00216{letter-spacing:-0.042012px;}
.ls8_c00216{letter-spacing:-0.035010px;}
.ls5_c00216{letter-spacing:-0.028008px;}
.ls3_c00216{letter-spacing:-0.021006px;}
.ls9_c00216{letter-spacing:-0.014004px;}
.ls7_c00216{letter-spacing:-0.007002px;}
.ls2_c00216{letter-spacing:0.000000px;}
.ls0_c00216{letter-spacing:0.217062px;}
.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;}
}
.ws13_c00216{word-spacing:-0.007002px;}
.ws0_c00216{word-spacing:0.000000px;}
.wsc_c00216{word-spacing:0.035010px;}
.ws10_c00216{word-spacing:0.364104px;}
.ws7_c00216{word-spacing:0.371106px;}
.ws2_c00216{word-spacing:0.399114px;}
.ws1_c00216{word-spacing:0.728208px;}
.ws12_c00216{word-spacing:3.248928px;}
.ws6_c00216{word-spacing:6.483852px;}
.wsa_c00216{word-spacing:12.596598px;}
.ws9_c00216{word-spacing:12.624606px;}
.ws5_c00216{word-spacing:15.845526px;}
.ws4_c00216{word-spacing:15.866532px;}
.wse_c00216{word-spacing:21.258072px;}
.wsb_c00216{word-spacing:21.951270px;}
.wsd_c00216{word-spacing:22.308372px;}
.ws11_c00216{word-spacing:23.022576px;}
.wsf_c00216{word-spacing:25.550298px;}
.ws3_c00216{word-spacing:33.497568px;}
.ws8_c00216{word-spacing:34.190766px;}
._2_c00216{margin-left:-22.322376px;}
._1_c00216{margin-left:-1.120320px;}
._0_c00216{width:1.022292px;}
.fc0_c00216{color:rgb(0,0,0);}
.fs0_c00216{font-size:70.020000px;}
.y0_c00216{bottom:0.000000px;}
.y2_c00216{bottom:109.740968px;}
.y1_c00216{bottom:129.810450px;}
.y1a_c00216{bottom:191.277507px;}
.y19_c00216{bottom:241.858205px;}
.y18_c00216{bottom:292.528178px;}
.y17_c00216{bottom:343.108875px;}
.y16_c00216{bottom:393.689573px;}
.y15_c00216{bottom:444.359546px;}
.y14_c00216{bottom:495.029519px;}
.y13_c00216{bottom:545.610216px;}
.y12_c00216{bottom:575.850104px;}
.y11_c00216{bottom:606.089991px;}
.y10_c00216{bottom:656.579663px;}
.yf_c00216{bottom:686.819550px;}
.ye_c00216{bottom:717.059438px;}
.yd_c00216{bottom:747.210050px;}
.yc_c00216{bottom:797.790747px;}
.yb_c00216{bottom:828.119910px;}
.ya_c00216{bottom:858.270522px;}
.y9_c00216{bottom:888.510410px;}
.y8_c00216{bottom:939.000081px;}
.y7_c00216{bottom:969.239969px;}
.y6_c00216{bottom:999.479856px;}
.y5_c00216{bottom:1029.630468px;}
.y4_c00216{bottom:1080.211166px;}
.y3_c00216{bottom:1110.451053px;}
.h1_c00216{height:62.771836px;}
.h2_c00216{height:63.216299px;}
.h0_c00216{height:1263.000000px;}
.w0_c00216{width:892.500000px;}
.x0_c00216{left:0.000000px;}
.x2_c00216{left:82.710059px;}
.x1_c00216{left:431.730000px;}
@media print{
.v0_c00216{vertical-align:0.000000pt;}
.ls1_c00216{letter-spacing:-0.056016pt;}
.ls4_c00216{letter-spacing:-0.049792pt;}
.lsa_c00216{letter-spacing:-0.043568pt;}
.ls6_c00216{letter-spacing:-0.037344pt;}
.ls8_c00216{letter-spacing:-0.031120pt;}
.ls5_c00216{letter-spacing:-0.024896pt;}
.ls3_c00216{letter-spacing:-0.018672pt;}
.ls9_c00216{letter-spacing:-0.012448pt;}
.ls7_c00216{letter-spacing:-0.006224pt;}
.ls2_c00216{letter-spacing:0.000000pt;}
.ls0_c00216{letter-spacing:0.192944pt;}
.ws13_c00216{word-spacing:-0.006224pt;}
.ws0_c00216{word-spacing:0.000000pt;}
.wsc_c00216{word-spacing:0.031120pt;}
.ws10_c00216{word-spacing:0.323648pt;}
.ws7_c00216{word-spacing:0.329872pt;}
.ws2_c00216{word-spacing:0.354768pt;}
.ws1_c00216{word-spacing:0.647296pt;}
.ws12_c00216{word-spacing:2.887936pt;}
.ws6_c00216{word-spacing:5.763424pt;}
.wsa_c00216{word-spacing:11.196976pt;}
.ws9_c00216{word-spacing:11.221872pt;}
.ws5_c00216{word-spacing:14.084912pt;}
.ws4_c00216{word-spacing:14.103584pt;}
.wse_c00216{word-spacing:18.896064pt;}
.wsb_c00216{word-spacing:19.512240pt;}
.wsd_c00216{word-spacing:19.829664pt;}
.ws11_c00216{word-spacing:20.464512pt;}
.wsf_c00216{word-spacing:22.711376pt;}
.ws3_c00216{word-spacing:29.775616pt;}
.ws8_c00216{word-spacing:30.391792pt;}
._2_c00216{margin-left:-19.842112pt;}
._1_c00216{margin-left:-0.995840pt;}
._0_c00216{width:0.908704pt;}
.fs0_c00216{font-size:62.240000pt;}
.y0_c00216{bottom:0.000000pt;}
.y2_c00216{bottom:97.547527pt;}
.y1_c00216{bottom:115.387067pt;}
.y1a_c00216{bottom:170.024451pt;}
.y19_c00216{bottom:214.985071pt;}
.y18_c00216{bottom:260.025047pt;}
.y17_c00216{bottom:304.985667pt;}
.y16_c00216{bottom:349.946287pt;}
.y15_c00216{bottom:394.986263pt;}
.y14_c00216{bottom:440.026239pt;}
.y13_c00216{bottom:484.986859pt;}
.y12_c00216{bottom:511.866759pt;}
.y11_c00216{bottom:538.746659pt;}
.y10_c00216{bottom:583.626367pt;}
.yf_c00216{bottom:610.506267pt;}
.ye_c00216{bottom:637.386167pt;}
.yd_c00216{bottom:664.186711pt;}
.yc_c00216{bottom:709.147331pt;}
.yb_c00216{bottom:736.106587pt;}
.ya_c00216{bottom:762.907131pt;}
.y9_c00216{bottom:789.787031pt;}
.y8_c00216{bottom:834.666739pt;}
.y7_c00216{bottom:861.546639pt;}
.y6_c00216{bottom:888.426539pt;}
.y5_c00216{bottom:915.227083pt;}
.y4_c00216{bottom:960.187703pt;}
.y3_c00216{bottom:987.067603pt;}
.h1_c00216{height:55.797187pt;}
.h2_c00216{height:56.192266pt;}
.h0_c00216{height:1122.666667pt;}
.w0_c00216{width:793.333333pt;}
.x0_c00216{left:0.000000pt;}
.x2_c00216{left:73.520052pt;}
.x1_c00216{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8c45d95795c0831c3b9178dd.woff2')format("woff");}.ff1_c00217{font-family:ff1_c00217;line-height:1.106934;font-style:normal;font-weight:normal;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_70f8afcede3ffa9a2b4c973b.woff2')format("woff");}.ff2_c00217{font-family:ff2_c00217;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00217{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00217{vertical-align:0.000000px;}
.ls4_c00217{letter-spacing:-0.083569px;}
.ls2_c00217{letter-spacing:-0.063018px;}
.lsa_c00217{letter-spacing:-0.049014px;}
.lsb_c00217{letter-spacing:-0.042012px;}
.ls7_c00217{letter-spacing:-0.035010px;}
.ls8_c00217{letter-spacing:-0.028008px;}
.ls9_c00217{letter-spacing:-0.021006px;}
.ls5_c00217{letter-spacing:-0.014004px;}
.ls6_c00217{letter-spacing:-0.007002px;}
.ls3_c00217{letter-spacing:0.000000px;}
.ls0_c00217{letter-spacing:0.007002px;}
.ls1_c00217{letter-spacing:0.021006px;}
.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:-0.022791px;}
.ws0_c00217{word-spacing:0.000000px;}
.ws8_c00217{word-spacing:0.014004px;}
.wsd_c00217{word-spacing:0.035010px;}
.ws13_c00217{word-spacing:0.392112px;}
.ws9_c00217{word-spacing:5.041440px;}
.wsa_c00217{word-spacing:5.062446px;}
.ws6_c00217{word-spacing:6.490854px;}
.ws5_c00217{word-spacing:6.497856px;}
.wsf_c00217{word-spacing:6.840954px;}
.ws12_c00217{word-spacing:6.868962px;}
.ws4_c00217{word-spacing:8.976564px;}
.wsc_c00217{word-spacing:8.983566px;}
.ws7_c00217{word-spacing:10.103886px;}
.wse_c00217{word-spacing:11.847384px;}
.wsb_c00217{word-spacing:16.566732px;}
.ws11_c00217{word-spacing:32.755356px;}
.ws10_c00217{word-spacing:32.783364px;}
.ws2_c00217{word-spacing:34.918974px;}
.ws3_c00217{word-spacing:39.953412px;}
._1_c00217{margin-left:-14.396112px;}
._2_c00217{margin-left:-1.260360px;}
._0_c00217{width:1.177557px;}
._4_c00217{width:11.875392px;}
._3_c00217{width:14.760216px;}
.fc0_c00217{color:rgb(0,0,0);}
.fs0_c00217{font-size:70.020000px;}
.fs1_c00217{font-size:75.971400px;}
.y0_c00217{bottom:0.000000px;}
.y2_c00217{bottom:109.740968px;}
.y1_c00217{bottom:129.810450px;}
.y1c_c00217{bottom:162.747323px;}
.y1b_c00217{bottom:201.716954px;}
.y1a_c00217{bottom:240.506283px;}
.y19_c00217{bottom:291.086981px;}
.y18_c00217{bottom:341.756954px;}
.y17_c00217{bottom:371.996841px;}
.y16_c00217{bottom:402.236729px;}
.y15_c00217{bottom:432.387341px;}
.y14_c00217{bottom:462.627228px;}
.y13_c00217{bottom:492.777840px;}
.y12_c00217{bottom:523.017728px;}
.y11_c00217{bottom:553.168340px;}
.y10_c00217{bottom:583.408227px;}
.yf_c00217{bottom:613.558839px;}
.ye_c00217{bottom:643.798727px;}
.yd_c00217{bottom:673.949338px;}
.yc_c00217{bottom:704.189226px;}
.yb_c00217{bottom:734.339838px;}
.ya_c00217{bottom:764.490450px;}
.y9_c00217{bottom:805.350450px;}
.y8_c00217{bottom:857.279739px;}
.y7_c00217{bottom:907.949712px;}
.y6_c00217{bottom:958.530410px;}
.y5_c00217{bottom:1009.111107px;}
.y4_c00217{bottom:1059.781080px;}
.y3_c00217{bottom:1110.361778px;}
.h1_c00217{height:62.771836px;}
.h2_c00217{height:63.216299px;}
.h3_c00217{height:68.589413px;}
.h0_c00217{height:1263.000000px;}
.w0_c00217{width:892.500000px;}
.x0_c00217{left:0.000000px;}
.x2_c00217{left:82.710059px;}
.x3_c00217{left:108.810000px;}
.x4_c00217{left:134.820680px;}
.x1_c00217{left:431.730000px;}
@media print{
.v0_c00217{vertical-align:0.000000pt;}
.ls4_c00217{letter-spacing:-0.074283pt;}
.ls2_c00217{letter-spacing:-0.056016pt;}
.lsa_c00217{letter-spacing:-0.043568pt;}
.lsb_c00217{letter-spacing:-0.037344pt;}
.ls7_c00217{letter-spacing:-0.031120pt;}
.ls8_c00217{letter-spacing:-0.024896pt;}
.ls9_c00217{letter-spacing:-0.018672pt;}
.ls5_c00217{letter-spacing:-0.012448pt;}
.ls6_c00217{letter-spacing:-0.006224pt;}
.ls3_c00217{letter-spacing:0.000000pt;}
.ls0_c00217{letter-spacing:0.006224pt;}
.ls1_c00217{letter-spacing:0.018672pt;}
.ws1_c00217{word-spacing:-0.020259pt;}
.ws0_c00217{word-spacing:0.000000pt;}
.ws8_c00217{word-spacing:0.012448pt;}
.wsd_c00217{word-spacing:0.031120pt;}
.ws13_c00217{word-spacing:0.348544pt;}
.ws9_c00217{word-spacing:4.481280pt;}
.wsa_c00217{word-spacing:4.499952pt;}
.ws6_c00217{word-spacing:5.769648pt;}
.ws5_c00217{word-spacing:5.775872pt;}
.wsf_c00217{word-spacing:6.080848pt;}
.ws12_c00217{word-spacing:6.105744pt;}
.ws4_c00217{word-spacing:7.979168pt;}
.wsc_c00217{word-spacing:7.985392pt;}
.ws7_c00217{word-spacing:8.981232pt;}
.wse_c00217{word-spacing:10.531008pt;}
.wsb_c00217{word-spacing:14.725984pt;}
.ws11_c00217{word-spacing:29.115872pt;}
.ws10_c00217{word-spacing:29.140768pt;}
.ws2_c00217{word-spacing:31.039088pt;}
.ws3_c00217{word-spacing:35.514144pt;}
._1_c00217{margin-left:-12.796544pt;}
._2_c00217{margin-left:-1.120320pt;}
._0_c00217{width:1.046717pt;}
._4_c00217{width:10.555904pt;}
._3_c00217{width:13.120192pt;}
.fs0_c00217{font-size:62.240000pt;}
.fs1_c00217{font-size:67.530133pt;}
.y0_c00217{bottom:0.000000pt;}
.y2_c00217{bottom:97.547527pt;}
.y1_c00217{bottom:115.387067pt;}
.y1c_c00217{bottom:144.664287pt;}
.y1b_c00217{bottom:179.303959pt;}
.y1a_c00217{bottom:213.783363pt;}
.y19_c00217{bottom:258.743983pt;}
.y18_c00217{bottom:303.783959pt;}
.y17_c00217{bottom:330.663859pt;}
.y16_c00217{bottom:357.543759pt;}
.y15_c00217{bottom:384.344303pt;}
.y14_c00217{bottom:411.224203pt;}
.y13_c00217{bottom:438.024747pt;}
.y12_c00217{bottom:464.904647pt;}
.y11_c00217{bottom:491.705191pt;}
.y10_c00217{bottom:518.585091pt;}
.yf_c00217{bottom:545.385635pt;}
.ye_c00217{bottom:572.265535pt;}
.yd_c00217{bottom:599.066079pt;}
.yc_c00217{bottom:625.945979pt;}
.yb_c00217{bottom:652.746523pt;}
.ya_c00217{bottom:679.547067pt;}
.y9_c00217{bottom:715.867067pt;}
.y8_c00217{bottom:762.026435pt;}
.y7_c00217{bottom:807.066411pt;}
.y6_c00217{bottom:852.027031pt;}
.y5_c00217{bottom:896.987651pt;}
.y4_c00217{bottom:942.027627pt;}
.y3_c00217{bottom:986.988247pt;}
.h1_c00217{height:55.797187pt;}
.h2_c00217{height:56.192266pt;}
.h3_c00217{height:60.968367pt;}
.h0_c00217{height:1122.666667pt;}
.w0_c00217{width:793.333333pt;}
.x0_c00217{left:0.000000pt;}
.x2_c00217{left:73.520052pt;}
.x3_c00217{left:96.720000pt;}
.x4_c00217{left:119.840604pt;}
.x1_c00217{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e3cc0e9cc06ef1d3c18f2d7b.woff2')format("woff");}.ff1_c00218{font-family:ff1_c00218;line-height:1.106934;font-style:normal;font-weight:normal;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_bcbc167fd4c17805c0e91bb1.woff2')format("woff");}.ff2_c00218{font-family:ff2_c00218;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00218{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00218{vertical-align:0.000000px;}
.lsa_c00218{letter-spacing:-0.151943px;}
.ls8_c00218{letter-spacing:-0.133038px;}
.ls7_c00218{letter-spacing:-0.119034px;}
.ls5_c00218{letter-spacing:-0.063018px;}
.lsc_c00218{letter-spacing:-0.049014px;}
.lsb_c00218{letter-spacing:-0.035010px;}
.lsd_c00218{letter-spacing:-0.028008px;}
.ls10_c00218{letter-spacing:-0.021006px;}
.lsf_c00218{letter-spacing:-0.014004px;}
.lse_c00218{letter-spacing:-0.007002px;}
.ls6_c00218{letter-spacing:0.000000px;}
.ls4_c00218{letter-spacing:0.007002px;}
.ls2_c00218{letter-spacing:0.014004px;}
.ls3_c00218{letter-spacing:0.042012px;}
.ls1_c00218{letter-spacing:0.119034px;}
.ls9_c00218{letter-spacing:0.154044px;}
.ls0_c00218{letter-spacing:0.196056px;}
.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;}
}
.ws5_c00218{word-spacing:-0.168048px;}
.ws10_c00218{word-spacing:-0.056016px;}
.ws0_c00218{word-spacing:0.000000px;}
.ws11_c00218{word-spacing:0.014004px;}
.ws6_c00218{word-spacing:0.189929px;}
.wsd_c00218{word-spacing:0.378108px;}
.ws18_c00218{word-spacing:0.700200px;}
.ws17_c00218{word-spacing:0.721206px;}
.wse_c00218{word-spacing:1.071306px;}
.ws9_c00218{word-spacing:2.128608px;}
.ws8_c00218{word-spacing:2.198628px;}
.wsa_c00218{word-spacing:3.571020px;}
.wsf_c00218{word-spacing:7.184052px;}
.ws2_c00218{word-spacing:9.151614px;}
.wsb_c00218{word-spacing:10.453986px;}
.wsc_c00218{word-spacing:10.790082px;}
.ws7_c00218{word-spacing:12.981708px;}
.ws15_c00218{word-spacing:15.824520px;}
.ws16_c00218{word-spacing:15.845526px;}
.ws12_c00218{word-spacing:17.624034px;}
.ws13_c00218{word-spacing:23.386680px;}
.ws14_c00218{word-spacing:23.400684px;}
.ws3_c00218{word-spacing:24.345954px;}
.ws4_c00218{word-spacing:40.079448px;}
.ws1_c00218{word-spacing:42.222060px;}
._1_c00218{margin-left:-1.295370px;}
._0_c00218{width:1.239354px;}
.fc0_c00218{color:rgb(0,0,0);}
.fs0_c00218{font-size:70.020000px;}
.fs1_c00218{font-size:75.971400px;}
.y0_c00218{bottom:0.000000px;}
.y2_c00218{bottom:109.740968px;}
.y1_c00218{bottom:129.810450px;}
.y20_c00218{bottom:162.298092px;}
.y1f_c00218{bottom:192.448704px;}
.y1e_c00218{bottom:222.688591px;}
.y1d_c00218{bottom:252.928479px;}
.y1c_c00218{bottom:283.079091px;}
.y1b_c00218{bottom:321.959446px;}
.y1a_c00218{bottom:360.929077px;}
.y19_c00218{bottom:391.079689px;}
.y18_c00218{bottom:421.319577px;}
.y17_c00218{bottom:451.470189px;}
.y16_c00218{bottom:490.439820px;}
.y15_c00218{bottom:529.409451px;}
.y14_c00218{bottom:559.560063px;}
.y13_c00218{bottom:589.799950px;}
.y12_c00218{bottom:619.950562px;}
.y11_c00218{bottom:650.190450px;}
.y10_c00218{bottom:674.940450px;}
.yf_c00218{bottom:723.993168px;}
.ye_c00218{bottom:748.563186px;}
.yd_c00218{bottom:768.632669px;}
.yc_c00218{bottom:788.793177px;}
.yb_c00218{bottom:808.953686px;}
.ya_c00218{bottom:829.023168px;}
.y9_c00218{bottom:876.722543px;}
.y8_c00218{bottom:915.692174px;}
.y7_c00218{bottom:954.661805px;}
.y6_c00218{bottom:993.631436px;}
.y5_c00218{bottom:1032.601066px;}
.y4_c00218{bottom:1071.481422px;}
.y3_c00218{bottom:1110.451053px;}
.h1_c00218{height:62.771836px;}
.h2_c00218{height:63.216299px;}
.h3_c00218{height:68.589413px;}
.h0_c00218{height:1263.000000px;}
.w0_c00218{width:892.500000px;}
.x0_c00218{left:0.000000px;}
.x2_c00218{left:82.710059px;}
.x1_c00218{left:431.730000px;}
@media print{
.v0_c00218{vertical-align:0.000000pt;}
.lsa_c00218{letter-spacing:-0.135060pt;}
.ls8_c00218{letter-spacing:-0.118256pt;}
.ls7_c00218{letter-spacing:-0.105808pt;}
.ls5_c00218{letter-spacing:-0.056016pt;}
.lsc_c00218{letter-spacing:-0.043568pt;}
.lsb_c00218{letter-spacing:-0.031120pt;}
.lsd_c00218{letter-spacing:-0.024896pt;}
.ls10_c00218{letter-spacing:-0.018672pt;}
.lsf_c00218{letter-spacing:-0.012448pt;}
.lse_c00218{letter-spacing:-0.006224pt;}
.ls6_c00218{letter-spacing:0.000000pt;}
.ls4_c00218{letter-spacing:0.006224pt;}
.ls2_c00218{letter-spacing:0.012448pt;}
.ls3_c00218{letter-spacing:0.037344pt;}
.ls1_c00218{letter-spacing:0.105808pt;}
.ls9_c00218{letter-spacing:0.136928pt;}
.ls0_c00218{letter-spacing:0.174272pt;}
.ws5_c00218{word-spacing:-0.149376pt;}
.ws10_c00218{word-spacing:-0.049792pt;}
.ws0_c00218{word-spacing:0.000000pt;}
.ws11_c00218{word-spacing:0.012448pt;}
.ws6_c00218{word-spacing:0.168825pt;}
.wsd_c00218{word-spacing:0.336096pt;}
.ws18_c00218{word-spacing:0.622400pt;}
.ws17_c00218{word-spacing:0.641072pt;}
.wse_c00218{word-spacing:0.952272pt;}
.ws9_c00218{word-spacing:1.892096pt;}
.ws8_c00218{word-spacing:1.954336pt;}
.wsa_c00218{word-spacing:3.174240pt;}
.wsf_c00218{word-spacing:6.385824pt;}
.ws2_c00218{word-spacing:8.134768pt;}
.wsb_c00218{word-spacing:9.292432pt;}
.wsc_c00218{word-spacing:9.591184pt;}
.ws7_c00218{word-spacing:11.539296pt;}
.ws15_c00218{word-spacing:14.066240pt;}
.ws16_c00218{word-spacing:14.084912pt;}
.ws12_c00218{word-spacing:15.665808pt;}
.ws13_c00218{word-spacing:20.788160pt;}
.ws14_c00218{word-spacing:20.800608pt;}
.ws3_c00218{word-spacing:21.640848pt;}
.ws4_c00218{word-spacing:35.626176pt;}
.ws1_c00218{word-spacing:37.530720pt;}
._1_c00218{margin-left:-1.151440pt;}
._0_c00218{width:1.101648pt;}
.fs0_c00218{font-size:62.240000pt;}
.fs1_c00218{font-size:67.530133pt;}
.y0_c00218{bottom:0.000000pt;}
.y2_c00218{bottom:97.547527pt;}
.y1_c00218{bottom:115.387067pt;}
.y20_c00218{bottom:144.264971pt;}
.y1f_c00218{bottom:171.065515pt;}
.y1e_c00218{bottom:197.945415pt;}
.y1d_c00218{bottom:224.825315pt;}
.y1c_c00218{bottom:251.625859pt;}
.y1b_c00218{bottom:286.186175pt;}
.y1a_c00218{bottom:320.825847pt;}
.y19_c00218{bottom:347.626391pt;}
.y18_c00218{bottom:374.506291pt;}
.y17_c00218{bottom:401.306835pt;}
.y16_c00218{bottom:435.946507pt;}
.y15_c00218{bottom:470.586179pt;}
.y14_c00218{bottom:497.386723pt;}
.y13_c00218{bottom:524.266623pt;}
.y12_c00218{bottom:551.067167pt;}
.y11_c00218{bottom:577.947067pt;}
.y10_c00218{bottom:599.947067pt;}
.yf_c00218{bottom:643.549483pt;}
.ye_c00218{bottom:665.389499pt;}
.yd_c00218{bottom:683.229039pt;}
.yc_c00218{bottom:701.149491pt;}
.yb_c00218{bottom:719.069943pt;}
.ya_c00218{bottom:736.909483pt;}
.y9_c00218{bottom:779.308927pt;}
.y8_c00218{bottom:813.948599pt;}
.y7_c00218{bottom:848.588271pt;}
.y6_c00218{bottom:883.227943pt;}
.y5_c00218{bottom:917.867615pt;}
.y4_c00218{bottom:952.427931pt;}
.y3_c00218{bottom:987.067603pt;}
.h1_c00218{height:55.797187pt;}
.h2_c00218{height:56.192266pt;}
.h3_c00218{height:60.968367pt;}
.h0_c00218{height:1122.666667pt;}
.w0_c00218{width:793.333333pt;}
.x0_c00218{left:0.000000pt;}
.x2_c00218{left:73.520052pt;}
.x1_c00218{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9df1696cc1acd51ad391967d.woff2')format("woff");}.ff1_c00219{font-family:ff1_c00219;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00219;src:url('chunks/assets/font_587da32f32e091c8eebe00b9.woff2')format("woff");}.ff2_c00219{font-family:ff2_c00219;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00219;src:url('chunks/assets/font_71f4419739fd18aeb8508b0e.woff2')format("woff");}.ff3_c00219{font-family:ff3_c00219;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00219{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00219{vertical-align:0.000000px;}
.ls4_c00219{letter-spacing:-0.063018px;}
.lsc_c00219{letter-spacing:-0.056016px;}
.lsa_c00219{letter-spacing:-0.042012px;}
.ls9_c00219{letter-spacing:-0.035010px;}
.lsb_c00219{letter-spacing:-0.028008px;}
.ls8_c00219{letter-spacing:-0.021006px;}
.ls6_c00219{letter-spacing:-0.014004px;}
.ls7_c00219{letter-spacing:-0.007002px;}
.ls5_c00219{letter-spacing:0.000000px;}
.ls1_c00219{letter-spacing:0.028008px;}
.ls3_c00219{letter-spacing:0.049014px;}
.ls0_c00219{letter-spacing:0.273078px;}
.ls2_c00219{letter-spacing:0.630180px;}
.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;}
}
.ws19_c00219{word-spacing:-0.063018px;}
.ws0_c00219{word-spacing:0.000000px;}
.wsd_c00219{word-spacing:0.343098px;}
.ws18_c00219{word-spacing:2.156616px;}
.ws1_c00219{word-spacing:5.027436px;}
.ws3_c00219{word-spacing:5.090454px;}
.ws2_c00219{word-spacing:5.391540px;}
.ws4_c00219{word-spacing:5.405544px;}
.wsc_c00219{word-spacing:6.119748px;}
.wsb_c00219{word-spacing:6.133752px;}
.wsf_c00219{word-spacing:6.147756px;}
.ws10_c00219{word-spacing:8.276364px;}
.ws12_c00219{word-spacing:9.368676px;}
.ws7_c00219{word-spacing:10.439982px;}
.wse_c00219{word-spacing:10.481994px;}
.ws11_c00219{word-spacing:11.511288px;}
.ws17_c00219{word-spacing:12.589596px;}
.ws5_c00219{word-spacing:16.517718px;}
.ws6_c00219{word-spacing:16.559730px;}
.ws16_c00219{word-spacing:17.995140px;}
.ws15_c00219{word-spacing:18.009144px;}
.ws14_c00219{word-spacing:20.480850px;}
.ws13_c00219{word-spacing:20.536866px;}
.wsa_c00219{word-spacing:21.972276px;}
.ws9_c00219{word-spacing:24.507000px;}
.ws8_c00219{word-spacing:24.864102px;}
._2_c00219{margin-left:-15.880536px;}
._1_c00219{margin-left:-1.225350px;}
._0_c00219{width:1.561446px;}
.fc0_c00219{color:rgb(0,0,0);}
.fs0_c00219{font-size:70.020000px;}
.y0_c00219{bottom:0.000000px;}
.y2_c00219{bottom:109.740968px;}
.y1_c00219{bottom:129.810450px;}
.y20_c00219{bottom:168.778331px;}
.y1f_c00219{bottom:198.928943px;}
.y1e_c00219{bottom:229.168830px;}
.y1d_c00219{bottom:259.319442px;}
.y1c_c00219{bottom:289.559329px;}
.y1b_c00219{bottom:319.799217px;}
.y1a_c00219{bottom:349.949829px;}
.y19_c00219{bottom:380.189717px;}
.y18_c00219{bottom:419.070072px;}
.y17_c00219{bottom:463.889874px;}
.y16_c00219{bottom:494.129762px;}
.y15_c00219{bottom:524.280373px;}
.y14_c00219{bottom:554.520261px;}
.y13_c00219{bottom:584.579847px;}
.y12_c00219{bottom:614.819734px;}
.y11_c00219{bottom:644.970346px;}
.y10_c00219{bottom:675.210234px;}
.yf_c00219{bottom:705.360846px;}
.ye_c00219{bottom:735.600733px;}
.yd_c00219{bottom:765.751345px;}
.yc_c00219{bottom:810.571148px;}
.yb_c00219{bottom:855.390950px;}
.ya_c00219{bottom:885.630837px;}
.y9_c00219{bottom:915.781449px;}
.y8_c00219{bottom:946.021336px;}
.y7_c00219{bottom:976.080922px;}
.y6_c00219{bottom:1006.861714px;}
.y5_c00219{bottom:1038.631539px;}
.y4_c00219{bottom:1070.401364px;}
.y3_c00219{bottom:1110.451053px;}
.h1_c00219{height:62.771836px;}
.h2_c00219{height:63.216299px;}
.h0_c00219{height:1263.000000px;}
.w0_c00219{width:892.500000px;}
.x0_c00219{left:0.000000px;}
.x2_c00219{left:82.710059px;}
.x1_c00219{left:431.730000px;}
@media print{
.v0_c00219{vertical-align:0.000000pt;}
.ls4_c00219{letter-spacing:-0.056016pt;}
.lsc_c00219{letter-spacing:-0.049792pt;}
.lsa_c00219{letter-spacing:-0.037344pt;}
.ls9_c00219{letter-spacing:-0.031120pt;}
.lsb_c00219{letter-spacing:-0.024896pt;}
.ls8_c00219{letter-spacing:-0.018672pt;}
.ls6_c00219{letter-spacing:-0.012448pt;}
.ls7_c00219{letter-spacing:-0.006224pt;}
.ls5_c00219{letter-spacing:0.000000pt;}
.ls1_c00219{letter-spacing:0.024896pt;}
.ls3_c00219{letter-spacing:0.043568pt;}
.ls0_c00219{letter-spacing:0.242736pt;}
.ls2_c00219{letter-spacing:0.560160pt;}
.ws19_c00219{word-spacing:-0.056016pt;}
.ws0_c00219{word-spacing:0.000000pt;}
.wsd_c00219{word-spacing:0.304976pt;}
.ws18_c00219{word-spacing:1.916992pt;}
.ws1_c00219{word-spacing:4.468832pt;}
.ws3_c00219{word-spacing:4.524848pt;}
.ws2_c00219{word-spacing:4.792480pt;}
.ws4_c00219{word-spacing:4.804928pt;}
.wsc_c00219{word-spacing:5.439776pt;}
.wsb_c00219{word-spacing:5.452224pt;}
.wsf_c00219{word-spacing:5.464672pt;}
.ws10_c00219{word-spacing:7.356768pt;}
.ws12_c00219{word-spacing:8.327712pt;}
.ws7_c00219{word-spacing:9.279984pt;}
.wse_c00219{word-spacing:9.317328pt;}
.ws11_c00219{word-spacing:10.232256pt;}
.ws17_c00219{word-spacing:11.190752pt;}
.ws5_c00219{word-spacing:14.682416pt;}
.ws6_c00219{word-spacing:14.719760pt;}
.ws16_c00219{word-spacing:15.995680pt;}
.ws15_c00219{word-spacing:16.008128pt;}
.ws14_c00219{word-spacing:18.205200pt;}
.ws13_c00219{word-spacing:18.254992pt;}
.wsa_c00219{word-spacing:19.530912pt;}
.ws9_c00219{word-spacing:21.784000pt;}
.ws8_c00219{word-spacing:22.101424pt;}
._2_c00219{margin-left:-14.116032pt;}
._1_c00219{margin-left:-1.089200pt;}
._0_c00219{width:1.387952pt;}
.fs0_c00219{font-size:62.240000pt;}
.y0_c00219{bottom:0.000000pt;}
.y2_c00219{bottom:97.547527pt;}
.y1_c00219{bottom:115.387067pt;}
.y20_c00219{bottom:150.025183pt;}
.y1f_c00219{bottom:176.825727pt;}
.y1e_c00219{bottom:203.705627pt;}
.y1d_c00219{bottom:230.506171pt;}
.y1c_c00219{bottom:257.386071pt;}
.y1b_c00219{bottom:284.265971pt;}
.y1a_c00219{bottom:311.066515pt;}
.y19_c00219{bottom:337.946415pt;}
.y18_c00219{bottom:372.506731pt;}
.y17_c00219{bottom:412.346555pt;}
.y16_c00219{bottom:439.226455pt;}
.y15_c00219{bottom:466.026999pt;}
.y14_c00219{bottom:492.906899pt;}
.y13_c00219{bottom:519.626531pt;}
.y12_c00219{bottom:546.506431pt;}
.y11_c00219{bottom:573.306975pt;}
.y10_c00219{bottom:600.186875pt;}
.yf_c00219{bottom:626.987419pt;}
.ye_c00219{bottom:653.867319pt;}
.yd_c00219{bottom:680.667863pt;}
.yc_c00219{bottom:720.507687pt;}
.yb_c00219{bottom:760.347511pt;}
.ya_c00219{bottom:787.227411pt;}
.y9_c00219{bottom:814.027955pt;}
.y8_c00219{bottom:840.907855pt;}
.y7_c00219{bottom:867.627487pt;}
.y6_c00219{bottom:894.988191pt;}
.y5_c00219{bottom:923.228035pt;}
.y4_c00219{bottom:951.467879pt;}
.y3_c00219{bottom:987.067603pt;}
.h1_c00219{height:55.797187pt;}
.h2_c00219{height:56.192266pt;}
.h0_c00219{height:1122.666667pt;}
.w0_c00219{width:793.333333pt;}
.x0_c00219{left:0.000000pt;}
.x2_c00219{left:73.520052pt;}
.x1_c00219{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6eba87eaeb1c1298a5999424.woff2')format("woff");}.ff1_c00220{font-family:ff1_c00220;line-height:1.106934;font-style:normal;font-weight:normal;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_2e596cee1d0fdb5018eec11e.woff2')format("woff");}.ff2_c00220{font-family:ff2_c00220;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00220{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00220{vertical-align:0.000000px;}
.ls4_c00220{letter-spacing:-0.151943px;}
.ls2_c00220{letter-spacing:-0.063018px;}
.ls9_c00220{letter-spacing:-0.035010px;}
.ls8_c00220{letter-spacing:-0.028008px;}
.ls6_c00220{letter-spacing:-0.021006px;}
.ls5_c00220{letter-spacing:-0.014004px;}
.ls7_c00220{letter-spacing:-0.007002px;}
.ls3_c00220{letter-spacing:0.000000px;}
.ls0_c00220{letter-spacing:0.007002px;}
.ls1_c00220{letter-spacing:0.014004px;}
.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;}
}
.wsf_c00220{word-spacing:-0.014004px;}
.wsa_c00220{word-spacing:-0.007002px;}
.ws0_c00220{word-spacing:0.000000px;}
.wsc_c00220{word-spacing:0.329094px;}
.ws6_c00220{word-spacing:0.343098px;}
.ws1_c00220{word-spacing:0.349468px;}
.ws15_c00220{word-spacing:0.350100px;}
.ws2_c00220{word-spacing:0.357102px;}
.ws5_c00220{word-spacing:0.700200px;}
.ws3_c00220{word-spacing:2.527722px;}
.wsb_c00220{word-spacing:3.977136px;}
.ws8_c00220{word-spacing:4.313232px;}
.ws7_c00220{word-spacing:4.649328px;}
.wsd_c00220{word-spacing:5.412546px;}
.ws4_c00220{word-spacing:7.191054px;}
.ws10_c00220{word-spacing:7.569162px;}
.ws11_c00220{word-spacing:7.576164px;}
.ws12_c00220{word-spacing:11.532294px;}
.ws13_c00220{word-spacing:16.216632px;}
.ws14_c00220{word-spacing:16.580736px;}
.ws9_c00220{word-spacing:19.087452px;}
.wse_c00220{word-spacing:27.720918px;}
._1_c00220{margin-left:-1.204344px;}
._0_c00220{width:1.093988px;}
.fc0_c00220{color:rgb(0,0,0);}
.fs0_c00220{font-size:70.020000px;}
.fs1_c00220{font-size:75.971400px;}
.y0_c00220{bottom:0.000000px;}
.y2_c00220{bottom:109.740968px;}
.y1_c00220{bottom:129.810450px;}
.y20_c00220{bottom:160.139726px;}
.y1f_c00220{bottom:190.290338px;}
.y1e_c00220{bottom:220.530225px;}
.y1d_c00220{bottom:250.680837px;}
.y1c_c00220{bottom:289.650468px;}
.y1b_c00220{bottom:328.620099px;}
.y1a_c00220{bottom:358.679685px;}
.y19_c00220{bottom:388.919573px;}
.y18_c00220{bottom:427.889204px;}
.y17_c00220{bottom:466.769559px;}
.y16_c00220{bottom:497.009447px;}
.y15_c00220{bottom:535.979078px;}
.y14_c00220{bottom:574.859433px;}
.y13_c00220{bottom:605.099320px;}
.y12_c00220{bottom:635.249932px;}
.y11_c00220{bottom:665.489820px;}
.y10_c00220{bottom:695.640432px;}
.yf_c00220{bottom:725.880320px;}
.ye_c00220{bottom:756.030931px;}
.yd_c00220{bottom:786.270819px;}
.yc_c00220{bottom:825.240450px;}
.yb_c00220{bottom:850.080450px;}
.ya_c00220{bottom:899.039667px;}
.y9_c00220{bottom:929.279555px;}
.y8_c00220{bottom:959.519442px;}
.y7_c00220{bottom:989.670054px;}
.y6_c00220{bottom:1019.909942px;}
.y5_c00220{bottom:1050.060553px;}
.y4_c00220{bottom:1080.300441px;}
.y3_c00220{bottom:1110.451053px;}
.h1_c00220{height:62.771836px;}
.h2_c00220{height:63.216299px;}
.h3_c00220{height:68.589413px;}
.h0_c00220{height:1263.000000px;}
.w0_c00220{width:892.500000px;}
.x0_c00220{left:0.000000px;}
.x2_c00220{left:82.710059px;}
.x1_c00220{left:431.730000px;}
@media print{
.v0_c00220{vertical-align:0.000000pt;}
.ls4_c00220{letter-spacing:-0.135060pt;}
.ls2_c00220{letter-spacing:-0.056016pt;}
.ls9_c00220{letter-spacing:-0.031120pt;}
.ls8_c00220{letter-spacing:-0.024896pt;}
.ls6_c00220{letter-spacing:-0.018672pt;}
.ls5_c00220{letter-spacing:-0.012448pt;}
.ls7_c00220{letter-spacing:-0.006224pt;}
.ls3_c00220{letter-spacing:0.000000pt;}
.ls0_c00220{letter-spacing:0.006224pt;}
.ls1_c00220{letter-spacing:0.012448pt;}
.wsf_c00220{word-spacing:-0.012448pt;}
.wsa_c00220{word-spacing:-0.006224pt;}
.ws0_c00220{word-spacing:0.000000pt;}
.wsc_c00220{word-spacing:0.292528pt;}
.ws6_c00220{word-spacing:0.304976pt;}
.ws1_c00220{word-spacing:0.310639pt;}
.ws15_c00220{word-spacing:0.311200pt;}
.ws2_c00220{word-spacing:0.317424pt;}
.ws5_c00220{word-spacing:0.622400pt;}
.ws3_c00220{word-spacing:2.246864pt;}
.wsb_c00220{word-spacing:3.535232pt;}
.ws8_c00220{word-spacing:3.833984pt;}
.ws7_c00220{word-spacing:4.132736pt;}
.wsd_c00220{word-spacing:4.811152pt;}
.ws4_c00220{word-spacing:6.392048pt;}
.ws10_c00220{word-spacing:6.728144pt;}
.ws11_c00220{word-spacing:6.734368pt;}
.ws12_c00220{word-spacing:10.250928pt;}
.ws13_c00220{word-spacing:14.414784pt;}
.ws14_c00220{word-spacing:14.738432pt;}
.ws9_c00220{word-spacing:16.966624pt;}
.wse_c00220{word-spacing:24.640816pt;}
._1_c00220{margin-left:-1.070528pt;}
._0_c00220{width:0.972434pt;}
.fs0_c00220{font-size:62.240000pt;}
.fs1_c00220{font-size:67.530133pt;}
.y0_c00220{bottom:0.000000pt;}
.y2_c00220{bottom:97.547527pt;}
.y1_c00220{bottom:115.387067pt;}
.y20_c00220{bottom:142.346423pt;}
.y1f_c00220{bottom:169.146967pt;}
.y1e_c00220{bottom:196.026867pt;}
.y1d_c00220{bottom:222.827411pt;}
.y1c_c00220{bottom:257.467083pt;}
.y1b_c00220{bottom:292.106755pt;}
.y1a_c00220{bottom:318.826387pt;}
.y19_c00220{bottom:345.706287pt;}
.y18_c00220{bottom:380.345959pt;}
.y17_c00220{bottom:414.906275pt;}
.y16_c00220{bottom:441.786175pt;}
.y15_c00220{bottom:476.425847pt;}
.y14_c00220{bottom:510.986163pt;}
.y13_c00220{bottom:537.866063pt;}
.y12_c00220{bottom:564.666607pt;}
.y11_c00220{bottom:591.546507pt;}
.y10_c00220{bottom:618.347051pt;}
.yf_c00220{bottom:645.226951pt;}
.ye_c00220{bottom:672.027495pt;}
.yd_c00220{bottom:698.907395pt;}
.yc_c00220{bottom:733.547067pt;}
.yb_c00220{bottom:755.627067pt;}
.ya_c00220{bottom:799.146371pt;}
.y9_c00220{bottom:826.026271pt;}
.y8_c00220{bottom:852.906171pt;}
.y7_c00220{bottom:879.706715pt;}
.y6_c00220{bottom:906.586615pt;}
.y5_c00220{bottom:933.387159pt;}
.y4_c00220{bottom:960.267059pt;}
.y3_c00220{bottom:987.067603pt;}
.h1_c00220{height:55.797187pt;}
.h2_c00220{height:56.192266pt;}
.h3_c00220{height:60.968367pt;}
.h0_c00220{height:1122.666667pt;}
.w0_c00220{width:793.333333pt;}
.x0_c00220{left:0.000000pt;}
.x2_c00220{left:73.520052pt;}
.x1_c00220{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1995a3e1e679b2a0755f20c2.woff2')format("woff");}.ff1_c00221{font-family:ff1_c00221;line-height:1.106934;font-style:normal;font-weight:normal;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_1c34473edb5215edf87e935a.woff2')format("woff");}.ff2_c00221{font-family:ff2_c00221;line-height:1.133301;font-style:normal;font-weight:normal;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_9ab5e28c89161afe6189c2f1.woff2')format("woff");}.ff3_c00221{font-family:ff3_c00221;line-height:1.104492;font-style:normal;font-weight:normal;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_3df6575931e2b737c50960ae.woff2')format("woff");}.ff4_c00221{font-family:ff4_c00221;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00221{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00221{vertical-align:-14.760000px;}
.v0_c00221{vertical-align:0.000000px;}
.v1_c00221{vertical-align:17.636994px;}
.ls1d_c00221{letter-spacing:-1.064088px;}
.ls15_c00221{letter-spacing:-0.707443px;}
.lse_c00221{letter-spacing:-0.246781px;}
.ls1b_c00221{letter-spacing:-0.099393px;}
.ls1f_c00221{letter-spacing:-0.093546px;}
.ls12_c00221{letter-spacing:-0.075619px;}
.ls16_c00221{letter-spacing:-0.070160px;}
.lsa_c00221{letter-spacing:-0.063018px;}
.ls19_c00221{letter-spacing:-0.058466px;}
.ls1e_c00221{letter-spacing:-0.052620px;}
.ls18_c00221{letter-spacing:-0.040926px;}
.lsf_c00221{letter-spacing:-0.035010px;}
.ls1a_c00221{letter-spacing:-0.029233px;}
.lsc_c00221{letter-spacing:-0.028008px;}
.ls17_c00221{letter-spacing:-0.023387px;}
.ls10_c00221{letter-spacing:-0.021006px;}
.lsd_c00221{letter-spacing:-0.014004px;}
.ls11_c00221{letter-spacing:-0.007002px;}
.lsb_c00221{letter-spacing:0.000000px;}
.ls9_c00221{letter-spacing:0.005847px;}
.ls2_c00221{letter-spacing:0.007002px;}
.ls3_c00221{letter-spacing:0.014004px;}
.ls0_c00221{letter-spacing:0.021006px;}
.ls7_c00221{letter-spacing:0.042012px;}
.ls1_c00221{letter-spacing:0.063018px;}
.ls14_c00221{letter-spacing:0.257252px;}
.ls4_c00221{letter-spacing:0.259074px;}
.ls5_c00221{letter-spacing:0.336096px;}
.ls13_c00221{letter-spacing:0.344952px;}
.ls1c_c00221{letter-spacing:0.608051px;}
.ls6_c00221{letter-spacing:0.693198px;}
.ls8_c00221{letter-spacing:1.806612px;}
.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:-19.528578px;}
.ws4_c00221{word-spacing:-16.142573px;}
.ws3_c00221{word-spacing:-16.136726px;}
.ws1_c00221{word-spacing:-12.651004px;}
.ws2_c00221{word-spacing:-10.397640px;}
.wsf_c00221{word-spacing:-0.014004px;}
.ws5_c00221{word-spacing:0.000000px;}
.ws1f_c00221{word-spacing:0.021006px;}
.ws2a_c00221{word-spacing:0.035080px;}
.ws2e_c00221{word-spacing:0.105240px;}
.wse_c00221{word-spacing:0.364104px;}
.ws8_c00221{word-spacing:0.371106px;}
.ws15_c00221{word-spacing:0.721206px;}
.ws16_c00221{word-spacing:0.728208px;}
.ws9_c00221{word-spacing:0.735210px;}
.ws17_c00221{word-spacing:0.742212px;}
.ws2b_c00221{word-spacing:0.847763px;}
.wsc_c00221{word-spacing:1.421406px;}
.ws2c_c00221{word-spacing:1.485047px;}
.ws2d_c00221{word-spacing:1.806612px;}
.ws25_c00221{word-spacing:1.835845px;}
.ws26_c00221{word-spacing:1.853385px;}
.ws24_c00221{word-spacing:2.198337px;}
.wsb_c00221{word-spacing:3.585024px;}
.ws29_c00221{word-spacing:3.654150px;}
.ws20_c00221{word-spacing:5.425682px;}
.ws21_c00221{word-spacing:5.875873px;}
.ws1c_c00221{word-spacing:6.833952px;}
.ws22_c00221{word-spacing:6.840569px;}
.ws7_c00221{word-spacing:7.548156px;}
.ws23_c00221{word-spacing:9.442324px;}
.wsa_c00221{word-spacing:11.161188px;}
.ws18_c00221{word-spacing:11.826378px;}
.ws19_c00221{word-spacing:11.847384px;}
.ws1a_c00221{word-spacing:11.875392px;}
.ws27_c00221{word-spacing:14.441201px;}
.ws28_c00221{word-spacing:14.511360px;}
.ws1d_c00221{word-spacing:17.273934px;}
.ws10_c00221{word-spacing:18.352242px;}
.wsd_c00221{word-spacing:18.744354px;}
.ws6_c00221{word-spacing:19.402542px;}
.ws14_c00221{word-spacing:20.606886px;}
.ws13_c00221{word-spacing:20.851956px;}
.ws1b_c00221{word-spacing:20.872962px;}
.ws1e_c00221{word-spacing:24.121890px;}
.ws11_c00221{word-spacing:26.271504px;}
.ws12_c00221{word-spacing:26.292510px;}
._3_c00221{margin-left:-2.710458px;}
._0_c00221{margin-left:-1.078308px;}
._1_c00221{width:1.330380px;}
._4_c00221{width:3.674339px;}
._2_c00221{width:5.930694px;}
.fc0_c00221{color:rgb(0,0,0);}
.fs2_c00221{font-size:37.809600px;}
.fs1_c00221{font-size:46.562400px;}
.fs3_c00221{font-size:58.466400px;}
.fs0_c00221{font-size:70.020000px;}
.y0_c00221{bottom:0.000000px;}
.y2_c00221{bottom:109.740968px;}
.y1_c00221{bottom:129.810450px;}
.y24_c00221{bottom:153.120600px;}
.y23_c00221{bottom:167.250107px;}
.y22_c00221{bottom:188.940450px;}
.y21_c00221{bottom:203.068088px;}
.y20_c00221{bottom:221.068431px;}
.y1f_c00221{bottom:238.888990px;}
.y1e_c00221{bottom:256.709548px;}
.y1d_c00221{bottom:274.709891px;}
.y1c_c00221{bottom:296.220450px;}
.y1b_c00221{bottom:310.890036px;}
.y1a_c00221{bottom:350.849829px;}
.y19_c00221{bottom:382.259050px;}
.y18_c00221{bottom:412.409662px;}
.y17_c00221{bottom:442.649550px;}
.y16_c00221{bottom:472.800162px;}
.y15_c00221{bottom:511.769793px;}
.y14_c00221{bottom:550.829605px;}
.y13_c00221{bottom:582.238827px;}
.y12_c00221{bottom:612.478714px;}
.y11_c00221{bottom:642.629326px;}
.y10_c00221{bottom:672.869214px;}
.yf_c00221{bottom:703.019826px;}
.ye_c00221{bottom:741.989457px;}
.yd_c00221{bottom:780.959088px;}
.yc_c00221{bottom:811.109700px;}
.yb_c00221{bottom:841.349587px;}
.ya_c00221{bottom:880.229943px;}
.y9_c00221{bottom:919.291202px;}
.y8_c00221{bottom:950.700423px;}
.y7_c00221{bottom:980.940311px;}
.y6_c00221{bottom:1011.090923px;}
.y5_c00221{bottom:1041.330810px;}
.y4_c00221{bottom:1071.481422px;}
.y3_c00221{bottom:1110.451053px;}
.h7_c00221{height:39.337949px;}
.h5_c00221{height:39.338549px;}
.h6_c00221{height:54.098549px;}
.h1_c00221{height:62.771836px;}
.h4_c00221{height:62.773492px;}
.h3_c00221{height:62.774320px;}
.h2_c00221{height:62.775214px;}
.h0_c00221{height:1263.000000px;}
.w0_c00221{width:892.500000px;}
.x0_c00221{left:0.000000px;}
.x2_c00221{left:82.710059px;}
.x1_c00221{left:431.730000px;}
@media print{
.v2_c00221{vertical-align:-13.120000pt;}
.v0_c00221{vertical-align:0.000000pt;}
.v1_c00221{vertical-align:15.677328pt;}
.ls1d_c00221{letter-spacing:-0.945856pt;}
.ls15_c00221{letter-spacing:-0.628839pt;}
.lse_c00221{letter-spacing:-0.219361pt;}
.ls1b_c00221{letter-spacing:-0.088349pt;}
.ls1f_c00221{letter-spacing:-0.083152pt;}
.ls12_c00221{letter-spacing:-0.067217pt;}
.ls16_c00221{letter-spacing:-0.062364pt;}
.lsa_c00221{letter-spacing:-0.056016pt;}
.ls19_c00221{letter-spacing:-0.051970pt;}
.ls1e_c00221{letter-spacing:-0.046773pt;}
.ls18_c00221{letter-spacing:-0.036379pt;}
.lsf_c00221{letter-spacing:-0.031120pt;}
.ls1a_c00221{letter-spacing:-0.025985pt;}
.lsc_c00221{letter-spacing:-0.024896pt;}
.ls17_c00221{letter-spacing:-0.020788pt;}
.ls10_c00221{letter-spacing:-0.018672pt;}
.lsd_c00221{letter-spacing:-0.012448pt;}
.ls11_c00221{letter-spacing:-0.006224pt;}
.lsb_c00221{letter-spacing:0.000000pt;}
.ls9_c00221{letter-spacing:0.005197pt;}
.ls2_c00221{letter-spacing:0.006224pt;}
.ls3_c00221{letter-spacing:0.012448pt;}
.ls0_c00221{letter-spacing:0.018672pt;}
.ls7_c00221{letter-spacing:0.037344pt;}
.ls1_c00221{letter-spacing:0.056016pt;}
.ls14_c00221{letter-spacing:0.228669pt;}
.ls4_c00221{letter-spacing:0.230288pt;}
.ls5_c00221{letter-spacing:0.298752pt;}
.ls13_c00221{letter-spacing:0.306624pt;}
.ls1c_c00221{letter-spacing:0.540489pt;}
.ls6_c00221{letter-spacing:0.616176pt;}
.ls8_c00221{letter-spacing:1.605877pt;}
.ws0_c00221{word-spacing:-17.358736pt;}
.ws4_c00221{word-spacing:-14.348954pt;}
.ws3_c00221{word-spacing:-14.343757pt;}
.ws1_c00221{word-spacing:-11.245337pt;}
.ws2_c00221{word-spacing:-9.242347pt;}
.wsf_c00221{word-spacing:-0.012448pt;}
.ws5_c00221{word-spacing:0.000000pt;}
.ws1f_c00221{word-spacing:0.018672pt;}
.ws2a_c00221{word-spacing:0.031182pt;}
.ws2e_c00221{word-spacing:0.093546pt;}
.wse_c00221{word-spacing:0.323648pt;}
.ws8_c00221{word-spacing:0.329872pt;}
.ws15_c00221{word-spacing:0.641072pt;}
.ws16_c00221{word-spacing:0.647296pt;}
.ws9_c00221{word-spacing:0.653520pt;}
.ws17_c00221{word-spacing:0.659744pt;}
.ws2b_c00221{word-spacing:0.753567pt;}
.wsc_c00221{word-spacing:1.263472pt;}
.ws2c_c00221{word-spacing:1.320041pt;}
.ws2d_c00221{word-spacing:1.605877pt;}
.ws25_c00221{word-spacing:1.631862pt;}
.ws26_c00221{word-spacing:1.647453pt;}
.ws24_c00221{word-spacing:1.954077pt;}
.wsb_c00221{word-spacing:3.186688pt;}
.ws29_c00221{word-spacing:3.248133pt;}
.ws20_c00221{word-spacing:4.822828pt;}
.ws21_c00221{word-spacing:5.222998pt;}
.ws1c_c00221{word-spacing:6.074624pt;}
.ws22_c00221{word-spacing:6.080506pt;}
.ws7_c00221{word-spacing:6.709472pt;}
.ws23_c00221{word-spacing:8.393177pt;}
.wsa_c00221{word-spacing:9.921056pt;}
.ws18_c00221{word-spacing:10.512336pt;}
.ws19_c00221{word-spacing:10.531008pt;}
.ws1a_c00221{word-spacing:10.555904pt;}
.ws27_c00221{word-spacing:12.836623pt;}
.ws28_c00221{word-spacing:12.898987pt;}
.ws1d_c00221{word-spacing:15.354608pt;}
.ws10_c00221{word-spacing:16.313104pt;}
.wsd_c00221{word-spacing:16.661648pt;}
.ws6_c00221{word-spacing:17.246704pt;}
.ws14_c00221{word-spacing:18.317232pt;}
.ws13_c00221{word-spacing:18.535072pt;}
.ws1b_c00221{word-spacing:18.553744pt;}
.ws1e_c00221{word-spacing:21.441680pt;}
.ws11_c00221{word-spacing:23.352448pt;}
.ws12_c00221{word-spacing:23.371120pt;}
._3_c00221{margin-left:-2.409296pt;}
._0_c00221{margin-left:-0.958496pt;}
._1_c00221{width:1.182560pt;}
._4_c00221{width:3.266079pt;}
._2_c00221{width:5.271728pt;}
.fs2_c00221{font-size:33.608533pt;}
.fs1_c00221{font-size:41.388800pt;}
.fs3_c00221{font-size:51.970133pt;}
.fs0_c00221{font-size:62.240000pt;}
.y0_c00221{bottom:0.000000pt;}
.y2_c00221{bottom:97.547527pt;}
.y1_c00221{bottom:115.387067pt;}
.y24_c00221{bottom:136.107200pt;}
.y23_c00221{bottom:148.666762pt;}
.y22_c00221{bottom:167.947067pt;}
.y21_c00221{bottom:180.504967pt;}
.y20_c00221{bottom:196.505272pt;}
.y1f_c00221{bottom:212.345769pt;}
.y1e_c00221{bottom:228.186265pt;}
.y1d_c00221{bottom:244.186570pt;}
.y1c_c00221{bottom:263.307067pt;}
.y1b_c00221{bottom:276.346699pt;}
.y1a_c00221{bottom:311.866515pt;}
.y19_c00221{bottom:339.785823pt;}
.y18_c00221{bottom:366.586367pt;}
.y17_c00221{bottom:393.466267pt;}
.y16_c00221{bottom:420.266811pt;}
.y15_c00221{bottom:454.906483pt;}
.y14_c00221{bottom:489.626316pt;}
.y13_c00221{bottom:517.545624pt;}
.y12_c00221{bottom:544.425524pt;}
.y11_c00221{bottom:571.226068pt;}
.y10_c00221{bottom:598.105968pt;}
.yf_c00221{bottom:624.906512pt;}
.ye_c00221{bottom:659.546184pt;}
.yd_c00221{bottom:694.185856pt;}
.yc_c00221{bottom:720.986400pt;}
.yb_c00221{bottom:747.866300pt;}
.ya_c00221{bottom:782.426616pt;}
.y9_c00221{bottom:817.147735pt;}
.y8_c00221{bottom:845.067043pt;}
.y7_c00221{bottom:871.946943pt;}
.y6_c00221{bottom:898.747487pt;}
.y5_c00221{bottom:925.627387pt;}
.y4_c00221{bottom:952.427931pt;}
.y3_c00221{bottom:987.067603pt;}
.h7_c00221{height:34.967066pt;}
.h5_c00221{height:34.967599pt;}
.h6_c00221{height:48.087599pt;}
.h1_c00221{height:55.797187pt;}
.h4_c00221{height:55.798659pt;}
.h3_c00221{height:55.799396pt;}
.h2_c00221{height:55.800190pt;}
.h0_c00221{height:1122.666667pt;}
.w0_c00221{width:793.333333pt;}
.x0_c00221{left:0.000000pt;}
.x2_c00221{left:73.520052pt;}
.x1_c00221{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_145f86b94535160e8cb7131f.woff2')format("woff");}.ff1_c00222{font-family:ff1_c00222;line-height:1.106934;font-style:normal;font-weight:normal;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_d1ae1fba7694ba687116d537.woff2')format("woff");}.ff2_c00222{font-family:ff2_c00222;line-height:1.133301;font-style:normal;font-weight:normal;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_157b060f64e95559add76dcf.woff2')format("woff");}.ff3_c00222{font-family:ff3_c00222;line-height:1.104492;font-style:normal;font-weight:normal;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_e531a02262ddc96d315eaf20.woff2')format("woff");}.ff4_c00222{font-family:ff4_c00222;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00222{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00222{vertical-align:-14.760000px;}
.v0_c00222{vertical-align:0.000000px;}
.v1_c00222{vertical-align:17.276940px;}
.lsc_c00222{letter-spacing:-0.246781px;}
.ls1a_c00222{letter-spacing:-0.204632px;}
.ls15_c00222{letter-spacing:-0.146166px;}
.ls16_c00222{letter-spacing:-0.093546px;}
.ls21_c00222{letter-spacing:-0.087700px;}
.ls23_c00222{letter-spacing:-0.076006px;}
.ls12_c00222{letter-spacing:-0.075619px;}
.ls25_c00222{letter-spacing:-0.064313px;}
.ls6_c00222{letter-spacing:-0.063018px;}
.ls14_c00222{letter-spacing:-0.058466px;}
.lse_c00222{letter-spacing:-0.056016px;}
.ls19_c00222{letter-spacing:-0.052620px;}
.lsa_c00222{letter-spacing:-0.049014px;}
.ls1c_c00222{letter-spacing:-0.046773px;}
.lsf_c00222{letter-spacing:-0.042012px;}
.ls1e_c00222{letter-spacing:-0.040926px;}
.lsb_c00222{letter-spacing:-0.035010px;}
.ls13_c00222{letter-spacing:-0.029233px;}
.ls10_c00222{letter-spacing:-0.028008px;}
.ls17_c00222{letter-spacing:-0.023387px;}
.ls9_c00222{letter-spacing:-0.021006px;}
.ls8_c00222{letter-spacing:-0.014004px;}
.ls11_c00222{letter-spacing:-0.007002px;}
.ls22_c00222{letter-spacing:-0.005847px;}
.ls7_c00222{letter-spacing:0.000000px;}
.ls24_c00222{letter-spacing:0.011693px;}
.ls2_c00222{letter-spacing:0.014004px;}
.ls0_c00222{letter-spacing:0.021006px;}
.ls3_c00222{letter-spacing:0.028008px;}
.ls1f_c00222{letter-spacing:0.029233px;}
.ls1_c00222{letter-spacing:0.049014px;}
.ls5_c00222{letter-spacing:0.081853px;}
.ls4_c00222{letter-spacing:0.105240px;}
.ls1d_c00222{letter-spacing:0.134473px;}
.lsd_c00222{letter-spacing:0.343098px;}
.ls18_c00222{letter-spacing:0.409265px;}
.ls1b_c00222{letter-spacing:0.608051px;}
.ls20_c00222{letter-spacing:8.290536px;}
.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;}
}
.ws2_c00222{word-spacing:-16.119186px;}
.ws0_c00222{word-spacing:-12.651004px;}
.ws1_c00222{word-spacing:-10.397640px;}
.ws18_c00222{word-spacing:-0.042012px;}
.ws1c_c00222{word-spacing:-0.007002px;}
.ws3_c00222{word-spacing:0.000000px;}
.ws2f_c00222{word-spacing:0.017540px;}
.ws13_c00222{word-spacing:0.021006px;}
.wsb_c00222{word-spacing:0.343098px;}
.ws8_c00222{word-spacing:0.392112px;}
.ws11_c00222{word-spacing:0.693198px;}
.ws19_c00222{word-spacing:0.721206px;}
.ws6_c00222{word-spacing:1.078308px;}
.ws10_c00222{word-spacing:1.442412px;}
.wsf_c00222{word-spacing:1.456416px;}
.ws30_c00222{word-spacing:1.508433px;}
.ws4_c00222{word-spacing:1.764504px;}
.ws1d_c00222{word-spacing:1.841692px;}
.ws1e_c00222{word-spacing:1.870925px;}
.ws1a_c00222{word-spacing:2.870820px;}
.ws9_c00222{word-spacing:3.178908px;}
.wsa_c00222{word-spacing:3.262932px;}
.ws24_c00222{word-spacing:3.923095px;}
.ws15_c00222{word-spacing:3.949128px;}
.ws25_c00222{word-spacing:4.384980px;}
.ws1b_c00222{word-spacing:5.041440px;}
.ws14_c00222{word-spacing:7.933266px;}
.ws2d_c00222{word-spacing:8.261302px;}
.ws2e_c00222{word-spacing:8.378235px;}
.wsd_c00222{word-spacing:9.368676px;}
.wse_c00222{word-spacing:9.746784px;}
.wsc_c00222{word-spacing:9.760788px;}
.ws1f_c00222{word-spacing:10.149767px;}
.ws21_c00222{word-spacing:10.184847px;}
.ws20_c00222{word-spacing:10.237467px;}
.ws2b_c00222{word-spacing:11.932992px;}
.ws2a_c00222{word-spacing:12.120085px;}
.ws2c_c00222{word-spacing:12.172704px;}
.ws5_c00222{word-spacing:12.596598px;}
.ws16_c00222{word-spacing:13.324806px;}
.ws17_c00222{word-spacing:13.702914px;}
.ws28_c00222{word-spacing:14.523054px;}
.ws26_c00222{word-spacing:14.669220px;}
.ws29_c00222{word-spacing:14.821232px;}
.ws27_c00222{word-spacing:14.979092px;}
.ws7_c00222{word-spacing:15.488424px;}
.ws23_c00222{word-spacing:23.333940px;}
.ws22_c00222{word-spacing:23.439180px;}
.ws12_c00222{word-spacing:30.983850px;}
._2_c00222{margin-left:-9.718776px;}
._5_c00222{margin-left:-8.477857px;}
._6_c00222{margin-left:-7.358625px;}
._4_c00222{margin-left:-2.716722px;}
._0_c00222{margin-left:-1.015290px;}
._1_c00222{width:1.358388px;}
._3_c00222{width:5.930694px;}
.fc0_c00222{color:rgb(0,0,0);}
.fs2_c00222{font-size:37.809600px;}
.fs1_c00222{font-size:46.562400px;}
.fs3_c00222{font-size:58.466400px;}
.fs0_c00222{font-size:70.020000px;}
.y0_c00222{bottom:0.000000px;}
.y2_c00222{bottom:109.740968px;}
.y1_c00222{bottom:129.810450px;}
.y24_c00222{bottom:149.429891px;}
.y23_c00222{bottom:170.940450px;}
.y22_c00222{bottom:185.246971px;}
.y21_c00222{bottom:203.067529px;}
.y20_c00222{bottom:221.067872px;}
.y1f_c00222{bottom:238.888431px;}
.y1e_c00222{bottom:256.708990px;}
.y1d_c00222{bottom:274.709333px;}
.y1c_c00222{bottom:292.529891px;}
.y1b_c00222{bottom:314.040450px;}
.y1a_c00222{bottom:328.799419px;}
.y19_c00222{bottom:382.259689px;}
.y18_c00222{bottom:412.410302px;}
.y17_c00222{bottom:442.650189px;}
.y16_c00222{bottom:472.800801px;}
.y15_c00222{bottom:503.040688px;}
.y14_c00222{bottom:533.191300px;}
.y13_c00222{bottom:563.431188px;}
.y12_c00222{bottom:602.400819px;}
.y11_c00222{bottom:641.368803px;}
.y10_c00222{bottom:672.869050px;}
.yf_c00222{bottom:703.019662px;}
.ye_c00222{bottom:733.259550px;}
.yd_c00222{bottom:763.410162px;}
.yc_c00222{bottom:802.379793px;}
.yb_c00222{bottom:841.441215px;}
.ya_c00222{bottom:872.850437px;}
.y9_c00222{bottom:911.730792px;}
.y8_c00222{bottom:950.700423px;}
.y7_c00222{bottom:980.940311px;}
.y6_c00222{bottom:1011.090923px;}
.y5_c00222{bottom:1041.330810px;}
.y4_c00222{bottom:1071.481422px;}
.y3_c00222{bottom:1110.451053px;}
.h4_c00222{height:39.338549px;}
.h5_c00222{height:54.098549px;}
.h1_c00222{height:62.771836px;}
.h3_c00222{height:62.775958px;}
.h2_c00222{height:62.778424px;}
.h0_c00222{height:1263.000000px;}
.w0_c00222{width:892.500000px;}
.x0_c00222{left:0.000000px;}
.x2_c00222{left:82.710059px;}
.x1_c00222{left:431.730000px;}
@media print{
.v2_c00222{vertical-align:-13.120000pt;}
.v0_c00222{vertical-align:0.000000pt;}
.v1_c00222{vertical-align:15.357280pt;}
.lsc_c00222{letter-spacing:-0.219361pt;}
.ls1a_c00222{letter-spacing:-0.181895pt;}
.ls15_c00222{letter-spacing:-0.129925pt;}
.ls16_c00222{letter-spacing:-0.083152pt;}
.ls21_c00222{letter-spacing:-0.077955pt;}
.ls23_c00222{letter-spacing:-0.067561pt;}
.ls12_c00222{letter-spacing:-0.067217pt;}
.ls25_c00222{letter-spacing:-0.057167pt;}
.ls6_c00222{letter-spacing:-0.056016pt;}
.ls14_c00222{letter-spacing:-0.051970pt;}
.lse_c00222{letter-spacing:-0.049792pt;}
.ls19_c00222{letter-spacing:-0.046773pt;}
.lsa_c00222{letter-spacing:-0.043568pt;}
.ls1c_c00222{letter-spacing:-0.041576pt;}
.lsf_c00222{letter-spacing:-0.037344pt;}
.ls1e_c00222{letter-spacing:-0.036379pt;}
.lsb_c00222{letter-spacing:-0.031120pt;}
.ls13_c00222{letter-spacing:-0.025985pt;}
.ls10_c00222{letter-spacing:-0.024896pt;}
.ls17_c00222{letter-spacing:-0.020788pt;}
.ls9_c00222{letter-spacing:-0.018672pt;}
.ls8_c00222{letter-spacing:-0.012448pt;}
.ls11_c00222{letter-spacing:-0.006224pt;}
.ls22_c00222{letter-spacing:-0.005197pt;}
.ls7_c00222{letter-spacing:0.000000pt;}
.ls24_c00222{letter-spacing:0.010394pt;}
.ls2_c00222{letter-spacing:0.012448pt;}
.ls0_c00222{letter-spacing:0.018672pt;}
.ls3_c00222{letter-spacing:0.024896pt;}
.ls1f_c00222{letter-spacing:0.025985pt;}
.ls1_c00222{letter-spacing:0.043568pt;}
.ls5_c00222{letter-spacing:0.072758pt;}
.ls4_c00222{letter-spacing:0.093546pt;}
.ls1d_c00222{letter-spacing:0.119531pt;}
.lsd_c00222{letter-spacing:0.304976pt;}
.ls18_c00222{letter-spacing:0.363791pt;}
.ls1b_c00222{letter-spacing:0.540489pt;}
.ls20_c00222{letter-spacing:7.369365pt;}
.ws2_c00222{word-spacing:-14.328166pt;}
.ws0_c00222{word-spacing:-11.245337pt;}
.ws1_c00222{word-spacing:-9.242347pt;}
.ws18_c00222{word-spacing:-0.037344pt;}
.ws1c_c00222{word-spacing:-0.006224pt;}
.ws3_c00222{word-spacing:0.000000pt;}
.ws2f_c00222{word-spacing:0.015591pt;}
.ws13_c00222{word-spacing:0.018672pt;}
.wsb_c00222{word-spacing:0.304976pt;}
.ws8_c00222{word-spacing:0.348544pt;}
.ws11_c00222{word-spacing:0.616176pt;}
.ws19_c00222{word-spacing:0.641072pt;}
.ws6_c00222{word-spacing:0.958496pt;}
.ws10_c00222{word-spacing:1.282144pt;}
.wsf_c00222{word-spacing:1.294592pt;}
.ws30_c00222{word-spacing:1.340829pt;}
.ws4_c00222{word-spacing:1.568448pt;}
.ws1d_c00222{word-spacing:1.637059pt;}
.ws1e_c00222{word-spacing:1.663044pt;}
.ws1a_c00222{word-spacing:2.551840pt;}
.ws9_c00222{word-spacing:2.825696pt;}
.wsa_c00222{word-spacing:2.900384pt;}
.ws24_c00222{word-spacing:3.487196pt;}
.ws15_c00222{word-spacing:3.510336pt;}
.ws25_c00222{word-spacing:3.897760pt;}
.ws1b_c00222{word-spacing:4.481280pt;}
.ws14_c00222{word-spacing:7.051792pt;}
.ws2d_c00222{word-spacing:7.343380pt;}
.ws2e_c00222{word-spacing:7.447320pt;}
.wsd_c00222{word-spacing:8.327712pt;}
.wse_c00222{word-spacing:8.663808pt;}
.wsc_c00222{word-spacing:8.676256pt;}
.ws1f_c00222{word-spacing:9.022015pt;}
.ws21_c00222{word-spacing:9.053197pt;}
.ws20_c00222{word-spacing:9.099970pt;}
.ws2b_c00222{word-spacing:10.607104pt;}
.ws2a_c00222{word-spacing:10.773409pt;}
.ws2c_c00222{word-spacing:10.820182pt;}
.ws5_c00222{word-spacing:11.196976pt;}
.ws16_c00222{word-spacing:11.844272pt;}
.ws17_c00222{word-spacing:12.180368pt;}
.ws28_c00222{word-spacing:12.909381pt;}
.ws26_c00222{word-spacing:13.039306pt;}
.ws29_c00222{word-spacing:13.174429pt;}
.ws27_c00222{word-spacing:13.314748pt;}
.ws7_c00222{word-spacing:13.767488pt;}
.ws23_c00222{word-spacing:20.741280pt;}
.ws22_c00222{word-spacing:20.834826pt;}
.ws12_c00222{word-spacing:27.541200pt;}
._2_c00222{margin-left:-8.638912pt;}
._5_c00222{margin-left:-7.535873pt;}
._6_c00222{margin-left:-6.541000pt;}
._4_c00222{margin-left:-2.414864pt;}
._0_c00222{margin-left:-0.902480pt;}
._1_c00222{width:1.207456pt;}
._3_c00222{width:5.271728pt;}
.fs2_c00222{font-size:33.608533pt;}
.fs1_c00222{font-size:41.388800pt;}
.fs3_c00222{font-size:51.970133pt;}
.fs0_c00222{font-size:62.240000pt;}
.y0_c00222{bottom:0.000000pt;}
.y2_c00222{bottom:97.547527pt;}
.y1_c00222{bottom:115.387067pt;}
.y24_c00222{bottom:132.826570pt;}
.y23_c00222{bottom:151.947067pt;}
.y22_c00222{bottom:164.663974pt;}
.y21_c00222{bottom:180.504471pt;}
.y20_c00222{bottom:196.504775pt;}
.y1f_c00222{bottom:212.345272pt;}
.y1e_c00222{bottom:228.185769pt;}
.y1d_c00222{bottom:244.186073pt;}
.y1c_c00222{bottom:260.026570pt;}
.y1b_c00222{bottom:279.147067pt;}
.y1a_c00222{bottom:292.266151pt;}
.y19_c00222{bottom:339.786391pt;}
.y18_c00222{bottom:366.586935pt;}
.y17_c00222{bottom:393.466835pt;}
.y16_c00222{bottom:420.267379pt;}
.y15_c00222{bottom:447.147279pt;}
.y14_c00222{bottom:473.947823pt;}
.y13_c00222{bottom:500.827723pt;}
.y12_c00222{bottom:535.467395pt;}
.y11_c00222{bottom:570.105603pt;}
.y10_c00222{bottom:598.105823pt;}
.yf_c00222{bottom:624.906367pt;}
.ye_c00222{bottom:651.786267pt;}
.yd_c00222{bottom:678.586811pt;}
.yc_c00222{bottom:713.226483pt;}
.yb_c00222{bottom:747.947747pt;}
.ya_c00222{bottom:775.867055pt;}
.y9_c00222{bottom:810.427371pt;}
.y8_c00222{bottom:845.067043pt;}
.y7_c00222{bottom:871.946943pt;}
.y6_c00222{bottom:898.747487pt;}
.y5_c00222{bottom:925.627387pt;}
.y4_c00222{bottom:952.427931pt;}
.y3_c00222{bottom:987.067603pt;}
.h4_c00222{height:34.967599pt;}
.h5_c00222{height:48.087599pt;}
.h1_c00222{height:55.797187pt;}
.h3_c00222{height:55.800852pt;}
.h2_c00222{height:55.803043pt;}
.h0_c00222{height:1122.666667pt;}
.w0_c00222{width:793.333333pt;}
.x0_c00222{left:0.000000pt;}
.x2_c00222{left:73.520052pt;}
.x1_c00222{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e74f76ba53396c06234cc0b1.woff2')format("woff");}.ff1_c00223{font-family:ff1_c00223;line-height:1.106934;font-style:normal;font-weight:normal;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_eb01c49d616a34114aae66f9.woff2')format("woff");}.ff2_c00223{font-family:ff2_c00223;line-height:1.104492;font-style:normal;font-weight:normal;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_d5d7fca5a238faf2b49b4312.woff2')format("woff");}.ff3_c00223{font-family:ff3_c00223;line-height:1.133301;font-style:normal;font-weight:normal;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_cd33c0896ab6b23be8a800a5.woff2')format("woff");}.ff4_c00223{font-family:ff4_c00223;line-height:0.892090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00223;src:url('chunks/assets/font_587da32f32e091c8eebe00b9.woff2')format("woff");}.ff5_c00223{font-family:ff5_c00223;line-height:0.750000;font-style:normal;font-weight:normal;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_ea8cd48ea5d83005798f6291.woff2')format("woff");}.ff6_c00223{font-family:ff6_c00223;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00223{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00223{vertical-align:-14.400000px;}
.v0_c00223{vertical-align:0.000000px;}
.v1_c00223{vertical-align:17.638992px;}
.ls16_c00223{letter-spacing:-0.561277px;}
.ls17_c00223{letter-spacing:-0.309872px;}
.lsd_c00223{letter-spacing:-0.246781px;}
.ls19_c00223{letter-spacing:-0.134473px;}
.ls11_c00223{letter-spacing:-0.105240px;}
.ls18_c00223{letter-spacing:-0.076006px;}
.lsf_c00223{letter-spacing:-0.075619px;}
.ls6_c00223{letter-spacing:-0.063018px;}
.lsc_c00223{letter-spacing:-0.042012px;}
.ls8_c00223{letter-spacing:-0.035010px;}
.lse_c00223{letter-spacing:-0.028008px;}
.lsb_c00223{letter-spacing:-0.021006px;}
.ls13_c00223{letter-spacing:-0.017540px;}
.lsa_c00223{letter-spacing:-0.014004px;}
.ls9_c00223{letter-spacing:-0.007002px;}
.ls14_c00223{letter-spacing:-0.005847px;}
.ls7_c00223{letter-spacing:0.000000px;}
.ls2_c00223{letter-spacing:0.014004px;}
.ls4_c00223{letter-spacing:0.021006px;}
.ls0_c00223{letter-spacing:0.035010px;}
.ls10_c00223{letter-spacing:0.064313px;}
.ls1_c00223{letter-spacing:0.217062px;}
.ls3_c00223{letter-spacing:0.273078px;}
.ls15_c00223{letter-spacing:0.309872px;}
.ls12_c00223{letter-spacing:0.491118px;}
.ls5_c00223{letter-spacing:1.087475px;}
.sc__c00223{text-shadow:none;}
.sc0_c00223{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00223{-webkit-text-stroke:0px transparent;}
.sc0_c00223{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00223{word-spacing:-70.020000px;}
.ws0_c00223{word-spacing:-12.651004px;}
.ws2_c00223{word-spacing:-10.397640px;}
.ws1e_c00223{word-spacing:-0.035010px;}
.ws3_c00223{word-spacing:0.000000px;}
.ws16_c00223{word-spacing:0.014004px;}
.ws25_c00223{word-spacing:0.064313px;}
.ws2a_c00223{word-spacing:0.146166px;}
.ws1c_c00223{word-spacing:0.364104px;}
.ws19_c00223{word-spacing:0.378108px;}
.wsd_c00223{word-spacing:0.385110px;}
.ws29_c00223{word-spacing:0.450191px;}
.ws28_c00223{word-spacing:0.684057px;}
.wsc_c00223{word-spacing:1.071306px;}
.ws26_c00223{word-spacing:1.099168px;}
.ws27_c00223{word-spacing:1.292107px;}
.ws5_c00223{word-spacing:1.435410px;}
.ws24_c00223{word-spacing:2.192490px;}
.ws18_c00223{word-spacing:2.863818px;}
.ws1b_c00223{word-spacing:2.898828px;}
.ws17_c00223{word-spacing:2.905830px;}
.ws10_c00223{word-spacing:3.599028px;}
.ws23_c00223{word-spacing:4.560379px;}
.ws1f_c00223{word-spacing:4.670334px;}
.ws20_c00223{word-spacing:4.684338px;}
.ws21_c00223{word-spacing:4.987184px;}
.ws22_c00223{word-spacing:5.156736px;}
.wse_c00223{word-spacing:10.432980px;}
.wsb_c00223{word-spacing:11.147184px;}
.ws6_c00223{word-spacing:11.161188px;}
.ws7_c00223{word-spacing:11.168190px;}
.ws8_c00223{word-spacing:11.833380px;}
.wsf_c00223{word-spacing:14.053014px;}
.ws13_c00223{word-spacing:15.089310px;}
.ws14_c00223{word-spacing:15.124320px;}
.ws1a_c00223{word-spacing:15.446412px;}
.ws15_c00223{word-spacing:15.530436px;}
.ws11_c00223{word-spacing:16.195626px;}
.ws4_c00223{word-spacing:18.023148px;}
.ws1d_c00223{word-spacing:21.230064px;}
.ws12_c00223{word-spacing:21.265074px;}
.wsa_c00223{word-spacing:22.322376px;}
.ws9_c00223{word-spacing:30.626748px;}
._3_c00223{margin-left:-2.716776px;}
._1_c00223{margin-left:-1.127322px;}
._0_c00223{width:1.043298px;}
._2_c00223{width:5.930694px;}
.fc0_c00223{color:rgb(0,0,0);}
.fs3_c00223{font-size:37.809600px;}
.fs1_c00223{font-size:46.562400px;}
.fs4_c00223{font-size:58.466400px;}
.fs2_c00223{font-size:64.067400px;}
.fs0_c00223{font-size:70.020000px;}
.y0_c00223{bottom:0.000000px;}
.y2_c00223{bottom:109.740968px;}
.y1_c00223{bottom:129.810450px;}
.y24_c00223{bottom:149.428647px;}
.y23_c00223{bottom:167.249205px;}
.y22_c00223{bottom:185.249548px;}
.y21_c00223{bottom:203.070107px;}
.y20_c00223{bottom:224.670450px;}
.y1f_c00223{bottom:239.425617px;}
.y1e_c00223{bottom:280.824942px;}
.y1d_c00223{bottom:310.975554px;}
.y1c_c00223{bottom:341.215441px;}
.y1b_c00223{bottom:371.366054px;}
.y1a_c00223{bottom:401.516666px;}
.y19_c00223{bottom:431.667278px;}
.y18_c00223{bottom:461.907165px;}
.y17_c00223{bottom:492.057777px;}
.y16_c00223{bottom:522.297664px;}
.y15_c00223{bottom:552.448277px;}
.y14_c00223{bottom:583.229069px;}
.y13_c00223{bottom:614.998893px;}
.y12_c00223{bottom:646.318839px;}
.y11_c00223{bottom:676.469451px;}
.y10_c00223{bottom:706.709339px;}
.yf_c00223{bottom:736.859951px;}
.ye_c00223{bottom:767.099838px;}
.yd_c00223{bottom:797.250450px;}
.yc_c00223{bottom:820.020450px;}
.yb_c00223{bottom:858.900702px;}
.ya_c00223{bottom:890.309923px;}
.y9_c00223{bottom:920.549811px;}
.y8_c00223{bottom:950.700423px;}
.y7_c00223{bottom:980.940311px;}
.y6_c00223{bottom:1011.090923px;}
.y5_c00223{bottom:1041.330810px;}
.y4_c00223{bottom:1071.481422px;}
.y3_c00223{bottom:1110.451053px;}
.h4_c00223{height:39.698549px;}
.h5_c00223{height:54.098549px;}
.h2_c00223{height:59.281115px;}
.h1_c00223{height:62.771836px;}
.h3_c00223{height:62.791168px;}
.h0_c00223{height:1263.000000px;}
.w0_c00223{width:892.500000px;}
.x0_c00223{left:0.000000px;}
.x2_c00223{left:82.710059px;}
.x1_c00223{left:431.730000px;}
@media print{
.v2_c00223{vertical-align:-12.800000pt;}
.v0_c00223{vertical-align:0.000000pt;}
.v1_c00223{vertical-align:15.679104pt;}
.ls16_c00223{letter-spacing:-0.498913pt;}
.ls17_c00223{letter-spacing:-0.275442pt;}
.lsd_c00223{letter-spacing:-0.219361pt;}
.ls19_c00223{letter-spacing:-0.119531pt;}
.ls11_c00223{letter-spacing:-0.093546pt;}
.ls18_c00223{letter-spacing:-0.067561pt;}
.lsf_c00223{letter-spacing:-0.067217pt;}
.ls6_c00223{letter-spacing:-0.056016pt;}
.lsc_c00223{letter-spacing:-0.037344pt;}
.ls8_c00223{letter-spacing:-0.031120pt;}
.lse_c00223{letter-spacing:-0.024896pt;}
.lsb_c00223{letter-spacing:-0.018672pt;}
.ls13_c00223{letter-spacing:-0.015591pt;}
.lsa_c00223{letter-spacing:-0.012448pt;}
.ls9_c00223{letter-spacing:-0.006224pt;}
.ls14_c00223{letter-spacing:-0.005197pt;}
.ls7_c00223{letter-spacing:0.000000pt;}
.ls2_c00223{letter-spacing:0.012448pt;}
.ls4_c00223{letter-spacing:0.018672pt;}
.ls0_c00223{letter-spacing:0.031120pt;}
.ls10_c00223{letter-spacing:0.057167pt;}
.ls1_c00223{letter-spacing:0.192944pt;}
.ls3_c00223{letter-spacing:0.242736pt;}
.ls15_c00223{letter-spacing:0.275442pt;}
.ls12_c00223{letter-spacing:0.436549pt;}
.ls5_c00223{letter-spacing:0.966644pt;}
.ws1_c00223{word-spacing:-62.240000pt;}
.ws0_c00223{word-spacing:-11.245337pt;}
.ws2_c00223{word-spacing:-9.242347pt;}
.ws1e_c00223{word-spacing:-0.031120pt;}
.ws3_c00223{word-spacing:0.000000pt;}
.ws16_c00223{word-spacing:0.012448pt;}
.ws25_c00223{word-spacing:0.057167pt;}
.ws2a_c00223{word-spacing:0.129925pt;}
.ws1c_c00223{word-spacing:0.323648pt;}
.ws19_c00223{word-spacing:0.336096pt;}
.wsd_c00223{word-spacing:0.342320pt;}
.ws29_c00223{word-spacing:0.400170pt;}
.ws28_c00223{word-spacing:0.608051pt;}
.wsc_c00223{word-spacing:0.952272pt;}
.ws26_c00223{word-spacing:0.977039pt;}
.ws27_c00223{word-spacing:1.148540pt;}
.ws5_c00223{word-spacing:1.275920pt;}
.ws24_c00223{word-spacing:1.948880pt;}
.ws18_c00223{word-spacing:2.545616pt;}
.ws1b_c00223{word-spacing:2.576736pt;}
.ws17_c00223{word-spacing:2.582960pt;}
.ws10_c00223{word-spacing:3.199136pt;}
.ws23_c00223{word-spacing:4.053670pt;}
.ws1f_c00223{word-spacing:4.151408pt;}
.ws20_c00223{word-spacing:4.163856pt;}
.ws21_c00223{word-spacing:4.433052pt;}
.ws22_c00223{word-spacing:4.583766pt;}
.wse_c00223{word-spacing:9.273760pt;}
.wsb_c00223{word-spacing:9.908608pt;}
.ws6_c00223{word-spacing:9.921056pt;}
.ws7_c00223{word-spacing:9.927280pt;}
.ws8_c00223{word-spacing:10.518560pt;}
.wsf_c00223{word-spacing:12.491568pt;}
.ws13_c00223{word-spacing:13.412720pt;}
.ws14_c00223{word-spacing:13.443840pt;}
.ws1a_c00223{word-spacing:13.730144pt;}
.ws15_c00223{word-spacing:13.804832pt;}
.ws11_c00223{word-spacing:14.396112pt;}
.ws4_c00223{word-spacing:16.020576pt;}
.ws1d_c00223{word-spacing:18.871168pt;}
.ws12_c00223{word-spacing:18.902288pt;}
.wsa_c00223{word-spacing:19.842112pt;}
.ws9_c00223{word-spacing:27.223776pt;}
._3_c00223{margin-left:-2.414912pt;}
._1_c00223{margin-left:-1.002064pt;}
._0_c00223{width:0.927376pt;}
._2_c00223{width:5.271728pt;}
.fs3_c00223{font-size:33.608533pt;}
.fs1_c00223{font-size:41.388800pt;}
.fs4_c00223{font-size:51.970133pt;}
.fs2_c00223{font-size:56.948800pt;}
.fs0_c00223{font-size:62.240000pt;}
.y0_c00223{bottom:0.000000pt;}
.y2_c00223{bottom:97.547527pt;}
.y1_c00223{bottom:115.387067pt;}
.y24_c00223{bottom:132.825464pt;}
.y23_c00223{bottom:148.665960pt;}
.y22_c00223{bottom:164.666265pt;}
.y21_c00223{bottom:180.506762pt;}
.y20_c00223{bottom:199.707067pt;}
.y1f_c00223{bottom:212.822771pt;}
.y1e_c00223{bottom:249.622171pt;}
.y1d_c00223{bottom:276.422715pt;}
.y1c_c00223{bottom:303.302615pt;}
.y1b_c00223{bottom:330.103159pt;}
.y1a_c00223{bottom:356.903703pt;}
.y19_c00223{bottom:383.704247pt;}
.y18_c00223{bottom:410.584147pt;}
.y17_c00223{bottom:437.384691pt;}
.y16_c00223{bottom:464.264591pt;}
.y15_c00223{bottom:491.065135pt;}
.y14_c00223{bottom:518.425839pt;}
.y13_c00223{bottom:546.665683pt;}
.y12_c00223{bottom:574.505635pt;}
.y11_c00223{bottom:601.306179pt;}
.y10_c00223{bottom:628.186079pt;}
.yf_c00223{bottom:654.986623pt;}
.ye_c00223{bottom:681.866523pt;}
.yd_c00223{bottom:708.667067pt;}
.yc_c00223{bottom:728.907067pt;}
.yb_c00223{bottom:763.467291pt;}
.ya_c00223{bottom:791.386599pt;}
.y9_c00223{bottom:818.266499pt;}
.y8_c00223{bottom:845.067043pt;}
.y7_c00223{bottom:871.946943pt;}
.y6_c00223{bottom:898.747487pt;}
.y5_c00223{bottom:925.627387pt;}
.y4_c00223{bottom:952.427931pt;}
.y3_c00223{bottom:987.067603pt;}
.h4_c00223{height:35.287599pt;}
.h5_c00223{height:48.087599pt;}
.h2_c00223{height:52.694324pt;}
.h1_c00223{height:55.797187pt;}
.h3_c00223{height:55.814371pt;}
.h0_c00223{height:1122.666667pt;}
.w0_c00223{width:793.333333pt;}
.x0_c00223{left:0.000000pt;}
.x2_c00223{left:73.520052pt;}
.x1_c00223{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_18ea1c8a1f97eb3f175b9317.woff2')format("woff");}.ff1_c00224{font-family:ff1_c00224;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00224;src:url('chunks/assets/font_17f9a0a3c779e1eee868c75b.woff2')format("woff");}.ff2_c00224{font-family:ff2_c00224;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00224;src:url('chunks/assets/font_a12926c207225281a226b5d2.woff2')format("woff");}.ff3_c00224{font-family:ff3_c00224;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00224;src:url('chunks/assets/font_85525f44c77aac1928de702f.woff2')format("woff");}.ff4_c00224{font-family:ff4_c00224;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00224{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00224{vertical-align:-14.760000px;}
.v0_c00224{vertical-align:0.000000px;}
.v1_c00224{vertical-align:17.278308px;}
.ls13_c00224{letter-spacing:-0.246781px;}
.lsc_c00224{letter-spacing:-0.212720px;}
.ls16_c00224{letter-spacing:-0.198786px;}
.ls17_c00224{letter-spacing:-0.146166px;}
.lse_c00224{letter-spacing:-0.136749px;}
.ls12_c00224{letter-spacing:-0.083569px;}
.ls15_c00224{letter-spacing:-0.075619px;}
.ls18_c00224{letter-spacing:-0.070160px;}
.ls8_c00224{letter-spacing:-0.063018px;}
.lsb_c00224{letter-spacing:-0.053180px;}
.ls11_c00224{letter-spacing:-0.035010px;}
.lsd_c00224{letter-spacing:-0.028008px;}
.lsf_c00224{letter-spacing:-0.021006px;}
.lsa_c00224{letter-spacing:-0.014004px;}
.ls10_c00224{letter-spacing:-0.007002px;}
.ls9_c00224{letter-spacing:0.000000px;}
.ls0_c00224{letter-spacing:0.007002px;}
.ls4_c00224{letter-spacing:0.014004px;}
.ls3_c00224{letter-spacing:0.015194px;}
.ls7_c00224{letter-spacing:0.021006px;}
.ls14_c00224{letter-spacing:0.028008px;}
.ls5_c00224{letter-spacing:0.035010px;}
.ls6_c00224{letter-spacing:0.042012px;}
.ls2_c00224{letter-spacing:0.056016px;}
.ls1_c00224{letter-spacing:0.121954px;}
.sc__c00224{text-shadow:none;}
.sc0_c00224{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00224{-webkit-text-stroke:0px transparent;}
.sc0_c00224{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00224{word-spacing:-19.500570px;}
.ws0_c00224{word-spacing:-12.651004px;}
.ws2_c00224{word-spacing:-10.397640px;}
.ws16_c00224{word-spacing:-0.406116px;}
.ws1a_c00224{word-spacing:-0.035010px;}
.ws15_c00224{word-spacing:-0.028008px;}
.wsd_c00224{word-spacing:-0.014004px;}
.ws3_c00224{word-spacing:0.000000px;}
.ws1c_c00224{word-spacing:0.007002px;}
.ws9_c00224{word-spacing:0.014004px;}
.ws10_c00224{word-spacing:0.021006px;}
.ws1f_c00224{word-spacing:0.081853px;}
.ws6_c00224{word-spacing:0.182331px;}
.ws11_c00224{word-spacing:0.212720px;}
.ws7_c00224{word-spacing:0.287082px;}
.ws19_c00224{word-spacing:0.294084px;}
.ws12_c00224{word-spacing:0.296288px;}
.ws18_c00224{word-spacing:0.301086px;}
.ws1b_c00224{word-spacing:0.315090px;}
.ws5_c00224{word-spacing:0.357102px;}
.ws17_c00224{word-spacing:0.364104px;}
.wsa_c00224{word-spacing:0.509008px;}
.ws8_c00224{word-spacing:0.524203px;}
.wse_c00224{word-spacing:5.769648px;}
.ws4_c00224{word-spacing:6.098742px;}
.ws14_c00224{word-spacing:6.448842px;}
.ws13_c00224{word-spacing:6.483852px;}
.ws1d_c00224{word-spacing:7.051048px;}
.ws1e_c00224{word-spacing:7.360920px;}
.wsf_c00224{word-spacing:7.555158px;}
.wsc_c00224{word-spacing:13.667904px;}
.wsb_c00224{word-spacing:13.681908px;}
._c_c00224{margin-left:-2.709774px;}
._0_c00224{margin-left:-1.169334px;}
._1_c00224{width:1.413068px;}
._b_c00224{width:5.930694px;}
._2_c00224{width:62.639892px;}
._6_c00224{width:484.027254px;}
._4_c00224{width:527.124564px;}
._5_c00224{width:643.380106px;}
._8_c00224{width:665.953218px;}
._9_c00224{width:683.087112px;}
._a_c00224{width:713.468790px;}
._3_c00224{width:740.986650px;}
._7_c00224{width:802.996362px;}
.fc0_c00224{color:rgb(0,0,0);}
.fs3_c00224{font-size:37.809600px;}
.fs2_c00224{font-size:46.562400px;}
.fs4_c00224{font-size:58.466400px;}
.fs0_c00224{font-size:70.020000px;}
.fs1_c00224{font-size:75.971400px;}
.y0_c00224{bottom:0.000000px;}
.y2_c00224{bottom:109.740968px;}
.y1_c00224{bottom:129.810450px;}
.y25_c00224{bottom:149.429891px;}
.y24_c00224{bottom:170.940450px;}
.y23_c00224{bottom:185.700600px;}
.y21_c00224{bottom:208.650450px;}
.y20_c00224{bottom:229.620600px;}
.y1f_c00224{bottom:250.410450px;}
.y1e_c00224{bottom:277.410450px;}
.y1d_c00224{bottom:298.200450px;}
.y1c_c00224{bottom:319.170450px;}
.y1b_c00224{bottom:345.540600px;}
.y1a_c00224{bottom:366.510450px;}
.y22_c00224{bottom:388.920441px;}
.y19_c00224{bottom:389.730450px;}
.y18_c00224{bottom:419.431183px;}
.y17_c00224{bottom:459.750873px;}
.y16_c00224{bottom:491.160095px;}
.y15_c00224{bottom:530.040450px;}
.y14_c00224{bottom:554.880450px;}
.y13_c00224{bottom:603.930077px;}
.y12_c00224{bottom:642.899707px;}
.y11_c00224{bottom:673.050319px;}
.y10_c00224{bottom:703.290207px;}
.yf_c00224{bottom:742.259838px;}
.ye_c00224{bottom:772.410450px;}
.yd_c00224{bottom:797.160450px;}
.yc_c00224{bottom:836.219349px;}
.yb_c00224{bottom:856.379857px;}
.ya_c00224{bottom:880.860600px;}
.y9_c00224{bottom:918.750450px;}
.y8_c00224{bottom:940.530450px;}
.y7_c00224{bottom:989.670054px;}
.y6_c00224{bottom:1019.909942px;}
.y5_c00224{bottom:1050.060553px;}
.y4_c00224{bottom:1080.300441px;}
.y3_c00224{bottom:1110.451053px;}
.h6_c00224{height:39.338549px;}
.h7_c00224{height:54.098549px;}
.h1_c00224{height:62.771836px;}
.h4_c00224{height:63.216299px;}
.h5_c00224{height:64.789014px;}
.h3_c00224{height:68.589413px;}
.h2_c00224{height:79.235796px;}
.h0_c00224{height:1263.000000px;}
.w0_c00224{width:892.500000px;}
.x0_c00224{left:0.000000px;}
.x2_c00224{left:82.710059px;}
.x3_c00224{left:195.570130px;}
.x4_c00224{left:420.659793px;}
.x1_c00224{left:431.730000px;}
.x5_c00224{left:525.959370px;}
@media print{
.v2_c00224{vertical-align:-13.120000pt;}
.v0_c00224{vertical-align:0.000000pt;}
.v1_c00224{vertical-align:15.358496pt;}
.ls13_c00224{letter-spacing:-0.219361pt;}
.lsc_c00224{letter-spacing:-0.189084pt;}
.ls16_c00224{letter-spacing:-0.176698pt;}
.ls17_c00224{letter-spacing:-0.129925pt;}
.lse_c00224{letter-spacing:-0.121554pt;}
.ls12_c00224{letter-spacing:-0.074283pt;}
.ls15_c00224{letter-spacing:-0.067217pt;}
.ls18_c00224{letter-spacing:-0.062364pt;}
.ls8_c00224{letter-spacing:-0.056016pt;}
.lsb_c00224{letter-spacing:-0.047271pt;}
.ls11_c00224{letter-spacing:-0.031120pt;}
.lsd_c00224{letter-spacing:-0.024896pt;}
.lsf_c00224{letter-spacing:-0.018672pt;}
.lsa_c00224{letter-spacing:-0.012448pt;}
.ls10_c00224{letter-spacing:-0.006224pt;}
.ls9_c00224{letter-spacing:0.000000pt;}
.ls0_c00224{letter-spacing:0.006224pt;}
.ls4_c00224{letter-spacing:0.012448pt;}
.ls3_c00224{letter-spacing:0.013506pt;}
.ls7_c00224{letter-spacing:0.018672pt;}
.ls14_c00224{letter-spacing:0.024896pt;}
.ls5_c00224{letter-spacing:0.031120pt;}
.ls6_c00224{letter-spacing:0.037344pt;}
.ls2_c00224{letter-spacing:0.049792pt;}
.ls1_c00224{letter-spacing:0.108404pt;}
.ws1_c00224{word-spacing:-17.333840pt;}
.ws0_c00224{word-spacing:-11.245337pt;}
.ws2_c00224{word-spacing:-9.242347pt;}
.ws16_c00224{word-spacing:-0.360992pt;}
.ws1a_c00224{word-spacing:-0.031120pt;}
.ws15_c00224{word-spacing:-0.024896pt;}
.wsd_c00224{word-spacing:-0.012448pt;}
.ws3_c00224{word-spacing:0.000000pt;}
.ws1c_c00224{word-spacing:0.006224pt;}
.ws9_c00224{word-spacing:0.012448pt;}
.ws10_c00224{word-spacing:0.018672pt;}
.ws1f_c00224{word-spacing:0.072758pt;}
.ws6_c00224{word-spacing:0.162072pt;}
.ws11_c00224{word-spacing:0.189084pt;}
.ws7_c00224{word-spacing:0.255184pt;}
.ws19_c00224{word-spacing:0.261408pt;}
.ws12_c00224{word-spacing:0.263368pt;}
.ws18_c00224{word-spacing:0.267632pt;}
.ws1b_c00224{word-spacing:0.280080pt;}
.ws5_c00224{word-spacing:0.317424pt;}
.ws17_c00224{word-spacing:0.323648pt;}
.wsa_c00224{word-spacing:0.452452pt;}
.ws8_c00224{word-spacing:0.465958pt;}
.wse_c00224{word-spacing:5.128576pt;}
.ws4_c00224{word-spacing:5.421104pt;}
.ws14_c00224{word-spacing:5.732304pt;}
.ws13_c00224{word-spacing:5.763424pt;}
.ws1d_c00224{word-spacing:6.267598pt;}
.ws1e_c00224{word-spacing:6.543040pt;}
.wsf_c00224{word-spacing:6.715696pt;}
.wsc_c00224{word-spacing:12.149248pt;}
.wsb_c00224{word-spacing:12.161696pt;}
._c_c00224{margin-left:-2.408688pt;}
._0_c00224{margin-left:-1.039408pt;}
._1_c00224{width:1.256060pt;}
._b_c00224{width:5.271728pt;}
._2_c00224{width:55.679904pt;}
._6_c00224{width:430.246448pt;}
._4_c00224{width:468.555168pt;}
._5_c00224{width:571.893428pt;}
._8_c00224{width:591.958416pt;}
._9_c00224{width:607.188544pt;}
._a_c00224{width:634.194480pt;}
._3_c00224{width:658.654800pt;}
._7_c00224{width:713.774544pt;}
.fs3_c00224{font-size:33.608533pt;}
.fs2_c00224{font-size:41.388800pt;}
.fs4_c00224{font-size:51.970133pt;}
.fs0_c00224{font-size:62.240000pt;}
.fs1_c00224{font-size:67.530133pt;}
.y0_c00224{bottom:0.000000pt;}
.y2_c00224{bottom:97.547527pt;}
.y1_c00224{bottom:115.387067pt;}
.y25_c00224{bottom:132.826570pt;}
.y24_c00224{bottom:151.947067pt;}
.y23_c00224{bottom:165.067200pt;}
.y21_c00224{bottom:185.467067pt;}
.y20_c00224{bottom:204.107200pt;}
.y1f_c00224{bottom:222.587067pt;}
.y1e_c00224{bottom:246.587067pt;}
.y1d_c00224{bottom:265.067067pt;}
.y1c_c00224{bottom:283.707067pt;}
.y1b_c00224{bottom:307.147200pt;}
.y1a_c00224{bottom:325.787067pt;}
.y22_c00224{bottom:345.707059pt;}
.y19_c00224{bottom:346.427067pt;}
.y18_c00224{bottom:372.827719pt;}
.y17_c00224{bottom:408.667443pt;}
.y16_c00224{bottom:436.586751pt;}
.y15_c00224{bottom:471.147067pt;}
.y14_c00224{bottom:493.227067pt;}
.y13_c00224{bottom:536.826735pt;}
.y12_c00224{bottom:571.466407pt;}
.y11_c00224{bottom:598.266951pt;}
.y10_c00224{bottom:625.146851pt;}
.yf_c00224{bottom:659.786523pt;}
.ye_c00224{bottom:686.587067pt;}
.yd_c00224{bottom:708.587067pt;}
.yc_c00224{bottom:743.306088pt;}
.yb_c00224{bottom:761.226540pt;}
.ya_c00224{bottom:782.987200pt;}
.y9_c00224{bottom:816.667067pt;}
.y8_c00224{bottom:836.027067pt;}
.y7_c00224{bottom:879.706715pt;}
.y6_c00224{bottom:906.586615pt;}
.y5_c00224{bottom:933.387159pt;}
.y4_c00224{bottom:960.267059pt;}
.y3_c00224{bottom:987.067603pt;}
.h6_c00224{height:34.967599pt;}
.h7_c00224{height:48.087599pt;}
.h1_c00224{height:55.797187pt;}
.h4_c00224{height:56.192266pt;}
.h5_c00224{height:57.590234pt;}
.h3_c00224{height:60.968367pt;}
.h2_c00224{height:70.431819pt;}
.h0_c00224{height:1122.666667pt;}
.w0_c00224{width:793.333333pt;}
.x0_c00224{left:0.000000pt;}
.x2_c00224{left:73.520052pt;}
.x3_c00224{left:173.840116pt;}
.x4_c00224{left:373.919816pt;}
.x1_c00224{left:383.760000pt;}
.x5_c00224{left:467.519440pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_040f05ff086b3ab95d20d5da.woff2')format("woff");}.ff1_c00225{font-family:ff1_c00225;line-height:1.106934;font-style:normal;font-weight:normal;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_cd32278df05c0239f3588e7d.woff2')format("woff");}.ff2_c00225{font-family:ff2_c00225;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00225;src:url('chunks/assets/font_ab6d761312b4cecb74d7808b.woff2')format("woff");}.ff3_c00225{font-family:ff3_c00225;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00225;src:url('chunks/assets/font_3c285093c951c3b77f5a33af.woff2')format("woff");}.ff4_c00225{font-family:ff4_c00225;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00225;src:url('chunks/assets/font_d2d1159402ad28c1afeff7fd.woff2')format("woff");}.ff5_c00225{font-family:ff5_c00225;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00225;src:url('chunks/assets/font_587da32f32e091c8eebe00b9.woff2')format("woff");}.ff6_c00225{font-family:ff6_c00225;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00225{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00225{vertical-align:-14.760600px;}
.v0_c00225{vertical-align:0.000000px;}
.v1_c00225{vertical-align:17.641500px;}
.ls11_c00225{letter-spacing:-0.707443px;}
.lsd_c00225{letter-spacing:-0.246781px;}
.lsf_c00225{letter-spacing:-0.084024px;}
.ls10_c00225{letter-spacing:-0.075619px;}
.ls5_c00225{letter-spacing:-0.063018px;}
.lsc_c00225{letter-spacing:-0.056016px;}
.ls9_c00225{letter-spacing:-0.042012px;}
.lse_c00225{letter-spacing:-0.035010px;}
.ls8_c00225{letter-spacing:-0.028008px;}
.lsb_c00225{letter-spacing:-0.021006px;}
.lsa_c00225{letter-spacing:-0.014004px;}
.ls7_c00225{letter-spacing:-0.007002px;}
.ls6_c00225{letter-spacing:0.000000px;}
.ls1_c00225{letter-spacing:0.007002px;}
.ls2_c00225{letter-spacing:0.014004px;}
.ls0_c00225{letter-spacing:0.021006px;}
.ls4_c00225{letter-spacing:0.035010px;}
.ls3_c00225{letter-spacing:0.273078px;}
.sc__c00225{text-shadow:none;}
.sc0_c00225{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00225{-webkit-text-stroke:0px transparent;}
.sc0_c00225{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00225{word-spacing:-19.458558px;}
.ws1_c00225{word-spacing:-12.651004px;}
.ws2_c00225{word-spacing:-10.397640px;}
.ws4_c00225{word-spacing:-0.035010px;}
.ws3_c00225{word-spacing:0.000000px;}
.ws16_c00225{word-spacing:0.007002px;}
.ws5_c00225{word-spacing:0.014004px;}
.ws8_c00225{word-spacing:0.028008px;}
.ws17_c00225{word-spacing:0.042012px;}
.ws13_c00225{word-spacing:0.343098px;}
.ws21_c00225{word-spacing:0.719137px;}
.wsf_c00225{word-spacing:0.749214px;}
.ws1d_c00225{word-spacing:1.050300px;}
.ws1c_c00225{word-spacing:1.092312px;}
.ws1e_c00225{word-spacing:1.148328px;}
.ws19_c00225{word-spacing:2.142612px;}
.ws18_c00225{word-spacing:2.163618px;}
.wsb_c00225{word-spacing:2.506716px;}
.wse_c00225{word-spacing:2.513718px;}
.wsc_c00225{word-spacing:2.856816px;}
.ws6_c00225{word-spacing:6.105744px;}
.wsd_c00225{word-spacing:7.212060px;}
.ws20_c00225{word-spacing:7.870248px;}
.ws9_c00225{word-spacing:7.905258px;}
.wsa_c00225{word-spacing:7.919262px;}
.ws1f_c00225{word-spacing:7.933266px;}
.ws12_c00225{word-spacing:8.654472px;}
.ws15_c00225{word-spacing:9.767790px;}
.ws14_c00225{word-spacing:10.082880px;}
.ws7_c00225{word-spacing:16.538724px;}
.ws1a_c00225{word-spacing:16.888824px;}
.ws1b_c00225{word-spacing:16.916832px;}
.ws11_c00225{word-spacing:23.400684px;}
.ws10_c00225{word-spacing:23.743782px;}
._5_c00225{margin-left:-2.711388px;}
._3_c00225{margin-left:-1.379394px;}
._2_c00225{width:1.064304px;}
._6_c00225{width:2.339218px;}
._4_c00225{width:5.930694px;}
._0_c00225{width:43.559442px;}
._1_c00225{width:592.852338px;}
.fc0_c00225{color:rgb(0,0,0);}
.fs2_c00225{font-size:37.809600px;}
.fs1_c00225{font-size:46.562400px;}
.fs3_c00225{font-size:58.466400px;}
.fs0_c00225{font-size:70.020000px;}
.y0_c00225{bottom:0.000000px;}
.y2_c00225{bottom:109.740968px;}
.y1_c00225{bottom:129.810450px;}
.y1f_c00225{bottom:153.120600px;}
.y1e_c00225{bottom:167.790450px;}
.y1d_c00225{bottom:234.750576px;}
.y1c_c00225{bottom:265.531368px;}
.y1b_c00225{bottom:305.581057px;}
.y1a_c00225{bottom:344.550688px;}
.y19_c00225{bottom:374.610274px;}
.y18_c00225{bottom:404.850162px;}
.y17_c00225{bottom:443.819793px;}
.y16_c00225{bottom:482.880225px;}
.y15_c00225{bottom:514.289446px;}
.y14_c00225{bottom:553.259077px;}
.y13_c00225{bottom:592.228708px;}
.y12_c00225{bottom:622.379320px;}
.y11_c00225{bottom:652.529932px;}
.y10_c00225{bottom:682.680544px;}
.yf_c00225{bottom:712.920432px;}
.ye_c00225{bottom:743.071044px;}
.yd_c00225{bottom:782.040675px;}
.yc_c00225{bottom:821.010306px;}
.yb_c00225{bottom:851.250194px;}
.ya_c00225{bottom:881.400806px;}
.y9_c00225{bottom:920.370436px;}
.y8_c00225{bottom:959.340067px;}
.y7_c00225{bottom:989.490679px;}
.y6_c00225{bottom:1019.730567px;}
.y5_c00225{bottom:1058.610923px;}
.y4_c00225{bottom:1087.590450px;}
.y3_c00225{bottom:1109.731597px;}
.h7_c00225{height:39.337949px;}
.h4_c00225{height:62.600889px;}
.h1_c00225{height:62.771836px;}
.h6_c00225{height:62.772436px;}
.h5_c00225{height:62.772736px;}
.h3_c00225{height:63.216299px;}
.h2_c00225{height:64.789014px;}
.h0_c00225{height:1263.000000px;}
.w0_c00225{width:892.500000px;}
.x0_c00225{left:0.000000px;}
.x2_c00225{left:82.710059px;}
.x3_c00225{left:190.619631px;}
.x4_c00225{left:339.300040px;}
.x1_c00225{left:431.730000px;}
@media print{
.v2_c00225{vertical-align:-13.120533pt;}
.v0_c00225{vertical-align:0.000000pt;}
.v1_c00225{vertical-align:15.681333pt;}
.ls11_c00225{letter-spacing:-0.628839pt;}
.lsd_c00225{letter-spacing:-0.219361pt;}
.lsf_c00225{letter-spacing:-0.074688pt;}
.ls10_c00225{letter-spacing:-0.067217pt;}
.ls5_c00225{letter-spacing:-0.056016pt;}
.lsc_c00225{letter-spacing:-0.049792pt;}
.ls9_c00225{letter-spacing:-0.037344pt;}
.lse_c00225{letter-spacing:-0.031120pt;}
.ls8_c00225{letter-spacing:-0.024896pt;}
.lsb_c00225{letter-spacing:-0.018672pt;}
.lsa_c00225{letter-spacing:-0.012448pt;}
.ls7_c00225{letter-spacing:-0.006224pt;}
.ls6_c00225{letter-spacing:0.000000pt;}
.ls1_c00225{letter-spacing:0.006224pt;}
.ls2_c00225{letter-spacing:0.012448pt;}
.ls0_c00225{letter-spacing:0.018672pt;}
.ls4_c00225{letter-spacing:0.031120pt;}
.ls3_c00225{letter-spacing:0.242736pt;}
.ws0_c00225{word-spacing:-17.296496pt;}
.ws1_c00225{word-spacing:-11.245337pt;}
.ws2_c00225{word-spacing:-9.242347pt;}
.ws4_c00225{word-spacing:-0.031120pt;}
.ws3_c00225{word-spacing:0.000000pt;}
.ws16_c00225{word-spacing:0.006224pt;}
.ws5_c00225{word-spacing:0.012448pt;}
.ws8_c00225{word-spacing:0.024896pt;}
.ws17_c00225{word-spacing:0.037344pt;}
.ws13_c00225{word-spacing:0.304976pt;}
.ws21_c00225{word-spacing:0.639233pt;}
.wsf_c00225{word-spacing:0.665968pt;}
.ws1d_c00225{word-spacing:0.933600pt;}
.ws1c_c00225{word-spacing:0.970944pt;}
.ws1e_c00225{word-spacing:1.020736pt;}
.ws19_c00225{word-spacing:1.904544pt;}
.ws18_c00225{word-spacing:1.923216pt;}
.wsb_c00225{word-spacing:2.228192pt;}
.wse_c00225{word-spacing:2.234416pt;}
.wsc_c00225{word-spacing:2.539392pt;}
.ws6_c00225{word-spacing:5.427328pt;}
.wsd_c00225{word-spacing:6.410720pt;}
.ws20_c00225{word-spacing:6.995776pt;}
.ws9_c00225{word-spacing:7.026896pt;}
.wsa_c00225{word-spacing:7.039344pt;}
.ws1f_c00225{word-spacing:7.051792pt;}
.ws12_c00225{word-spacing:7.692864pt;}
.ws15_c00225{word-spacing:8.682480pt;}
.ws14_c00225{word-spacing:8.962560pt;}
.ws7_c00225{word-spacing:14.701088pt;}
.ws1a_c00225{word-spacing:15.012288pt;}
.ws1b_c00225{word-spacing:15.037184pt;}
.ws11_c00225{word-spacing:20.800608pt;}
.ws10_c00225{word-spacing:21.105584pt;}
._5_c00225{margin-left:-2.410123pt;}
._3_c00225{margin-left:-1.226128pt;}
._2_c00225{width:0.946048pt;}
._6_c00225{width:2.079305pt;}
._4_c00225{width:5.271728pt;}
._0_c00225{width:38.719504pt;}
._1_c00225{width:526.979856pt;}
.fs2_c00225{font-size:33.608533pt;}
.fs1_c00225{font-size:41.388800pt;}
.fs3_c00225{font-size:51.970133pt;}
.fs0_c00225{font-size:62.240000pt;}
.y0_c00225{bottom:0.000000pt;}
.y2_c00225{bottom:97.547527pt;}
.y1_c00225{bottom:115.387067pt;}
.y1f_c00225{bottom:136.107200pt;}
.y1e_c00225{bottom:149.147067pt;}
.y1d_c00225{bottom:208.667179pt;}
.y1c_c00225{bottom:236.027883pt;}
.y1b_c00225{bottom:271.627607pt;}
.y1a_c00225{bottom:306.267279pt;}
.y19_c00225{bottom:332.986911pt;}
.y18_c00225{bottom:359.866811pt;}
.y17_c00225{bottom:394.506483pt;}
.y16_c00225{bottom:429.226867pt;}
.y15_c00225{bottom:457.146175pt;}
.y14_c00225{bottom:491.785847pt;}
.y13_c00225{bottom:526.425519pt;}
.y12_c00225{bottom:553.226063pt;}
.y11_c00225{bottom:580.026607pt;}
.y10_c00225{bottom:606.827151pt;}
.yf_c00225{bottom:633.707051pt;}
.ye_c00225{bottom:660.507595pt;}
.yd_c00225{bottom:695.147267pt;}
.yc_c00225{bottom:729.786939pt;}
.yb_c00225{bottom:756.666839pt;}
.ya_c00225{bottom:783.467383pt;}
.y9_c00225{bottom:818.107055pt;}
.y8_c00225{bottom:852.746727pt;}
.y7_c00225{bottom:879.547271pt;}
.y6_c00225{bottom:906.427171pt;}
.y5_c00225{bottom:940.987487pt;}
.y4_c00225{bottom:966.747067pt;}
.y3_c00225{bottom:986.428087pt;}
.h7_c00225{height:34.967066pt;}
.h4_c00225{height:55.645234pt;}
.h1_c00225{height:55.797187pt;}
.h6_c00225{height:55.797721pt;}
.h5_c00225{height:55.797987pt;}
.h3_c00225{height:56.192266pt;}
.h2_c00225{height:57.590234pt;}
.h0_c00225{height:1122.666667pt;}
.w0_c00225{width:793.333333pt;}
.x0_c00225{left:0.000000pt;}
.x2_c00225{left:73.520052pt;}
.x3_c00225{left:169.439672pt;}
.x4_c00225{left:301.600036pt;}
.x1_c00225{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d5da81571bc8663ba2ae928d.woff2')format("woff");}.ff1_c00226{font-family:ff1_c00226;line-height:1.106934;font-style:normal;font-weight:normal;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_86c8bbd133b46655ab8d7973.woff2')format("woff");}.ff2_c00226{font-family:ff2_c00226;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00226;src:url('chunks/assets/font_a9090db0ff949d64b73a3abc.woff2')format("woff");}.ff3_c00226{font-family:ff3_c00226;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00226;src:url('chunks/assets/font_5da8048272ccd7ed48af4379.woff2')format("woff");}.ff4_c00226{font-family:ff4_c00226;line-height:0.892090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00226;src:url('chunks/assets/font_1bebfd9da7fb34958b238682.woff2')format("woff");}.ff5_c00226{font-family:ff5_c00226;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00226;src:url('chunks/assets/font_a7fbe743722878e130997b66.woff2')format("woff");}.ff6_c00226{font-family:ff6_c00226;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00226;src:url('chunks/assets/font_f95721f404b1b815c4cce209.woff2')format("woff");}.ff7_c00226{font-family:ff7_c00226;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00226{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00226{vertical-align:-14.760000px;}
.v0_c00226{vertical-align:0.000000px;}
.v1_c00226{vertical-align:17.634474px;}
.ls17_c00226{letter-spacing:-0.333258px;}
.ls9_c00226{letter-spacing:-0.246781px;}
.ls10_c00226{letter-spacing:-0.189929px;}
.ls15_c00226{letter-spacing:-0.152013px;}
.ls11_c00226{letter-spacing:-0.129151px;}
.ls13_c00226{letter-spacing:-0.075619px;}
.ls6_c00226{letter-spacing:-0.063018px;}
.ls14_c00226{letter-spacing:-0.058466px;}
.lsd_c00226{letter-spacing:-0.056016px;}
.ls8_c00226{letter-spacing:-0.042012px;}
.lsa_c00226{letter-spacing:-0.035010px;}
.ls18_c00226{letter-spacing:-0.029233px;}
.lsb_c00226{letter-spacing:-0.028008px;}
.ls12_c00226{letter-spacing:-0.021006px;}
.lsc_c00226{letter-spacing:-0.014004px;}
.lsf_c00226{letter-spacing:-0.007002px;}
.ls7_c00226{letter-spacing:0.000000px;}
.ls3_c00226{letter-spacing:0.014004px;}
.ls5_c00226{letter-spacing:0.017540px;}
.ls0_c00226{letter-spacing:0.021006px;}
.ls1_c00226{letter-spacing:0.028008px;}
.ls4_c00226{letter-spacing:0.049014px;}
.ls2_c00226{letter-spacing:0.217062px;}
.lse_c00226{letter-spacing:0.343098px;}
.ls16_c00226{letter-spacing:0.350798px;}
.sc__c00226{text-shadow:none;}
.sc0_c00226{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00226{-webkit-text-stroke:0px transparent;}
.sc0_c00226{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00226{word-spacing:-58.466400px;}
.ws1_c00226{word-spacing:-19.486566px;}
.ws0_c00226{word-spacing:-12.651004px;}
.ws2_c00226{word-spacing:-10.397640px;}
.ws1c_c00226{word-spacing:-0.420120px;}
.ws20_c00226{word-spacing:-0.339105px;}
.ws15_c00226{word-spacing:-0.007002px;}
.ws1f_c00226{word-spacing:-0.005847px;}
.ws4_c00226{word-spacing:0.000000px;}
.wsa_c00226{word-spacing:0.007002px;}
.ws6_c00226{word-spacing:0.028008px;}
.ws22_c00226{word-spacing:0.040926px;}
.ws1d_c00226{word-spacing:0.070160px;}
.ws1e_c00226{word-spacing:0.163706px;}
.ws21_c00226{word-spacing:0.344952px;}
.ws17_c00226{word-spacing:0.440634px;}
.ws16_c00226{word-spacing:0.683743px;}
.wsc_c00226{word-spacing:1.078308px;}
.wsb_c00226{word-spacing:1.099314px;}
.ws1b_c00226{word-spacing:1.799514px;}
.ws1a_c00226{word-spacing:1.806516px;}
.ws19_c00226{word-spacing:3.241926px;}
.ws18_c00226{word-spacing:3.262932px;}
.ws7_c00226{word-spacing:4.278222px;}
.ws12_c00226{word-spacing:4.334238px;}
.ws8_c00226{word-spacing:4.341240px;}
.wsf_c00226{word-spacing:6.455844px;}
.wsd_c00226{word-spacing:6.497856px;}
.wse_c00226{word-spacing:6.518862px;}
.ws11_c00226{word-spacing:7.583166px;}
.ws10_c00226{word-spacing:12.253500px;}
.ws13_c00226{word-spacing:13.667904px;}
.ws5_c00226{word-spacing:14.004000px;}
.ws14_c00226{word-spacing:16.195626px;}
.ws9_c00226{word-spacing:23.414688px;}
._3_c00226{margin-left:-2.709774px;}
._0_c00226{margin-left:-1.190340px;}
._1_c00226{width:1.141326px;}
._2_c00226{width:5.930694px;}
.fc0_c00226{color:rgb(0,0,0);}
.fs3_c00226{font-size:37.809600px;}
.fs1_c00226{font-size:46.562400px;}
.fs4_c00226{font-size:58.466400px;}
.fs0_c00226{font-size:70.020000px;}
.fs2_c00226{font-size:75.971400px;}
.y0_c00226{bottom:0.000000px;}
.y2_c00226{bottom:109.740968px;}
.y1_c00226{bottom:129.810450px;}
.y20_c00226{bottom:153.120600px;}
.y1f_c00226{bottom:170.940450px;}
.y1e_c00226{bottom:188.940450px;}
.y1d_c00226{bottom:203.610513px;}
.y1c_c00226{bottom:241.860689px;}
.y1b_c00226{bottom:272.011301px;}
.y1a_c00226{bottom:310.980931px;}
.y19_c00226{bottom:341.220819px;}
.y18_c00226{bottom:380.190450px;}
.y17_c00226{bottom:404.940450px;}
.y16_c00226{bottom:453.989793px;}
.y15_c00226{bottom:493.049955px;}
.y14_c00226{bottom:533.190671px;}
.y13_c00226{bottom:572.160302px;}
.y12_c00226{bottom:602.400189px;}
.y11_c00226{bottom:632.550801px;}
.y10_c00226{bottom:662.790689px;}
.yf_c00226{bottom:692.941301px;}
.ye_c00226{bottom:723.181188px;}
.yd_c00226{bottom:762.150819px;}
.yc_c00226{bottom:801.120567px;}
.yb_c00226{bottom:832.529788px;}
.ya_c00226{bottom:862.769676px;}
.y9_c00226{bottom:901.739307px;}
.y8_c00226{bottom:940.619662px;}
.y7_c00226{bottom:970.859550px;}
.y6_c00226{bottom:1001.010162px;}
.y5_c00226{bottom:1039.979793px;}
.y4_c00226{bottom:1079.041831px;}
.y3_c00226{bottom:1110.451053px;}
.h7_c00226{height:39.337949px;}
.h6_c00226{height:39.338549px;}
.h2_c00226{height:62.600889px;}
.h4_c00226{height:62.602869px;}
.h3_c00226{height:62.766310px;}
.h1_c00226{height:62.771836px;}
.h5_c00226{height:68.589413px;}
.h0_c00226{height:1263.000000px;}
.w0_c00226{width:892.500000px;}
.x0_c00226{left:0.000000px;}
.x2_c00226{left:82.710059px;}
.x1_c00226{left:431.730000px;}
@media print{
.v2_c00226{vertical-align:-13.120000pt;}
.v0_c00226{vertical-align:0.000000pt;}
.v1_c00226{vertical-align:15.675088pt;}
.ls17_c00226{letter-spacing:-0.296230pt;}
.ls9_c00226{letter-spacing:-0.219361pt;}
.ls10_c00226{letter-spacing:-0.168825pt;}
.ls15_c00226{letter-spacing:-0.135122pt;}
.ls11_c00226{letter-spacing:-0.114801pt;}
.ls13_c00226{letter-spacing:-0.067217pt;}
.ls6_c00226{letter-spacing:-0.056016pt;}
.ls14_c00226{letter-spacing:-0.051970pt;}
.lsd_c00226{letter-spacing:-0.049792pt;}
.ls8_c00226{letter-spacing:-0.037344pt;}
.lsa_c00226{letter-spacing:-0.031120pt;}
.ls18_c00226{letter-spacing:-0.025985pt;}
.lsb_c00226{letter-spacing:-0.024896pt;}
.ls12_c00226{letter-spacing:-0.018672pt;}
.lsc_c00226{letter-spacing:-0.012448pt;}
.lsf_c00226{letter-spacing:-0.006224pt;}
.ls7_c00226{letter-spacing:0.000000pt;}
.ls3_c00226{letter-spacing:0.012448pt;}
.ls5_c00226{letter-spacing:0.015591pt;}
.ls0_c00226{letter-spacing:0.018672pt;}
.ls1_c00226{letter-spacing:0.024896pt;}
.ls4_c00226{letter-spacing:0.043568pt;}
.ls2_c00226{letter-spacing:0.192944pt;}
.lse_c00226{letter-spacing:0.304976pt;}
.ls16_c00226{letter-spacing:0.311821pt;}
.ws3_c00226{word-spacing:-51.970133pt;}
.ws1_c00226{word-spacing:-17.321392pt;}
.ws0_c00226{word-spacing:-11.245337pt;}
.ws2_c00226{word-spacing:-9.242347pt;}
.ws1c_c00226{word-spacing:-0.373440pt;}
.ws20_c00226{word-spacing:-0.301427pt;}
.ws15_c00226{word-spacing:-0.006224pt;}
.ws1f_c00226{word-spacing:-0.005197pt;}
.ws4_c00226{word-spacing:0.000000pt;}
.wsa_c00226{word-spacing:0.006224pt;}
.ws6_c00226{word-spacing:0.024896pt;}
.ws22_c00226{word-spacing:0.036379pt;}
.ws1d_c00226{word-spacing:0.062364pt;}
.ws1e_c00226{word-spacing:0.145516pt;}
.ws21_c00226{word-spacing:0.306624pt;}
.ws17_c00226{word-spacing:0.391675pt;}
.ws16_c00226{word-spacing:0.607771pt;}
.wsc_c00226{word-spacing:0.958496pt;}
.wsb_c00226{word-spacing:0.977168pt;}
.ws1b_c00226{word-spacing:1.599568pt;}
.ws1a_c00226{word-spacing:1.605792pt;}
.ws19_c00226{word-spacing:2.881712pt;}
.ws18_c00226{word-spacing:2.900384pt;}
.ws7_c00226{word-spacing:3.802864pt;}
.ws12_c00226{word-spacing:3.852656pt;}
.ws8_c00226{word-spacing:3.858880pt;}
.wsf_c00226{word-spacing:5.738528pt;}
.wsd_c00226{word-spacing:5.775872pt;}
.wse_c00226{word-spacing:5.794544pt;}
.ws11_c00226{word-spacing:6.740592pt;}
.ws10_c00226{word-spacing:10.892000pt;}
.ws13_c00226{word-spacing:12.149248pt;}
.ws5_c00226{word-spacing:12.448000pt;}
.ws14_c00226{word-spacing:14.396112pt;}
.ws9_c00226{word-spacing:20.813056pt;}
._3_c00226{margin-left:-2.408688pt;}
._0_c00226{margin-left:-1.058080pt;}
._1_c00226{width:1.014512pt;}
._2_c00226{width:5.271728pt;}
.fs3_c00226{font-size:33.608533pt;}
.fs1_c00226{font-size:41.388800pt;}
.fs4_c00226{font-size:51.970133pt;}
.fs0_c00226{font-size:62.240000pt;}
.fs2_c00226{font-size:67.530133pt;}
.y0_c00226{bottom:0.000000pt;}
.y2_c00226{bottom:97.547527pt;}
.y1_c00226{bottom:115.387067pt;}
.y20_c00226{bottom:136.107200pt;}
.y1f_c00226{bottom:151.947067pt;}
.y1e_c00226{bottom:167.947067pt;}
.y1d_c00226{bottom:180.987123pt;}
.y1c_c00226{bottom:214.987279pt;}
.y1b_c00226{bottom:241.787823pt;}
.y1a_c00226{bottom:276.427495pt;}
.y19_c00226{bottom:303.307395pt;}
.y18_c00226{bottom:337.947067pt;}
.y17_c00226{bottom:359.947067pt;}
.y16_c00226{bottom:403.546483pt;}
.y15_c00226{bottom:438.266627pt;}
.y14_c00226{bottom:473.947263pt;}
.y13_c00226{bottom:508.586935pt;}
.y12_c00226{bottom:535.466835pt;}
.y11_c00226{bottom:562.267379pt;}
.y10_c00226{bottom:589.147279pt;}
.yf_c00226{bottom:615.947823pt;}
.ye_c00226{bottom:642.827723pt;}
.yd_c00226{bottom:677.467395pt;}
.yc_c00226{bottom:712.107171pt;}
.yb_c00226{bottom:740.026479pt;}
.ya_c00226{bottom:766.906379pt;}
.y9_c00226{bottom:801.546051pt;}
.y8_c00226{bottom:836.106367pt;}
.y7_c00226{bottom:862.986267pt;}
.y6_c00226{bottom:889.786811pt;}
.y5_c00226{bottom:924.426483pt;}
.y4_c00226{bottom:959.148295pt;}
.y3_c00226{bottom:987.067603pt;}
.h7_c00226{height:34.967066pt;}
.h6_c00226{height:34.967599pt;}
.h2_c00226{height:55.645234pt;}
.h4_c00226{height:55.646994pt;}
.h3_c00226{height:55.792275pt;}
.h1_c00226{height:55.797187pt;}
.h5_c00226{height:60.968367pt;}
.h0_c00226{height:1122.666667pt;}
.w0_c00226{width:793.333333pt;}
.x0_c00226{left:0.000000pt;}
.x2_c00226{left:73.520052pt;}
.x1_c00226{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cb5fde0e561092d23d5cfc4f.woff2')format("woff");}.ff1_c00227{font-family:ff1_c00227;line-height:1.106934;font-style:normal;font-weight:normal;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_ab6d761312b4cecb74d7808b.woff2')format("woff");}.ff2_c00227{font-family:ff2_c00227;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00227;src:url('chunks/assets/font_34a153fa56c3bb8718baf093.woff2')format("woff");}.ff3_c00227{font-family:ff3_c00227;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00227;src:url('chunks/assets/font_587da32f32e091c8eebe00b9.woff2')format("woff");}.ff4_c00227{font-family:ff4_c00227;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00227{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00227{vertical-align:0.000000px;}
.lsd_c00227{letter-spacing:-0.420120px;}
.ls6_c00227{letter-spacing:-0.063018px;}
.ls9_c00227{letter-spacing:-0.056016px;}
.lsc_c00227{letter-spacing:-0.049014px;}
.lsf_c00227{letter-spacing:-0.042012px;}
.lsb_c00227{letter-spacing:-0.035010px;}
.ls8_c00227{letter-spacing:-0.028008px;}
.lse_c00227{letter-spacing:-0.021006px;}
.ls10_c00227{letter-spacing:-0.014004px;}
.lsa_c00227{letter-spacing:-0.007002px;}
.ls7_c00227{letter-spacing:0.000000px;}
.ls0_c00227{letter-spacing:0.007002px;}
.ls3_c00227{letter-spacing:0.014004px;}
.ls1_c00227{letter-spacing:0.028008px;}
.ls4_c00227{letter-spacing:0.273078px;}
.ls5_c00227{letter-spacing:0.630180px;}
.ls2_c00227{letter-spacing:11.497284px;}
.sc__c00227{text-shadow:none;}
.sc0_c00227{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00227{-webkit-text-stroke:0px transparent;}
.sc0_c00227{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00227{word-spacing:-19.493568px;}
.ws1_c00227{word-spacing:-19.458558px;}
.ws4_c00227{word-spacing:-0.021006px;}
.ws2_c00227{word-spacing:0.000000px;}
.wsd_c00227{word-spacing:0.014004px;}
.ws19_c00227{word-spacing:0.042012px;}
.wsb_c00227{word-spacing:0.392112px;}
.wsc_c00227{word-spacing:0.406116px;}
.ws12_c00227{word-spacing:4.313232px;}
.ws17_c00227{word-spacing:5.020434px;}
.ws15_c00227{word-spacing:5.041440px;}
.ws18_c00227{word-spacing:5.055444px;}
.ws16_c00227{word-spacing:5.069448px;}
.ws10_c00227{word-spacing:10.769076px;}
.ws11_c00227{word-spacing:10.797084px;}
.wse_c00227{word-spacing:11.168190px;}
.wsf_c00227{word-spacing:11.546298px;}
.ws14_c00227{word-spacing:12.603600px;}
.ws13_c00227{word-spacing:12.939696px;}
.ws3_c00227{word-spacing:16.545726px;}
.ws5_c00227{word-spacing:63.375102px;}
.ws7_c00227{word-spacing:703.399914px;}
.ws9_c00227{word-spacing:703.434924px;}
.ws6_c00227{word-spacing:703.455930px;}
.wsa_c00227{word-spacing:703.462932px;}
.ws8_c00227{word-spacing:703.483938px;}
._3_c00227{margin-left:-703.602972px;}
._1_c00227{margin-left:-63.410112px;}
._5_c00227{margin-left:-1.050300px;}
._0_c00227{width:1.036296px;}
._6_c00227{width:5.482566px;}
._2_c00227{width:484.524396px;}
._4_c00227{width:703.084824px;}
.fc0_c00227{color:rgb(0,0,0);}
.fs0_c00227{font-size:70.020000px;}
.y0_c00227{bottom:0.000000px;}
.y2_c00227{bottom:109.740968px;}
.y1_c00227{bottom:129.810450px;}
.y23_c00227{bottom:217.380553px;}
.y22_c00227{bottom:256.260909px;}
.y21_c00227{bottom:286.950675px;}
.y20_c00227{bottom:318.720500px;}
.y1f_c00227{bottom:350.040446px;}
.y1e_c00227{bottom:380.280333px;}
.y1d_c00227{bottom:410.430945px;}
.y1c_c00227{bottom:440.670832px;}
.y1b_c00227{bottom:479.551188px;}
.y1a_c00227{bottom:518.520819px;}
.y19_c00227{bottom:557.490450px;}
.y15_c00227{bottom:578.370450px;}
.y14_c00227{bottom:599.250450px;}
.y13_c00227{bottom:620.040450px;}
.y12_c00227{bottom:641.010450px;}
.y18_c00227{bottom:663.511269px;}
.y11_c00227{bottom:663.690450px;}
.y17_c00227{bottom:683.580751px;}
.y10_c00227{bottom:684.570450px;}
.yf_c00227{bottom:705.360450px;}
.ye_c00227{bottom:726.330450px;}
.y16_c00227{bottom:747.120400px;}
.yd_c00227{bottom:747.120450px;}
.yc_c00227{bottom:768.002489px;}
.yb_c00227{bottom:807.602300px;}
.ya_c00227{bottom:846.571931px;}
.y9_c00227{bottom:876.722543px;}
.y8_c00227{bottom:915.692174px;}
.y7_c00227{bottom:954.661805px;}
.y6_c00227{bottom:993.631436px;}
.y5_c00227{bottom:1032.601066px;}
.y4_c00227{bottom:1071.481422px;}
.y3_c00227{bottom:1110.451053px;}
.h1_c00227{height:62.771836px;}
.h2_c00227{height:63.216299px;}
.h0_c00227{height:1263.000000px;}
.w0_c00227{width:892.500000px;}
.x0_c00227{left:0.000000px;}
.x2_c00227{left:82.710059px;}
.x4_c00227{left:296.190000px;}
.x3_c00227{left:301.049923px;}
.x5_c00227{left:331.469577px;}
.x9_c00227{left:339.300000px;}
.x6_c00227{left:386.190207px;}
.x7_c00227{left:395.369829px;}
.x1_c00227{left:431.730000px;}
.xa_c00227{left:446.400841px;}
.x8_c00227{left:491.489784px;}
@media print{
.v0_c00227{vertical-align:0.000000pt;}
.lsd_c00227{letter-spacing:-0.373440pt;}
.ls6_c00227{letter-spacing:-0.056016pt;}
.ls9_c00227{letter-spacing:-0.049792pt;}
.lsc_c00227{letter-spacing:-0.043568pt;}
.lsf_c00227{letter-spacing:-0.037344pt;}
.lsb_c00227{letter-spacing:-0.031120pt;}
.ls8_c00227{letter-spacing:-0.024896pt;}
.lse_c00227{letter-spacing:-0.018672pt;}
.ls10_c00227{letter-spacing:-0.012448pt;}
.lsa_c00227{letter-spacing:-0.006224pt;}
.ls7_c00227{letter-spacing:0.000000pt;}
.ls0_c00227{letter-spacing:0.006224pt;}
.ls3_c00227{letter-spacing:0.012448pt;}
.ls1_c00227{letter-spacing:0.024896pt;}
.ls4_c00227{letter-spacing:0.242736pt;}
.ls5_c00227{letter-spacing:0.560160pt;}
.ls2_c00227{letter-spacing:10.219808pt;}
.ws0_c00227{word-spacing:-17.327616pt;}
.ws1_c00227{word-spacing:-17.296496pt;}
.ws4_c00227{word-spacing:-0.018672pt;}
.ws2_c00227{word-spacing:0.000000pt;}
.wsd_c00227{word-spacing:0.012448pt;}
.ws19_c00227{word-spacing:0.037344pt;}
.wsb_c00227{word-spacing:0.348544pt;}
.wsc_c00227{word-spacing:0.360992pt;}
.ws12_c00227{word-spacing:3.833984pt;}
.ws17_c00227{word-spacing:4.462608pt;}
.ws15_c00227{word-spacing:4.481280pt;}
.ws18_c00227{word-spacing:4.493728pt;}
.ws16_c00227{word-spacing:4.506176pt;}
.ws10_c00227{word-spacing:9.572512pt;}
.ws11_c00227{word-spacing:9.597408pt;}
.wse_c00227{word-spacing:9.927280pt;}
.wsf_c00227{word-spacing:10.263376pt;}
.ws14_c00227{word-spacing:11.203200pt;}
.ws13_c00227{word-spacing:11.501952pt;}
.ws3_c00227{word-spacing:14.707312pt;}
.ws5_c00227{word-spacing:56.333424pt;}
.ws7_c00227{word-spacing:625.244368pt;}
.ws9_c00227{word-spacing:625.275488pt;}
.ws6_c00227{word-spacing:625.294160pt;}
.wsa_c00227{word-spacing:625.300384pt;}
.ws8_c00227{word-spacing:625.319056pt;}
._3_c00227{margin-left:-625.424864pt;}
._1_c00227{margin-left:-56.364544pt;}
._5_c00227{margin-left:-0.933600pt;}
._0_c00227{width:0.921152pt;}
._6_c00227{width:4.873392pt;}
._2_c00227{width:430.688352pt;}
._4_c00227{width:624.964288pt;}
.fs0_c00227{font-size:62.240000pt;}
.y0_c00227{bottom:0.000000pt;}
.y2_c00227{bottom:97.547527pt;}
.y1_c00227{bottom:115.387067pt;}
.y23_c00227{bottom:193.227159pt;}
.y22_c00227{bottom:227.787475pt;}
.y21_c00227{bottom:255.067267pt;}
.y20_c00227{bottom:283.307111pt;}
.y1f_c00227{bottom:311.147063pt;}
.y1e_c00227{bottom:338.026963pt;}
.y1d_c00227{bottom:364.827507pt;}
.y1c_c00227{bottom:391.707407pt;}
.y1b_c00227{bottom:426.267723pt;}
.y1a_c00227{bottom:460.907395pt;}
.y19_c00227{bottom:495.547067pt;}
.y15_c00227{bottom:514.107067pt;}
.y14_c00227{bottom:532.667067pt;}
.y13_c00227{bottom:551.147067pt;}
.y12_c00227{bottom:569.787067pt;}
.y18_c00227{bottom:589.787795pt;}
.y11_c00227{bottom:589.947067pt;}
.y17_c00227{bottom:607.627335pt;}
.y10_c00227{bottom:608.507067pt;}
.yf_c00227{bottom:626.987067pt;}
.ye_c00227{bottom:645.627067pt;}
.y16_c00227{bottom:664.107023pt;}
.yd_c00227{bottom:664.107067pt;}
.yc_c00227{bottom:682.668879pt;}
.yb_c00227{bottom:717.868711pt;}
.ya_c00227{bottom:752.508383pt;}
.y9_c00227{bottom:779.308927pt;}
.y8_c00227{bottom:813.948599pt;}
.y7_c00227{bottom:848.588271pt;}
.y6_c00227{bottom:883.227943pt;}
.y5_c00227{bottom:917.867615pt;}
.y4_c00227{bottom:952.427931pt;}
.y3_c00227{bottom:987.067603pt;}
.h1_c00227{height:55.797187pt;}
.h2_c00227{height:56.192266pt;}
.h0_c00227{height:1122.666667pt;}
.w0_c00227{width:793.333333pt;}
.x0_c00227{left:0.000000pt;}
.x2_c00227{left:73.520052pt;}
.x4_c00227{left:263.280000pt;}
.x3_c00227{left:267.599932pt;}
.x5_c00227{left:294.639624pt;}
.x9_c00227{left:301.600000pt;}
.x6_c00227{left:343.280184pt;}
.x7_c00227{left:351.439848pt;}
.x1_c00227{left:383.760000pt;}
.xa_c00227{left:396.800748pt;}
.x8_c00227{left:436.879808pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dcd12ab3a45b3390d1fab5a4.woff2')format("woff");}.ff1_c00228{font-family:ff1_c00228;line-height:1.106934;font-style:normal;font-weight:normal;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_f7800ed5030618dea3f43037.woff2')format("woff");}.ff2_c00228{font-family:ff2_c00228;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00228;src:url('chunks/assets/font_587da32f32e091c8eebe00b9.woff2')format("woff");}.ff3_c00228{font-family:ff3_c00228;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00228{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00228{vertical-align:0.000000px;}
.lsc_c00228{letter-spacing:-0.070020px;}
.ls7_c00228{letter-spacing:-0.063018px;}
.lse_c00228{letter-spacing:-0.049014px;}
.lsd_c00228{letter-spacing:-0.042012px;}
.ls10_c00228{letter-spacing:-0.035010px;}
.ls9_c00228{letter-spacing:-0.028008px;}
.lsb_c00228{letter-spacing:-0.021006px;}
.lsf_c00228{letter-spacing:-0.014004px;}
.lsa_c00228{letter-spacing:-0.007002px;}
.ls8_c00228{letter-spacing:0.000000px;}
.ls4_c00228{letter-spacing:0.007002px;}
.ls3_c00228{letter-spacing:0.014004px;}
.ls0_c00228{letter-spacing:0.049014px;}
.ls5_c00228{letter-spacing:0.273078px;}
.ls6_c00228{letter-spacing:0.630180px;}
.ls2_c00228{letter-spacing:10.776078px;}
.ls1_c00228{letter-spacing:11.133180px;}
.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;}
}
.ws2_c00228{word-spacing:-70.020000px;}
.ws1_c00228{word-spacing:-19.514574px;}
.ws0_c00228{word-spacing:-19.465560px;}
.ws3_c00228{word-spacing:-19.458558px;}
.ws4_c00228{word-spacing:0.000000px;}
.ws11_c00228{word-spacing:0.014004px;}
.ws16_c00228{word-spacing:0.021006px;}
.wsd_c00228{word-spacing:0.035010px;}
.ws6_c00228{word-spacing:0.350100px;}
.ws18_c00228{word-spacing:0.371106px;}
.ws13_c00228{word-spacing:1.085310px;}
.ws17_c00228{word-spacing:1.092312px;}
.ws1a_c00228{word-spacing:2.163618px;}
.wsf_c00228{word-spacing:2.492712px;}
.ws10_c00228{word-spacing:2.499714px;}
.ws9_c00228{word-spacing:3.592026px;}
.ws5_c00228{word-spacing:4.334238px;}
.ws1d_c00228{word-spacing:5.076450px;}
.ws12_c00228{word-spacing:5.384538px;}
.wse_c00228{word-spacing:7.597170px;}
.ws7_c00228{word-spacing:10.075878px;}
.ws8_c00228{word-spacing:10.089882px;}
.ws19_c00228{word-spacing:10.811088px;}
.wsb_c00228{word-spacing:10.853100px;}
.wsc_c00228{word-spacing:11.189196px;}
.ws15_c00228{word-spacing:14.697198px;}
.ws14_c00228{word-spacing:14.760216px;}
.ws1b_c00228{word-spacing:17.308944px;}
.ws1c_c00228{word-spacing:18.744354px;}
.wsa_c00228{word-spacing:20.536866px;}
._1_c00228{margin-left:-1.351386px;}
._0_c00228{width:1.078308px;}
._2_c00228{width:10.545012px;}
.fc0_c00228{color:rgb(0,0,0);}
.fs0_c00228{font-size:70.020000px;}
.y0_c00228{bottom:0.000000px;}
.y2_c00228{bottom:109.740968px;}
.y1_c00228{bottom:129.810450px;}
.y1d_c00228{bottom:243.389892px;}
.y1c_c00228{bottom:282.359523px;}
.y1b_c00228{bottom:312.599411px;}
.y1a_c00228{bottom:342.750023px;}
.y19_c00228{bottom:373.439789px;}
.y18_c00228{bottom:404.759735px;}
.y17_c00228{bottom:434.910347px;}
.y16_c00228{bottom:473.879978px;}
.y15_c00228{bottom:512.849609px;}
.y14_c00228{bottom:543.000221px;}
.y13_c00228{bottom:581.969852px;}
.y12_c00228{bottom:620.939483px;}
.y11_c00228{bottom:651.539973px;}
.y10_c00228{bottom:682.859919px;}
.yf_c00228{bottom:713.099807px;}
.ye_c00228{bottom:752.069438px;}
.yd_c00228{bottom:790.949793px;}
.yc_c00228{bottom:821.189681px;}
.yb_c00228{bottom:851.340293px;}
.ya_c00228{bottom:890.309923px;}
.y9_c00228{bottom:929.279555px;}
.y8_c00228{bottom:959.519442px;}
.y7_c00228{bottom:989.670054px;}
.y6_c00228{bottom:1019.909942px;}
.y5_c00228{bottom:1050.060553px;}
.y4_c00228{bottom:1080.300441px;}
.y3_c00228{bottom:1110.451053px;}
.h1_c00228{height:62.771836px;}
.h0_c00228{height:1263.000000px;}
.w0_c00228{width:892.500000px;}
.x0_c00228{left:0.000000px;}
.x2_c00228{left:82.710059px;}
.x1_c00228{left:431.730000px;}
@media print{
.v0_c00228{vertical-align:0.000000pt;}
.lsc_c00228{letter-spacing:-0.062240pt;}
.ls7_c00228{letter-spacing:-0.056016pt;}
.lse_c00228{letter-spacing:-0.043568pt;}
.lsd_c00228{letter-spacing:-0.037344pt;}
.ls10_c00228{letter-spacing:-0.031120pt;}
.ls9_c00228{letter-spacing:-0.024896pt;}
.lsb_c00228{letter-spacing:-0.018672pt;}
.lsf_c00228{letter-spacing:-0.012448pt;}
.lsa_c00228{letter-spacing:-0.006224pt;}
.ls8_c00228{letter-spacing:0.000000pt;}
.ls4_c00228{letter-spacing:0.006224pt;}
.ls3_c00228{letter-spacing:0.012448pt;}
.ls0_c00228{letter-spacing:0.043568pt;}
.ls5_c00228{letter-spacing:0.242736pt;}
.ls6_c00228{letter-spacing:0.560160pt;}
.ls2_c00228{letter-spacing:9.578736pt;}
.ls1_c00228{letter-spacing:9.896160pt;}
.ws2_c00228{word-spacing:-62.240000pt;}
.ws1_c00228{word-spacing:-17.346288pt;}
.ws0_c00228{word-spacing:-17.302720pt;}
.ws3_c00228{word-spacing:-17.296496pt;}
.ws4_c00228{word-spacing:0.000000pt;}
.ws11_c00228{word-spacing:0.012448pt;}
.ws16_c00228{word-spacing:0.018672pt;}
.wsd_c00228{word-spacing:0.031120pt;}
.ws6_c00228{word-spacing:0.311200pt;}
.ws18_c00228{word-spacing:0.329872pt;}
.ws13_c00228{word-spacing:0.964720pt;}
.ws17_c00228{word-spacing:0.970944pt;}
.ws1a_c00228{word-spacing:1.923216pt;}
.wsf_c00228{word-spacing:2.215744pt;}
.ws10_c00228{word-spacing:2.221968pt;}
.ws9_c00228{word-spacing:3.192912pt;}
.ws5_c00228{word-spacing:3.852656pt;}
.ws1d_c00228{word-spacing:4.512400pt;}
.ws12_c00228{word-spacing:4.786256pt;}
.wse_c00228{word-spacing:6.753040pt;}
.ws7_c00228{word-spacing:8.956336pt;}
.ws8_c00228{word-spacing:8.968784pt;}
.ws19_c00228{word-spacing:9.609856pt;}
.wsb_c00228{word-spacing:9.647200pt;}
.wsc_c00228{word-spacing:9.945952pt;}
.ws15_c00228{word-spacing:13.064176pt;}
.ws14_c00228{word-spacing:13.120192pt;}
.ws1b_c00228{word-spacing:15.385728pt;}
.ws1c_c00228{word-spacing:16.661648pt;}
.wsa_c00228{word-spacing:18.254992pt;}
._1_c00228{margin-left:-1.201232pt;}
._0_c00228{width:0.958496pt;}
._2_c00228{width:9.373344pt;}
.fs0_c00228{font-size:62.240000pt;}
.y0_c00228{bottom:0.000000pt;}
.y2_c00228{bottom:97.547527pt;}
.y1_c00228{bottom:115.387067pt;}
.y1d_c00228{bottom:216.346571pt;}
.y1c_c00228{bottom:250.986243pt;}
.y1b_c00228{bottom:277.866143pt;}
.y1a_c00228{bottom:304.666687pt;}
.y19_c00228{bottom:331.946479pt;}
.y18_c00228{bottom:359.786431pt;}
.y17_c00228{bottom:386.586975pt;}
.y16_c00228{bottom:421.226647pt;}
.y15_c00228{bottom:455.866319pt;}
.y14_c00228{bottom:482.666863pt;}
.y13_c00228{bottom:517.306535pt;}
.y12_c00228{bottom:551.946207pt;}
.y11_c00228{bottom:579.146643pt;}
.y10_c00228{bottom:606.986595pt;}
.yf_c00228{bottom:633.866495pt;}
.ye_c00228{bottom:668.506167pt;}
.yd_c00228{bottom:703.066483pt;}
.yc_c00228{bottom:729.946383pt;}
.yb_c00228{bottom:756.746927pt;}
.ya_c00228{bottom:791.386599pt;}
.y9_c00228{bottom:826.026271pt;}
.y8_c00228{bottom:852.906171pt;}
.y7_c00228{bottom:879.706715pt;}
.y6_c00228{bottom:906.586615pt;}
.y5_c00228{bottom:933.387159pt;}
.y4_c00228{bottom:960.267059pt;}
.y3_c00228{bottom:987.067603pt;}
.h1_c00228{height:55.797187pt;}
.h0_c00228{height:1122.666667pt;}
.w0_c00228{width:793.333333pt;}
.x0_c00228{left:0.000000pt;}
.x2_c00228{left:73.520052pt;}
.x1_c00228{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8520438e8e6305470cfd97a6.woff2')format("woff");}.ff1_c00229{font-family:ff1_c00229;line-height:1.106934;font-style:normal;font-weight:normal;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_e4a0c8d302e4766e5ffc8ad8.woff2')format("woff");}.ff2_c00229{font-family:ff2_c00229;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00229;src:url('chunks/assets/font_aa10679376119e8037b60900.woff2')format("woff");}.ff3_c00229{font-family:ff3_c00229;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00229;src:url('chunks/assets/font_defc3e30c93d2fb29151f987.woff2')format("woff");}.ff4_c00229{font-family:ff4_c00229;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00229{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00229{vertical-align:-14.760600px;}
.v0_c00229{vertical-align:0.000000px;}
.v1_c00229{vertical-align:17.635968px;}
.lsb_c00229{letter-spacing:-0.246781px;}
.lsd_c00229{letter-spacing:-0.136749px;}
.lsf_c00229{letter-spacing:-0.075619px;}
.ls5_c00229{letter-spacing:-0.063018px;}
.lsa_c00229{letter-spacing:-0.042012px;}
.ls9_c00229{letter-spacing:-0.035010px;}
.lsc_c00229{letter-spacing:-0.028008px;}
.ls8_c00229{letter-spacing:-0.021006px;}
.ls7_c00229{letter-spacing:-0.014004px;}
.lse_c00229{letter-spacing:-0.007002px;}
.ls6_c00229{letter-spacing:0.000000px;}
.ls0_c00229{letter-spacing:0.007002px;}
.ls1_c00229{letter-spacing:0.014004px;}
.ls3_c00229{letter-spacing:0.028008px;}
.ls4_c00229{letter-spacing:0.049014px;}
.ls10_c00229{letter-spacing:0.660670px;}
.ls2_c00229{letter-spacing:0.693198px;}
.sc__c00229{text-shadow:none;}
.sc0_c00229{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00229{-webkit-text-stroke:0px transparent;}
.sc0_c00229{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00229{word-spacing:-12.651004px;}
.ws1_c00229{word-spacing:-10.397640px;}
.ws19_c00229{word-spacing:-0.648977px;}
.ws10_c00229{word-spacing:-0.364104px;}
.ws18_c00229{word-spacing:-0.063018px;}
.ws16_c00229{word-spacing:-0.042012px;}
.ws13_c00229{word-spacing:-0.028008px;}
.ws12_c00229{word-spacing:-0.021006px;}
.ws2_c00229{word-spacing:0.000000px;}
.wsc_c00229{word-spacing:0.014004px;}
.ws14_c00229{word-spacing:0.315090px;}
.wsb_c00229{word-spacing:0.329094px;}
.ws15_c00229{word-spacing:0.364104px;}
.ws6_c00229{word-spacing:0.378108px;}
.wsa_c00229{word-spacing:0.385110px;}
.wse_c00229{word-spacing:0.410246px;}
.wsf_c00229{word-spacing:1.827522px;}
.ws5_c00229{word-spacing:4.684338px;}
.ws8_c00229{word-spacing:8.969562px;}
.ws9_c00229{word-spacing:9.004572px;}
.ws7_c00229{word-spacing:15.817518px;}
.ws3_c00229{word-spacing:16.202628px;}
.ws4_c00229{word-spacing:16.209630px;}
.ws11_c00229{word-spacing:16.545726px;}
.wsd_c00229{word-spacing:18.373248px;}
.ws17_c00229{word-spacing:63.010998px;}
._8_c00229{margin-left:-62.296794px;}
._a_c00229{margin-left:-2.709774px;}
._1_c00229{margin-left:-1.169334px;}
._0_c00229{width:1.260360px;}
._9_c00229{width:5.930694px;}
._2_c00229{width:62.996994px;}
._5_c00229{width:628.282458px;}
._4_c00229{width:662.277168px;}
._7_c00229{width:683.241156px;}
._6_c00229{width:765.353610px;}
._3_c00229{width:784.434060px;}
.fc1_c00229{color:rgb(255,0,255);}
.fc0_c00229{color:rgb(0,0,0);}
.fs3_c00229{font-size:37.809600px;}
.fs1_c00229{font-size:46.562400px;}
.fs4_c00229{font-size:58.466400px;}
.fs0_c00229{font-size:70.020000px;}
.fs2_c00229{font-size:75.971400px;}
.y0_c00229{bottom:0.000000px;}
.y2_c00229{bottom:109.740968px;}
.y1_c00229{bottom:129.810450px;}
.y22_c00229{bottom:149.429990px;}
.y21_c00229{bottom:200.280600px;}
.y20_c00229{bottom:235.470450px;}
.y1d_c00229{bottom:268.950450px;}
.y1c_c00229{bottom:289.920450px;}
.y1b_c00229{bottom:310.710600px;}
.y1a_c00229{bottom:331.590450px;}
.y19_c00229{bottom:352.470450px;}
.y1f_c00229{bottom:353.189762px;}
.y1e_c00229{bottom:373.350270px;}
.y18_c00229{bottom:373.351003px;}
.y17_c00229{bottom:402.960711px;}
.y16_c00229{bottom:443.190702px;}
.y15_c00229{bottom:473.341314px;}
.y14_c00229{bottom:512.310945px;}
.y13_c00229{bottom:551.280576px;}
.y12_c00229{bottom:590.250207px;}
.y11_c00229{bottom:620.400819px;}
.y10_c00229{bottom:659.370450px;}
.yf_c00229{bottom:684.120450px;}
.ye_c00229{bottom:733.261057px;}
.yd_c00229{bottom:772.141413px;}
.yc_c00229{bottom:802.381301px;}
.yb_c00229{bottom:841.350932px;}
.ya_c00229{bottom:880.231287px;}
.y9_c00229{bottom:910.561458px;}
.y8_c00229{bottom:941.970679px;}
.y7_c00229{bottom:972.210567px;}
.y6_c00229{bottom:1011.090923px;}
.y5_c00229{bottom:1050.060553px;}
.y4_c00229{bottom:1080.300441px;}
.y3_c00229{bottom:1110.451053px;}
.h7_c00229{height:39.337949px;}
.h8_c00229{height:54.098549px;}
.h2_c00229{height:62.600889px;}
.h3_c00229{height:62.767804px;}
.h1_c00229{height:62.771836px;}
.h5_c00229{height:63.216299px;}
.h6_c00229{height:64.789014px;}
.h4_c00229{height:68.589413px;}
.h0_c00229{height:1263.000000px;}
.w0_c00229{width:892.500000px;}
.x0_c00229{left:0.000000px;}
.x2_c00229{left:82.710059px;}
.x3_c00229{left:178.919230px;}
.x5_c00229{left:379.800378px;}
.x4_c00229{left:397.259865px;}
.x1_c00229{left:431.730000px;}
.x6_c00229{left:520.200981px;}
@media print{
.v2_c00229{vertical-align:-13.120533pt;}
.v0_c00229{vertical-align:0.000000pt;}
.v1_c00229{vertical-align:15.676416pt;}
.lsb_c00229{letter-spacing:-0.219361pt;}
.lsd_c00229{letter-spacing:-0.121554pt;}
.lsf_c00229{letter-spacing:-0.067217pt;}
.ls5_c00229{letter-spacing:-0.056016pt;}
.lsa_c00229{letter-spacing:-0.037344pt;}
.ls9_c00229{letter-spacing:-0.031120pt;}
.lsc_c00229{letter-spacing:-0.024896pt;}
.ls8_c00229{letter-spacing:-0.018672pt;}
.ls7_c00229{letter-spacing:-0.012448pt;}
.lse_c00229{letter-spacing:-0.006224pt;}
.ls6_c00229{letter-spacing:0.000000pt;}
.ls0_c00229{letter-spacing:0.006224pt;}
.ls1_c00229{letter-spacing:0.012448pt;}
.ls3_c00229{letter-spacing:0.024896pt;}
.ls4_c00229{letter-spacing:0.043568pt;}
.ls10_c00229{letter-spacing:0.587263pt;}
.ls2_c00229{letter-spacing:0.616176pt;}
.ws0_c00229{word-spacing:-11.245337pt;}
.ws1_c00229{word-spacing:-9.242347pt;}
.ws19_c00229{word-spacing:-0.576868pt;}
.ws10_c00229{word-spacing:-0.323648pt;}
.ws18_c00229{word-spacing:-0.056016pt;}
.ws16_c00229{word-spacing:-0.037344pt;}
.ws13_c00229{word-spacing:-0.024896pt;}
.ws12_c00229{word-spacing:-0.018672pt;}
.ws2_c00229{word-spacing:0.000000pt;}
.wsc_c00229{word-spacing:0.012448pt;}
.ws14_c00229{word-spacing:0.280080pt;}
.wsb_c00229{word-spacing:0.292528pt;}
.ws15_c00229{word-spacing:0.323648pt;}
.ws6_c00229{word-spacing:0.336096pt;}
.wsa_c00229{word-spacing:0.342320pt;}
.wse_c00229{word-spacing:0.364663pt;}
.wsf_c00229{word-spacing:1.624464pt;}
.ws5_c00229{word-spacing:4.163856pt;}
.ws8_c00229{word-spacing:7.972944pt;}
.ws9_c00229{word-spacing:8.004064pt;}
.ws7_c00229{word-spacing:14.060016pt;}
.ws3_c00229{word-spacing:14.402336pt;}
.ws4_c00229{word-spacing:14.408560pt;}
.ws11_c00229{word-spacing:14.707312pt;}
.wsd_c00229{word-spacing:16.331776pt;}
.ws17_c00229{word-spacing:56.009776pt;}
._8_c00229{margin-left:-55.374928pt;}
._a_c00229{margin-left:-2.408688pt;}
._1_c00229{margin-left:-1.039408pt;}
._0_c00229{width:1.120320pt;}
._9_c00229{width:5.271728pt;}
._2_c00229{width:55.997328pt;}
._5_c00229{width:558.473296pt;}
._4_c00229{width:588.690816pt;}
._7_c00229{width:607.325472pt;}
._6_c00229{width:680.314320pt;}
._3_c00229{width:697.274720pt;}
.fs3_c00229{font-size:33.608533pt;}
.fs1_c00229{font-size:41.388800pt;}
.fs4_c00229{font-size:51.970133pt;}
.fs0_c00229{font-size:62.240000pt;}
.fs2_c00229{font-size:67.530133pt;}
.y0_c00229{bottom:0.000000pt;}
.y2_c00229{bottom:97.547527pt;}
.y1_c00229{bottom:115.387067pt;}
.y22_c00229{bottom:132.826658pt;}
.y21_c00229{bottom:178.027200pt;}
.y20_c00229{bottom:209.307067pt;}
.y1d_c00229{bottom:239.067067pt;}
.y1c_c00229{bottom:257.707067pt;}
.y1b_c00229{bottom:276.187200pt;}
.y1a_c00229{bottom:294.747067pt;}
.y19_c00229{bottom:313.307067pt;}
.y1f_c00229{bottom:313.946455pt;}
.y1e_c00229{bottom:331.866907pt;}
.y18_c00229{bottom:331.867559pt;}
.y17_c00229{bottom:358.187299pt;}
.y16_c00229{bottom:393.947291pt;}
.y15_c00229{bottom:420.747835pt;}
.y14_c00229{bottom:455.387507pt;}
.y13_c00229{bottom:490.027179pt;}
.y12_c00229{bottom:524.666851pt;}
.y11_c00229{bottom:551.467395pt;}
.y10_c00229{bottom:586.107067pt;}
.yf_c00229{bottom:608.107067pt;}
.ye_c00229{bottom:651.787607pt;}
.yd_c00229{bottom:686.347923pt;}
.yc_c00229{bottom:713.227823pt;}
.yb_c00229{bottom:747.867495pt;}
.ya_c00229{bottom:782.427811pt;}
.y9_c00229{bottom:809.387963pt;}
.y8_c00229{bottom:837.307271pt;}
.y7_c00229{bottom:864.187171pt;}
.y6_c00229{bottom:898.747487pt;}
.y5_c00229{bottom:933.387159pt;}
.y4_c00229{bottom:960.267059pt;}
.y3_c00229{bottom:987.067603pt;}
.h7_c00229{height:34.967066pt;}
.h8_c00229{height:48.087599pt;}
.h2_c00229{height:55.645234pt;}
.h3_c00229{height:55.793603pt;}
.h1_c00229{height:55.797187pt;}
.h5_c00229{height:56.192266pt;}
.h6_c00229{height:57.590234pt;}
.h4_c00229{height:60.968367pt;}
.h0_c00229{height:1122.666667pt;}
.w0_c00229{width:793.333333pt;}
.x0_c00229{left:0.000000pt;}
.x2_c00229{left:73.520052pt;}
.x3_c00229{left:159.039316pt;}
.x5_c00229{left:337.600336pt;}
.x4_c00229{left:353.119880pt;}
.x1_c00229{left:383.760000pt;}
.x6_c00229{left:462.400872pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_09754cc37ba53fb39196b571.woff2')format("woff");}.ff1_c00230{font-family:ff1_c00230;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00230;src:url('chunks/assets/font_ab6d761312b4cecb74d7808b.woff2')format("woff");}.ff2_c00230{font-family:ff2_c00230;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00230;src:url('chunks/assets/font_587da32f32e091c8eebe00b9.woff2')format("woff");}.ff3_c00230{font-family:ff3_c00230;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00230;src:url('chunks/assets/font_4579aa31412c47854f19b337.woff2')format("woff");}.ff4_c00230{font-family:ff4_c00230;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00230;src:url('chunks/assets/font_f24c0a472b367f57fac33d07.woff2')format("woff");}.ff5_c00230{font-family:ff5_c00230;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00230{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00230{vertical-align:-14.760000px;}
.v0_c00230{vertical-align:0.000000px;}
.v1_c00230{vertical-align:32.043114px;}
.ls13_c00230{letter-spacing:-0.233866px;}
.ls12_c00230{letter-spacing:-0.075619px;}
.lsc_c00230{letter-spacing:-0.070020px;}
.ls7_c00230{letter-spacing:-0.063018px;}
.lse_c00230{letter-spacing:-0.056016px;}
.ls10_c00230{letter-spacing:-0.049014px;}
.ls9_c00230{letter-spacing:-0.042012px;}
.ls11_c00230{letter-spacing:-0.035010px;}
.lsb_c00230{letter-spacing:-0.028008px;}
.lsf_c00230{letter-spacing:-0.021006px;}
.lsd_c00230{letter-spacing:-0.014004px;}
.lsa_c00230{letter-spacing:-0.007002px;}
.ls8_c00230{letter-spacing:0.000000px;}
.ls1_c00230{letter-spacing:0.007002px;}
.ls0_c00230{letter-spacing:0.014004px;}
.ls6_c00230{letter-spacing:0.023281px;}
.ls3_c00230{letter-spacing:0.028008px;}
.ls4_c00230{letter-spacing:0.035010px;}
.ls5_c00230{letter-spacing:0.084024px;}
.ls2_c00230{letter-spacing:0.273078px;}
.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:-19.458558px;}
.ws1_c00230{word-spacing:-12.967628px;}
.ws2_c00230{word-spacing:-10.397640px;}
.ws5_c00230{word-spacing:-0.028008px;}
.ws7_c00230{word-spacing:-0.021006px;}
.ws3_c00230{word-spacing:0.000000px;}
.ws13_c00230{word-spacing:0.007002px;}
.ws8_c00230{word-spacing:0.014004px;}
.ws19_c00230{word-spacing:0.049014px;}
.ws22_c00230{word-spacing:0.245559px;}
.ws4_c00230{word-spacing:0.343098px;}
.ws12_c00230{word-spacing:0.385110px;}
.wse_c00230{word-spacing:0.399114px;}
.ws14_c00230{word-spacing:0.693198px;}
.ws18_c00230{word-spacing:0.728208px;}
.ws1a_c00230{word-spacing:2.163618px;}
.ws21_c00230{word-spacing:2.898828px;}
.ws9_c00230{word-spacing:3.942126px;}
.wsa_c00230{word-spacing:4.019148px;}
.ws1d_c00230{word-spacing:4.663332px;}
.ws1e_c00230{word-spacing:5.055444px;}
.ws20_c00230{word-spacing:6.105744px;}
.ws1f_c00230{word-spacing:6.119748px;}
.ws15_c00230{word-spacing:6.511860px;}
.ws16_c00230{word-spacing:6.854958px;}
.ws10_c00230{word-spacing:7.541154px;}
.ws11_c00230{word-spacing:7.562160px;}
.ws1b_c00230{word-spacing:9.361674px;}
.ws1c_c00230{word-spacing:9.368676px;}
.wsc_c00230{word-spacing:10.033866px;}
.wsb_c00230{word-spacing:10.397970px;}
.wsd_c00230{word-spacing:10.439982px;}
.wsf_c00230{word-spacing:13.688910px;}
.ws17_c00230{word-spacing:16.923834px;}
.ws6_c00230{word-spacing:63.025002px;}
._4_c00230{margin-left:-63.354096px;}
._3_c00230{margin-left:-62.268786px;}
._b_c00230{margin-left:-2.712672px;}
._9_c00230{margin-left:-1.372392px;}
._8_c00230{width:1.323378px;}
._a_c00230{width:5.930694px;}
._6_c00230{width:43.923546px;}
._0_c00230{width:62.639892px;}
._7_c00230{width:605.518956px;}
._1_c00230{width:623.773170px;}
._5_c00230{width:706.277736px;}
._2_c00230{width:850.609962px;}
.fc0_c00230{color:rgb(0,0,0);}
.fs2_c00230{font-size:37.809600px;}
.fs1_c00230{font-size:46.562400px;}
.fs3_c00230{font-size:58.466400px;}
.fs0_c00230{font-size:70.020000px;}
.y0_c00230{bottom:0.000000px;}
.y2_c00230{bottom:109.740968px;}
.y1_c00230{bottom:129.810450px;}
.y21_c00230{bottom:170.760450px;}
.y20_c00230{bottom:185.520324px;}
.y1f_c00230{bottom:221.069478px;}
.y1e_c00230{bottom:251.220090px;}
.y1d_c00230{bottom:290.189721px;}
.y1c_c00230{bottom:329.159352px;}
.y1b_c00230{bottom:359.309964px;}
.y1a_c00230{bottom:389.549851px;}
.y19_c00230{bottom:419.700463px;}
.y18_c00230{bottom:458.580819px;}
.y17_c00230{bottom:497.549672px;}
.y16_c00230{bottom:527.700284px;}
.y15_c00230{bottom:557.940171px;}
.y14_c00230{bottom:588.090783px;}
.y13_c00230{bottom:618.330671px;}
.y12_c00230{bottom:648.481283px;}
.y11_c00230{bottom:687.450914px;}
.y10_c00230{bottom:726.420545px;}
.yf_c00230{bottom:756.571157px;}
.ye_c00230{bottom:786.811044px;}
.yd_c00230{bottom:825.780675px;}
.yc_c00230{bottom:864.661031px;}
.yb_c00230{bottom:895.350797px;}
.ya_c00230{bottom:927.120621px;}
.y9_c00230{bottom:967.170311px;}
.y8_c00230{bottom:987.330819px;}
.y7_c00230{bottom:1026.300450px;}
.y6_c00230{bottom:1047.180450px;}
.y5_c00230{bottom:1067.970450px;}
.y4_c00230{bottom:1088.940450px;}
.y3_c00230{bottom:1109.731597px;}
.h6_c00230{height:39.338549px;}
.h3_c00230{height:62.600889px;}
.h1_c00230{height:62.771836px;}
.h5_c00230{height:62.772340px;}
.h2_c00230{height:63.216299px;}
.h4_c00230{height:73.785578px;}
.h0_c00230{height:1263.000000px;}
.w0_c00230{width:892.500000px;}
.x0_c00230{left:0.000000px;}
.x2_c00230{left:82.710059px;}
.x4_c00230{left:173.970000px;}
.x3_c00230{left:178.919289px;}
.x5_c00230{left:339.300000px;}
.x1_c00230{left:431.730000px;}
.x6_c00230{left:446.400841px;}
@media print{
.v2_c00230{vertical-align:-13.120000pt;}
.v0_c00230{vertical-align:0.000000pt;}
.v1_c00230{vertical-align:28.482768pt;}
.ls13_c00230{letter-spacing:-0.207881pt;}
.ls12_c00230{letter-spacing:-0.067217pt;}
.lsc_c00230{letter-spacing:-0.062240pt;}
.ls7_c00230{letter-spacing:-0.056016pt;}
.lse_c00230{letter-spacing:-0.049792pt;}
.ls10_c00230{letter-spacing:-0.043568pt;}
.ls9_c00230{letter-spacing:-0.037344pt;}
.ls11_c00230{letter-spacing:-0.031120pt;}
.lsb_c00230{letter-spacing:-0.024896pt;}
.lsf_c00230{letter-spacing:-0.018672pt;}
.lsd_c00230{letter-spacing:-0.012448pt;}
.lsa_c00230{letter-spacing:-0.006224pt;}
.ls8_c00230{letter-spacing:0.000000pt;}
.ls1_c00230{letter-spacing:0.006224pt;}
.ls0_c00230{letter-spacing:0.012448pt;}
.ls6_c00230{letter-spacing:0.020694pt;}
.ls3_c00230{letter-spacing:0.024896pt;}
.ls4_c00230{letter-spacing:0.031120pt;}
.ls5_c00230{letter-spacing:0.074688pt;}
.ls2_c00230{letter-spacing:0.242736pt;}
.ws0_c00230{word-spacing:-17.296496pt;}
.ws1_c00230{word-spacing:-11.526781pt;}
.ws2_c00230{word-spacing:-9.242347pt;}
.ws5_c00230{word-spacing:-0.024896pt;}
.ws7_c00230{word-spacing:-0.018672pt;}
.ws3_c00230{word-spacing:0.000000pt;}
.ws13_c00230{word-spacing:0.006224pt;}
.ws8_c00230{word-spacing:0.012448pt;}
.ws19_c00230{word-spacing:0.043568pt;}
.ws22_c00230{word-spacing:0.218275pt;}
.ws4_c00230{word-spacing:0.304976pt;}
.ws12_c00230{word-spacing:0.342320pt;}
.wse_c00230{word-spacing:0.354768pt;}
.ws14_c00230{word-spacing:0.616176pt;}
.ws18_c00230{word-spacing:0.647296pt;}
.ws1a_c00230{word-spacing:1.923216pt;}
.ws21_c00230{word-spacing:2.576736pt;}
.ws9_c00230{word-spacing:3.504112pt;}
.wsa_c00230{word-spacing:3.572576pt;}
.ws1d_c00230{word-spacing:4.145184pt;}
.ws1e_c00230{word-spacing:4.493728pt;}
.ws20_c00230{word-spacing:5.427328pt;}
.ws1f_c00230{word-spacing:5.439776pt;}
.ws15_c00230{word-spacing:5.788320pt;}
.ws16_c00230{word-spacing:6.093296pt;}
.ws10_c00230{word-spacing:6.703248pt;}
.ws11_c00230{word-spacing:6.721920pt;}
.ws1b_c00230{word-spacing:8.321488pt;}
.ws1c_c00230{word-spacing:8.327712pt;}
.wsc_c00230{word-spacing:8.918992pt;}
.wsb_c00230{word-spacing:9.242640pt;}
.wsd_c00230{word-spacing:9.279984pt;}
.wsf_c00230{word-spacing:12.167920pt;}
.ws17_c00230{word-spacing:15.043408pt;}
.ws6_c00230{word-spacing:56.022224pt;}
._4_c00230{margin-left:-56.314752pt;}
._3_c00230{margin-left:-55.350032pt;}
._b_c00230{margin-left:-2.411264pt;}
._9_c00230{margin-left:-1.219904pt;}
._8_c00230{width:1.176336pt;}
._a_c00230{width:5.271728pt;}
._6_c00230{width:39.043152pt;}
._0_c00230{width:55.679904pt;}
._7_c00230{width:538.239072pt;}
._1_c00230{width:554.465040pt;}
._5_c00230{width:627.802432pt;}
._2_c00230{width:756.097744pt;}
.fs2_c00230{font-size:33.608533pt;}
.fs1_c00230{font-size:41.388800pt;}
.fs3_c00230{font-size:51.970133pt;}
.fs0_c00230{font-size:62.240000pt;}
.y0_c00230{bottom:0.000000pt;}
.y2_c00230{bottom:97.547527pt;}
.y1_c00230{bottom:115.387067pt;}
.y21_c00230{bottom:151.787067pt;}
.y20_c00230{bottom:164.906955pt;}
.y1f_c00230{bottom:196.506203pt;}
.y1e_c00230{bottom:223.306747pt;}
.y1d_c00230{bottom:257.946419pt;}
.y1c_c00230{bottom:292.586091pt;}
.y1b_c00230{bottom:319.386635pt;}
.y1a_c00230{bottom:346.266535pt;}
.y19_c00230{bottom:373.067079pt;}
.y18_c00230{bottom:407.627395pt;}
.y17_c00230{bottom:442.266375pt;}
.y16_c00230{bottom:469.066919pt;}
.y15_c00230{bottom:495.946819pt;}
.y14_c00230{bottom:522.747363pt;}
.y13_c00230{bottom:549.627263pt;}
.y12_c00230{bottom:576.427807pt;}
.y11_c00230{bottom:611.067479pt;}
.y10_c00230{bottom:645.707151pt;}
.yf_c00230{bottom:672.507695pt;}
.ye_c00230{bottom:699.387595pt;}
.yd_c00230{bottom:734.027267pt;}
.yc_c00230{bottom:768.587583pt;}
.yb_c00230{bottom:795.867375pt;}
.ya_c00230{bottom:824.107219pt;}
.y9_c00230{bottom:859.706943pt;}
.y8_c00230{bottom:877.627395pt;}
.y7_c00230{bottom:912.267067pt;}
.y6_c00230{bottom:930.827067pt;}
.y5_c00230{bottom:949.307067pt;}
.y4_c00230{bottom:967.947067pt;}
.y3_c00230{bottom:986.428087pt;}
.h6_c00230{height:34.967599pt;}
.h3_c00230{height:55.645234pt;}
.h1_c00230{height:55.797187pt;}
.h5_c00230{height:55.797636pt;}
.h2_c00230{height:56.192266pt;}
.h4_c00230{height:65.587180pt;}
.h0_c00230{height:1122.666667pt;}
.w0_c00230{width:793.333333pt;}
.x0_c00230{left:0.000000pt;}
.x2_c00230{left:73.520052pt;}
.x4_c00230{left:154.640000pt;}
.x3_c00230{left:159.039368pt;}
.x5_c00230{left:301.600000pt;}
.x1_c00230{left:383.760000pt;}
.x6_c00230{left:396.800748pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8f044e1c8f1cf85444aa8544.woff2')format("woff");}.ff1_c00231{font-family:ff1_c00231;line-height:1.106934;font-style:normal;font-weight:normal;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_f2d8163ec0ec3d3471450dfe.woff2')format("woff");}.ff2_c00231{font-family:ff2_c00231;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00231;src:url('chunks/assets/font_f2a3829034a214c661fdcee7.woff2')format("woff");}.ff3_c00231{font-family:ff3_c00231;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00231;src:url('chunks/assets/font_587da32f32e091c8eebe00b9.woff2')format("woff");}.ff4_c00231{font-family:ff4_c00231;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00231;src:url('chunks/assets/font_51f77a5b3c01cc42f665b426.woff2')format("woff");}.ff5_c00231{font-family:ff5_c00231;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00231;src:url('chunks/assets/font_b13cc3de9089be860330d683.woff2')format("woff");}.ff6_c00231{font-family:ff6_c00231;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00231{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00231{vertical-align:-14.760600px;}
.v0_c00231{vertical-align:0.000000px;}
.v1_c00231{vertical-align:17.641026px;}
.lsc_c00231{letter-spacing:-0.246781px;}
.ls10_c00231{letter-spacing:-0.077022px;}
.ls12_c00231{letter-spacing:-0.075619px;}
.ls7_c00231{letter-spacing:-0.063018px;}
.ls14_c00231{letter-spacing:-0.052620px;}
.lsa_c00231{letter-spacing:-0.042012px;}
.ls13_c00231{letter-spacing:-0.035080px;}
.lsf_c00231{letter-spacing:-0.035010px;}
.ls9_c00231{letter-spacing:-0.028008px;}
.ls15_c00231{letter-spacing:-0.023387px;}
.lsb_c00231{letter-spacing:-0.021006px;}
.ls11_c00231{letter-spacing:-0.014004px;}
.lse_c00231{letter-spacing:-0.007002px;}
.ls8_c00231{letter-spacing:0.000000px;}
.ls1_c00231{letter-spacing:0.007002px;}
.ls5_c00231{letter-spacing:0.014004px;}
.ls6_c00231{letter-spacing:0.023387px;}
.ls2_c00231{letter-spacing:0.028008px;}
.ls0_c00231{letter-spacing:0.042012px;}
.ls4_c00231{letter-spacing:0.273078px;}
.lsd_c00231{letter-spacing:0.343098px;}
.ls3_c00231{letter-spacing:0.693198px;}
.ls16_c00231{letter-spacing:0.719137px;}
.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;}
}
.ws3_c00231{word-spacing:-58.466400px;}
.ws1_c00231{word-spacing:-19.444554px;}
.ws0_c00231{word-spacing:-12.651004px;}
.ws2_c00231{word-spacing:-10.397640px;}
.ws22_c00231{word-spacing:-0.707443px;}
.ws20_c00231{word-spacing:-0.292332px;}
.ws1e_c00231{word-spacing:-0.011693px;}
.ws14_c00231{word-spacing:-0.007002px;}
.ws4_c00231{word-spacing:0.000000px;}
.ws1a_c00231{word-spacing:0.007002px;}
.ws12_c00231{word-spacing:0.014004px;}
.ws15_c00231{word-spacing:0.028008px;}
.ws21_c00231{word-spacing:0.035080px;}
.ws1f_c00231{word-spacing:0.046773px;}
.ws17_c00231{word-spacing:0.063018px;}
.ws16_c00231{word-spacing:0.343098px;}
.ws8_c00231{word-spacing:0.364104px;}
.ws7_c00231{word-spacing:0.385110px;}
.ws10_c00231{word-spacing:0.728208px;}
.ws1c_c00231{word-spacing:0.742212px;}
.ws1b_c00231{word-spacing:1.057302px;}
.ws11_c00231{word-spacing:1.071306px;}
.wsf_c00231{word-spacing:1.092312px;}
.ws1d_c00231{word-spacing:3.213918px;}
.ws5_c00231{word-spacing:4.264218px;}
.ws13_c00231{word-spacing:7.940268px;}
.wse_c00231{word-spacing:8.241354px;}
.ws9_c00231{word-spacing:11.525292px;}
.wsa_c00231{word-spacing:11.868390px;}
.ws18_c00231{word-spacing:12.946698px;}
.wsc_c00231{word-spacing:15.131322px;}
.wsb_c00231{word-spacing:15.488424px;}
.ws19_c00231{word-spacing:16.202628px;}
.ws6_c00231{word-spacing:19.094454px;}
.wsd_c00231{word-spacing:22.301370px;}
._3_c00231{margin-left:-2.719980px;}
._1_c00231{margin-left:-1.225350px;}
._0_c00231{width:1.246356px;}
._2_c00231{width:5.930694px;}
.fc1_c00231{color:rgb(0,112,192);}
.fc0_c00231{color:rgb(0,0,0);}
.fs2_c00231{font-size:37.809600px;}
.fs1_c00231{font-size:46.562400px;}
.fs3_c00231{font-size:58.466400px;}
.fs0_c00231{font-size:70.020000px;}
.y0_c00231{bottom:0.000000px;}
.y2_c00231{bottom:109.740968px;}
.y1_c00231{bottom:129.810450px;}
.y1e_c00231{bottom:153.120600px;}
.y1d_c00231{bottom:191.370600px;}
.y1c_c00231{bottom:229.710600px;}
.y1b_c00231{bottom:244.380036px;}
.y1a_c00231{bottom:322.949478px;}
.y19_c00231{bottom:353.100090px;}
.y18_c00231{bottom:392.069721px;}
.y17_c00231{bottom:431.039352px;}
.y16_c00231{bottom:461.189964px;}
.y15_c00231{bottom:491.429851px;}
.y14_c00231{bottom:522.030342px;}
.y13_c00231{bottom:553.350288px;}
.y12_c00231{bottom:592.319919px;}
.y11_c00231{bottom:631.289550px;}
.y10_c00231{bottom:661.440162px;}
.yf_c00231{bottom:700.409793px;}
.ye_c00231{bottom:739.471467px;}
.yd_c00231{bottom:770.880689px;}
.yc_c00231{bottom:801.031301px;}
.yb_c00231{bottom:831.271188px;}
.ya_c00231{bottom:870.240819px;}
.y9_c00231{bottom:909.212079px;}
.y8_c00231{bottom:940.621301px;}
.y7_c00231{bottom:970.861188px;}
.y6_c00231{bottom:1009.830819px;}
.y5_c00231{bottom:1048.800193px;}
.y4_c00231{bottom:1080.300441px;}
.y3_c00231{bottom:1110.451053px;}
.h4_c00231{height:39.337949px;}
.h2_c00231{height:62.600889px;}
.h1_c00231{height:62.771836px;}
.h3_c00231{height:62.773492px;}
.h0_c00231{height:1263.000000px;}
.w0_c00231{width:892.500000px;}
.x0_c00231{left:0.000000px;}
.x2_c00231{left:82.710059px;}
.x1_c00231{left:431.730000px;}
@media print{
.v2_c00231{vertical-align:-13.120533pt;}
.v0_c00231{vertical-align:0.000000pt;}
.v1_c00231{vertical-align:15.680912pt;}
.lsc_c00231{letter-spacing:-0.219361pt;}
.ls10_c00231{letter-spacing:-0.068464pt;}
.ls12_c00231{letter-spacing:-0.067217pt;}
.ls7_c00231{letter-spacing:-0.056016pt;}
.ls14_c00231{letter-spacing:-0.046773pt;}
.lsa_c00231{letter-spacing:-0.037344pt;}
.ls13_c00231{letter-spacing:-0.031182pt;}
.lsf_c00231{letter-spacing:-0.031120pt;}
.ls9_c00231{letter-spacing:-0.024896pt;}
.ls15_c00231{letter-spacing:-0.020788pt;}
.lsb_c00231{letter-spacing:-0.018672pt;}
.ls11_c00231{letter-spacing:-0.012448pt;}
.lse_c00231{letter-spacing:-0.006224pt;}
.ls8_c00231{letter-spacing:0.000000pt;}
.ls1_c00231{letter-spacing:0.006224pt;}
.ls5_c00231{letter-spacing:0.012448pt;}
.ls6_c00231{letter-spacing:0.020788pt;}
.ls2_c00231{letter-spacing:0.024896pt;}
.ls0_c00231{letter-spacing:0.037344pt;}
.ls4_c00231{letter-spacing:0.242736pt;}
.lsd_c00231{letter-spacing:0.304976pt;}
.ls3_c00231{letter-spacing:0.616176pt;}
.ls16_c00231{letter-spacing:0.639233pt;}
.ws3_c00231{word-spacing:-51.970133pt;}
.ws1_c00231{word-spacing:-17.284048pt;}
.ws0_c00231{word-spacing:-11.245337pt;}
.ws2_c00231{word-spacing:-9.242347pt;}
.ws22_c00231{word-spacing:-0.628839pt;}
.ws20_c00231{word-spacing:-0.259851pt;}
.ws1e_c00231{word-spacing:-0.010394pt;}
.ws14_c00231{word-spacing:-0.006224pt;}
.ws4_c00231{word-spacing:0.000000pt;}
.ws1a_c00231{word-spacing:0.006224pt;}
.ws12_c00231{word-spacing:0.012448pt;}
.ws15_c00231{word-spacing:0.024896pt;}
.ws21_c00231{word-spacing:0.031182pt;}
.ws1f_c00231{word-spacing:0.041576pt;}
.ws17_c00231{word-spacing:0.056016pt;}
.ws16_c00231{word-spacing:0.304976pt;}
.ws8_c00231{word-spacing:0.323648pt;}
.ws7_c00231{word-spacing:0.342320pt;}
.ws10_c00231{word-spacing:0.647296pt;}
.ws1c_c00231{word-spacing:0.659744pt;}
.ws1b_c00231{word-spacing:0.939824pt;}
.ws11_c00231{word-spacing:0.952272pt;}
.wsf_c00231{word-spacing:0.970944pt;}
.ws1d_c00231{word-spacing:2.856816pt;}
.ws5_c00231{word-spacing:3.790416pt;}
.ws13_c00231{word-spacing:7.058016pt;}
.wse_c00231{word-spacing:7.325648pt;}
.ws9_c00231{word-spacing:10.244704pt;}
.wsa_c00231{word-spacing:10.549680pt;}
.ws18_c00231{word-spacing:11.508176pt;}
.wsc_c00231{word-spacing:13.450064pt;}
.wsb_c00231{word-spacing:13.767488pt;}
.ws19_c00231{word-spacing:14.402336pt;}
.ws6_c00231{word-spacing:16.972848pt;}
.wsd_c00231{word-spacing:19.823440pt;}
._3_c00231{margin-left:-2.417760pt;}
._1_c00231{margin-left:-1.089200pt;}
._0_c00231{width:1.107872pt;}
._2_c00231{width:5.271728pt;}
.fs2_c00231{font-size:33.608533pt;}
.fs1_c00231{font-size:41.388800pt;}
.fs3_c00231{font-size:51.970133pt;}
.fs0_c00231{font-size:62.240000pt;}
.y0_c00231{bottom:0.000000pt;}
.y2_c00231{bottom:97.547527pt;}
.y1_c00231{bottom:115.387067pt;}
.y1e_c00231{bottom:136.107200pt;}
.y1d_c00231{bottom:170.107200pt;}
.y1c_c00231{bottom:204.187200pt;}
.y1b_c00231{bottom:217.226699pt;}
.y1a_c00231{bottom:287.066203pt;}
.y19_c00231{bottom:313.866747pt;}
.y18_c00231{bottom:348.506419pt;}
.y17_c00231{bottom:383.146091pt;}
.y16_c00231{bottom:409.946635pt;}
.y15_c00231{bottom:436.826535pt;}
.y14_c00231{bottom:464.026971pt;}
.y13_c00231{bottom:491.866923pt;}
.y12_c00231{bottom:526.506595pt;}
.y11_c00231{bottom:561.146267pt;}
.y10_c00231{bottom:587.946811pt;}
.yf_c00231{bottom:622.586483pt;}
.ye_c00231{bottom:657.307971pt;}
.yd_c00231{bottom:685.227279pt;}
.yc_c00231{bottom:712.027823pt;}
.yb_c00231{bottom:738.907723pt;}
.ya_c00231{bottom:773.547395pt;}
.y9_c00231{bottom:808.188515pt;}
.y8_c00231{bottom:836.107823pt;}
.y7_c00231{bottom:862.987723pt;}
.y6_c00231{bottom:897.627395pt;}
.y5_c00231{bottom:932.266839pt;}
.y4_c00231{bottom:960.267059pt;}
.y3_c00231{bottom:987.067603pt;}
.h4_c00231{height:34.967066pt;}
.h2_c00231{height:55.645234pt;}
.h1_c00231{height:55.797187pt;}
.h3_c00231{height:55.798660pt;}
.h0_c00231{height:1122.666667pt;}
.w0_c00231{width:793.333333pt;}
.x0_c00231{left:0.000000pt;}
.x2_c00231{left:73.520052pt;}
.x1_c00231{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_be8d7cabd1bf611fc334094f.woff2')format("woff");}.ff1_c00232{font-family:ff1_c00232;line-height:1.106934;font-style:normal;font-weight:normal;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_76bfc75dc434784d8923f38e.woff2')format("woff");}.ff2_c00232{font-family:ff2_c00232;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00232;src:url('chunks/assets/font_43e6c4b0b541fb86b484504e.woff2')format("woff");}.ff3_c00232{font-family:ff3_c00232;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00232;src:url('chunks/assets/font_587da32f32e091c8eebe00b9.woff2')format("woff");}.ff4_c00232{font-family:ff4_c00232;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00232;src:url('chunks/assets/font_ab6d761312b4cecb74d7808b.woff2')format("woff");}.ff5_c00232{font-family:ff5_c00232;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00232;src:url('chunks/assets/font_313e8de8fa1a875969d1bb93.woff2')format("woff");}.ff6_c00232{font-family:ff6_c00232;line-height:1.133301;font-style:normal;font-weight: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_c00232;src:url('chunks/assets/font_72970e7a89379579a00bcea9.woff2')format("woff");}.ff7_c00232{font-family:ff7_c00232;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00232{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00232{vertical-align:-14.760600px;}
.v0_c00232{vertical-align:0.000000px;}
.v1_c00232{vertical-align:17.634474px;}
.ls7_c00232{letter-spacing:-0.246781px;}
.ls9_c00232{letter-spacing:-0.116933px;}
.lsf_c00232{letter-spacing:-0.111086px;}
.lse_c00232{letter-spacing:-0.105240px;}
.lsa_c00232{letter-spacing:-0.099393px;}
.ls10_c00232{letter-spacing:-0.093546px;}
.lsb_c00232{letter-spacing:-0.076006px;}
.ls13_c00232{letter-spacing:-0.075619px;}
.ls4_c00232{letter-spacing:-0.063018px;}
.ls11_c00232{letter-spacing:-0.046773px;}
.ls6_c00232{letter-spacing:-0.035010px;}
.ls8_c00232{letter-spacing:-0.028008px;}
.lsd_c00232{letter-spacing:-0.011693px;}
.ls12_c00232{letter-spacing:-0.007002px;}
.ls5_c00232{letter-spacing:0.000000px;}
.ls3_c00232{letter-spacing:0.014004px;}
.ls2_c00232{letter-spacing:0.023387px;}
.lsc_c00232{letter-spacing:0.128626px;}
.ls0_c00232{letter-spacing:0.336096px;}
.ls1_c00232{letter-spacing:3.214440px;}
.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:-58.466400px;}
.ws3_c00232{word-spacing:-19.458558px;}
.ws2_c00232{word-spacing:-16.253659px;}
.ws0_c00232{word-spacing:-12.651004px;}
.ws4_c00232{word-spacing:-10.397640px;}
.ws13_c00232{word-spacing:-0.292332px;}
.ws18_c00232{word-spacing:-0.014004px;}
.ws5_c00232{word-spacing:0.000000px;}
.ws14_c00232{word-spacing:0.014004px;}
.ws7_c00232{word-spacing:0.021006px;}
.ws12_c00232{word-spacing:0.064313px;}
.ws1b_c00232{word-spacing:0.087700px;}
.ws1a_c00232{word-spacing:0.105240px;}
.ws19_c00232{word-spacing:0.329094px;}
.wsa_c00232{word-spacing:1.853385px;}
.wsf_c00232{word-spacing:2.590062px;}
.wsd_c00232{word-spacing:3.069486px;}
.wsc_c00232{word-spacing:3.198112px;}
.wsb_c00232{word-spacing:3.274118px;}
.ws11_c00232{word-spacing:4.612999px;}
.ws10_c00232{word-spacing:4.729932px;}
.wse_c00232{word-spacing:9.062292px;}
.ws6_c00232{word-spacing:11.903400px;}
.ws15_c00232{word-spacing:14.753214px;}
.ws8_c00232{word-spacing:18.016146px;}
.ws9_c00232{word-spacing:18.071964px;}
.ws16_c00232{word-spacing:21.251070px;}
.ws17_c00232{word-spacing:21.587166px;}
._5_c00232{margin-left:-2.709774px;}
._1_c00232{margin-left:-1.286546px;}
._0_c00232{width:1.029294px;}
._4_c00232{width:5.930694px;}
._2_c00232{width:63.003996px;}
._3_c00232{width:226.358834px;}
.fc0_c00232{color:rgb(0,0,0);}
.fs3_c00232{font-size:37.809600px;}
.fs1_c00232{font-size:46.562400px;}
.fs2_c00232{font-size:58.466400px;}
.fs0_c00232{font-size:70.020000px;}
.y0_c00232{bottom:0.000000px;}
.y2_c00232{bottom:109.740968px;}
.y1_c00232{bottom:129.810450px;}
.y19_c00232{bottom:153.120600px;}
.y18_c00232{bottom:167.790600px;}
.y17_c00232{bottom:208.740220px;}
.y16_c00232{bottom:248.431057px;}
.y15_c00232{bottom:287.400689px;}
.y14_c00232{bottom:317.551301px;}
.y13_c00232{bottom:347.791188px;}
.y12_c00232{bottom:386.671543px;}
.y11_c00232{bottom:425.641175px;}
.y10_c00232{bottom:460.740450px;}
.yf_c00232{bottom:743.339631px;}
.ye_c00232{bottom:777.269145px;}
.yd_c00232{bottom:811.198658px;}
.yc_c00232{bottom:845.039010px;}
.yb_c00232{bottom:870.689682px;}
.ya_c00232{bottom:896.699922px;}
.y9_c00232{bottom:921.900402px;}
.y8_c00232{bottom:947.461074px;}
.y7_c00232{bottom:973.560475px;}
.y6_c00232{bottom:1001.010162px;}
.y5_c00232{bottom:1039.979793px;}
.y4_c00232{bottom:1079.041831px;}
.y3_c00232{bottom:1110.451053px;}
.h7_c00232{height:39.337949px;}
.h4_c00232{height:52.414214px;}
.h2_c00232{height:62.600889px;}
.h3_c00232{height:62.766310px;}
.h5_c00232{height:62.769339px;}
.h1_c00232{height:62.771836px;}
.h6_c00232{height:63.216299px;}
.h0_c00232{height:1263.000000px;}
.w0_c00232{width:892.500000px;}
.x0_c00232{left:0.000000px;}
.x2_c00232{left:82.710059px;}
.x6_c00232{left:231.479276px;}
.x4_c00232{left:339.299573px;}
.x1_c00232{left:431.730000px;}
.x5_c00232{left:446.400414px;}
.x3_c00232{left:756.540000px;}
@media print{
.v2_c00232{vertical-align:-13.120533pt;}
.v0_c00232{vertical-align:0.000000pt;}
.v1_c00232{vertical-align:15.675088pt;}
.ls7_c00232{letter-spacing:-0.219361pt;}
.ls9_c00232{letter-spacing:-0.103940pt;}
.lsf_c00232{letter-spacing:-0.098743pt;}
.lse_c00232{letter-spacing:-0.093546pt;}
.lsa_c00232{letter-spacing:-0.088349pt;}
.ls10_c00232{letter-spacing:-0.083152pt;}
.lsb_c00232{letter-spacing:-0.067561pt;}
.ls13_c00232{letter-spacing:-0.067217pt;}
.ls4_c00232{letter-spacing:-0.056016pt;}
.ls11_c00232{letter-spacing:-0.041576pt;}
.ls6_c00232{letter-spacing:-0.031120pt;}
.ls8_c00232{letter-spacing:-0.024896pt;}
.lsd_c00232{letter-spacing:-0.010394pt;}
.ls12_c00232{letter-spacing:-0.006224pt;}
.ls5_c00232{letter-spacing:0.000000pt;}
.ls3_c00232{letter-spacing:0.012448pt;}
.ls2_c00232{letter-spacing:0.020788pt;}
.lsc_c00232{letter-spacing:0.114334pt;}
.ls0_c00232{letter-spacing:0.298752pt;}
.ls1_c00232{letter-spacing:2.857280pt;}
.ws1_c00232{word-spacing:-51.970133pt;}
.ws3_c00232{word-spacing:-17.296496pt;}
.ws2_c00232{word-spacing:-14.447697pt;}
.ws0_c00232{word-spacing:-11.245337pt;}
.ws4_c00232{word-spacing:-9.242347pt;}
.ws13_c00232{word-spacing:-0.259851pt;}
.ws18_c00232{word-spacing:-0.012448pt;}
.ws5_c00232{word-spacing:0.000000pt;}
.ws14_c00232{word-spacing:0.012448pt;}
.ws7_c00232{word-spacing:0.018672pt;}
.ws12_c00232{word-spacing:0.057167pt;}
.ws1b_c00232{word-spacing:0.077955pt;}
.ws1a_c00232{word-spacing:0.093546pt;}
.ws19_c00232{word-spacing:0.292528pt;}
.wsa_c00232{word-spacing:1.647453pt;}
.wsf_c00232{word-spacing:2.302277pt;}
.wsd_c00232{word-spacing:2.728432pt;}
.wsc_c00232{word-spacing:2.842766pt;}
.wsb_c00232{word-spacing:2.910327pt;}
.ws11_c00232{word-spacing:4.100444pt;}
.ws10_c00232{word-spacing:4.204384pt;}
.wse_c00232{word-spacing:8.055371pt;}
.ws6_c00232{word-spacing:10.580800pt;}
.ws15_c00232{word-spacing:13.113968pt;}
.ws8_c00232{word-spacing:16.014352pt;}
.ws9_c00232{word-spacing:16.063968pt;}
.ws16_c00232{word-spacing:18.889840pt;}
.ws17_c00232{word-spacing:19.188592pt;}
._5_c00232{margin-left:-2.408688pt;}
._1_c00232{margin-left:-1.143597pt;}
._0_c00232{width:0.914928pt;}
._4_c00232{width:5.271728pt;}
._2_c00232{width:56.003552pt;}
._3_c00232{width:201.207853pt;}
.fs3_c00232{font-size:33.608533pt;}
.fs1_c00232{font-size:41.388800pt;}
.fs2_c00232{font-size:51.970133pt;}
.fs0_c00232{font-size:62.240000pt;}
.y0_c00232{bottom:0.000000pt;}
.y2_c00232{bottom:97.547527pt;}
.y1_c00232{bottom:115.387067pt;}
.y19_c00232{bottom:136.107200pt;}
.y18_c00232{bottom:149.147200pt;}
.y17_c00232{bottom:185.546863pt;}
.y16_c00232{bottom:220.827607pt;}
.y15_c00232{bottom:255.467279pt;}
.y14_c00232{bottom:282.267823pt;}
.y13_c00232{bottom:309.147723pt;}
.y12_c00232{bottom:343.708039pt;}
.y11_c00232{bottom:378.347711pt;}
.y10_c00232{bottom:409.547067pt;}
.yf_c00232{bottom:660.746339pt;}
.ye_c00232{bottom:690.905906pt;}
.yd_c00232{bottom:721.065474pt;}
.yc_c00232{bottom:751.145787pt;}
.yb_c00232{bottom:773.946384pt;}
.ya_c00232{bottom:797.066597pt;}
.y9_c00232{bottom:819.467024pt;}
.y8_c00232{bottom:842.187622pt;}
.y7_c00232{bottom:865.387089pt;}
.y6_c00232{bottom:889.786811pt;}
.y5_c00232{bottom:924.426483pt;}
.y4_c00232{bottom:959.148295pt;}
.y3_c00232{bottom:987.067603pt;}
.h7_c00232{height:34.967066pt;}
.h4_c00232{height:46.590412pt;}
.h2_c00232{height:55.645234pt;}
.h3_c00232{height:55.792275pt;}
.h5_c00232{height:55.794968pt;}
.h1_c00232{height:55.797187pt;}
.h6_c00232{height:56.192266pt;}
.h0_c00232{height:1122.666667pt;}
.w0_c00232{width:793.333333pt;}
.x0_c00232{left:0.000000pt;}
.x2_c00232{left:73.520052pt;}
.x6_c00232{left:205.759356pt;}
.x4_c00232{left:301.599620pt;}
.x1_c00232{left:383.760000pt;}
.x5_c00232{left:396.800368pt;}
.x3_c00232{left:672.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_25be0423136f09438efae153.woff2')format("woff");}.ff1_c00233{font-family:ff1_c00233;line-height:1.106934;font-style:normal;font-weight:normal;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_ab6d761312b4cecb74d7808b.woff2')format("woff");}.ff2_c00233{font-family:ff2_c00233;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00233;src:url('chunks/assets/font_8425d71651d22bebba8c13cf.woff2')format("woff");}.ff3_c00233{font-family:ff3_c00233;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00233;src:url('chunks/assets/font_d2803515befb398689904a1c.woff2')format("woff");}.ff4_c00233{font-family:ff4_c00233;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00233;src:url('chunks/assets/font_2f4540cca7c6cea1a937c216.woff2')format("woff");}.ff5_c00233{font-family:ff5_c00233;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00233;src:url('chunks/assets/font_587da32f32e091c8eebe00b9.woff2')format("woff");}.ff6_c00233{font-family:ff6_c00233;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00233{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00233{vertical-align:-14.760000px;}
.v0_c00233{vertical-align:0.000000px;}
.v1_c00233{vertical-align:17.634438px;}
.lsf_c00233{letter-spacing:-0.246781px;}
.ls18_c00233{letter-spacing:-0.210479px;}
.ls14_c00233{letter-spacing:-0.134473px;}
.ls15_c00233{letter-spacing:-0.093546px;}
.ls11_c00233{letter-spacing:-0.075619px;}
.ls8_c00233{letter-spacing:-0.063018px;}
.ls17_c00233{letter-spacing:-0.046773px;}
.lsa_c00233{letter-spacing:-0.042012px;}
.ls13_c00233{letter-spacing:-0.035080px;}
.lsd_c00233{letter-spacing:-0.035010px;}
.lsc_c00233{letter-spacing:-0.028008px;}
.ls16_c00233{letter-spacing:-0.023387px;}
.lse_c00233{letter-spacing:-0.021006px;}
.ls10_c00233{letter-spacing:-0.014004px;}
.lsb_c00233{letter-spacing:-0.007002px;}
.ls9_c00233{letter-spacing:0.000000px;}
.ls2_c00233{letter-spacing:0.007002px;}
.ls5_c00233{letter-spacing:0.014004px;}
.ls0_c00233{letter-spacing:0.035010px;}
.ls1_c00233{letter-spacing:0.042012px;}
.ls3_c00233{letter-spacing:0.049014px;}
.ls4_c00233{letter-spacing:0.056016px;}
.ls7_c00233{letter-spacing:0.273078px;}
.ls12_c00233{letter-spacing:0.309872px;}
.ls6_c00233{letter-spacing:2.135610px;}
.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;}
}
.ws3_c00233{word-spacing:-70.020000px;}
.ws0_c00233{word-spacing:-19.458558px;}
.ws2_c00233{word-spacing:-19.444554px;}
.ws4_c00233{word-spacing:-19.395540px;}
.ws6_c00233{word-spacing:-16.101647px;}
.ws1_c00233{word-spacing:-12.651004px;}
.ws5_c00233{word-spacing:-10.397640px;}
.wsc_c00233{word-spacing:-0.070020px;}
.ws9_c00233{word-spacing:-0.056016px;}
.ws8_c00233{word-spacing:-0.049014px;}
.wse_c00233{word-spacing:-0.021006px;}
.ws7_c00233{word-spacing:0.000000px;}
.ws10_c00233{word-spacing:0.014004px;}
.ws1a_c00233{word-spacing:0.021006px;}
.wsf_c00233{word-spacing:0.028008px;}
.ws24_c00233{word-spacing:0.046773px;}
.wsb_c00233{word-spacing:0.294084px;}
.wsa_c00233{word-spacing:0.336096px;}
.ws22_c00233{word-spacing:0.343098px;}
.ws18_c00233{word-spacing:0.378108px;}
.wsd_c00233{word-spacing:0.385110px;}
.ws12_c00233{word-spacing:1.421406px;}
.ws11_c00233{word-spacing:1.771506px;}
.ws1b_c00233{word-spacing:1.792512px;}
.ws16_c00233{word-spacing:2.163618px;}
.ws15_c00233{word-spacing:2.184624px;}
.ws20_c00233{word-spacing:2.548728px;}
.ws21_c00233{word-spacing:2.884824px;}
.ws23_c00233{word-spacing:5.460762px;}
.ws13_c00233{word-spacing:10.432980px;}
.ws14_c00233{word-spacing:10.776078px;}
.ws27_c00233{word-spacing:10.857210px;}
.ws17_c00233{word-spacing:13.324806px;}
.ws1c_c00233{word-spacing:14.690196px;}
.ws1e_c00233{word-spacing:14.760216px;}
.ws1d_c00233{word-spacing:14.774220px;}
.ws19_c00233{word-spacing:16.902828px;}
.ws1f_c00233{word-spacing:21.937266px;}
.ws26_c00233{word-spacing:151.264270px;}
.ws25_c00233{word-spacing:151.708615px;}
._e_c00233{margin-left:-2.709504px;}
._3_c00233{margin-left:-1.260360px;}
._c_c00233{width:1.043298px;}
._d_c00233{width:5.930694px;}
._a_c00233{width:43.923546px;}
._0_c00233{width:63.361098px;}
._2_c00233{width:265.627872px;}
._4_c00233{width:324.360648px;}
._1_c00233{width:347.194170px;}
._6_c00233{width:362.864646px;}
._5_c00233{width:367.128864px;}
._b_c00233{width:406.753182px;}
._7_c00233{width:417.186162px;}
._9_c00233{width:449.283330px;}
._8_c00233{width:496.154718px;}
.fc0_c00233{color:rgb(0,0,0);}
.fs2_c00233{font-size:37.809600px;}
.fs1_c00233{font-size:46.562400px;}
.fs3_c00233{font-size:58.466400px;}
.fs0_c00233{font-size:70.020000px;}
.y0_c00233{bottom:0.000000px;}
.y2_c00233{bottom:109.740968px;}
.y1_c00233{bottom:129.810450px;}
.y26_c00233{bottom:149.429891px;}
.y25_c00233{bottom:170.940450px;}
.y24_c00233{bottom:185.248990px;}
.y23_c00233{bottom:203.069548px;}
.y22_c00233{bottom:221.069891px;}
.y21_c00233{bottom:242.580450px;}
.y20_c00233{bottom:257.249834px;}
.y1f_c00233{bottom:278.759977px;}
.y1e_c00233{bottom:319.801845px;}
.y1d_c00233{bottom:351.571669px;}
.y1c_c00233{bottom:383.341494px;}
.y1b_c00233{bottom:423.391183px;}
.y1a_c00233{bottom:462.360814px;}
.y19_c00233{bottom:492.511426px;}
.y18_c00233{bottom:522.751314px;}
.y17_c00233{bottom:561.631670px;}
.y16_c00233{bottom:600.601300px;}
.y15_c00233{bottom:630.841188px;}
.y14_c00233{bottom:669.810819px;}
.y13_c00233{bottom:708.781841px;}
.y12_c00233{bottom:740.191062px;}
.y11_c00233{bottom:770.430949px;}
.y10_c00233{bottom:800.581562px;}
.yf_c00233{bottom:830.821449px;}
.ye_c00233{bottom:859.800976px;}
.yd_c00233{bottom:881.130819px;}
.yc_c00233{bottom:920.100450px;}
.yb_c00233{bottom:940.980450px;}
.ya_c00233{bottom:961.860450px;}
.y9_c00233{bottom:982.650450px;}
.y8_c00233{bottom:1003.620450px;}
.y7_c00233{bottom:1026.300450px;}
.y6_c00233{bottom:1047.180450px;}
.y5_c00233{bottom:1067.970450px;}
.y4_c00233{bottom:1088.940450px;}
.y3_c00233{bottom:1109.731597px;}
.h6_c00233{height:39.338549px;}
.h7_c00233{height:54.098549px;}
.h4_c00233{height:62.600889px;}
.h1_c00233{height:62.771836px;}
.h5_c00233{height:62.774302px;}
.h2_c00233{height:63.216299px;}
.h3_c00233{height:64.789014px;}
.h0_c00233{height:1263.000000px;}
.w0_c00233{width:892.500000px;}
.x0_c00233{left:0.000000px;}
.x2_c00233{left:82.710059px;}
.x4_c00233{left:226.620000px;}
.x3_c00233{left:231.479802px;}
.x5_c00233{left:339.300000px;}
.x1_c00233{left:431.730000px;}
.x6_c00233{left:446.400841px;}
@media print{
.v2_c00233{vertical-align:-13.120000pt;}
.v0_c00233{vertical-align:0.000000pt;}
.v1_c00233{vertical-align:15.675056pt;}
.lsf_c00233{letter-spacing:-0.219361pt;}
.ls18_c00233{letter-spacing:-0.187092pt;}
.ls14_c00233{letter-spacing:-0.119531pt;}
.ls15_c00233{letter-spacing:-0.083152pt;}
.ls11_c00233{letter-spacing:-0.067217pt;}
.ls8_c00233{letter-spacing:-0.056016pt;}
.ls17_c00233{letter-spacing:-0.041576pt;}
.lsa_c00233{letter-spacing:-0.037344pt;}
.ls13_c00233{letter-spacing:-0.031182pt;}
.lsd_c00233{letter-spacing:-0.031120pt;}
.lsc_c00233{letter-spacing:-0.024896pt;}
.ls16_c00233{letter-spacing:-0.020788pt;}
.lse_c00233{letter-spacing:-0.018672pt;}
.ls10_c00233{letter-spacing:-0.012448pt;}
.lsb_c00233{letter-spacing:-0.006224pt;}
.ls9_c00233{letter-spacing:0.000000pt;}
.ls2_c00233{letter-spacing:0.006224pt;}
.ls5_c00233{letter-spacing:0.012448pt;}
.ls0_c00233{letter-spacing:0.031120pt;}
.ls1_c00233{letter-spacing:0.037344pt;}
.ls3_c00233{letter-spacing:0.043568pt;}
.ls4_c00233{letter-spacing:0.049792pt;}
.ls7_c00233{letter-spacing:0.242736pt;}
.ls12_c00233{letter-spacing:0.275442pt;}
.ls6_c00233{letter-spacing:1.898320pt;}
.ws3_c00233{word-spacing:-62.240000pt;}
.ws0_c00233{word-spacing:-17.296496pt;}
.ws2_c00233{word-spacing:-17.284048pt;}
.ws4_c00233{word-spacing:-17.240480pt;}
.ws6_c00233{word-spacing:-14.312575pt;}
.ws1_c00233{word-spacing:-11.245337pt;}
.ws5_c00233{word-spacing:-9.242347pt;}
.wsc_c00233{word-spacing:-0.062240pt;}
.ws9_c00233{word-spacing:-0.049792pt;}
.ws8_c00233{word-spacing:-0.043568pt;}
.wse_c00233{word-spacing:-0.018672pt;}
.ws7_c00233{word-spacing:0.000000pt;}
.ws10_c00233{word-spacing:0.012448pt;}
.ws1a_c00233{word-spacing:0.018672pt;}
.wsf_c00233{word-spacing:0.024896pt;}
.ws24_c00233{word-spacing:0.041576pt;}
.wsb_c00233{word-spacing:0.261408pt;}
.wsa_c00233{word-spacing:0.298752pt;}
.ws22_c00233{word-spacing:0.304976pt;}
.ws18_c00233{word-spacing:0.336096pt;}
.wsd_c00233{word-spacing:0.342320pt;}
.ws12_c00233{word-spacing:1.263472pt;}
.ws11_c00233{word-spacing:1.574672pt;}
.ws1b_c00233{word-spacing:1.593344pt;}
.ws16_c00233{word-spacing:1.923216pt;}
.ws15_c00233{word-spacing:1.941888pt;}
.ws20_c00233{word-spacing:2.265536pt;}
.ws21_c00233{word-spacing:2.564288pt;}
.ws23_c00233{word-spacing:4.854010pt;}
.ws13_c00233{word-spacing:9.273760pt;}
.ws14_c00233{word-spacing:9.578736pt;}
.ws27_c00233{word-spacing:9.650854pt;}
.ws17_c00233{word-spacing:11.844272pt;}
.ws1c_c00233{word-spacing:13.057952pt;}
.ws1e_c00233{word-spacing:13.120192pt;}
.ws1d_c00233{word-spacing:13.132640pt;}
.ws19_c00233{word-spacing:15.024736pt;}
.ws1f_c00233{word-spacing:19.499792pt;}
.ws26_c00233{word-spacing:134.457129pt;}
.ws25_c00233{word-spacing:134.852102pt;}
._e_c00233{margin-left:-2.408448pt;}
._3_c00233{margin-left:-1.120320pt;}
._c_c00233{width:0.927376pt;}
._d_c00233{width:5.271728pt;}
._a_c00233{width:39.043152pt;}
._0_c00233{width:56.320976pt;}
._2_c00233{width:236.113664pt;}
._4_c00233{width:288.320576pt;}
._1_c00233{width:308.617040pt;}
._6_c00233{width:322.546352pt;}
._5_c00233{width:326.336768pt;}
._b_c00233{width:361.558384pt;}
._7_c00233{width:370.832144pt;}
._9_c00233{width:399.362960pt;}
._8_c00233{width:441.026416pt;}
.fs2_c00233{font-size:33.608533pt;}
.fs1_c00233{font-size:41.388800pt;}
.fs3_c00233{font-size:51.970133pt;}
.fs0_c00233{font-size:62.240000pt;}
.y0_c00233{bottom:0.000000pt;}
.y2_c00233{bottom:97.547527pt;}
.y1_c00233{bottom:115.387067pt;}
.y26_c00233{bottom:132.826570pt;}
.y25_c00233{bottom:151.947067pt;}
.y24_c00233{bottom:164.665769pt;}
.y23_c00233{bottom:180.506265pt;}
.y22_c00233{bottom:196.506570pt;}
.y21_c00233{bottom:215.627067pt;}
.y20_c00233{bottom:228.666519pt;}
.y1f_c00233{bottom:247.786647pt;}
.y1e_c00233{bottom:284.268307pt;}
.y1d_c00233{bottom:312.508151pt;}
.y1c_c00233{bottom:340.747995pt;}
.y1b_c00233{bottom:376.347719pt;}
.y1a_c00233{bottom:410.987391pt;}
.y19_c00233{bottom:437.787935pt;}
.y18_c00233{bottom:464.667835pt;}
.y17_c00233{bottom:499.228151pt;}
.y16_c00233{bottom:533.867823pt;}
.y15_c00233{bottom:560.747723pt;}
.y14_c00233{bottom:595.387395pt;}
.y13_c00233{bottom:630.028303pt;}
.y12_c00233{bottom:657.947611pt;}
.y11_c00233{bottom:684.827511pt;}
.y10_c00233{bottom:711.628055pt;}
.yf_c00233{bottom:738.507955pt;}
.ye_c00233{bottom:764.267535pt;}
.yd_c00233{bottom:783.227395pt;}
.yc_c00233{bottom:817.867067pt;}
.yb_c00233{bottom:836.427067pt;}
.ya_c00233{bottom:854.987067pt;}
.y9_c00233{bottom:873.467067pt;}
.y8_c00233{bottom:892.107067pt;}
.y7_c00233{bottom:912.267067pt;}
.y6_c00233{bottom:930.827067pt;}
.y5_c00233{bottom:949.307067pt;}
.y4_c00233{bottom:967.947067pt;}
.y3_c00233{bottom:986.428087pt;}
.h6_c00233{height:34.967599pt;}
.h7_c00233{height:48.087599pt;}
.h4_c00233{height:55.645234pt;}
.h1_c00233{height:55.797187pt;}
.h5_c00233{height:55.799379pt;}
.h2_c00233{height:56.192266pt;}
.h3_c00233{height:57.590234pt;}
.h0_c00233{height:1122.666667pt;}
.w0_c00233{width:793.333333pt;}
.x0_c00233{left:0.000000pt;}
.x2_c00233{left:73.520052pt;}
.x4_c00233{left:201.440000pt;}
.x3_c00233{left:205.759824pt;}
.x5_c00233{left:301.600000pt;}
.x1_c00233{left:383.760000pt;}
.x6_c00233{left:396.800748pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ee1241c8f60804fc8e74a219.woff2')format("woff");}.ff1_c00234{font-family:ff1_c00234;line-height:1.106934;font-style:normal;font-weight:normal;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_b56d50ac961d73b89d1ae5ef.woff2')format("woff");}.ff2_c00234{font-family:ff2_c00234;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00234{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00234{vertical-align:0.000000px;}
.v1_c00234{vertical-align:43.923546px;}
.ls10_c00234{letter-spacing:-0.098028px;}
.lsc_c00234{letter-spacing:-0.083569px;}
.ls5_c00234{letter-spacing:-0.063018px;}
.lsf_c00234{letter-spacing:-0.042012px;}
.lsd_c00234{letter-spacing:-0.030389px;}
.ls9_c00234{letter-spacing:-0.028008px;}
.ls8_c00234{letter-spacing:-0.021006px;}
.ls7_c00234{letter-spacing:-0.014004px;}
.lsb_c00234{letter-spacing:-0.007002px;}
.ls6_c00234{letter-spacing:0.000000px;}
.ls0_c00234{letter-spacing:0.007002px;}
.ls1_c00234{letter-spacing:0.042012px;}
.ls3_c00234{letter-spacing:0.091026px;}
.ls2_c00234{letter-spacing:0.098028px;}
.ls4_c00234{letter-spacing:0.112032px;}
.lse_c00234{letter-spacing:0.343098px;}
.lsa_c00234{letter-spacing:0.399114px;}
.sc__c00234{text-shadow:none;}
.sc0_c00234{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00234{-webkit-text-stroke:0px transparent;}
.sc0_c00234{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00234{word-spacing:-19.458558px;}
.ws11_c00234{word-spacing:-0.364104px;}
.wse_c00234{word-spacing:-0.112032px;}
.ws6_c00234{word-spacing:-0.021006px;}
.ws8_c00234{word-spacing:-0.014004px;}
.ws2_c00234{word-spacing:0.000000px;}
.ws5_c00234{word-spacing:0.007002px;}
.wsb_c00234{word-spacing:0.014004px;}
.ws4_c00234{word-spacing:0.049014px;}
.wsf_c00234{word-spacing:0.212720px;}
.ws18_c00234{word-spacing:0.231066px;}
.ws9_c00234{word-spacing:0.301086px;}
.ws10_c00234{word-spacing:0.341871px;}
.wsa_c00234{word-spacing:0.357102px;}
.ws7_c00234{word-spacing:0.371106px;}
.ws3_c00234{word-spacing:3.599028px;}
.wsc_c00234{word-spacing:9.004572px;}
.wsd_c00234{word-spacing:10.061874px;}
.ws0_c00234{word-spacing:42.698196px;}
.ws14_c00234{word-spacing:62.625888px;}
.ws12_c00234{word-spacing:62.639892px;}
.ws13_c00234{word-spacing:62.653896px;}
.ws15_c00234{word-spacing:62.667900px;}
.ws17_c00234{word-spacing:62.688906px;}
.ws16_c00234{word-spacing:62.723916px;}
._4_c00234{margin-left:-62.807940px;}
._c_c00234{margin-left:-61.638606px;}
._3_c00234{margin-left:-1.183338px;}
._0_c00234{width:1.085310px;}
._6_c00234{width:62.282790px;}
._2_c00234{width:421.842492px;}
._5_c00234{width:437.400936px;}
._8_c00234{width:499.935798px;}
._a_c00234{width:507.960090px;}
._9_c00234{width:542.451942px;}
._7_c00234{width:604.412640px;}
._1_c00234{width:636.635844px;}
._b_c00234{width:791.639118px;}
.fc0_c00234{color:rgb(0,0,0);}
.fs0_c00234{font-size:70.020000px;}
.fs1_c00234{font-size:75.971400px;}
.y0_c00234{bottom:0.000000px;}
.y2_c00234{bottom:109.740968px;}
.y1_c00234{bottom:129.810450px;}
.y26_c00234{bottom:164.008700px;}
.y23_c00234{bottom:164.010450px;}
.y22_c00234{bottom:186.780450px;}
.y21_c00234{bottom:207.660450px;}
.y20_c00234{bottom:228.540600px;}
.y1f_c00234{bottom:249.420450px;}
.y1e_c00234{bottom:270.210450px;}
.y25_c00234{bottom:270.929239px;}
.y24_c00234{bottom:291.089748px;}
.y1d_c00234{bottom:291.091390px;}
.y1c_c00234{bottom:330.691201px;}
.y1b_c00234{bottom:369.660832px;}
.y1a_c00234{bottom:408.630463px;}
.y19_c00234{bottom:447.510819px;}
.y18_c00234{bottom:486.480450px;}
.y17_c00234{bottom:511.230450px;}
.y16_c00234{bottom:560.369825px;}
.y15_c00234{bottom:599.339455px;}
.y14_c00234{bottom:629.490068px;}
.y13_c00234{bottom:659.729955px;}
.y12_c00234{bottom:698.610310px;}
.y11_c00234{bottom:718.770819px;}
.y10_c00234{bottom:757.740450px;}
.ye_c00234{bottom:780.600450px;}
.yd_c00234{bottom:801.390450px;}
.yc_c00234{bottom:822.270450px;}
.yf_c00234{bottom:832.170180px;}
.yb_c00234{bottom:843.150450px;}
.ya_c00234{bottom:864.030450px;}
.y9_c00234{bottom:884.820356px;}
.y8_c00234{bottom:924.511193px;}
.y7_c00234{bottom:963.391548px;}
.y6_c00234{bottom:1002.361179px;}
.y5_c00234{bottom:1041.330810px;}
.y4_c00234{bottom:1080.300441px;}
.y3_c00234{bottom:1110.451053px;}
.h1_c00234{height:62.771836px;}
.h3_c00234{height:63.216299px;}
.h4_c00234{height:68.589413px;}
.h2_c00234{height:106.695382px;}
.h0_c00234{height:1263.000000px;}
.w0_c00234{width:892.500000px;}
.x0_c00234{left:0.000000px;}
.x2_c00234{left:82.710059px;}
.x6_c00234{left:246.600563px;}
.x3_c00234{left:255.419640px;}
.x4_c00234{left:339.300000px;}
.x8_c00234{left:381.239708px;}
.x7_c00234{left:385.649217px;}
.x1_c00234{left:431.730000px;}
.x5_c00234{left:446.400841px;}
.x9_c00234{left:495.269028px;}
@media print{
.v0_c00234{vertical-align:0.000000pt;}
.v1_c00234{vertical-align:39.043152pt;}
.ls10_c00234{letter-spacing:-0.087136pt;}
.lsc_c00234{letter-spacing:-0.074283pt;}
.ls5_c00234{letter-spacing:-0.056016pt;}
.lsf_c00234{letter-spacing:-0.037344pt;}
.lsd_c00234{letter-spacing:-0.027012pt;}
.ls9_c00234{letter-spacing:-0.024896pt;}
.ls8_c00234{letter-spacing:-0.018672pt;}
.ls7_c00234{letter-spacing:-0.012448pt;}
.lsb_c00234{letter-spacing:-0.006224pt;}
.ls6_c00234{letter-spacing:0.000000pt;}
.ls0_c00234{letter-spacing:0.006224pt;}
.ls1_c00234{letter-spacing:0.037344pt;}
.ls3_c00234{letter-spacing:0.080912pt;}
.ls2_c00234{letter-spacing:0.087136pt;}
.ls4_c00234{letter-spacing:0.099584pt;}
.lse_c00234{letter-spacing:0.304976pt;}
.lsa_c00234{letter-spacing:0.354768pt;}
.ws1_c00234{word-spacing:-17.296496pt;}
.ws11_c00234{word-spacing:-0.323648pt;}
.wse_c00234{word-spacing:-0.099584pt;}
.ws6_c00234{word-spacing:-0.018672pt;}
.ws8_c00234{word-spacing:-0.012448pt;}
.ws2_c00234{word-spacing:0.000000pt;}
.ws5_c00234{word-spacing:0.006224pt;}
.wsb_c00234{word-spacing:0.012448pt;}
.ws4_c00234{word-spacing:0.043568pt;}
.wsf_c00234{word-spacing:0.189084pt;}
.ws18_c00234{word-spacing:0.205392pt;}
.ws9_c00234{word-spacing:0.267632pt;}
.ws10_c00234{word-spacing:0.303886pt;}
.wsa_c00234{word-spacing:0.317424pt;}
.ws7_c00234{word-spacing:0.329872pt;}
.ws3_c00234{word-spacing:3.199136pt;}
.wsc_c00234{word-spacing:8.004064pt;}
.wsd_c00234{word-spacing:8.943888pt;}
.ws0_c00234{word-spacing:37.953952pt;}
.ws14_c00234{word-spacing:55.667456pt;}
.ws12_c00234{word-spacing:55.679904pt;}
.ws13_c00234{word-spacing:55.692352pt;}
.ws15_c00234{word-spacing:55.704800pt;}
.ws17_c00234{word-spacing:55.723472pt;}
.ws16_c00234{word-spacing:55.754592pt;}
._4_c00234{margin-left:-55.829280pt;}
._c_c00234{margin-left:-54.789872pt;}
._3_c00234{margin-left:-1.051856pt;}
._0_c00234{width:0.964720pt;}
._6_c00234{width:55.362480pt;}
._2_c00234{width:374.971104pt;}
._5_c00234{width:388.800832pt;}
._8_c00234{width:444.387376pt;}
._a_c00234{width:451.520080pt;}
._9_c00234{width:482.179504pt;}
._7_c00234{width:537.255680pt;}
._1_c00234{width:565.898528pt;}
._b_c00234{width:703.679216pt;}
.fs0_c00234{font-size:62.240000pt;}
.fs1_c00234{font-size:67.530133pt;}
.y0_c00234{bottom:0.000000pt;}
.y2_c00234{bottom:97.547527pt;}
.y1_c00234{bottom:115.387067pt;}
.y26_c00234{bottom:145.785511pt;}
.y23_c00234{bottom:145.787067pt;}
.y22_c00234{bottom:166.027067pt;}
.y21_c00234{bottom:184.587067pt;}
.y20_c00234{bottom:203.147200pt;}
.y1f_c00234{bottom:221.707067pt;}
.y1e_c00234{bottom:240.187067pt;}
.y25_c00234{bottom:240.825991pt;}
.y24_c00234{bottom:258.746443pt;}
.y1d_c00234{bottom:258.747903pt;}
.y1c_c00234{bottom:293.947735pt;}
.y1b_c00234{bottom:328.587407pt;}
.y1a_c00234{bottom:363.227079pt;}
.y19_c00234{bottom:397.787395pt;}
.y18_c00234{bottom:432.427067pt;}
.y17_c00234{bottom:454.427067pt;}
.y16_c00234{bottom:498.106511pt;}
.y15_c00234{bottom:532.746183pt;}
.y14_c00234{bottom:559.546727pt;}
.y13_c00234{bottom:586.426627pt;}
.y12_c00234{bottom:620.986943pt;}
.y11_c00234{bottom:638.907395pt;}
.y10_c00234{bottom:673.547067pt;}
.ye_c00234{bottom:693.867067pt;}
.yd_c00234{bottom:712.347067pt;}
.yc_c00234{bottom:730.907067pt;}
.yf_c00234{bottom:739.706827pt;}
.yb_c00234{bottom:749.467067pt;}
.ya_c00234{bottom:768.027067pt;}
.y9_c00234{bottom:786.506983pt;}
.y8_c00234{bottom:821.787727pt;}
.y7_c00234{bottom:856.348043pt;}
.y6_c00234{bottom:890.987715pt;}
.y5_c00234{bottom:925.627387pt;}
.y4_c00234{bottom:960.267059pt;}
.y3_c00234{bottom:987.067603pt;}
.h1_c00234{height:55.797187pt;}
.h3_c00234{height:56.192266pt;}
.h4_c00234{height:60.968367pt;}
.h2_c00234{height:94.840340pt;}
.h0_c00234{height:1122.666667pt;}
.w0_c00234{width:793.333333pt;}
.x0_c00234{left:0.000000pt;}
.x2_c00234{left:73.520052pt;}
.x6_c00234{left:219.200500pt;}
.x3_c00234{left:227.039680pt;}
.x4_c00234{left:301.600000pt;}
.x8_c00234{left:338.879740pt;}
.x7_c00234{left:342.799304pt;}
.x1_c00234{left:383.760000pt;}
.x5_c00234{left:396.800748pt;}
.x9_c00234{left:440.239136pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_00a4fd28c79279faec709a8a.woff2')format("woff");}.ff1_c00235{font-family:ff1_c00235;line-height:1.106934;font-style:normal;font-weight:normal;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_24350292a30df4ee48012e09.woff2')format("woff");}.ff2_c00235{font-family:ff2_c00235;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00235;src:url('chunks/assets/font_587da32f32e091c8eebe00b9.woff2')format("woff");}.ff3_c00235{font-family:ff3_c00235;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00235;src:url('chunks/assets/font_6c7b70cbfb5d4a875323411d.woff2')format("woff");}.ff4_c00235{font-family:ff4_c00235;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00235{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00235{vertical-align:0.000000px;}
.lse_c00235{letter-spacing:-0.098763px;}
.ls6_c00235{letter-spacing:-0.063018px;}
.lsd_c00235{letter-spacing:-0.056016px;}
.lsc_c00235{letter-spacing:-0.035010px;}
.lsb_c00235{letter-spacing:-0.028008px;}
.ls8_c00235{letter-spacing:-0.021006px;}
.ls9_c00235{letter-spacing:-0.014004px;}
.lsa_c00235{letter-spacing:-0.007002px;}
.ls7_c00235{letter-spacing:0.000000px;}
.ls5_c00235{letter-spacing:0.007002px;}
.ls2_c00235{letter-spacing:0.014004px;}
.ls4_c00235{letter-spacing:0.021006px;}
.ls3_c00235{letter-spacing:0.028008px;}
.ls0_c00235{letter-spacing:0.091026px;}
.ls1_c00235{letter-spacing:0.273078px;}
.sc__c00235{text-shadow:none;}
.sc0_c00235{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00235{-webkit-text-stroke:0px transparent;}
.sc0_c00235{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00235{word-spacing:-19.458558px;}
.ws1_c00235{word-spacing:0.000000px;}
.ws2_c00235{word-spacing:0.007002px;}
.ws5_c00235{word-spacing:0.014004px;}
.ws17_c00235{word-spacing:0.021006px;}
.ws18_c00235{word-spacing:0.053180px;}
.ws1c_c00235{word-spacing:0.329094px;}
.ws16_c00235{word-spacing:0.336096px;}
.ws1d_c00235{word-spacing:0.364104px;}
.wse_c00235{word-spacing:0.371106px;}
.ws1b_c00235{word-spacing:0.714204px;}
.ws13_c00235{word-spacing:0.735210px;}
.ws1a_c00235{word-spacing:1.785510px;}
.ws19_c00235{word-spacing:2.128608px;}
.wsa_c00235{word-spacing:2.863818px;}
.ws7_c00235{word-spacing:3.493998px;}
.ws8_c00235{word-spacing:3.592026px;}
.ws9_c00235{word-spacing:3.620034px;}
.ws14_c00235{word-spacing:4.677336px;}
.wsd_c00235{word-spacing:5.783652px;}
.ws12_c00235{word-spacing:6.084738px;}
.ws10_c00235{word-spacing:6.434838px;}
.ws11_c00235{word-spacing:6.483852px;}
.ws6_c00235{word-spacing:7.219062px;}
.wsb_c00235{word-spacing:11.490282px;}
.wsc_c00235{word-spacing:15.124320px;}
.ws15_c00235{word-spacing:16.216632px;}
.wsf_c00235{word-spacing:27.013716px;}
.ws4_c00235{word-spacing:43.566444px;}
.ws3_c00235{word-spacing:62.639892px;}
._3_c00235{margin-left:-62.324802px;}
._6_c00235{margin-left:-1.351386px;}
._5_c00235{width:1.211346px;}
._0_c00235{width:62.639892px;}
._2_c00235{width:791.639118px;}
._4_c00235{width:810.719568px;}
._1_c00235{width:854.279010px;}
.fc0_c00235{color:rgb(0,0,0);}
.fs1_c00235{font-size:58.466400px;}
.fs0_c00235{font-size:70.020000px;}
.fs2_c00235{font-size:75.971400px;}
.y0_c00235{bottom:0.000000px;}
.y2_c00235{bottom:109.740968px;}
.y1_c00235{bottom:129.810450px;}
.y20_c00235{bottom:175.440319px;}
.y1f_c00235{bottom:214.409950px;}
.y1e_c00235{bottom:244.560562px;}
.y1d_c00235{bottom:274.800450px;}
.y1c_c00235{bottom:311.790450px;}
.y1b_c00235{bottom:334.920450px;}
.y1a_c00235{bottom:382.080600px;}
.y19_c00235{bottom:419.339118px;}
.y18_c00235{bottom:449.579006px;}
.y17_c00235{bottom:479.729618px;}
.y16_c00235{bottom:518.699249px;}
.y15_c00235{bottom:557.668880px;}
.y14_c00235{bottom:587.819492px;}
.y13_c00235{bottom:618.059379px;}
.y12_c00235{bottom:648.209991px;}
.y11_c00235{bottom:678.449879px;}
.y10_c00235{bottom:708.600491px;}
.yf_c00235{bottom:747.570122px;}
.ye_c00235{bottom:786.539752px;}
.yd_c00235{bottom:816.690364px;}
.yc_c00235{bottom:846.930252px;}
.yb_c00235{bottom:877.080864px;}
.ya_c00235{bottom:907.320752px;}
.y9_c00235{bottom:937.921242px;}
.y8_c00235{bottom:969.241188px;}
.y7_c00235{bottom:1008.210819px;}
.y6_c00235{bottom:1047.180450px;}
.y5_c00235{bottom:1067.970450px;}
.y4_c00235{bottom:1088.940450px;}
.y3_c00235{bottom:1109.731597px;}
.h3_c00235{height:60.094246px;}
.h1_c00235{height:62.771836px;}
.h2_c00235{height:63.216299px;}
.h4_c00235{height:68.589413px;}
.h0_c00235{height:1263.000000px;}
.w0_c00235{width:892.500000px;}
.x0_c00235{left:0.000000px;}
.x2_c00235{left:82.710059px;}
.x4_c00235{left:241.650000px;}
.x3_c00235{left:246.600621px;}
.x5_c00235{left:339.300000px;}
.x1_c00235{left:431.730000px;}
.x6_c00235{left:446.400841px;}
@media print{
.v0_c00235{vertical-align:0.000000pt;}
.lse_c00235{letter-spacing:-0.087789pt;}
.ls6_c00235{letter-spacing:-0.056016pt;}
.lsd_c00235{letter-spacing:-0.049792pt;}
.lsc_c00235{letter-spacing:-0.031120pt;}
.lsb_c00235{letter-spacing:-0.024896pt;}
.ls8_c00235{letter-spacing:-0.018672pt;}
.ls9_c00235{letter-spacing:-0.012448pt;}
.lsa_c00235{letter-spacing:-0.006224pt;}
.ls7_c00235{letter-spacing:0.000000pt;}
.ls5_c00235{letter-spacing:0.006224pt;}
.ls2_c00235{letter-spacing:0.012448pt;}
.ls4_c00235{letter-spacing:0.018672pt;}
.ls3_c00235{letter-spacing:0.024896pt;}
.ls0_c00235{letter-spacing:0.080912pt;}
.ls1_c00235{letter-spacing:0.242736pt;}
.ws0_c00235{word-spacing:-17.296496pt;}
.ws1_c00235{word-spacing:0.000000pt;}
.ws2_c00235{word-spacing:0.006224pt;}
.ws5_c00235{word-spacing:0.012448pt;}
.ws17_c00235{word-spacing:0.018672pt;}
.ws18_c00235{word-spacing:0.047271pt;}
.ws1c_c00235{word-spacing:0.292528pt;}
.ws16_c00235{word-spacing:0.298752pt;}
.ws1d_c00235{word-spacing:0.323648pt;}
.wse_c00235{word-spacing:0.329872pt;}
.ws1b_c00235{word-spacing:0.634848pt;}
.ws13_c00235{word-spacing:0.653520pt;}
.ws1a_c00235{word-spacing:1.587120pt;}
.ws19_c00235{word-spacing:1.892096pt;}
.wsa_c00235{word-spacing:2.545616pt;}
.ws7_c00235{word-spacing:3.105776pt;}
.ws8_c00235{word-spacing:3.192912pt;}
.ws9_c00235{word-spacing:3.217808pt;}
.ws14_c00235{word-spacing:4.157632pt;}
.wsd_c00235{word-spacing:5.141024pt;}
.ws12_c00235{word-spacing:5.408656pt;}
.ws10_c00235{word-spacing:5.719856pt;}
.ws11_c00235{word-spacing:5.763424pt;}
.ws6_c00235{word-spacing:6.416944pt;}
.wsb_c00235{word-spacing:10.213584pt;}
.wsc_c00235{word-spacing:13.443840pt;}
.ws15_c00235{word-spacing:14.414784pt;}
.wsf_c00235{word-spacing:24.012192pt;}
.ws4_c00235{word-spacing:38.725728pt;}
.ws3_c00235{word-spacing:55.679904pt;}
._3_c00235{margin-left:-55.399824pt;}
._6_c00235{margin-left:-1.201232pt;}
._5_c00235{width:1.076752pt;}
._0_c00235{width:55.679904pt;}
._2_c00235{width:703.679216pt;}
._4_c00235{width:720.639616pt;}
._1_c00235{width:759.359120pt;}
.fs1_c00235{font-size:51.970133pt;}
.fs0_c00235{font-size:62.240000pt;}
.fs2_c00235{font-size:67.530133pt;}
.y0_c00235{bottom:0.000000pt;}
.y2_c00235{bottom:97.547527pt;}
.y1_c00235{bottom:115.387067pt;}
.y20_c00235{bottom:155.946951pt;}
.y1f_c00235{bottom:190.586623pt;}
.y1e_c00235{bottom:217.387167pt;}
.y1d_c00235{bottom:244.267067pt;}
.y1c_c00235{bottom:277.147067pt;}
.y1b_c00235{bottom:297.707067pt;}
.y1a_c00235{bottom:339.627200pt;}
.y19_c00235{bottom:372.745883pt;}
.y18_c00235{bottom:399.625783pt;}
.y17_c00235{bottom:426.426327pt;}
.y16_c00235{bottom:461.065999pt;}
.y15_c00235{bottom:495.705671pt;}
.y14_c00235{bottom:522.506215pt;}
.y13_c00235{bottom:549.386115pt;}
.y12_c00235{bottom:576.186659pt;}
.y11_c00235{bottom:603.066559pt;}
.y10_c00235{bottom:629.867103pt;}
.yf_c00235{bottom:664.506775pt;}
.ye_c00235{bottom:699.146447pt;}
.yd_c00235{bottom:725.946991pt;}
.yc_c00235{bottom:752.826891pt;}
.yb_c00235{bottom:779.627435pt;}
.ya_c00235{bottom:806.507335pt;}
.y9_c00235{bottom:833.707771pt;}
.y8_c00235{bottom:861.547723pt;}
.y7_c00235{bottom:896.187395pt;}
.y6_c00235{bottom:930.827067pt;}
.y5_c00235{bottom:949.307067pt;}
.y4_c00235{bottom:967.947067pt;}
.y3_c00235{bottom:986.428087pt;}
.h3_c00235{height:53.417108pt;}
.h1_c00235{height:55.797187pt;}
.h2_c00235{height:56.192266pt;}
.h4_c00235{height:60.968367pt;}
.h0_c00235{height:1122.666667pt;}
.w0_c00235{width:793.333333pt;}
.x0_c00235{left:0.000000pt;}
.x2_c00235{left:73.520052pt;}
.x4_c00235{left:214.800000pt;}
.x3_c00235{left:219.200552pt;}
.x5_c00235{left:301.600000pt;}
.x1_c00235{left:383.760000pt;}
.x6_c00235{left:396.800748pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f2019226cacfa2a1df4aff05.woff2')format("woff");}.ff1_c00236{font-family:ff1_c00236;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00236;src:url('chunks/assets/font_ae33662969ea97a23f859cd7.woff2')format("woff");}.ff2_c00236{font-family:ff2_c00236;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00236;src:url('chunks/assets/font_ab6d761312b4cecb74d7808b.woff2')format("woff");}.ff3_c00236{font-family:ff3_c00236;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00236;src:url('chunks/assets/font_1f0c84478209bbd319898396.woff2')format("woff");}.ff4_c00236{font-family:ff4_c00236;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00236{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00236{vertical-align:-14.760600px;}
.v0_c00236{vertical-align:0.000000px;}
.v1_c00236{vertical-align:32.396886px;}
.lse_c00236{letter-spacing:-0.075619px;}
.ls7_c00236{letter-spacing:-0.063018px;}
.lsf_c00236{letter-spacing:-0.058466px;}
.lsd_c00236{letter-spacing:-0.035010px;}
.lsc_c00236{letter-spacing:-0.028008px;}
.ls9_c00236{letter-spacing:-0.021006px;}
.lsa_c00236{letter-spacing:-0.014004px;}
.lsb_c00236{letter-spacing:-0.007002px;}
.ls8_c00236{letter-spacing:0.000000px;}
.ls2_c00236{letter-spacing:0.014004px;}
.ls4_c00236{letter-spacing:0.021006px;}
.ls6_c00236{letter-spacing:0.023281px;}
.ls1_c00236{letter-spacing:0.035010px;}
.ls3_c00236{letter-spacing:0.049014px;}
.ls5_c00236{letter-spacing:0.077022px;}
.ls0_c00236{letter-spacing:0.084024px;}
.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:-19.458558px;}
.ws1_c00236{word-spacing:-19.402542px;}
.ws2_c00236{word-spacing:-12.967628px;}
.ws3_c00236{word-spacing:-10.397640px;}
.ws7_c00236{word-spacing:-0.455130px;}
.wsd_c00236{word-spacing:-0.063018px;}
.ws8_c00236{word-spacing:-0.049014px;}
.ws4_c00236{word-spacing:0.000000px;}
.ws5_c00236{word-spacing:0.007002px;}
.ws10_c00236{word-spacing:0.014004px;}
.ws18_c00236{word-spacing:0.070160px;}
.wsf_c00236{word-spacing:0.266076px;}
.ws9_c00236{word-spacing:0.308088px;}
.wsb_c00236{word-spacing:0.329094px;}
.wsa_c00236{word-spacing:0.350100px;}
.wsc_c00236{word-spacing:0.357102px;}
.ws16_c00236{word-spacing:0.364104px;}
.ws17_c00236{word-spacing:0.378108px;}
.ws13_c00236{word-spacing:1.785510px;}
.ws11_c00236{word-spacing:9.368676px;}
.ws12_c00236{word-spacing:9.375678px;}
.ws14_c00236{word-spacing:19.087452px;}
.ws6_c00236{word-spacing:21.958272px;}
.ws15_c00236{word-spacing:29.492424px;}
.wse_c00236{word-spacing:66.203910px;}
._c_c00236{margin-left:-65.916828px;}
._e_c00236{margin-left:-2.711484px;}
._4_c00236{margin-left:-1.358388px;}
._0_c00236{width:1.169334px;}
._d_c00236{width:5.930694px;}
._1_c00236{width:85.676472px;}
._6_c00236{width:765.220572px;}
._8_c00236{width:912.920760px;}
._b_c00236{width:915.609528px;}
._3_c00236{width:943.778574px;}
._5_c00236{width:948.119814px;}
._2_c00236{width:952.356024px;}
._a_c00236{width:974.993490px;}
._9_c00236{width:998.835300px;}
._7_c00236{width:1134.933174px;}
.fc0_c00236{color:rgb(0,0,0);}
.fs2_c00236{font-size:37.809600px;}
.fs1_c00236{font-size:46.562400px;}
.fs3_c00236{font-size:58.466400px;}
.fs0_c00236{font-size:70.020000px;}
.y0_c00236{bottom:0.000000px;}
.y2_c00236{bottom:109.740968px;}
.y1_c00236{bottom:129.810450px;}
.y24_c00236{bottom:153.120600px;}
.y23_c00236{bottom:167.789505px;}
.y22_c00236{bottom:199.020175px;}
.y21_c00236{bottom:239.250167px;}
.y20_c00236{bottom:269.400779px;}
.y1f_c00236{bottom:319.891228px;}
.y1e_c00236{bottom:350.220391px;}
.y1d_c00236{bottom:400.801089px;}
.y1c_c00236{bottom:451.471062px;}
.y1b_c00236{bottom:481.710949px;}
.y1a_c00236{bottom:511.861561px;}
.y19_c00236{bottom:542.101449px;}
.y18_c00236{bottom:571.080976px;}
.y17_c00236{bottom:592.410819px;}
.y16_c00236{bottom:631.380450px;}
.y14_c00236{bottom:652.260450px;}
.y13_c00236{bottom:673.050450px;}
.y12_c00236{bottom:693.930450px;}
.y11_c00236{bottom:714.810450px;}
.y10_c00236{bottom:737.580450px;}
.y15_c00236{bottom:747.389622px;}
.yf_c00236{bottom:758.460450px;}
.ye_c00236{bottom:779.250450px;}
.yd_c00236{bottom:800.220450px;}
.yc_c00236{bottom:821.010450px;}
.yb_c00236{bottom:841.800068px;}
.ya_c00236{bottom:871.500801px;}
.y9_c00236{bottom:901.829964px;}
.y8_c00236{bottom:931.980576px;}
.y7_c00236{bottom:962.220464px;}
.y6_c00236{bottom:1002.361179px;}
.y5_c00236{bottom:1032.601066px;}
.y4_c00236{bottom:1071.481422px;}
.y3_c00236{bottom:1110.451053px;}
.h7_c00236{height:39.337949px;}
.h4_c00236{height:62.600889px;}
.h1_c00236{height:62.771836px;}
.h6_c00236{height:62.776216px;}
.h3_c00236{height:63.216299px;}
.h2_c00236{height:64.789014px;}
.h5_c00236{height:74.025672px;}
.h0_c00236{height:1263.000000px;}
.w0_c00236{width:892.500000px;}
.x0_c00236{left:0.000000px;}
.x2_c00236{left:82.710059px;}
.x4_c00236{left:129.510000px;}
.x3_c00236{left:134.460090px;}
.x7_c00236{left:339.300000px;}
.x1_c00236{left:431.730000px;}
.x5_c00236{left:441.629402px;}
.x8_c00236{left:446.400841px;}
.x6_c00236{left:545.668619px;}
@media print{
.v2_c00236{vertical-align:-13.120533pt;}
.v0_c00236{vertical-align:0.000000pt;}
.v1_c00236{vertical-align:28.797232pt;}
.lse_c00236{letter-spacing:-0.067217pt;}
.ls7_c00236{letter-spacing:-0.056016pt;}
.lsf_c00236{letter-spacing:-0.051970pt;}
.lsd_c00236{letter-spacing:-0.031120pt;}
.lsc_c00236{letter-spacing:-0.024896pt;}
.ls9_c00236{letter-spacing:-0.018672pt;}
.lsa_c00236{letter-spacing:-0.012448pt;}
.lsb_c00236{letter-spacing:-0.006224pt;}
.ls8_c00236{letter-spacing:0.000000pt;}
.ls2_c00236{letter-spacing:0.012448pt;}
.ls4_c00236{letter-spacing:0.018672pt;}
.ls6_c00236{letter-spacing:0.020694pt;}
.ls1_c00236{letter-spacing:0.031120pt;}
.ls3_c00236{letter-spacing:0.043568pt;}
.ls5_c00236{letter-spacing:0.068464pt;}
.ls0_c00236{letter-spacing:0.074688pt;}
.ws0_c00236{word-spacing:-17.296496pt;}
.ws1_c00236{word-spacing:-17.246704pt;}
.ws2_c00236{word-spacing:-11.526781pt;}
.ws3_c00236{word-spacing:-9.242347pt;}
.ws7_c00236{word-spacing:-0.404560pt;}
.wsd_c00236{word-spacing:-0.056016pt;}
.ws8_c00236{word-spacing:-0.043568pt;}
.ws4_c00236{word-spacing:0.000000pt;}
.ws5_c00236{word-spacing:0.006224pt;}
.ws10_c00236{word-spacing:0.012448pt;}
.ws18_c00236{word-spacing:0.062364pt;}
.wsf_c00236{word-spacing:0.236512pt;}
.ws9_c00236{word-spacing:0.273856pt;}
.wsb_c00236{word-spacing:0.292528pt;}
.wsa_c00236{word-spacing:0.311200pt;}
.wsc_c00236{word-spacing:0.317424pt;}
.ws16_c00236{word-spacing:0.323648pt;}
.ws17_c00236{word-spacing:0.336096pt;}
.ws13_c00236{word-spacing:1.587120pt;}
.ws11_c00236{word-spacing:8.327712pt;}
.ws12_c00236{word-spacing:8.333936pt;}
.ws14_c00236{word-spacing:16.966624pt;}
.ws6_c00236{word-spacing:19.518464pt;}
.ws15_c00236{word-spacing:26.215488pt;}
.wse_c00236{word-spacing:58.847920pt;}
._c_c00236{margin-left:-58.592736pt;}
._e_c00236{margin-left:-2.410208pt;}
._4_c00236{margin-left:-1.207456pt;}
._0_c00236{width:1.039408pt;}
._d_c00236{width:5.271728pt;}
._1_c00236{width:76.156864pt;}
._6_c00236{width:680.196064pt;}
._8_c00236{width:811.485120pt;}
._b_c00236{width:813.875136pt;}
._3_c00236{width:838.914288pt;}
._5_c00236{width:842.773168pt;}
._2_c00236{width:846.538688pt;}
._a_c00236{width:866.660880pt;}
._9_c00236{width:887.853600pt;}
._7_c00236{width:1008.829488pt;}
.fs2_c00236{font-size:33.608533pt;}
.fs1_c00236{font-size:41.388800pt;}
.fs3_c00236{font-size:51.970133pt;}
.fs0_c00236{font-size:62.240000pt;}
.y0_c00236{bottom:0.000000pt;}
.y2_c00236{bottom:97.547527pt;}
.y1_c00236{bottom:115.387067pt;}
.y24_c00236{bottom:136.107200pt;}
.y23_c00236{bottom:149.146227pt;}
.y22_c00236{bottom:176.906823pt;}
.y21_c00236{bottom:212.666815pt;}
.y20_c00236{bottom:239.467359pt;}
.y1f_c00236{bottom:284.347759pt;}
.y1e_c00236{bottom:311.307015pt;}
.y1d_c00236{bottom:356.267635pt;}
.y1c_c00236{bottom:401.307611pt;}
.y1b_c00236{bottom:428.187511pt;}
.y1a_c00236{bottom:454.988055pt;}
.y19_c00236{bottom:481.867955pt;}
.y18_c00236{bottom:507.627535pt;}
.y17_c00236{bottom:526.587395pt;}
.y16_c00236{bottom:561.227067pt;}
.y14_c00236{bottom:579.787067pt;}
.y13_c00236{bottom:598.267067pt;}
.y12_c00236{bottom:616.827067pt;}
.y11_c00236{bottom:635.387067pt;}
.y10_c00236{bottom:655.627067pt;}
.y15_c00236{bottom:664.346331pt;}
.yf_c00236{bottom:674.187067pt;}
.ye_c00236{bottom:692.667067pt;}
.yd_c00236{bottom:711.307067pt;}
.yc_c00236{bottom:729.787067pt;}
.yb_c00236{bottom:748.266727pt;}
.ya_c00236{bottom:774.667379pt;}
.y9_c00236{bottom:801.626635pt;}
.y8_c00236{bottom:828.427179pt;}
.y7_c00236{bottom:855.307079pt;}
.y6_c00236{bottom:890.987715pt;}
.y5_c00236{bottom:917.867615pt;}
.y4_c00236{bottom:952.427931pt;}
.y3_c00236{bottom:987.067603pt;}
.h7_c00236{height:34.967066pt;}
.h4_c00236{height:55.645234pt;}
.h1_c00236{height:55.797187pt;}
.h6_c00236{height:55.801081pt;}
.h3_c00236{height:56.192266pt;}
.h2_c00236{height:57.590234pt;}
.h5_c00236{height:65.800598pt;}
.h0_c00236{height:1122.666667pt;}
.w0_c00236{width:793.333333pt;}
.x0_c00236{left:0.000000pt;}
.x2_c00236{left:73.520052pt;}
.x4_c00236{left:115.120000pt;}
.x3_c00236{left:119.520080pt;}
.x7_c00236{left:301.600000pt;}
.x1_c00236{left:383.760000pt;}
.x5_c00236{left:392.559468pt;}
.x8_c00236{left:396.800748pt;}
.x6_c00236{left:485.038772pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6e603db88d99495933982aed.woff2')format("woff");}.ff1_c00237{font-family:ff1_c00237;line-height:1.106934;font-style:normal;font-weight:normal;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_c05b164b55da62309c6423d2.woff2')format("woff");}.ff2_c00237{font-family:ff2_c00237;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00237;src:url('chunks/assets/font_114a51d35a866263a3be9ecc.woff2')format("woff");}.ff3_c00237{font-family:ff3_c00237;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00237;src:url('chunks/assets/font_587da32f32e091c8eebe00b9.woff2')format("woff");}.ff4_c00237{font-family:ff4_c00237;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00237;src:url('chunks/assets/font_bb99b420c4883bff4036baec.woff2')format("woff");}.ff5_c00237{font-family:ff5_c00237;line-height:0.892090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00237;src:url('chunks/assets/font_f7af413e12fe905103f3b15e.woff2')format("woff");}.ff6_c00237{font-family:ff6_c00237;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00237{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00237{vertical-align:0.000000px;}
.ls1e_c00237{letter-spacing:-0.485271px;}
.ls1c_c00237{letter-spacing:-0.461885px;}
.ls13_c00237{letter-spacing:-0.238068px;}
.ls23_c00237{letter-spacing:-0.175399px;}
.ls20_c00237{letter-spacing:-0.152013px;}
.ls28_c00237{letter-spacing:-0.146166px;}
.ls27_c00237{letter-spacing:-0.122779px;}
.ls26_c00237{letter-spacing:-0.116933px;}
.ls17_c00237{letter-spacing:-0.113957px;}
.ls1d_c00237{letter-spacing:-0.099393px;}
.ls1a_c00237{letter-spacing:-0.093546px;}
.ls18_c00237{letter-spacing:-0.087700px;}
.ls19_c00237{letter-spacing:-0.081853px;}
.ls1f_c00237{letter-spacing:-0.076006px;}
.lsd_c00237{letter-spacing:-0.063018px;}
.ls21_c00237{letter-spacing:-0.052620px;}
.ls15_c00237{letter-spacing:-0.042012px;}
.ls24_c00237{letter-spacing:-0.040926px;}
.ls14_c00237{letter-spacing:-0.035010px;}
.ls16_c00237{letter-spacing:-0.028008px;}
.ls12_c00237{letter-spacing:-0.021006px;}
.lsf_c00237{letter-spacing:-0.014004px;}
.ls10_c00237{letter-spacing:-0.007002px;}
.lse_c00237{letter-spacing:0.000000px;}
.ls5_c00237{letter-spacing:0.007002px;}
.ls7_c00237{letter-spacing:0.014004px;}
.lsb_c00237{letter-spacing:0.023387px;}
.ls1_c00237{letter-spacing:0.028008px;}
.ls2_c00237{letter-spacing:0.035010px;}
.ls0_c00237{letter-spacing:0.042012px;}
.ls3_c00237{letter-spacing:0.084024px;}
.ls11_c00237{letter-spacing:0.098028px;}
.lsc_c00237{letter-spacing:0.116933px;}
.ls25_c00237{letter-spacing:0.128626px;}
.ls29_c00237{letter-spacing:0.175399px;}
.lsa_c00237{letter-spacing:0.198786px;}
.ls8_c00237{letter-spacing:0.217062px;}
.ls1b_c00237{letter-spacing:0.228019px;}
.ls22_c00237{letter-spacing:0.245559px;}
.ls4_c00237{letter-spacing:0.273078px;}
.ls6_c00237{letter-spacing:0.630180px;}
.ls9_c00237{letter-spacing:1.484424px;}
.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;}
}
.ws2_c00237{word-spacing:-19.738638px;}
.ws1_c00237{word-spacing:-19.423548px;}
.ws3_c00237{word-spacing:-16.171806px;}
.ws30_c00237{word-spacing:-0.520351px;}
.wsb_c00237{word-spacing:-0.350100px;}
.ws23_c00237{word-spacing:-0.304025px;}
.ws28_c00237{word-spacing:-0.286485px;}
.ws22_c00237{word-spacing:-0.268945px;}
.ws2a_c00237{word-spacing:-0.251406px;}
.ws2d_c00237{word-spacing:-0.245559px;}
.ws2f_c00237{word-spacing:-0.169553px;}
.ws0_c00237{word-spacing:-0.154044px;}
.ws19_c00237{word-spacing:-0.113957px;}
.ws2e_c00237{word-spacing:-0.070160px;}
.ws5_c00237{word-spacing:-0.056016px;}
.ws6_c00237{word-spacing:-0.042012px;}
.ws8_c00237{word-spacing:-0.014004px;}
.ws9_c00237{word-spacing:-0.007002px;}
.ws4_c00237{word-spacing:0.000000px;}
.ws27_c00237{word-spacing:0.011693px;}
.ws18_c00237{word-spacing:0.014004px;}
.ws2c_c00237{word-spacing:0.040926px;}
.ws29_c00237{word-spacing:0.046773px;}
.ws2b_c00237{word-spacing:0.134473px;}
.wsc_c00237{word-spacing:0.294084px;}
.ws7_c00237{word-spacing:0.343098px;}
.ws1e_c00237{word-spacing:1.064304px;}
.ws25_c00237{word-spacing:1.841692px;}
.ws1c_c00237{word-spacing:2.177622px;}
.ws1b_c00237{word-spacing:2.184624px;}
.ws1d_c00237{word-spacing:2.212632px;}
.ws17_c00237{word-spacing:2.891826px;}
.ws37_c00237{word-spacing:4.098495px;}
.ws13_c00237{word-spacing:4.292226px;}
.ws1a_c00237{word-spacing:5.027436px;}
.ws14_c00237{word-spacing:5.720634px;}
.ws15_c00237{word-spacing:5.769648px;}
.ws10_c00237{word-spacing:11.147184px;}
.wsf_c00237{word-spacing:11.497284px;}
.ws12_c00237{word-spacing:12.596598px;}
.ws34_c00237{word-spacing:12.704749px;}
.ws11_c00237{word-spacing:12.967704px;}
.ws31_c00237{word-spacing:13.032161px;}
.ws35_c00237{word-spacing:14.090402px;}
.ws32_c00237{word-spacing:15.949634px;}
.ws20_c00237{word-spacing:17.974134px;}
.ws1f_c00237{word-spacing:17.995140px;}
.wse_c00237{word-spacing:18.359244px;}
.wsd_c00237{word-spacing:18.380250px;}
.ws36_c00237{word-spacing:27.765693px;}
.ws33_c00237{word-spacing:32.121440px;}
.ws16_c00237{word-spacing:37.453698px;}
.wsa_c00237{word-spacing:43.909542px;}
.ws24_c00237{word-spacing:81.391075px;}
.ws21_c00237{word-spacing:164.565376px;}
.ws26_c00237{word-spacing:195.897520px;}
._10_c00237{margin-left:-195.412249px;}
._e_c00237{margin-left:-164.799242px;}
._b_c00237{margin-left:-43.580448px;}
._4_c00237{margin-left:-1.197342px;}
._c_c00237{width:1.001286px;}
._d_c00237{width:11.623320px;}
._f_c00237{width:13.271873px;}
._0_c00237{width:63.361098px;}
._2_c00237{width:374.775048px;}
._8_c00237{width:429.789762px;}
._7_c00237{width:472.424940px;}
._1_c00237{width:494.866350px;}
._3_c00237{width:538.285752px;}
._9_c00237{width:573.722874px;}
._5_c00237{width:600.393492px;}
._6_c00237{width:674.257590px;}
._a_c00237{width:768.238434px;}
.fc0_c00237{color:rgb(0,0,0);}
.fs2_c00237{font-size:58.466400px;}
.fs0_c00237{font-size:70.020000px;}
.fs1_c00237{font-size:75.971400px;}
.y0_c00237{bottom:0.000000px;}
.y2_c00237{bottom:109.740968px;}
.y1_c00237{bottom:129.810450px;}
.y29_c00237{bottom:152.399776px;}
.y28_c00237{bottom:169.140168px;}
.y27_c00237{bottom:185.969721px;}
.y26_c00237{bottom:202.710113px;}
.y25_c00237{bottom:219.450505px;}
.y24_c00237{bottom:236.280058px;}
.y23_c00237{bottom:253.020450px;}
.y22_c00237{bottom:270.479816px;}
.y21_c00237{bottom:287.220208px;}
.y20_c00237{bottom:303.960600px;}
.y1f_c00237{bottom:341.039777px;}
.y1e_c00237{bottom:371.190389px;}
.y1d_c00237{bottom:401.430276px;}
.y1c_c00237{bottom:432.030767px;}
.y1b_c00237{bottom:463.350713px;}
.y1a_c00237{bottom:493.590600px;}
.y19_c00237{bottom:518.340600px;}
.y18_c00237{bottom:567.479753px;}
.y17_c00237{bottom:606.360108px;}
.y16_c00237{bottom:636.599995px;}
.y15_c00237{bottom:666.750608px;}
.y14_c00237{bottom:696.990495px;}
.y13_c00237{bottom:727.141107px;}
.y12_c00237{bottom:757.380995px;}
.y11_c00237{bottom:787.981485px;}
.y10_c00237{bottom:819.390707px;}
.yf_c00237{bottom:858.271062px;}
.ye_c00237{bottom:898.140450px;}
.yc_c00237{bottom:920.100450px;}
.yb_c00237{bottom:940.980450px;}
.ya_c00237{bottom:961.860450px;}
.y9_c00237{bottom:982.650450px;}
.y8_c00237{bottom:1005.420450px;}
.yd_c00237{bottom:1015.320648px;}
.y7_c00237{bottom:1026.300450px;}
.y6_c00237{bottom:1047.180450px;}
.y5_c00237{bottom:1067.970450px;}
.y4_c00237{bottom:1088.940450px;}
.y3_c00237{bottom:1109.731597px;}
.h6_c00237{height:52.414214px;}
.h5_c00237{height:52.785339px;}
.h1_c00237{height:62.771836px;}
.h4_c00237{height:64.789014px;}
.h3_c00237{height:68.589413px;}
.h2_c00237{height:74.711340px;}
.h0_c00237{height:1263.000000px;}
.w0_c00237{width:892.500000px;}
.x0_c00237{left:0.000000px;}
.x2_c00237{left:82.710059px;}
.x8_c00237{left:184.770409px;}
.x9_c00237{left:197.730949px;}
.x4_c00237{left:217.350000px;}
.x3_c00237{left:222.210905px;}
.x11_c00237{left:256.051183px;}
.xb_c00237{left:272.700952px;}
.xa_c00237{left:284.940893px;}
.xc_c00237{left:287.820363px;}
.x7_c00237{left:331.200000px;}
.x12_c00237{left:390.421587px;}
.xe_c00237{left:393.211895px;}
.xd_c00237{left:408.961282px;}
.xf_c00237{left:411.842214px;}
.x1_c00237{left:431.730000px;}
.x5_c00237{left:447.390207px;}
.x10_c00237{left:504.182584px;}
.x6_c00237{left:525.420495px;}
@media print{
.v0_c00237{vertical-align:0.000000pt;}
.ls1e_c00237{letter-spacing:-0.431352pt;}
.ls1c_c00237{letter-spacing:-0.410564pt;}
.ls13_c00237{letter-spacing:-0.211616pt;}
.ls23_c00237{letter-spacing:-0.155910pt;}
.ls20_c00237{letter-spacing:-0.135122pt;}
.ls28_c00237{letter-spacing:-0.129925pt;}
.ls27_c00237{letter-spacing:-0.109137pt;}
.ls26_c00237{letter-spacing:-0.103940pt;}
.ls17_c00237{letter-spacing:-0.101295pt;}
.ls1d_c00237{letter-spacing:-0.088349pt;}
.ls1a_c00237{letter-spacing:-0.083152pt;}
.ls18_c00237{letter-spacing:-0.077955pt;}
.ls19_c00237{letter-spacing:-0.072758pt;}
.ls1f_c00237{letter-spacing:-0.067561pt;}
.lsd_c00237{letter-spacing:-0.056016pt;}
.ls21_c00237{letter-spacing:-0.046773pt;}
.ls15_c00237{letter-spacing:-0.037344pt;}
.ls24_c00237{letter-spacing:-0.036379pt;}
.ls14_c00237{letter-spacing:-0.031120pt;}
.ls16_c00237{letter-spacing:-0.024896pt;}
.ls12_c00237{letter-spacing:-0.018672pt;}
.lsf_c00237{letter-spacing:-0.012448pt;}
.ls10_c00237{letter-spacing:-0.006224pt;}
.lse_c00237{letter-spacing:0.000000pt;}
.ls5_c00237{letter-spacing:0.006224pt;}
.ls7_c00237{letter-spacing:0.012448pt;}
.lsb_c00237{letter-spacing:0.020788pt;}
.ls1_c00237{letter-spacing:0.024896pt;}
.ls2_c00237{letter-spacing:0.031120pt;}
.ls0_c00237{letter-spacing:0.037344pt;}
.ls3_c00237{letter-spacing:0.074688pt;}
.ls11_c00237{letter-spacing:0.087136pt;}
.lsc_c00237{letter-spacing:0.103940pt;}
.ls25_c00237{letter-spacing:0.114334pt;}
.ls29_c00237{letter-spacing:0.155910pt;}
.lsa_c00237{letter-spacing:0.176698pt;}
.ls8_c00237{letter-spacing:0.192944pt;}
.ls1b_c00237{letter-spacing:0.202684pt;}
.ls22_c00237{letter-spacing:0.218275pt;}
.ls4_c00237{letter-spacing:0.242736pt;}
.ls6_c00237{letter-spacing:0.560160pt;}
.ls9_c00237{letter-spacing:1.319488pt;}
.ws2_c00237{word-spacing:-17.545456pt;}
.ws1_c00237{word-spacing:-17.265376pt;}
.ws3_c00237{word-spacing:-14.374939pt;}
.ws30_c00237{word-spacing:-0.462534pt;}
.wsb_c00237{word-spacing:-0.311200pt;}
.ws23_c00237{word-spacing:-0.270245pt;}
.ws28_c00237{word-spacing:-0.254654pt;}
.ws22_c00237{word-spacing:-0.239063pt;}
.ws2a_c00237{word-spacing:-0.223472pt;}
.ws2d_c00237{word-spacing:-0.218275pt;}
.ws2f_c00237{word-spacing:-0.150713pt;}
.ws0_c00237{word-spacing:-0.136928pt;}
.ws19_c00237{word-spacing:-0.101295pt;}
.ws2e_c00237{word-spacing:-0.062364pt;}
.ws5_c00237{word-spacing:-0.049792pt;}
.ws6_c00237{word-spacing:-0.037344pt;}
.ws8_c00237{word-spacing:-0.012448pt;}
.ws9_c00237{word-spacing:-0.006224pt;}
.ws4_c00237{word-spacing:0.000000pt;}
.ws27_c00237{word-spacing:0.010394pt;}
.ws18_c00237{word-spacing:0.012448pt;}
.ws2c_c00237{word-spacing:0.036379pt;}
.ws29_c00237{word-spacing:0.041576pt;}
.ws2b_c00237{word-spacing:0.119531pt;}
.wsc_c00237{word-spacing:0.261408pt;}
.ws7_c00237{word-spacing:0.304976pt;}
.ws1e_c00237{word-spacing:0.946048pt;}
.ws25_c00237{word-spacing:1.637059pt;}
.ws1c_c00237{word-spacing:1.935664pt;}
.ws1b_c00237{word-spacing:1.941888pt;}
.ws1d_c00237{word-spacing:1.966784pt;}
.ws17_c00237{word-spacing:2.570512pt;}
.ws37_c00237{word-spacing:3.643106pt;}
.ws13_c00237{word-spacing:3.815312pt;}
.ws1a_c00237{word-spacing:4.468832pt;}
.ws14_c00237{word-spacing:5.085008pt;}
.ws15_c00237{word-spacing:5.128576pt;}
.ws10_c00237{word-spacing:9.908608pt;}
.wsf_c00237{word-spacing:10.219808pt;}
.ws12_c00237{word-spacing:11.196976pt;}
.ws34_c00237{word-spacing:11.293110pt;}
.ws11_c00237{word-spacing:11.526848pt;}
.ws31_c00237{word-spacing:11.584143pt;}
.ws35_c00237{word-spacing:12.524802pt;}
.ws32_c00237{word-spacing:14.177452pt;}
.ws20_c00237{word-spacing:15.977008pt;}
.ws1f_c00237{word-spacing:15.995680pt;}
.wse_c00237{word-spacing:16.319328pt;}
.wsd_c00237{word-spacing:16.338000pt;}
.ws36_c00237{word-spacing:24.680616pt;}
.ws33_c00237{word-spacing:28.552391pt;}
.ws16_c00237{word-spacing:33.292176pt;}
.wsa_c00237{word-spacing:39.030704pt;}
.ws24_c00237{word-spacing:72.347623pt;}
.ws21_c00237{word-spacing:146.280334pt;}
.ws26_c00237{word-spacing:174.131129pt;}
._10_c00237{margin-left:-173.699777pt;}
._e_c00237{margin-left:-146.488215pt;}
._b_c00237{margin-left:-38.738176pt;}
._4_c00237{margin-left:-1.064304pt;}
._c_c00237{width:0.890032pt;}
._d_c00237{width:10.331840pt;}
._f_c00237{width:11.797220pt;}
._0_c00237{width:56.320976pt;}
._2_c00237{width:333.133376pt;}
._8_c00237{width:382.035344pt;}
._7_c00237{width:419.933280pt;}
._1_c00237{width:439.881200pt;}
._3_c00237{width:478.476224pt;}
._9_c00237{width:509.975888pt;}
._5_c00237{width:533.683104pt;}
._6_c00237{width:599.340080pt;}
._a_c00237{width:682.878608pt;}
.fs2_c00237{font-size:51.970133pt;}
.fs0_c00237{font-size:62.240000pt;}
.fs1_c00237{font-size:67.530133pt;}
.y0_c00237{bottom:0.000000pt;}
.y2_c00237{bottom:97.547527pt;}
.y1_c00237{bottom:115.387067pt;}
.y29_c00237{bottom:135.466467pt;}
.y28_c00237{bottom:150.346816pt;}
.y27_c00237{bottom:165.306419pt;}
.y26_c00237{bottom:180.186767pt;}
.y25_c00237{bottom:195.067115pt;}
.y24_c00237{bottom:210.026718pt;}
.y23_c00237{bottom:224.907067pt;}
.y22_c00237{bottom:240.426503pt;}
.y21_c00237{bottom:255.306852pt;}
.y20_c00237{bottom:270.187200pt;}
.y1f_c00237{bottom:303.146468pt;}
.y1e_c00237{bottom:329.947012pt;}
.y1d_c00237{bottom:356.826912pt;}
.y1c_c00237{bottom:384.027348pt;}
.y1b_c00237{bottom:411.867300pt;}
.y1a_c00237{bottom:438.747200pt;}
.y19_c00237{bottom:460.747200pt;}
.y18_c00237{bottom:504.426447pt;}
.y17_c00237{bottom:538.986763pt;}
.y16_c00237{bottom:565.866663pt;}
.y15_c00237{bottom:592.667207pt;}
.y14_c00237{bottom:619.547107pt;}
.y13_c00237{bottom:646.347651pt;}
.y12_c00237{bottom:673.227551pt;}
.y11_c00237{bottom:700.427987pt;}
.y10_c00237{bottom:728.347295pt;}
.yf_c00237{bottom:762.907611pt;}
.ye_c00237{bottom:798.347067pt;}
.yc_c00237{bottom:817.867067pt;}
.yb_c00237{bottom:836.427067pt;}
.ya_c00237{bottom:854.987067pt;}
.y9_c00237{bottom:873.467067pt;}
.y8_c00237{bottom:893.707067pt;}
.yd_c00237{bottom:902.507243pt;}
.y7_c00237{bottom:912.267067pt;}
.y6_c00237{bottom:930.827067pt;}
.y5_c00237{bottom:949.307067pt;}
.y4_c00237{bottom:967.947067pt;}
.y3_c00237{bottom:986.428087pt;}
.h6_c00237{height:46.590412pt;}
.h5_c00237{height:46.920301pt;}
.h1_c00237{height:55.797187pt;}
.h4_c00237{height:57.590234pt;}
.h3_c00237{height:60.968367pt;}
.h2_c00237{height:66.410080pt;}
.h0_c00237{height:1122.666667pt;}
.w0_c00237{width:793.333333pt;}
.x0_c00237{left:0.000000pt;}
.x2_c00237{left:73.520052pt;}
.x8_c00237{left:164.240364pt;}
.x9_c00237{left:175.760843pt;}
.x4_c00237{left:193.200000pt;}
.x3_c00237{left:197.520804pt;}
.x11_c00237{left:227.601051pt;}
.xb_c00237{left:242.400846pt;}
.xa_c00237{left:253.280793pt;}
.xc_c00237{left:255.840323pt;}
.x7_c00237{left:294.400000pt;}
.x12_c00237{left:347.041410pt;}
.xe_c00237{left:349.521685pt;}
.xd_c00237{left:363.521140pt;}
.xf_c00237{left:366.081968pt;}
.x1_c00237{left:383.760000pt;}
.x5_c00237{left:397.680184pt;}
.x10_c00237{left:448.162297pt;}
.x6_c00237{left:467.040440pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_76498b48795e1d140cd4586f.woff2')format("woff");}.ff1_c00238{font-family:ff1_c00238;line-height:1.106934;font-style:normal;font-weight:normal;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_9e10627d13fc990d9a6efc87.woff2')format("woff");}.ff2_c00238{font-family:ff2_c00238;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00238;src:url('chunks/assets/font_54c6ccdd5ee32dbf83985a0b.woff2')format("woff");}.ff3_c00238{font-family:ff3_c00238;line-height:0.892090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00238;src:url('chunks/assets/font_587da32f32e091c8eebe00b9.woff2')format("woff");}.ff4_c00238{font-family:ff4_c00238;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00238;src:url('chunks/assets/font_b1c866a83426cb3b06eb146c.woff2')format("woff");}.ff5_c00238{font-family:ff5_c00238;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00238;src:url('chunks/assets/font_2cb7989453f88aa7e1ba3d81.woff2')format("woff");}.ff6_c00238{font-family:ff6_c00238;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00238{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00238{vertical-align:-14.760000px;}
.v0_c00238{vertical-align:0.000000px;}
.v1_c00238{vertical-align:32.396725px;}
.ls30_c00238{letter-spacing:-0.707443px;}
.ls2a_c00238{letter-spacing:-0.434124px;}
.ls2e_c00238{letter-spacing:-0.403418px;}
.ls26_c00238{letter-spacing:-0.210479px;}
.ls16_c00238{letter-spacing:-0.198786px;}
.ls1b_c00238{letter-spacing:-0.175399px;}
.ls35_c00238{letter-spacing:-0.157859px;}
.ls1c_c00238{letter-spacing:-0.152013px;}
.ls1f_c00238{letter-spacing:-0.146166px;}
.lsa_c00238{letter-spacing:-0.140319px;}
.ls23_c00238{letter-spacing:-0.134473px;}
.ls20_c00238{letter-spacing:-0.128626px;}
.lsc_c00238{letter-spacing:-0.122779px;}
.ls13_c00238{letter-spacing:-0.116933px;}
.ls17_c00238{letter-spacing:-0.111086px;}
.lsb_c00238{letter-spacing:-0.105240px;}
.ls9_c00238{letter-spacing:-0.099393px;}
.ls11_c00238{letter-spacing:-0.093546px;}
.lsf_c00238{letter-spacing:-0.087700px;}
.ls10_c00238{letter-spacing:-0.081853px;}
.ls36_c00238{letter-spacing:-0.079400px;}
.ls1d_c00238{letter-spacing:-0.076006px;}
.ls2f_c00238{letter-spacing:-0.075619px;}
.ls15_c00238{letter-spacing:-0.070160px;}
.ls7_c00238{letter-spacing:-0.063018px;}
.ls14_c00238{letter-spacing:-0.058466px;}
.ls32_c00238{letter-spacing:-0.046773px;}
.ls34_c00238{letter-spacing:-0.035080px;}
.ls28_c00238{letter-spacing:-0.035010px;}
.ls22_c00238{letter-spacing:-0.029233px;}
.ls31_c00238{letter-spacing:-0.026467px;}
.ls1e_c00238{letter-spacing:-0.023387px;}
.ls2c_c00238{letter-spacing:-0.021006px;}
.lse_c00238{letter-spacing:-0.017540px;}
.ls2b_c00238{letter-spacing:-0.014004px;}
.ls33_c00238{letter-spacing:-0.011693px;}
.lsd_c00238{letter-spacing:-0.005847px;}
.ls8_c00238{letter-spacing:0.000000px;}
.ls0_c00238{letter-spacing:0.023281px;}
.ls3_c00238{letter-spacing:0.087700px;}
.ls1a_c00238{letter-spacing:0.105240px;}
.ls4_c00238{letter-spacing:0.111086px;}
.ls2_c00238{letter-spacing:0.116933px;}
.ls27_c00238{letter-spacing:0.128626px;}
.ls18_c00238{letter-spacing:0.140319px;}
.ls21_c00238{letter-spacing:0.146166px;}
.ls19_c00238{letter-spacing:0.157859px;}
.ls12_c00238{letter-spacing:0.187092px;}
.ls2d_c00238{letter-spacing:0.192939px;}
.ls1_c00238{letter-spacing:0.198786px;}
.ls24_c00238{letter-spacing:0.245559px;}
.ls6_c00238{letter-spacing:0.273078px;}
.ls25_c00238{letter-spacing:0.274792px;}
.ls5_c00238{letter-spacing:0.301086px;}
.ls29_c00238{letter-spacing:0.343098px;}
.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;}
}
.ws4_c00238{word-spacing:-58.466400px;}
.ws5_c00238{word-spacing:-19.444554px;}
.ws2_c00238{word-spacing:-16.499218px;}
.ws3_c00238{word-spacing:-16.148420px;}
.ws0_c00238{word-spacing:-16.136726px;}
.ws1_c00238{word-spacing:-12.967628px;}
.ws6_c00238{word-spacing:-10.397640px;}
.ws7_c00238{word-spacing:-10.393859px;}
.ws15_c00238{word-spacing:-0.602204px;}
.ws18_c00238{word-spacing:-0.520351px;}
.ws32_c00238{word-spacing:-0.508658px;}
.ws1b_c00238{word-spacing:-0.491118px;}
.wsd_c00238{word-spacing:-0.397572px;}
.ws9_c00238{word-spacing:-0.304025px;}
.ws16_c00238{word-spacing:-0.280639px;}
.ws46_c00238{word-spacing:-0.268945px;}
.wsa_c00238{word-spacing:-0.263099px;}
.ws3a_c00238{word-spacing:-0.169553px;}
.ws8_c00238{word-spacing:0.000000px;}
.ws17_c00238{word-spacing:0.017540px;}
.ws19_c00238{word-spacing:0.023387px;}
.ws4a_c00238{word-spacing:0.035080px;}
.ws33_c00238{word-spacing:0.040926px;}
.wsf_c00238{word-spacing:0.046773px;}
.ws31_c00238{word-spacing:0.052620px;}
.ws34_c00238{word-spacing:0.076006px;}
.ws44_c00238{word-spacing:0.087700px;}
.ws2f_c00238{word-spacing:0.093546px;}
.ws45_c00238{word-spacing:0.122779px;}
.ws26_c00238{word-spacing:0.128626px;}
.ws1a_c00238{word-spacing:0.152013px;}
.ws4e_c00238{word-spacing:0.163706px;}
.ws12_c00238{word-spacing:0.491118px;}
.ws47_c00238{word-spacing:0.719137px;}
.ws2e_c00238{word-spacing:1.783225px;}
.ws49_c00238{word-spacing:2.186643px;}
.ws48_c00238{word-spacing:2.221723px;}
.ws2c_c00238{word-spacing:3.051946px;}
.ws1d_c00238{word-spacing:3.396898px;}
.ws2b_c00238{word-spacing:4.010795px;}
.ws35_c00238{word-spacing:4.712392px;}
.ws1f_c00238{word-spacing:4.718238px;}
.ws11_c00238{word-spacing:5.449068px;}
.ws25_c00238{word-spacing:8.132676px;}
.ws39_c00238{word-spacing:8.319769px;}
.ws24_c00238{word-spacing:9.407244px;}
.ws1c_c00238{word-spacing:9.535870px;}
.ws10_c00238{word-spacing:10.839671px;}
.ws41_c00238{word-spacing:10.985837px;}
.ws29_c00238{word-spacing:12.324717px;}
.ws21_c00238{word-spacing:12.640436px;}
.ws4c_c00238{word-spacing:13.020467px;}
.ws4d_c00238{word-spacing:13.131553px;}
.ws43_c00238{word-spacing:13.727911px;}
.wsc_c00238{word-spacing:16.277046px;}
.ws4b_c00238{word-spacing:17.329441px;}
.ws1e_c00238{word-spacing:17.346981px;}
.ws23_c00238{word-spacing:18.042731px;}
.ws3f_c00238{word-spacing:18.481229px;}
.ws3b_c00238{word-spacing:22.380938px;}
.ws42_c00238{word-spacing:23.474260px;}
.wse_c00238{word-spacing:25.894769px;}
.ws2d_c00238{word-spacing:32.478085px;}
.ws13_c00238{word-spacing:33.553867px;}
.ws20_c00238{word-spacing:34.378243px;}
.ws38_c00238{word-spacing:34.997987px;}
.wsb_c00238{word-spacing:37.500349px;}
.ws36_c00238{word-spacing:45.416700px;}
.ws2a_c00238{word-spacing:50.526663px;}
.ws3d_c00238{word-spacing:52.578018px;}
.ws22_c00238{word-spacing:56.232984px;}
.ws40_c00238{word-spacing:60.904449px;}
.ws37_c00238{word-spacing:78.871174px;}
.ws3c_c00238{word-spacing:96.457867px;}
.ws3e_c00238{word-spacing:99.722484px;}
.ws28_c00238{word-spacing:113.097404px;}
.ws14_c00238{word-spacing:163.536367px;}
.ws27_c00238{word-spacing:176.510062px;}
.ws30_c00238{word-spacing:277.376295px;}
._6_c00238{margin-left:-277.925879px;}
._3_c00238{margin-left:-163.384355px;}
._5_c00238{margin-left:-37.704981px;}
._9_c00238{margin-left:-2.709774px;}
._1_c00238{margin-left:-1.116708px;}
._0_c00238{width:1.128402px;}
._a_c00238{width:2.305000px;}
._8_c00238{width:5.930694px;}
._2_c00238{width:45.796731px;}
._7_c00238{width:53.019144px;}
._4_c00238{width:64.593679px;}
.fc0_c00238{color:rgb(0,0,0);}
.fs3_c00238{font-size:37.809600px;}
.fs2_c00238{font-size:46.562400px;}
.fs1_c00238{font-size:58.466400px;}
.fs0_c00238{font-size:70.020000px;}
.y0_c00238{bottom:0.000000px;}
.y2_c00238{bottom:109.740968px;}
.y1_c00238{bottom:129.810450px;}
.y5c_c00238{bottom:153.120600px;}
.y5b_c00238{bottom:167.248647px;}
.y5a_c00238{bottom:185.248990px;}
.y59_c00238{bottom:203.069548px;}
.y58_c00238{bottom:221.069891px;}
.y57_c00238{bottom:242.580786px;}
.y56_c00238{bottom:260.400450px;}
.y55_c00238{bottom:275.160450px;}
.y54_c00238{bottom:303.960397px;}
.y53_c00238{bottom:320.789950px;}
.y52_c00238{bottom:337.619503px;}
.y51_c00238{bottom:354.359895px;}
.y50_c00238{bottom:371.100287px;}
.y4f_c00238{bottom:387.929841px;}
.y4e_c00238{bottom:404.670233px;}
.y4d_c00238{bottom:422.038866px;}
.y4c_c00238{bottom:442.199374px;}
.y4b_c00238{bottom:462.359883px;}
.y4a_c00238{bottom:483.604083px;}
.y42_c00238{bottom:503.042699px;}
.y49_c00238{bottom:503.044161px;}
.y41_c00238{bottom:519.872252px;}
.y48_c00238{bottom:519.873714px;}
.y40_c00238{bottom:536.612644px;}
.y47_c00238{bottom:536.614106px;}
.y3f_c00238{bottom:553.353036px;}
.y46_c00238{bottom:553.354498px;}
.y3b_c00238{bottom:570.181128px;}
.y3e_c00238{bottom:570.182589px;}
.y45_c00238{bottom:570.184051px;}
.y3a_c00238{bottom:587.010681px;}
.y3d_c00238{bottom:587.012143px;}
.y44_c00238{bottom:587.013604px;}
.y39_c00238{bottom:603.660450px;}
.y3c_c00238{bottom:603.661912px;}
.y43_c00238{bottom:603.663373px;}
.y38_c00238{bottom:621.215622px;}
.y31_c00238{bottom:638.043714px;}
.y37_c00238{bottom:638.045175px;}
.y2b_c00238{bottom:654.692021px;}
.y30_c00238{bottom:654.693483px;}
.y36_c00238{bottom:654.694945px;}
.y2a_c00238{bottom:671.521574px;}
.y2f_c00238{bottom:671.523036px;}
.y35_c00238{bottom:671.524498px;}
.y29_c00238{bottom:688.351128px;}
.y2e_c00238{bottom:688.352589px;}
.y34_c00238{bottom:688.354051px;}
.y28_c00238{bottom:705.000897px;}
.y2d_c00238{bottom:705.002358px;}
.y33_c00238{bottom:705.003820px;}
.y27_c00238{bottom:721.830450px;}
.y2c_c00238{bottom:721.831912px;}
.y32_c00238{bottom:721.833373px;}
.y26_c00238{bottom:739.384270px;}
.y25_c00238{bottom:756.124662px;}
.y24_c00238{bottom:772.865054px;}
.y23_c00238{bottom:789.694607px;}
.y15_c00238{bottom:806.521237px;}
.y22_c00238{bottom:806.524161px;}
.y14_c00238{bottom:823.171006px;}
.y1b_c00238{bottom:823.172468px;}
.y21_c00238{bottom:823.173930px;}
.y13_c00238{bottom:840.000560px;}
.y1a_c00238{bottom:840.002021px;}
.y20_c00238{bottom:840.003483px;}
.y12_c00238{bottom:856.830113px;}
.y19_c00238{bottom:856.831574px;}
.y1f_c00238{bottom:856.833036px;}
.y11_c00238{bottom:873.570505px;}
.y18_c00238{bottom:873.571966px;}
.y1e_c00238{bottom:873.573428px;}
.y10_c00238{bottom:890.310897px;}
.y17_c00238{bottom:890.312358px;}
.y1d_c00238{bottom:890.313820px;}
.yf_c00238{bottom:907.140450px;}
.y16_c00238{bottom:907.141912px;}
.y1c_c00238{bottom:907.143373px;}
.ye_c00238{bottom:925.231269px;}
.yd_c00238{bottom:944.671347px;}
.yc_c00238{bottom:961.500900px;}
.yb_c00238{bottom:978.330453px;}
.ya_c00238{bottom:994.980222px;}
.y9_c00238{bottom:1011.809776px;}
.y8_c00238{bottom:1028.639329px;}
.y7_c00238{bottom:1045.379721px;}
.y6_c00238{bottom:1062.120113px;}
.y5_c00238{bottom:1078.949666px;}
.y4_c00238{bottom:1095.690058px;}
.y3_c00238{bottom:1112.430450px;}
.h8_c00238{height:39.337207px;}
.ha_c00238{height:39.337949px;}
.h7_c00238{height:39.338549px;}
.h3_c00238{height:52.271474px;}
.h2_c00238{height:52.414214px;}
.h9_c00238{height:54.098549px;}
.h5_c00238{height:62.586358px;}
.h1_c00238{height:62.771836px;}
.h4_c00238{height:74.025511px;}
.h6_c00238{height:74.148800px;}
.h0_c00238{height:1263.000000px;}
.w0_c00238{width:892.500000px;}
.x0_c00238{left:0.000000px;}
.x2_c00238{left:82.710059px;}
.x5_c00238{left:256.051183px;}
.x3_c00238{left:390.420000px;}
.x1_c00238{left:431.730000px;}
.x4_c00238{left:504.180998px;}
@media print{
.v2_c00238{vertical-align:-13.120000pt;}
.v0_c00238{vertical-align:0.000000pt;}
.v1_c00238{vertical-align:28.797089pt;}
.ls30_c00238{letter-spacing:-0.628839pt;}
.ls2a_c00238{letter-spacing:-0.385888pt;}
.ls2e_c00238{letter-spacing:-0.358594pt;}
.ls26_c00238{letter-spacing:-0.187092pt;}
.ls16_c00238{letter-spacing:-0.176698pt;}
.ls1b_c00238{letter-spacing:-0.155910pt;}
.ls35_c00238{letter-spacing:-0.140319pt;}
.ls1c_c00238{letter-spacing:-0.135122pt;}
.ls1f_c00238{letter-spacing:-0.129925pt;}
.lsa_c00238{letter-spacing:-0.124728pt;}
.ls23_c00238{letter-spacing:-0.119531pt;}
.ls20_c00238{letter-spacing:-0.114334pt;}
.lsc_c00238{letter-spacing:-0.109137pt;}
.ls13_c00238{letter-spacing:-0.103940pt;}
.ls17_c00238{letter-spacing:-0.098743pt;}
.lsb_c00238{letter-spacing:-0.093546pt;}
.ls9_c00238{letter-spacing:-0.088349pt;}
.ls11_c00238{letter-spacing:-0.083152pt;}
.lsf_c00238{letter-spacing:-0.077955pt;}
.ls10_c00238{letter-spacing:-0.072758pt;}
.ls36_c00238{letter-spacing:-0.070578pt;}
.ls1d_c00238{letter-spacing:-0.067561pt;}
.ls2f_c00238{letter-spacing:-0.067217pt;}
.ls15_c00238{letter-spacing:-0.062364pt;}
.ls7_c00238{letter-spacing:-0.056016pt;}
.ls14_c00238{letter-spacing:-0.051970pt;}
.ls32_c00238{letter-spacing:-0.041576pt;}
.ls34_c00238{letter-spacing:-0.031182pt;}
.ls28_c00238{letter-spacing:-0.031120pt;}
.ls22_c00238{letter-spacing:-0.025985pt;}
.ls31_c00238{letter-spacing:-0.023526pt;}
.ls1e_c00238{letter-spacing:-0.020788pt;}
.ls2c_c00238{letter-spacing:-0.018672pt;}
.lse_c00238{letter-spacing:-0.015591pt;}
.ls2b_c00238{letter-spacing:-0.012448pt;}
.ls33_c00238{letter-spacing:-0.010394pt;}
.lsd_c00238{letter-spacing:-0.005197pt;}
.ls8_c00238{letter-spacing:0.000000pt;}
.ls0_c00238{letter-spacing:0.020694pt;}
.ls3_c00238{letter-spacing:0.077955pt;}
.ls1a_c00238{letter-spacing:0.093546pt;}
.ls4_c00238{letter-spacing:0.098743pt;}
.ls2_c00238{letter-spacing:0.103940pt;}
.ls27_c00238{letter-spacing:0.114334pt;}
.ls18_c00238{letter-spacing:0.124728pt;}
.ls21_c00238{letter-spacing:0.129925pt;}
.ls19_c00238{letter-spacing:0.140319pt;}
.ls12_c00238{letter-spacing:0.166304pt;}
.ls2d_c00238{letter-spacing:0.171501pt;}
.ls1_c00238{letter-spacing:0.176698pt;}
.ls24_c00238{letter-spacing:0.218275pt;}
.ls6_c00238{letter-spacing:0.242736pt;}
.ls25_c00238{letter-spacing:0.244260pt;}
.ls5_c00238{letter-spacing:0.267632pt;}
.ls29_c00238{letter-spacing:0.304976pt;}
.ws4_c00238{word-spacing:-51.970133pt;}
.ws5_c00238{word-spacing:-17.284048pt;}
.ws2_c00238{word-spacing:-14.665972pt;}
.ws3_c00238{word-spacing:-14.354151pt;}
.ws0_c00238{word-spacing:-14.343757pt;}
.ws1_c00238{word-spacing:-11.526781pt;}
.ws6_c00238{word-spacing:-9.242347pt;}
.ws7_c00238{word-spacing:-9.238986pt;}
.ws15_c00238{word-spacing:-0.535292pt;}
.ws18_c00238{word-spacing:-0.462534pt;}
.ws32_c00238{word-spacing:-0.452140pt;}
.ws1b_c00238{word-spacing:-0.436549pt;}
.wsd_c00238{word-spacing:-0.353397pt;}
.ws9_c00238{word-spacing:-0.270245pt;}
.ws16_c00238{word-spacing:-0.249457pt;}
.ws46_c00238{word-spacing:-0.239063pt;}
.wsa_c00238{word-spacing:-0.233866pt;}
.ws3a_c00238{word-spacing:-0.150713pt;}
.ws8_c00238{word-spacing:0.000000pt;}
.ws17_c00238{word-spacing:0.015591pt;}
.ws19_c00238{word-spacing:0.020788pt;}
.ws4a_c00238{word-spacing:0.031182pt;}
.ws33_c00238{word-spacing:0.036379pt;}
.wsf_c00238{word-spacing:0.041576pt;}
.ws31_c00238{word-spacing:0.046773pt;}
.ws34_c00238{word-spacing:0.067561pt;}
.ws44_c00238{word-spacing:0.077955pt;}
.ws2f_c00238{word-spacing:0.083152pt;}
.ws45_c00238{word-spacing:0.109137pt;}
.ws26_c00238{word-spacing:0.114334pt;}
.ws1a_c00238{word-spacing:0.135122pt;}
.ws4e_c00238{word-spacing:0.145516pt;}
.ws12_c00238{word-spacing:0.436549pt;}
.ws47_c00238{word-spacing:0.639233pt;}
.ws2e_c00238{word-spacing:1.585089pt;}
.ws49_c00238{word-spacing:1.943683pt;}
.ws48_c00238{word-spacing:1.974865pt;}
.ws2c_c00238{word-spacing:2.712841pt;}
.ws1d_c00238{word-spacing:3.019465pt;}
.ws2b_c00238{word-spacing:3.565151pt;}
.ws35_c00238{word-spacing:4.188793pt;}
.ws1f_c00238{word-spacing:4.193990pt;}
.ws11_c00238{word-spacing:4.843616pt;}
.ws25_c00238{word-spacing:7.229046pt;}
.ws39_c00238{word-spacing:7.395350pt;}
.ws24_c00238{word-spacing:8.361994pt;}
.ws1c_c00238{word-spacing:8.476329pt;}
.ws10_c00238{word-spacing:9.635263pt;}
.ws41_c00238{word-spacing:9.765188pt;}
.ws29_c00238{word-spacing:10.955304pt;}
.ws21_c00238{word-spacing:11.235943pt;}
.ws4c_c00238{word-spacing:11.573749pt;}
.ws4d_c00238{word-spacing:11.672492pt;}
.ws43_c00238{word-spacing:12.202587pt;}
.wsc_c00238{word-spacing:14.468485pt;}
.ws4b_c00238{word-spacing:15.403948pt;}
.ws1e_c00238{word-spacing:15.419539pt;}
.ws23_c00238{word-spacing:16.037983pt;}
.ws3f_c00238{word-spacing:16.427759pt;}
.ws3b_c00238{word-spacing:19.894167pt;}
.ws42_c00238{word-spacing:20.866009pt;}
.wse_c00238{word-spacing:23.017572pt;}
.ws2d_c00238{word-spacing:28.869409pt;}
.ws13_c00238{word-spacing:29.825660pt;}
.ws20_c00238{word-spacing:30.558438pt;}
.ws38_c00238{word-spacing:31.109322pt;}
.wsb_c00238{word-spacing:33.333644pt;}
.ws36_c00238{word-spacing:40.370400pt;}
.ws2a_c00238{word-spacing:44.912589pt;}
.ws3d_c00238{word-spacing:46.736016pt;}
.ws22_c00238{word-spacing:49.984874pt;}
.ws40_c00238{word-spacing:54.137288pt;}
.ws37_c00238{word-spacing:70.107710pt;}
.ws3c_c00238{word-spacing:85.740326pt;}
.ws3e_c00238{word-spacing:88.642208pt;}
.ws28_c00238{word-spacing:100.531026pt;}
.ws14_c00238{word-spacing:145.365660pt;}
.ws27_c00238{word-spacing:156.897833pt;}
.ws30_c00238{word-spacing:246.556707pt;}
._6_c00238{margin-left:-247.045226pt;}
._3_c00238{margin-left:-145.230538pt;}
._5_c00238{margin-left:-33.515539pt;}
._9_c00238{margin-left:-2.408688pt;}
._1_c00238{margin-left:-0.992630pt;}
._0_c00238{width:1.003024pt;}
._a_c00238{width:2.048889pt;}
._8_c00238{width:5.271728pt;}
._2_c00238{width:40.708205pt;}
._7_c00238{width:47.128128pt;}
._4_c00238{width:57.416603pt;}
.fs3_c00238{font-size:33.608533pt;}
.fs2_c00238{font-size:41.388800pt;}
.fs1_c00238{font-size:51.970133pt;}
.fs0_c00238{font-size:62.240000pt;}
.y0_c00238{bottom:0.000000pt;}
.y2_c00238{bottom:97.547527pt;}
.y1_c00238{bottom:115.387067pt;}
.y5c_c00238{bottom:136.107200pt;}
.y5b_c00238{bottom:148.665464pt;}
.y5a_c00238{bottom:164.665769pt;}
.y59_c00238{bottom:180.506265pt;}
.y58_c00238{bottom:196.506570pt;}
.y57_c00238{bottom:215.627365pt;}
.y56_c00238{bottom:231.467067pt;}
.y55_c00238{bottom:244.587067pt;}
.y54_c00238{bottom:270.187019pt;}
.y53_c00238{bottom:285.146622pt;}
.y52_c00238{bottom:300.106225pt;}
.y51_c00238{bottom:314.986574pt;}
.y50_c00238{bottom:329.866922pt;}
.y4f_c00238{bottom:344.826525pt;}
.y4e_c00238{bottom:359.706873pt;}
.y4d_c00238{bottom:375.145659pt;}
.y4c_c00238{bottom:393.066111pt;}
.y4b_c00238{bottom:410.986563pt;}
.y4a_c00238{bottom:429.870296pt;}
.y42_c00238{bottom:447.149066pt;}
.y49_c00238{bottom:447.150365pt;}
.y41_c00238{bottom:462.108669pt;}
.y48_c00238{bottom:462.109968pt;}
.y40_c00238{bottom:476.989017pt;}
.y47_c00238{bottom:476.990316pt;}
.y3f_c00238{bottom:491.869365pt;}
.y46_c00238{bottom:491.870665pt;}
.y3b_c00238{bottom:506.827669pt;}
.y3e_c00238{bottom:506.828968pt;}
.y45_c00238{bottom:506.830268pt;}
.y3a_c00238{bottom:521.787272pt;}
.y3d_c00238{bottom:521.788571pt;}
.y44_c00238{bottom:521.789870pt;}
.y39_c00238{bottom:536.587067pt;}
.y3c_c00238{bottom:536.588366pt;}
.y43_c00238{bottom:536.589665pt;}
.y38_c00238{bottom:552.191664pt;}
.y31_c00238{bottom:567.149968pt;}
.y37_c00238{bottom:567.151267pt;}
.y2b_c00238{bottom:581.948463pt;}
.y30_c00238{bottom:581.949763pt;}
.y36_c00238{bottom:581.951062pt;}
.y2a_c00238{bottom:596.908066pt;}
.y2f_c00238{bottom:596.909365pt;}
.y35_c00238{bottom:596.910665pt;}
.y29_c00238{bottom:611.867669pt;}
.y2e_c00238{bottom:611.868968pt;}
.y34_c00238{bottom:611.870268pt;}
.y28_c00238{bottom:626.667464pt;}
.y2d_c00238{bottom:626.668763pt;}
.y33_c00238{bottom:626.670062pt;}
.y27_c00238{bottom:641.627067pt;}
.y2c_c00238{bottom:641.628366pt;}
.y32_c00238{bottom:641.629665pt;}
.y26_c00238{bottom:657.230462pt;}
.y25_c00238{bottom:672.110811pt;}
.y24_c00238{bottom:686.991159pt;}
.y23_c00238{bottom:701.950762pt;}
.y15_c00238{bottom:716.907766pt;}
.y22_c00238{bottom:716.910365pt;}
.y14_c00238{bottom:731.707561pt;}
.y1b_c00238{bottom:731.708860pt;}
.y21_c00238{bottom:731.710160pt;}
.y13_c00238{bottom:746.667164pt;}
.y1a_c00238{bottom:746.668463pt;}
.y20_c00238{bottom:746.669763pt;}
.y12_c00238{bottom:761.626767pt;}
.y19_c00238{bottom:761.628066pt;}
.y1f_c00238{bottom:761.629365pt;}
.y11_c00238{bottom:776.507115pt;}
.y18_c00238{bottom:776.508415pt;}
.y1e_c00238{bottom:776.509714pt;}
.y10_c00238{bottom:791.387464pt;}
.y17_c00238{bottom:791.388763pt;}
.y1d_c00238{bottom:791.390062pt;}
.yf_c00238{bottom:806.347067pt;}
.y16_c00238{bottom:806.348366pt;}
.y1c_c00238{bottom:806.349665pt;}
.ye_c00238{bottom:822.427795pt;}
.yd_c00238{bottom:839.707864pt;}
.yc_c00238{bottom:854.667467pt;}
.yb_c00238{bottom:869.627070pt;}
.ya_c00238{bottom:884.426864pt;}
.y9_c00238{bottom:899.386467pt;}
.y8_c00238{bottom:914.346070pt;}
.y7_c00238{bottom:929.226419pt;}
.y6_c00238{bottom:944.106767pt;}
.y5_c00238{bottom:959.066370pt;}
.y4_c00238{bottom:973.946718pt;}
.y3_c00238{bottom:988.827067pt;}
.h8_c00238{height:34.966406pt;}
.ha_c00238{height:34.967066pt;}
.h7_c00238{height:34.967599pt;}
.h3_c00238{height:46.463532pt;}
.h2_c00238{height:46.590412pt;}
.h9_c00238{height:48.087599pt;}
.h5_c00238{height:55.632319pt;}
.h1_c00238{height:55.797187pt;}
.h4_c00238{height:65.800454pt;}
.h6_c00238{height:65.910045pt;}
.h0_c00238{height:1122.666667pt;}
.w0_c00238{width:793.333333pt;}
.x0_c00238{left:0.000000pt;}
.x2_c00238{left:73.520052pt;}
.x5_c00238{left:227.601051pt;}
.x3_c00238{left:347.040000pt;}
.x1_c00238{left:383.760000pt;}
.x4_c00238{left:448.160887pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_be2dc30a27f17c303ec57df6.woff2')format("woff");}.ff1_c00239{font-family:ff1_c00239;line-height:1.106934;font-style:normal;font-weight:normal;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_79d9aa2b14e4ec61dea4f4ba.woff2')format("woff");}.ff2_c00239{font-family:ff2_c00239;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00239;src:url('chunks/assets/font_166db812cfd93ea70f6ef7cb.woff2')format("woff");}.ff3_c00239{font-family:ff3_c00239;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00239;src:url('chunks/assets/font_8021d5a53eeae8263a84523a.woff2')format("woff");}.ff4_c00239{font-family:ff4_c00239;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00239;src:url('chunks/assets/font_b344725f458daf7999ca1911.woff2')format("woff");}.ff5_c00239{font-family:ff5_c00239;line-height:0.892090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00239;src:url('chunks/assets/font_66ce5bf64613ac931f92c7f2.woff2')format("woff");}.ff6_c00239{font-family:ff6_c00239;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00239;src:url('chunks/assets/font_53233be69d009f7c7da3516b.woff2')format("woff");}.ff7_c00239{font-family:ff7_c00239;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00239;src:url('chunks/assets/font_204715d256493cab5d6d0924.woff2')format("woff");}.ff8_c00239{font-family:ff8_c00239;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00239{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00239{vertical-align:-14.760000px;}
.v0_c00239{vertical-align:0.000000px;}
.v1_c00239{vertical-align:32.043546px;}
.ls25_c00239{letter-spacing:-0.461885px;}
.ls11_c00239{letter-spacing:-0.450191px;}
.ls2b_c00239{letter-spacing:-0.403418px;}
.ls2a_c00239{letter-spacing:-0.397572px;}
.ls2f_c00239{letter-spacing:-0.274792px;}
.ls20_c00239{letter-spacing:-0.187092px;}
.ls1c_c00239{letter-spacing:-0.175399px;}
.lse_c00239{letter-spacing:-0.152013px;}
.ls2c_c00239{letter-spacing:-0.146166px;}
.ls21_c00239{letter-spacing:-0.140319px;}
.ls17_c00239{letter-spacing:-0.134473px;}
.ls16_c00239{letter-spacing:-0.122779px;}
.lsf_c00239{letter-spacing:-0.116933px;}
.ls18_c00239{letter-spacing:-0.111086px;}
.ls12_c00239{letter-spacing:-0.105240px;}
.lsd_c00239{letter-spacing:-0.099393px;}
.ls10_c00239{letter-spacing:-0.093546px;}
.ls19_c00239{letter-spacing:-0.087700px;}
.ls1d_c00239{letter-spacing:-0.081853px;}
.ls15_c00239{letter-spacing:-0.076006px;}
.ls2e_c00239{letter-spacing:-0.075619px;}
.ls13_c00239{letter-spacing:-0.070160px;}
.lsb_c00239{letter-spacing:-0.063018px;}
.ls1a_c00239{letter-spacing:-0.052620px;}
.ls24_c00239{letter-spacing:-0.046773px;}
.ls1b_c00239{letter-spacing:-0.035080px;}
.ls29_c00239{letter-spacing:-0.023387px;}
.ls2d_c00239{letter-spacing:-0.017540px;}
.lsc_c00239{letter-spacing:0.000000px;}
.ls6_c00239{letter-spacing:0.011693px;}
.ls1_c00239{letter-spacing:0.017540px;}
.ls2_c00239{letter-spacing:0.023387px;}
.lsa_c00239{letter-spacing:0.029233px;}
.ls4_c00239{letter-spacing:0.035080px;}
.ls0_c00239{letter-spacing:0.060531px;}
.ls14_c00239{letter-spacing:0.070160px;}
.ls7_c00239{letter-spacing:0.105240px;}
.ls8_c00239{letter-spacing:0.116933px;}
.ls3_c00239{letter-spacing:0.122779px;}
.ls1e_c00239{letter-spacing:0.128626px;}
.ls22_c00239{letter-spacing:0.169553px;}
.ls27_c00239{letter-spacing:0.175399px;}
.ls5_c00239{letter-spacing:0.198786px;}
.ls1f_c00239{letter-spacing:0.204632px;}
.ls23_c00239{letter-spacing:0.216326px;}
.ls26_c00239{letter-spacing:0.245559px;}
.ls9_c00239{letter-spacing:0.274792px;}
.ls28_c00239{letter-spacing:0.403418px;}
.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;}
}
.ws3_c00239{word-spacing:-17.452220px;}
.ws1_c00239{word-spacing:-16.499218px;}
.ws2_c00239{word-spacing:-16.148420px;}
.ws0_c00239{word-spacing:-14.075814px;}
.ws4_c00239{word-spacing:-10.397640px;}
.ws3c_c00239{word-spacing:-0.678210px;}
.ws2c_c00239{word-spacing:-0.602204px;}
.ws39_c00239{word-spacing:-0.508658px;}
.wsd_c00239{word-spacing:-0.473578px;}
.ws2a_c00239{word-spacing:-0.438498px;}
.ws3b_c00239{word-spacing:-0.315719px;}
.ws16_c00239{word-spacing:-0.286485px;}
.ws29_c00239{word-spacing:-0.216326px;}
.ws36_c00239{word-spacing:-0.169553px;}
.ws12_c00239{word-spacing:-0.070160px;}
.ws15_c00239{word-spacing:-0.052620px;}
.ws5_c00239{word-spacing:0.000000px;}
.ws38_c00239{word-spacing:0.005847px;}
.ws20_c00239{word-spacing:0.011693px;}
.ws27_c00239{word-spacing:0.023387px;}
.wsc_c00239{word-spacing:0.029233px;}
.wse_c00239{word-spacing:0.035080px;}
.ws2b_c00239{word-spacing:0.040926px;}
.ws1e_c00239{word-spacing:0.046773px;}
.ws11_c00239{word-spacing:0.052620px;}
.wsf_c00239{word-spacing:0.058466px;}
.ws17_c00239{word-spacing:0.064313px;}
.ws21_c00239{word-spacing:0.070160px;}
.ws13_c00239{word-spacing:0.081853px;}
.ws14_c00239{word-spacing:0.093546px;}
.ws10_c00239{word-spacing:0.298179px;}
.ws3a_c00239{word-spacing:0.420958px;}
.ws54_c00239{word-spacing:0.648977px;}
.ws22_c00239{word-spacing:0.777603px;}
.wsa_c00239{word-spacing:0.836070px;}
.ws41_c00239{word-spacing:1.064088px;}
.ws42_c00239{word-spacing:1.490893px;}
.ws25_c00239{word-spacing:1.835845px;}
.ws40_c00239{word-spacing:1.841692px;}
.ws4c_c00239{word-spacing:2.590062px;}
.ws4a_c00239{word-spacing:2.923320px;}
.ws31_c00239{word-spacing:4.729932px;}
.ws3e_c00239{word-spacing:5.121657px;}
.ws2e_c00239{word-spacing:6.589163px;}
.ws49_c00239{word-spacing:7.635712px;}
.ws44_c00239{word-spacing:7.688332px;}
.ws2f_c00239{word-spacing:8.425008px;}
.ws33_c00239{word-spacing:8.711494px;}
.ws4e_c00239{word-spacing:10.746124px;}
.ws4d_c00239{word-spacing:12.225324px;}
.ws43_c00239{word-spacing:12.956154px;}
.ws1d_c00239{word-spacing:13.751297px;}
.ws26_c00239{word-spacing:14.224875px;}
.ws4f_c00239{word-spacing:14.388581px;}
.ws45_c00239{word-spacing:14.961552px;}
.ws50_c00239{word-spacing:15.592989px;}
.ws52_c00239{word-spacing:16.651231px;}
.ws53_c00239{word-spacing:16.692157px;}
.ws6_c00239{word-spacing:17.335288px;}
.ws47_c00239{word-spacing:17.756246px;}
.ws7_c00239{word-spacing:18.107044px;}
.ws46_c00239{word-spacing:18.837874px;}
.ws35_c00239{word-spacing:20.568480px;}
.ws9_c00239{word-spacing:21.287616px;}
.ws4b_c00239{word-spacing:22.380938px;}
.ws3f_c00239{word-spacing:23.433333px;}
.ws32_c00239{word-spacing:28.899942px;}
.ws24_c00239{word-spacing:29.291666px;}
.ws23_c00239{word-spacing:29.712624px;}
.ws8_c00239{word-spacing:31.390610px;}
.ws1b_c00239{word-spacing:31.753102px;}
.ws1a_c00239{word-spacing:32.478085px;}
.ws34_c00239{word-spacing:33.536327px;}
.ws18_c00239{word-spacing:36.424567px;}
.ws3d_c00239{word-spacing:43.966733px;}
.ws1c_c00239{word-spacing:47.012832px;}
.ws51_c00239{word-spacing:52.420974px;}
.ws19_c00239{word-spacing:56.940427px;}
.ws2d_c00239{word-spacing:69.919968px;}
.ws30_c00239{word-spacing:91.879948px;}
.ws1f_c00239{word-spacing:140.442139px;}
.wsb_c00239{word-spacing:166.383681px;}
.ws37_c00239{word-spacing:199.025472px;}
.ws28_c00239{word-spacing:217.910119px;}
.ws48_c00239{word-spacing:270.103075px;}
._d_c00239{margin-left:-270.763745px;}
._7_c00239{margin-left:-218.950821px;}
._a_c00239{margin-left:-199.317804px;}
._2_c00239{margin-left:-165.933490px;}
._5_c00239{margin-left:-140.424600px;}
._b_c00239{margin-left:-44.282451px;}
._c_c00239{margin-left:-30.431761px;}
._f_c00239{margin-left:-2.709774px;}
._3_c00239{margin-left:-1.169328px;}
._0_c00239{width:1.192715px;}
._e_c00239{width:5.930694px;}
._8_c00239{width:14.043629px;}
._6_c00239{width:21.802121px;}
._9_c00239{width:41.949642px;}
._1_c00239{width:74.380954px;}
._4_c00239{width:100.310802px;}
.fc0_c00239{color:rgb(0,0,0);}
.fs3_c00239{font-size:37.809600px;}
.fs2_c00239{font-size:46.562400px;}
.fs1_c00239{font-size:58.466400px;}
.fs0_c00239{font-size:70.020000px;}
.y0_c00239{bottom:0.000000px;}
.y2_c00239{bottom:109.740968px;}
.y1_c00239{bottom:129.810450px;}
.y61_c00239{bottom:149.429891px;}
.y60_c00239{bottom:170.940450px;}
.y5f_c00239{bottom:185.700600px;}
.y5e_c00239{bottom:223.137957px;}
.y5d_c00239{bottom:240.778732px;}
.y5c_c00239{bottom:258.599291px;}
.y5b_c00239{bottom:276.329226px;}
.y5a_c00239{bottom:294.059162px;}
.y59_c00239{bottom:295.050168px;}
.y58_c00239{bottom:311.879721px;}
.y57_c00239{bottom:328.620113px;}
.y56_c00239{bottom:345.360505px;}
.y55_c00239{bottom:362.190058px;}
.y54_c00239{bottom:378.930450px;}
.y53_c00239{bottom:397.381854px;}
.y52_c00239{bottom:414.391192px;}
.y51_c00239{bottom:431.220745px;}
.y50_c00239{bottom:447.240539px;}
.y4f_c00239{bottom:465.603283px;}
.y4e_c00239{bottom:485.313769px;}
.y4d_c00239{bottom:502.233945px;}
.y40_c00239{bottom:518.701006px;}
.y46_c00239{bottom:518.702468px;}
.y4c_c00239{bottom:519.243282px;}
.y3f_c00239{bottom:535.530560px;}
.y45_c00239{bottom:535.532021px;}
.y4b_c00239{bottom:536.163458px;}
.y3e_c00239{bottom:552.270952px;}
.y44_c00239{bottom:552.272413px;}
.y4a_c00239{bottom:553.083634px;}
.y3d_c00239{bottom:569.011344px;}
.y43_c00239{bottom:569.012805px;}
.y49_c00239{bottom:569.014267px;}
.y3c_c00239{bottom:585.840897px;}
.y42_c00239{bottom:585.842358px;}
.y48_c00239{bottom:585.843820px;}
.y3b_c00239{bottom:602.670450px;}
.y41_c00239{bottom:602.671912px;}
.y47_c00239{bottom:602.673373px;}
.y3a_c00239{bottom:620.134662px;}
.y39_c00239{bottom:636.875054px;}
.y38_c00239{bottom:653.704607px;}
.y37_c00239{bottom:670.444999px;}
.y30_c00239{bottom:687.182468px;}
.y36_c00239{bottom:687.185391px;}
.y2f_c00239{bottom:704.012021px;}
.y35_c00239{bottom:704.014945px;}
.y2e_c00239{bottom:720.841574px;}
.y34_c00239{bottom:720.844498px;}
.y2d_c00239{bottom:737.491344px;}
.y33_c00239{bottom:737.494267px;}
.y2c_c00239{bottom:754.320897px;}
.y32_c00239{bottom:754.323820px;}
.y2b_c00239{bottom:771.150450px;}
.y31_c00239{bottom:771.153373px;}
.y24_c00239{bottom:788.611237px;}
.y23_c00239{bottom:805.351629px;}
.y2a_c00239{bottom:805.353091px;}
.y22_c00239{bottom:822.181182px;}
.y29_c00239{bottom:822.182644px;}
.y21_c00239{bottom:838.830952px;}
.y28_c00239{bottom:838.832413px;}
.y20_c00239{bottom:855.660505px;}
.y27_c00239{bottom:855.661966px;}
.y1f_c00239{bottom:872.490058px;}
.y26_c00239{bottom:872.491520px;}
.y1e_c00239{bottom:889.230450px;}
.y25_c00239{bottom:889.231912px;}
.y1d_c00239{bottom:906.698992px;}
.ye_c00239{bottom:923.522699px;}
.y15_c00239{bottom:923.525622px;}
.y1c_c00239{bottom:923.528546px;}
.yd_c00239{bottom:940.352252px;}
.y14_c00239{bottom:940.355175px;}
.y1b_c00239{bottom:940.358099px;}
.yc_c00239{bottom:957.002021px;}
.y13_c00239{bottom:957.004945px;}
.y1a_c00239{bottom:957.007868px;}
.yb_c00239{bottom:973.831574px;}
.y12_c00239{bottom:973.834498px;}
.y19_c00239{bottom:973.837421px;}
.ya_c00239{bottom:990.661128px;}
.y11_c00239{bottom:990.664051px;}
.y18_c00239{bottom:990.666974px;}
.y9_c00239{bottom:1007.310897px;}
.y10_c00239{bottom:1007.313820px;}
.y17_c00239{bottom:1007.316743px;}
.y8_c00239{bottom:1024.140450px;}
.yf_c00239{bottom:1024.143373px;}
.y16_c00239{bottom:1024.146297px;}
.y7_c00239{bottom:1042.590298px;}
.y6_c00239{bottom:1060.139564px;}
.y5_c00239{bottom:1078.949666px;}
.y4_c00239{bottom:1095.690058px;}
.y3_c00239{bottom:1112.430450px;}
.h9_c00239{height:39.338549px;}
.h2_c00239{height:52.271474px;}
.h5_c00239{height:52.414214px;}
.ha_c00239{height:54.098549px;}
.h8_c00239{height:60.094246px;}
.h4_c00239{height:62.383649px;}
.h1_c00239{height:62.771836px;}
.h6_c00239{height:63.377578px;}
.h7_c00239{height:82.502908px;}
.h3_c00239{height:82.517188px;}
.h0_c00239{height:1263.000000px;}
.w0_c00239{width:892.500000px;}
.x0_c00239{left:0.000000px;}
.x2_c00239{left:82.710059px;}
.x4_c00239{left:256.051183px;}
.x5_c00239{left:390.421587px;}
.x1_c00239{left:431.730000px;}
.x3_c00239{left:504.180000px;}
@media print{
.v2_c00239{vertical-align:-13.120000pt;}
.v0_c00239{vertical-align:0.000000pt;}
.v1_c00239{vertical-align:28.483152pt;}
.ls25_c00239{letter-spacing:-0.410564pt;}
.ls11_c00239{letter-spacing:-0.400170pt;}
.ls2b_c00239{letter-spacing:-0.358594pt;}
.ls2a_c00239{letter-spacing:-0.353397pt;}
.ls2f_c00239{letter-spacing:-0.244260pt;}
.ls20_c00239{letter-spacing:-0.166304pt;}
.ls1c_c00239{letter-spacing:-0.155910pt;}
.lse_c00239{letter-spacing:-0.135122pt;}
.ls2c_c00239{letter-spacing:-0.129925pt;}
.ls21_c00239{letter-spacing:-0.124728pt;}
.ls17_c00239{letter-spacing:-0.119531pt;}
.ls16_c00239{letter-spacing:-0.109137pt;}
.lsf_c00239{letter-spacing:-0.103940pt;}
.ls18_c00239{letter-spacing:-0.098743pt;}
.ls12_c00239{letter-spacing:-0.093546pt;}
.lsd_c00239{letter-spacing:-0.088349pt;}
.ls10_c00239{letter-spacing:-0.083152pt;}
.ls19_c00239{letter-spacing:-0.077955pt;}
.ls1d_c00239{letter-spacing:-0.072758pt;}
.ls15_c00239{letter-spacing:-0.067561pt;}
.ls2e_c00239{letter-spacing:-0.067217pt;}
.ls13_c00239{letter-spacing:-0.062364pt;}
.lsb_c00239{letter-spacing:-0.056016pt;}
.ls1a_c00239{letter-spacing:-0.046773pt;}
.ls24_c00239{letter-spacing:-0.041576pt;}
.ls1b_c00239{letter-spacing:-0.031182pt;}
.ls29_c00239{letter-spacing:-0.020788pt;}
.ls2d_c00239{letter-spacing:-0.015591pt;}
.lsc_c00239{letter-spacing:0.000000pt;}
.ls6_c00239{letter-spacing:0.010394pt;}
.ls1_c00239{letter-spacing:0.015591pt;}
.ls2_c00239{letter-spacing:0.020788pt;}
.lsa_c00239{letter-spacing:0.025985pt;}
.ls4_c00239{letter-spacing:0.031182pt;}
.ls0_c00239{letter-spacing:0.053805pt;}
.ls14_c00239{letter-spacing:0.062364pt;}
.ls7_c00239{letter-spacing:0.093546pt;}
.ls8_c00239{letter-spacing:0.103940pt;}
.ls3_c00239{letter-spacing:0.109137pt;}
.ls1e_c00239{letter-spacing:0.114334pt;}
.ls22_c00239{letter-spacing:0.150713pt;}
.ls27_c00239{letter-spacing:0.155910pt;}
.ls5_c00239{letter-spacing:0.176698pt;}
.ls1f_c00239{letter-spacing:0.181895pt;}
.ls23_c00239{letter-spacing:0.192289pt;}
.ls26_c00239{letter-spacing:0.218275pt;}
.ls9_c00239{letter-spacing:0.244260pt;}
.ls28_c00239{letter-spacing:0.358594pt;}
.ws3_c00239{word-spacing:-15.513085pt;}
.ws1_c00239{word-spacing:-14.665972pt;}
.ws2_c00239{word-spacing:-14.354151pt;}
.ws0_c00239{word-spacing:-12.511834pt;}
.ws4_c00239{word-spacing:-9.242347pt;}
.ws3c_c00239{word-spacing:-0.602854pt;}
.ws2c_c00239{word-spacing:-0.535292pt;}
.ws39_c00239{word-spacing:-0.452140pt;}
.wsd_c00239{word-spacing:-0.420958pt;}
.ws2a_c00239{word-spacing:-0.389776pt;}
.ws3b_c00239{word-spacing:-0.280639pt;}
.ws16_c00239{word-spacing:-0.254654pt;}
.ws29_c00239{word-spacing:-0.192289pt;}
.ws36_c00239{word-spacing:-0.150713pt;}
.ws12_c00239{word-spacing:-0.062364pt;}
.ws15_c00239{word-spacing:-0.046773pt;}
.ws5_c00239{word-spacing:0.000000pt;}
.ws38_c00239{word-spacing:0.005197pt;}
.ws20_c00239{word-spacing:0.010394pt;}
.ws27_c00239{word-spacing:0.020788pt;}
.wsc_c00239{word-spacing:0.025985pt;}
.wse_c00239{word-spacing:0.031182pt;}
.ws2b_c00239{word-spacing:0.036379pt;}
.ws1e_c00239{word-spacing:0.041576pt;}
.ws11_c00239{word-spacing:0.046773pt;}
.wsf_c00239{word-spacing:0.051970pt;}
.ws17_c00239{word-spacing:0.057167pt;}
.ws21_c00239{word-spacing:0.062364pt;}
.ws13_c00239{word-spacing:0.072758pt;}
.ws14_c00239{word-spacing:0.083152pt;}
.ws10_c00239{word-spacing:0.265048pt;}
.ws3a_c00239{word-spacing:0.374185pt;}
.ws54_c00239{word-spacing:0.576868pt;}
.ws22_c00239{word-spacing:0.691203pt;}
.wsa_c00239{word-spacing:0.743173pt;}
.ws41_c00239{word-spacing:0.945856pt;}
.ws42_c00239{word-spacing:1.325238pt;}
.ws25_c00239{word-spacing:1.631862pt;}
.ws40_c00239{word-spacing:1.637059pt;}
.ws4c_c00239{word-spacing:2.302277pt;}
.ws4a_c00239{word-spacing:2.598507pt;}
.ws31_c00239{word-spacing:4.204384pt;}
.ws3e_c00239{word-spacing:4.552584pt;}
.ws2e_c00239{word-spacing:5.857034pt;}
.ws49_c00239{word-spacing:6.787299pt;}
.ws44_c00239{word-spacing:6.834073pt;}
.ws2f_c00239{word-spacing:7.488896pt;}
.ws33_c00239{word-spacing:7.743550pt;}
.ws4e_c00239{word-spacing:9.552111pt;}
.ws4d_c00239{word-spacing:10.866955pt;}
.ws43_c00239{word-spacing:11.516582pt;}
.ws1d_c00239{word-spacing:12.223375pt;}
.ws26_c00239{word-spacing:12.644333pt;}
.ws4f_c00239{word-spacing:12.789850pt;}
.ws45_c00239{word-spacing:13.299157pt;}
.ws50_c00239{word-spacing:13.860435pt;}
.ws52_c00239{word-spacing:14.801094pt;}
.ws53_c00239{word-spacing:14.837473pt;}
.ws6_c00239{word-spacing:15.409145pt;}
.ws47_c00239{word-spacing:15.783329pt;}
.ws7_c00239{word-spacing:16.095150pt;}
.ws46_c00239{word-spacing:16.744777pt;}
.ws35_c00239{word-spacing:18.283093pt;}
.ws9_c00239{word-spacing:18.922326pt;}
.ws4b_c00239{word-spacing:19.894167pt;}
.ws3f_c00239{word-spacing:20.829629pt;}
.ws32_c00239{word-spacing:25.688837pt;}
.ws24_c00239{word-spacing:26.037037pt;}
.ws23_c00239{word-spacing:26.411222pt;}
.ws8_c00239{word-spacing:27.902765pt;}
.ws1b_c00239{word-spacing:28.224979pt;}
.ws1a_c00239{word-spacing:28.869409pt;}
.ws34_c00239{word-spacing:29.810068pt;}
.ws18_c00239{word-spacing:32.377393pt;}
.ws3d_c00239{word-spacing:39.081540pt;}
.ws1c_c00239{word-spacing:41.789184pt;}
.ws51_c00239{word-spacing:46.596422pt;}
.ws19_c00239{word-spacing:50.613713pt;}
.ws2d_c00239{word-spacing:62.151082pt;}
.ws30_c00239{word-spacing:81.671065pt;}
.ws1f_c00239{word-spacing:124.837457pt;}
.wsb_c00239{word-spacing:147.896605pt;}
.ws37_c00239{word-spacing:176.911531pt;}
.ws28_c00239{word-spacing:193.697884pt;}
.ws48_c00239{word-spacing:240.091622pt;}
._d_c00239{margin-left:-240.678884pt;}
._7_c00239{margin-left:-194.622952pt;}
._a_c00239{margin-left:-177.171382pt;}
._2_c00239{margin-left:-147.496435pt;}
._5_c00239{margin-left:-124.821866pt;}
._b_c00239{margin-left:-39.362179pt;}
._c_c00239{margin-left:-27.050454pt;}
._f_c00239{margin-left:-2.408688pt;}
._3_c00239{margin-left:-1.039403pt;}
._0_c00239{width:1.060191pt;}
._e_c00239{width:5.271728pt;}
._8_c00239{width:12.483226pt;}
._6_c00239{width:19.379663pt;}
._9_c00239{width:37.288571pt;}
._1_c00239{width:66.116404pt;}
._4_c00239{width:89.165158pt;}
.fs3_c00239{font-size:33.608533pt;}
.fs2_c00239{font-size:41.388800pt;}
.fs1_c00239{font-size:51.970133pt;}
.fs0_c00239{font-size:62.240000pt;}
.y0_c00239{bottom:0.000000pt;}
.y2_c00239{bottom:97.547527pt;}
.y1_c00239{bottom:115.387067pt;}
.y61_c00239{bottom:132.826570pt;}
.y60_c00239{bottom:151.947067pt;}
.y5f_c00239{bottom:165.067200pt;}
.y5e_c00239{bottom:198.344851pt;}
.y5d_c00239{bottom:214.025539pt;}
.y5c_c00239{bottom:229.866036pt;}
.y5b_c00239{bottom:245.625979pt;}
.y5a_c00239{bottom:261.385922pt;}
.y59_c00239{bottom:262.266816pt;}
.y58_c00239{bottom:277.226419pt;}
.y57_c00239{bottom:292.106767pt;}
.y56_c00239{bottom:306.987115pt;}
.y55_c00239{bottom:321.946718pt;}
.y54_c00239{bottom:336.827067pt;}
.y53_c00239{bottom:353.228315pt;}
.y52_c00239{bottom:368.347726pt;}
.y51_c00239{bottom:383.307329pt;}
.y50_c00239{bottom:397.547146pt;}
.y4f_c00239{bottom:413.869585pt;}
.y4e_c00239{bottom:431.390017pt;}
.y4d_c00239{bottom:446.430173pt;}
.y40_c00239{bottom:461.067561pt;}
.y46_c00239{bottom:461.068860pt;}
.y4c_c00239{bottom:461.549584pt;}
.y3f_c00239{bottom:476.027164pt;}
.y45_c00239{bottom:476.028463pt;}
.y4b_c00239{bottom:476.589741pt;}
.y3e_c00239{bottom:490.907512pt;}
.y44_c00239{bottom:490.908812pt;}
.y4a_c00239{bottom:491.629897pt;}
.y3d_c00239{bottom:505.787861pt;}
.y43_c00239{bottom:505.789160pt;}
.y49_c00239{bottom:505.790459pt;}
.y3c_c00239{bottom:520.747464pt;}
.y42_c00239{bottom:520.748763pt;}
.y48_c00239{bottom:520.750062pt;}
.y3b_c00239{bottom:535.707067pt;}
.y41_c00239{bottom:535.708366pt;}
.y47_c00239{bottom:535.709665pt;}
.y3a_c00239{bottom:551.230811pt;}
.y39_c00239{bottom:566.111159pt;}
.y38_c00239{bottom:581.070762pt;}
.y37_c00239{bottom:595.951111pt;}
.y30_c00239{bottom:610.828860pt;}
.y36_c00239{bottom:610.831459pt;}
.y2f_c00239{bottom:625.788463pt;}
.y35_c00239{bottom:625.791062pt;}
.y2e_c00239{bottom:640.748066pt;}
.y34_c00239{bottom:640.750665pt;}
.y2d_c00239{bottom:655.547861pt;}
.y33_c00239{bottom:655.550459pt;}
.y2c_c00239{bottom:670.507464pt;}
.y32_c00239{bottom:670.510062pt;}
.y2b_c00239{bottom:685.467067pt;}
.y31_c00239{bottom:685.469665pt;}
.y24_c00239{bottom:700.987766pt;}
.y23_c00239{bottom:715.868115pt;}
.y2a_c00239{bottom:715.869414pt;}
.y22_c00239{bottom:730.827718pt;}
.y29_c00239{bottom:730.829017pt;}
.y21_c00239{bottom:745.627512pt;}
.y28_c00239{bottom:745.628812pt;}
.y20_c00239{bottom:760.587115pt;}
.y27_c00239{bottom:760.588415pt;}
.y1f_c00239{bottom:775.546718pt;}
.y26_c00239{bottom:775.548017pt;}
.y1e_c00239{bottom:790.427067pt;}
.y25_c00239{bottom:790.428366pt;}
.y1d_c00239{bottom:805.954660pt;}
.ye_c00239{bottom:820.909066pt;}
.y15_c00239{bottom:820.911664pt;}
.y1c_c00239{bottom:820.914263pt;}
.yd_c00239{bottom:835.868669pt;}
.y14_c00239{bottom:835.871267pt;}
.y1b_c00239{bottom:835.873866pt;}
.yc_c00239{bottom:850.668463pt;}
.y13_c00239{bottom:850.671062pt;}
.y1a_c00239{bottom:850.673660pt;}
.yb_c00239{bottom:865.628066pt;}
.y12_c00239{bottom:865.630665pt;}
.y19_c00239{bottom:865.633263pt;}
.ya_c00239{bottom:880.587669pt;}
.y11_c00239{bottom:880.590268pt;}
.y18_c00239{bottom:880.592866pt;}
.y9_c00239{bottom:895.387464pt;}
.y10_c00239{bottom:895.390062pt;}
.y17_c00239{bottom:895.392661pt;}
.y8_c00239{bottom:910.347067pt;}
.yf_c00239{bottom:910.349665pt;}
.y16_c00239{bottom:910.352264pt;}
.y7_c00239{bottom:926.746932pt;}
.y6_c00239{bottom:942.346279pt;}
.y5_c00239{bottom:959.066370pt;}
.y4_c00239{bottom:973.946718pt;}
.y3_c00239{bottom:988.827067pt;}
.h9_c00239{height:34.967599pt;}
.h2_c00239{height:46.463532pt;}
.h5_c00239{height:46.590412pt;}
.ha_c00239{height:48.087599pt;}
.h8_c00239{height:53.417108pt;}
.h4_c00239{height:55.452132pt;}
.h1_c00239{height:55.797187pt;}
.h6_c00239{height:56.335625pt;}
.h7_c00239{height:73.335918pt;}
.h3_c00239{height:73.348611pt;}
.h0_c00239{height:1122.666667pt;}
.w0_c00239{width:793.333333pt;}
.x0_c00239{left:0.000000pt;}
.x2_c00239{left:73.520052pt;}
.x4_c00239{left:227.601051pt;}
.x5_c00239{left:347.041410pt;}
.x1_c00239{left:383.760000pt;}
.x3_c00239{left:448.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5e4eed2414429a05735b8351.woff2')format("woff");}.ff1_c00240{font-family:ff1_c00240;line-height:1.106934;font-style:normal;font-weight:normal;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_4e7b20dbefd9c6e939198e29.woff2')format("woff");}.ff2_c00240{font-family:ff2_c00240;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00240;src:url('chunks/assets/font_9c850bc12e6767ce54e66b5f.woff2')format("woff");}.ff3_c00240{font-family:ff3_c00240;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00240;src:url('chunks/assets/font_eeba1deb32be8a21a2bbeb92.woff2')format("woff");}.ff4_c00240{font-family:ff4_c00240;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00240;src:url('chunks/assets/font_2cb7989453f88aa7e1ba3d81.woff2')format("woff");}.ff5_c00240{font-family:ff5_c00240;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00240{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v4_c00240{vertical-align:-14.760600px;}
.v2_c00240{vertical-align:-5.760000px;}
.v0_c00240{vertical-align:0.000000px;}
.v3_c00240{vertical-align:5.400600px;}
.v1_c00240{vertical-align:32.047684px;}
.ls1d_c00240{letter-spacing:-0.371106px;}
.ls9_c00240{letter-spacing:-0.181246px;}
.ls10_c00240{letter-spacing:-0.134473px;}
.ls11_c00240{letter-spacing:-0.122779px;}
.lsb_c00240{letter-spacing:-0.116933px;}
.ls14_c00240{letter-spacing:-0.111086px;}
.ls1a_c00240{letter-spacing:-0.106360px;}
.lsa_c00240{letter-spacing:-0.105240px;}
.lse_c00240{letter-spacing:-0.099393px;}
.ls13_c00240{letter-spacing:-0.093546px;}
.lsd_c00240{letter-spacing:-0.087700px;}
.lsc_c00240{letter-spacing:-0.083812px;}
.ls17_c00240{letter-spacing:-0.076006px;}
.ls20_c00240{letter-spacing:-0.075619px;}
.ls6_c00240{letter-spacing:-0.063018px;}
.ls1f_c00240{letter-spacing:-0.049014px;}
.ls8_c00240{letter-spacing:-0.040926px;}
.ls1e_c00240{letter-spacing:-0.035010px;}
.ls16_c00240{letter-spacing:-0.031509px;}
.ls19_c00240{letter-spacing:-0.028008px;}
.ls1c_c00240{letter-spacing:-0.021006px;}
.ls1b_c00240{letter-spacing:-0.014004px;}
.ls18_c00240{letter-spacing:-0.007002px;}
.ls7_c00240{letter-spacing:0.000000px;}
.ls5_c00240{letter-spacing:0.005847px;}
.ls3_c00240{letter-spacing:0.007002px;}
.ls21_c00240{letter-spacing:0.011693px;}
.ls2_c00240{letter-spacing:0.023387px;}
.ls4_c00240{letter-spacing:0.035010px;}
.ls0_c00240{letter-spacing:0.064313px;}
.lsf_c00240{letter-spacing:0.163706px;}
.ls1_c00240{letter-spacing:0.181246px;}
.ls15_c00240{letter-spacing:0.245559px;}
.ls12_c00240{letter-spacing:0.346599px;}
.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;}
}
.ws1_c00240{word-spacing:-19.458558px;}
.ws0_c00240{word-spacing:-16.306152px;}
.ws2_c00240{word-spacing:-10.397640px;}
.ws12_c00240{word-spacing:-0.584664px;}
.ws13_c00240{word-spacing:-0.304025px;}
.ws14_c00240{word-spacing:-0.286485px;}
.ws28_c00240{word-spacing:-0.268945px;}
.ws15_c00240{word-spacing:-0.064313px;}
.ws22_c00240{word-spacing:-0.021006px;}
.ws20_c00240{word-spacing:-0.007002px;}
.ws3_c00240{word-spacing:0.000000px;}
.ws17_c00240{word-spacing:0.014004px;}
.ws25_c00240{word-spacing:0.035010px;}
.ws16_c00240{word-spacing:0.035080px;}
.ws9_c00240{word-spacing:0.046773px;}
.wse_c00240{word-spacing:0.052620px;}
.ws11_c00240{word-spacing:0.058466px;}
.wsf_c00240{word-spacing:0.064313px;}
.ws10_c00240{word-spacing:0.070160px;}
.wsd_c00240{word-spacing:0.081853px;}
.wsc_c00240{word-spacing:0.093546px;}
.ws27_c00240{word-spacing:0.122779px;}
.ws1c_c00240{word-spacing:0.350100px;}
.ws1d_c00240{word-spacing:0.357102px;}
.ws1b_c00240{word-spacing:0.364104px;}
.ws26_c00240{word-spacing:0.378108px;}
.ws8_c00240{word-spacing:0.444345px;}
.ws21_c00240{word-spacing:0.714204px;}
.ws19_c00240{word-spacing:1.057302px;}
.ws1a_c00240{word-spacing:1.078308px;}
.ws18_c00240{word-spacing:2.534724px;}
.ws7_c00240{word-spacing:17.352828px;}
.ws1e_c00240{word-spacing:17.589024px;}
.ws1f_c00240{word-spacing:17.645040px;}
.ws4_c00240{word-spacing:22.328318px;}
.ws6_c00240{word-spacing:26.543746px;}
.ws23_c00240{word-spacing:63.361098px;}
.ws24_c00240{word-spacing:63.382104px;}
.ws5_c00240{word-spacing:162.507359px;}
.wsa_c00240{word-spacing:186.174558px;}
.wsb_c00240{word-spacing:192.395382px;}
._4_c00240{margin-left:-192.617555px;}
._27_c00240{margin-left:-63.003996px;}
._3_c00240{margin-left:-30.870259px;}
._5_c00240{margin-left:-9.003826px;}
._6_c00240{margin-left:-5.507535px;}
._1_c00240{margin-left:-1.262874px;}
._0_c00240{width:1.157635px;}
._2a_c00240{width:5.424694px;}
._2_c00240{width:6.793796px;}
._d_c00240{width:52.221187px;}
._21_c00240{width:54.535860px;}
._19_c00240{width:62.980006px;}
._16_c00240{width:64.219494px;}
._1c_c00240{width:82.227145px;}
._13_c00240{width:89.219726px;}
._a_c00240{width:99.556586px;}
._e_c00240{width:106.239295px;}
._24_c00240{width:115.722546px;}
._1f_c00240{width:117.955962px;}
._1a_c00240{width:132.087291px;}
._18_c00240{width:146.160153px;}
._8_c00240{width:180.842422px;}
._10_c00240{width:189.688388px;}
._b_c00240{width:193.781036px;}
._7_c00240{width:196.236625px;}
._1d_c00240{width:199.253491px;}
._c_c00240{width:216.828491px;}
._11_c00240{width:219.687498px;}
._23_c00240{width:222.078774px;}
._17_c00240{width:225.709537px;}
._15_c00240{width:244.868976px;}
._20_c00240{width:252.364369px;}
._14_c00240{width:258.830753px;}
._1e_c00240{width:278.270831px;}
._9_c00240{width:281.597569px;}
._1b_c00240{width:291.425771px;}
._22_c00240{width:310.316265px;}
._12_c00240{width:320.372485px;}
._f_c00240{width:333.340333px;}
._28_c00240{width:605.112840px;}
._29_c00240{width:662.298174px;}
._25_c00240{width:752.753082px;}
._26_c00240{width:905.060498px;}
.fc1_c00240{color:rgb(128,0,0);}
.fc0_c00240{color:rgb(0,0,0);}
.fs5_c00240{font-size:37.809600px;}
.fs2_c00240{font-size:46.562400px;}
.fs3_c00240{font-size:52.515000px;}
.fs1_c00240{font-size:58.466400px;}
.fs0_c00240{font-size:70.020000px;}
.fs4_c00240{font-size:75.971400px;}
.y0_c00240{bottom:0.000000px;}
.y2_c00240{bottom:109.740968px;}
.y1_c00240{bottom:129.810450px;}
.y2f_c00240{bottom:153.120600px;}
.y2e_c00240{bottom:167.790600px;}
.y2c_c00240{bottom:205.050450px;}
.y2b_c00240{bottom:225.930450px;}
.y2a_c00240{bottom:246.720450px;}
.y29_c00240{bottom:267.600450px;}
.y28_c00240{bottom:288.478506px;}
.y2d_c00240{bottom:288.481030px;}
.y27_c00240{bottom:309.358470px;}
.y26_c00240{bottom:339.418056px;}
.y25_c00240{bottom:369.657943px;}
.y24_c00240{bottom:399.808555px;}
.y23_c00240{bottom:430.048443px;}
.y22_c00240{bottom:460.199055px;}
.y21_c00240{bottom:490.438942px;}
.y20_c00240{bottom:520.589554px;}
.y1f_c00240{bottom:550.829442px;}
.y1e_c00240{bottom:580.980054px;}
.y1d_c00240{bottom:611.219941px;}
.y1c_c00240{bottom:631.380450px;}
.y1b_c00240{bottom:656.130450px;}
.y1a_c00240{bottom:695.191336px;}
.y19_c00240{bottom:715.260819px;}
.y18_c00240{bottom:754.230450px;}
.y17_c00240{bottom:774.570450px;}
.y15_c00240{bottom:792.030450px;}
.y14_c00240{bottom:809.580450px;}
.y13_c00240{bottom:827.040600px;}
.y12_c00240{bottom:844.590450px;}
.y11_c00240{bottom:862.050450px;}
.y10_c00240{bottom:879.600450px;}
.yf_c00240{bottom:896.970450px;}
.ye_c00240{bottom:914.520450px;}
.yd_c00240{bottom:933.420450px;}
.yc_c00240{bottom:949.530450px;}
.yb_c00240{bottom:966.990450px;}
.ya_c00240{bottom:984.540600px;}
.y9_c00240{bottom:1002.000450px;}
.y16_c00240{bottom:1002.000832px;}
.y8_c00240{bottom:1019.550450px;}
.y7_c00240{bottom:1037.458529px;}
.y6_c00240{bottom:1058.158558px;}
.y5_c00240{bottom:1075.979117px;}
.y4_c00240{bottom:1093.619891px;}
.y3_c00240{bottom:1111.440450px;}
.h9_c00240{height:39.337949px;}
.h5_c00240{height:47.078877px;}
.h4_c00240{height:52.414214px;}
.h6_c00240{height:52.479477px;}
.h1_c00240{height:62.771836px;}
.h7_c00240{height:63.216299px;}
.h2_c00240{height:63.377578px;}
.h8_c00240{height:68.589413px;}
.h3_c00240{height:82.521325px;}
.h0_c00240{height:1263.000000px;}
.w0_c00240{width:892.500000px;}
.x0_c00240{left:0.000000px;}
.x2_c00240{left:82.710059px;}
.x6_c00240{left:173.430000px;}
.x4_c00240{left:200.160000px;}
.x8_c00240{left:227.880716px;}
.x7_c00240{left:339.300000px;}
.x9_c00240{left:403.469154px;}
.x1_c00240{left:431.730000px;}
.x3_c00240{left:504.180000px;}
.xa_c00240{left:539.008619px;}
.x5_c00240{left:566.192048px;}
@media print{
.v4_c00240{vertical-align:-13.120533pt;}
.v2_c00240{vertical-align:-5.120000pt;}
.v0_c00240{vertical-align:0.000000pt;}
.v3_c00240{vertical-align:4.800533pt;}
.v1_c00240{vertical-align:28.486830pt;}
.ls1d_c00240{letter-spacing:-0.329872pt;}
.ls9_c00240{letter-spacing:-0.161107pt;}
.ls10_c00240{letter-spacing:-0.119531pt;}
.ls11_c00240{letter-spacing:-0.109137pt;}
.lsb_c00240{letter-spacing:-0.103940pt;}
.ls14_c00240{letter-spacing:-0.098743pt;}
.ls1a_c00240{letter-spacing:-0.094542pt;}
.lsa_c00240{letter-spacing:-0.093546pt;}
.lse_c00240{letter-spacing:-0.088349pt;}
.ls13_c00240{letter-spacing:-0.083152pt;}
.lsd_c00240{letter-spacing:-0.077955pt;}
.lsc_c00240{letter-spacing:-0.074500pt;}
.ls17_c00240{letter-spacing:-0.067561pt;}
.ls20_c00240{letter-spacing:-0.067217pt;}
.ls6_c00240{letter-spacing:-0.056016pt;}
.ls1f_c00240{letter-spacing:-0.043568pt;}
.ls8_c00240{letter-spacing:-0.036379pt;}
.ls1e_c00240{letter-spacing:-0.031120pt;}
.ls16_c00240{letter-spacing:-0.028008pt;}
.ls19_c00240{letter-spacing:-0.024896pt;}
.ls1c_c00240{letter-spacing:-0.018672pt;}
.ls1b_c00240{letter-spacing:-0.012448pt;}
.ls18_c00240{letter-spacing:-0.006224pt;}
.ls7_c00240{letter-spacing:0.000000pt;}
.ls5_c00240{letter-spacing:0.005197pt;}
.ls3_c00240{letter-spacing:0.006224pt;}
.ls21_c00240{letter-spacing:0.010394pt;}
.ls2_c00240{letter-spacing:0.020788pt;}
.ls4_c00240{letter-spacing:0.031120pt;}
.ls0_c00240{letter-spacing:0.057167pt;}
.lsf_c00240{letter-spacing:0.145516pt;}
.ls1_c00240{letter-spacing:0.161107pt;}
.ls15_c00240{letter-spacing:0.218275pt;}
.ls12_c00240{letter-spacing:0.308088pt;}
.ws1_c00240{word-spacing:-17.296496pt;}
.ws0_c00240{word-spacing:-14.494358pt;}
.ws2_c00240{word-spacing:-9.242347pt;}
.ws12_c00240{word-spacing:-0.519701pt;}
.ws13_c00240{word-spacing:-0.270245pt;}
.ws14_c00240{word-spacing:-0.254654pt;}
.ws28_c00240{word-spacing:-0.239063pt;}
.ws15_c00240{word-spacing:-0.057167pt;}
.ws22_c00240{word-spacing:-0.018672pt;}
.ws20_c00240{word-spacing:-0.006224pt;}
.ws3_c00240{word-spacing:0.000000pt;}
.ws17_c00240{word-spacing:0.012448pt;}
.ws25_c00240{word-spacing:0.031120pt;}
.ws16_c00240{word-spacing:0.031182pt;}
.ws9_c00240{word-spacing:0.041576pt;}
.wse_c00240{word-spacing:0.046773pt;}
.ws11_c00240{word-spacing:0.051970pt;}
.wsf_c00240{word-spacing:0.057167pt;}
.ws10_c00240{word-spacing:0.062364pt;}
.wsd_c00240{word-spacing:0.072758pt;}
.wsc_c00240{word-spacing:0.083152pt;}
.ws27_c00240{word-spacing:0.109137pt;}
.ws1c_c00240{word-spacing:0.311200pt;}
.ws1d_c00240{word-spacing:0.317424pt;}
.ws1b_c00240{word-spacing:0.323648pt;}
.ws26_c00240{word-spacing:0.336096pt;}
.ws8_c00240{word-spacing:0.394973pt;}
.ws21_c00240{word-spacing:0.634848pt;}
.ws19_c00240{word-spacing:0.939824pt;}
.ws1a_c00240{word-spacing:0.958496pt;}
.ws18_c00240{word-spacing:2.253088pt;}
.ws7_c00240{word-spacing:15.424736pt;}
.ws1e_c00240{word-spacing:15.634688pt;}
.ws1f_c00240{word-spacing:15.684480pt;}
.ws4_c00240{word-spacing:19.847394pt;}
.ws6_c00240{word-spacing:23.594441pt;}
.ws23_c00240{word-spacing:56.320976pt;}
.ws24_c00240{word-spacing:56.339648pt;}
.ws5_c00240{word-spacing:144.450986pt;}
.wsa_c00240{word-spacing:165.488496pt;}
.wsb_c00240{word-spacing:171.018118pt;}
._4_c00240{margin-left:-171.215604pt;}
._27_c00240{margin-left:-56.003552pt;}
._3_c00240{margin-left:-27.440230pt;}
._5_c00240{margin-left:-8.003401pt;}
._6_c00240{margin-left:-4.895587pt;}
._1_c00240{margin-left:-1.122555pt;}
._0_c00240{width:1.029009pt;}
._2a_c00240{width:4.821951pt;}
._2_c00240{width:6.038929pt;}
._d_c00240{width:46.418833pt;}
._21_c00240{width:48.476320pt;}
._19_c00240{width:55.982228pt;}
._16_c00240{width:57.083994pt;}
._1c_c00240{width:73.090796pt;}
._13_c00240{width:79.306423pt;}
._a_c00240{width:88.494743pt;}
._e_c00240{width:94.434929pt;}
._24_c00240{width:102.864485pt;}
._1f_c00240{width:104.849744pt;}
._1a_c00240{width:117.410925pt;}
._18_c00240{width:129.920136pt;}
._8_c00240{width:160.748819pt;}
._10_c00240{width:168.611901pt;}
._b_c00240{width:172.249810pt;}
._7_c00240{width:174.432556pt;}
._1d_c00240{width:177.114214pt;}
._c_c00240{width:192.736436pt;}
._11_c00240{width:195.277776pt;}
._23_c00240{width:197.403354pt;}
._17_c00240{width:200.630700pt;}
._15_c00240{width:217.661312pt;}
._20_c00240{width:224.323884pt;}
._14_c00240{width:230.071780pt;}
._1e_c00240{width:247.351850pt;}
._9_c00240{width:250.308950pt;}
._1b_c00240{width:259.045130pt;}
._22_c00240{width:275.836680pt;}
._12_c00240{width:284.775543pt;}
._f_c00240{width:296.302518pt;}
._28_c00240{width:537.878080pt;}
._29_c00240{width:588.709488pt;}
._25_c00240{width:669.113850pt;}
._26_c00240{width:804.498220pt;}
.fs5_c00240{font-size:33.608533pt;}
.fs2_c00240{font-size:41.388800pt;}
.fs3_c00240{font-size:46.680000pt;}
.fs1_c00240{font-size:51.970133pt;}
.fs0_c00240{font-size:62.240000pt;}
.fs4_c00240{font-size:67.530133pt;}
.y0_c00240{bottom:0.000000pt;}
.y2_c00240{bottom:97.547527pt;}
.y1_c00240{bottom:115.387067pt;}
.y2f_c00240{bottom:136.107200pt;}
.y2e_c00240{bottom:149.147200pt;}
.y2c_c00240{bottom:182.267067pt;}
.y2b_c00240{bottom:200.827067pt;}
.y2a_c00240{bottom:219.307067pt;}
.y29_c00240{bottom:237.867067pt;}
.y28_c00240{bottom:256.425339pt;}
.y2d_c00240{bottom:256.427583pt;}
.y27_c00240{bottom:274.985307pt;}
.y26_c00240{bottom:301.704939pt;}
.y25_c00240{bottom:328.584839pt;}
.y24_c00240{bottom:355.385383pt;}
.y23_c00240{bottom:382.265283pt;}
.y22_c00240{bottom:409.065827pt;}
.y21_c00240{bottom:435.945727pt;}
.y20_c00240{bottom:462.746271pt;}
.y1f_c00240{bottom:489.626171pt;}
.y1e_c00240{bottom:516.426715pt;}
.y1d_c00240{bottom:543.306615pt;}
.y1c_c00240{bottom:561.227067pt;}
.y1b_c00240{bottom:583.227067pt;}
.y1a_c00240{bottom:617.947855pt;}
.y19_c00240{bottom:635.787395pt;}
.y18_c00240{bottom:670.427067pt;}
.y17_c00240{bottom:688.507067pt;}
.y15_c00240{bottom:704.027067pt;}
.y14_c00240{bottom:719.627067pt;}
.y13_c00240{bottom:735.147200pt;}
.y12_c00240{bottom:750.747067pt;}
.y11_c00240{bottom:766.267067pt;}
.y10_c00240{bottom:781.867067pt;}
.yf_c00240{bottom:797.307067pt;}
.ye_c00240{bottom:812.907067pt;}
.yd_c00240{bottom:829.707067pt;}
.yc_c00240{bottom:844.027067pt;}
.yb_c00240{bottom:859.547067pt;}
.ya_c00240{bottom:875.147200pt;}
.y9_c00240{bottom:890.667067pt;}
.y16_c00240{bottom:890.667407pt;}
.y8_c00240{bottom:906.267067pt;}
.y7_c00240{bottom:922.185359pt;}
.y6_c00240{bottom:940.585385pt;}
.y5_c00240{bottom:956.425882pt;}
.y4_c00240{bottom:972.106570pt;}
.y3_c00240{bottom:987.947067pt;}
.h9_c00240{height:34.967066pt;}
.h5_c00240{height:41.847891pt;}
.h4_c00240{height:46.590412pt;}
.h6_c00240{height:46.648424pt;}
.h1_c00240{height:55.797187pt;}
.h7_c00240{height:56.192266pt;}
.h2_c00240{height:56.335625pt;}
.h8_c00240{height:60.968367pt;}
.h3_c00240{height:73.352289pt;}
.h0_c00240{height:1122.666667pt;}
.w0_c00240{width:793.333333pt;}
.x0_c00240{left:0.000000pt;}
.x2_c00240{left:73.520052pt;}
.x6_c00240{left:154.160000pt;}
.x4_c00240{left:177.920000pt;}
.x8_c00240{left:202.560636pt;}
.x7_c00240{left:301.600000pt;}
.x9_c00240{left:358.639248pt;}
.x1_c00240{left:383.760000pt;}
.x3_c00240{left:448.160000pt;}
.xa_c00240{left:479.118772pt;}
.x5_c00240{left:503.281821pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_40df0a93e69f35a29b76a953.woff2')format("woff");}.ff1_c00241{font-family:ff1_c00241;line-height:1.106934;font-style:normal;font-weight:normal;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_4a9938f783d1d8557a629a93.woff2')format("woff");}.ff2_c00241{font-family:ff2_c00241;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00241;src:url('chunks/assets/font_4abfb9ac7e1654624a557927.woff2')format("woff");}.ff3_c00241{font-family:ff3_c00241;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00241;src:url('chunks/assets/font_dcf60725a23a2ee102fa915d.woff2')format("woff");}.ff4_c00241{font-family:ff4_c00241;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00241;src:url('chunks/assets/font_94ed18bef333526227065de3.woff2')format("woff");}.ff5_c00241{font-family:ff5_c00241;line-height:0.892090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00241;src:url('chunks/assets/font_343bf5aff906c3537a7f5a49.woff2')format("woff");}.ff6_c00241{font-family:ff6_c00241;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00241;src:url('chunks/assets/font_2cb7989453f88aa7e1ba3d81.woff2')format("woff");}.ff7_c00241{font-family:ff7_c00241;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00241{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v4_c00241{vertical-align:-14.400600px;}
.v0_c00241{vertical-align:0.000000px;}
.v1_c00241{vertical-align:6.479400px;}
.v3_c00241{vertical-align:32.389034px;}
.v2_c00241{vertical-align:54.002125px;}
.ls15_c00241{letter-spacing:-0.198786px;}
.ls1f_c00241{letter-spacing:-0.169553px;}
.ls23_c00241{letter-spacing:-0.157859px;}
.ls1b_c00241{letter-spacing:-0.140319px;}
.ls17_c00241{letter-spacing:-0.134473px;}
.ls1c_c00241{letter-spacing:-0.128626px;}
.ls27_c00241{letter-spacing:-0.122779px;}
.ls20_c00241{letter-spacing:-0.116933px;}
.ls1a_c00241{letter-spacing:-0.111086px;}
.ls12_c00241{letter-spacing:-0.105240px;}
.ls18_c00241{letter-spacing:-0.099393px;}
.ls19_c00241{letter-spacing:-0.093546px;}
.ls1d_c00241{letter-spacing:-0.087700px;}
.ls1e_c00241{letter-spacing:-0.081853px;}
.ls13_c00241{letter-spacing:-0.078773px;}
.ls22_c00241{letter-spacing:-0.076006px;}
.ls2e_c00241{letter-spacing:-0.075619px;}
.ls16_c00241{letter-spacing:-0.070160px;}
.ls9_c00241{letter-spacing:-0.063018px;}
.ls11_c00241{letter-spacing:-0.056016px;}
.lsc_c00241{letter-spacing:-0.049014px;}
.ls25_c00241{letter-spacing:-0.046773px;}
.lsb_c00241{letter-spacing:-0.035010px;}
.lse_c00241{letter-spacing:-0.028008px;}
.ls10_c00241{letter-spacing:-0.021006px;}
.lsd_c00241{letter-spacing:-0.014004px;}
.lsf_c00241{letter-spacing:-0.007002px;}
.lsa_c00241{letter-spacing:0.000000px;}
.ls8_c00241{letter-spacing:0.005847px;}
.ls4_c00241{letter-spacing:0.017540px;}
.ls6_c00241{letter-spacing:0.023281px;}
.ls26_c00241{letter-spacing:0.023387px;}
.ls5_c00241{letter-spacing:0.029233px;}
.ls21_c00241{letter-spacing:0.076006px;}
.ls2a_c00241{letter-spacing:0.105240px;}
.ls24_c00241{letter-spacing:0.111086px;}
.ls3_c00241{letter-spacing:0.116933px;}
.ls28_c00241{letter-spacing:0.122779px;}
.ls2d_c00241{letter-spacing:0.152013px;}
.ls1_c00241{letter-spacing:0.169553px;}
.ls29_c00241{letter-spacing:0.192939px;}
.ls2_c00241{letter-spacing:0.210479px;}
.ls14_c00241{letter-spacing:0.231066px;}
.ls0_c00241{letter-spacing:0.245559px;}
.ls2b_c00241{letter-spacing:0.268945px;}
.ls7_c00241{letter-spacing:0.315090px;}
.ls2c_c00241{letter-spacing:0.320342px;}
.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;}
}
.ws3_c00241{word-spacing:-52.515000px;}
.ws0_c00241{word-spacing:-19.458558px;}
.ws2_c00241{word-spacing:-14.919512px;}
.ws1_c00241{word-spacing:-12.967628px;}
.ws4_c00241{word-spacing:-10.397640px;}
.ws3d_c00241{word-spacing:-0.672364px;}
.ws1c_c00241{word-spacing:-0.648977px;}
.ws15_c00241{word-spacing:-0.631437px;}
.ws1f_c00241{word-spacing:-0.613897px;}
.ws1e_c00241{word-spacing:-0.572971px;}
.ws20_c00241{word-spacing:-0.520351px;}
.ws22_c00241{word-spacing:-0.479424px;}
.ws18_c00241{word-spacing:-0.292332px;}
.ws48_c00241{word-spacing:-0.268945px;}
.ws25_c00241{word-spacing:-0.245559px;}
.ws46_c00241{word-spacing:-0.192939px;}
.ws30_c00241{word-spacing:-0.152013px;}
.ws37_c00241{word-spacing:-0.146166px;}
.ws41_c00241{word-spacing:-0.046773px;}
.ws5_c00241{word-spacing:0.000000px;}
.ws49_c00241{word-spacing:0.005847px;}
.wsb_c00241{word-spacing:0.014004px;}
.ws14_c00241{word-spacing:0.029233px;}
.ws7_c00241{word-spacing:0.035010px;}
.ws3f_c00241{word-spacing:0.035080px;}
.ws1a_c00241{word-spacing:0.040926px;}
.ws24_c00241{word-spacing:0.046773px;}
.ws40_c00241{word-spacing:0.052620px;}
.ws1d_c00241{word-spacing:0.058466px;}
.ws42_c00241{word-spacing:0.064313px;}
.ws23_c00241{word-spacing:0.070160px;}
.ws19_c00241{word-spacing:0.099393px;}
.ws47_c00241{word-spacing:0.122779px;}
.ws1b_c00241{word-spacing:0.128626px;}
.ws21_c00241{word-spacing:0.152013px;}
.ws13_c00241{word-spacing:0.246821px;}
.ws8_c00241{word-spacing:0.357102px;}
.ws6_c00241{word-spacing:0.378108px;}
.ws9_c00241{word-spacing:0.392112px;}
.ws12_c00241{word-spacing:0.399114px;}
.ws2b_c00241{word-spacing:2.116484px;}
.wse_c00241{word-spacing:2.149614px;}
.ws28_c00241{word-spacing:2.595908px;}
.ws3b_c00241{word-spacing:2.958400px;}
.ws2d_c00241{word-spacing:4.028335px;}
.wsf_c00241{word-spacing:4.670334px;}
.ws10_c00241{word-spacing:4.698342px;}
.ws45_c00241{word-spacing:4.753318px;}
.ws39_c00241{word-spacing:4.887791px;}
.ws32_c00241{word-spacing:5.232743px;}
.ws2c_c00241{word-spacing:5.466608px;}
.ws27_c00241{word-spacing:5.495842px;}
.ws2a_c00241{word-spacing:6.571623px;}
.ws31_c00241{word-spacing:7.998204px;}
.ws38_c00241{word-spacing:10.120534px;}
.ws3a_c00241{word-spacing:11.219702px;}
.ws35_c00241{word-spacing:14.523054px;}
.ws26_c00241{word-spacing:14.797846px;}
.ws3c_c00241{word-spacing:16.978643px;}
.wsc_c00241{word-spacing:19.073448px;}
.wsd_c00241{word-spacing:19.087452px;}
.ws33_c00241{word-spacing:19.118513px;}
.ws11_c00241{word-spacing:21.601170px;}
.ws43_c00241{word-spacing:22.398478px;}
.ws29_c00241{word-spacing:24.778060px;}
.ws2e_c00241{word-spacing:26.204640px;}
.ws36_c00241{word-spacing:27.040710px;}
.ws2f_c00241{word-spacing:33.863739px;}
.ws44_c00241{word-spacing:34.150224px;}
.wsa_c00241{word-spacing:43.937550px;}
.ws16_c00241{word-spacing:60.869369px;}
.ws34_c00241{word-spacing:66.680929px;}
.ws17_c00241{word-spacing:68.452461px;}
.ws3e_c00241{word-spacing:234.760136px;}
._f_c00241{margin-left:-234.099466px;}
._5_c00241{margin-left:-43.566444px;}
._11_c00241{margin-left:-2.709774px;}
._7_c00241{margin-left:-1.029294px;}
._8_c00241{width:1.155330px;}
._10_c00241{width:5.930694px;}
._d_c00241{width:7.922197px;}
._e_c00241{width:57.139213px;}
._0_c00241{width:63.003996px;}
._a_c00241{width:127.617138px;}
._9_c00241{width:278.041921px;}
._b_c00241{width:280.551020px;}
._c_c00241{width:291.647943px;}
._2_c00241{width:609.881202px;}
._1_c00241{width:744.809742px;}
._6_c00241{width:763.196994px;}
._3_c00241{width:795.245148px;}
._4_c00241{width:807.127542px;}
.fc0_c00241{color:rgb(0,0,0);}
.fs4_c00241{font-size:37.809600px;}
.fs3_c00241{font-size:46.562400px;}
.fs2_c00241{font-size:52.515000px;}
.fs1_c00241{font-size:58.466400px;}
.fs0_c00241{font-size:70.020000px;}
.y0_c00241{bottom:0.000000px;}
.y2_c00241{bottom:109.740968px;}
.y1_c00241{bottom:129.810450px;}
.y4b_c00241{bottom:173.460600px;}
.y4a_c00241{bottom:208.650450px;}
.y47_c00241{bottom:233.670113px;}
.y49_c00241{bottom:236.730069px;}
.y46_c00241{bottom:250.410505px;}
.y48_c00241{bottom:251.850450px;}
.y45_c00241{bottom:267.150897px;}
.y44_c00241{bottom:283.980450px;}
.y43_c00241{bottom:301.440397px;}
.y42_c00241{bottom:318.269950px;}
.y41_c00241{bottom:335.010342px;}
.y40_c00241{bottom:351.750734px;}
.y3f_c00241{bottom:368.491126px;}
.y3e_c00241{bottom:385.320679px;}
.y3d_c00241{bottom:402.150233px;}
.y3c_c00241{bottom:419.523342px;}
.y3b_c00241{bottom:438.963420px;}
.y3a_c00241{bottom:455.792973px;}
.y39_c00241{bottom:472.533365px;}
.y38_c00241{bottom:489.273757px;}
.y37_c00241{bottom:506.103310px;}
.y36_c00241{bottom:523.833246px;}
.y35_c00241{bottom:539.763878px;}
.y1e_c00241{bottom:556.590508px;}
.y29_c00241{bottom:556.591970px;}
.y34_c00241{bottom:556.593431px;}
.y1d_c00241{bottom:573.330900px;}
.y28_c00241{bottom:573.332362px;}
.y33_c00241{bottom:573.333823px;}
.y1c_c00241{bottom:590.160453px;}
.y27_c00241{bottom:590.161915px;}
.y32_c00241{bottom:590.163377px;}
.y1b_c00241{bottom:606.900845px;}
.y26_c00241{bottom:606.902307px;}
.y31_c00241{bottom:606.903769px;}
.y1a_c00241{bottom:623.641237px;}
.y25_c00241{bottom:623.642699px;}
.y30_c00241{bottom:623.644161px;}
.y19_c00241{bottom:640.470791px;}
.y24_c00241{bottom:640.472252px;}
.y2f_c00241{bottom:640.473714px;}
.y18_c00241{bottom:657.211182px;}
.y23_c00241{bottom:657.212644px;}
.y2e_c00241{bottom:657.214106px;}
.y17_c00241{bottom:673.951574px;}
.y22_c00241{bottom:673.953036px;}
.y2d_c00241{bottom:673.954498px;}
.y16_c00241{bottom:690.781128px;}
.y21_c00241{bottom:690.782589px;}
.y2c_c00241{bottom:690.784051px;}
.y15_c00241{bottom:707.610681px;}
.y20_c00241{bottom:707.612143px;}
.y2b_c00241{bottom:707.613604px;}
.y14_c00241{bottom:724.260450px;}
.y1f_c00241{bottom:724.261912px;}
.y2a_c00241{bottom:724.263373px;}
.y13_c00241{bottom:741.720655px;}
.y12_c00241{bottom:758.550208px;}
.y11_c00241{bottom:761.790069px;}
.y10_c00241{bottom:775.290600px;}
.yf_c00241{bottom:793.557975px;}
.ye_c00241{bottom:823.708587px;}
.yd_c00241{bottom:853.948474px;}
.yc_c00241{bottom:884.099087px;}
.yb_c00241{bottom:914.249699px;}
.ya_c00241{bottom:944.400311px;}
.y9_c00241{bottom:964.560819px;}
.y8_c00241{bottom:1003.530450px;}
.y7_c00241{bottom:1024.410450px;}
.y6_c00241{bottom:1045.290450px;}
.y5_c00241{bottom:1066.170450px;}
.y4_c00241{bottom:1086.960450px;}
.y3_c00241{bottom:1109.731597px;}
.hb_c00241{height:39.697949px;}
.ha_c00241{height:47.078877px;}
.h8_c00241{height:52.271474px;}
.h6_c00241{height:52.414214px;}
.h5_c00241{height:52.785339px;}
.h3_c00241{height:53.891624px;}
.h7_c00241{height:62.383649px;}
.h1_c00241{height:62.771836px;}
.h2_c00241{height:63.216299px;}
.h9_c00241{height:74.017820px;}
.h4_c00241{height:106.787464px;}
.h0_c00241{height:1263.000000px;}
.w0_c00241{width:892.500000px;}
.x0_c00241{left:0.000000px;}
.x2_c00241{left:82.710059px;}
.x7_c00241{left:185.040488px;}
.x4_c00241{left:223.020000px;}
.x3_c00241{left:227.880774px;}
.xe_c00241{left:276.751212px;}
.x8_c00241{left:283.049220px;}
.x9_c00241{left:298.079470px;}
.x5_c00241{left:339.300000px;}
.xf_c00241{left:390.421587px;}
.xb_c00241{left:398.431199px;}
.xa_c00241{left:414.180586px;}
.xc_c00241{left:417.061518px;}
.x1_c00241{left:431.730000px;}
.x6_c00241{left:446.400841px;}
.xd_c00241{left:514.441692px;}
@media print{
.v4_c00241{vertical-align:-12.800533pt;}
.v0_c00241{vertical-align:0.000000pt;}
.v1_c00241{vertical-align:5.759467pt;}
.v3_c00241{vertical-align:28.790252pt;}
.v2_c00241{vertical-align:48.001889pt;}
.ls15_c00241{letter-spacing:-0.176698pt;}
.ls1f_c00241{letter-spacing:-0.150713pt;}
.ls23_c00241{letter-spacing:-0.140319pt;}
.ls1b_c00241{letter-spacing:-0.124728pt;}
.ls17_c00241{letter-spacing:-0.119531pt;}
.ls1c_c00241{letter-spacing:-0.114334pt;}
.ls27_c00241{letter-spacing:-0.109137pt;}
.ls20_c00241{letter-spacing:-0.103940pt;}
.ls1a_c00241{letter-spacing:-0.098743pt;}
.ls12_c00241{letter-spacing:-0.093546pt;}
.ls18_c00241{letter-spacing:-0.088349pt;}
.ls19_c00241{letter-spacing:-0.083152pt;}
.ls1d_c00241{letter-spacing:-0.077955pt;}
.ls1e_c00241{letter-spacing:-0.072758pt;}
.ls13_c00241{letter-spacing:-0.070020pt;}
.ls22_c00241{letter-spacing:-0.067561pt;}
.ls2e_c00241{letter-spacing:-0.067217pt;}
.ls16_c00241{letter-spacing:-0.062364pt;}
.ls9_c00241{letter-spacing:-0.056016pt;}
.ls11_c00241{letter-spacing:-0.049792pt;}
.lsc_c00241{letter-spacing:-0.043568pt;}
.ls25_c00241{letter-spacing:-0.041576pt;}
.lsb_c00241{letter-spacing:-0.031120pt;}
.lse_c00241{letter-spacing:-0.024896pt;}
.ls10_c00241{letter-spacing:-0.018672pt;}
.lsd_c00241{letter-spacing:-0.012448pt;}
.lsf_c00241{letter-spacing:-0.006224pt;}
.lsa_c00241{letter-spacing:0.000000pt;}
.ls8_c00241{letter-spacing:0.005197pt;}
.ls4_c00241{letter-spacing:0.015591pt;}
.ls6_c00241{letter-spacing:0.020694pt;}
.ls26_c00241{letter-spacing:0.020788pt;}
.ls5_c00241{letter-spacing:0.025985pt;}
.ls21_c00241{letter-spacing:0.067561pt;}
.ls2a_c00241{letter-spacing:0.093546pt;}
.ls24_c00241{letter-spacing:0.098743pt;}
.ls3_c00241{letter-spacing:0.103940pt;}
.ls28_c00241{letter-spacing:0.109137pt;}
.ls2d_c00241{letter-spacing:0.135122pt;}
.ls1_c00241{letter-spacing:0.150713pt;}
.ls29_c00241{letter-spacing:0.171501pt;}
.ls2_c00241{letter-spacing:0.187092pt;}
.ls14_c00241{letter-spacing:0.205392pt;}
.ls0_c00241{letter-spacing:0.218275pt;}
.ls2b_c00241{letter-spacing:0.239063pt;}
.ls7_c00241{letter-spacing:0.280080pt;}
.ls2c_c00241{letter-spacing:0.284748pt;}
.ws3_c00241{word-spacing:-46.680000pt;}
.ws0_c00241{word-spacing:-17.296496pt;}
.ws2_c00241{word-spacing:-13.261788pt;}
.ws1_c00241{word-spacing:-11.526781pt;}
.ws4_c00241{word-spacing:-9.242347pt;}
.ws3d_c00241{word-spacing:-0.597657pt;}
.ws1c_c00241{word-spacing:-0.576868pt;}
.ws15_c00241{word-spacing:-0.561277pt;}
.ws1f_c00241{word-spacing:-0.545686pt;}
.ws1e_c00241{word-spacing:-0.509307pt;}
.ws20_c00241{word-spacing:-0.462534pt;}
.ws22_c00241{word-spacing:-0.426155pt;}
.ws18_c00241{word-spacing:-0.259851pt;}
.ws48_c00241{word-spacing:-0.239063pt;}
.ws25_c00241{word-spacing:-0.218275pt;}
.ws46_c00241{word-spacing:-0.171501pt;}
.ws30_c00241{word-spacing:-0.135122pt;}
.ws37_c00241{word-spacing:-0.129925pt;}
.ws41_c00241{word-spacing:-0.041576pt;}
.ws5_c00241{word-spacing:0.000000pt;}
.ws49_c00241{word-spacing:0.005197pt;}
.wsb_c00241{word-spacing:0.012448pt;}
.ws14_c00241{word-spacing:0.025985pt;}
.ws7_c00241{word-spacing:0.031120pt;}
.ws3f_c00241{word-spacing:0.031182pt;}
.ws1a_c00241{word-spacing:0.036379pt;}
.ws24_c00241{word-spacing:0.041576pt;}
.ws40_c00241{word-spacing:0.046773pt;}
.ws1d_c00241{word-spacing:0.051970pt;}
.ws42_c00241{word-spacing:0.057167pt;}
.ws23_c00241{word-spacing:0.062364pt;}
.ws19_c00241{word-spacing:0.088349pt;}
.ws47_c00241{word-spacing:0.109137pt;}
.ws1b_c00241{word-spacing:0.114334pt;}
.ws21_c00241{word-spacing:0.135122pt;}
.ws13_c00241{word-spacing:0.219396pt;}
.ws8_c00241{word-spacing:0.317424pt;}
.ws6_c00241{word-spacing:0.336096pt;}
.ws9_c00241{word-spacing:0.348544pt;}
.ws12_c00241{word-spacing:0.354768pt;}
.ws2b_c00241{word-spacing:1.881319pt;}
.wse_c00241{word-spacing:1.910768pt;}
.ws28_c00241{word-spacing:2.307474pt;}
.ws3b_c00241{word-spacing:2.629689pt;}
.ws2d_c00241{word-spacing:3.580742pt;}
.wsf_c00241{word-spacing:4.151408pt;}
.ws10_c00241{word-spacing:4.176304pt;}
.ws45_c00241{word-spacing:4.225172pt;}
.ws39_c00241{word-spacing:4.344703pt;}
.ws32_c00241{word-spacing:4.651327pt;}
.ws2c_c00241{word-spacing:4.859207pt;}
.ws27_c00241{word-spacing:4.885193pt;}
.ws2a_c00241{word-spacing:5.841443pt;}
.ws31_c00241{word-spacing:7.109514pt;}
.ws38_c00241{word-spacing:8.996030pt;}
.ws3a_c00241{word-spacing:9.973069pt;}
.ws35_c00241{word-spacing:12.909381pt;}
.ws26_c00241{word-spacing:13.153641pt;}
.ws3c_c00241{word-spacing:15.092127pt;}
.wsc_c00241{word-spacing:16.954176pt;}
.wsd_c00241{word-spacing:16.966624pt;}
.ws33_c00241{word-spacing:16.994234pt;}
.ws11_c00241{word-spacing:19.201040pt;}
.ws43_c00241{word-spacing:19.909758pt;}
.ws29_c00241{word-spacing:22.024943pt;}
.ws2e_c00241{word-spacing:23.293014pt;}
.ws36_c00241{word-spacing:24.036187pt;}
.ws2f_c00241{word-spacing:30.101101pt;}
.ws44_c00241{word-spacing:30.355755pt;}
.wsa_c00241{word-spacing:39.055600pt;}
.ws16_c00241{word-spacing:54.106106pt;}
.ws34_c00241{word-spacing:59.271937pt;}
.ws17_c00241{word-spacing:60.846632pt;}
.ws3e_c00241{word-spacing:208.675676pt;}
._f_c00241{margin-left:-208.088414pt;}
._5_c00241{margin-left:-38.725728pt;}
._11_c00241{margin-left:-2.408688pt;}
._7_c00241{margin-left:-0.914928pt;}
._8_c00241{width:1.026960pt;}
._10_c00241{width:5.271728pt;}
._d_c00241{width:7.041953pt;}
._e_c00241{width:50.790411pt;}
._0_c00241{width:56.003552pt;}
._a_c00241{width:113.437456pt;}
._9_c00241{width:247.148375pt;}
._b_c00241{width:249.378685pt;}
._c_c00241{width:259.242616pt;}
._2_c00241{width:542.116624pt;}
._1_c00241{width:662.053104pt;}
._6_c00241{width:678.397328pt;}
._3_c00241{width:706.884576pt;}
._4_c00241{width:717.446704pt;}
.fs4_c00241{font-size:33.608533pt;}
.fs3_c00241{font-size:41.388800pt;}
.fs2_c00241{font-size:46.680000pt;}
.fs1_c00241{font-size:51.970133pt;}
.fs0_c00241{font-size:62.240000pt;}
.y0_c00241{bottom:0.000000pt;}
.y2_c00241{bottom:97.547527pt;}
.y1_c00241{bottom:115.387067pt;}
.y4b_c00241{bottom:154.187200pt;}
.y4a_c00241{bottom:185.467067pt;}
.y47_c00241{bottom:207.706767pt;}
.y49_c00241{bottom:210.426728pt;}
.y46_c00241{bottom:222.587115pt;}
.y48_c00241{bottom:223.867067pt;}
.y45_c00241{bottom:237.467464pt;}
.y44_c00241{bottom:252.427067pt;}
.y43_c00241{bottom:267.947019pt;}
.y42_c00241{bottom:282.906622pt;}
.y41_c00241{bottom:297.786971pt;}
.y40_c00241{bottom:312.667319pt;}
.y3f_c00241{bottom:327.547668pt;}
.y3e_c00241{bottom:342.507271pt;}
.y3d_c00241{bottom:357.466873pt;}
.y3c_c00241{bottom:372.909637pt;}
.y3b_c00241{bottom:390.189706pt;}
.y3a_c00241{bottom:405.149309pt;}
.y39_c00241{bottom:420.029658pt;}
.y38_c00241{bottom:434.910006pt;}
.y37_c00241{bottom:449.869609pt;}
.y36_c00241{bottom:465.629552pt;}
.y35_c00241{bottom:479.790114pt;}
.y1e_c00241{bottom:494.747118pt;}
.y29_c00241{bottom:494.748418pt;}
.y34_c00241{bottom:494.749717pt;}
.y1d_c00241{bottom:509.627467pt;}
.y28_c00241{bottom:509.628766pt;}
.y33_c00241{bottom:509.630065pt;}
.y1c_c00241{bottom:524.587070pt;}
.y27_c00241{bottom:524.588369pt;}
.y32_c00241{bottom:524.589668pt;}
.y1b_c00241{bottom:539.467418pt;}
.y26_c00241{bottom:539.468717pt;}
.y31_c00241{bottom:539.470017pt;}
.y1a_c00241{bottom:554.347766pt;}
.y25_c00241{bottom:554.349066pt;}
.y30_c00241{bottom:554.350365pt;}
.y19_c00241{bottom:569.307369pt;}
.y24_c00241{bottom:569.308669pt;}
.y2f_c00241{bottom:569.309968pt;}
.y18_c00241{bottom:584.187718pt;}
.y23_c00241{bottom:584.189017pt;}
.y2e_c00241{bottom:584.190316pt;}
.y17_c00241{bottom:599.068066pt;}
.y22_c00241{bottom:599.069365pt;}
.y2d_c00241{bottom:599.070665pt;}
.y16_c00241{bottom:614.027669pt;}
.y21_c00241{bottom:614.028968pt;}
.y2c_c00241{bottom:614.030268pt;}
.y15_c00241{bottom:628.987272pt;}
.y20_c00241{bottom:628.988571pt;}
.y2b_c00241{bottom:628.989870pt;}
.y14_c00241{bottom:643.787067pt;}
.y1f_c00241{bottom:643.788366pt;}
.y2a_c00241{bottom:643.789665pt;}
.y13_c00241{bottom:659.307249pt;}
.y12_c00241{bottom:674.266852pt;}
.y11_c00241{bottom:677.146728pt;}
.y10_c00241{bottom:689.147200pt;}
.yf_c00241{bottom:705.384867pt;}
.ye_c00241{bottom:732.185411pt;}
.yd_c00241{bottom:759.065311pt;}
.yc_c00241{bottom:785.865855pt;}
.yb_c00241{bottom:812.666399pt;}
.ya_c00241{bottom:839.466943pt;}
.y9_c00241{bottom:857.387395pt;}
.y8_c00241{bottom:892.027067pt;}
.y7_c00241{bottom:910.587067pt;}
.y6_c00241{bottom:929.147067pt;}
.y5_c00241{bottom:947.707067pt;}
.y4_c00241{bottom:966.187067pt;}
.y3_c00241{bottom:986.428087pt;}
.hb_c00241{height:35.287066pt;}
.ha_c00241{height:41.847891pt;}
.h8_c00241{height:46.463532pt;}
.h6_c00241{height:46.590412pt;}
.h5_c00241{height:46.920301pt;}
.h3_c00241{height:47.903666pt;}
.h7_c00241{height:55.452132pt;}
.h1_c00241{height:55.797187pt;}
.h2_c00241{height:56.192266pt;}
.h9_c00241{height:65.793618pt;}
.h4_c00241{height:94.922190pt;}
.h0_c00241{height:1122.666667pt;}
.w0_c00241{width:793.333333pt;}
.x0_c00241{left:0.000000pt;}
.x2_c00241{left:73.520052pt;}
.x7_c00241{left:164.480434pt;}
.x4_c00241{left:198.240000pt;}
.x3_c00241{left:202.560688pt;}
.xe_c00241{left:246.001077pt;}
.x8_c00241{left:251.599307pt;}
.x9_c00241{left:264.959529pt;}
.x5_c00241{left:301.600000pt;}
.xf_c00241{left:347.041410pt;}
.xb_c00241{left:354.161066pt;}
.xa_c00241{left:368.160521pt;}
.xc_c00241{left:370.721349pt;}
.x1_c00241{left:383.760000pt;}
.x6_c00241{left:396.800748pt;}
.xd_c00241{left:457.281504pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e855da9a34619fe80c863f35.woff2')format("woff");}.ff1_c00242{font-family:ff1_c00242;line-height:1.106934;font-style:normal;font-weight:normal;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_979c81abe1331cf5d7f94cef.woff2')format("woff");}.ff2_c00242{font-family:ff2_c00242;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00242;src:url('chunks/assets/font_3170e49f0c270ee8b6a8e447.woff2')format("woff");}.ff3_c00242{font-family:ff3_c00242;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00242;src:url('chunks/assets/font_c844e752194162b1152296af.woff2')format("woff");}.ff4_c00242{font-family:ff4_c00242;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00242{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00242{vertical-align:-14.760000px;}
.v0_c00242{vertical-align:0.000000px;}
.v1_c00242{vertical-align:32.033357px;}
.ls27_c00242{letter-spacing:-0.198786px;}
.ls28_c00242{letter-spacing:-0.163706px;}
.ls21_c00242{letter-spacing:-0.152013px;}
.ls22_c00242{letter-spacing:-0.146166px;}
.ls1e_c00242{letter-spacing:-0.140319px;}
.ls12_c00242{letter-spacing:-0.134473px;}
.ls19_c00242{letter-spacing:-0.128626px;}
.ls17_c00242{letter-spacing:-0.122779px;}
.ls1b_c00242{letter-spacing:-0.116933px;}
.ls1c_c00242{letter-spacing:-0.111086px;}
.ls10_c00242{letter-spacing:-0.105240px;}
.ls16_c00242{letter-spacing:-0.099393px;}
.ls2b_c00242{letter-spacing:-0.093546px;}
.ls13_c00242{letter-spacing:-0.087700px;}
.ls15_c00242{letter-spacing:-0.081853px;}
.ls25_c00242{letter-spacing:-0.076006px;}
.ls2d_c00242{letter-spacing:-0.075619px;}
.ls1a_c00242{letter-spacing:-0.070160px;}
.ls2c_c00242{letter-spacing:-0.064313px;}
.lse_c00242{letter-spacing:-0.063018px;}
.ls26_c00242{letter-spacing:-0.052620px;}
.ls29_c00242{letter-spacing:-0.040926px;}
.ls14_c00242{letter-spacing:-0.035080px;}
.ls24_c00242{letter-spacing:-0.017540px;}
.ls2a_c00242{letter-spacing:-0.011693px;}
.ls18_c00242{letter-spacing:-0.005847px;}
.lsf_c00242{letter-spacing:0.000000px;}
.ls3_c00242{letter-spacing:0.005847px;}
.ls4_c00242{letter-spacing:0.023281px;}
.ls9_c00242{letter-spacing:0.029233px;}
.ls2_c00242{letter-spacing:0.046773px;}
.lsc_c00242{letter-spacing:0.052620px;}
.ls1_c00242{letter-spacing:0.070160px;}
.ls0_c00242{letter-spacing:0.087700px;}
.ls8_c00242{letter-spacing:0.099393px;}
.lsd_c00242{letter-spacing:0.105240px;}
.ls7_c00242{letter-spacing:0.134473px;}
.lsa_c00242{letter-spacing:0.146166px;}
.lsb_c00242{letter-spacing:0.157859px;}
.ls6_c00242{letter-spacing:0.169553px;}
.ls1f_c00242{letter-spacing:0.175399px;}
.ls23_c00242{letter-spacing:0.181246px;}
.ls5_c00242{letter-spacing:0.187092px;}
.ls1d_c00242{letter-spacing:0.198786px;}
.ls11_c00242{letter-spacing:0.245559px;}
.ls20_c00242{letter-spacing:0.251406px;}
.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:-16.165960px;}
.ws1_c00242{word-spacing:-12.967628px;}
.ws2_c00242{word-spacing:-10.397640px;}
.wsf_c00242{word-spacing:-0.602204px;}
.ws2d_c00242{word-spacing:-0.572971px;}
.ws39_c00242{word-spacing:-0.561277px;}
.ws11_c00242{word-spacing:-0.491118px;}
.ws12_c00242{word-spacing:-0.473578px;}
.ws30_c00242{word-spacing:-0.409265px;}
.ws36_c00242{word-spacing:-0.385878px;}
.wse_c00242{word-spacing:-0.321565px;}
.ws13_c00242{word-spacing:-0.298179px;}
.ws2e_c00242{word-spacing:-0.286485px;}
.ws5_c00242{word-spacing:-0.268945px;}
.ws10_c00242{word-spacing:-0.263099px;}
.ws35_c00242{word-spacing:-0.228019px;}
.ws33_c00242{word-spacing:-0.198786px;}
.ws38_c00242{word-spacing:-0.187092px;}
.wsc_c00242{word-spacing:-0.175399px;}
.ws32_c00242{word-spacing:-0.140319px;}
.ws37_c00242{word-spacing:-0.070160px;}
.wsa_c00242{word-spacing:-0.046773px;}
.ws1b_c00242{word-spacing:-0.040926px;}
.ws2f_c00242{word-spacing:-0.029233px;}
.ws7_c00242{word-spacing:-0.005847px;}
.ws3_c00242{word-spacing:0.000000px;}
.ws2a_c00242{word-spacing:0.011693px;}
.ws34_c00242{word-spacing:0.023387px;}
.wsd_c00242{word-spacing:0.029233px;}
.ws8_c00242{word-spacing:0.040926px;}
.ws6_c00242{word-spacing:0.046773px;}
.ws31_c00242{word-spacing:0.052620px;}
.ws9_c00242{word-spacing:0.058466px;}
.ws4_c00242{word-spacing:0.064313px;}
.ws3a_c00242{word-spacing:0.076006px;}
.ws2c_c00242{word-spacing:0.152013px;}
.ws1f_c00242{word-spacing:0.420958px;}
.ws1a_c00242{word-spacing:1.935238px;}
.ws1d_c00242{word-spacing:2.215877px;}
.ws15_c00242{word-spacing:3.344278px;}
.ws3d_c00242{word-spacing:3.630763px;}
.ws3e_c00242{word-spacing:3.870476px;}
.ws26_c00242{word-spacing:4.291434px;}
.ws1c_c00242{word-spacing:4.408367px;}
.ws17_c00242{word-spacing:5.805714px;}
.ws22_c00242{word-spacing:8.319769px;}
.ws21_c00242{word-spacing:9.869128px;}
.ws18_c00242{word-spacing:9.991908px;}
.ws27_c00242{word-spacing:11.213856px;}
.ws3c_c00242{word-spacing:11.482801px;}
.ws3b_c00242{word-spacing:11.611427px;}
.ws25_c00242{word-spacing:13.423885px;}
.ws1e_c00242{word-spacing:14.441201px;}
.ws20_c00242{word-spacing:15.791775px;}
.ws29_c00242{word-spacing:17.230048px;}
.ws16_c00242{word-spacing:19.580397px;}
.ws23_c00242{word-spacing:20.205988px;}
.ws19_c00242{word-spacing:23.123461px;}
.ws14_c00242{word-spacing:23.509339px;}
.ws28_c00242{word-spacing:30.273902px;}
.ws24_c00242{word-spacing:85.413564px;}
.ws2b_c00242{word-spacing:227.925414px;}
.wsb_c00242{word-spacing:231.176146px;}
._3_c00242{margin-left:-231.123526px;}
._5_c00242{margin-left:-227.574615px;}
._7_c00242{margin-left:-2.709774px;}
._0_c00242{margin-left:-1.075782px;}
._1_c00242{width:1.140095px;}
._6_c00242{width:5.930694px;}
._2_c00242{width:60.085919px;}
._4_c00242{width:63.248952px;}
.fc0_c00242{color:rgb(0,0,0);}
.fs4_c00242{font-size:37.809600px;}
.fs3_c00242{font-size:46.562400px;}
.fs2_c00242{font-size:52.515000px;}
.fs1_c00242{font-size:58.466400px;}
.fs0_c00242{font-size:70.020000px;}
.y0_c00242{bottom:0.000000px;}
.y2_c00242{bottom:109.740968px;}
.y1_c00242{bottom:129.810450px;}
.y4a_c00242{bottom:149.429548px;}
.y49_c00242{bottom:167.250107px;}
.y48_c00242{bottom:188.940450px;}
.y47_c00242{bottom:203.610450px;}
.y46_c00242{bottom:237.000049px;}
.y45_c00242{bottom:253.829603px;}
.y44_c00242{bottom:270.659156px;}
.y43_c00242{bottom:287.399548px;}
.y42_c00242{bottom:304.139940px;}
.y41_c00242{bottom:320.969493px;}
.y40_c00242{bottom:337.709885px;}
.y3f_c00242{bottom:354.539438px;}
.y3e_c00242{bottom:371.279830px;}
.y3d_c00242{bottom:388.020222px;}
.y3c_c00242{bottom:404.849776px;}
.y3b_c00242{bottom:421.590168px;}
.y3a_c00242{bottom:438.330560px;}
.y39_c00242{bottom:455.160113px;}
.y38_c00242{bottom:471.900505px;}
.y37_c00242{bottom:488.640897px;}
.y36_c00242{bottom:505.470450px;}
.y35_c00242{bottom:523.020925px;}
.y34_c00242{bottom:539.670694px;}
.y33_c00242{bottom:556.500247px;}
.y32_c00242{bottom:573.329800px;}
.y31_c00242{bottom:590.070192px;}
.y30_c00242{bottom:606.810584px;}
.y2f_c00242{bottom:623.640137px;}
.y2e_c00242{bottom:640.380529px;}
.y2d_c00242{bottom:657.120921px;}
.y2c_c00242{bottom:674.582111px;}
.y2b_c00242{bottom:694.112812px;}
.y2a_c00242{bottom:710.853204px;}
.y29_c00242{bottom:727.593596px;}
.y28_c00242{bottom:744.423149px;}
.y27_c00242{bottom:761.163541px;}
.y26_c00242{bottom:777.993094px;}
.y25_c00242{bottom:794.642863px;}
.y24_c00242{bottom:811.472417px;}
.y18_c00242{bottom:828.300508px;}
.y23_c00242{bottom:828.301970px;}
.y17_c00242{bottom:844.950277px;}
.y22_c00242{bottom:844.951739px;}
.y16_c00242{bottom:861.779830px;}
.y21_c00242{bottom:861.781292px;}
.y15_c00242{bottom:878.609384px;}
.y20_c00242{bottom:878.610845px;}
.y14_c00242{bottom:895.349776px;}
.y1f_c00242{bottom:895.351237px;}
.y13_c00242{bottom:912.090168px;}
.y1e_c00242{bottom:912.091629px;}
.y12_c00242{bottom:928.919721px;}
.y1d_c00242{bottom:928.921182px;}
.y11_c00242{bottom:945.660113px;}
.y1c_c00242{bottom:945.661574px;}
.y10_c00242{bottom:962.489666px;}
.y1b_c00242{bottom:962.491128px;}
.yf_c00242{bottom:979.230058px;}
.y1a_c00242{bottom:979.231520px;}
.ye_c00242{bottom:995.970450px;}
.y19_c00242{bottom:995.971912px;}
.yd_c00242{bottom:1013.250450px;}
.yc_c00242{bottom:1028.639721px;}
.y7_c00242{bottom:1045.379721px;}
.yb_c00242{bottom:1045.380113px;}
.y6_c00242{bottom:1062.120113px;}
.ya_c00242{bottom:1062.120505px;}
.y5_c00242{bottom:1078.949666px;}
.y9_c00242{bottom:1078.950058px;}
.y4_c00242{bottom:1095.690058px;}
.y8_c00242{bottom:1095.690450px;}
.y3_c00242{bottom:1112.430450px;}
.h6_c00242{height:39.338549px;}
.h3_c00242{height:47.078877px;}
.h4_c00242{height:52.271474px;}
.h2_c00242{height:52.414214px;}
.h7_c00242{height:54.098549px;}
.h1_c00242{height:62.771836px;}
.h5_c00242{height:73.662143px;}
.h0_c00242{height:1263.000000px;}
.w0_c00242{width:892.500000px;}
.x0_c00242{left:0.000000px;}
.x2_c00242{left:82.710059px;}
.x3_c00242{left:276.750000px;}
.x4_c00242{left:390.420375px;}
.x1_c00242{left:431.730000px;}
.x5_c00242{left:514.441976px;}
@media print{
.v2_c00242{vertical-align:-13.120000pt;}
.v0_c00242{vertical-align:0.000000pt;}
.v1_c00242{vertical-align:28.474095pt;}
.ls27_c00242{letter-spacing:-0.176698pt;}
.ls28_c00242{letter-spacing:-0.145516pt;}
.ls21_c00242{letter-spacing:-0.135122pt;}
.ls22_c00242{letter-spacing:-0.129925pt;}
.ls1e_c00242{letter-spacing:-0.124728pt;}
.ls12_c00242{letter-spacing:-0.119531pt;}
.ls19_c00242{letter-spacing:-0.114334pt;}
.ls17_c00242{letter-spacing:-0.109137pt;}
.ls1b_c00242{letter-spacing:-0.103940pt;}
.ls1c_c00242{letter-spacing:-0.098743pt;}
.ls10_c00242{letter-spacing:-0.093546pt;}
.ls16_c00242{letter-spacing:-0.088349pt;}
.ls2b_c00242{letter-spacing:-0.083152pt;}
.ls13_c00242{letter-spacing:-0.077955pt;}
.ls15_c00242{letter-spacing:-0.072758pt;}
.ls25_c00242{letter-spacing:-0.067561pt;}
.ls2d_c00242{letter-spacing:-0.067217pt;}
.ls1a_c00242{letter-spacing:-0.062364pt;}
.ls2c_c00242{letter-spacing:-0.057167pt;}
.lse_c00242{letter-spacing:-0.056016pt;}
.ls26_c00242{letter-spacing:-0.046773pt;}
.ls29_c00242{letter-spacing:-0.036379pt;}
.ls14_c00242{letter-spacing:-0.031182pt;}
.ls24_c00242{letter-spacing:-0.015591pt;}
.ls2a_c00242{letter-spacing:-0.010394pt;}
.ls18_c00242{letter-spacing:-0.005197pt;}
.lsf_c00242{letter-spacing:0.000000pt;}
.ls3_c00242{letter-spacing:0.005197pt;}
.ls4_c00242{letter-spacing:0.020694pt;}
.ls9_c00242{letter-spacing:0.025985pt;}
.ls2_c00242{letter-spacing:0.041576pt;}
.lsc_c00242{letter-spacing:0.046773pt;}
.ls1_c00242{letter-spacing:0.062364pt;}
.ls0_c00242{letter-spacing:0.077955pt;}
.ls8_c00242{letter-spacing:0.088349pt;}
.lsd_c00242{letter-spacing:0.093546pt;}
.ls7_c00242{letter-spacing:0.119531pt;}
.lsa_c00242{letter-spacing:0.129925pt;}
.lsb_c00242{letter-spacing:0.140319pt;}
.ls6_c00242{letter-spacing:0.150713pt;}
.ls1f_c00242{letter-spacing:0.155910pt;}
.ls23_c00242{letter-spacing:0.161107pt;}
.ls5_c00242{letter-spacing:0.166304pt;}
.ls1d_c00242{letter-spacing:0.176698pt;}
.ls11_c00242{letter-spacing:0.218275pt;}
.ls20_c00242{letter-spacing:0.223472pt;}
.ws0_c00242{word-spacing:-14.369742pt;}
.ws1_c00242{word-spacing:-11.526781pt;}
.ws2_c00242{word-spacing:-9.242347pt;}
.wsf_c00242{word-spacing:-0.535292pt;}
.ws2d_c00242{word-spacing:-0.509307pt;}
.ws39_c00242{word-spacing:-0.498913pt;}
.ws11_c00242{word-spacing:-0.436549pt;}
.ws12_c00242{word-spacing:-0.420958pt;}
.ws30_c00242{word-spacing:-0.363791pt;}
.ws36_c00242{word-spacing:-0.343003pt;}
.wse_c00242{word-spacing:-0.285836pt;}
.ws13_c00242{word-spacing:-0.265048pt;}
.ws2e_c00242{word-spacing:-0.254654pt;}
.ws5_c00242{word-spacing:-0.239063pt;}
.ws10_c00242{word-spacing:-0.233866pt;}
.ws35_c00242{word-spacing:-0.202684pt;}
.ws33_c00242{word-spacing:-0.176698pt;}
.ws38_c00242{word-spacing:-0.166304pt;}
.wsc_c00242{word-spacing:-0.155910pt;}
.ws32_c00242{word-spacing:-0.124728pt;}
.ws37_c00242{word-spacing:-0.062364pt;}
.wsa_c00242{word-spacing:-0.041576pt;}
.ws1b_c00242{word-spacing:-0.036379pt;}
.ws2f_c00242{word-spacing:-0.025985pt;}
.ws7_c00242{word-spacing:-0.005197pt;}
.ws3_c00242{word-spacing:0.000000pt;}
.ws2a_c00242{word-spacing:0.010394pt;}
.ws34_c00242{word-spacing:0.020788pt;}
.wsd_c00242{word-spacing:0.025985pt;}
.ws8_c00242{word-spacing:0.036379pt;}
.ws6_c00242{word-spacing:0.041576pt;}
.ws31_c00242{word-spacing:0.046773pt;}
.ws9_c00242{word-spacing:0.051970pt;}
.ws4_c00242{word-spacing:0.057167pt;}
.ws3a_c00242{word-spacing:0.067561pt;}
.ws2c_c00242{word-spacing:0.135122pt;}
.ws1f_c00242{word-spacing:0.374185pt;}
.ws1a_c00242{word-spacing:1.720211pt;}
.ws1d_c00242{word-spacing:1.969668pt;}
.ws15_c00242{word-spacing:2.972692pt;}
.ws3d_c00242{word-spacing:3.227345pt;}
.ws3e_c00242{word-spacing:3.440423pt;}
.ws26_c00242{word-spacing:3.814608pt;}
.ws1c_c00242{word-spacing:3.918548pt;}
.ws17_c00242{word-spacing:5.160634pt;}
.ws22_c00242{word-spacing:7.395350pt;}
.ws21_c00242{word-spacing:8.772559pt;}
.ws18_c00242{word-spacing:8.881696pt;}
.ws27_c00242{word-spacing:9.967872pt;}
.ws3c_c00242{word-spacing:10.206934pt;}
.ws3b_c00242{word-spacing:10.321268pt;}
.ws25_c00242{word-spacing:11.932343pt;}
.ws1e_c00242{word-spacing:12.836623pt;}
.ws20_c00242{word-spacing:14.037133pt;}
.ws29_c00242{word-spacing:15.315598pt;}
.ws16_c00242{word-spacing:17.404798pt;}
.ws23_c00242{word-spacing:17.960878pt;}
.ws19_c00242{word-spacing:20.554188pt;}
.ws14_c00242{word-spacing:20.897191pt;}
.ws28_c00242{word-spacing:26.910135pt;}
.ws24_c00242{word-spacing:75.923168pt;}
.ws2b_c00242{word-spacing:202.600368pt;}
.wsb_c00242{word-spacing:205.489907pt;}
._3_c00242{margin-left:-205.443134pt;}
._5_c00242{margin-left:-202.288547pt;}
._7_c00242{margin-left:-2.408688pt;}
._0_c00242{margin-left:-0.956250pt;}
._1_c00242{width:1.013418pt;}
._6_c00242{width:5.271728pt;}
._2_c00242{width:53.409706pt;}
._4_c00242{width:56.221290pt;}
.fs4_c00242{font-size:33.608533pt;}
.fs3_c00242{font-size:41.388800pt;}
.fs2_c00242{font-size:46.680000pt;}
.fs1_c00242{font-size:51.970133pt;}
.fs0_c00242{font-size:62.240000pt;}
.y0_c00242{bottom:0.000000pt;}
.y2_c00242{bottom:97.547527pt;}
.y1_c00242{bottom:115.387067pt;}
.y4a_c00242{bottom:132.826265pt;}
.y49_c00242{bottom:148.666762pt;}
.y48_c00242{bottom:167.947067pt;}
.y47_c00242{bottom:180.987067pt;}
.y46_c00242{bottom:210.666711pt;}
.y45_c00242{bottom:225.626314pt;}
.y44_c00242{bottom:240.585916pt;}
.y43_c00242{bottom:255.466265pt;}
.y42_c00242{bottom:270.346613pt;}
.y41_c00242{bottom:285.306216pt;}
.y40_c00242{bottom:300.186565pt;}
.y3f_c00242{bottom:315.146167pt;}
.y3e_c00242{bottom:330.026516pt;}
.y3d_c00242{bottom:344.906864pt;}
.y3c_c00242{bottom:359.866467pt;}
.y3b_c00242{bottom:374.746816pt;}
.y3a_c00242{bottom:389.627164pt;}
.y39_c00242{bottom:404.586767pt;}
.y38_c00242{bottom:419.467115pt;}
.y37_c00242{bottom:434.347464pt;}
.y36_c00242{bottom:449.307067pt;}
.y35_c00242{bottom:464.907489pt;}
.y34_c00242{bottom:479.707283pt;}
.y33_c00242{bottom:494.666886pt;}
.y32_c00242{bottom:509.626489pt;}
.y31_c00242{bottom:524.506837pt;}
.y30_c00242{bottom:539.387186pt;}
.y2f_c00242{bottom:554.346789pt;}
.y2e_c00242{bottom:569.227137pt;}
.y2d_c00242{bottom:584.107486pt;}
.y2c_c00242{bottom:599.628543pt;}
.y2b_c00242{bottom:616.989166pt;}
.y2a_c00242{bottom:631.869514pt;}
.y29_c00242{bottom:646.749863pt;}
.y28_c00242{bottom:661.709466pt;}
.y27_c00242{bottom:676.589814pt;}
.y26_c00242{bottom:691.549417pt;}
.y25_c00242{bottom:706.349212pt;}
.y24_c00242{bottom:721.308815pt;}
.y18_c00242{bottom:736.267118pt;}
.y23_c00242{bottom:736.268418pt;}
.y17_c00242{bottom:751.066913pt;}
.y22_c00242{bottom:751.068212pt;}
.y16_c00242{bottom:766.026516pt;}
.y21_c00242{bottom:766.027815pt;}
.y15_c00242{bottom:780.986119pt;}
.y20_c00242{bottom:780.987418pt;}
.y14_c00242{bottom:795.866467pt;}
.y1f_c00242{bottom:795.867766pt;}
.y13_c00242{bottom:810.746816pt;}
.y1e_c00242{bottom:810.748115pt;}
.y12_c00242{bottom:825.706419pt;}
.y1d_c00242{bottom:825.707718pt;}
.y11_c00242{bottom:840.586767pt;}
.y1c_c00242{bottom:840.588066pt;}
.y10_c00242{bottom:855.546370pt;}
.y1b_c00242{bottom:855.547669pt;}
.yf_c00242{bottom:870.426718pt;}
.y1a_c00242{bottom:870.428017pt;}
.ye_c00242{bottom:885.307067pt;}
.y19_c00242{bottom:885.308366pt;}
.yd_c00242{bottom:900.667067pt;}
.yc_c00242{bottom:914.346419pt;}
.y7_c00242{bottom:929.226419pt;}
.yb_c00242{bottom:929.226767pt;}
.y6_c00242{bottom:944.106767pt;}
.ya_c00242{bottom:944.107115pt;}
.y5_c00242{bottom:959.066370pt;}
.y9_c00242{bottom:959.066718pt;}
.y4_c00242{bottom:973.946718pt;}
.y8_c00242{bottom:973.947067pt;}
.y3_c00242{bottom:988.827067pt;}
.h6_c00242{height:34.967599pt;}
.h3_c00242{height:41.847891pt;}
.h4_c00242{height:46.463532pt;}
.h2_c00242{height:46.590412pt;}
.h7_c00242{height:48.087599pt;}
.h1_c00242{height:55.797187pt;}
.h5_c00242{height:65.477460pt;}
.h0_c00242{height:1122.666667pt;}
.w0_c00242{width:793.333333pt;}
.x0_c00242{left:0.000000pt;}
.x2_c00242{left:73.520052pt;}
.x3_c00242{left:246.000000pt;}
.x4_c00242{left:347.040333pt;}
.x1_c00242{left:383.760000pt;}
.x5_c00242{left:457.281756pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3ea230613deb5c80a489ccc8.woff2')format("woff");}.ff1_c00243{font-family:ff1_c00243;line-height:1.106934;font-style:normal;font-weight:normal;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_e277eacc09f6611f34d6916e.woff2')format("woff");}.ff2_c00243{font-family:ff2_c00243;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00243;src:url('chunks/assets/font_979e83de2e51cacdc5056876.woff2')format("woff");}.ff3_c00243{font-family:ff3_c00243;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00243{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00243{vertical-align:-14.760000px;}
.v0_c00243{vertical-align:0.000000px;}
.v1_c00243{vertical-align:32.404591px;}
.ls2f_c00243{letter-spacing:-0.654824px;}
.ls2c_c00243{letter-spacing:-0.181246px;}
.ls24_c00243{letter-spacing:-0.175399px;}
.ls16_c00243{letter-spacing:-0.169553px;}
.ls2d_c00243{letter-spacing:-0.146166px;}
.ls19_c00243{letter-spacing:-0.140319px;}
.ls14_c00243{letter-spacing:-0.134473px;}
.ls26_c00243{letter-spacing:-0.128626px;}
.ls1b_c00243{letter-spacing:-0.122779px;}
.ls18_c00243{letter-spacing:-0.116933px;}
.ls15_c00243{letter-spacing:-0.105240px;}
.lsf_c00243{letter-spacing:-0.099393px;}
.ls20_c00243{letter-spacing:-0.093546px;}
.ls1a_c00243{letter-spacing:-0.087700px;}
.ls27_c00243{letter-spacing:-0.081853px;}
.ls10_c00243{letter-spacing:-0.076006px;}
.ls29_c00243{letter-spacing:-0.075619px;}
.lsd_c00243{letter-spacing:-0.063018px;}
.ls2b_c00243{letter-spacing:-0.040926px;}
.ls21_c00243{letter-spacing:-0.035080px;}
.lse_c00243{letter-spacing:0.000000px;}
.lsc_c00243{letter-spacing:0.005847px;}
.ls3_c00243{letter-spacing:0.011693px;}
.ls4_c00243{letter-spacing:0.023281px;}
.ls9_c00243{letter-spacing:0.035080px;}
.ls2_c00243{letter-spacing:0.052620px;}
.ls12_c00243{letter-spacing:0.070160px;}
.ls17_c00243{letter-spacing:0.076006px;}
.lsa_c00243{letter-spacing:0.105240px;}
.ls28_c00243{letter-spacing:0.111086px;}
.ls5_c00243{letter-spacing:0.116933px;}
.ls1e_c00243{letter-spacing:0.128626px;}
.ls8_c00243{letter-spacing:0.140319px;}
.ls13_c00243{letter-spacing:0.152013px;}
.ls1f_c00243{letter-spacing:0.175399px;}
.ls23_c00243{letter-spacing:0.187092px;}
.ls1d_c00243{letter-spacing:0.192939px;}
.ls6_c00243{letter-spacing:0.198786px;}
.lsb_c00243{letter-spacing:0.204632px;}
.ls22_c00243{letter-spacing:0.216326px;}
.ls1_c00243{letter-spacing:0.228019px;}
.ls7_c00243{letter-spacing:0.245559px;}
.ls0_c00243{letter-spacing:0.251406px;}
.ls1c_c00243{letter-spacing:0.257252px;}
.ls11_c00243{letter-spacing:0.274792px;}
.ls25_c00243{letter-spacing:0.286485px;}
.ls31_c00243{letter-spacing:0.315719px;}
.ls2a_c00243{letter-spacing:0.321565px;}
.ls32_c00243{letter-spacing:0.333258px;}
.ls30_c00243{letter-spacing:0.420958px;}
.ls2e_c00243{letter-spacing:5.051497px;}
.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;}
}
.ws2_c00243{word-spacing:-16.429058px;}
.ws0_c00243{word-spacing:-16.358899px;}
.ws4_c00243{word-spacing:-16.195193px;}
.ws1_c00243{word-spacing:-12.967628px;}
.ws3_c00243{word-spacing:-10.397640px;}
.wsc_c00243{word-spacing:-0.654824px;}
.ws1d_c00243{word-spacing:-0.648977px;}
.ws1c_c00243{word-spacing:-0.602204px;}
.ws28_c00243{word-spacing:-0.590511px;}
.ws9_c00243{word-spacing:-0.555431px;}
.ws1b_c00243{word-spacing:-0.520351px;}
.ws2d_c00243{word-spacing:-0.508658px;}
.wsb_c00243{word-spacing:-0.479424px;}
.ws8_c00243{word-spacing:-0.473578px;}
.ws2c_c00243{word-spacing:-0.438498px;}
.ws43_c00243{word-spacing:-0.409265px;}
.ws2f_c00243{word-spacing:-0.333258px;}
.ws45_c00243{word-spacing:-0.321565px;}
.ws44_c00243{word-spacing:-0.304025px;}
.ws16_c00243{word-spacing:-0.298179px;}
.ws2b_c00243{word-spacing:-0.286485px;}
.ws13_c00243{word-spacing:-0.268945px;}
.ws2e_c00243{word-spacing:-0.245559px;}
.ws1a_c00243{word-spacing:-0.169553px;}
.ws18_c00243{word-spacing:-0.052620px;}
.ws5_c00243{word-spacing:0.000000px;}
.ws10_c00243{word-spacing:0.035080px;}
.ws32_c00243{word-spacing:0.040926px;}
.ws11_c00243{word-spacing:0.046773px;}
.ws2a_c00243{word-spacing:0.052620px;}
.ws6_c00243{word-spacing:0.058466px;}
.wsf_c00243{word-spacing:0.064313px;}
.wsd_c00243{word-spacing:0.076006px;}
.ws12_c00243{word-spacing:0.081853px;}
.wse_c00243{word-spacing:0.099393px;}
.wsa_c00243{word-spacing:0.128626px;}
.ws3e_c00243{word-spacing:0.444345px;}
.ws3d_c00243{word-spacing:0.912076px;}
.ws24_c00243{word-spacing:1.753992px;}
.ws3a_c00243{word-spacing:1.853385px;}
.ws15_c00243{word-spacing:3.145492px;}
.ws41_c00243{word-spacing:4.080955px;}
.ws3b_c00243{word-spacing:6.174052px;}
.ws3c_c00243{word-spacing:6.624243px;}
.ws20_c00243{word-spacing:7.249834px;}
.ws1f_c00243{word-spacing:7.273220px;}
.ws22_c00243{word-spacing:7.594785px;}
.ws3f_c00243{word-spacing:8.799193px;}
.ws40_c00243{word-spacing:8.834273px;}
.ws35_c00243{word-spacing:9.933441px;}
.ws30_c00243{word-spacing:10.167307px;}
.ws36_c00243{word-spacing:10.518105px;}
.ws37_c00243{word-spacing:10.880597px;}
.ws17_c00243{word-spacing:12.003152px;}
.ws42_c00243{word-spacing:14.347655px;}
.ws27_c00243{word-spacing:17.352828px;}
.ws21_c00243{word-spacing:21.591642px;}
.ws26_c00243{word-spacing:24.550041px;}
.ws34_c00243{word-spacing:29.367673px;}
.ws39_c00243{word-spacing:32.121440px;}
.ws14_c00243{word-spacing:34.641342px;}
.ws1e_c00243{word-spacing:40.435362px;}
.ws23_c00243{word-spacing:40.780314px;}
.ws38_c00243{word-spacing:41.353285px;}
.ws33_c00243{word-spacing:50.474043px;}
.ws31_c00243{word-spacing:62.675981px;}
.ws25_c00243{word-spacing:65.336202px;}
.ws19_c00243{word-spacing:150.510054px;}
.ws29_c00243{word-spacing:227.644775px;}
.ws7_c00243{word-spacing:231.164452px;}
._3_c00243{margin-left:-232.579339px;}
._7_c00243{margin-left:-228.591931px;}
._5_c00243{margin-left:-150.270341px;}
._a_c00243{margin-left:-32.045434px;}
._f_c00243{margin-left:-5.314596px;}
._10_c00243{margin-left:-4.080955px;}
._e_c00243{margin-left:-2.709774px;}
._1_c00243{margin-left:-1.116708px;}
._0_c00243{width:1.040702px;}
._11_c00243{width:2.116484px;}
._d_c00243{width:5.930694px;}
._2_c00243{width:58.975058px;}
._6_c00243{width:63.248952px;}
._4_c00243{width:141.365909px;}
._b_c00243{width:241.197287px;}
._9_c00243{width:259.573276px;}
._8_c00243{width:261.455894px;}
._c_c00243{width:282.603191px;}
.fc2_c00243{color:rgb(255,0,255);}
.fc1_c00243{color:rgb(192,0,0);}
.fc0_c00243{color:rgb(0,0,0);}
.fs3_c00243{font-size:37.809600px;}
.fs2_c00243{font-size:46.562400px;}
.fs1_c00243{font-size:58.466400px;}
.fs0_c00243{font-size:70.020000px;}
.y0_c00243{bottom:0.000000px;}
.y2_c00243{bottom:109.740968px;}
.y1_c00243{bottom:129.810450px;}
.y59_c00243{bottom:182.460600px;}
.y58_c00243{bottom:220.800450px;}
.y57_c00243{bottom:238.710600px;}
.y56_c00243{bottom:252.929894px;}
.y55_c00243{bottom:270.750453px;}
.y54_c00243{bottom:288.660173px;}
.y53_c00243{bottom:306.569893px;}
.y52_c00243{bottom:324.390451px;}
.y51_c00243{bottom:342.300171px;}
.y50_c00243{bottom:360.209891px;}
.y4f_c00243{bottom:381.720450px;}
.y4e_c00243{bottom:396.390450px;}
.y4d_c00243{bottom:428.520600px;}
.y4c_c00243{bottom:446.069463px;}
.y4b_c00243{bottom:462.809855px;}
.y4a_c00243{bottom:479.550247px;}
.y49_c00243{bottom:496.379800px;}
.y40_c00243{bottom:499.712754px;}
.y48_c00243{bottom:513.120192px;}
.y37_c00243{bottom:516.540845px;}
.y3f_c00243{bottom:516.542307px;}
.y47_c00243{bottom:529.860584px;}
.y36_c00243{bottom:533.190614px;}
.y3e_c00243{bottom:533.192076px;}
.y46_c00243{bottom:546.690137px;}
.y35_c00243{bottom:550.020168px;}
.y3d_c00243{bottom:550.021629px;}
.y45_c00243{bottom:563.430529px;}
.y34_c00243{bottom:566.849721px;}
.y3c_c00243{bottom:566.851182px;}
.y44_c00243{bottom:580.260083px;}
.y33_c00243{bottom:583.590113px;}
.y3b_c00243{bottom:583.591574px;}
.y43_c00243{bottom:597.633742px;}
.y32_c00243{bottom:600.330505px;}
.y3a_c00243{bottom:600.331966px;}
.y31_c00243{bottom:617.070897px;}
.y39_c00243{bottom:617.072358px;}
.y42_c00243{bottom:617.073820px;}
.y30_c00243{bottom:633.900450px;}
.y38_c00243{bottom:633.901912px;}
.y41_c00243{bottom:633.903373px;}
.y2f_c00243{bottom:651.359910px;}
.y2e_c00243{bottom:668.189463px;}
.y2d_c00243{bottom:684.929855px;}
.y2c_c00243{bottom:701.670247px;}
.y2b_c00243{bottom:718.499800px;}
.y2a_c00243{bottom:735.240192px;}
.y29_c00243{bottom:752.069745px;}
.y20_c00243{bottom:755.399855px;}
.y28_c00243{bottom:768.810137px;}
.y1f_c00243{bottom:772.140247px;}
.y27_c00243{bottom:785.550529px;}
.y1e_c00243{bottom:788.969800px;}
.y26_c00243{bottom:802.380083px;}
.y1d_c00243{bottom:805.710192px;}
.y25_c00243{bottom:819.749828px;}
.y1c_c00243{bottom:822.539745px;}
.y1b_c00243{bottom:839.280137px;}
.y24_c00243{bottom:839.280529px;}
.y1a_c00243{bottom:856.020529px;}
.y23_c00243{bottom:856.020921px;}
.y17_c00243{bottom:859.439666px;}
.y19_c00243{bottom:872.850083px;}
.y22_c00243{bottom:873.480058px;}
.y16_c00243{bottom:876.180058px;}
.y18_c00243{bottom:890.219302px;}
.y21_c00243{bottom:892.920136px;}
.y15_c00243{bottom:892.920450px;}
.yf_c00243{bottom:910.470900px;}
.ye_c00243{bottom:927.300453px;}
.yd_c00243{bottom:943.950222px;}
.yc_c00243{bottom:960.779776px;}
.y14_c00243{bottom:960.781237px;}
.yb_c00243{bottom:977.520168px;}
.y13_c00243{bottom:985.891094px;}
.ya_c00243{bottom:994.349721px;}
.y9_c00243{bottom:1011.090113px;}
.y12_c00243{bottom:1011.091574px;}
.y8_c00243{bottom:1027.830505px;}
.y11_c00243{bottom:1036.201432px;}
.y7_c00243{bottom:1044.660058px;}
.y6_c00243{bottom:1061.400450px;}
.y10_c00243{bottom:1061.401912px;}
.y5_c00243{bottom:1078.949666px;}
.y4_c00243{bottom:1095.690058px;}
.y3_c00243{bottom:1112.430450px;}
.ha_c00243{height:39.337949px;}
.h8_c00243{height:39.338549px;}
.h3_c00243{height:52.271474px;}
.h2_c00243{height:52.414214px;}
.h9_c00243{height:54.098549px;}
.h1_c00243{height:62.771836px;}
.h5_c00243{height:73.670354px;}
.h6_c00243{height:74.031273px;}
.h7_c00243{height:74.129296px;}
.h4_c00243{height:74.147055px;}
.h0_c00243{height:1263.000000px;}
.w0_c00243{width:892.500000px;}
.x0_c00243{left:0.000000px;}
.x2_c00243{left:82.710059px;}
.x4_c00243{left:276.751212px;}
.x5_c00243{left:390.421587px;}
.x1_c00243{left:431.730000px;}
.x3_c00243{left:514.440000px;}
@media print{
.v2_c00243{vertical-align:-13.120000pt;}
.v0_c00243{vertical-align:0.000000pt;}
.v1_c00243{vertical-align:28.804081pt;}
.ls2f_c00243{letter-spacing:-0.582065pt;}
.ls2c_c00243{letter-spacing:-0.161107pt;}
.ls24_c00243{letter-spacing:-0.155910pt;}
.ls16_c00243{letter-spacing:-0.150713pt;}
.ls2d_c00243{letter-spacing:-0.129925pt;}
.ls19_c00243{letter-spacing:-0.124728pt;}
.ls14_c00243{letter-spacing:-0.119531pt;}
.ls26_c00243{letter-spacing:-0.114334pt;}
.ls1b_c00243{letter-spacing:-0.109137pt;}
.ls18_c00243{letter-spacing:-0.103940pt;}
.ls15_c00243{letter-spacing:-0.093546pt;}
.lsf_c00243{letter-spacing:-0.088349pt;}
.ls20_c00243{letter-spacing:-0.083152pt;}
.ls1a_c00243{letter-spacing:-0.077955pt;}
.ls27_c00243{letter-spacing:-0.072758pt;}
.ls10_c00243{letter-spacing:-0.067561pt;}
.ls29_c00243{letter-spacing:-0.067217pt;}
.lsd_c00243{letter-spacing:-0.056016pt;}
.ls2b_c00243{letter-spacing:-0.036379pt;}
.ls21_c00243{letter-spacing:-0.031182pt;}
.lse_c00243{letter-spacing:0.000000pt;}
.lsc_c00243{letter-spacing:0.005197pt;}
.ls3_c00243{letter-spacing:0.010394pt;}
.ls4_c00243{letter-spacing:0.020694pt;}
.ls9_c00243{letter-spacing:0.031182pt;}
.ls2_c00243{letter-spacing:0.046773pt;}
.ls12_c00243{letter-spacing:0.062364pt;}
.ls17_c00243{letter-spacing:0.067561pt;}
.lsa_c00243{letter-spacing:0.093546pt;}
.ls28_c00243{letter-spacing:0.098743pt;}
.ls5_c00243{letter-spacing:0.103940pt;}
.ls1e_c00243{letter-spacing:0.114334pt;}
.ls8_c00243{letter-spacing:0.124728pt;}
.ls13_c00243{letter-spacing:0.135122pt;}
.ls1f_c00243{letter-spacing:0.155910pt;}
.ls23_c00243{letter-spacing:0.166304pt;}
.ls1d_c00243{letter-spacing:0.171501pt;}
.ls6_c00243{letter-spacing:0.176698pt;}
.lsb_c00243{letter-spacing:0.181895pt;}
.ls22_c00243{letter-spacing:0.192289pt;}
.ls1_c00243{letter-spacing:0.202684pt;}
.ls7_c00243{letter-spacing:0.218275pt;}
.ls0_c00243{letter-spacing:0.223472pt;}
.ls1c_c00243{letter-spacing:0.228669pt;}
.ls11_c00243{letter-spacing:0.244260pt;}
.ls25_c00243{letter-spacing:0.254654pt;}
.ls31_c00243{letter-spacing:0.280639pt;}
.ls2a_c00243{letter-spacing:0.285836pt;}
.ls32_c00243{letter-spacing:0.296230pt;}
.ls30_c00243{letter-spacing:0.374185pt;}
.ls2e_c00243{letter-spacing:4.490220pt;}
.ws2_c00243{word-spacing:-14.603607pt;}
.ws0_c00243{word-spacing:-14.541243pt;}
.ws4_c00243{word-spacing:-14.395727pt;}
.ws1_c00243{word-spacing:-11.526781pt;}
.ws3_c00243{word-spacing:-9.242347pt;}
.wsc_c00243{word-spacing:-0.582065pt;}
.ws1d_c00243{word-spacing:-0.576868pt;}
.ws1c_c00243{word-spacing:-0.535292pt;}
.ws28_c00243{word-spacing:-0.524898pt;}
.ws9_c00243{word-spacing:-0.493716pt;}
.ws1b_c00243{word-spacing:-0.462534pt;}
.ws2d_c00243{word-spacing:-0.452140pt;}
.wsb_c00243{word-spacing:-0.426155pt;}
.ws8_c00243{word-spacing:-0.420958pt;}
.ws2c_c00243{word-spacing:-0.389776pt;}
.ws43_c00243{word-spacing:-0.363791pt;}
.ws2f_c00243{word-spacing:-0.296230pt;}
.ws45_c00243{word-spacing:-0.285836pt;}
.ws44_c00243{word-spacing:-0.270245pt;}
.ws16_c00243{word-spacing:-0.265048pt;}
.ws2b_c00243{word-spacing:-0.254654pt;}
.ws13_c00243{word-spacing:-0.239063pt;}
.ws2e_c00243{word-spacing:-0.218275pt;}
.ws1a_c00243{word-spacing:-0.150713pt;}
.ws18_c00243{word-spacing:-0.046773pt;}
.ws5_c00243{word-spacing:0.000000pt;}
.ws10_c00243{word-spacing:0.031182pt;}
.ws32_c00243{word-spacing:0.036379pt;}
.ws11_c00243{word-spacing:0.041576pt;}
.ws2a_c00243{word-spacing:0.046773pt;}
.ws6_c00243{word-spacing:0.051970pt;}
.wsf_c00243{word-spacing:0.057167pt;}
.wsd_c00243{word-spacing:0.067561pt;}
.ws12_c00243{word-spacing:0.072758pt;}
.wse_c00243{word-spacing:0.088349pt;}
.wsa_c00243{word-spacing:0.114334pt;}
.ws3e_c00243{word-spacing:0.394973pt;}
.ws3d_c00243{word-spacing:0.810734pt;}
.ws24_c00243{word-spacing:1.559104pt;}
.ws3a_c00243{word-spacing:1.647453pt;}
.ws15_c00243{word-spacing:2.795993pt;}
.ws41_c00243{word-spacing:3.627515pt;}
.ws3b_c00243{word-spacing:5.488046pt;}
.ws3c_c00243{word-spacing:5.888216pt;}
.ws20_c00243{word-spacing:6.444297pt;}
.ws1f_c00243{word-spacing:6.465085pt;}
.ws22_c00243{word-spacing:6.750920pt;}
.ws3f_c00243{word-spacing:7.821505pt;}
.ws40_c00243{word-spacing:7.852687pt;}
.ws35_c00243{word-spacing:8.829726pt;}
.ws30_c00243{word-spacing:9.037606pt;}
.ws36_c00243{word-spacing:9.349427pt;}
.ws37_c00243{word-spacing:9.671642pt;}
.ws17_c00243{word-spacing:10.669468pt;}
.ws42_c00243{word-spacing:12.753471pt;}
.ws27_c00243{word-spacing:15.424736pt;}
.ws21_c00243{word-spacing:19.192570pt;}
.ws26_c00243{word-spacing:21.822259pt;}
.ws34_c00243{word-spacing:26.104598pt;}
.ws39_c00243{word-spacing:28.552391pt;}
.ws14_c00243{word-spacing:30.792304pt;}
.ws1e_c00243{word-spacing:35.942544pt;}
.ws23_c00243{word-spacing:36.249168pt;}
.ws38_c00243{word-spacing:36.758475pt;}
.ws33_c00243{word-spacing:44.865816pt;}
.ws31_c00243{word-spacing:55.711983pt;}
.ws25_c00243{word-spacing:58.076624pt;}
.ws19_c00243{word-spacing:133.786714pt;}
.ws29_c00243{word-spacing:202.350911pt;}
.ws7_c00243{word-spacing:205.479513pt;}
._3_c00243{margin-left:-206.737190pt;}
._7_c00243{margin-left:-203.192827pt;}
._5_c00243{margin-left:-133.573637pt;}
._a_c00243{margin-left:-28.484830pt;}
._f_c00243{margin-left:-4.724085pt;}
._10_c00243{margin-left:-3.627515pt;}
._e_c00243{margin-left:-2.408688pt;}
._1_c00243{margin-left:-0.992630pt;}
._0_c00243{width:0.925068pt;}
._11_c00243{width:1.881319pt;}
._d_c00243{width:5.271728pt;}
._2_c00243{width:52.422273pt;}
._6_c00243{width:56.221290pt;}
._4_c00243{width:125.658585pt;}
._b_c00243{width:214.397588pt;}
._9_c00243{width:230.731801pt;}
._8_c00243{width:232.405239pt;}
._c_c00243{width:251.202836pt;}
.fs3_c00243{font-size:33.608533pt;}
.fs2_c00243{font-size:41.388800pt;}
.fs1_c00243{font-size:51.970133pt;}
.fs0_c00243{font-size:62.240000pt;}
.y0_c00243{bottom:0.000000pt;}
.y2_c00243{bottom:97.547527pt;}
.y1_c00243{bottom:115.387067pt;}
.y59_c00243{bottom:162.187200pt;}
.y58_c00243{bottom:196.267067pt;}
.y57_c00243{bottom:212.187200pt;}
.y56_c00243{bottom:224.826572pt;}
.y55_c00243{bottom:240.667069pt;}
.y54_c00243{bottom:256.586820pt;}
.y53_c00243{bottom:272.506571pt;}
.y52_c00243{bottom:288.347068pt;}
.y51_c00243{bottom:304.266819pt;}
.y50_c00243{bottom:320.186570pt;}
.y4f_c00243{bottom:339.307067pt;}
.y4e_c00243{bottom:352.347067pt;}
.y4d_c00243{bottom:380.907200pt;}
.y4c_c00243{bottom:396.506189pt;}
.y4b_c00243{bottom:411.386538pt;}
.y4a_c00243{bottom:426.266886pt;}
.y49_c00243{bottom:441.226489pt;}
.y40_c00243{bottom:444.189114pt;}
.y48_c00243{bottom:456.106837pt;}
.y37_c00243{bottom:459.147418pt;}
.y3f_c00243{bottom:459.148717pt;}
.y47_c00243{bottom:470.987186pt;}
.y36_c00243{bottom:473.947213pt;}
.y3e_c00243{bottom:473.948512pt;}
.y46_c00243{bottom:485.946789pt;}
.y35_c00243{bottom:488.906816pt;}
.y3d_c00243{bottom:488.908115pt;}
.y45_c00243{bottom:500.827137pt;}
.y34_c00243{bottom:503.866419pt;}
.y3c_c00243{bottom:503.867718pt;}
.y44_c00243{bottom:515.786740pt;}
.y33_c00243{bottom:518.746767pt;}
.y3b_c00243{bottom:518.748066pt;}
.y43_c00243{bottom:531.229993pt;}
.y32_c00243{bottom:533.627115pt;}
.y3a_c00243{bottom:533.628415pt;}
.y31_c00243{bottom:548.507464pt;}
.y39_c00243{bottom:548.508763pt;}
.y42_c00243{bottom:548.510062pt;}
.y30_c00243{bottom:563.467067pt;}
.y38_c00243{bottom:563.468366pt;}
.y41_c00243{bottom:563.469665pt;}
.y2f_c00243{bottom:578.986586pt;}
.y2e_c00243{bottom:593.946189pt;}
.y2d_c00243{bottom:608.826538pt;}
.y2c_c00243{bottom:623.706886pt;}
.y2b_c00243{bottom:638.666489pt;}
.y2a_c00243{bottom:653.546837pt;}
.y29_c00243{bottom:668.506440pt;}
.y20_c00243{bottom:671.466538pt;}
.y28_c00243{bottom:683.386789pt;}
.y1f_c00243{bottom:686.346886pt;}
.y27_c00243{bottom:698.267137pt;}
.y1e_c00243{bottom:701.306489pt;}
.y26_c00243{bottom:713.226740pt;}
.y1d_c00243{bottom:716.186837pt;}
.y25_c00243{bottom:728.666514pt;}
.y1c_c00243{bottom:731.146440pt;}
.y1b_c00243{bottom:746.026789pt;}
.y24_c00243{bottom:746.027137pt;}
.y1a_c00243{bottom:760.907137pt;}
.y23_c00243{bottom:760.907486pt;}
.y17_c00243{bottom:763.946370pt;}
.y19_c00243{bottom:775.866740pt;}
.y22_c00243{bottom:776.426718pt;}
.y16_c00243{bottom:778.826718pt;}
.y18_c00243{bottom:791.306047pt;}
.y21_c00243{bottom:793.706788pt;}
.y15_c00243{bottom:793.707067pt;}
.yf_c00243{bottom:809.307467pt;}
.ye_c00243{bottom:824.267070pt;}
.yd_c00243{bottom:839.066864pt;}
.yc_c00243{bottom:854.026467pt;}
.y14_c00243{bottom:854.027766pt;}
.yb_c00243{bottom:868.906816pt;}
.y13_c00243{bottom:876.347639pt;}
.ya_c00243{bottom:883.866419pt;}
.y9_c00243{bottom:898.746767pt;}
.y12_c00243{bottom:898.748066pt;}
.y8_c00243{bottom:913.627115pt;}
.y11_c00243{bottom:921.067939pt;}
.y7_c00243{bottom:928.586718pt;}
.y6_c00243{bottom:943.467067pt;}
.y10_c00243{bottom:943.468366pt;}
.y5_c00243{bottom:959.066370pt;}
.y4_c00243{bottom:973.946718pt;}
.y3_c00243{bottom:988.827067pt;}
.ha_c00243{height:34.967066pt;}
.h8_c00243{height:34.967599pt;}
.h3_c00243{height:46.463532pt;}
.h2_c00243{height:46.590412pt;}
.h9_c00243{height:48.087599pt;}
.h1_c00243{height:55.797187pt;}
.h5_c00243{height:65.484759pt;}
.h6_c00243{height:65.805576pt;}
.h7_c00243{height:65.892707pt;}
.h4_c00243{height:65.908493pt;}
.h0_c00243{height:1122.666667pt;}
.w0_c00243{width:793.333333pt;}
.x0_c00243{left:0.000000pt;}
.x2_c00243{left:73.520052pt;}
.x4_c00243{left:246.001077pt;}
.x5_c00243{left:347.041410pt;}
.x1_c00243{left:383.760000pt;}
.x3_c00243{left:457.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6a41e23b2c75a3c7a71ebc0e.woff2')format("woff");}.ff1_c00244{font-family:ff1_c00244;line-height:1.106934;font-style:normal;font-weight:normal;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_fbf38331e2433c973106a1a4.woff2')format("woff");}.ff2_c00244{font-family:ff2_c00244;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00244;src:url('chunks/assets/font_af2f5e445dcb7be80c2ef295.woff2')format("woff");}.ff3_c00244{font-family:ff3_c00244;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00244;src:url('chunks/assets/font_a12926c207225281a226b5d2.woff2')format("woff");}.ff4_c00244{font-family:ff4_c00244;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00244;src:url('chunks/assets/font_bbc2988d8ef2ecd3b198b0c1.woff2')format("woff");}.ff5_c00244{font-family:ff5_c00244;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00244;src:url('chunks/assets/font_ef4c4accfe1c8f372ef362aa.woff2')format("woff");}.ff6_c00244{font-family:ff6_c00244;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00244{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v4_c00244{vertical-align:-14.760600px;}
.v3_c00244{vertical-align:-5.760000px;}
.v0_c00244{vertical-align:0.000000px;}
.v2_c00244{vertical-align:5.760000px;}
.v1_c00244{vertical-align:32.396725px;}
.ls1e_c00244{letter-spacing:-0.311483px;}
.ls1d_c00244{letter-spacing:-0.252072px;}
.ls15_c00244{letter-spacing:-0.146166px;}
.ls1b_c00244{letter-spacing:-0.136749px;}
.ls9_c00244{letter-spacing:-0.134473px;}
.ls10_c00244{letter-spacing:-0.128626px;}
.lse_c00244{letter-spacing:-0.122779px;}
.ls17_c00244{letter-spacing:-0.116933px;}
.ls16_c00244{letter-spacing:-0.111086px;}
.ls14_c00244{letter-spacing:-0.105240px;}
.lsc_c00244{letter-spacing:-0.099393px;}
.ls11_c00244{letter-spacing:-0.093546px;}
.ls1c_c00244{letter-spacing:-0.091026px;}
.lsb_c00244{letter-spacing:-0.087700px;}
.ls13_c00244{letter-spacing:-0.081853px;}
.ls12_c00244{letter-spacing:-0.076006px;}
.ls1f_c00244{letter-spacing:-0.075619px;}
.ls18_c00244{letter-spacing:-0.073521px;}
.lsa_c00244{letter-spacing:-0.070160px;}
.ls7_c00244{letter-spacing:-0.063018px;}
.ls1a_c00244{letter-spacing:-0.028008px;}
.ls19_c00244{letter-spacing:-0.007002px;}
.ls20_c00244{letter-spacing:-0.005847px;}
.ls8_c00244{letter-spacing:0.000000px;}
.ls6_c00244{letter-spacing:0.005847px;}
.ls3_c00244{letter-spacing:0.010503px;}
.ls2_c00244{letter-spacing:0.023281px;}
.lsf_c00244{letter-spacing:0.152013px;}
.lsd_c00244{letter-spacing:0.163706px;}
.ls0_c00244{letter-spacing:0.169553px;}
.ls1_c00244{letter-spacing:0.198786px;}
.ls4_c00244{letter-spacing:0.333000px;}
.ls5_c00244{letter-spacing:0.356645px;}
.ls21_c00244{letter-spacing:0.537891px;}
.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;}
}
.ws4_c00244{word-spacing:-58.466400px;}
.ws2_c00244{word-spacing:-19.458558px;}
.ws5_c00244{word-spacing:-16.551838px;}
.ws1_c00244{word-spacing:-16.253659px;}
.ws0_c00244{word-spacing:-12.967628px;}
.ws3_c00244{word-spacing:-10.397640px;}
.wsa_c00244{word-spacing:-0.602204px;}
.ws8_c00244{word-spacing:-0.572971px;}
.ws2c_c00244{word-spacing:-0.526198px;}
.ws2b_c00244{word-spacing:-0.339105px;}
.ws20_c00244{word-spacing:-0.321565px;}
.ws1f_c00244{word-spacing:-0.309872px;}
.ws23_c00244{word-spacing:-0.304025px;}
.ws1e_c00244{word-spacing:-0.286485px;}
.ws21_c00244{word-spacing:-0.268945px;}
.ws1a_c00244{word-spacing:-0.257252px;}
.ws19_c00244{word-spacing:-0.239712px;}
.ws6_c00244{word-spacing:0.000000px;}
.ws26_c00244{word-spacing:0.014004px;}
.ws9_c00244{word-spacing:0.023387px;}
.ws25_c00244{word-spacing:0.029233px;}
.ws1c_c00244{word-spacing:0.035080px;}
.ws17_c00244{word-spacing:0.040926px;}
.wsb_c00244{word-spacing:0.046773px;}
.ws22_c00244{word-spacing:0.052620px;}
.wsc_c00244{word-spacing:0.058466px;}
.ws18_c00244{word-spacing:0.064313px;}
.ws1b_c00244{word-spacing:0.070160px;}
.ws24_c00244{word-spacing:0.076006px;}
.ws28_c00244{word-spacing:0.077022px;}
.wsf_c00244{word-spacing:0.081853px;}
.ws7_c00244{word-spacing:0.093546px;}
.ws1d_c00244{word-spacing:0.157545px;}
.ws27_c00244{word-spacing:0.265900px;}
.ws2a_c00244{word-spacing:0.440634px;}
.ws29_c00244{word-spacing:0.595170px;}
.ws15_c00244{word-spacing:3.671690px;}
.wse_c00244{word-spacing:5.554308px;}
.ws10_c00244{word-spacing:5.922646px;}
.wsd_c00244{word-spacing:8.594561px;}
.ws13_c00244{word-spacing:11.552961px;}
.ws11_c00244{word-spacing:13.762991px;}
.ws16_c00244{word-spacing:17.680239px;}
.ws12_c00244{word-spacing:17.691933px;}
.ws14_c00244{word-spacing:25.280871px;}
._45_c00244{margin-left:-7.582880px;}
._0_c00244{margin-left:-1.058242px;}
._1_c00244{width:1.040702px;}
._44_c00244{width:5.930694px;}
._3d_c00244{width:55.589853px;}
._15_c00244{width:59.852169px;}
._34_c00244{width:61.606046px;}
._1d_c00244{width:64.063872px;}
._11_c00244{width:66.604923px;}
._e_c00244{width:70.036901px;}
._40_c00244{width:74.562200px;}
._33_c00244{width:82.969668px;}
._18_c00244{width:84.443022px;}
._27_c00244{width:87.459888px;}
._42_c00244{width:89.190493px;}
._f_c00244{width:90.745699px;}
._32_c00244{width:92.243960px;}
._3f_c00244{width:105.531852px;}
._36_c00244{width:107.432010px;}
._9_c00244{width:112.430887px;}
._24_c00244{width:120.382318px;}
._38_c00244{width:123.206245px;}
._2d_c00244{width:124.942697px;}
._2a_c00244{width:128.053109px;}
._2e_c00244{width:132.940900px;}
._17_c00244{width:134.706586px;}
._c_c00244{width:136.022080px;}
._30_c00244{width:139.559297px;}
._26_c00244{width:144.499708px;}
._6_c00244{width:145.908748px;}
._5_c00244{width:147.686126px;}
._22_c00244{width:149.130246px;}
._b_c00244{width:157.555255px;}
._29_c00244{width:158.781528px;}
._21_c00244{width:160.513655px;}
._19_c00244{width:163.869626px;}
._8_c00244{width:169.125755px;}
._3_c00244{width:171.739203px;}
._1c_c00244{width:173.547336px;}
._41_c00244{width:180.468237px;}
._3a_c00244{width:194.358333px;}
._14_c00244{width:199.483031px;}
._2_c00244{width:202.644542px;}
._37_c00244{width:206.006360px;}
._1a_c00244{width:207.345241px;}
._3c_c00244{width:213.215268px;}
._12_c00244{width:217.062357px;}
._2b_c00244{width:226.832092px;}
._d_c00244{width:229.042122px;}
._2c_c00244{width:248.353574px;}
._23_c00244{width:258.146696px;}
._25_c00244{width:267.705952px;}
._1e_c00244{width:271.038537px;}
._39_c00244{width:290.607241px;}
._35_c00244{width:297.120398px;}
._31_c00244{width:300.242504px;}
._2f_c00244{width:306.796587px;}
._3e_c00244{width:326.371138px;}
._1b_c00244{width:329.405544px;}
._4_c00244{width:332.656276px;}
._28_c00244{width:339.239593px;}
._20_c00244{width:354.655662px;}
._10_c00244{width:358.714751px;}
._13_c00244{width:361.784237px;}
._3b_c00244{width:365.040815px;}
._1f_c00244{width:368.519566px;}
._7_c00244{width:381.364634px;}
._16_c00244{width:407.972693px;}
._a_c00244{width:478.120679px;}
._43_c00244{width:562.557854px;}
.fc1_c00244{color:rgb(192,0,0);}
.fc0_c00244{color:rgb(0,0,0);}
.fs5_c00244{font-size:37.809600px;}
.fs2_c00244{font-size:46.562400px;}
.fs3_c00244{font-size:52.515000px;}
.fs1_c00244{font-size:58.466400px;}
.fs0_c00244{font-size:70.020000px;}
.fs4_c00244{font-size:75.971400px;}
.y0_c00244{bottom:0.000000px;}
.y2_c00244{bottom:109.740968px;}
.y1_c00244{bottom:129.810450px;}
.y34_c00244{bottom:153.120600px;}
.y33_c00244{bottom:167.791143px;}
.y32_c00244{bottom:254.640450px;}
.y31_c00244{bottom:279.480729px;}
.y30_c00244{bottom:301.260450px;}
.y2f_c00244{bottom:340.320969px;}
.y2e_c00244{bottom:379.290600px;}
.y2d_c00244{bottom:399.450600px;}
.y2b_c00244{bottom:417.000600px;}
.y2a_c00244{bottom:434.460600px;}
.y29_c00244{bottom:452.010450px;}
.y28_c00244{bottom:469.470450px;}
.y27_c00244{bottom:487.020600px;}
.y26_c00244{bottom:504.480450px;}
.y25_c00244{bottom:522.030600px;}
.y24_c00244{bottom:539.490450px;}
.y23_c00244{bottom:557.040450px;}
.y22_c00244{bottom:574.500450px;}
.y21_c00244{bottom:592.050450px;}
.y20_c00244{bottom:609.510450px;}
.y1f_c00244{bottom:627.060450px;}
.y1e_c00244{bottom:644.520450px;}
.y1d_c00244{bottom:662.070450px;}
.y1c_c00244{bottom:679.530450px;}
.y1b_c00244{bottom:697.080450px;}
.y1a_c00244{bottom:714.540450px;}
.y19_c00244{bottom:732.090450px;}
.y18_c00244{bottom:750.990450px;}
.y17_c00244{bottom:767.100450px;}
.y16_c00244{bottom:784.560450px;}
.y15_c00244{bottom:802.110600px;}
.y14_c00244{bottom:819.570450px;}
.y13_c00244{bottom:837.120450px;}
.y12_c00244{bottom:854.580450px;}
.y11_c00244{bottom:872.130450px;}
.y10_c00244{bottom:889.590450px;}
.y2c_c00244{bottom:889.591819px;}
.yf_c00244{bottom:907.140450px;}
.ye_c00244{bottom:925.231269px;}
.yd_c00244{bottom:944.671347px;}
.yc_c00244{bottom:961.500900px;}
.yb_c00244{bottom:978.330453px;}
.ya_c00244{bottom:994.980222px;}
.y9_c00244{bottom:1011.809776px;}
.y8_c00244{bottom:1028.639329px;}
.y7_c00244{bottom:1045.379721px;}
.y6_c00244{bottom:1062.120113px;}
.y5_c00244{bottom:1078.949666px;}
.y4_c00244{bottom:1095.690058px;}
.y3_c00244{bottom:1112.430450px;}
.ha_c00244{height:39.337949px;}
.h6_c00244{height:47.078877px;}
.h3_c00244{height:52.271474px;}
.h2_c00244{height:52.414214px;}
.h5_c00244{height:52.838877px;}
.h1_c00244{height:62.771836px;}
.h7_c00244{height:63.216299px;}
.h8_c00244{height:68.589413px;}
.h9_c00244{height:73.028672px;}
.h4_c00244{height:74.025511px;}
.h0_c00244{height:1263.000000px;}
.w0_c00244{width:892.500000px;}
.x0_c00244{left:0.000000px;}
.x2_c00244{left:82.710059px;}
.x5_c00244{left:141.390000px;}
.x7_c00244{left:179.100000px;}
.x8_c00244{left:339.300000px;}
.x3_c00244{left:390.420000px;}
.x1_c00244{left:431.730000px;}
.x9_c00244{left:446.400841px;}
.x4_c00244{left:514.440389px;}
.x6_c00244{left:566.192048px;}
@media print{
.v4_c00244{vertical-align:-13.120533pt;}
.v3_c00244{vertical-align:-5.120000pt;}
.v0_c00244{vertical-align:0.000000pt;}
.v2_c00244{vertical-align:5.120000pt;}
.v1_c00244{vertical-align:28.797089pt;}
.ls1e_c00244{letter-spacing:-0.276874pt;}
.ls1d_c00244{letter-spacing:-0.224064pt;}
.ls15_c00244{letter-spacing:-0.129925pt;}
.ls1b_c00244{letter-spacing:-0.121554pt;}
.ls9_c00244{letter-spacing:-0.119531pt;}
.ls10_c00244{letter-spacing:-0.114334pt;}
.lse_c00244{letter-spacing:-0.109137pt;}
.ls17_c00244{letter-spacing:-0.103940pt;}
.ls16_c00244{letter-spacing:-0.098743pt;}
.ls14_c00244{letter-spacing:-0.093546pt;}
.lsc_c00244{letter-spacing:-0.088349pt;}
.ls11_c00244{letter-spacing:-0.083152pt;}
.ls1c_c00244{letter-spacing:-0.080912pt;}
.lsb_c00244{letter-spacing:-0.077955pt;}
.ls13_c00244{letter-spacing:-0.072758pt;}
.ls12_c00244{letter-spacing:-0.067561pt;}
.ls1f_c00244{letter-spacing:-0.067217pt;}
.ls18_c00244{letter-spacing:-0.065352pt;}
.lsa_c00244{letter-spacing:-0.062364pt;}
.ls7_c00244{letter-spacing:-0.056016pt;}
.ls1a_c00244{letter-spacing:-0.024896pt;}
.ls19_c00244{letter-spacing:-0.006224pt;}
.ls20_c00244{letter-spacing:-0.005197pt;}
.ls8_c00244{letter-spacing:0.000000pt;}
.ls6_c00244{letter-spacing:0.005197pt;}
.ls3_c00244{letter-spacing:0.009336pt;}
.ls2_c00244{letter-spacing:0.020694pt;}
.lsf_c00244{letter-spacing:0.135122pt;}
.lsd_c00244{letter-spacing:0.145516pt;}
.ls0_c00244{letter-spacing:0.150713pt;}
.ls1_c00244{letter-spacing:0.176698pt;}
.ls4_c00244{letter-spacing:0.296000pt;}
.ls5_c00244{letter-spacing:0.317018pt;}
.ls21_c00244{letter-spacing:0.478125pt;}
.ws4_c00244{word-spacing:-51.970133pt;}
.ws2_c00244{word-spacing:-17.296496pt;}
.ws5_c00244{word-spacing:-14.712745pt;}
.ws1_c00244{word-spacing:-14.447697pt;}
.ws0_c00244{word-spacing:-11.526781pt;}
.ws3_c00244{word-spacing:-9.242347pt;}
.wsa_c00244{word-spacing:-0.535292pt;}
.ws8_c00244{word-spacing:-0.509307pt;}
.ws2c_c00244{word-spacing:-0.467731pt;}
.ws2b_c00244{word-spacing:-0.301427pt;}
.ws20_c00244{word-spacing:-0.285836pt;}
.ws1f_c00244{word-spacing:-0.275442pt;}
.ws23_c00244{word-spacing:-0.270245pt;}
.ws1e_c00244{word-spacing:-0.254654pt;}
.ws21_c00244{word-spacing:-0.239063pt;}
.ws1a_c00244{word-spacing:-0.228669pt;}
.ws19_c00244{word-spacing:-0.213078pt;}
.ws6_c00244{word-spacing:0.000000pt;}
.ws26_c00244{word-spacing:0.012448pt;}
.ws9_c00244{word-spacing:0.020788pt;}
.ws25_c00244{word-spacing:0.025985pt;}
.ws1c_c00244{word-spacing:0.031182pt;}
.ws17_c00244{word-spacing:0.036379pt;}
.wsb_c00244{word-spacing:0.041576pt;}
.ws22_c00244{word-spacing:0.046773pt;}
.wsc_c00244{word-spacing:0.051970pt;}
.ws18_c00244{word-spacing:0.057167pt;}
.ws1b_c00244{word-spacing:0.062364pt;}
.ws24_c00244{word-spacing:0.067561pt;}
.ws28_c00244{word-spacing:0.068464pt;}
.wsf_c00244{word-spacing:0.072758pt;}
.ws7_c00244{word-spacing:0.083152pt;}
.ws1d_c00244{word-spacing:0.140040pt;}
.ws27_c00244{word-spacing:0.236355pt;}
.ws2a_c00244{word-spacing:0.391675pt;}
.ws29_c00244{word-spacing:0.529040pt;}
.ws15_c00244{word-spacing:3.263724pt;}
.wse_c00244{word-spacing:4.937163pt;}
.ws10_c00244{word-spacing:5.264575pt;}
.wsd_c00244{word-spacing:7.639610pt;}
.ws13_c00244{word-spacing:10.269298pt;}
.ws11_c00244{word-spacing:12.233769pt;}
.ws16_c00244{word-spacing:15.715768pt;}
.ws12_c00244{word-spacing:15.726162pt;}
.ws14_c00244{word-spacing:22.471886pt;}
._45_c00244{margin-left:-6.740338pt;}
._0_c00244{margin-left:-0.940659pt;}
._1_c00244{width:0.925068pt;}
._44_c00244{width:5.271728pt;}
._3d_c00244{width:49.413203pt;}
._15_c00244{width:53.201928pt;}
._34_c00244{width:54.760929pt;}
._1d_c00244{width:56.945664pt;}
._11_c00244{width:59.204376pt;}
._e_c00244{width:62.255023pt;}
._40_c00244{width:66.277511pt;}
._33_c00244{width:73.750816pt;}
._18_c00244{width:75.060464pt;}
._27_c00244{width:77.742122pt;}
._42_c00244{width:79.280438pt;}
._f_c00244{width:80.662844pt;}
._32_c00244{width:81.994631pt;}
._3f_c00244{width:93.806091pt;}
._36_c00244{width:95.495120pt;}
._9_c00244{width:99.938566pt;}
._24_c00244{width:107.006505pt;}
._38_c00244{width:109.516662pt;}
._2d_c00244{width:111.060175pt;}
._2a_c00244{width:113.824986pt;}
._2e_c00244{width:118.169689pt;}
._17_c00244{width:119.739187pt;}
._c_c00244{width:120.908515pt;}
._30_c00244{width:124.052708pt;}
._26_c00244{width:128.444185pt;}
._6_c00244{width:129.696665pt;}
._5_c00244{width:131.276557pt;}
._22_c00244{width:132.560219pt;}
._b_c00244{width:140.049115pt;}
._29_c00244{width:141.139136pt;}
._21_c00244{width:142.678804pt;}
._19_c00244{width:145.661890pt;}
._8_c00244{width:150.334005pt;}
._3_c00244{width:152.657070pt;}
._1c_c00244{width:154.264298pt;}
._41_c00244{width:160.416211pt;}
._3a_c00244{width:172.762963pt;}
._14_c00244{width:177.318250pt;}
._2_c00244{width:180.128482pt;}
._37_c00244{width:183.116765pt;}
._1a_c00244{width:184.306881pt;}
._3c_c00244{width:189.524682pt;}
._12_c00244{width:192.944317pt;}
._2b_c00244{width:201.628526pt;}
._d_c00244{width:203.592997pt;}
._2c_c00244{width:220.758732pt;}
._23_c00244{width:229.463730pt;}
._25_c00244{width:237.960847pt;}
._1e_c00244{width:240.923144pt;}
._39_c00244{width:258.317548pt;}
._35_c00244{width:264.107021pt;}
._31_c00244{width:266.882226pt;}
._2f_c00244{width:272.708078pt;}
._3e_c00244{width:290.107678pt;}
._1b_c00244{width:292.804928pt;}
._4_c00244{width:295.694468pt;}
._28_c00244{width:301.546305pt;}
._20_c00244{width:315.249477pt;}
._10_c00244{width:318.857556pt;}
._13_c00244{width:321.585988pt;}
._3b_c00244{width:324.480724pt;}
._1f_c00244{width:327.572947pt;}
._7_c00244{width:338.990786pt;}
._16_c00244{width:362.642393pt;}
._a_c00244{width:424.996159pt;}
._43_c00244{width:500.051426pt;}
.fs5_c00244{font-size:33.608533pt;}
.fs2_c00244{font-size:41.388800pt;}
.fs3_c00244{font-size:46.680000pt;}
.fs1_c00244{font-size:51.970133pt;}
.fs0_c00244{font-size:62.240000pt;}
.fs4_c00244{font-size:67.530133pt;}
.y0_c00244{bottom:0.000000pt;}
.y2_c00244{bottom:97.547527pt;}
.y1_c00244{bottom:115.387067pt;}
.y34_c00244{bottom:136.107200pt;}
.y33_c00244{bottom:149.147683pt;}
.y32_c00244{bottom:226.347067pt;}
.y31_c00244{bottom:248.427315pt;}
.y30_c00244{bottom:267.787067pt;}
.y2f_c00244{bottom:302.507528pt;}
.y2e_c00244{bottom:337.147200pt;}
.y2d_c00244{bottom:355.067200pt;}
.y2b_c00244{bottom:370.667200pt;}
.y2a_c00244{bottom:386.187200pt;}
.y29_c00244{bottom:401.787067pt;}
.y28_c00244{bottom:417.307067pt;}
.y27_c00244{bottom:432.907200pt;}
.y26_c00244{bottom:448.427067pt;}
.y25_c00244{bottom:464.027200pt;}
.y24_c00244{bottom:479.547067pt;}
.y23_c00244{bottom:495.147067pt;}
.y22_c00244{bottom:510.667067pt;}
.y21_c00244{bottom:526.267067pt;}
.y20_c00244{bottom:541.787067pt;}
.y1f_c00244{bottom:557.387067pt;}
.y1e_c00244{bottom:572.907067pt;}
.y1d_c00244{bottom:588.507067pt;}
.y1c_c00244{bottom:604.027067pt;}
.y1b_c00244{bottom:619.627067pt;}
.y1a_c00244{bottom:635.147067pt;}
.y19_c00244{bottom:650.747067pt;}
.y18_c00244{bottom:667.547067pt;}
.y17_c00244{bottom:681.867067pt;}
.y16_c00244{bottom:697.387067pt;}
.y15_c00244{bottom:712.987200pt;}
.y14_c00244{bottom:728.507067pt;}
.y13_c00244{bottom:744.107067pt;}
.y12_c00244{bottom:759.627067pt;}
.y11_c00244{bottom:775.227067pt;}
.y10_c00244{bottom:790.747067pt;}
.y2c_c00244{bottom:790.748284pt;}
.yf_c00244{bottom:806.347067pt;}
.ye_c00244{bottom:822.427795pt;}
.yd_c00244{bottom:839.707864pt;}
.yc_c00244{bottom:854.667467pt;}
.yb_c00244{bottom:869.627070pt;}
.ya_c00244{bottom:884.426864pt;}
.y9_c00244{bottom:899.386467pt;}
.y8_c00244{bottom:914.346070pt;}
.y7_c00244{bottom:929.226419pt;}
.y6_c00244{bottom:944.106767pt;}
.y5_c00244{bottom:959.066370pt;}
.y4_c00244{bottom:973.946718pt;}
.y3_c00244{bottom:988.827067pt;}
.ha_c00244{height:34.967066pt;}
.h6_c00244{height:41.847891pt;}
.h3_c00244{height:46.463532pt;}
.h2_c00244{height:46.590412pt;}
.h5_c00244{height:46.967891pt;}
.h1_c00244{height:55.797187pt;}
.h7_c00244{height:56.192266pt;}
.h8_c00244{height:60.968367pt;}
.h9_c00244{height:64.914375pt;}
.h4_c00244{height:65.800454pt;}
.h0_c00244{height:1122.666667pt;}
.w0_c00244{width:793.333333pt;}
.x0_c00244{left:0.000000pt;}
.x2_c00244{left:73.520052pt;}
.x5_c00244{left:125.680000pt;}
.x7_c00244{left:159.200000pt;}
.x8_c00244{left:301.600000pt;}
.x3_c00244{left:347.040000pt;}
.x1_c00244{left:383.760000pt;}
.x9_c00244{left:396.800748pt;}
.x4_c00244{left:457.280346pt;}
.x6_c00244{left:503.281821pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9649dc1e27f3eb86b8c5c50b.woff2')format("woff");}.ff1_c00245{font-family:ff1_c00245;line-height:1.106934;font-style:normal;font-weight:normal;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_b48f81068633e3534102f4f0.woff2')format("woff");}.ff2_c00245{font-family:ff2_c00245;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00245;src:url('chunks/assets/font_eecd6b94c0337c6d1eefbb57.woff2')format("woff");}.ff3_c00245{font-family:ff3_c00245;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00245;src:url('chunks/assets/font_9eb54b5f269a985776e7cf64.woff2')format("woff");}.ff4_c00245{font-family:ff4_c00245;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00245{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00245{vertical-align:-32.400000px;}
.v3_c00245{vertical-align:-14.760000px;}
.v0_c00245{vertical-align:0.000000px;}
.v1_c00245{vertical-align:32.044032px;}
.ls1f_c00245{letter-spacing:-0.187092px;}
.ls1e_c00245{letter-spacing:-0.175399px;}
.ls1b_c00245{letter-spacing:-0.146166px;}
.ls1a_c00245{letter-spacing:-0.111086px;}
.ls15_c00245{letter-spacing:-0.075619px;}
.ls11_c00245{letter-spacing:-0.070020px;}
.lsb_c00245{letter-spacing:-0.063018px;}
.ls22_c00245{letter-spacing:-0.058466px;}
.ls13_c00245{letter-spacing:-0.042012px;}
.lsd_c00245{letter-spacing:-0.035010px;}
.lse_c00245{letter-spacing:-0.028008px;}
.ls19_c00245{letter-spacing:-0.023387px;}
.ls12_c00245{letter-spacing:-0.021006px;}
.ls18_c00245{letter-spacing:-0.017540px;}
.lsf_c00245{letter-spacing:-0.014004px;}
.ls14_c00245{letter-spacing:-0.007002px;}
.lsc_c00245{letter-spacing:0.000000px;}
.ls20_c00245{letter-spacing:0.011693px;}
.ls0_c00245{letter-spacing:0.014004px;}
.ls1_c00245{letter-spacing:0.023281px;}
.ls3_c00245{letter-spacing:0.028008px;}
.ls1d_c00245{letter-spacing:0.029233px;}
.ls5_c00245{letter-spacing:0.042012px;}
.ls7_c00245{letter-spacing:0.046773px;}
.ls1c_c00245{letter-spacing:0.052620px;}
.lsa_c00245{letter-spacing:0.081853px;}
.ls17_c00245{letter-spacing:0.099393px;}
.ls2_c00245{letter-spacing:0.112032px;}
.ls21_c00245{letter-spacing:0.333258px;}
.ls10_c00245{letter-spacing:0.343098px;}
.ls16_c00245{letter-spacing:0.344952px;}
.ls6_c00245{letter-spacing:1.806612px;}
.ls8_c00245{letter-spacing:8.284689px;}
.ls4_c00245{letter-spacing:9.015653px;}
.ls9_c00245{letter-spacing:9.366317px;}
.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;}
}
.ws1_c00245{word-spacing:-19.402542px;}
.ws0_c00245{word-spacing:-12.967628px;}
.ws2_c00245{word-spacing:-10.397640px;}
.ws25_c00245{word-spacing:-0.233866px;}
.ws6_c00245{word-spacing:-0.028008px;}
.ws3_c00245{word-spacing:0.000000px;}
.wsb_c00245{word-spacing:0.007002px;}
.wse_c00245{word-spacing:0.014004px;}
.ws1b_c00245{word-spacing:0.021006px;}
.ws23_c00245{word-spacing:0.029233px;}
.ws24_c00245{word-spacing:0.035080px;}
.wsa_c00245{word-spacing:0.049014px;}
.ws8_c00245{word-spacing:0.056016px;}
.ws26_c00245{word-spacing:0.157859px;}
.ws2a_c00245{word-spacing:0.187092px;}
.ws1a_c00245{word-spacing:0.301086px;}
.ws20_c00245{word-spacing:0.371106px;}
.ws22_c00245{word-spacing:1.409040px;}
.ws21_c00245{word-spacing:1.713066px;}
.ws1e_c00245{word-spacing:2.870820px;}
.ws1f_c00245{word-spacing:2.891826px;}
.ws1d_c00245{word-spacing:3.255930px;}
.ws14_c00245{word-spacing:3.592026px;}
.wsd_c00245{word-spacing:4.278222px;}
.wsc_c00245{word-spacing:4.320234px;}
.ws7_c00245{word-spacing:4.663332px;}
.ws1c_c00245{word-spacing:5.398542px;}
.ws9_c00245{word-spacing:6.483852px;}
.ws28_c00245{word-spacing:8.600407px;}
.ws27_c00245{word-spacing:8.606254px;}
.ws29_c00245{word-spacing:8.623794px;}
.ws16_c00245{word-spacing:8.969562px;}
.ws17_c00245{word-spacing:9.004572px;}
.ws15_c00245{word-spacing:9.018576px;}
.ws2d_c00245{word-spacing:9.290311px;}
.ws2b_c00245{word-spacing:9.325391px;}
.ws2c_c00245{word-spacing:9.360471px;}
.ws5_c00245{word-spacing:21.972276px;}
.ws4_c00245{word-spacing:22.343382px;}
.wsf_c00245{word-spacing:23.358672px;}
.ws11_c00245{word-spacing:23.743782px;}
.ws10_c00245{word-spacing:23.785794px;}
.ws13_c00245{word-spacing:24.114888px;}
.ws12_c00245{word-spacing:24.135894px;}
.ws19_c00245{word-spacing:25.907400px;}
.ws18_c00245{word-spacing:26.264502px;}
.ws2e_c00245{word-spacing:97.960453px;}
._3_c00245{margin-left:-2.709702px;}
._0_c00245{margin-left:-1.008288px;}
._1_c00245{width:1.057302px;}
._2_c00245{width:5.930694px;}
._4_c00245{width:7.428808px;}
._5_c00245{width:10.075185px;}
.fc0_c00245{color:rgb(0,0,0);}
.fs2_c00245{font-size:37.809600px;}
.fs1_c00245{font-size:46.562400px;}
.fs3_c00245{font-size:58.466400px;}
.fs0_c00245{font-size:70.020000px;}
.y0_c00245{bottom:0.000000px;}
.y2_c00245{bottom:109.740968px;}
.y1_c00245{bottom:129.810450px;}
.y23_c00245{bottom:153.840171px;}
.y22_c00245{bottom:171.660730px;}
.y21_c00245{bottom:193.260450px;}
.y20_c00245{bottom:224.940107px;}
.y1f_c00245{bottom:246.540600px;}
.y1e_c00245{bottom:281.910450px;}
.y1d_c00245{bottom:296.130730px;}
.y1c_c00245{bottom:317.730450px;}
.y1b_c00245{bottom:332.490416px;}
.y1a_c00245{bottom:375.150101px;}
.y19_c00245{bottom:405.389988px;}
.y18_c00245{bottom:435.540279px;}
.y17_c00245{bottom:465.780166px;}
.y16_c00245{bottom:495.930778px;}
.y15_c00245{bottom:546.420675px;}
.y14_c00245{bottom:576.749838px;}
.y13_c00245{bottom:606.898367px;}
.y12_c00245{bottom:637.138254px;}
.y11_c00245{bottom:667.288866px;}
.y10_c00245{bottom:697.439478px;}
.yf_c00245{bottom:748.109451px;}
.ye_c00245{bottom:778.260063px;}
.yd_c00245{bottom:808.499950px;}
.yc_c00245{bottom:838.650562px;}
.yb_c00245{bottom:868.890063px;}
.ya_c00245{bottom:899.040675px;}
.y9_c00245{bottom:929.280563px;}
.y8_c00245{bottom:959.519442px;}
.y7_c00245{bottom:989.670054px;}
.y6_c00245{bottom:1019.909942px;}
.y5_c00245{bottom:1050.060553px;}
.y4_c00245{bottom:1080.300441px;}
.y3_c00245{bottom:1110.451053px;}
.h9_c00245{height:39.338549px;}
.hc_c00245{height:39.697949px;}
.hb_c00245{height:39.698549px;}
.ha_c00245{height:54.098549px;}
.h2_c00245{height:62.600889px;}
.h1_c00245{height:62.771836px;}
.h8_c00245{height:62.771974px;}
.h4_c00245{height:73.670334px;}
.h3_c00245{height:73.672818px;}
.h7_c00245{height:74.029470px;}
.h6_c00245{height:74.141564px;}
.h5_c00245{height:74.150798px;}
.h0_c00245{height:1263.000000px;}
.w0_c00245{width:892.500000px;}
.x0_c00245{left:0.000000px;}
.x2_c00245{left:82.710059px;}
.x1_c00245{left:431.730000px;}
@media print{
.v2_c00245{vertical-align:-28.800000pt;}
.v3_c00245{vertical-align:-13.120000pt;}
.v0_c00245{vertical-align:0.000000pt;}
.v1_c00245{vertical-align:28.483584pt;}
.ls1f_c00245{letter-spacing:-0.166304pt;}
.ls1e_c00245{letter-spacing:-0.155910pt;}
.ls1b_c00245{letter-spacing:-0.129925pt;}
.ls1a_c00245{letter-spacing:-0.098743pt;}
.ls15_c00245{letter-spacing:-0.067217pt;}
.ls11_c00245{letter-spacing:-0.062240pt;}
.lsb_c00245{letter-spacing:-0.056016pt;}
.ls22_c00245{letter-spacing:-0.051970pt;}
.ls13_c00245{letter-spacing:-0.037344pt;}
.lsd_c00245{letter-spacing:-0.031120pt;}
.lse_c00245{letter-spacing:-0.024896pt;}
.ls19_c00245{letter-spacing:-0.020788pt;}
.ls12_c00245{letter-spacing:-0.018672pt;}
.ls18_c00245{letter-spacing:-0.015591pt;}
.lsf_c00245{letter-spacing:-0.012448pt;}
.ls14_c00245{letter-spacing:-0.006224pt;}
.lsc_c00245{letter-spacing:0.000000pt;}
.ls20_c00245{letter-spacing:0.010394pt;}
.ls0_c00245{letter-spacing:0.012448pt;}
.ls1_c00245{letter-spacing:0.020694pt;}
.ls3_c00245{letter-spacing:0.024896pt;}
.ls1d_c00245{letter-spacing:0.025985pt;}
.ls5_c00245{letter-spacing:0.037344pt;}
.ls7_c00245{letter-spacing:0.041576pt;}
.ls1c_c00245{letter-spacing:0.046773pt;}
.lsa_c00245{letter-spacing:0.072758pt;}
.ls17_c00245{letter-spacing:0.088349pt;}
.ls2_c00245{letter-spacing:0.099584pt;}
.ls21_c00245{letter-spacing:0.296230pt;}
.ls10_c00245{letter-spacing:0.304976pt;}
.ls16_c00245{letter-spacing:0.306624pt;}
.ls6_c00245{letter-spacing:1.605877pt;}
.ls8_c00245{letter-spacing:7.364168pt;}
.ls4_c00245{letter-spacing:8.013914pt;}
.ls9_c00245{letter-spacing:8.325615pt;}
.ws1_c00245{word-spacing:-17.246704pt;}
.ws0_c00245{word-spacing:-11.526781pt;}
.ws2_c00245{word-spacing:-9.242347pt;}
.ws25_c00245{word-spacing:-0.207881pt;}
.ws6_c00245{word-spacing:-0.024896pt;}
.ws3_c00245{word-spacing:0.000000pt;}
.wsb_c00245{word-spacing:0.006224pt;}
.wse_c00245{word-spacing:0.012448pt;}
.ws1b_c00245{word-spacing:0.018672pt;}
.ws23_c00245{word-spacing:0.025985pt;}
.ws24_c00245{word-spacing:0.031182pt;}
.wsa_c00245{word-spacing:0.043568pt;}
.ws8_c00245{word-spacing:0.049792pt;}
.ws26_c00245{word-spacing:0.140319pt;}
.ws2a_c00245{word-spacing:0.166304pt;}
.ws1a_c00245{word-spacing:0.267632pt;}
.ws20_c00245{word-spacing:0.329872pt;}
.ws22_c00245{word-spacing:1.252480pt;}
.ws21_c00245{word-spacing:1.522725pt;}
.ws1e_c00245{word-spacing:2.551840pt;}
.ws1f_c00245{word-spacing:2.570512pt;}
.ws1d_c00245{word-spacing:2.894160pt;}
.ws14_c00245{word-spacing:3.192912pt;}
.wsd_c00245{word-spacing:3.802864pt;}
.wsc_c00245{word-spacing:3.840208pt;}
.ws7_c00245{word-spacing:4.145184pt;}
.ws1c_c00245{word-spacing:4.798704pt;}
.ws9_c00245{word-spacing:5.763424pt;}
.ws28_c00245{word-spacing:7.644807pt;}
.ws27_c00245{word-spacing:7.650004pt;}
.ws29_c00245{word-spacing:7.665595pt;}
.ws16_c00245{word-spacing:7.972944pt;}
.ws17_c00245{word-spacing:8.004064pt;}
.ws15_c00245{word-spacing:8.016512pt;}
.ws2d_c00245{word-spacing:8.258054pt;}
.ws2b_c00245{word-spacing:8.289236pt;}
.ws2c_c00245{word-spacing:8.320418pt;}
.ws5_c00245{word-spacing:19.530912pt;}
.ws4_c00245{word-spacing:19.860784pt;}
.wsf_c00245{word-spacing:20.763264pt;}
.ws11_c00245{word-spacing:21.105584pt;}
.ws10_c00245{word-spacing:21.142928pt;}
.ws13_c00245{word-spacing:21.435456pt;}
.ws12_c00245{word-spacing:21.454128pt;}
.ws19_c00245{word-spacing:23.028800pt;}
.ws18_c00245{word-spacing:23.346224pt;}
.ws2e_c00245{word-spacing:87.075958pt;}
._3_c00245{margin-left:-2.408624pt;}
._0_c00245{margin-left:-0.896256pt;}
._1_c00245{width:0.939824pt;}
._2_c00245{width:5.271728pt;}
._4_c00245{width:6.603385pt;}
._5_c00245{width:8.955720pt;}
.fs2_c00245{font-size:33.608533pt;}
.fs1_c00245{font-size:41.388800pt;}
.fs3_c00245{font-size:51.970133pt;}
.fs0_c00245{font-size:62.240000pt;}
.y0_c00245{bottom:0.000000pt;}
.y2_c00245{bottom:97.547527pt;}
.y1_c00245{bottom:115.387067pt;}
.y23_c00245{bottom:136.746819pt;}
.y22_c00245{bottom:152.587316pt;}
.y21_c00245{bottom:171.787067pt;}
.y20_c00245{bottom:199.946762pt;}
.y1f_c00245{bottom:219.147200pt;}
.y1e_c00245{bottom:250.587067pt;}
.y1d_c00245{bottom:263.227316pt;}
.y1c_c00245{bottom:282.427067pt;}
.y1b_c00245{bottom:295.547036pt;}
.y1a_c00245{bottom:333.466756pt;}
.y19_c00245{bottom:360.346656pt;}
.y18_c00245{bottom:387.146915pt;}
.y17_c00245{bottom:414.026815pt;}
.y16_c00245{bottom:440.827359pt;}
.y15_c00245{bottom:485.707267pt;}
.y14_c00245{bottom:512.666523pt;}
.y13_c00245{bottom:539.465215pt;}
.y12_c00245{bottom:566.345115pt;}
.y11_c00245{bottom:593.145659pt;}
.y10_c00245{bottom:619.946203pt;}
.yf_c00245{bottom:664.986179pt;}
.ye_c00245{bottom:691.786723pt;}
.yd_c00245{bottom:718.666623pt;}
.yc_c00245{bottom:745.467167pt;}
.yb_c00245{bottom:772.346723pt;}
.ya_c00245{bottom:799.147267pt;}
.y9_c00245{bottom:826.027167pt;}
.y8_c00245{bottom:852.906171pt;}
.y7_c00245{bottom:879.706715pt;}
.y6_c00245{bottom:906.586615pt;}
.y5_c00245{bottom:933.387159pt;}
.y4_c00245{bottom:960.267059pt;}
.y3_c00245{bottom:987.067603pt;}
.h9_c00245{height:34.967599pt;}
.hc_c00245{height:35.287066pt;}
.hb_c00245{height:35.287599pt;}
.ha_c00245{height:48.087599pt;}
.h2_c00245{height:55.645234pt;}
.h1_c00245{height:55.797187pt;}
.h8_c00245{height:55.797310pt;}
.h4_c00245{height:65.484742pt;}
.h3_c00245{height:65.486950pt;}
.h7_c00245{height:65.803974pt;}
.h6_c00245{height:65.903613pt;}
.h5_c00245{height:65.911820pt;}
.h0_c00245{height:1122.666667pt;}
.w0_c00245{width:793.333333pt;}
.x0_c00245{left:0.000000pt;}
.x2_c00245{left:73.520052pt;}
.x1_c00245{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_87ca7a00bfec9d206e728805.woff2')format("woff");}.ff1_c00246{font-family:ff1_c00246;line-height:1.106934;font-style:normal;font-weight:normal;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_62364cd5a3b84dbf5dde75c5.woff2')format("woff");}.ff2_c00246{font-family:ff2_c00246;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00246;src:url('chunks/assets/font_5be2f26890ab094cfa0e95f2.woff2')format("woff");}.ff3_c00246{font-family:ff3_c00246;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00246;src:url('chunks/assets/font_587da32f32e091c8eebe00b9.woff2')format("woff");}.ff4_c00246{font-family:ff4_c00246;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00246;src:url('chunks/assets/font_0ad308556a2879531e580275.woff2')format("woff");}.ff5_c00246{font-family:ff5_c00246;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00246{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00246{vertical-align:-14.760000px;}
.v0_c00246{vertical-align:0.000000px;}
.v1_c00246{vertical-align:32.399586px;}
.lsb_c00246{letter-spacing:-0.091166px;}
.ls11_c00246{letter-spacing:-0.075619px;}
.ls6_c00246{letter-spacing:-0.063018px;}
.lsc_c00246{letter-spacing:-0.060777px;}
.lsf_c00246{letter-spacing:-0.049014px;}
.lse_c00246{letter-spacing:-0.042012px;}
.lsd_c00246{letter-spacing:-0.035010px;}
.ls8_c00246{letter-spacing:-0.028008px;}
.ls12_c00246{letter-spacing:-0.023387px;}
.ls10_c00246{letter-spacing:-0.021006px;}
.lsa_c00246{letter-spacing:-0.014004px;}
.ls9_c00246{letter-spacing:-0.007002px;}
.ls7_c00246{letter-spacing:0.000000px;}
.ls4_c00246{letter-spacing:0.007002px;}
.ls5_c00246{letter-spacing:0.011693px;}
.ls3_c00246{letter-spacing:0.021006px;}
.ls0_c00246{letter-spacing:0.023281px;}
.ls1_c00246{letter-spacing:0.273078px;}
.ls2_c00246{letter-spacing:0.630180px;}
.sc__c00246{text-shadow:none;}
.sc0_c00246{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00246{-webkit-text-stroke:0px transparent;}
.sc0_c00246{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00246{word-spacing:-19.416546px;}
.ws0_c00246{word-spacing:-12.967628px;}
.ws2_c00246{word-spacing:-10.397640px;}
.wsb_c00246{word-spacing:-0.329094px;}
.ws7_c00246{word-spacing:-0.015194px;}
.ws3_c00246{word-spacing:0.000000px;}
.ws9_c00246{word-spacing:0.014004px;}
.ws8_c00246{word-spacing:0.015194px;}
.wsa_c00246{word-spacing:0.021006px;}
.ws13_c00246{word-spacing:0.035080px;}
.ws6_c00246{word-spacing:0.357102px;}
.ws5_c00246{word-spacing:3.234924px;}
.ws4_c00246{word-spacing:3.613032px;}
.wsd_c00246{word-spacing:6.126750px;}
.wsf_c00246{word-spacing:6.826950px;}
.wse_c00246{word-spacing:6.854958px;}
.wsc_c00246{word-spacing:10.783080px;}
.ws10_c00246{word-spacing:20.487852px;}
.ws11_c00246{word-spacing:20.571876px;}
.ws12_c00246{word-spacing:21.937266px;}
._3_c00246{margin-left:-3.024864px;}
._0_c00246{margin-left:-1.050300px;}
._1_c00246{width:1.141326px;}
._2_c00246{width:6.245784px;}
.fc0_c00246{color:rgb(0,0,0);}
.fs4_c00246{font-size:37.809600px;}
.fs1_c00246{font-size:46.562400px;}
.fs3_c00246{font-size:58.466400px;}
.fs0_c00246{font-size:70.020000px;}
.fs2_c00246{font-size:75.971400px;}
.y0_c00246{bottom:0.000000px;}
.y2_c00246{bottom:109.740968px;}
.y1_c00246{bottom:129.810450px;}
.y1c_c00246{bottom:153.120600px;}
.y1b_c00246{bottom:170.940450px;}
.y1a_c00246{bottom:185.699654px;}
.y19_c00246{bottom:248.250270px;}
.y18_c00246{bottom:278.400882px;}
.y17_c00246{bottom:318.900450px;}
.y16_c00246{bottom:359.040600px;}
.y15_c00246{bottom:407.819658px;}
.y14_c00246{bottom:438.059545px;}
.y13_c00246{bottom:468.749311px;}
.y12_c00246{bottom:500.069257px;}
.y11_c00246{bottom:550.649955px;}
.y10_c00246{bottom:601.769806px;}
.yf_c00246{bottom:633.089752px;}
.ye_c00246{bottom:683.670450px;}
.yd_c00246{bottom:724.530450px;}
.yc_c00246{bottom:766.379672px;}
.yb_c00246{bottom:806.970266px;}
.ya_c00246{bottom:847.560859px;}
.y9_c00246{bottom:888.060428px;}
.y8_c00246{bottom:928.559996px;}
.y7_c00246{bottom:969.150590px;}
.y6_c00246{bottom:1019.909838px;}
.y5_c00246{bottom:1050.060553px;}
.y4_c00246{bottom:1080.300441px;}
.y3_c00246{bottom:1110.451053px;}
.ha_c00246{height:39.337949px;}
.h9_c00246{height:39.338549px;}
.h7_c00246{height:54.098549px;}
.h2_c00246{height:62.600889px;}
.h1_c00246{height:62.771836px;}
.h8_c00246{height:62.775622px;}
.h4_c00246{height:63.216299px;}
.h5_c00246{height:68.589413px;}
.h6_c00246{height:73.785632px;}
.h3_c00246{height:74.028372px;}
.h0_c00246{height:1263.000000px;}
.w0_c00246{width:892.500000px;}
.x0_c00246{left:0.000000px;}
.x2_c00246{left:82.710059px;}
.x1_c00246{left:431.730000px;}
@media print{
.v2_c00246{vertical-align:-13.120000pt;}
.v0_c00246{vertical-align:0.000000pt;}
.v1_c00246{vertical-align:28.799632pt;}
.lsb_c00246{letter-spacing:-0.081036pt;}
.ls11_c00246{letter-spacing:-0.067217pt;}
.ls6_c00246{letter-spacing:-0.056016pt;}
.lsc_c00246{letter-spacing:-0.054024pt;}
.lsf_c00246{letter-spacing:-0.043568pt;}
.lse_c00246{letter-spacing:-0.037344pt;}
.lsd_c00246{letter-spacing:-0.031120pt;}
.ls8_c00246{letter-spacing:-0.024896pt;}
.ls12_c00246{letter-spacing:-0.020788pt;}
.ls10_c00246{letter-spacing:-0.018672pt;}
.lsa_c00246{letter-spacing:-0.012448pt;}
.ls9_c00246{letter-spacing:-0.006224pt;}
.ls7_c00246{letter-spacing:0.000000pt;}
.ls4_c00246{letter-spacing:0.006224pt;}
.ls5_c00246{letter-spacing:0.010394pt;}
.ls3_c00246{letter-spacing:0.018672pt;}
.ls0_c00246{letter-spacing:0.020694pt;}
.ls1_c00246{letter-spacing:0.242736pt;}
.ls2_c00246{letter-spacing:0.560160pt;}
.ws1_c00246{word-spacing:-17.259152pt;}
.ws0_c00246{word-spacing:-11.526781pt;}
.ws2_c00246{word-spacing:-9.242347pt;}
.wsb_c00246{word-spacing:-0.292528pt;}
.ws7_c00246{word-spacing:-0.013506pt;}
.ws3_c00246{word-spacing:0.000000pt;}
.ws9_c00246{word-spacing:0.012448pt;}
.ws8_c00246{word-spacing:0.013506pt;}
.wsa_c00246{word-spacing:0.018672pt;}
.ws13_c00246{word-spacing:0.031182pt;}
.ws6_c00246{word-spacing:0.317424pt;}
.ws5_c00246{word-spacing:2.875488pt;}
.ws4_c00246{word-spacing:3.211584pt;}
.wsd_c00246{word-spacing:5.446000pt;}
.wsf_c00246{word-spacing:6.068400pt;}
.wse_c00246{word-spacing:6.093296pt;}
.wsc_c00246{word-spacing:9.584960pt;}
.ws10_c00246{word-spacing:18.211424pt;}
.ws11_c00246{word-spacing:18.286112pt;}
.ws12_c00246{word-spacing:19.499792pt;}
._3_c00246{margin-left:-2.688768pt;}
._0_c00246{margin-left:-0.933600pt;}
._1_c00246{width:1.014512pt;}
._2_c00246{width:5.551808pt;}
.fs4_c00246{font-size:33.608533pt;}
.fs1_c00246{font-size:41.388800pt;}
.fs3_c00246{font-size:51.970133pt;}
.fs0_c00246{font-size:62.240000pt;}
.fs2_c00246{font-size:67.530133pt;}
.y0_c00246{bottom:0.000000pt;}
.y2_c00246{bottom:97.547527pt;}
.y1_c00246{bottom:115.387067pt;}
.y1c_c00246{bottom:136.107200pt;}
.y1b_c00246{bottom:151.947067pt;}
.y1a_c00246{bottom:165.066359pt;}
.y19_c00246{bottom:220.666907pt;}
.y18_c00246{bottom:247.467451pt;}
.y17_c00246{bottom:283.467067pt;}
.y16_c00246{bottom:319.147200pt;}
.y15_c00246{bottom:362.506363pt;}
.y14_c00246{bottom:389.386263pt;}
.y13_c00246{bottom:416.666055pt;}
.y12_c00246{bottom:444.506007pt;}
.y11_c00246{bottom:489.466627pt;}
.y10_c00246{bottom:534.906495pt;}
.yf_c00246{bottom:562.746447pt;}
.ye_c00246{bottom:607.707067pt;}
.yd_c00246{bottom:644.027067pt;}
.yc_c00246{bottom:681.226375pt;}
.yb_c00246{bottom:717.306903pt;}
.ya_c00246{bottom:753.387431pt;}
.y9_c00246{bottom:789.387047pt;}
.y8_c00246{bottom:825.386663pt;}
.y7_c00246{bottom:861.467191pt;}
.y6_c00246{bottom:906.586523pt;}
.y5_c00246{bottom:933.387159pt;}
.y4_c00246{bottom:960.267059pt;}
.y3_c00246{bottom:987.067603pt;}
.ha_c00246{height:34.967066pt;}
.h9_c00246{height:34.967599pt;}
.h7_c00246{height:48.087599pt;}
.h2_c00246{height:55.645234pt;}
.h1_c00246{height:55.797187pt;}
.h8_c00246{height:55.800553pt;}
.h4_c00246{height:56.192266pt;}
.h5_c00246{height:60.968367pt;}
.h6_c00246{height:65.587228pt;}
.h3_c00246{height:65.802998pt;}
.h0_c00246{height:1122.666667pt;}
.w0_c00246{width:793.333333pt;}
.x0_c00246{left:0.000000pt;}
.x2_c00246{left:73.520052pt;}
.x1_c00246{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1bc21306bf50309028b50eda.woff2')format("woff");}.ff1_c00247{font-family:ff1_c00247;line-height:1.106934;font-style:normal;font-weight:normal;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_f4651f0baec9cc02d9656ab0.woff2')format("woff");}.ff2_c00247{font-family:ff2_c00247;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00247;src:url('chunks/assets/font_68d880c37a172f0c7e5fc8b8.woff2')format("woff");}.ff3_c00247{font-family:ff3_c00247;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00247;src:url('chunks/assets/font_3f32551ef4e4fc607d0879e1.woff2')format("woff");}.ff4_c00247{font-family:ff4_c00247;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00247;src:url('chunks/assets/font_570c0cfaa16d03df33d5ed28.woff2')format("woff");}.ff5_c00247{font-family:ff5_c00247;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00247{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00247{vertical-align:-14.760000px;}
.v0_c00247{vertical-align:0.000000px;}
.v1_c00247{vertical-align:32.413914px;}
.ls10_c00247{letter-spacing:-0.309872px;}
.lse_c00247{letter-spacing:-0.075619px;}
.ls3_c00247{letter-spacing:-0.063018px;}
.lsd_c00247{letter-spacing:-0.056016px;}
.lsb_c00247{letter-spacing:-0.049014px;}
.ls9_c00247{letter-spacing:-0.042012px;}
.lsf_c00247{letter-spacing:-0.035080px;}
.lsa_c00247{letter-spacing:-0.035010px;}
.ls12_c00247{letter-spacing:-0.029233px;}
.ls7_c00247{letter-spacing:-0.028008px;}
.ls8_c00247{letter-spacing:-0.021006px;}
.lsc_c00247{letter-spacing:-0.015194px;}
.ls6_c00247{letter-spacing:-0.014004px;}
.ls5_c00247{letter-spacing:-0.007002px;}
.ls4_c00247{letter-spacing:0.000000px;}
.ls11_c00247{letter-spacing:0.005847px;}
.ls1_c00247{letter-spacing:0.007002px;}
.ls2_c00247{letter-spacing:0.023281px;}
.ls0_c00247{letter-spacing:0.028008px;}
.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:-12.967628px;}
.ws1_c00247{word-spacing:-10.397640px;}
.wsf_c00247{word-spacing:-0.014004px;}
.ws2_c00247{word-spacing:0.000000px;}
.ws6_c00247{word-spacing:0.014004px;}
.ws13_c00247{word-spacing:0.021006px;}
.ws1b_c00247{word-spacing:0.028008px;}
.ws1f_c00247{word-spacing:0.040926px;}
.ws18_c00247{word-spacing:0.042012px;}
.ws15_c00247{word-spacing:0.144346px;}
.ws8_c00247{word-spacing:0.364104px;}
.ws14_c00247{word-spacing:0.378108px;}
.ws9_c00247{word-spacing:5.790654px;}
.ws4_c00247{word-spacing:6.077736px;}
.ws3_c00247{word-spacing:6.112746px;}
.ws5_c00247{word-spacing:6.119748px;}
.ws10_c00247{word-spacing:7.205058px;}
.wsa_c00247{word-spacing:7.548156px;}
.ws12_c00247{word-spacing:7.569162px;}
.ws11_c00247{word-spacing:8.262360px;}
.ws19_c00247{word-spacing:10.446984px;}
.ws7_c00247{word-spacing:11.518290px;}
.ws1a_c00247{word-spacing:12.253500px;}
.ws17_c00247{word-spacing:12.561588px;}
.ws16_c00247{word-spacing:12.617604px;}
.ws1d_c00247{word-spacing:19.404998px;}
.ws1c_c00247{word-spacing:19.486851px;}
.ws1e_c00247{word-spacing:19.808416px;}
.wse_c00247{word-spacing:23.407686px;}
.wsb_c00247{word-spacing:23.414688px;}
.wsc_c00247{word-spacing:23.778792px;}
.wsd_c00247{word-spacing:23.792796px;}
._3_c00247{margin-left:-2.709774px;}
._1_c00247{margin-left:-1.162332px;}
._0_c00247{width:1.253358px;}
._2_c00247{width:5.930694px;}
.fc0_c00247{color:rgb(0,0,0);}
.fs3_c00247{font-size:37.809600px;}
.fs1_c00247{font-size:46.562400px;}
.fs4_c00247{font-size:58.466400px;}
.fs0_c00247{font-size:70.020000px;}
.fs2_c00247{font-size:75.971400px;}
.y0_c00247{bottom:0.000000px;}
.y2_c00247{bottom:109.740968px;}
.y1_c00247{bottom:129.810450px;}
.y20_c00247{bottom:149.429891px;}
.y1f_c00247{bottom:170.940450px;}
.y1e_c00247{bottom:185.700479px;}
.y1d_c00247{bottom:254.010240px;}
.y1c_c00247{bottom:292.890596px;}
.y1b_c00247{bottom:323.041208px;}
.y1a_c00247{bottom:353.281095px;}
.y19_c00247{bottom:392.250726px;}
.y18_c00247{bottom:431.131082px;}
.y17_c00247{bottom:461.370969px;}
.y16_c00247{bottom:500.340600px;}
.y15_c00247{bottom:525.090648px;}
.y14_c00247{bottom:575.490075px;}
.y13_c00247{bottom:606.896972px;}
.y12_c00247{bottom:637.136859px;}
.y11_c00247{bottom:667.287471px;}
.y10_c00247{bottom:697.527359px;}
.yf_c00247{bottom:727.677971px;}
.ye_c00247{bottom:757.917858px;}
.yd_c00247{bottom:788.068470px;}
.yc_c00247{bottom:818.308358px;}
.yb_c00247{bottom:848.458970px;}
.ya_c00247{bottom:878.698857px;}
.y9_c00247{bottom:908.849469px;}
.y8_c00247{bottom:939.089357px;}
.y7_c00247{bottom:969.239969px;}
.y6_c00247{bottom:999.479856px;}
.y5_c00247{bottom:1029.630468px;}
.y4_c00247{bottom:1080.211166px;}
.y3_c00247{bottom:1110.451053px;}
.h8_c00247{height:39.338549px;}
.h9_c00247{height:54.098549px;}
.h2_c00247{height:62.600889px;}
.h1_c00247{height:62.771836px;}
.h7_c00247{height:62.772322px;}
.h6_c00247{height:63.216299px;}
.h4_c00247{height:68.107173px;}
.h5_c00247{height:68.589413px;}
.h3_c00247{height:74.042700px;}
.h0_c00247{height:1263.000000px;}
.w0_c00247{width:892.500000px;}
.x0_c00247{left:0.000000px;}
.x2_c00247{left:82.710059px;}
.x1_c00247{left:431.730000px;}
@media print{
.v2_c00247{vertical-align:-13.120000pt;}
.v0_c00247{vertical-align:0.000000pt;}
.v1_c00247{vertical-align:28.812368pt;}
.ls10_c00247{letter-spacing:-0.275442pt;}
.lse_c00247{letter-spacing:-0.067217pt;}
.ls3_c00247{letter-spacing:-0.056016pt;}
.lsd_c00247{letter-spacing:-0.049792pt;}
.lsb_c00247{letter-spacing:-0.043568pt;}
.ls9_c00247{letter-spacing:-0.037344pt;}
.lsf_c00247{letter-spacing:-0.031182pt;}
.lsa_c00247{letter-spacing:-0.031120pt;}
.ls12_c00247{letter-spacing:-0.025985pt;}
.ls7_c00247{letter-spacing:-0.024896pt;}
.ls8_c00247{letter-spacing:-0.018672pt;}
.lsc_c00247{letter-spacing:-0.013506pt;}
.ls6_c00247{letter-spacing:-0.012448pt;}
.ls5_c00247{letter-spacing:-0.006224pt;}
.ls4_c00247{letter-spacing:0.000000pt;}
.ls11_c00247{letter-spacing:0.005197pt;}
.ls1_c00247{letter-spacing:0.006224pt;}
.ls2_c00247{letter-spacing:0.020694pt;}
.ls0_c00247{letter-spacing:0.024896pt;}
.ws0_c00247{word-spacing:-11.526781pt;}
.ws1_c00247{word-spacing:-9.242347pt;}
.wsf_c00247{word-spacing:-0.012448pt;}
.ws2_c00247{word-spacing:0.000000pt;}
.ws6_c00247{word-spacing:0.012448pt;}
.ws13_c00247{word-spacing:0.018672pt;}
.ws1b_c00247{word-spacing:0.024896pt;}
.ws1f_c00247{word-spacing:0.036379pt;}
.ws18_c00247{word-spacing:0.037344pt;}
.ws15_c00247{word-spacing:0.128307pt;}
.ws8_c00247{word-spacing:0.323648pt;}
.ws14_c00247{word-spacing:0.336096pt;}
.ws9_c00247{word-spacing:5.147248pt;}
.ws4_c00247{word-spacing:5.402432pt;}
.ws3_c00247{word-spacing:5.433552pt;}
.ws5_c00247{word-spacing:5.439776pt;}
.ws10_c00247{word-spacing:6.404496pt;}
.wsa_c00247{word-spacing:6.709472pt;}
.ws12_c00247{word-spacing:6.728144pt;}
.ws11_c00247{word-spacing:7.344320pt;}
.ws19_c00247{word-spacing:9.286208pt;}
.ws7_c00247{word-spacing:10.238480pt;}
.ws1a_c00247{word-spacing:10.892000pt;}
.ws17_c00247{word-spacing:11.165856pt;}
.ws16_c00247{word-spacing:11.215648pt;}
.ws1d_c00247{word-spacing:17.248887pt;}
.ws1c_c00247{word-spacing:17.321645pt;}
.ws1e_c00247{word-spacing:17.607481pt;}
.wse_c00247{word-spacing:20.806832pt;}
.wsb_c00247{word-spacing:20.813056pt;}
.wsc_c00247{word-spacing:21.136704pt;}
.wsd_c00247{word-spacing:21.149152pt;}
._3_c00247{margin-left:-2.408688pt;}
._1_c00247{margin-left:-1.033184pt;}
._0_c00247{width:1.114096pt;}
._2_c00247{width:5.271728pt;}
.fs3_c00247{font-size:33.608533pt;}
.fs1_c00247{font-size:41.388800pt;}
.fs4_c00247{font-size:51.970133pt;}
.fs0_c00247{font-size:62.240000pt;}
.fs2_c00247{font-size:67.530133pt;}
.y0_c00247{bottom:0.000000pt;}
.y2_c00247{bottom:97.547527pt;}
.y1_c00247{bottom:115.387067pt;}
.y20_c00247{bottom:132.826570pt;}
.y1f_c00247{bottom:151.947067pt;}
.y1e_c00247{bottom:165.067092pt;}
.y1d_c00247{bottom:225.786880pt;}
.y1c_c00247{bottom:260.347196pt;}
.y1b_c00247{bottom:287.147740pt;}
.y1a_c00247{bottom:314.027640pt;}
.y19_c00247{bottom:348.667312pt;}
.y18_c00247{bottom:383.227628pt;}
.y17_c00247{bottom:410.107528pt;}
.y16_c00247{bottom:444.747200pt;}
.y15_c00247{bottom:466.747243pt;}
.y14_c00247{bottom:511.546733pt;}
.y13_c00247{bottom:539.463975pt;}
.y12_c00247{bottom:566.343875pt;}
.y11_c00247{bottom:593.144419pt;}
.y10_c00247{bottom:620.024319pt;}
.yf_c00247{bottom:646.824863pt;}
.ye_c00247{bottom:673.704763pt;}
.yd_c00247{bottom:700.505307pt;}
.yc_c00247{bottom:727.385207pt;}
.yb_c00247{bottom:754.185751pt;}
.ya_c00247{bottom:781.065651pt;}
.y9_c00247{bottom:807.866195pt;}
.y8_c00247{bottom:834.746095pt;}
.y7_c00247{bottom:861.546639pt;}
.y6_c00247{bottom:888.426539pt;}
.y5_c00247{bottom:915.227083pt;}
.y4_c00247{bottom:960.187703pt;}
.y3_c00247{bottom:987.067603pt;}
.h8_c00247{height:34.967599pt;}
.h9_c00247{height:48.087599pt;}
.h2_c00247{height:55.645234pt;}
.h1_c00247{height:55.797187pt;}
.h7_c00247{height:55.797619pt;}
.h6_c00247{height:56.192266pt;}
.h4_c00247{height:60.539709pt;}
.h5_c00247{height:60.968367pt;}
.h3_c00247{height:65.815734pt;}
.h0_c00247{height:1122.666667pt;}
.w0_c00247{width:793.333333pt;}
.x0_c00247{left:0.000000pt;}
.x2_c00247{left:73.520052pt;}
.x1_c00247{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b1aebb7b88fbc3788ce74ba4.woff2')format("woff");}.ff1_c00248{font-family:ff1_c00248;line-height:1.106934;font-style:normal;font-weight:normal;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_7ac5b3e122df39fb703662ef.woff2')format("woff");}.ff2_c00248{font-family:ff2_c00248;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00248;src:url('chunks/assets/font_587da32f32e091c8eebe00b9.woff2')format("woff");}.ff3_c00248{font-family:ff3_c00248;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00248{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00248{vertical-align:0.000000px;}
.lsb_c00248{letter-spacing:-0.308088px;}
.ls8_c00248{letter-spacing:-0.129151px;}
.ls10_c00248{letter-spacing:-0.106360px;}
.ls6_c00248{letter-spacing:-0.063018px;}
.lse_c00248{letter-spacing:-0.049014px;}
.lsf_c00248{letter-spacing:-0.042012px;}
.lsc_c00248{letter-spacing:-0.035010px;}
.lsd_c00248{letter-spacing:-0.028008px;}
.lsa_c00248{letter-spacing:-0.021006px;}
.ls9_c00248{letter-spacing:-0.007002px;}
.ls7_c00248{letter-spacing:0.000000px;}
.ls0_c00248{letter-spacing:0.007002px;}
.ls2_c00248{letter-spacing:0.014004px;}
.ls4_c00248{letter-spacing:0.028008px;}
.ls3_c00248{letter-spacing:0.042012px;}
.ls5_c00248{letter-spacing:0.070020px;}
.ls1_c00248{letter-spacing:0.273078px;}
.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:-19.507572px;}
.ws1_c00248{word-spacing:-19.493568px;}
.wse_c00248{word-spacing:-0.028008px;}
.ws17_c00248{word-spacing:-0.007002px;}
.ws2_c00248{word-spacing:0.000000px;}
.wsf_c00248{word-spacing:0.007002px;}
.wsa_c00248{word-spacing:0.021006px;}
.ws3_c00248{word-spacing:0.022791px;}
.ws9_c00248{word-spacing:0.364104px;}
.ws16_c00248{word-spacing:0.371106px;}
.ws11_c00248{word-spacing:0.385110px;}
.ws12_c00248{word-spacing:0.392112px;}
.ws5_c00248{word-spacing:0.700200px;}
.ws4_c00248{word-spacing:0.714204px;}
.ws15_c00248{word-spacing:5.384538px;}
.ws7_c00248{word-spacing:16.902828px;}
.ws6_c00248{word-spacing:16.923834px;}
.ws8_c00248{word-spacing:17.575020px;}
.ws18_c00248{word-spacing:19.472562px;}
.ws14_c00248{word-spacing:19.717632px;}
.ws13_c00248{word-spacing:19.780650px;}
.ws10_c00248{word-spacing:62.975988px;}
.wsc_c00248{word-spacing:62.982990px;}
.wsb_c00248{word-spacing:63.010998px;}
.wsd_c00248{word-spacing:63.032004px;}
._4_c00248{margin-left:-62.639892px;}
._1_c00248{margin-left:-1.351386px;}
._0_c00248{width:1.124377px;}
._2_c00248{width:62.996994px;}
._5_c00248{width:437.043834px;}
._9_c00248{width:452.525256px;}
._a_c00248{width:484.566408px;}
._b_c00248{width:507.546972px;}
._3_c00248{width:570.578976px;}
._7_c00248{width:577.055826px;}
._6_c00248{width:584.659998px;}
._c_c00248{width:635.529528px;}
._8_c00248{width:639.989802px;}
.fc0_c00248{color:rgb(0,0,0);}
.fs0_c00248{font-size:70.020000px;}
.fs1_c00248{font-size:75.971400px;}
.y0_c00248{bottom:0.000000px;}
.y2_c00248{bottom:109.740968px;}
.y1_c00248{bottom:129.810450px;}
.y22_c00248{bottom:204.690852px;}
.y21_c00248{bottom:243.571208px;}
.y20_c00248{bottom:273.811095px;}
.y1f_c00248{bottom:312.780726px;}
.y1e_c00248{bottom:351.661082px;}
.y1d_c00248{bottom:381.900969px;}
.y1c_c00248{bottom:420.870600px;}
.y1b_c00248{bottom:445.620600px;}
.y1a_c00248{bottom:494.759824px;}
.y19_c00248{bottom:524.910436px;}
.y18_c00248{bottom:563.880067px;}
.y17_c00248{bottom:594.030679px;}
.y16_c00248{bottom:624.270567px;}
.y15_c00248{bottom:663.240198px;}
.y14_c00248{bottom:692.130450px;}
.y12_c00248{bottom:712.920450px;}
.y11_c00248{bottom:733.800450px;}
.y10_c00248{bottom:754.680450px;}
.yf_c00248{bottom:775.470450px;}
.ye_c00248{bottom:802.560450px;}
.y13_c00248{bottom:814.260396px;}
.yd_c00248{bottom:823.350450px;}
.yc_c00248{bottom:844.230450px;}
.yb_c00248{bottom:870.690450px;}
.ya_c00248{bottom:891.570450px;}
.y9_c00248{bottom:914.880319px;}
.y8_c00248{bottom:944.400751px;}
.y7_c00248{bottom:983.370383px;}
.y6_c00248{bottom:1013.970873px;}
.y5_c00248{bottom:1045.380094px;}
.y4_c00248{bottom:1084.260450px;}
.y3_c00248{bottom:1109.100450px;}
.h1_c00248{height:62.771836px;}
.h3_c00248{height:63.216299px;}
.h2_c00248{height:68.589413px;}
.h0_c00248{height:1263.000000px;}
.w0_c00248{width:892.500000px;}
.x0_c00248{left:0.000000px;}
.x2_c00248{left:82.710059px;}
.x4_c00248{left:246.600000px;}
.x3_c00248{left:251.461701px;}
.x7_c00248{left:340.380000px;}
.x5_c00248{left:410.399537px;}
.x1_c00248{left:431.730000px;}
.x8_c00248{left:446.400783px;}
.x6_c00248{left:515.790140px;}
@media print{
.v0_c00248{vertical-align:0.000000pt;}
.lsb_c00248{letter-spacing:-0.273856pt;}
.ls8_c00248{letter-spacing:-0.114801pt;}
.ls10_c00248{letter-spacing:-0.094542pt;}
.ls6_c00248{letter-spacing:-0.056016pt;}
.lse_c00248{letter-spacing:-0.043568pt;}
.lsf_c00248{letter-spacing:-0.037344pt;}
.lsc_c00248{letter-spacing:-0.031120pt;}
.lsd_c00248{letter-spacing:-0.024896pt;}
.lsa_c00248{letter-spacing:-0.018672pt;}
.ls9_c00248{letter-spacing:-0.006224pt;}
.ls7_c00248{letter-spacing:0.000000pt;}
.ls0_c00248{letter-spacing:0.006224pt;}
.ls2_c00248{letter-spacing:0.012448pt;}
.ls4_c00248{letter-spacing:0.024896pt;}
.ls3_c00248{letter-spacing:0.037344pt;}
.ls5_c00248{letter-spacing:0.062240pt;}
.ls1_c00248{letter-spacing:0.242736pt;}
.ws0_c00248{word-spacing:-17.340064pt;}
.ws1_c00248{word-spacing:-17.327616pt;}
.wse_c00248{word-spacing:-0.024896pt;}
.ws17_c00248{word-spacing:-0.006224pt;}
.ws2_c00248{word-spacing:0.000000pt;}
.wsf_c00248{word-spacing:0.006224pt;}
.wsa_c00248{word-spacing:0.018672pt;}
.ws3_c00248{word-spacing:0.020259pt;}
.ws9_c00248{word-spacing:0.323648pt;}
.ws16_c00248{word-spacing:0.329872pt;}
.ws11_c00248{word-spacing:0.342320pt;}
.ws12_c00248{word-spacing:0.348544pt;}
.ws5_c00248{word-spacing:0.622400pt;}
.ws4_c00248{word-spacing:0.634848pt;}
.ws15_c00248{word-spacing:4.786256pt;}
.ws7_c00248{word-spacing:15.024736pt;}
.ws6_c00248{word-spacing:15.043408pt;}
.ws8_c00248{word-spacing:15.622240pt;}
.ws18_c00248{word-spacing:17.308944pt;}
.ws14_c00248{word-spacing:17.526784pt;}
.ws13_c00248{word-spacing:17.582800pt;}
.ws10_c00248{word-spacing:55.978656pt;}
.wsc_c00248{word-spacing:55.984880pt;}
.wsb_c00248{word-spacing:56.009776pt;}
.wsd_c00248{word-spacing:56.028448pt;}
._4_c00248{margin-left:-55.679904pt;}
._1_c00248{margin-left:-1.201232pt;}
._0_c00248{width:0.999446pt;}
._2_c00248{width:55.997328pt;}
._5_c00248{width:388.483408pt;}
._9_c00248{width:402.244672pt;}
._a_c00248{width:430.725696pt;}
._b_c00248{width:451.152864pt;}
._3_c00248{width:507.181312pt;}
._7_c00248{width:512.938512pt;}
._6_c00248{width:519.697776pt;}
._c_c00248{width:564.915136pt;}
._8_c00248{width:568.879824pt;}
.fs0_c00248{font-size:62.240000pt;}
.fs1_c00248{font-size:67.530133pt;}
.y0_c00248{bottom:0.000000pt;}
.y2_c00248{bottom:97.547527pt;}
.y1_c00248{bottom:115.387067pt;}
.y22_c00248{bottom:181.947424pt;}
.y21_c00248{bottom:216.507740pt;}
.y20_c00248{bottom:243.387640pt;}
.y1f_c00248{bottom:278.027312pt;}
.y1e_c00248{bottom:312.587628pt;}
.y1d_c00248{bottom:339.467528pt;}
.y1c_c00248{bottom:374.107200pt;}
.y1b_c00248{bottom:396.107200pt;}
.y1a_c00248{bottom:439.786511pt;}
.y19_c00248{bottom:466.587055pt;}
.y18_c00248{bottom:501.226727pt;}
.y17_c00248{bottom:528.027271pt;}
.y16_c00248{bottom:554.907171pt;}
.y15_c00248{bottom:589.546843pt;}
.y14_c00248{bottom:615.227067pt;}
.y12_c00248{bottom:633.707067pt;}
.y11_c00248{bottom:652.267067pt;}
.y10_c00248{bottom:670.827067pt;}
.yf_c00248{bottom:689.307067pt;}
.ye_c00248{bottom:713.387067pt;}
.y13_c00248{bottom:723.787019pt;}
.yd_c00248{bottom:731.867067pt;}
.yc_c00248{bottom:750.427067pt;}
.yb_c00248{bottom:773.947067pt;}
.ya_c00248{bottom:792.507067pt;}
.y9_c00248{bottom:813.226951pt;}
.y8_c00248{bottom:839.467335pt;}
.y7_c00248{bottom:874.107007pt;}
.y6_c00248{bottom:901.307443pt;}
.y5_c00248{bottom:929.226751pt;}
.y4_c00248{bottom:963.787067pt;}
.y3_c00248{bottom:985.867067pt;}
.h1_c00248{height:55.797187pt;}
.h3_c00248{height:56.192266pt;}
.h2_c00248{height:60.968367pt;}
.h0_c00248{height:1122.666667pt;}
.w0_c00248{width:793.333333pt;}
.x0_c00248{left:0.000000pt;}
.x2_c00248{left:73.520052pt;}
.x4_c00248{left:219.200000pt;}
.x3_c00248{left:223.521512pt;}
.x7_c00248{left:302.560000pt;}
.x5_c00248{left:364.799588pt;}
.x1_c00248{left:383.760000pt;}
.x8_c00248{left:396.800696pt;}
.x6_c00248{left:458.480124pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e07fed66f965a76ed4509121.woff2')format("woff");}.ff1_c00249{font-family:ff1_c00249;line-height:1.106934;font-style:normal;font-weight:normal;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_ab6d761312b4cecb74d7808b.woff2')format("woff");}.ff2_c00249{font-family:ff2_c00249;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00249;src:url('chunks/assets/font_587da32f32e091c8eebe00b9.woff2')format("woff");}.ff3_c00249{font-family:ff3_c00249;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00249;src:url('chunks/assets/font_c7ccb5c77bb21aa856df8676.woff2')format("woff");}.ff4_c00249{font-family:ff4_c00249;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00249;src:url('chunks/assets/font_0b278eca7c0a410a0bdb0cb9.woff2')format("woff");}.ff5_c00249{font-family:ff5_c00249;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00249;src:url('chunks/assets/font_c42053ccad0e526015c33f8f.woff2')format("woff");}.ff6_c00249{font-family:ff6_c00249;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00249{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00249{vertical-align:-14.760600px;}
.v0_c00249{vertical-align:0.000000px;}
.v1_c00249{vertical-align:17.634708px;}
.ls12_c00249{letter-spacing:-0.246781px;}
.lsc_c00249{letter-spacing:-0.084024px;}
.ls16_c00249{letter-spacing:-0.076006px;}
.ls14_c00249{letter-spacing:-0.075619px;}
.lsd_c00249{letter-spacing:-0.070020px;}
.ls6_c00249{letter-spacing:-0.063018px;}
.ls15_c00249{letter-spacing:-0.052620px;}
.lsb_c00249{letter-spacing:-0.049014px;}
.ls13_c00249{letter-spacing:-0.042012px;}
.ls8_c00249{letter-spacing:-0.035010px;}
.ls9_c00249{letter-spacing:-0.028008px;}
.ls11_c00249{letter-spacing:-0.021006px;}
.lsa_c00249{letter-spacing:-0.014004px;}
.ls10_c00249{letter-spacing:-0.007002px;}
.ls7_c00249{letter-spacing:0.000000px;}
.ls0_c00249{letter-spacing:0.007002px;}
.ls2_c00249{letter-spacing:0.028008px;}
.ls1_c00249{letter-spacing:0.049014px;}
.lse_c00249{letter-spacing:0.084024px;}
.ls4_c00249{letter-spacing:0.266076px;}
.ls3_c00249{letter-spacing:0.273078px;}
.ls17_c00249{letter-spacing:0.298179px;}
.lsf_c00249{letter-spacing:0.343098px;}
.ls5_c00249{letter-spacing:0.490140px;}
.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:-19.493568px;}
.ws1_c00249{word-spacing:-12.651004px;}
.ws2_c00249{word-spacing:-10.397640px;}
.ws20_c00249{word-spacing:-0.286485px;}
.ws1d_c00249{word-spacing:-0.007002px;}
.ws3_c00249{word-spacing:0.000000px;}
.ws18_c00249{word-spacing:0.014004px;}
.ws5_c00249{word-spacing:0.021006px;}
.ws1e_c00249{word-spacing:0.064313px;}
.ws1f_c00249{word-spacing:0.087700px;}
.wsf_c00249{word-spacing:0.294084px;}
.ws19_c00249{word-spacing:0.336096px;}
.ws1c_c00249{word-spacing:0.350100px;}
.ws6_c00249{word-spacing:0.371106px;}
.wse_c00249{word-spacing:0.378108px;}
.ws8_c00249{word-spacing:0.392112px;}
.ws16_c00249{word-spacing:2.163618px;}
.ws17_c00249{word-spacing:2.520720px;}
.ws10_c00249{word-spacing:3.942126px;}
.ws11_c00249{word-spacing:3.949128px;}
.ws14_c00249{word-spacing:9.935838px;}
.ws13_c00249{word-spacing:11.154186px;}
.ws12_c00249{word-spacing:11.182194px;}
.ws1b_c00249{word-spacing:11.525292px;}
.ws1a_c00249{word-spacing:11.546298px;}
.ws15_c00249{word-spacing:30.598740px;}
.ws4_c00249{word-spacing:34.897968px;}
.ws7_c00249{word-spacing:62.996994px;}
.wsd_c00249{word-spacing:63.010998px;}
.ws9_c00249{word-spacing:63.025002px;}
.wsa_c00249{word-spacing:63.032004px;}
.wsc_c00249{word-spacing:63.053010px;}
.wsb_c00249{word-spacing:63.067014px;}
._5_c00249{margin-left:-62.639892px;}
._8_c00249{margin-left:-2.711448px;}
._0_c00249{margin-left:-1.015290px;}
._1_c00249{width:1.169334px;}
._7_c00249{width:5.930694px;}
._2_c00249{width:62.639892px;}
._3_c00249{width:328.568850px;}
._4_c00249{width:694.080252px;}
._6_c00249{width:756.720144px;}
.fc0_c00249{color:rgb(0,0,0);}
.fs2_c00249{font-size:37.809600px;}
.fs1_c00249{font-size:46.562400px;}
.fs3_c00249{font-size:58.466400px;}
.fs0_c00249{font-size:70.020000px;}
.y0_c00249{bottom:0.000000px;}
.y2_c00249{bottom:109.740968px;}
.y1_c00249{bottom:129.810450px;}
.y23_c00249{bottom:153.120600px;}
.y22_c00249{bottom:167.791327px;}
.y21_c00249{bottom:215.401426px;}
.y20_c00249{bottom:245.641314px;}
.y1f_c00249{bottom:284.610945px;}
.y1e_c00249{bottom:323.491300px;}
.y1d_c00249{bottom:353.731188px;}
.y1c_c00249{bottom:392.700819px;}
.y1b_c00249{bottom:431.671773px;}
.y1a_c00249{bottom:463.080995px;}
.y19_c00249{bottom:493.320882px;}
.y18_c00249{bottom:532.290513px;}
.y17_c00249{bottom:571.170868px;}
.y16_c00249{bottom:601.860635px;}
.y15_c00249{bottom:641.910324px;}
.y14_c00249{bottom:680.879955px;}
.y13_c00249{bottom:711.119843px;}
.y12_c00249{bottom:750.000198px;}
.y11_c00249{bottom:778.890450px;}
.yf_c00249{bottom:799.860600px;}
.ye_c00249{bottom:820.650450px;}
.yd_c00249{bottom:841.530450px;}
.yc_c00249{bottom:862.320450px;}
.yb_c00249{bottom:889.410450px;}
.y10_c00249{bottom:901.111271px;}
.ya_c00249{bottom:910.200450px;}
.y9_c00249{bottom:930.990450px;}
.y8_c00249{bottom:957.540600px;}
.y7_c00249{bottom:978.420450px;}
.y6_c00249{bottom:1001.639973px;}
.y5_c00249{bottom:1041.330810px;}
.y4_c00249{bottom:1080.300441px;}
.y3_c00249{bottom:1110.451053px;}
.h4_c00249{height:39.337949px;}
.h3_c00249{height:62.600889px;}
.h1_c00249{height:62.771836px;}
.h2_c00249{height:63.216299px;}
.h0_c00249{height:1263.000000px;}
.w0_c00249{width:892.500000px;}
.x0_c00249{left:0.000000px;}
.x2_c00249{left:82.710059px;}
.x4_c00249{left:255.330000px;}
.x3_c00249{left:260.189752px;}
.x7_c00249{left:340.380000px;}
.x5_c00249{left:418.229780px;}
.x1_c00249{left:431.730000px;}
.x8_c00249{left:446.400783px;}
.x6_c00249{left:484.649001px;}
@media print{
.v2_c00249{vertical-align:-13.120533pt;}
.v0_c00249{vertical-align:0.000000pt;}
.v1_c00249{vertical-align:15.675296pt;}
.ls12_c00249{letter-spacing:-0.219361pt;}
.lsc_c00249{letter-spacing:-0.074688pt;}
.ls16_c00249{letter-spacing:-0.067561pt;}
.ls14_c00249{letter-spacing:-0.067217pt;}
.lsd_c00249{letter-spacing:-0.062240pt;}
.ls6_c00249{letter-spacing:-0.056016pt;}
.ls15_c00249{letter-spacing:-0.046773pt;}
.lsb_c00249{letter-spacing:-0.043568pt;}
.ls13_c00249{letter-spacing:-0.037344pt;}
.ls8_c00249{letter-spacing:-0.031120pt;}
.ls9_c00249{letter-spacing:-0.024896pt;}
.ls11_c00249{letter-spacing:-0.018672pt;}
.lsa_c00249{letter-spacing:-0.012448pt;}
.ls10_c00249{letter-spacing:-0.006224pt;}
.ls7_c00249{letter-spacing:0.000000pt;}
.ls0_c00249{letter-spacing:0.006224pt;}
.ls2_c00249{letter-spacing:0.024896pt;}
.ls1_c00249{letter-spacing:0.043568pt;}
.lse_c00249{letter-spacing:0.074688pt;}
.ls4_c00249{letter-spacing:0.236512pt;}
.ls3_c00249{letter-spacing:0.242736pt;}
.ls17_c00249{letter-spacing:0.265048pt;}
.lsf_c00249{letter-spacing:0.304976pt;}
.ls5_c00249{letter-spacing:0.435680pt;}
.ws0_c00249{word-spacing:-17.327616pt;}
.ws1_c00249{word-spacing:-11.245337pt;}
.ws2_c00249{word-spacing:-9.242347pt;}
.ws20_c00249{word-spacing:-0.254654pt;}
.ws1d_c00249{word-spacing:-0.006224pt;}
.ws3_c00249{word-spacing:0.000000pt;}
.ws18_c00249{word-spacing:0.012448pt;}
.ws5_c00249{word-spacing:0.018672pt;}
.ws1e_c00249{word-spacing:0.057167pt;}
.ws1f_c00249{word-spacing:0.077955pt;}
.wsf_c00249{word-spacing:0.261408pt;}
.ws19_c00249{word-spacing:0.298752pt;}
.ws1c_c00249{word-spacing:0.311200pt;}
.ws6_c00249{word-spacing:0.329872pt;}
.wse_c00249{word-spacing:0.336096pt;}
.ws8_c00249{word-spacing:0.348544pt;}
.ws16_c00249{word-spacing:1.923216pt;}
.ws17_c00249{word-spacing:2.240640pt;}
.ws10_c00249{word-spacing:3.504112pt;}
.ws11_c00249{word-spacing:3.510336pt;}
.ws14_c00249{word-spacing:8.831856pt;}
.ws13_c00249{word-spacing:9.914832pt;}
.ws12_c00249{word-spacing:9.939728pt;}
.ws1b_c00249{word-spacing:10.244704pt;}
.ws1a_c00249{word-spacing:10.263376pt;}
.ws15_c00249{word-spacing:27.198880pt;}
.ws4_c00249{word-spacing:31.020416pt;}
.ws7_c00249{word-spacing:55.997328pt;}
.wsd_c00249{word-spacing:56.009776pt;}
.ws9_c00249{word-spacing:56.022224pt;}
.wsa_c00249{word-spacing:56.028448pt;}
.wsc_c00249{word-spacing:56.047120pt;}
.wsb_c00249{word-spacing:56.059568pt;}
._5_c00249{margin-left:-55.679904pt;}
._8_c00249{margin-left:-2.410176pt;}
._0_c00249{margin-left:-0.902480pt;}
._1_c00249{width:1.039408pt;}
._7_c00249{width:5.271728pt;}
._2_c00249{width:55.679904pt;}
._3_c00249{width:292.061200pt;}
._4_c00249{width:616.960224pt;}
._6_c00249{width:672.640128pt;}
.fs2_c00249{font-size:33.608533pt;}
.fs1_c00249{font-size:41.388800pt;}
.fs3_c00249{font-size:51.970133pt;}
.fs0_c00249{font-size:62.240000pt;}
.y0_c00249{bottom:0.000000pt;}
.y2_c00249{bottom:97.547527pt;}
.y1_c00249{bottom:115.387067pt;}
.y23_c00249{bottom:136.107200pt;}
.y22_c00249{bottom:149.147847pt;}
.y21_c00249{bottom:191.467935pt;}
.y20_c00249{bottom:218.347835pt;}
.y1f_c00249{bottom:252.987507pt;}
.y1e_c00249{bottom:287.547823pt;}
.y1d_c00249{bottom:314.427723pt;}
.y1c_c00249{bottom:349.067395pt;}
.y1b_c00249{bottom:383.708243pt;}
.y1a_c00249{bottom:411.627551pt;}
.y19_c00249{bottom:438.507451pt;}
.y18_c00249{bottom:473.147123pt;}
.y17_c00249{bottom:507.707439pt;}
.y16_c00249{bottom:534.987231pt;}
.y15_c00249{bottom:570.586955pt;}
.y14_c00249{bottom:605.226627pt;}
.y13_c00249{bottom:632.106527pt;}
.y12_c00249{bottom:666.666843pt;}
.y11_c00249{bottom:692.347067pt;}
.yf_c00249{bottom:710.987200pt;}
.ye_c00249{bottom:729.467067pt;}
.yd_c00249{bottom:748.027067pt;}
.yc_c00249{bottom:766.507067pt;}
.yb_c00249{bottom:790.587067pt;}
.y10_c00249{bottom:800.987796pt;}
.ya_c00249{bottom:809.067067pt;}
.y9_c00249{bottom:827.547067pt;}
.y8_c00249{bottom:851.147200pt;}
.y7_c00249{bottom:869.707067pt;}
.y6_c00249{bottom:890.346643pt;}
.y5_c00249{bottom:925.627387pt;}
.y4_c00249{bottom:960.267059pt;}
.y3_c00249{bottom:987.067603pt;}
.h4_c00249{height:34.967066pt;}
.h3_c00249{height:55.645234pt;}
.h1_c00249{height:55.797187pt;}
.h2_c00249{height:56.192266pt;}
.h0_c00249{height:1122.666667pt;}
.w0_c00249{width:793.333333pt;}
.x0_c00249{left:0.000000pt;}
.x2_c00249{left:73.520052pt;}
.x4_c00249{left:226.960000pt;}
.x3_c00249{left:231.279780pt;}
.x7_c00249{left:302.560000pt;}
.x5_c00249{left:371.759804pt;}
.x1_c00249{left:383.760000pt;}
.x8_c00249{left:396.800696pt;}
.x6_c00249{left:430.799112pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_35188cf2937f2f2725e1d04e.woff2')format("woff");}.ff1_c00250{font-family:ff1_c00250;line-height:1.106934;font-style:normal;font-weight:normal;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_f868fca6b01362c30c137e50.woff2')format("woff");}.ff2_c00250{font-family:ff2_c00250;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00250;src:url('chunks/assets/font_67c92e2de2dca71f692a0c20.woff2')format("woff");}.ff3_c00250{font-family:ff3_c00250;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00250;src:url('chunks/assets/font_99e75c035e146f67bb131692.woff2')format("woff");}.ff4_c00250{font-family:ff4_c00250;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00250;src:url('chunks/assets/font_6590b45c48da1602691028be.woff2')format("woff");}.ff5_c00250{font-family:ff5_c00250;line-height:0.892090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00250;src:url('chunks/assets/font_83ec61cf2e7d1bad3de3b872.woff2')format("woff");}.ff6_c00250{font-family:ff6_c00250;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00250{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00250{vertical-align:-14.760000px;}
.v0_c00250{vertical-align:0.000000px;}
.v1_c00250{vertical-align:17.636472px;}
.lsd_c00250{letter-spacing:-0.246781px;}
.lse_c00250{letter-spacing:-0.075971px;}
.ls12_c00250{letter-spacing:-0.075619px;}
.ls10_c00250{letter-spacing:-0.070020px;}
.ls7_c00250{letter-spacing:-0.063018px;}
.ls11_c00250{letter-spacing:-0.049014px;}
.lsb_c00250{letter-spacing:-0.035010px;}
.lsc_c00250{letter-spacing:-0.028008px;}
.ls9_c00250{letter-spacing:-0.021006px;}
.lsa_c00250{letter-spacing:-0.014004px;}
.lsf_c00250{letter-spacing:-0.007002px;}
.ls14_c00250{letter-spacing:-0.005847px;}
.ls8_c00250{letter-spacing:0.000000px;}
.ls0_c00250{letter-spacing:0.007002px;}
.ls1_c00250{letter-spacing:0.021006px;}
.ls5_c00250{letter-spacing:0.023387px;}
.ls4_c00250{letter-spacing:0.028008px;}
.ls6_c00250{letter-spacing:0.076006px;}
.ls3_c00250{letter-spacing:0.077022px;}
.ls2_c00250{letter-spacing:0.217062px;}
.ls13_c00250{letter-spacing:0.286485px;}
.sc__c00250{text-shadow:none;}
.sc0_c00250{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00250{-webkit-text-stroke:0px transparent;}
.sc0_c00250{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00250{word-spacing:-19.493568px;}
.ws0_c00250{word-spacing:-12.651004px;}
.ws2_c00250{word-spacing:-10.397640px;}
.wsa_c00250{word-spacing:-0.364104px;}
.ws1c_c00250{word-spacing:-0.064313px;}
.wsf_c00250{word-spacing:-0.035010px;}
.ws8_c00250{word-spacing:-0.030389px;}
.wsb_c00250{word-spacing:-0.021006px;}
.ws3_c00250{word-spacing:0.000000px;}
.ws4_c00250{word-spacing:0.007002px;}
.ws5_c00250{word-spacing:0.014004px;}
.ws6_c00250{word-spacing:0.021006px;}
.ws18_c00250{word-spacing:0.343098px;}
.ws7_c00250{word-spacing:0.357102px;}
.ws16_c00250{word-spacing:0.364104px;}
.ws15_c00250{word-spacing:0.371106px;}
.ws9_c00250{word-spacing:0.378108px;}
.ws11_c00250{word-spacing:0.413118px;}
.ws17_c00250{word-spacing:4.327236px;}
.ws1a_c00250{word-spacing:5.127503px;}
.ws19_c00250{word-spacing:5.390602px;}
.ws1b_c00250{word-spacing:5.419835px;}
.ws14_c00250{word-spacing:43.972560px;}
.ws10_c00250{word-spacing:63.361098px;}
.wsd_c00250{word-spacing:63.368100px;}
.wse_c00250{word-spacing:63.375102px;}
.ws13_c00250{word-spacing:63.396108px;}
.wsc_c00250{word-spacing:63.410112px;}
.ws12_c00250{word-spacing:63.417114px;}
._2_c00250{margin-left:-62.954982px;}
._d_c00250{margin-left:-2.715390px;}
._1_c00250{margin-left:-1.477422px;}
._0_c00250{width:1.365390px;}
._c_c00250{width:5.930694px;}
._6_c00250{width:63.361098px;}
._3_c00250{width:599.756310px;}
._4_c00250{width:611.141562px;}
._5_c00250{width:624.088260px;}
._a_c00250{width:681.770736px;}
._9_c00250{width:716.346612px;}
._8_c00250{width:745.264872px;}
._7_c00250{width:756.608112px;}
._b_c00250{width:957.957624px;}
.fc0_c00250{color:rgb(0,0,0);}
.fs3_c00250{font-size:37.809600px;}
.fs1_c00250{font-size:46.562400px;}
.fs4_c00250{font-size:58.466400px;}
.fs0_c00250{font-size:70.020000px;}
.fs2_c00250{font-size:75.971400px;}
.y0_c00250{bottom:0.000000px;}
.y2_c00250{bottom:109.740968px;}
.y1_c00250{bottom:129.810450px;}
.y24_c00250{bottom:149.429891px;}
.y23_c00250{bottom:170.940450px;}
.y22_c00250{bottom:185.700995px;}
.y21_c00250{bottom:281.010468px;}
.y20_c00250{bottom:311.161080px;}
.y1f_c00250{bottom:341.400968px;}
.y1e_c00250{bottom:361.470450px;}
.y1b_c00250{bottom:382.440450px;}
.y1a_c00250{bottom:403.230450px;}
.y19_c00250{bottom:424.110600px;}
.y18_c00250{bottom:444.900450px;}
.y1d_c00250{bottom:467.490243px;}
.y17_c00250{bottom:467.670450px;}
.y1c_c00250{bottom:487.650752px;}
.y16_c00250{bottom:488.550450px;}
.y15_c00250{bottom:509.430600px;}
.y14_c00250{bottom:530.220450px;}
.y13_c00250{bottom:551.190450px;}
.y12_c00250{bottom:571.979878px;}
.y11_c00250{bottom:611.670716px;}
.y10_c00250{bottom:650.640346px;}
.yf_c00250{bottom:680.790958px;}
.ye_c00250{bottom:719.760589px;}
.yd_c00250{bottom:758.730220px;}
.yc_c00250{bottom:797.610576px;}
.yb_c00250{bottom:836.580207px;}
.ya_c00250{bottom:866.820094px;}
.y9_c00250{bottom:905.700450px;}
.y8_c00250{bottom:930.540600px;}
.y7_c00250{bottom:979.589793px;}
.y6_c00250{bottom:1018.651332px;}
.y5_c00250{bottom:1050.060553px;}
.y4_c00250{bottom:1080.300441px;}
.y3_c00250{bottom:1110.451053px;}
.h5_c00250{height:39.338549px;}
.h6_c00250{height:54.098549px;}
.h2_c00250{height:62.600889px;}
.h1_c00250{height:62.771836px;}
.h4_c00250{height:63.216299px;}
.h3_c00250{height:68.589413px;}
.h0_c00250{height:1263.000000px;}
.w0_c00250{width:892.500000px;}
.x0_c00250{left:0.000000px;}
.x2_c00250{left:82.710059px;}
.x4_c00250{left:241.920000px;}
.x3_c00250{left:246.780864px;}
.x8_c00250{left:336.870000px;}
.x6_c00250{left:397.079069px;}
.x5_c00250{left:414.629581px;}
.x1_c00250{left:431.730000px;}
.x7_c00250{left:537.388645px;}
@media print{
.v2_c00250{vertical-align:-13.120000pt;}
.v0_c00250{vertical-align:0.000000pt;}
.v1_c00250{vertical-align:15.676864pt;}
.lsd_c00250{letter-spacing:-0.219361pt;}
.lse_c00250{letter-spacing:-0.067530pt;}
.ls12_c00250{letter-spacing:-0.067217pt;}
.ls10_c00250{letter-spacing:-0.062240pt;}
.ls7_c00250{letter-spacing:-0.056016pt;}
.ls11_c00250{letter-spacing:-0.043568pt;}
.lsb_c00250{letter-spacing:-0.031120pt;}
.lsc_c00250{letter-spacing:-0.024896pt;}
.ls9_c00250{letter-spacing:-0.018672pt;}
.lsa_c00250{letter-spacing:-0.012448pt;}
.lsf_c00250{letter-spacing:-0.006224pt;}
.ls14_c00250{letter-spacing:-0.005197pt;}
.ls8_c00250{letter-spacing:0.000000pt;}
.ls0_c00250{letter-spacing:0.006224pt;}
.ls1_c00250{letter-spacing:0.018672pt;}
.ls5_c00250{letter-spacing:0.020788pt;}
.ls4_c00250{letter-spacing:0.024896pt;}
.ls6_c00250{letter-spacing:0.067561pt;}
.ls3_c00250{letter-spacing:0.068464pt;}
.ls2_c00250{letter-spacing:0.192944pt;}
.ls13_c00250{letter-spacing:0.254654pt;}
.ws1_c00250{word-spacing:-17.327616pt;}
.ws0_c00250{word-spacing:-11.245337pt;}
.ws2_c00250{word-spacing:-9.242347pt;}
.wsa_c00250{word-spacing:-0.323648pt;}
.ws1c_c00250{word-spacing:-0.057167pt;}
.wsf_c00250{word-spacing:-0.031120pt;}
.ws8_c00250{word-spacing:-0.027012pt;}
.wsb_c00250{word-spacing:-0.018672pt;}
.ws3_c00250{word-spacing:0.000000pt;}
.ws4_c00250{word-spacing:0.006224pt;}
.ws5_c00250{word-spacing:0.012448pt;}
.ws6_c00250{word-spacing:0.018672pt;}
.ws18_c00250{word-spacing:0.304976pt;}
.ws7_c00250{word-spacing:0.317424pt;}
.ws16_c00250{word-spacing:0.323648pt;}
.ws15_c00250{word-spacing:0.329872pt;}
.ws9_c00250{word-spacing:0.336096pt;}
.ws11_c00250{word-spacing:0.367216pt;}
.ws17_c00250{word-spacing:3.846432pt;}
.ws1a_c00250{word-spacing:4.557781pt;}
.ws19_c00250{word-spacing:4.791646pt;}
.ws1b_c00250{word-spacing:4.817631pt;}
.ws14_c00250{word-spacing:39.086720pt;}
.ws10_c00250{word-spacing:56.320976pt;}
.wsd_c00250{word-spacing:56.327200pt;}
.wse_c00250{word-spacing:56.333424pt;}
.ws13_c00250{word-spacing:56.352096pt;}
.wsc_c00250{word-spacing:56.364544pt;}
.ws12_c00250{word-spacing:56.370768pt;}
._2_c00250{margin-left:-55.959984pt;}
._d_c00250{margin-left:-2.413680pt;}
._1_c00250{margin-left:-1.313264pt;}
._0_c00250{width:1.213680pt;}
._c_c00250{width:5.271728pt;}
._6_c00250{width:56.320976pt;}
._3_c00250{width:533.116720pt;}
._4_c00250{width:543.236944pt;}
._5_c00250{width:554.745120pt;}
._a_c00250{width:606.018432pt;}
._9_c00250{width:636.752544pt;}
._8_c00250{width:662.457664pt;}
._7_c00250{width:672.540544pt;}
._b_c00250{width:851.517888pt;}
.fs3_c00250{font-size:33.608533pt;}
.fs1_c00250{font-size:41.388800pt;}
.fs4_c00250{font-size:51.970133pt;}
.fs0_c00250{font-size:62.240000pt;}
.fs2_c00250{font-size:67.530133pt;}
.y0_c00250{bottom:0.000000pt;}
.y2_c00250{bottom:97.547527pt;}
.y1_c00250{bottom:115.387067pt;}
.y24_c00250{bottom:132.826570pt;}
.y23_c00250{bottom:151.947067pt;}
.y22_c00250{bottom:165.067551pt;}
.y21_c00250{bottom:249.787083pt;}
.y20_c00250{bottom:276.587627pt;}
.y1f_c00250{bottom:303.467527pt;}
.y1e_c00250{bottom:321.307067pt;}
.y1b_c00250{bottom:339.947067pt;}
.y1a_c00250{bottom:358.427067pt;}
.y19_c00250{bottom:376.987200pt;}
.y18_c00250{bottom:395.467067pt;}
.y1d_c00250{bottom:415.546883pt;}
.y17_c00250{bottom:415.707067pt;}
.y1c_c00250{bottom:433.467335pt;}
.y16_c00250{bottom:434.267067pt;}
.y15_c00250{bottom:452.827200pt;}
.y14_c00250{bottom:471.307067pt;}
.y13_c00250{bottom:489.947067pt;}
.y12_c00250{bottom:508.426559pt;}
.y11_c00250{bottom:543.707303pt;}
.y10_c00250{bottom:578.346975pt;}
.yf_c00250{bottom:605.147519pt;}
.ye_c00250{bottom:639.787191pt;}
.yd_c00250{bottom:674.426863pt;}
.yc_c00250{bottom:708.987179pt;}
.yb_c00250{bottom:743.626851pt;}
.ya_c00250{bottom:770.506751pt;}
.y9_c00250{bottom:805.067067pt;}
.y8_c00250{bottom:827.147200pt;}
.y7_c00250{bottom:870.746483pt;}
.y6_c00250{bottom:905.467851pt;}
.y5_c00250{bottom:933.387159pt;}
.y4_c00250{bottom:960.267059pt;}
.y3_c00250{bottom:987.067603pt;}
.h5_c00250{height:34.967599pt;}
.h6_c00250{height:48.087599pt;}
.h2_c00250{height:55.645234pt;}
.h1_c00250{height:55.797187pt;}
.h4_c00250{height:56.192266pt;}
.h3_c00250{height:60.968367pt;}
.h0_c00250{height:1122.666667pt;}
.w0_c00250{width:793.333333pt;}
.x0_c00250{left:0.000000pt;}
.x2_c00250{left:73.520052pt;}
.x4_c00250{left:215.040000pt;}
.x3_c00250{left:219.360768pt;}
.x8_c00250{left:299.440000pt;}
.x6_c00250{left:352.959172pt;}
.x5_c00250{left:368.559628pt;}
.x1_c00250{left:383.760000pt;}
.x7_c00250{left:477.678796pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_193b28d3da0a919e48e3c791.woff2')format("woff");}.ff1_c00251{font-family:ff1_c00251;line-height:1.106934;font-style:normal;font-weight:normal;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_307168290ee9699a2f0d85dd.woff2')format("woff");}.ff2_c00251{font-family:ff2_c00251;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00251;src:url('chunks/assets/font_587da32f32e091c8eebe00b9.woff2')format("woff");}.ff3_c00251{font-family:ff3_c00251;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00251;src:url('chunks/assets/font_ab6d761312b4cecb74d7808b.woff2')format("woff");}.ff4_c00251{font-family:ff4_c00251;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00251;src:url('chunks/assets/font_b65e49e008a52df73c7c4607.woff2')format("woff");}.ff5_c00251{font-family:ff5_c00251;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00251;src:url('chunks/assets/font_cd603f78a191bb2448f9cfd8.woff2')format("woff");}.ff6_c00251{font-family:ff6_c00251;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00251{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00251{vertical-align:-14.760000px;}
.v0_c00251{vertical-align:0.000000px;}
.v1_c00251{vertical-align:32.399586px;}
.ls12_c00251{letter-spacing:-1.064088px;}
.ls14_c00251{letter-spacing:-0.707443px;}
.ls13_c00251{letter-spacing:-0.105240px;}
.ls11_c00251{letter-spacing:-0.075619px;}
.ls8_c00251{letter-spacing:-0.063018px;}
.lse_c00251{letter-spacing:-0.049014px;}
.lsf_c00251{letter-spacing:-0.042012px;}
.lsc_c00251{letter-spacing:-0.035010px;}
.lsb_c00251{letter-spacing:-0.028008px;}
.ls10_c00251{letter-spacing:-0.021006px;}
.lsa_c00251{letter-spacing:-0.014004px;}
.lsd_c00251{letter-spacing:-0.007002px;}
.ls9_c00251{letter-spacing:0.000000px;}
.ls3_c00251{letter-spacing:0.007002px;}
.ls6_c00251{letter-spacing:0.014004px;}
.ls2_c00251{letter-spacing:0.023281px;}
.ls7_c00251{letter-spacing:0.028008px;}
.ls1_c00251{letter-spacing:0.035010px;}
.ls5_c00251{letter-spacing:0.273078px;}
.ls4_c00251{letter-spacing:0.630180px;}
.ls0_c00251{letter-spacing:3.935124px;}
.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;}
}
.ws3_c00251{word-spacing:-19.493568px;}
.ws0_c00251{word-spacing:-19.451556px;}
.ws2_c00251{word-spacing:-19.430550px;}
.ws1_c00251{word-spacing:-12.967628px;}
.ws4_c00251{word-spacing:-10.397640px;}
.ws12_c00251{word-spacing:-0.378108px;}
.ws1f_c00251{word-spacing:-0.239712px;}
.ws8_c00251{word-spacing:-0.049014px;}
.ws14_c00251{word-spacing:-0.028008px;}
.ws5_c00251{word-spacing:0.000000px;}
.ws18_c00251{word-spacing:0.364104px;}
.ws1c_c00251{word-spacing:0.392112px;}
.ws20_c00251{word-spacing:0.719137px;}
.ws1e_c00251{word-spacing:1.075782px;}
.wsa_c00251{word-spacing:2.856816px;}
.ws9_c00251{word-spacing:2.898828px;}
.ws1a_c00251{word-spacing:3.585024px;}
.wsb_c00251{word-spacing:3.592026px;}
.ws1b_c00251{word-spacing:3.599028px;}
.ws7_c00251{word-spacing:3.977136px;}
.wse_c00251{word-spacing:4.677336px;}
.wsd_c00251{word-spacing:4.698342px;}
.ws6_c00251{word-spacing:6.476850px;}
.ws19_c00251{word-spacing:8.661474px;}
.ws1d_c00251{word-spacing:9.739782px;}
.ws11_c00251{word-spacing:11.140182px;}
.ws10_c00251{word-spacing:14.025006px;}
.wsf_c00251{word-spacing:14.060016px;}
.wsc_c00251{word-spacing:19.437552px;}
.ws15_c00251{word-spacing:62.639892px;}
.ws16_c00251{word-spacing:62.667900px;}
.ws13_c00251{word-spacing:62.674902px;}
.ws17_c00251{word-spacing:62.688906px;}
._6_c00251{margin-left:-63.046008px;}
._1_c00251{margin-left:-61.890678px;}
._9_c00251{margin-left:-2.708388px;}
._7_c00251{margin-left:-1.288368px;}
._0_c00251{width:1.092312px;}
._a_c00251{width:2.267103px;}
._8_c00251{width:5.930694px;}
._3_c00251{width:62.639892px;}
._4_c00251{width:426.162726px;}
._2_c00251{width:550.070118px;}
._5_c00251{width:826.922196px;}
.fc0_c00251{color:rgb(0,0,0);}
.fs2_c00251{font-size:37.809600px;}
.fs1_c00251{font-size:46.562400px;}
.fs3_c00251{font-size:58.466400px;}
.fs0_c00251{font-size:70.020000px;}
.y0_c00251{bottom:0.000000px;}
.y2_c00251{bottom:109.740968px;}
.y1_c00251{bottom:129.810450px;}
.y27_c00251{bottom:153.120600px;}
.y26_c00251{bottom:170.940450px;}
.y25_c00251{bottom:185.700069px;}
.y24_c00251{bottom:262.020118px;}
.y23_c00251{bottom:292.170730px;}
.y22_c00251{bottom:322.410618px;}
.y21_c00251{bottom:352.561230px;}
.y20_c00251{bottom:382.801117px;}
.y1f_c00251{bottom:402.870600px;}
.y1d_c00251{bottom:423.840600px;}
.y1c_c00251{bottom:444.630450px;}
.y1b_c00251{bottom:465.510450px;}
.y1a_c00251{bottom:486.300450px;}
.y19_c00251{bottom:509.070450px;}
.y1e_c00251{bottom:518.969772px;}
.y18_c00251{bottom:529.950450px;}
.y17_c00251{bottom:550.830450px;}
.y16_c00251{bottom:571.620450px;}
.y15_c00251{bottom:592.590450px;}
.y14_c00251{bottom:613.378331px;}
.y13_c00251{bottom:634.258295px;}
.y12_c00251{bottom:664.408907px;}
.y11_c00251{bottom:694.648794px;}
.y10_c00251{bottom:724.799406px;}
.yf_c00251{bottom:755.039294px;}
.ye_c00251{bottom:785.639784px;}
.yd_c00251{bottom:817.409609px;}
.yc_c00251{bottom:848.729555px;}
.yb_c00251{bottom:878.969442px;}
.ya_c00251{bottom:909.120054px;}
.y9_c00251{bottom:929.280563px;}
.y8_c00251{bottom:959.519339px;}
.y7_c00251{bottom:989.669950px;}
.y6_c00251{bottom:1019.909838px;}
.y5_c00251{bottom:1050.060553px;}
.y4_c00251{bottom:1080.300441px;}
.y3_c00251{bottom:1110.451053px;}
.h8_c00251{height:39.337949px;}
.h7_c00251{height:39.338549px;}
.h2_c00251{height:62.600889px;}
.h1_c00251{height:62.771836px;}
.h6_c00251{height:62.773960px;}
.h5_c00251{height:63.216299px;}
.h4_c00251{height:73.673232px;}
.h3_c00251{height:74.028372px;}
.h0_c00251{height:1263.000000px;}
.w0_c00251{width:892.500000px;}
.x0_c00251{left:0.000000px;}
.x2_c00251{left:82.710059px;}
.x4_c00251{left:247.500000px;}
.x3_c00251{left:252.450490px;}
.x7_c00251{left:336.870000px;}
.x5_c00251{left:419.129523px;}
.x1_c00251{left:431.730000px;}
.x8_c00251{left:446.400536px;}
.x6_c00251{left:509.940212px;}
@media print{
.v2_c00251{vertical-align:-13.120000pt;}
.v0_c00251{vertical-align:0.000000pt;}
.v1_c00251{vertical-align:28.799632pt;}
.ls12_c00251{letter-spacing:-0.945856pt;}
.ls14_c00251{letter-spacing:-0.628839pt;}
.ls13_c00251{letter-spacing:-0.093546pt;}
.ls11_c00251{letter-spacing:-0.067217pt;}
.ls8_c00251{letter-spacing:-0.056016pt;}
.lse_c00251{letter-spacing:-0.043568pt;}
.lsf_c00251{letter-spacing:-0.037344pt;}
.lsc_c00251{letter-spacing:-0.031120pt;}
.lsb_c00251{letter-spacing:-0.024896pt;}
.ls10_c00251{letter-spacing:-0.018672pt;}
.lsa_c00251{letter-spacing:-0.012448pt;}
.lsd_c00251{letter-spacing:-0.006224pt;}
.ls9_c00251{letter-spacing:0.000000pt;}
.ls3_c00251{letter-spacing:0.006224pt;}
.ls6_c00251{letter-spacing:0.012448pt;}
.ls2_c00251{letter-spacing:0.020694pt;}
.ls7_c00251{letter-spacing:0.024896pt;}
.ls1_c00251{letter-spacing:0.031120pt;}
.ls5_c00251{letter-spacing:0.242736pt;}
.ls4_c00251{letter-spacing:0.560160pt;}
.ls0_c00251{letter-spacing:3.497888pt;}
.ws3_c00251{word-spacing:-17.327616pt;}
.ws0_c00251{word-spacing:-17.290272pt;}
.ws2_c00251{word-spacing:-17.271600pt;}
.ws1_c00251{word-spacing:-11.526781pt;}
.ws4_c00251{word-spacing:-9.242347pt;}
.ws12_c00251{word-spacing:-0.336096pt;}
.ws1f_c00251{word-spacing:-0.213078pt;}
.ws8_c00251{word-spacing:-0.043568pt;}
.ws14_c00251{word-spacing:-0.024896pt;}
.ws5_c00251{word-spacing:0.000000pt;}
.ws18_c00251{word-spacing:0.323648pt;}
.ws1c_c00251{word-spacing:0.348544pt;}
.ws20_c00251{word-spacing:0.639233pt;}
.ws1e_c00251{word-spacing:0.956250pt;}
.wsa_c00251{word-spacing:2.539392pt;}
.ws9_c00251{word-spacing:2.576736pt;}
.ws1a_c00251{word-spacing:3.186688pt;}
.wsb_c00251{word-spacing:3.192912pt;}
.ws1b_c00251{word-spacing:3.199136pt;}
.ws7_c00251{word-spacing:3.535232pt;}
.wse_c00251{word-spacing:4.157632pt;}
.wsd_c00251{word-spacing:4.176304pt;}
.ws6_c00251{word-spacing:5.757200pt;}
.ws19_c00251{word-spacing:7.699088pt;}
.ws1d_c00251{word-spacing:8.657584pt;}
.ws11_c00251{word-spacing:9.902384pt;}
.ws10_c00251{word-spacing:12.466672pt;}
.wsf_c00251{word-spacing:12.497792pt;}
.wsc_c00251{word-spacing:17.277824pt;}
.ws15_c00251{word-spacing:55.679904pt;}
.ws16_c00251{word-spacing:55.704800pt;}
.ws13_c00251{word-spacing:55.711024pt;}
.ws17_c00251{word-spacing:55.723472pt;}
._6_c00251{margin-left:-56.040896pt;}
._1_c00251{margin-left:-55.013936pt;}
._9_c00251{margin-left:-2.407456pt;}
._7_c00251{margin-left:-1.145216pt;}
._0_c00251{width:0.970944pt;}
._a_c00251{width:2.015203pt;}
._8_c00251{width:5.271728pt;}
._3_c00251{width:55.679904pt;}
._4_c00251{width:378.811312pt;}
._2_c00251{width:488.951216pt;}
._5_c00251{width:735.041952pt;}
.fs2_c00251{font-size:33.608533pt;}
.fs1_c00251{font-size:41.388800pt;}
.fs3_c00251{font-size:51.970133pt;}
.fs0_c00251{font-size:62.240000pt;}
.y0_c00251{bottom:0.000000pt;}
.y2_c00251{bottom:97.547527pt;}
.y1_c00251{bottom:115.387067pt;}
.y27_c00251{bottom:136.107200pt;}
.y26_c00251{bottom:151.947067pt;}
.y25_c00251{bottom:165.066728pt;}
.y24_c00251{bottom:232.906772pt;}
.y23_c00251{bottom:259.707316pt;}
.y22_c00251{bottom:286.587216pt;}
.y21_c00251{bottom:313.387760pt;}
.y20_c00251{bottom:340.267660pt;}
.y1f_c00251{bottom:358.107200pt;}
.y1d_c00251{bottom:376.747200pt;}
.y1c_c00251{bottom:395.227067pt;}
.y1b_c00251{bottom:413.787067pt;}
.y1a_c00251{bottom:432.267067pt;}
.y19_c00251{bottom:452.507067pt;}
.y1e_c00251{bottom:461.306464pt;}
.y18_c00251{bottom:471.067067pt;}
.y17_c00251{bottom:489.627067pt;}
.y16_c00251{bottom:508.107067pt;}
.y15_c00251{bottom:526.747067pt;}
.y14_c00251{bottom:545.225183pt;}
.y13_c00251{bottom:563.785151pt;}
.y12_c00251{bottom:590.585695pt;}
.y11_c00251{bottom:617.465595pt;}
.y10_c00251{bottom:644.266139pt;}
.yf_c00251{bottom:671.146039pt;}
.ye_c00251{bottom:698.346475pt;}
.yd_c00251{bottom:726.586319pt;}
.yc_c00251{bottom:754.426271pt;}
.yb_c00251{bottom:781.306171pt;}
.ya_c00251{bottom:808.106715pt;}
.y9_c00251{bottom:826.027167pt;}
.y8_c00251{bottom:852.906079pt;}
.y7_c00251{bottom:879.706623pt;}
.y6_c00251{bottom:906.586523pt;}
.y5_c00251{bottom:933.387159pt;}
.y4_c00251{bottom:960.267059pt;}
.y3_c00251{bottom:987.067603pt;}
.h8_c00251{height:34.967066pt;}
.h7_c00251{height:34.967599pt;}
.h2_c00251{height:55.645234pt;}
.h1_c00251{height:55.797187pt;}
.h6_c00251{height:55.799076pt;}
.h5_c00251{height:56.192266pt;}
.h4_c00251{height:65.487318pt;}
.h3_c00251{height:65.802998pt;}
.h0_c00251{height:1122.666667pt;}
.w0_c00251{width:793.333333pt;}
.x0_c00251{left:0.000000pt;}
.x2_c00251{left:73.520052pt;}
.x4_c00251{left:220.000000pt;}
.x3_c00251{left:224.400436pt;}
.x7_c00251{left:299.440000pt;}
.x5_c00251{left:372.559576pt;}
.x1_c00251{left:383.760000pt;}
.x8_c00251{left:396.800476pt;}
.x6_c00251{left:453.280188pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_04b25016c3ef76f9d7652cbc.woff2')format("woff");}.ff1_c00252{font-family:ff1_c00252;line-height:1.106934;font-style:normal;font-weight:normal;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_aef68242af1de63d39fb0c51.woff2')format("woff");}.ff2_c00252{font-family:ff2_c00252;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00252{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00252{vertical-align:0.000000px;}
.lsc_c00252{letter-spacing:-0.113957px;}
.lse_c00252{letter-spacing:-0.098028px;}
.ls5_c00252{letter-spacing:-0.063018px;}
.lsa_c00252{letter-spacing:-0.056016px;}
.ls8_c00252{letter-spacing:-0.049014px;}
.lsf_c00252{letter-spacing:-0.042012px;}
.ls9_c00252{letter-spacing:-0.035010px;}
.ls7_c00252{letter-spacing:-0.021006px;}
.lsb_c00252{letter-spacing:-0.014004px;}
.lsd_c00252{letter-spacing:-0.007002px;}
.ls6_c00252{letter-spacing:0.000000px;}
.ls4_c00252{letter-spacing:0.007002px;}
.ls2_c00252{letter-spacing:0.014004px;}
.ls1_c00252{letter-spacing:0.021006px;}
.ls3_c00252{letter-spacing:0.028008px;}
.ls0_c00252{letter-spacing:0.035010px;}
.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;}
}
.ws1_c00252{word-spacing:-19.493568px;}
.ws0_c00252{word-spacing:-19.430550px;}
.ws4_c00252{word-spacing:-0.049014px;}
.ws15_c00252{word-spacing:-0.007002px;}
.ws2_c00252{word-spacing:0.000000px;}
.wsc_c00252{word-spacing:0.007002px;}
.ws11_c00252{word-spacing:0.007597px;}
.ws14_c00252{word-spacing:0.021006px;}
.ws1e_c00252{word-spacing:0.350100px;}
.wsd_c00252{word-spacing:0.364104px;}
.ws5_c00252{word-spacing:0.392112px;}
.wse_c00252{word-spacing:7.898256px;}
.wsf_c00252{word-spacing:7.919262px;}
.ws3_c00252{word-spacing:9.368676px;}
.ws10_c00252{word-spacing:10.818090px;}
.ws12_c00252{word-spacing:11.833380px;}
.ws13_c00252{word-spacing:11.875392px;}
.ws16_c00252{word-spacing:33.462558px;}
.ws1d_c00252{word-spacing:43.608456px;}
.wsb_c00252{word-spacing:43.895538px;}
.ws17_c00252{word-spacing:62.632890px;}
.ws1a_c00252{word-spacing:62.639892px;}
.ws19_c00252{word-spacing:62.646894px;}
.ws1c_c00252{word-spacing:62.667900px;}
.ws18_c00252{word-spacing:62.674902px;}
.ws1b_c00252{word-spacing:62.723916px;}
.ws9_c00252{word-spacing:62.961984px;}
.ws8_c00252{word-spacing:62.982990px;}
.wsa_c00252{word-spacing:63.003996px;}
.ws6_c00252{word-spacing:63.018000px;}
.ws7_c00252{word-spacing:63.039006px;}
._3_c00252{margin-left:-62.758926px;}
._d_c00252{margin-left:-33.483564px;}
._0_c00252{margin-left:-1.372392px;}
._c_c00252{width:1.078308px;}
._1_c00252{width:62.639892px;}
._6_c00252{width:344.694456px;}
._b_c00252{width:347.810346px;}
._a_c00252{width:359.979822px;}
._8_c00252{width:409.588992px;}
._4_c00252{width:414.000252px;}
._2_c00252{width:425.882646px;}
._7_c00252{width:441.231030px;}
._e_c00252{width:443.163582px;}
._5_c00252{width:468.839916px;}
._9_c00252{width:557.940366px;}
.fc0_c00252{color:rgb(0,0,0);}
.fs0_c00252{font-size:70.020000px;}
.fs1_c00252{font-size:75.971400px;}
.y0_c00252{bottom:0.000000px;}
.y2_c00252{bottom:109.740968px;}
.y1_c00252{bottom:129.810450px;}
.y28_c00252{bottom:159.870600px;}
.y27_c00252{bottom:180.660450px;}
.y26_c00252{bottom:201.540600px;}
.y25_c00252{bottom:222.420450px;}
.y2a_c00252{bottom:244.920393px;}
.y24_c00252{bottom:245.190450px;}
.y29_c00252{bottom:265.080901px;}
.y23_c00252{bottom:265.980450px;}
.y22_c00252{bottom:286.860450px;}
.y21_c00252{bottom:307.740450px;}
.y20_c00252{bottom:328.620450px;}
.y1f_c00252{bottom:349.409496px;}
.y1e_c00252{bottom:389.100333px;}
.y1d_c00252{bottom:427.980689px;}
.y1c_c00252{bottom:458.220576px;}
.y1b_c00252{bottom:497.190207px;}
.y1a_c00252{bottom:536.159838px;}
.y19_c00252{bottom:566.310450px;}
.y18_c00252{bottom:591.060450px;}
.y17_c00252{bottom:640.198947px;}
.y16_c00252{bottom:679.168578px;}
.y15_c00252{bottom:709.319190px;}
.y14_c00252{bottom:739.559077px;}
.y13_c00252{bottom:778.439433px;}
.y12_c00252{bottom:798.599941px;}
.y11_c00252{bottom:818.760450px;}
.yf_c00252{bottom:839.640450px;}
.ye_c00252{bottom:860.520450px;}
.yd_c00252{bottom:881.310450px;}
.yc_c00252{bottom:902.190450px;}
.yb_c00252{bottom:924.960450px;}
.y10_c00252{bottom:934.769622px;}
.ya_c00252{bottom:945.840450px;}
.y9_c00252{bottom:966.630450px;}
.y8_c00252{bottom:987.510450px;}
.y7_c00252{bottom:1008.390450px;}
.y6_c00252{bottom:1029.269865px;}
.y5_c00252{bottom:1050.060553px;}
.y4_c00252{bottom:1080.300441px;}
.y3_c00252{bottom:1110.451053px;}
.h1_c00252{height:62.771836px;}
.h2_c00252{height:63.216299px;}
.h3_c00252{height:68.589413px;}
.h0_c00252{height:1263.000000px;}
.w0_c00252{width:892.500000px;}
.x0_c00252{left:0.000000px;}
.x2_c00252{left:82.710059px;}
.x4_c00252{left:259.200000px;}
.x3_c00252{left:264.060108px;}
.xa_c00252{left:288.180000px;}
.x9_c00252{left:293.130603px;}
.x7_c00252{left:336.870000px;}
.xc_c00252{left:340.651238px;}
.xb_c00252{left:345.060747px;}
.x1_c00252{left:431.730000px;}
.x5_c00252{left:439.650292px;}
.x8_c00252{left:446.400536px;}
.xd_c00252{left:454.680558px;}
.x6_c00252{left:509.939870px;}
@media print{
.v0_c00252{vertical-align:0.000000pt;}
.lsc_c00252{letter-spacing:-0.101295pt;}
.lse_c00252{letter-spacing:-0.087136pt;}
.ls5_c00252{letter-spacing:-0.056016pt;}
.lsa_c00252{letter-spacing:-0.049792pt;}
.ls8_c00252{letter-spacing:-0.043568pt;}
.lsf_c00252{letter-spacing:-0.037344pt;}
.ls9_c00252{letter-spacing:-0.031120pt;}
.ls7_c00252{letter-spacing:-0.018672pt;}
.lsb_c00252{letter-spacing:-0.012448pt;}
.lsd_c00252{letter-spacing:-0.006224pt;}
.ls6_c00252{letter-spacing:0.000000pt;}
.ls4_c00252{letter-spacing:0.006224pt;}
.ls2_c00252{letter-spacing:0.012448pt;}
.ls1_c00252{letter-spacing:0.018672pt;}
.ls3_c00252{letter-spacing:0.024896pt;}
.ls0_c00252{letter-spacing:0.031120pt;}
.ws1_c00252{word-spacing:-17.327616pt;}
.ws0_c00252{word-spacing:-17.271600pt;}
.ws4_c00252{word-spacing:-0.043568pt;}
.ws15_c00252{word-spacing:-0.006224pt;}
.ws2_c00252{word-spacing:0.000000pt;}
.wsc_c00252{word-spacing:0.006224pt;}
.ws11_c00252{word-spacing:0.006753pt;}
.ws14_c00252{word-spacing:0.018672pt;}
.ws1e_c00252{word-spacing:0.311200pt;}
.wsd_c00252{word-spacing:0.323648pt;}
.ws5_c00252{word-spacing:0.348544pt;}
.wse_c00252{word-spacing:7.020672pt;}
.wsf_c00252{word-spacing:7.039344pt;}
.ws3_c00252{word-spacing:8.327712pt;}
.ws10_c00252{word-spacing:9.616080pt;}
.ws12_c00252{word-spacing:10.518560pt;}
.ws13_c00252{word-spacing:10.555904pt;}
.ws16_c00252{word-spacing:29.744496pt;}
.ws1d_c00252{word-spacing:38.763072pt;}
.wsb_c00252{word-spacing:39.018256pt;}
.ws17_c00252{word-spacing:55.673680pt;}
.ws1a_c00252{word-spacing:55.679904pt;}
.ws19_c00252{word-spacing:55.686128pt;}
.ws1c_c00252{word-spacing:55.704800pt;}
.ws18_c00252{word-spacing:55.711024pt;}
.ws1b_c00252{word-spacing:55.754592pt;}
.ws9_c00252{word-spacing:55.966208pt;}
.ws8_c00252{word-spacing:55.984880pt;}
.wsa_c00252{word-spacing:56.003552pt;}
.ws6_c00252{word-spacing:56.016000pt;}
.ws7_c00252{word-spacing:56.034672pt;}
._3_c00252{margin-left:-55.785712pt;}
._d_c00252{margin-left:-29.763168pt;}
._0_c00252{margin-left:-1.219904pt;}
._c_c00252{width:0.958496pt;}
._1_c00252{width:55.679904pt;}
._6_c00252{width:306.395072pt;}
._b_c00252{width:309.164752pt;}
._a_c00252{width:319.982064pt;}
._8_c00252{width:364.079104pt;}
._4_c00252{width:368.000224pt;}
._2_c00252{width:378.562352pt;}
._7_c00252{width:392.205360pt;}
._e_c00252{width:393.923184pt;}
._5_c00252{width:416.746592pt;}
._9_c00252{width:495.946992pt;}
.fs0_c00252{font-size:62.240000pt;}
.fs1_c00252{font-size:67.530133pt;}
.y0_c00252{bottom:0.000000pt;}
.y2_c00252{bottom:97.547527pt;}
.y1_c00252{bottom:115.387067pt;}
.y28_c00252{bottom:142.107200pt;}
.y27_c00252{bottom:160.587067pt;}
.y26_c00252{bottom:179.147200pt;}
.y25_c00252{bottom:197.707067pt;}
.y2a_c00252{bottom:217.707016pt;}
.y24_c00252{bottom:217.947067pt;}
.y29_c00252{bottom:235.627468pt;}
.y23_c00252{bottom:236.427067pt;}
.y22_c00252{bottom:254.987067pt;}
.y21_c00252{bottom:273.547067pt;}
.y20_c00252{bottom:292.107067pt;}
.y1f_c00252{bottom:310.586219pt;}
.y1e_c00252{bottom:345.866963pt;}
.y1d_c00252{bottom:380.427279pt;}
.y1c_c00252{bottom:407.307179pt;}
.y1b_c00252{bottom:441.946851pt;}
.y1a_c00252{bottom:476.586523pt;}
.y19_c00252{bottom:503.387067pt;}
.y18_c00252{bottom:525.387067pt;}
.y17_c00252{bottom:569.065731pt;}
.y16_c00252{bottom:603.705403pt;}
.y15_c00252{bottom:630.505947pt;}
.y14_c00252{bottom:657.385847pt;}
.y13_c00252{bottom:691.946163pt;}
.y12_c00252{bottom:709.866615pt;}
.y11_c00252{bottom:727.787067pt;}
.yf_c00252{bottom:746.347067pt;}
.ye_c00252{bottom:764.907067pt;}
.yd_c00252{bottom:783.387067pt;}
.yc_c00252{bottom:801.947067pt;}
.yb_c00252{bottom:822.187067pt;}
.y10_c00252{bottom:830.906331pt;}
.ya_c00252{bottom:840.747067pt;}
.y9_c00252{bottom:859.227067pt;}
.y8_c00252{bottom:877.787067pt;}
.y7_c00252{bottom:896.347067pt;}
.y6_c00252{bottom:914.906547pt;}
.y5_c00252{bottom:933.387159pt;}
.y4_c00252{bottom:960.267059pt;}
.y3_c00252{bottom:987.067603pt;}
.h1_c00252{height:55.797187pt;}
.h2_c00252{height:56.192266pt;}
.h3_c00252{height:60.968367pt;}
.h0_c00252{height:1122.666667pt;}
.w0_c00252{width:793.333333pt;}
.x0_c00252{left:0.000000pt;}
.x2_c00252{left:73.520052pt;}
.x4_c00252{left:230.400000pt;}
.x3_c00252{left:234.720096pt;}
.xa_c00252{left:256.160000pt;}
.x9_c00252{left:260.560536pt;}
.x7_c00252{left:299.440000pt;}
.xc_c00252{left:302.801100pt;}
.xb_c00252{left:306.720664pt;}
.x1_c00252{left:383.760000pt;}
.x5_c00252{left:390.800260pt;}
.x8_c00252{left:396.800476pt;}
.xd_c00252{left:404.160496pt;}
.x6_c00252{left:453.279884pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3f9528287b3dfee03d8ff97b.woff2')format("woff");}.ff1_c00253{font-family:ff1_c00253;line-height:1.106934;font-style:normal;font-weight:normal;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_857025b6be92b20b39a43b80.woff2')format("woff");}.ff2_c00253{font-family:ff2_c00253;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00253;src:url('chunks/assets/font_b10790d44e03fb2caa542a4c.woff2')format("woff");}.ff3_c00253{font-family:ff3_c00253;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00253;src:url('chunks/assets/font_587da32f32e091c8eebe00b9.woff2')format("woff");}.ff4_c00253{font-family:ff4_c00253;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00253;src:url('chunks/assets/font_172f9fe7e3744ed5aa4a92d1.woff2')format("woff");}.ff5_c00253{font-family:ff5_c00253;line-height:1.019531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00253;src:url('chunks/assets/font_be8f4de9b11afd2f74a29d0f.woff2')format("woff");}.ff6_c00253{font-family:ff6_c00253;line-height:1.133301;font-style:normal;font-weight: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_c00253;src:url('chunks/assets/font_d2ef0493caf4dc7a3c7550a1.woff2')format("woff");}.ff7_c00253{font-family:ff7_c00253;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00253;src:url('chunks/assets/font_e7113297fdbc9fcfa744cceb.woff2')format("woff");}.ff8_c00253{font-family:ff8_c00253;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00253;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff9_c00253{font-family:ff9_c00253;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00253{transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);-ms-transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);-webkit-transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);}
.m2_c00253{transform:matrix(0.236549,0.000000,-0.080898,0.236549,0,0);-ms-transform:matrix(0.236549,0.000000,-0.080898,0.236549,0,0);-webkit-transform:matrix(0.236549,0.000000,-0.080898,0.236549,0,0);}
.m0_c00253{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00253{vertical-align:-14.760000px;}
.v0_c00253{vertical-align:0.000000px;}
.ls1a_c00253{letter-spacing:-0.707443px;}
.ls19_c00253{letter-spacing:-0.374185px;}
.lsf_c00253{letter-spacing:-0.231287px;}
.ls18_c00253{letter-spacing:-0.163706px;}
.lse_c00253{letter-spacing:-0.133203px;}
.ls1b_c00253{letter-spacing:-0.122779px;}
.ls15_c00253{letter-spacing:-0.116933px;}
.lsd_c00253{letter-spacing:-0.103603px;}
.ls11_c00253{letter-spacing:-0.098763px;}
.ls17_c00253{letter-spacing:-0.076006px;}
.ls14_c00253{letter-spacing:-0.075619px;}
.ls8_c00253{letter-spacing:-0.063018px;}
.ls10_c00253{letter-spacing:-0.056016px;}
.lsc_c00253{letter-spacing:-0.042012px;}
.ls12_c00253{letter-spacing:-0.035010px;}
.lsa_c00253{letter-spacing:-0.021006px;}
.ls13_c00253{letter-spacing:-0.014004px;}
.lsb_c00253{letter-spacing:-0.007002px;}
.ls9_c00253{letter-spacing:0.000000px;}
.ls1_c00253{letter-spacing:0.007002px;}
.ls2_c00253{letter-spacing:0.014004px;}
.ls5_c00253{letter-spacing:0.021006px;}
.ls0_c00253{letter-spacing:0.028008px;}
.ls7_c00253{letter-spacing:0.064313px;}
.ls4_c00253{letter-spacing:0.288607px;}
.ls16_c00253{letter-spacing:0.344952px;}
.ls3_c00253{letter-spacing:0.666016px;}
.ls6_c00253{letter-spacing:0.701597px;}
.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;}
}
.ws3_c00253{word-spacing:-58.466400px;}
.ws1_c00253{word-spacing:-23.029365px;}
.ws0_c00253{word-spacing:-19.493568px;}
.ws4_c00253{word-spacing:-16.031487px;}
.ws5_c00253{word-spacing:-15.821008px;}
.ws2_c00253{word-spacing:-10.397640px;}
.ws25_c00253{word-spacing:-0.052620px;}
.wsc_c00253{word-spacing:-0.014004px;}
.ws18_c00253{word-spacing:-0.007597px;}
.ws1a_c00253{word-spacing:-0.007002px;}
.ws6_c00253{word-spacing:0.000000px;}
.wse_c00253{word-spacing:0.007002px;}
.ws1b_c00253{word-spacing:0.021006px;}
.ws17_c00253{word-spacing:0.042012px;}
.ws1c_c00253{word-spacing:0.357102px;}
.ws7_c00253{word-spacing:0.364104px;}
.ws1e_c00253{word-spacing:0.728208px;}
.ws1d_c00253{word-spacing:0.742212px;}
.ws20_c00253{word-spacing:2.485710px;}
.ws1f_c00253{word-spacing:2.513718px;}
.ws9_c00253{word-spacing:2.863818px;}
.ws12_c00253{word-spacing:3.213918px;}
.wsa_c00253{word-spacing:3.234924px;}
.wsf_c00253{word-spacing:3.970134px;}
.ws11_c00253{word-spacing:5.391540px;}
.ws10_c00253{word-spacing:5.426550px;}
.ws8_c00253{word-spacing:6.112746px;}
.wsd_c00253{word-spacing:7.541154px;}
.ws14_c00253{word-spacing:7.926264px;}
.ws15_c00253{word-spacing:8.554610px;}
.ws19_c00253{word-spacing:8.647470px;}
.ws13_c00253{word-spacing:14.389110px;}
.ws16_c00253{word-spacing:19.087452px;}
.wsb_c00253{word-spacing:24.128892px;}
.ws22_c00253{word-spacing:25.947388px;}
.ws23_c00253{word-spacing:26.368346px;}
.ws21_c00253{word-spacing:26.415120px;}
.ws24_c00253{word-spacing:27.362275px;}
._1_c00253{margin-left:-3.963132px;}
._4_c00253{margin-left:-2.709774px;}
._2_c00253{margin-left:-1.358388px;}
._0_c00253{width:1.015290px;}
._3_c00253{width:5.930694px;}
.fc0_c00253{color:rgb(0,0,0);}
.fs4_c00253{font-size:37.809600px;}
.fs2_c00253{font-size:49.210069px;}
.fs5_c00253{font-size:58.466400px;}
.fs0_c00253{font-size:70.020000px;}
.fs1_c00253{font-size:74.001816px;}
.fs3_c00253{font-size:75.971400px;}
.y0_c00253{bottom:0.000000px;}
.y2_c00253{bottom:109.740968px;}
.y1_c00253{bottom:129.810450px;}
.y25_c00253{bottom:149.429891px;}
.y24_c00253{bottom:170.940450px;}
.y23_c00253{bottom:185.702421px;}
.y22_c00253{bottom:208.562200px;}
.y21_c00253{bottom:238.802088px;}
.y20_c00253{bottom:277.771719px;}
.y1f_c00253{bottom:316.652074px;}
.y1e_c00253{bottom:355.621705px;}
.y1d_c00253{bottom:394.591336px;}
.y1c_c00253{bottom:424.831224px;}
.y1b_c00253{bottom:453.630450px;}
.y1a_c00253{bottom:478.470450px;}
.y19_c00253{bottom:517.440932px;}
.y18_c00253{bottom:556.410562px;}
.y17_c00253{bottom:586.650450px;}
.y16_c00253{bottom:625.800450px;}
.y14_c00253{bottom:625.801350px;}
.y15_c00253{bottom:633.900450px;}
.y12_c00253{bottom:657.657971px;}
.y13_c00253{bottom:657.660450px;}
.y11_c00253{bottom:688.977917px;}
.y10_c00253{bottom:719.217804px;}
.yf_c00253{bottom:749.457692px;}
.ye_c00253{bottom:779.608304px;}
.yd_c00253{bottom:809.848191px;}
.yc_c00253{bottom:839.998803px;}
.yb_c00253{bottom:870.238691px;}
.ya_c00253{bottom:900.389302px;}
.y9_c00253{bottom:930.629190px;}
.y8_c00253{bottom:960.779802px;}
.y7_c00253{bottom:991.019690px;}
.y6_c00253{bottom:1021.170302px;}
.y5_c00253{bottom:1051.410189px;}
.y4_c00253{bottom:1090.290545px;}
.y3_c00253{bottom:1110.451053px;}
.h7_c00253{height:39.338549px;}
.h5_c00253{height:40.271521px;}
.h8_c00253{height:54.098549px;}
.h4_c00253{height:60.560080px;}
.h3_c00253{height:62.600889px;}
.h1_c00253{height:62.771836px;}
.h2_c00253{height:63.216299px;}
.h6_c00253{height:68.589413px;}
.h0_c00253{height:1263.000000px;}
.w0_c00253{width:892.500000px;}
.x0_c00253{left:0.000000px;}
.x2_c00253{left:82.710059px;}
.x6_c00253{left:143.280000px;}
.x7_c00253{left:162.180000px;}
.x3_c00253{left:336.870405px;}
.x1_c00253{left:431.730000px;}
.x4_c00253{left:472.231318px;}
.x5_c00253{left:663.840000px;}
@media print{
.v1_c00253{vertical-align:-13.120000pt;}
.v0_c00253{vertical-align:0.000000pt;}
.ls1a_c00253{letter-spacing:-0.628839pt;}
.ls19_c00253{letter-spacing:-0.332609pt;}
.lsf_c00253{letter-spacing:-0.205589pt;}
.ls18_c00253{letter-spacing:-0.145516pt;}
.lse_c00253{letter-spacing:-0.118403pt;}
.ls1b_c00253{letter-spacing:-0.109137pt;}
.ls15_c00253{letter-spacing:-0.103940pt;}
.lsd_c00253{letter-spacing:-0.092091pt;}
.ls11_c00253{letter-spacing:-0.087789pt;}
.ls17_c00253{letter-spacing:-0.067561pt;}
.ls14_c00253{letter-spacing:-0.067217pt;}
.ls8_c00253{letter-spacing:-0.056016pt;}
.ls10_c00253{letter-spacing:-0.049792pt;}
.lsc_c00253{letter-spacing:-0.037344pt;}
.ls12_c00253{letter-spacing:-0.031120pt;}
.lsa_c00253{letter-spacing:-0.018672pt;}
.ls13_c00253{letter-spacing:-0.012448pt;}
.lsb_c00253{letter-spacing:-0.006224pt;}
.ls9_c00253{letter-spacing:0.000000pt;}
.ls1_c00253{letter-spacing:0.006224pt;}
.ls2_c00253{letter-spacing:0.012448pt;}
.ls5_c00253{letter-spacing:0.018672pt;}
.ls0_c00253{letter-spacing:0.024896pt;}
.ls7_c00253{letter-spacing:0.057167pt;}
.ls4_c00253{letter-spacing:0.256540pt;}
.ls16_c00253{letter-spacing:0.306624pt;}
.ls3_c00253{letter-spacing:0.592015pt;}
.ls6_c00253{letter-spacing:0.623642pt;}
.ws3_c00253{word-spacing:-51.970133pt;}
.ws1_c00253{word-spacing:-20.470547pt;}
.ws0_c00253{word-spacing:-17.327616pt;}
.ws4_c00253{word-spacing:-14.250211pt;}
.ws5_c00253{word-spacing:-14.063118pt;}
.ws2_c00253{word-spacing:-9.242347pt;}
.ws25_c00253{word-spacing:-0.046773pt;}
.wsc_c00253{word-spacing:-0.012448pt;}
.ws18_c00253{word-spacing:-0.006753pt;}
.ws1a_c00253{word-spacing:-0.006224pt;}
.ws6_c00253{word-spacing:0.000000pt;}
.wse_c00253{word-spacing:0.006224pt;}
.ws1b_c00253{word-spacing:0.018672pt;}
.ws17_c00253{word-spacing:0.037344pt;}
.ws1c_c00253{word-spacing:0.317424pt;}
.ws7_c00253{word-spacing:0.323648pt;}
.ws1e_c00253{word-spacing:0.647296pt;}
.ws1d_c00253{word-spacing:0.659744pt;}
.ws20_c00253{word-spacing:2.209520pt;}
.ws1f_c00253{word-spacing:2.234416pt;}
.ws9_c00253{word-spacing:2.545616pt;}
.ws12_c00253{word-spacing:2.856816pt;}
.wsa_c00253{word-spacing:2.875488pt;}
.wsf_c00253{word-spacing:3.529008pt;}
.ws11_c00253{word-spacing:4.792480pt;}
.ws10_c00253{word-spacing:4.823600pt;}
.ws8_c00253{word-spacing:5.433552pt;}
.wsd_c00253{word-spacing:6.703248pt;}
.ws14_c00253{word-spacing:7.045568pt;}
.ws15_c00253{word-spacing:7.604098pt;}
.ws19_c00253{word-spacing:7.686640pt;}
.ws13_c00253{word-spacing:12.790320pt;}
.ws16_c00253{word-spacing:16.966624pt;}
.wsb_c00253{word-spacing:21.447904pt;}
.ws22_c00253{word-spacing:23.064345pt;}
.ws23_c00253{word-spacing:23.438530pt;}
.ws21_c00253{word-spacing:23.480106pt;}
.ws24_c00253{word-spacing:24.322022pt;}
._1_c00253{margin-left:-3.522784pt;}
._4_c00253{margin-left:-2.408688pt;}
._2_c00253{margin-left:-1.207456pt;}
._0_c00253{width:0.902480pt;}
._3_c00253{width:5.271728pt;}
.fs4_c00253{font-size:33.608533pt;}
.fs2_c00253{font-size:43.742283pt;}
.fs5_c00253{font-size:51.970133pt;}
.fs0_c00253{font-size:62.240000pt;}
.fs1_c00253{font-size:65.779392pt;}
.fs3_c00253{font-size:67.530133pt;}
.y0_c00253{bottom:0.000000pt;}
.y2_c00253{bottom:97.547527pt;}
.y1_c00253{bottom:115.387067pt;}
.y25_c00253{bottom:132.826570pt;}
.y24_c00253{bottom:151.947067pt;}
.y23_c00253{bottom:165.068819pt;}
.y22_c00253{bottom:185.388623pt;}
.y21_c00253{bottom:212.268523pt;}
.y20_c00253{bottom:246.908195pt;}
.y1f_c00253{bottom:281.468511pt;}
.y1e_c00253{bottom:316.108183pt;}
.y1d_c00253{bottom:350.747855pt;}
.y1c_c00253{bottom:377.627755pt;}
.y1b_c00253{bottom:403.227067pt;}
.y1a_c00253{bottom:425.307067pt;}
.y19_c00253{bottom:459.947495pt;}
.y18_c00253{bottom:494.587167pt;}
.y17_c00253{bottom:521.467067pt;}
.y16_c00253{bottom:556.267067pt;}
.y14_c00253{bottom:556.267867pt;}
.y15_c00253{bottom:563.467067pt;}
.y12_c00253{bottom:584.584863pt;}
.y13_c00253{bottom:584.587067pt;}
.y11_c00253{bottom:612.424815pt;}
.y10_c00253{bottom:639.304715pt;}
.yf_c00253{bottom:666.184615pt;}
.ye_c00253{bottom:692.985159pt;}
.yd_c00253{bottom:719.865059pt;}
.yc_c00253{bottom:746.665603pt;}
.yb_c00253{bottom:773.545503pt;}
.ya_c00253{bottom:800.346047pt;}
.y9_c00253{bottom:827.225947pt;}
.y8_c00253{bottom:854.026491pt;}
.y7_c00253{bottom:880.906391pt;}
.y6_c00253{bottom:907.706935pt;}
.y5_c00253{bottom:934.586835pt;}
.y4_c00253{bottom:969.147151pt;}
.y3_c00253{bottom:987.067603pt;}
.h7_c00253{height:34.967599pt;}
.h5_c00253{height:35.796908pt;}
.h8_c00253{height:48.087599pt;}
.h4_c00253{height:53.831182pt;}
.h3_c00253{height:55.645234pt;}
.h1_c00253{height:55.797187pt;}
.h2_c00253{height:56.192266pt;}
.h6_c00253{height:60.968367pt;}
.h0_c00253{height:1122.666667pt;}
.w0_c00253{width:793.333333pt;}
.x0_c00253{left:0.000000pt;}
.x2_c00253{left:73.520052pt;}
.x6_c00253{left:127.360000pt;}
.x7_c00253{left:144.160000pt;}
.x3_c00253{left:299.440360pt;}
.x1_c00253{left:383.760000pt;}
.x4_c00253{left:419.761172pt;}
.x5_c00253{left:590.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d1910c9e7a08cbfa9ba9061d.woff2')format("woff");}.ff1_c00254{font-family:ff1_c00254;line-height:1.106934;font-style:normal;font-weight:normal;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_ab6d761312b4cecb74d7808b.woff2')format("woff");}.ff2_c00254{font-family:ff2_c00254;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00254;src:url('chunks/assets/font_a33a327deea29689764825ca.woff2')format("woff");}.ff3_c00254{font-family:ff3_c00254;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00254;src:url('chunks/assets/font_0e7c12535f2a9c281083ea13.woff2')format("woff");}.ff4_c00254{font-family:ff4_c00254;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00254;src:url('chunks/assets/font_03582e8b85ec21efc70b1d5d.woff2')format("woff");}.ff5_c00254{font-family:ff5_c00254;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00254;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff6_c00254{font-family:ff6_c00254;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00254;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff7_c00254{font-family:ff7_c00254;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00254{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00254{vertical-align:-14.760000px;}
.v0_c00254{vertical-align:0.000000px;}
.v1_c00254{vertical-align:17.282376px;}
.ls16_c00254{letter-spacing:-0.268945px;}
.lsf_c00254{letter-spacing:-0.246781px;}
.ls13_c00254{letter-spacing:-0.140319px;}
.ls12_c00254{letter-spacing:-0.122779px;}
.ls14_c00254{letter-spacing:-0.087700px;}
.ls10_c00254{letter-spacing:-0.075619px;}
.ls6_c00254{letter-spacing:-0.063018px;}
.lse_c00254{letter-spacing:-0.056016px;}
.lsb_c00254{letter-spacing:-0.049014px;}
.lsa_c00254{letter-spacing:-0.035010px;}
.lsd_c00254{letter-spacing:-0.028008px;}
.ls15_c00254{letter-spacing:-0.023387px;}
.ls8_c00254{letter-spacing:-0.021006px;}
.lsc_c00254{letter-spacing:-0.014004px;}
.ls9_c00254{letter-spacing:-0.007002px;}
.ls7_c00254{letter-spacing:0.000000px;}
.ls5_c00254{letter-spacing:0.005847px;}
.ls2_c00254{letter-spacing:0.014004px;}
.ls1_c00254{letter-spacing:0.028008px;}
.ls4_c00254{letter-spacing:0.035080px;}
.ls0_c00254{letter-spacing:0.063018px;}
.ls11_c00254{letter-spacing:0.105240px;}
.ls17_c00254{letter-spacing:0.356645px;}
.ls3_c00254{letter-spacing:0.362492px;}
.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;}
}
.ws5_c00254{word-spacing:-58.466400px;}
.ws0_c00254{word-spacing:-19.493568px;}
.ws3_c00254{word-spacing:-16.230273px;}
.ws4_c00254{word-spacing:-16.107493px;}
.ws1_c00254{word-spacing:-12.651004px;}
.ws2_c00254{word-spacing:-10.397640px;}
.ws24_c00254{word-spacing:-0.344952px;}
.ws1b_c00254{word-spacing:-0.028008px;}
.ws12_c00254{word-spacing:-0.007002px;}
.ws6_c00254{word-spacing:0.000000px;}
.ws1a_c00254{word-spacing:0.007002px;}
.ws20_c00254{word-spacing:0.011693px;}
.ws1c_c00254{word-spacing:0.021006px;}
.wsd_c00254{word-spacing:0.035010px;}
.ws9_c00254{word-spacing:0.364104px;}
.wsb_c00254{word-spacing:0.378108px;}
.ws13_c00254{word-spacing:0.399114px;}
.ws1e_c00254{word-spacing:2.654375px;}
.ws1f_c00254{word-spacing:2.671914px;}
.ws1d_c00254{word-spacing:2.788847px;}
.ws15_c00254{word-spacing:10.096884px;}
.ws18_c00254{word-spacing:10.432980px;}
.ws19_c00254{word-spacing:10.790082px;}
.ws14_c00254{word-spacing:10.811088px;}
.ws8_c00254{word-spacing:16.482708px;}
.ws7_c00254{word-spacing:16.566732px;}
.ws17_c00254{word-spacing:19.815660px;}
.ws16_c00254{word-spacing:21.916260px;}
.ws22_c00254{word-spacing:23.684739px;}
.ws23_c00254{word-spacing:23.766592px;}
.ws21_c00254{word-spacing:23.795825px;}
.ws11_c00254{word-spacing:44.287650px;}
.wsa_c00254{word-spacing:63.354096px;}
.wsf_c00254{word-spacing:63.361098px;}
.ws10_c00254{word-spacing:63.375102px;}
.wsc_c00254{word-spacing:63.382104px;}
.wse_c00254{word-spacing:63.396108px;}
._1_c00254{margin-left:-63.326088px;}
._c_c00254{margin-left:-44.721774px;}
._f_c00254{margin-left:-2.709378px;}
._d_c00254{margin-left:-1.015290px;}
._0_c00254{width:1.015290px;}
._e_c00254{width:5.930694px;}
._3_c00254{width:63.003996px;}
._6_c00254{width:485.007534px;}
._4_c00254{width:679.201002px;}
._b_c00254{width:697.945356px;}
._5_c00254{width:760.284162px;}
._9_c00254{width:779.399622px;}
._a_c00254{width:814.997790px;}
._8_c00254{width:884.814732px;}
._7_c00254{width:886.698270px;}
._2_c00254{width:892.439910px;}
.fc0_c00254{color:rgb(0,0,0);}
.fs2_c00254{font-size:37.809600px;}
.fs1_c00254{font-size:46.562400px;}
.fs3_c00254{font-size:58.466400px;}
.fs0_c00254{font-size:70.020000px;}
.y0_c00254{bottom:0.000000px;}
.y2_c00254{bottom:109.740968px;}
.y1_c00254{bottom:129.810450px;}
.y29_c00254{bottom:149.429891px;}
.y28_c00254{bottom:170.940450px;}
.y27_c00254{bottom:185.249891px;}
.y26_c00254{bottom:206.760450px;}
.y25_c00254{bottom:221.429442px;}
.y24_c00254{bottom:262.919793px;}
.y23_c00254{bottom:301.980940px;}
.y22_c00254{bottom:333.390162px;}
.y21_c00254{bottom:372.359793px;}
.y20_c00254{bottom:411.419856px;}
.y1f_c00254{bottom:442.829077px;}
.y1e_c00254{bottom:481.798708px;}
.y1d_c00254{bottom:520.679064px;}
.y1c_c00254{bottom:550.918951px;}
.y1b_c00254{bottom:581.069563px;}
.y1a_c00254{bottom:611.309451px;}
.y19_c00254{bottom:641.460063px;}
.y18_c00254{bottom:671.699950px;}
.y17_c00254{bottom:691.860459px;}
.y16_c00254{bottom:711.929942px;}
.y15_c00254{bottom:732.090450px;}
.y12_c00254{bottom:752.969583px;}
.y11_c00254{bottom:773.130091px;}
.y14_c00254{bottom:793.288849px;}
.y10_c00254{bottom:793.290600px;}
.yf_c00254{bottom:814.080450px;}
.ye_c00254{bottom:834.960450px;}
.yd_c00254{bottom:855.840450px;}
.y13_c00254{bottom:868.259263px;}
.yc_c00254{bottom:878.610600px;}
.yb_c00254{bottom:899.400450px;}
.ya_c00254{bottom:920.280450px;}
.y9_c00254{bottom:941.070450px;}
.y8_c00254{bottom:962.040600px;}
.y7_c00254{bottom:982.830851px;}
.y6_c00254{bottom:1012.440558px;}
.y5_c00254{bottom:1041.330810px;}
.y4_c00254{bottom:1080.300441px;}
.y3_c00254{bottom:1110.451053px;}
.h6_c00254{height:39.338549px;}
.h7_c00254{height:54.098549px;}
.h3_c00254{height:62.600889px;}
.h4_c00254{height:62.603265px;}
.h1_c00254{height:62.771836px;}
.h5_c00254{height:62.775868px;}
.h2_c00254{height:63.216299px;}
.h0_c00254{height:1263.000000px;}
.w0_c00254{width:892.500000px;}
.x0_c00254{left:0.000000px;}
.x2_c00254{left:82.710059px;}
.x4_c00254{left:170.100000px;}
.x3_c00254{left:174.959658px;}
.x5_c00254{left:205.379577px;}
.x8_c00254{left:336.870000px;}
.x6_c00254{left:419.759811px;}
.x1_c00254{left:431.730000px;}
.x9_c00254{left:446.400536px;}
.x7_c00254{left:516.329644px;}
@media print{
.v2_c00254{vertical-align:-13.120000pt;}
.v0_c00254{vertical-align:0.000000pt;}
.v1_c00254{vertical-align:15.362112pt;}
.ls16_c00254{letter-spacing:-0.239063pt;}
.lsf_c00254{letter-spacing:-0.219361pt;}
.ls13_c00254{letter-spacing:-0.124728pt;}
.ls12_c00254{letter-spacing:-0.109137pt;}
.ls14_c00254{letter-spacing:-0.077955pt;}
.ls10_c00254{letter-spacing:-0.067217pt;}
.ls6_c00254{letter-spacing:-0.056016pt;}
.lse_c00254{letter-spacing:-0.049792pt;}
.lsb_c00254{letter-spacing:-0.043568pt;}
.lsa_c00254{letter-spacing:-0.031120pt;}
.lsd_c00254{letter-spacing:-0.024896pt;}
.ls15_c00254{letter-spacing:-0.020788pt;}
.ls8_c00254{letter-spacing:-0.018672pt;}
.lsc_c00254{letter-spacing:-0.012448pt;}
.ls9_c00254{letter-spacing:-0.006224pt;}
.ls7_c00254{letter-spacing:0.000000pt;}
.ls5_c00254{letter-spacing:0.005197pt;}
.ls2_c00254{letter-spacing:0.012448pt;}
.ls1_c00254{letter-spacing:0.024896pt;}
.ls4_c00254{letter-spacing:0.031182pt;}
.ls0_c00254{letter-spacing:0.056016pt;}
.ls11_c00254{letter-spacing:0.093546pt;}
.ls17_c00254{letter-spacing:0.317018pt;}
.ls3_c00254{letter-spacing:0.322215pt;}
.ws5_c00254{word-spacing:-51.970133pt;}
.ws0_c00254{word-spacing:-17.327616pt;}
.ws3_c00254{word-spacing:-14.426909pt;}
.ws4_c00254{word-spacing:-14.317772pt;}
.ws1_c00254{word-spacing:-11.245337pt;}
.ws2_c00254{word-spacing:-9.242347pt;}
.ws24_c00254{word-spacing:-0.306624pt;}
.ws1b_c00254{word-spacing:-0.024896pt;}
.ws12_c00254{word-spacing:-0.006224pt;}
.ws6_c00254{word-spacing:0.000000pt;}
.ws1a_c00254{word-spacing:0.006224pt;}
.ws20_c00254{word-spacing:0.010394pt;}
.ws1c_c00254{word-spacing:0.018672pt;}
.wsd_c00254{word-spacing:0.031120pt;}
.ws9_c00254{word-spacing:0.323648pt;}
.wsb_c00254{word-spacing:0.336096pt;}
.ws13_c00254{word-spacing:0.354768pt;}
.ws1e_c00254{word-spacing:2.359444pt;}
.ws1f_c00254{word-spacing:2.375035pt;}
.ws1d_c00254{word-spacing:2.478975pt;}
.ws15_c00254{word-spacing:8.975008pt;}
.ws18_c00254{word-spacing:9.273760pt;}
.ws19_c00254{word-spacing:9.591184pt;}
.ws14_c00254{word-spacing:9.609856pt;}
.ws8_c00254{word-spacing:14.651296pt;}
.ws7_c00254{word-spacing:14.725984pt;}
.ws17_c00254{word-spacing:17.613920pt;}
.ws16_c00254{word-spacing:19.481120pt;}
.ws22_c00254{word-spacing:21.053101pt;}
.ws23_c00254{word-spacing:21.125859pt;}
.ws21_c00254{word-spacing:21.151844pt;}
.ws11_c00254{word-spacing:39.366800pt;}
.wsa_c00254{word-spacing:56.314752pt;}
.wsf_c00254{word-spacing:56.320976pt;}
.ws10_c00254{word-spacing:56.333424pt;}
.wsc_c00254{word-spacing:56.339648pt;}
.wse_c00254{word-spacing:56.352096pt;}
._1_c00254{margin-left:-56.289856pt;}
._c_c00254{margin-left:-39.752688pt;}
._f_c00254{margin-left:-2.408336pt;}
._d_c00254{margin-left:-0.902480pt;}
._0_c00254{width:0.902480pt;}
._e_c00254{width:5.271728pt;}
._3_c00254{width:56.003552pt;}
._6_c00254{width:431.117808pt;}
._4_c00254{width:603.734224pt;}
._b_c00254{width:620.395872pt;}
._5_c00254{width:675.808144pt;}
._9_c00254{width:692.799664pt;}
._a_c00254{width:724.442480pt;}
._8_c00254{width:786.501984pt;}
._7_c00254{width:788.176240pt;}
._2_c00254{width:793.279920pt;}
.fs2_c00254{font-size:33.608533pt;}
.fs1_c00254{font-size:41.388800pt;}
.fs3_c00254{font-size:51.970133pt;}
.fs0_c00254{font-size:62.240000pt;}
.y0_c00254{bottom:0.000000pt;}
.y2_c00254{bottom:97.547527pt;}
.y1_c00254{bottom:115.387067pt;}
.y29_c00254{bottom:132.826570pt;}
.y28_c00254{bottom:151.947067pt;}
.y27_c00254{bottom:164.666570pt;}
.y26_c00254{bottom:183.787067pt;}
.y25_c00254{bottom:196.826171pt;}
.y24_c00254{bottom:233.706483pt;}
.y23_c00254{bottom:268.427503pt;}
.y22_c00254{bottom:296.346811pt;}
.y21_c00254{bottom:330.986483pt;}
.y20_c00254{bottom:365.706539pt;}
.y1f_c00254{bottom:393.625847pt;}
.y1e_c00254{bottom:428.265519pt;}
.y1d_c00254{bottom:462.825835pt;}
.y1c_c00254{bottom:489.705735pt;}
.y1b_c00254{bottom:516.506279pt;}
.y1a_c00254{bottom:543.386179pt;}
.y19_c00254{bottom:570.186723pt;}
.y18_c00254{bottom:597.066623pt;}
.y17_c00254{bottom:614.987075pt;}
.y16_c00254{bottom:632.826615pt;}
.y15_c00254{bottom:650.747067pt;}
.y12_c00254{bottom:669.306296pt;}
.y11_c00254{bottom:687.226748pt;}
.y14_c00254{bottom:705.145644pt;}
.y10_c00254{bottom:705.147200pt;}
.yf_c00254{bottom:723.627067pt;}
.ye_c00254{bottom:742.187067pt;}
.yd_c00254{bottom:760.747067pt;}
.y13_c00254{bottom:771.786012pt;}
.yc_c00254{bottom:780.987200pt;}
.yb_c00254{bottom:799.467067pt;}
.ya_c00254{bottom:818.027067pt;}
.y9_c00254{bottom:836.507067pt;}
.y8_c00254{bottom:855.147200pt;}
.y7_c00254{bottom:873.627423pt;}
.y6_c00254{bottom:899.947163pt;}
.y5_c00254{bottom:925.627387pt;}
.y4_c00254{bottom:960.267059pt;}
.y3_c00254{bottom:987.067603pt;}
.h6_c00254{height:34.967599pt;}
.h7_c00254{height:48.087599pt;}
.h3_c00254{height:55.645234pt;}
.h4_c00254{height:55.647346pt;}
.h1_c00254{height:55.797187pt;}
.h5_c00254{height:55.800771pt;}
.h2_c00254{height:56.192266pt;}
.h0_c00254{height:1122.666667pt;}
.w0_c00254{width:793.333333pt;}
.x0_c00254{left:0.000000pt;}
.x2_c00254{left:73.520052pt;}
.x4_c00254{left:151.200000pt;}
.x3_c00254{left:155.519696pt;}
.x5_c00254{left:182.559624pt;}
.x8_c00254{left:299.440000pt;}
.x6_c00254{left:373.119832pt;}
.x1_c00254{left:383.760000pt;}
.x9_c00254{left:396.800476pt;}
.x7_c00254{left:458.959684pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_00e4982260380cae4bcb3cb2.woff2')format("woff");}.ff1_c00255{font-family:ff1_c00255;line-height:1.106934;font-style:normal;font-weight:normal;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_fb4b3f07500ce87a8becd969.woff2')format("woff");}.ff2_c00255{font-family:ff2_c00255;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00255;src:url('chunks/assets/font_d0fbcb923c04c7cbbfbd2e87.woff2')format("woff");}.ff3_c00255{font-family:ff3_c00255;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00255;src:url('chunks/assets/font_d6441bc36e238c2229ff8f58.woff2')format("woff");}.ff4_c00255{font-family:ff4_c00255;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00255;src:url('chunks/assets/font_01d34a8cd2332538f16c5ade.woff2')format("woff");}.ff5_c00255{font-family:ff5_c00255;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00255{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00255{vertical-align:-14.760000px;}
.v0_c00255{vertical-align:0.000000px;}
.v1_c00255{vertical-align:32.050554px;}
.lsc_c00255{letter-spacing:-0.113957px;}
.ls11_c00255{letter-spacing:-0.111086px;}
.lsd_c00255{letter-spacing:-0.075619px;}
.ls8_c00255{letter-spacing:-0.070020px;}
.ls4_c00255{letter-spacing:-0.063018px;}
.lsb_c00255{letter-spacing:-0.049014px;}
.ls10_c00255{letter-spacing:-0.046773px;}
.ls7_c00255{letter-spacing:-0.028008px;}
.ls9_c00255{letter-spacing:-0.021006px;}
.ls6_c00255{letter-spacing:-0.014004px;}
.ls5_c00255{letter-spacing:0.000000px;}
.ls0_c00255{letter-spacing:0.007002px;}
.ls2_c00255{letter-spacing:0.014004px;}
.ls3_c00255{letter-spacing:0.023281px;}
.ls1_c00255{letter-spacing:0.028008px;}
.lsf_c00255{letter-spacing:0.046773px;}
.lse_c00255{letter-spacing:0.093546px;}
.lsa_c00255{letter-spacing:0.140040px;}
.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:-19.493568px;}
.ws1_c00255{word-spacing:-12.967628px;}
.ws2_c00255{word-spacing:-10.397640px;}
.ws1b_c00255{word-spacing:-0.113957px;}
.wsa_c00255{word-spacing:-0.042012px;}
.wsc_c00255{word-spacing:-0.021006px;}
.ws3_c00255{word-spacing:0.000000px;}
.wsb_c00255{word-spacing:0.007002px;}
.ws13_c00255{word-spacing:0.014004px;}
.ws1a_c00255{word-spacing:0.035010px;}
.ws7_c00255{word-spacing:0.049014px;}
.ws1e_c00255{word-spacing:0.058466px;}
.ws1f_c00255{word-spacing:0.122779px;}
.ws9_c00255{word-spacing:0.336096px;}
.wsd_c00255{word-spacing:0.364104px;}
.ws4_c00255{word-spacing:3.220920px;}
.ws10_c00255{word-spacing:5.398542px;}
.ws15_c00255{word-spacing:5.405544px;}
.ws18_c00255{word-spacing:6.126750px;}
.ws11_c00255{word-spacing:8.997570px;}
.ws12_c00255{word-spacing:9.011574px;}
.ws16_c00255{word-spacing:9.333666px;}
.ws14_c00255{word-spacing:10.061874px;}
.wsf_c00255{word-spacing:10.082880px;}
.wse_c00255{word-spacing:10.096884px;}
.ws17_c00255{word-spacing:10.446984px;}
.ws1c_c00255{word-spacing:16.119186px;}
.ws1d_c00255{word-spacing:16.165960px;}
.ws19_c00255{word-spacing:18.345240px;}
.ws8_c00255{word-spacing:62.639892px;}
.ws5_c00255{word-spacing:62.653896px;}
.ws6_c00255{word-spacing:62.695908px;}
._6_c00255{margin-left:-63.403110px;}
._2_c00255{margin-left:-62.282790px;}
._e_c00255{margin-left:-2.709774px;}
._1_c00255{margin-left:-1.106316px;}
._0_c00255{width:1.442412px;}
._d_c00255{width:5.930694px;}
._8_c00255{width:62.639892px;}
._4_c00255{width:293.341788px;}
._9_c00255{width:336.257046px;}
._7_c00255{width:441.357066px;}
._b_c00255{width:449.360352px;}
._a_c00255{width:511.923222px;}
._c_c00255{width:543.103128px;}
._5_c00255{width:562.302612px;}
._3_c00255{width:592.922358px;}
.fc0_c00255{color:rgb(0,0,0);}
.fs3_c00255{font-size:37.809600px;}
.fs1_c00255{font-size:46.562400px;}
.fs4_c00255{font-size:58.466400px;}
.fs0_c00255{font-size:70.020000px;}
.fs2_c00255{font-size:75.971400px;}
.y0_c00255{bottom:0.000000px;}
.y2_c00255{bottom:109.740968px;}
.y1_c00255{bottom:129.810450px;}
.y28_c00255{bottom:149.429548px;}
.y27_c00255{bottom:167.250107px;}
.y26_c00255{bottom:188.940450px;}
.y25_c00255{bottom:203.611136px;}
.y24_c00255{bottom:234.120600px;}
.y23_c00255{bottom:258.960450px;}
.y22_c00255{bottom:308.009713px;}
.y21_c00255{bottom:338.249601px;}
.y20_c00255{bottom:368.400213px;}
.y1f_c00255{bottom:398.640101px;}
.y1e_c00255{bottom:428.790713px;}
.y1d_c00255{bottom:459.027962px;}
.y1c_c00255{bottom:489.178574px;}
.y1b_c00255{bottom:519.418461px;}
.y1a_c00255{bottom:549.569073px;}
.y19_c00255{bottom:579.808961px;}
.y18_c00255{bottom:609.959573px;}
.y17_c00255{bottom:640.199460px;}
.y16_c00255{bottom:670.350072px;}
.y15_c00255{bottom:700.589960px;}
.y14_c00255{bottom:730.740571px;}
.y13_c00255{bottom:760.980459px;}
.y12_c00255{bottom:781.140968px;}
.y11_c00255{bottom:801.210450px;}
.yf_c00255{bottom:822.180600px;}
.ye_c00255{bottom:842.970450px;}
.yd_c00255{bottom:863.850450px;}
.yc_c00255{bottom:884.730450px;}
.yb_c00255{bottom:907.500450px;}
.y10_c00255{bottom:917.309772px;}
.ya_c00255{bottom:928.290600px;}
.y9_c00255{bottom:949.170450px;}
.y8_c00255{bottom:969.960450px;}
.y7_c00255{bottom:990.930450px;}
.y6_c00255{bottom:1011.721103px;}
.y5_c00255{bottom:1041.330810px;}
.y4_c00255{bottom:1080.300441px;}
.y3_c00255{bottom:1110.451053px;}
.h6_c00255{height:39.338549px;}
.h7_c00255{height:54.098549px;}
.h3_c00255{height:62.600889px;}
.h1_c00255{height:62.771836px;}
.h2_c00255{height:63.216299px;}
.h5_c00255{height:68.589413px;}
.h4_c00255{height:73.679340px;}
.h0_c00255{height:1263.000000px;}
.w0_c00255{width:892.500000px;}
.x0_c00255{left:0.000000px;}
.x9_c00255{left:66.960000px;}
.x2_c00255{left:82.710059px;}
.x4_c00255{left:250.920000px;}
.x3_c00255{left:255.869519px;}
.x7_c00255{left:336.870000px;}
.x1_c00255{left:431.730000px;}
.x8_c00255{left:446.400536px;}
.x5_c00255{left:447.930022px;}
.x6_c00255{left:516.239784px;}
@media print{
.v2_c00255{vertical-align:-13.120000pt;}
.v0_c00255{vertical-align:0.000000pt;}
.v1_c00255{vertical-align:28.489381pt;}
.lsc_c00255{letter-spacing:-0.101295pt;}
.ls11_c00255{letter-spacing:-0.098743pt;}
.lsd_c00255{letter-spacing:-0.067217pt;}
.ls8_c00255{letter-spacing:-0.062240pt;}
.ls4_c00255{letter-spacing:-0.056016pt;}
.lsb_c00255{letter-spacing:-0.043568pt;}
.ls10_c00255{letter-spacing:-0.041576pt;}
.ls7_c00255{letter-spacing:-0.024896pt;}
.ls9_c00255{letter-spacing:-0.018672pt;}
.ls6_c00255{letter-spacing:-0.012448pt;}
.ls5_c00255{letter-spacing:0.000000pt;}
.ls0_c00255{letter-spacing:0.006224pt;}
.ls2_c00255{letter-spacing:0.012448pt;}
.ls3_c00255{letter-spacing:0.020694pt;}
.ls1_c00255{letter-spacing:0.024896pt;}
.lsf_c00255{letter-spacing:0.041576pt;}
.lse_c00255{letter-spacing:0.083152pt;}
.lsa_c00255{letter-spacing:0.124480pt;}
.ws0_c00255{word-spacing:-17.327616pt;}
.ws1_c00255{word-spacing:-11.526781pt;}
.ws2_c00255{word-spacing:-9.242347pt;}
.ws1b_c00255{word-spacing:-0.101295pt;}
.wsa_c00255{word-spacing:-0.037344pt;}
.wsc_c00255{word-spacing:-0.018672pt;}
.ws3_c00255{word-spacing:0.000000pt;}
.wsb_c00255{word-spacing:0.006224pt;}
.ws13_c00255{word-spacing:0.012448pt;}
.ws1a_c00255{word-spacing:0.031120pt;}
.ws7_c00255{word-spacing:0.043568pt;}
.ws1e_c00255{word-spacing:0.051970pt;}
.ws1f_c00255{word-spacing:0.109137pt;}
.ws9_c00255{word-spacing:0.298752pt;}
.wsd_c00255{word-spacing:0.323648pt;}
.ws4_c00255{word-spacing:2.863040pt;}
.ws10_c00255{word-spacing:4.798704pt;}
.ws15_c00255{word-spacing:4.804928pt;}
.ws18_c00255{word-spacing:5.446000pt;}
.ws11_c00255{word-spacing:7.997840pt;}
.ws12_c00255{word-spacing:8.010288pt;}
.ws16_c00255{word-spacing:8.296592pt;}
.ws14_c00255{word-spacing:8.943888pt;}
.wsf_c00255{word-spacing:8.962560pt;}
.wse_c00255{word-spacing:8.975008pt;}
.ws17_c00255{word-spacing:9.286208pt;}
.ws1c_c00255{word-spacing:14.328166pt;}
.ws1d_c00255{word-spacing:14.369742pt;}
.ws19_c00255{word-spacing:16.306880pt;}
.ws8_c00255{word-spacing:55.679904pt;}
.ws5_c00255{word-spacing:55.692352pt;}
.ws6_c00255{word-spacing:55.729696pt;}
._6_c00255{margin-left:-56.358320pt;}
._2_c00255{margin-left:-55.362480pt;}
._e_c00255{margin-left:-2.408688pt;}
._1_c00255{margin-left:-0.983392pt;}
._0_c00255{width:1.282144pt;}
._d_c00255{width:5.271728pt;}
._8_c00255{width:55.679904pt;}
._4_c00255{width:260.748256pt;}
._9_c00255{width:298.895152pt;}
._7_c00255{width:392.317392pt;}
._b_c00255{width:399.431424pt;}
._a_c00255{width:455.042864pt;}
._c_c00255{width:482.758336pt;}
._5_c00255{width:499.824544pt;}
._3_c00255{width:527.042096pt;}
.fs3_c00255{font-size:33.608533pt;}
.fs1_c00255{font-size:41.388800pt;}
.fs4_c00255{font-size:51.970133pt;}
.fs0_c00255{font-size:62.240000pt;}
.fs2_c00255{font-size:67.530133pt;}
.y0_c00255{bottom:0.000000pt;}
.y2_c00255{bottom:97.547527pt;}
.y1_c00255{bottom:115.387067pt;}
.y28_c00255{bottom:132.826265pt;}
.y27_c00255{bottom:148.666762pt;}
.y26_c00255{bottom:167.947067pt;}
.y25_c00255{bottom:180.987676pt;}
.y24_c00255{bottom:208.107200pt;}
.y23_c00255{bottom:230.187067pt;}
.y22_c00255{bottom:273.786412pt;}
.y21_c00255{bottom:300.666312pt;}
.y20_c00255{bottom:327.466856pt;}
.y1f_c00255{bottom:354.346756pt;}
.y1e_c00255{bottom:381.147300pt;}
.y1d_c00255{bottom:408.024855pt;}
.y1c_c00255{bottom:434.825399pt;}
.y1b_c00255{bottom:461.705299pt;}
.y1a_c00255{bottom:488.505843pt;}
.y19_c00255{bottom:515.385743pt;}
.y18_c00255{bottom:542.186287pt;}
.y17_c00255{bottom:569.066187pt;}
.y16_c00255{bottom:595.866731pt;}
.y15_c00255{bottom:622.746631pt;}
.y14_c00255{bottom:649.547175pt;}
.y13_c00255{bottom:676.427075pt;}
.y12_c00255{bottom:694.347527pt;}
.y11_c00255{bottom:712.187067pt;}
.yf_c00255{bottom:730.827200pt;}
.ye_c00255{bottom:749.307067pt;}
.yd_c00255{bottom:767.867067pt;}
.yc_c00255{bottom:786.427067pt;}
.yb_c00255{bottom:806.667067pt;}
.y10_c00255{bottom:815.386464pt;}
.ya_c00255{bottom:825.147200pt;}
.y9_c00255{bottom:843.707067pt;}
.y8_c00255{bottom:862.187067pt;}
.y7_c00255{bottom:880.827067pt;}
.y6_c00255{bottom:899.307647pt;}
.y5_c00255{bottom:925.627387pt;}
.y4_c00255{bottom:960.267059pt;}
.y3_c00255{bottom:987.067603pt;}
.h6_c00255{height:34.967599pt;}
.h7_c00255{height:48.087599pt;}
.h3_c00255{height:55.645234pt;}
.h1_c00255{height:55.797187pt;}
.h2_c00255{height:56.192266pt;}
.h5_c00255{height:60.968367pt;}
.h4_c00255{height:65.492747pt;}
.h0_c00255{height:1122.666667pt;}
.w0_c00255{width:793.333333pt;}
.x0_c00255{left:0.000000pt;}
.x9_c00255{left:59.520000pt;}
.x2_c00255{left:73.520052pt;}
.x4_c00255{left:223.040000pt;}
.x3_c00255{left:227.439572pt;}
.x7_c00255{left:299.440000pt;}
.x1_c00255{left:383.760000pt;}
.x8_c00255{left:396.800476pt;}
.x5_c00255{left:398.160020pt;}
.x6_c00255{left:458.879808pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0d0863431c96f16a22c59175.woff2')format("woff");}.ff1_c00256{font-family:ff1_c00256;line-height:1.106934;font-style:normal;font-weight:normal;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_b067cdaddfac8e3032429e93.woff2')format("woff");}.ff2_c00256{font-family:ff2_c00256;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00256;src:url('chunks/assets/font_ca527fc8b018fb9716fcbe4f.woff2')format("woff");}.ff3_c00256{font-family:ff3_c00256;line-height:0.892090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00256;src:url('chunks/assets/font_2f03f7cc5cf3c3782a0f92e9.woff2')format("woff");}.ff4_c00256{font-family:ff4_c00256;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00256;src:url('chunks/assets/font_f9835a09f58ebde13aa3b339.woff2')format("woff");}.ff5_c00256{font-family:ff5_c00256;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00256;src:url('chunks/assets/font_298b996553de760ffa8b3640.woff2')format("woff");}.ff6_c00256{font-family:ff6_c00256;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00256{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00256{vertical-align:-14.760000px;}
.v0_c00256{vertical-align:0.000000px;}
.v1_c00256{vertical-align:32.398397px;}
.ls15_c00256{letter-spacing:-0.461885px;}
.ls2c_c00256{letter-spacing:-0.456038px;}
.ls14_c00256{letter-spacing:-0.444345px;}
.ls31_c00256{letter-spacing:-0.344952px;}
.ls33_c00256{letter-spacing:-0.198786px;}
.ls2f_c00256{letter-spacing:-0.181246px;}
.ls1c_c00256{letter-spacing:-0.169553px;}
.ls27_c00256{letter-spacing:-0.157859px;}
.ls25_c00256{letter-spacing:-0.152013px;}
.ls18_c00256{letter-spacing:-0.128626px;}
.ls1d_c00256{letter-spacing:-0.116933px;}
.ls23_c00256{letter-spacing:-0.111086px;}
.ls20_c00256{letter-spacing:-0.105240px;}
.ls13_c00256{letter-spacing:-0.099393px;}
.ls11_c00256{letter-spacing:-0.093546px;}
.ls1a_c00256{letter-spacing:-0.089276px;}
.ls22_c00256{letter-spacing:-0.087700px;}
.ls17_c00256{letter-spacing:-0.081853px;}
.ls1b_c00256{letter-spacing:-0.078773px;}
.ls2e_c00256{letter-spacing:-0.075619px;}
.ls16_c00256{letter-spacing:-0.070160px;}
.ls9_c00256{letter-spacing:-0.063018px;}
.ls1f_c00256{letter-spacing:-0.058466px;}
.ls19_c00256{letter-spacing:-0.052515px;}
.ls12_c00256{letter-spacing:-0.047264px;}
.lsb_c00256{letter-spacing:-0.042012px;}
.ls34_c00256{letter-spacing:-0.040926px;}
.lsd_c00256{letter-spacing:-0.035010px;}
.ls1e_c00256{letter-spacing:-0.031509px;}
.lse_c00256{letter-spacing:-0.028008px;}
.lsc_c00256{letter-spacing:-0.021006px;}
.ls24_c00256{letter-spacing:-0.017540px;}
.ls10_c00256{letter-spacing:-0.014004px;}
.lsf_c00256{letter-spacing:-0.007002px;}
.ls32_c00256{letter-spacing:-0.005847px;}
.lsa_c00256{letter-spacing:0.000000px;}
.ls2_c00256{letter-spacing:0.005252px;}
.ls35_c00256{letter-spacing:0.005847px;}
.ls4_c00256{letter-spacing:0.011693px;}
.ls5_c00256{letter-spacing:0.023281px;}
.ls1_c00256{letter-spacing:0.026258px;}
.ls7_c00256{letter-spacing:0.076006px;}
.ls2d_c00256{letter-spacing:0.099393px;}
.ls8_c00256{letter-spacing:0.111086px;}
.ls6_c00256{letter-spacing:0.116933px;}
.ls30_c00256{letter-spacing:0.122779px;}
.ls26_c00256{letter-spacing:0.152013px;}
.ls2b_c00256{letter-spacing:0.163706px;}
.ls2a_c00256{letter-spacing:0.169553px;}
.ls29_c00256{letter-spacing:0.181246px;}
.ls21_c00256{letter-spacing:0.192939px;}
.ls28_c00256{letter-spacing:0.222172px;}
.ls0_c00256{letter-spacing:0.320342px;}
.ls3_c00256{letter-spacing:0.341347px;}
.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;}
}
.ws4_c00256{word-spacing:-52.515000px;}
.ws8_c00256{word-spacing:-16.236119px;}
.ws0_c00256{word-spacing:-14.919512px;}
.ws5_c00256{word-spacing:-14.604422px;}
.ws2_c00256{word-spacing:-14.599170px;}
.ws6_c00256{word-spacing:-14.567661px;}
.ws1_c00256{word-spacing:-14.551907px;}
.ws3_c00256{word-spacing:-14.546655px;}
.ws7_c00256{word-spacing:-12.967628px;}
.ws9_c00256{word-spacing:-10.397640px;}
.ws1f_c00256{word-spacing:-0.321565px;}
.ws15_c00256{word-spacing:-0.304025px;}
.ws31_c00256{word-spacing:-0.274792px;}
.ws33_c00256{word-spacing:-0.251406px;}
.ws1a_c00256{word-spacing:-0.141791px;}
.ws12_c00256{word-spacing:-0.014004px;}
.wsa_c00256{word-spacing:0.000000px;}
.ws14_c00256{word-spacing:0.040926px;}
.ws1e_c00256{word-spacing:0.052620px;}
.ws32_c00256{word-spacing:0.058466px;}
.ws34_c00256{word-spacing:0.064313px;}
.ws2c_c00256{word-spacing:0.070160px;}
.ws20_c00256{word-spacing:0.076006px;}
.ws18_c00256{word-spacing:0.087700px;}
.ws36_c00256{word-spacing:0.116933px;}
.ws1d_c00256{word-spacing:0.128626px;}
.ws1c_c00256{word-spacing:0.246821px;}
.ws1b_c00256{word-spacing:0.257324px;}
.ws11_c00256{word-spacing:0.357102px;}
.ws4c_c00256{word-spacing:0.368338px;}
.wse_c00256{word-spacing:0.378108px;}
.ws48_c00256{word-spacing:0.572971px;}
.ws47_c00256{word-spacing:0.619744px;}
.wsf_c00256{word-spacing:0.735210px;}
.ws46_c00256{word-spacing:0.736677px;}
.wsd_c00256{word-spacing:2.170620px;}
.wsc_c00256{word-spacing:2.191626px;}
.ws49_c00256{word-spacing:2.215877px;}
.ws4b_c00256{word-spacing:2.245110px;}
.ws4a_c00256{word-spacing:2.566675px;}
.ws25_c00256{word-spacing:4.373287px;}
.wsb_c00256{word-spacing:5.027436px;}
.ws40_c00256{word-spacing:5.104117px;}
.ws45_c00256{word-spacing:6.372838px;}
.ws28_c00256{word-spacing:6.887342px;}
.ws42_c00256{word-spacing:7.056894px;}
.ws44_c00256{word-spacing:7.396000px;}
.ws39_c00256{word-spacing:9.091525px;}
.ws27_c00256{word-spacing:9.302004px;}
.ws26_c00256{word-spacing:10.120534px;}
.ws2b_c00256{word-spacing:10.845517px;}
.ws22_c00256{word-spacing:13.377112px;}
.ws2f_c00256{word-spacing:13.879923px;}
.ws10_c00256{word-spacing:15.474420px;}
.ws35_c00256{word-spacing:15.645609px;}
.ws3d_c00256{word-spacing:16.616151px;}
.ws24_c00256{word-spacing:16.621998px;}
.ws23_c00256{word-spacing:17.955031px;}
.ws21_c00256{word-spacing:18.411069px;}
.ws2e_c00256{word-spacing:20.580173px;}
.ws41_c00256{word-spacing:21.650108px;}
.ws38_c00256{word-spacing:23.100075px;}
.ws43_c00256{word-spacing:25.988315px;}
.ws2a_c00256{word-spacing:29.285820px;}
.ws3c_c00256{word-spacing:33.624027px;}
.ws2d_c00256{word-spacing:37.862841px;}
.ws16_c00256{word-spacing:39.985171px;}
.ws3b_c00256{word-spacing:44.773569px;}
.ws17_c00256{word-spacing:57.998669px;}
.ws29_c00256{word-spacing:64.120101px;}
.ws37_c00256{word-spacing:64.921091px;}
.ws3e_c00256{word-spacing:68.195209px;}
.ws3f_c00256{word-spacing:94.721415px;}
.ws30_c00256{word-spacing:100.497895px;}
.ws3a_c00256{word-spacing:144.774500px;}
.ws13_c00256{word-spacing:209.929456px;}
.ws19_c00256{word-spacing:262.496596px;}
._4_c00256{margin-left:-262.093178px;}
._2_c00256{margin-left:-210.500372px;}
._3_c00256{margin-left:-137.065447px;}
._7_c00256{margin-left:-100.088630px;}
._5_c00256{margin-left:-10.196540px;}
._9_c00256{margin-left:-2.709774px;}
._1_c00256{margin-left:-1.183338px;}
._0_c00256{width:1.008288px;}
._8_c00256{width:5.930694px;}
._6_c00256{width:24.857247px;}
.fc0_c00256{color:rgb(0,0,0);}
.fs4_c00256{font-size:37.809600px;}
.fs3_c00256{font-size:46.562400px;}
.fs2_c00256{font-size:52.515000px;}
.fs1_c00256{font-size:58.466400px;}
.fs0_c00256{font-size:70.020000px;}
.y0_c00256{bottom:0.000000px;}
.y2_c00256{bottom:109.740968px;}
.y1_c00256{bottom:129.810450px;}
.y3e_c00256{bottom:149.428990px;}
.y3d_c00256{bottom:167.249548px;}
.y3c_c00256{bottom:185.249891px;}
.y3b_c00256{bottom:206.760450px;}
.y3a_c00256{bottom:221.430450px;}
.y39_c00256{bottom:247.711064px;}
.y38_c00256{bottom:264.540618px;}
.y37_c00256{bottom:281.281010px;}
.y36_c00256{bottom:298.021402px;}
.y35_c00256{bottom:314.850955px;}
.y34_c00256{bottom:331.591347px;}
.y33_c00256{bottom:348.420900px;}
.y32_c00256{bottom:365.161292px;}
.y31_c00256{bottom:381.901684px;}
.y30_c00256{bottom:398.731237px;}
.y2f_c00256{bottom:415.381006px;}
.y2e_c00256{bottom:432.210560px;}
.y2d_c00256{bottom:449.040113px;}
.y2c_c00256{bottom:465.780505px;}
.y2b_c00256{bottom:482.520897px;}
.y2a_c00256{bottom:499.350450px;}
.y29_c00256{bottom:516.900815px;}
.y28_c00256{bottom:533.550584px;}
.y27_c00256{bottom:550.380137px;}
.y26_c00256{bottom:567.209691px;}
.y25_c00256{bottom:583.950083px;}
.y24_c00256{bottom:601.320851px;}
.y23_c00256{bottom:620.851552px;}
.y22_c00256{bottom:637.681105px;}
.y21_c00256{bottom:654.330874px;}
.y20_c00256{bottom:671.160427px;}
.y1f_c00256{bottom:687.989980px;}
.y1e_c00256{bottom:704.730372px;}
.y1d_c00256{bottom:721.470764px;}
.y1c_c00256{bottom:738.300318px;}
.y1a_c00256{bottom:741.360657px;}
.y1b_c00256{bottom:755.040710px;}
.y19_c00256{bottom:756.390450px;}
.y15_c00256{bottom:761.520483px;}
.y18_c00256{bottom:771.781102px;}
.y14_c00256{bottom:776.550276px;}
.y17_c00256{bottom:788.521494px;}
.y13_c00256{bottom:791.670657px;}
.y16_c00256{bottom:805.351047px;}
.y12_c00256{bottom:806.700450px;}
.y11_c00256{bottom:822.180600px;}
.yd_c00256{bottom:839.460619px;}
.y10_c00256{bottom:851.250200px;}
.yc_c00256{bottom:854.490412px;}
.yf_c00256{bottom:868.079753px;}
.yb_c00256{bottom:869.700069px;}
.ye_c00256{bottom:884.820145px;}
.ya_c00256{bottom:884.820450px;}
.y9_c00256{bottom:911.730792px;}
.y8_c00256{bottom:950.700423px;}
.y7_c00256{bottom:989.670054px;}
.y6_c00256{bottom:1019.909942px;}
.y5_c00256{bottom:1050.060553px;}
.y4_c00256{bottom:1080.300441px;}
.y3_c00256{bottom:1110.451053px;}
.h9_c00256{height:39.338549px;}
.h6_c00256{height:47.078877px;}
.h3_c00256{height:47.412224px;}
.h7_c00256{height:52.271474px;}
.h5_c00256{height:52.414214px;}
.h4_c00256{height:52.784664px;}
.h2_c00256{height:52.785339px;}
.ha_c00256{height:54.098549px;}
.h1_c00256{height:62.771836px;}
.h8_c00256{height:74.027184px;}
.h0_c00256{height:1263.000000px;}
.w0_c00256{width:892.500000px;}
.x0_c00256{left:0.000000px;}
.x2_c00256{left:82.710059px;}
.x3_c00256{left:205.469988px;}
.x4_c00256{left:218.610553px;}
.xc_c00256{left:256.050000px;}
.x6_c00256{left:277.920479px;}
.x5_c00256{left:290.069797px;}
.x7_c00256{left:292.950729px;}
.xd_c00256{left:400.770000px;}
.x9_c00256{left:408.781438px;}
.x8_c00256{left:424.530824px;}
.xa_c00256{left:427.411756px;}
.x1_c00256{left:431.730000px;}
.xb_c00256{left:524.882553px;}
@media print{
.v2_c00256{vertical-align:-13.120000pt;}
.v0_c00256{vertical-align:0.000000pt;}
.v1_c00256{vertical-align:28.798575pt;}
.ls15_c00256{letter-spacing:-0.410564pt;}
.ls2c_c00256{letter-spacing:-0.405367pt;}
.ls14_c00256{letter-spacing:-0.394973pt;}
.ls31_c00256{letter-spacing:-0.306624pt;}
.ls33_c00256{letter-spacing:-0.176698pt;}
.ls2f_c00256{letter-spacing:-0.161107pt;}
.ls1c_c00256{letter-spacing:-0.150713pt;}
.ls27_c00256{letter-spacing:-0.140319pt;}
.ls25_c00256{letter-spacing:-0.135122pt;}
.ls18_c00256{letter-spacing:-0.114334pt;}
.ls1d_c00256{letter-spacing:-0.103940pt;}
.ls23_c00256{letter-spacing:-0.098743pt;}
.ls20_c00256{letter-spacing:-0.093546pt;}
.ls13_c00256{letter-spacing:-0.088349pt;}
.ls11_c00256{letter-spacing:-0.083152pt;}
.ls1a_c00256{letter-spacing:-0.079356pt;}
.ls22_c00256{letter-spacing:-0.077955pt;}
.ls17_c00256{letter-spacing:-0.072758pt;}
.ls1b_c00256{letter-spacing:-0.070020pt;}
.ls2e_c00256{letter-spacing:-0.067217pt;}
.ls16_c00256{letter-spacing:-0.062364pt;}
.ls9_c00256{letter-spacing:-0.056016pt;}
.ls1f_c00256{letter-spacing:-0.051970pt;}
.ls19_c00256{letter-spacing:-0.046680pt;}
.ls12_c00256{letter-spacing:-0.042012pt;}
.lsb_c00256{letter-spacing:-0.037344pt;}
.ls34_c00256{letter-spacing:-0.036379pt;}
.lsd_c00256{letter-spacing:-0.031120pt;}
.ls1e_c00256{letter-spacing:-0.028008pt;}
.lse_c00256{letter-spacing:-0.024896pt;}
.lsc_c00256{letter-spacing:-0.018672pt;}
.ls24_c00256{letter-spacing:-0.015591pt;}
.ls10_c00256{letter-spacing:-0.012448pt;}
.lsf_c00256{letter-spacing:-0.006224pt;}
.ls32_c00256{letter-spacing:-0.005197pt;}
.lsa_c00256{letter-spacing:0.000000pt;}
.ls2_c00256{letter-spacing:0.004668pt;}
.ls35_c00256{letter-spacing:0.005197pt;}
.ls4_c00256{letter-spacing:0.010394pt;}
.ls5_c00256{letter-spacing:0.020694pt;}
.ls1_c00256{letter-spacing:0.023340pt;}
.ls7_c00256{letter-spacing:0.067561pt;}
.ls2d_c00256{letter-spacing:0.088349pt;}
.ls8_c00256{letter-spacing:0.098743pt;}
.ls6_c00256{letter-spacing:0.103940pt;}
.ls30_c00256{letter-spacing:0.109137pt;}
.ls26_c00256{letter-spacing:0.135122pt;}
.ls2b_c00256{letter-spacing:0.145516pt;}
.ls2a_c00256{letter-spacing:0.150713pt;}
.ls29_c00256{letter-spacing:0.161107pt;}
.ls21_c00256{letter-spacing:0.171501pt;}
.ls28_c00256{letter-spacing:0.197487pt;}
.ls0_c00256{letter-spacing:0.284748pt;}
.ls3_c00256{letter-spacing:0.303420pt;}
.ws4_c00256{word-spacing:-46.680000pt;}
.ws8_c00256{word-spacing:-14.432106pt;}
.ws0_c00256{word-spacing:-13.261788pt;}
.ws5_c00256{word-spacing:-12.981708pt;}
.ws2_c00256{word-spacing:-12.977040pt;}
.ws6_c00256{word-spacing:-12.949032pt;}
.ws1_c00256{word-spacing:-12.935028pt;}
.ws3_c00256{word-spacing:-12.930360pt;}
.ws7_c00256{word-spacing:-11.526781pt;}
.ws9_c00256{word-spacing:-9.242347pt;}
.ws1f_c00256{word-spacing:-0.285836pt;}
.ws15_c00256{word-spacing:-0.270245pt;}
.ws31_c00256{word-spacing:-0.244260pt;}
.ws33_c00256{word-spacing:-0.223472pt;}
.ws1a_c00256{word-spacing:-0.126036pt;}
.ws12_c00256{word-spacing:-0.012448pt;}
.wsa_c00256{word-spacing:0.000000pt;}
.ws14_c00256{word-spacing:0.036379pt;}
.ws1e_c00256{word-spacing:0.046773pt;}
.ws32_c00256{word-spacing:0.051970pt;}
.ws34_c00256{word-spacing:0.057167pt;}
.ws2c_c00256{word-spacing:0.062364pt;}
.ws20_c00256{word-spacing:0.067561pt;}
.ws18_c00256{word-spacing:0.077955pt;}
.ws36_c00256{word-spacing:0.103940pt;}
.ws1d_c00256{word-spacing:0.114334pt;}
.ws1c_c00256{word-spacing:0.219396pt;}
.ws1b_c00256{word-spacing:0.228732pt;}
.ws11_c00256{word-spacing:0.317424pt;}
.ws4c_c00256{word-spacing:0.327412pt;}
.wse_c00256{word-spacing:0.336096pt;}
.ws48_c00256{word-spacing:0.509307pt;}
.ws47_c00256{word-spacing:0.550883pt;}
.wsf_c00256{word-spacing:0.653520pt;}
.ws46_c00256{word-spacing:0.654824pt;}
.wsd_c00256{word-spacing:1.929440pt;}
.wsc_c00256{word-spacing:1.948112pt;}
.ws49_c00256{word-spacing:1.969668pt;}
.ws4b_c00256{word-spacing:1.995653pt;}
.ws4a_c00256{word-spacing:2.281489pt;}
.ws25_c00256{word-spacing:3.887366pt;}
.wsb_c00256{word-spacing:4.468832pt;}
.ws40_c00256{word-spacing:4.536993pt;}
.ws45_c00256{word-spacing:5.664745pt;}
.ws28_c00256{word-spacing:6.122082pt;}
.ws42_c00256{word-spacing:6.272795pt;}
.ws44_c00256{word-spacing:6.574222pt;}
.ws39_c00256{word-spacing:8.081356pt;}
.ws27_c00256{word-spacing:8.268448pt;}
.ws26_c00256{word-spacing:8.996030pt;}
.ws2b_c00256{word-spacing:9.640460pt;}
.ws22_c00256{word-spacing:11.890767pt;}
.ws2f_c00256{word-spacing:12.337710pt;}
.ws10_c00256{word-spacing:13.755040pt;}
.ws35_c00256{word-spacing:13.907208pt;}
.ws3d_c00256{word-spacing:14.769912pt;}
.ws24_c00256{word-spacing:14.775109pt;}
.ws23_c00256{word-spacing:15.960028pt;}
.ws21_c00256{word-spacing:16.365395pt;}
.ws2e_c00256{word-spacing:18.293487pt;}
.ws41_c00256{word-spacing:19.244540pt;}
.ws38_c00256{word-spacing:20.533400pt;}
.ws43_c00256{word-spacing:23.100724pt;}
.ws2a_c00256{word-spacing:26.031840pt;}
.ws3c_c00256{word-spacing:29.888024pt;}
.ws2d_c00256{word-spacing:33.655858pt;}
.ws16_c00256{word-spacing:35.542374pt;}
.ws3b_c00256{word-spacing:39.798728pt;}
.ws17_c00256{word-spacing:51.554372pt;}
.ws29_c00256{word-spacing:56.995645pt;}
.ws37_c00256{word-spacing:57.707636pt;}
.ws3e_c00256{word-spacing:60.617964pt;}
.ws3f_c00256{word-spacing:84.196813pt;}
.ws30_c00256{word-spacing:89.331462pt;}
.ws3a_c00256{word-spacing:128.688444pt;}
.ws13_c00256{word-spacing:186.603961pt;}
.ws19_c00256{word-spacing:233.330308pt;}
._4_c00256{margin-left:-232.971714pt;}
._2_c00256{margin-left:-187.111442pt;}
._3_c00256{margin-left:-121.835953pt;}
._7_c00256{margin-left:-88.967671pt;}
._5_c00256{margin-left:-9.063591pt;}
._9_c00256{margin-left:-2.408688pt;}
._1_c00256{margin-left:-1.051856pt;}
._0_c00256{width:0.896256pt;}
._8_c00256{width:5.271728pt;}
._6_c00256{width:22.095331pt;}
.fs4_c00256{font-size:33.608533pt;}
.fs3_c00256{font-size:41.388800pt;}
.fs2_c00256{font-size:46.680000pt;}
.fs1_c00256{font-size:51.970133pt;}
.fs0_c00256{font-size:62.240000pt;}
.y0_c00256{bottom:0.000000pt;}
.y2_c00256{bottom:97.547527pt;}
.y1_c00256{bottom:115.387067pt;}
.y3e_c00256{bottom:132.825769pt;}
.y3d_c00256{bottom:148.666265pt;}
.y3c_c00256{bottom:164.666570pt;}
.y3b_c00256{bottom:183.787067pt;}
.y3a_c00256{bottom:196.827067pt;}
.y39_c00256{bottom:220.187613pt;}
.y38_c00256{bottom:235.147216pt;}
.y37_c00256{bottom:250.027564pt;}
.y36_c00256{bottom:264.907913pt;}
.y35_c00256{bottom:279.867515pt;}
.y34_c00256{bottom:294.747864pt;}
.y33_c00256{bottom:309.707467pt;}
.y32_c00256{bottom:324.587815pt;}
.y31_c00256{bottom:339.468164pt;}
.y30_c00256{bottom:354.427766pt;}
.y2f_c00256{bottom:369.227561pt;}
.y2e_c00256{bottom:384.187164pt;}
.y2d_c00256{bottom:399.146767pt;}
.y2c_c00256{bottom:414.027115pt;}
.y2b_c00256{bottom:428.907464pt;}
.y2a_c00256{bottom:443.867067pt;}
.y29_c00256{bottom:459.467391pt;}
.y28_c00256{bottom:474.267186pt;}
.y27_c00256{bottom:489.226789pt;}
.y26_c00256{bottom:504.186392pt;}
.y25_c00256{bottom:519.066740pt;}
.y24_c00256{bottom:534.507423pt;}
.y23_c00256{bottom:551.868046pt;}
.y22_c00256{bottom:566.827649pt;}
.y21_c00256{bottom:581.627443pt;}
.y20_c00256{bottom:596.587046pt;}
.y1f_c00256{bottom:611.546649pt;}
.y1e_c00256{bottom:626.426998pt;}
.y1d_c00256{bottom:641.307346pt;}
.y1c_c00256{bottom:656.266949pt;}
.y1a_c00256{bottom:658.987251pt;}
.y1b_c00256{bottom:671.147297pt;}
.y19_c00256{bottom:672.347067pt;}
.y15_c00256{bottom:676.907096pt;}
.y18_c00256{bottom:686.027646pt;}
.y14_c00256{bottom:690.266912pt;}
.y17_c00256{bottom:700.907994pt;}
.y13_c00256{bottom:703.707251pt;}
.y16_c00256{bottom:715.867597pt;}
.y12_c00256{bottom:717.067067pt;}
.y11_c00256{bottom:730.827200pt;}
.yd_c00256{bottom:746.187217pt;}
.y10_c00256{bottom:756.666844pt;}
.yc_c00256{bottom:759.547033pt;}
.yf_c00256{bottom:771.626447pt;}
.yb_c00256{bottom:773.066728pt;}
.ye_c00256{bottom:786.506795pt;}
.ya_c00256{bottom:786.507067pt;}
.y9_c00256{bottom:810.427371pt;}
.y8_c00256{bottom:845.067043pt;}
.y7_c00256{bottom:879.706715pt;}
.y6_c00256{bottom:906.586615pt;}
.y5_c00256{bottom:933.387159pt;}
.y4_c00256{bottom:960.267059pt;}
.y3_c00256{bottom:987.067603pt;}
.h9_c00256{height:34.967599pt;}
.h6_c00256{height:41.847891pt;}
.h3_c00256{height:42.144199pt;}
.h7_c00256{height:46.463532pt;}
.h5_c00256{height:46.590412pt;}
.h4_c00256{height:46.919701pt;}
.h2_c00256{height:46.920301pt;}
.ha_c00256{height:48.087599pt;}
.h1_c00256{height:55.797187pt;}
.h8_c00256{height:65.801941pt;}
.h0_c00256{height:1122.666667pt;}
.w0_c00256{width:793.333333pt;}
.x0_c00256{left:0.000000pt;}
.x2_c00256{left:73.520052pt;}
.x3_c00256{left:182.639989pt;}
.x4_c00256{left:194.320492pt;}
.xc_c00256{left:227.600000pt;}
.x6_c00256{left:247.040426pt;}
.x5_c00256{left:257.839820pt;}
.x7_c00256{left:260.400648pt;}
.xd_c00256{left:356.240000pt;}
.x9_c00256{left:363.361278pt;}
.x8_c00256{left:377.360732pt;}
.xa_c00256{left:379.921561pt;}
.x1_c00256{left:383.760000pt;}
.xb_c00256{left:466.562269pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_451ee981c6e714ff3e627d7a.woff2')format("woff");}.ff1_c00257{font-family:ff1_c00257;line-height:1.106934;font-style:normal;font-weight:normal;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_d71360cf08148be3fb350ee9.woff2')format("woff");}.ff2_c00257{font-family:ff2_c00257;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00257;src:url('chunks/assets/font_587da32f32e091c8eebe00b9.woff2')format("woff");}.ff3_c00257{font-family:ff3_c00257;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00257;src:url('chunks/assets/font_338a5daae470c18843631c8f.woff2')format("woff");}.ff4_c00257{font-family:ff4_c00257;line-height:0.892090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00257;src:url('chunks/assets/font_6ebc79cb3e7820bd50b0d913.woff2')format("woff");}.ff5_c00257{font-family:ff5_c00257;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00257;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff6_c00257{font-family:ff6_c00257;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00257;src:url('chunks/assets/font_07eb467dc0104a41c3e26823.woff2')format("woff");}.ff7_c00257{font-family:ff7_c00257;line-height:1.133301;font-style:normal;font-weight: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_c00257;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff8_c00257{font-family:ff8_c00257;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00257{transform:matrix(0.236549,0.000000,-0.080900,0.236549,0,0);-ms-transform:matrix(0.236549,0.000000,-0.080900,0.236549,0,0);-webkit-transform:matrix(0.236549,0.000000,-0.080900,0.236549,0,0);}
.m0_c00257{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00257{vertical-align:-32.400000px;}
.v3_c00257{vertical-align:-14.760000px;}
.v0_c00257{vertical-align:0.000000px;}
.v1_c00257{vertical-align:32.400000px;}
.ls2c_c00257{letter-spacing:-0.707443px;}
.ls1b_c00257{letter-spacing:-0.473578px;}
.ls1c_c00257{letter-spacing:-0.432651px;}
.ls23_c00257{letter-spacing:-0.404366px;}
.ls2a_c00257{letter-spacing:-0.344952px;}
.ls21_c00257{letter-spacing:-0.268945px;}
.ls20_c00257{letter-spacing:-0.169553px;}
.lse_c00257{letter-spacing:-0.152013px;}
.ls22_c00257{letter-spacing:-0.140319px;}
.ls29_c00257{letter-spacing:-0.134473px;}
.ls11_c00257{letter-spacing:-0.128626px;}
.ls1e_c00257{letter-spacing:-0.116933px;}
.ls13_c00257{letter-spacing:-0.111086px;}
.lsc_c00257{letter-spacing:-0.105240px;}
.lsf_c00257{letter-spacing:-0.099393px;}
.lsd_c00257{letter-spacing:-0.093546px;}
.ls17_c00257{letter-spacing:-0.087700px;}
.ls10_c00257{letter-spacing:-0.081853px;}
.ls19_c00257{letter-spacing:-0.076006px;}
.ls26_c00257{letter-spacing:-0.075619px;}
.ls1f_c00257{letter-spacing:-0.064313px;}
.lsa_c00257{letter-spacing:-0.063018px;}
.ls25_c00257{letter-spacing:-0.058466px;}
.ls27_c00257{letter-spacing:-0.035080px;}
.ls24_c00257{letter-spacing:-0.015755px;}
.ls1a_c00257{letter-spacing:-0.011693px;}
.ls1d_c00257{letter-spacing:-0.005847px;}
.lsb_c00257{letter-spacing:0.000000px;}
.ls4_c00257{letter-spacing:0.005847px;}
.ls3_c00257{letter-spacing:0.011693px;}
.ls1_c00257{letter-spacing:0.023281px;}
.ls0_c00257{letter-spacing:0.023387px;}
.ls8_c00257{letter-spacing:0.029233px;}
.ls16_c00257{letter-spacing:0.070160px;}
.ls9_c00257{letter-spacing:0.081853px;}
.ls2_c00257{letter-spacing:0.099393px;}
.ls7_c00257{letter-spacing:0.105240px;}
.ls5_c00257{letter-spacing:0.111086px;}
.ls12_c00257{letter-spacing:0.128626px;}
.ls14_c00257{letter-spacing:0.146166px;}
.ls6_c00257{letter-spacing:0.152013px;}
.ls18_c00257{letter-spacing:0.175399px;}
.ls15_c00257{letter-spacing:0.245559px;}
.ls2b_c00257{letter-spacing:0.251406px;}
.ls2d_c00257{letter-spacing:0.333258px;}
.ls28_c00257{letter-spacing:0.415111px;}
.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;}
}
.ws7_c00257{word-spacing:-58.466400px;}
.ws4_c00257{word-spacing:-52.515000px;}
.ws5_c00257{word-spacing:-16.282892px;}
.ws0_c00257{word-spacing:-16.253659px;}
.ws2_c00257{word-spacing:-16.136726px;}
.ws8_c00257{word-spacing:-16.060720px;}
.ws3_c00257{word-spacing:-14.194805px;}
.ws1_c00257{word-spacing:-12.967628px;}
.ws6_c00257{word-spacing:-10.397640px;}
.ws1b_c00257{word-spacing:-0.555431px;}
.ws16_c00257{word-spacing:-0.549584px;}
.ws28_c00257{word-spacing:-0.514504px;}
.ws3e_c00257{word-spacing:-0.508658px;}
.ws1a_c00257{word-spacing:-0.473578px;}
.ws52_c00257{word-spacing:-0.321565px;}
.ws3d_c00257{word-spacing:-0.309872px;}
.ws3a_c00257{word-spacing:-0.304025px;}
.ws19_c00257{word-spacing:-0.286485px;}
.ws1d_c00257{word-spacing:-0.222172px;}
.ws4e_c00257{word-spacing:-0.070160px;}
.ws4d_c00257{word-spacing:-0.017540px;}
.ws9_c00257{word-spacing:0.000000px;}
.ws3b_c00257{word-spacing:0.017540px;}
.ws18_c00257{word-spacing:0.040926px;}
.ws1c_c00257{word-spacing:0.046773px;}
.ws17_c00257{word-spacing:0.052620px;}
.ws39_c00257{word-spacing:0.064313px;}
.ws46_c00257{word-spacing:0.070160px;}
.ws11_c00257{word-spacing:0.087700px;}
.ws3c_c00257{word-spacing:0.128626px;}
.ws4c_c00257{word-spacing:0.222172px;}
.ws4a_c00257{word-spacing:0.678210px;}
.ws4b_c00257{word-spacing:0.724983px;}
.ws49_c00257{word-spacing:0.765910px;}
.ws44_c00257{word-spacing:0.777603px;}
.ws48_c00257{word-spacing:0.841916px;}
.ws40_c00257{word-spacing:1.140095px;}
.ws47_c00257{word-spacing:1.175175px;}
.ws42_c00257{word-spacing:1.221948px;}
.ws43_c00257{word-spacing:1.906005px;}
.ws20_c00257{word-spacing:3.285812px;}
.ws34_c00257{word-spacing:3.630763px;}
.ws31_c00257{word-spacing:4.279740px;}
.ws15_c00257{word-spacing:4.384980px;}
.wsc_c00257{word-spacing:4.788398px;}
.ws32_c00257{word-spacing:4.905331px;}
.ws45_c00257{word-spacing:5.454915px;}
.ws1f_c00257{word-spacing:5.794020px;}
.ws2e_c00257{word-spacing:6.191592px;}
.ws37_c00257{word-spacing:7.530472px;}
.wse_c00257{word-spacing:10.646731px;}
.wsd_c00257{word-spacing:10.857210px;}
.wsb_c00257{word-spacing:11.927146px;}
.ws50_c00257{word-spacing:12.359797px;}
.ws4f_c00257{word-spacing:12.435803px;}
.ws51_c00257{word-spacing:13.318646px;}
.ws2f_c00257{word-spacing:13.342032px;}
.ws3f_c00257{word-spacing:13.745451px;}
.ws14_c00257{word-spacing:13.985163px;}
.ws35_c00257{word-spacing:14.125482px;}
.ws25_c00257{word-spacing:14.248262px;}
.ws24_c00257{word-spacing:14.710146px;}
.ws26_c00257{word-spacing:15.148644px;}
.ws2a_c00257{word-spacing:15.183724px;}
.ws29_c00257{word-spacing:17.750399px;}
.ws36_c00257{word-spacing:25.298411px;}
.ws27_c00257{word-spacing:26.806844px;}
.ws21_c00257{word-spacing:28.291891px;}
.ws22_c00257{word-spacing:28.765469px;}
.ws10_c00257{word-spacing:29.092881px;}
.wsa_c00257{word-spacing:36.062076px;}
.ws2b_c00257{word-spacing:44.241525px;}
.ws12_c00257{word-spacing:45.545326px;}
.ws1e_c00257{word-spacing:54.765477px;}
.ws13_c00257{word-spacing:55.297521px;}
.ws2d_c00257{word-spacing:63.056012px;}
.ws30_c00257{word-spacing:72.843288px;}
.ws2c_c00257{word-spacing:82.858582px;}
.ws33_c00257{word-spacing:89.324966px;}
.ws23_c00257{word-spacing:92.932343px;}
.wsf_c00257{word-spacing:119.201296px;}
.ws41_c00257{word-spacing:128.222662px;}
.ws38_c00257{word-spacing:272.552817px;}
._5_c00257{margin-left:-272.856842px;}
._6_c00257{margin-left:-128.053109px;}
._4_c00257{margin-left:-114.155646px;}
._b_c00257{margin-left:-7.436714px;}
._1_c00257{margin-left:-1.204408px;}
._0_c00257{width:1.046549px;}
._c_c00257{width:2.082828px;}
._a_c00257{width:5.930694px;}
._8_c00257{width:81.075357px;}
._7_c00257{width:87.956852px;}
._3_c00257{width:125.615060px;}
._2_c00257{width:269.617804px;}
._9_c00257{width:332.749822px;}
.fc0_c00257{color:rgb(0,0,0);}
.fs5_c00257{font-size:37.809600px;}
.fs3_c00257{font-size:46.562400px;}
.fs4_c00257{font-size:52.515000px;}
.fs1_c00257{font-size:58.466400px;}
.fs2_c00257{font-size:61.791132px;}
.fs0_c00257{font-size:70.020000px;}
.y0_c00257{bottom:0.000000px;}
.y2_c00257{bottom:109.740968px;}
.y1_c00257{bottom:129.810450px;}
.y3c_c00257{bottom:149.429891px;}
.y3b_c00257{bottom:170.940450px;}
.y3a_c00257{bottom:185.249891px;}
.y39_c00257{bottom:206.760450px;}
.y38_c00257{bottom:221.069891px;}
.y37_c00257{bottom:242.580450px;}
.y36_c00257{bottom:257.250450px;}
.y35_c00257{bottom:293.430450px;}
.y34_c00257{bottom:310.890450px;}
.y33_c00257{bottom:329.070983px;}
.y32_c00257{bottom:348.511061px;}
.y31_c00257{bottom:365.340614px;}
.y30_c00257{bottom:382.081006px;}
.y2f_c00257{bottom:398.910560px;}
.y2e_c00257{bottom:400.260450px;}
.y2d_c00257{bottom:415.650952px;}
.y2c_c00257{bottom:432.391344px;}
.y2b_c00257{bottom:449.220897px;}
.y2a_c00257{bottom:466.050450px;}
.y29_c00257{bottom:484.140759px;}
.y28_c00257{bottom:503.671460px;}
.y27_c00257{bottom:520.321229px;}
.y26_c00257{bottom:537.150782px;}
.y25_c00257{bottom:553.891174px;}
.y24_c00257{bottom:570.720727px;}
.y23_c00257{bottom:587.461119px;}
.y22_c00257{bottom:604.201511px;}
.y21_c00257{bottom:621.031064px;}
.y20_c00257{bottom:637.860618px;}
.y1f_c00257{bottom:654.510387px;}
.y1e_c00257{bottom:671.339940px;}
.y1d_c00257{bottom:688.169493px;}
.y1c_c00257{bottom:704.909885px;}
.y1b_c00257{bottom:721.650277px;}
.y1a_c00257{bottom:738.479830px;}
.y19_c00257{bottom:755.220222px;}
.y18_c00257{bottom:771.960614px;}
.y17_c00257{bottom:788.790168px;}
.y16_c00257{bottom:805.530560px;}
.y15_c00257{bottom:822.360113px;}
.y14_c00257{bottom:839.100505px;}
.y13_c00257{bottom:855.840897px;}
.y12_c00257{bottom:872.670450px;}
.y11_c00257{bottom:890.129800px;}
.y10_c00257{bottom:906.870192px;}
.yf_c00257{bottom:923.699745px;}
.ye_c00257{bottom:940.440137px;}
.yd_c00257{bottom:957.180529px;}
.yc_c00257{bottom:974.010083px;}
.ya_c00257{bottom:991.379357px;}
.yb_c00257{bottom:991.380450px;}
.y9_c00257{bottom:1010.910058px;}
.y8_c00257{bottom:1027.650450px;}
.y7_c00257{bottom:1045.379721px;}
.y6_c00257{bottom:1062.120113px;}
.y5_c00257{bottom:1078.949666px;}
.y4_c00257{bottom:1095.690058px;}
.y3_c00257{bottom:1112.430450px;}
.h9_c00257{height:39.338549px;}
.h3_c00257{height:46.343349px;}
.h7_c00257{height:47.078877px;}
.h2_c00257{height:52.271474px;}
.h5_c00257{height:52.414214px;}
.ha_c00257{height:54.098549px;}
.h1_c00257{height:62.771836px;}
.h8_c00257{height:73.666654px;}
.h6_c00257{height:73.667551px;}
.h4_c00257{height:74.028786px;}
.h0_c00257{height:1263.000000px;}
.w0_c00257{width:892.500000px;}
.x0_c00257{left:0.000000px;}
.x2_c00257{left:82.710059px;}
.x9_c00257{left:119.880000px;}
.x7_c00257{left:256.051183px;}
.x8_c00257{left:400.771601px;}
.x1_c00257{left:431.730000px;}
.x3_c00257{left:524.880000px;}
.x4_c00257{left:532.170000px;}
.x5_c00257{left:677.340000px;}
.x6_c00257{left:684.900000px;}
@media print{
.v2_c00257{vertical-align:-28.800000pt;}
.v3_c00257{vertical-align:-13.120000pt;}
.v0_c00257{vertical-align:0.000000pt;}
.v1_c00257{vertical-align:28.800000pt;}
.ls2c_c00257{letter-spacing:-0.628839pt;}
.ls1b_c00257{letter-spacing:-0.420958pt;}
.ls1c_c00257{letter-spacing:-0.384579pt;}
.ls23_c00257{letter-spacing:-0.359436pt;}
.ls2a_c00257{letter-spacing:-0.306624pt;}
.ls21_c00257{letter-spacing:-0.239063pt;}
.ls20_c00257{letter-spacing:-0.150713pt;}
.lse_c00257{letter-spacing:-0.135122pt;}
.ls22_c00257{letter-spacing:-0.124728pt;}
.ls29_c00257{letter-spacing:-0.119531pt;}
.ls11_c00257{letter-spacing:-0.114334pt;}
.ls1e_c00257{letter-spacing:-0.103940pt;}
.ls13_c00257{letter-spacing:-0.098743pt;}
.lsc_c00257{letter-spacing:-0.093546pt;}
.lsf_c00257{letter-spacing:-0.088349pt;}
.lsd_c00257{letter-spacing:-0.083152pt;}
.ls17_c00257{letter-spacing:-0.077955pt;}
.ls10_c00257{letter-spacing:-0.072758pt;}
.ls19_c00257{letter-spacing:-0.067561pt;}
.ls26_c00257{letter-spacing:-0.067217pt;}
.ls1f_c00257{letter-spacing:-0.057167pt;}
.lsa_c00257{letter-spacing:-0.056016pt;}
.ls25_c00257{letter-spacing:-0.051970pt;}
.ls27_c00257{letter-spacing:-0.031182pt;}
.ls24_c00257{letter-spacing:-0.014004pt;}
.ls1a_c00257{letter-spacing:-0.010394pt;}
.ls1d_c00257{letter-spacing:-0.005197pt;}
.lsb_c00257{letter-spacing:0.000000pt;}
.ls4_c00257{letter-spacing:0.005197pt;}
.ls3_c00257{letter-spacing:0.010394pt;}
.ls1_c00257{letter-spacing:0.020694pt;}
.ls0_c00257{letter-spacing:0.020788pt;}
.ls8_c00257{letter-spacing:0.025985pt;}
.ls16_c00257{letter-spacing:0.062364pt;}
.ls9_c00257{letter-spacing:0.072758pt;}
.ls2_c00257{letter-spacing:0.088349pt;}
.ls7_c00257{letter-spacing:0.093546pt;}
.ls5_c00257{letter-spacing:0.098743pt;}
.ls12_c00257{letter-spacing:0.114334pt;}
.ls14_c00257{letter-spacing:0.129925pt;}
.ls6_c00257{letter-spacing:0.135122pt;}
.ls18_c00257{letter-spacing:0.155910pt;}
.ls15_c00257{letter-spacing:0.218275pt;}
.ls2b_c00257{letter-spacing:0.223472pt;}
.ls2d_c00257{letter-spacing:0.296230pt;}
.ls28_c00257{letter-spacing:0.368988pt;}
.ws7_c00257{word-spacing:-51.970133pt;}
.ws4_c00257{word-spacing:-46.680000pt;}
.ws5_c00257{word-spacing:-14.473682pt;}
.ws0_c00257{word-spacing:-14.447697pt;}
.ws2_c00257{word-spacing:-14.343757pt;}
.ws8_c00257{word-spacing:-14.276196pt;}
.ws3_c00257{word-spacing:-12.617604pt;}
.ws1_c00257{word-spacing:-11.526781pt;}
.ws6_c00257{word-spacing:-9.242347pt;}
.ws1b_c00257{word-spacing:-0.493716pt;}
.ws16_c00257{word-spacing:-0.488519pt;}
.ws28_c00257{word-spacing:-0.457337pt;}
.ws3e_c00257{word-spacing:-0.452140pt;}
.ws1a_c00257{word-spacing:-0.420958pt;}
.ws52_c00257{word-spacing:-0.285836pt;}
.ws3d_c00257{word-spacing:-0.275442pt;}
.ws3a_c00257{word-spacing:-0.270245pt;}
.ws19_c00257{word-spacing:-0.254654pt;}
.ws1d_c00257{word-spacing:-0.197487pt;}
.ws4e_c00257{word-spacing:-0.062364pt;}
.ws4d_c00257{word-spacing:-0.015591pt;}
.ws9_c00257{word-spacing:0.000000pt;}
.ws3b_c00257{word-spacing:0.015591pt;}
.ws18_c00257{word-spacing:0.036379pt;}
.ws1c_c00257{word-spacing:0.041576pt;}
.ws17_c00257{word-spacing:0.046773pt;}
.ws39_c00257{word-spacing:0.057167pt;}
.ws46_c00257{word-spacing:0.062364pt;}
.ws11_c00257{word-spacing:0.077955pt;}
.ws3c_c00257{word-spacing:0.114334pt;}
.ws4c_c00257{word-spacing:0.197487pt;}
.ws4a_c00257{word-spacing:0.602854pt;}
.ws4b_c00257{word-spacing:0.644430pt;}
.ws49_c00257{word-spacing:0.680809pt;}
.ws44_c00257{word-spacing:0.691203pt;}
.ws48_c00257{word-spacing:0.748370pt;}
.ws40_c00257{word-spacing:1.013418pt;}
.ws47_c00257{word-spacing:1.044600pt;}
.ws42_c00257{word-spacing:1.086176pt;}
.ws43_c00257{word-spacing:1.694226pt;}
.ws20_c00257{word-spacing:2.920721pt;}
.ws34_c00257{word-spacing:3.227345pt;}
.ws31_c00257{word-spacing:3.804214pt;}
.ws15_c00257{word-spacing:3.897760pt;}
.wsc_c00257{word-spacing:4.256354pt;}
.ws32_c00257{word-spacing:4.360294pt;}
.ws45_c00257{word-spacing:4.848813pt;}
.ws1f_c00257{word-spacing:5.150240pt;}
.ws2e_c00257{word-spacing:5.503637pt;}
.ws37_c00257{word-spacing:6.693753pt;}
.wse_c00257{word-spacing:9.463761pt;}
.wsd_c00257{word-spacing:9.650854pt;}
.wsb_c00257{word-spacing:10.601907pt;}
.ws50_c00257{word-spacing:10.986486pt;}
.ws4f_c00257{word-spacing:11.054047pt;}
.ws51_c00257{word-spacing:11.838796pt;}
.ws2f_c00257{word-spacing:11.859584pt;}
.ws3f_c00257{word-spacing:12.218178pt;}
.ws14_c00257{word-spacing:12.431256pt;}
.ws35_c00257{word-spacing:12.555984pt;}
.ws25_c00257{word-spacing:12.665121pt;}
.ws24_c00257{word-spacing:13.075686pt;}
.ws26_c00257{word-spacing:13.465462pt;}
.ws2a_c00257{word-spacing:13.496644pt;}
.ws29_c00257{word-spacing:15.778132pt;}
.ws36_c00257{word-spacing:22.487477pt;}
.ws27_c00257{word-spacing:23.828306pt;}
.ws21_c00257{word-spacing:25.148348pt;}
.ws22_c00257{word-spacing:25.569306pt;}
.ws10_c00257{word-spacing:25.860338pt;}
.wsa_c00257{word-spacing:32.055178pt;}
.ws2b_c00257{word-spacing:39.325800pt;}
.ws12_c00257{word-spacing:40.484734pt;}
.ws1e_c00257{word-spacing:48.680424pt;}
.ws13_c00257{word-spacing:49.153352pt;}
.ws2d_c00257{word-spacing:56.049789pt;}
.ws30_c00257{word-spacing:64.749589pt;}
.ws2c_c00257{word-spacing:73.652073pt;}
.ws33_c00257{word-spacing:79.399970pt;}
.ws23_c00257{word-spacing:82.606527pt;}
.wsf_c00257{word-spacing:105.956708pt;}
.ws41_c00257{word-spacing:113.975699pt;}
.ws38_c00257{word-spacing:242.269171pt;}
._5_c00257{margin-left:-242.539415pt;}
._6_c00257{margin-left:-113.824986pt;}
._4_c00257{margin-left:-101.471685pt;}
._b_c00257{margin-left:-6.610413pt;}
._1_c00257{margin-left:-1.070585pt;}
._0_c00257{width:0.930265pt;}
._c_c00257{width:1.851403pt;}
._a_c00257{width:5.271728pt;}
._8_c00257{width:72.066984pt;}
._7_c00257{width:78.183869pt;}
._3_c00257{width:111.657831pt;}
._2_c00257{width:239.660270pt;}
._9_c00257{width:295.777620pt;}
.fs5_c00257{font-size:33.608533pt;}
.fs3_c00257{font-size:41.388800pt;}
.fs4_c00257{font-size:46.680000pt;}
.fs1_c00257{font-size:51.970133pt;}
.fs2_c00257{font-size:54.925450pt;}
.fs0_c00257{font-size:62.240000pt;}
.y0_c00257{bottom:0.000000pt;}
.y2_c00257{bottom:97.547527pt;}
.y1_c00257{bottom:115.387067pt;}
.y3c_c00257{bottom:132.826570pt;}
.y3b_c00257{bottom:151.947067pt;}
.y3a_c00257{bottom:164.666570pt;}
.y39_c00257{bottom:183.787067pt;}
.y38_c00257{bottom:196.506570pt;}
.y37_c00257{bottom:215.627067pt;}
.y36_c00257{bottom:228.667067pt;}
.y35_c00257{bottom:260.827067pt;}
.y34_c00257{bottom:276.347067pt;}
.y33_c00257{bottom:292.507541pt;}
.y32_c00257{bottom:309.787610pt;}
.y31_c00257{bottom:324.747213pt;}
.y30_c00257{bottom:339.627561pt;}
.y2f_c00257{bottom:354.587164pt;}
.y2e_c00257{bottom:355.787067pt;}
.y2d_c00257{bottom:369.467512pt;}
.y2c_c00257{bottom:384.347861pt;}
.y2b_c00257{bottom:399.307464pt;}
.y2a_c00257{bottom:414.267067pt;}
.y29_c00257{bottom:430.347341pt;}
.y28_c00257{bottom:447.707964pt;}
.y27_c00257{bottom:462.507759pt;}
.y26_c00257{bottom:477.467362pt;}
.y25_c00257{bottom:492.347710pt;}
.y24_c00257{bottom:507.307313pt;}
.y23_c00257{bottom:522.187661pt;}
.y22_c00257{bottom:537.068010pt;}
.y21_c00257{bottom:552.027613pt;}
.y20_c00257{bottom:566.987216pt;}
.y1f_c00257{bottom:581.787010pt;}
.y1e_c00257{bottom:596.746613pt;}
.y1d_c00257{bottom:611.706216pt;}
.y1c_c00257{bottom:626.586565pt;}
.y1b_c00257{bottom:641.466913pt;}
.y1a_c00257{bottom:656.426516pt;}
.y19_c00257{bottom:671.306864pt;}
.y18_c00257{bottom:686.187213pt;}
.y17_c00257{bottom:701.146816pt;}
.y16_c00257{bottom:716.027164pt;}
.y15_c00257{bottom:730.986767pt;}
.y14_c00257{bottom:745.867115pt;}
.y13_c00257{bottom:760.747464pt;}
.y12_c00257{bottom:775.707067pt;}
.y11_c00257{bottom:791.226489pt;}
.y10_c00257{bottom:806.106837pt;}
.yf_c00257{bottom:821.066440pt;}
.ye_c00257{bottom:835.946789pt;}
.yd_c00257{bottom:850.827137pt;}
.yc_c00257{bottom:865.786740pt;}
.ya_c00257{bottom:881.226095pt;}
.yb_c00257{bottom:881.227067pt;}
.y9_c00257{bottom:898.586718pt;}
.y8_c00257{bottom:913.467067pt;}
.y7_c00257{bottom:929.226419pt;}
.y6_c00257{bottom:944.106767pt;}
.y5_c00257{bottom:959.066370pt;}
.y4_c00257{bottom:973.946718pt;}
.y3_c00257{bottom:988.827067pt;}
.h9_c00257{height:34.967599pt;}
.h3_c00257{height:41.194088pt;}
.h7_c00257{height:41.847891pt;}
.h2_c00257{height:46.463532pt;}
.h5_c00257{height:46.590412pt;}
.ha_c00257{height:48.087599pt;}
.h1_c00257{height:55.797187pt;}
.h8_c00257{height:65.481470pt;}
.h6_c00257{height:65.482268pt;}
.h4_c00257{height:65.803366pt;}
.h0_c00257{height:1122.666667pt;}
.w0_c00257{width:793.333333pt;}
.x0_c00257{left:0.000000pt;}
.x2_c00257{left:73.520052pt;}
.x9_c00257{left:106.560000pt;}
.x7_c00257{left:227.601051pt;}
.x8_c00257{left:356.241423pt;}
.x1_c00257{left:383.760000pt;}
.x3_c00257{left:466.560000pt;}
.x4_c00257{left:473.040000pt;}
.x5_c00257{left:602.080000pt;}
.x6_c00257{left:608.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f8e009674f408059a9708445.woff2')format("woff");}.ff1_c00258{font-family:ff1_c00258;line-height:1.106934;font-style:normal;font-weight:normal;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_ab6d761312b4cecb74d7808b.woff2')format("woff");}.ff2_c00258{font-family:ff2_c00258;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00258{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00258{vertical-align:-5.400000px;}
.v0_c00258{vertical-align:0.000000px;}
.v2_c00258{vertical-align:5.760000px;}
.lsa_c00258{letter-spacing:-0.134473px;}
.lsd_c00258{letter-spacing:-0.122779px;}
.lsc_c00258{letter-spacing:-0.116933px;}
.lsb_c00258{letter-spacing:-0.111086px;}
.ls7_c00258{letter-spacing:-0.105240px;}
.ls8_c00258{letter-spacing:-0.093546px;}
.ls5_c00258{letter-spacing:-0.063018px;}
.ls16_c00258{letter-spacing:-0.056016px;}
.ls17_c00258{letter-spacing:-0.049014px;}
.ls15_c00258{letter-spacing:-0.042012px;}
.ls14_c00258{letter-spacing:-0.035010px;}
.ls11_c00258{letter-spacing:-0.028008px;}
.ls10_c00258{letter-spacing:-0.021006px;}
.ls12_c00258{letter-spacing:-0.007002px;}
.ls6_c00258{letter-spacing:0.000000px;}
.ls4_c00258{letter-spacing:0.007002px;}
.ls2_c00258{letter-spacing:0.028008px;}
.ls0_c00258{letter-spacing:0.029233px;}
.ls3_c00258{letter-spacing:0.035010px;}
.ls13_c00258{letter-spacing:0.084024px;}
.lse_c00258{letter-spacing:0.175399px;}
.ls9_c00258{letter-spacing:0.346599px;}
.ls1_c00258{letter-spacing:399.400830px;}
.lsf_c00258{letter-spacing:521.239649px;}
.sc__c00258{text-shadow:none;}
.sc0_c00258{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00258{-webkit-text-stroke:0px transparent;}
.sc0_c00258{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00258{word-spacing:-19.493568px;}
.ws2_c00258{word-spacing:-0.298179px;}
.ws7_c00258{word-spacing:-0.292332px;}
.wsa_c00258{word-spacing:-0.280639px;}
.ws9_c00258{word-spacing:-0.040926px;}
.ws1_c00258{word-spacing:0.000000px;}
.ws13_c00258{word-spacing:0.014004px;}
.ws19_c00258{word-spacing:0.028008px;}
.ws1e_c00258{word-spacing:0.035010px;}
.ws5_c00258{word-spacing:0.052620px;}
.ws3_c00258{word-spacing:0.058466px;}
.wsb_c00258{word-spacing:0.070160px;}
.ws8_c00258{word-spacing:0.076006px;}
.ws6_c00258{word-spacing:0.093546px;}
.ws1c_c00258{word-spacing:0.336096px;}
.ws12_c00258{word-spacing:0.350100px;}
.wsc_c00258{word-spacing:0.364104px;}
.wsd_c00258{word-spacing:2.534724px;}
.ws14_c00258{word-spacing:2.898828px;}
.ws10_c00258{word-spacing:3.592026px;}
.ws11_c00258{word-spacing:3.606030px;}
.wsf_c00258{word-spacing:4.327236px;}
.wse_c00258{word-spacing:4.334238px;}
.ws15_c00258{word-spacing:17.589024px;}
.ws16_c00258{word-spacing:17.645040px;}
.ws1d_c00258{word-spacing:43.930548px;}
.ws17_c00258{word-spacing:63.368100px;}
.ws1a_c00258{word-spacing:63.375102px;}
.ws18_c00258{word-spacing:63.382104px;}
.ws1b_c00258{word-spacing:63.403110px;}
.ws4_c00258{word-spacing:376.126044px;}
._20_c00258{margin-left:-62.996994px;}
._7_c00258{margin-left:-61.559273px;}
._2b_c00258{margin-left:-43.566444px;}
._f_c00258{margin-left:-1.617462px;}
._0_c00258{width:1.251181px;}
._1f_c00258{width:45.609102px;}
._10_c00258{width:53.284950px;}
._2_c00258{width:61.904224px;}
._24_c00258{width:63.361098px;}
._5_c00258{width:78.105264px;}
._18_c00258{width:98.206012px;}
._12_c00258{width:104.935495px;}
._1b_c00258{width:114.687690px;}
._14_c00258{width:115.979798px;}
._d_c00258{width:119.113597px;}
._13_c00258{width:124.925157px;}
._6_c00258{width:138.910320px;}
._8_c00258{width:145.084372px;}
._19_c00258{width:166.880646px;}
._9_c00258{width:170.254157px;}
._1c_c00258{width:177.328591px;}
._1_c00258{width:188.998485px;}
._3_c00258{width:200.054481px;}
._a_c00258{width:206.550098px;}
._c_c00258{width:209.181086px;}
._16_c00258{width:222.096314px;}
._15_c00258{width:223.201329px;}
._1a_c00258{width:229.100588px;}
._b_c00258{width:233.082150px;}
._17_c00258{width:245.336708px;}
._4_c00258{width:246.956227px;}
._11_c00258{width:274.552368px;}
._1d_c00258{width:279.147827px;}
._1e_c00258{width:336.216880px;}
._e_c00258{width:346.296487px;}
._21_c00258{width:557.282178px;}
._26_c00258{width:600.337476px;}
._29_c00258{width:605.336904px;}
._23_c00258{width:623.535102px;}
._28_c00258{width:652.208292px;}
._22_c00258{width:693.289026px;}
._2a_c00258{width:733.683564px;}
._27_c00258{width:759.899052px;}
._25_c00258{width:827.279298px;}
.fc0_c00258{color:rgb(0,0,0);}
.fs2_c00258{font-size:52.515000px;}
.fs1_c00258{font-size:58.466400px;}
.fs0_c00258{font-size:70.020000px;}
.y0_c00258{bottom:0.000000px;}
.y2_c00258{bottom:109.740968px;}
.y1_c00258{bottom:129.810450px;}
.y30_c00258{bottom:150.239959px;}
.y2f_c00258{bottom:170.309442px;}
.y2e_c00258{bottom:190.469950px;}
.y2d_c00258{bottom:210.630459px;}
.y2c_c00258{bottom:230.699941px;}
.y2b_c00258{bottom:250.860450px;}
.y29_c00258{bottom:271.830450px;}
.y28_c00258{bottom:292.620450px;}
.y27_c00258{bottom:313.410450px;}
.y26_c00258{bottom:334.380450px;}
.y25_c00258{bottom:357.150450px;}
.y2a_c00258{bottom:366.959622px;}
.y24_c00258{bottom:377.940450px;}
.y23_c00258{bottom:398.820450px;}
.y22_c00258{bottom:419.700600px;}
.y21_c00258{bottom:440.580450px;}
.y20_c00258{bottom:461.366256px;}
.y1f_c00258{bottom:482.156945px;}
.y1e_c00258{bottom:512.396832px;}
.y1d_c00258{bottom:542.547444px;}
.y1c_c00258{bottom:572.787332px;}
.y1b_c00258{bottom:592.947840px;}
.y1a_c00258{bottom:623.098452px;}
.y19_c00258{bottom:653.338340px;}
.y18_c00258{bottom:683.488951px;}
.y17_c00258{bottom:713.728839px;}
.y16_c00258{bottom:743.879451px;}
.y15_c00258{bottom:774.119339px;}
.y14_c00258{bottom:804.269951px;}
.y13_c00258{bottom:824.430459px;}
.y12_c00258{bottom:844.590968px;}
.y11_c00258{bottom:864.660450px;}
.y10_c00258{bottom:884.910450px;}
.yf_c00258{bottom:902.370450px;}
.ye_c00258{bottom:919.920450px;}
.yd_c00258{bottom:937.380450px;}
.yc_c00258{bottom:954.930450px;}
.yb_c00258{bottom:972.390450px;}
.ya_c00258{bottom:989.940450px;}
.y9_c00258{bottom:1007.400450px;}
.y8_c00258{bottom:1026.300450px;}
.y7_c00258{bottom:1042.410450px;}
.y6_c00258{bottom:1059.960450px;}
.y5_c00258{bottom:1077.420450px;}
.y4_c00258{bottom:1094.970450px;}
.y3_c00258{bottom:1112.430450px;}
.h3_c00258{height:47.078877px;}
.h2_c00258{height:52.414214px;}
.h4_c00258{height:52.838877px;}
.h1_c00258{height:62.771836px;}
.h5_c00258{height:63.216299px;}
.h0_c00258{height:1263.000000px;}
.w0_c00258{width:892.500000px;}
.x0_c00258{left:0.000000px;}
.x2_c00258{left:82.710059px;}
.x3_c00258{left:173.430000px;}
.x7_c00258{left:223.020000px;}
.x6_c00258{left:227.880369px;}
.x4_c00258{left:336.870000px;}
.x8_c00258{left:403.470292px;}
.x1_c00258{left:431.730000px;}
.x5_c00258{left:446.400536px;}
.x9_c00258{left:539.009757px;}
@media print{
.v1_c00258{vertical-align:-4.800000pt;}
.v0_c00258{vertical-align:0.000000pt;}
.v2_c00258{vertical-align:5.120000pt;}
.lsa_c00258{letter-spacing:-0.119531pt;}
.lsd_c00258{letter-spacing:-0.109137pt;}
.lsc_c00258{letter-spacing:-0.103940pt;}
.lsb_c00258{letter-spacing:-0.098743pt;}
.ls7_c00258{letter-spacing:-0.093546pt;}
.ls8_c00258{letter-spacing:-0.083152pt;}
.ls5_c00258{letter-spacing:-0.056016pt;}
.ls16_c00258{letter-spacing:-0.049792pt;}
.ls17_c00258{letter-spacing:-0.043568pt;}
.ls15_c00258{letter-spacing:-0.037344pt;}
.ls14_c00258{letter-spacing:-0.031120pt;}
.ls11_c00258{letter-spacing:-0.024896pt;}
.ls10_c00258{letter-spacing:-0.018672pt;}
.ls12_c00258{letter-spacing:-0.006224pt;}
.ls6_c00258{letter-spacing:0.000000pt;}
.ls4_c00258{letter-spacing:0.006224pt;}
.ls2_c00258{letter-spacing:0.024896pt;}
.ls0_c00258{letter-spacing:0.025985pt;}
.ls3_c00258{letter-spacing:0.031120pt;}
.ls13_c00258{letter-spacing:0.074688pt;}
.lse_c00258{letter-spacing:0.155910pt;}
.ls9_c00258{letter-spacing:0.308088pt;}
.ls1_c00258{letter-spacing:355.022960pt;}
.lsf_c00258{letter-spacing:463.324133pt;}
.ws0_c00258{word-spacing:-17.327616pt;}
.ws2_c00258{word-spacing:-0.265048pt;}
.ws7_c00258{word-spacing:-0.259851pt;}
.wsa_c00258{word-spacing:-0.249457pt;}
.ws9_c00258{word-spacing:-0.036379pt;}
.ws1_c00258{word-spacing:0.000000pt;}
.ws13_c00258{word-spacing:0.012448pt;}
.ws19_c00258{word-spacing:0.024896pt;}
.ws1e_c00258{word-spacing:0.031120pt;}
.ws5_c00258{word-spacing:0.046773pt;}
.ws3_c00258{word-spacing:0.051970pt;}
.wsb_c00258{word-spacing:0.062364pt;}
.ws8_c00258{word-spacing:0.067561pt;}
.ws6_c00258{word-spacing:0.083152pt;}
.ws1c_c00258{word-spacing:0.298752pt;}
.ws12_c00258{word-spacing:0.311200pt;}
.wsc_c00258{word-spacing:0.323648pt;}
.wsd_c00258{word-spacing:2.253088pt;}
.ws14_c00258{word-spacing:2.576736pt;}
.ws10_c00258{word-spacing:3.192912pt;}
.ws11_c00258{word-spacing:3.205360pt;}
.wsf_c00258{word-spacing:3.846432pt;}
.wse_c00258{word-spacing:3.852656pt;}
.ws15_c00258{word-spacing:15.634688pt;}
.ws16_c00258{word-spacing:15.684480pt;}
.ws1d_c00258{word-spacing:39.049376pt;}
.ws17_c00258{word-spacing:56.327200pt;}
.ws1a_c00258{word-spacing:56.333424pt;}
.ws18_c00258{word-spacing:56.339648pt;}
.ws1b_c00258{word-spacing:56.358320pt;}
.ws4_c00258{word-spacing:334.334262pt;}
._20_c00258{margin-left:-55.997328pt;}
._7_c00258{margin-left:-54.719353pt;}
._2b_c00258{margin-left:-38.725728pt;}
._f_c00258{margin-left:-1.437744pt;}
._0_c00258{width:1.112161pt;}
._1f_c00258{width:40.541424pt;}
._10_c00258{width:47.364400pt;}
._2_c00258{width:55.025977pt;}
._24_c00258{width:56.320976pt;}
._5_c00258{width:69.426901pt;}
._18_c00258{width:87.294233pt;}
._12_c00258{width:93.275995pt;}
._1b_c00258{width:101.944614pt;}
._14_c00258{width:103.093153pt;}
._d_c00258{width:105.878753pt;}
._13_c00258{width:111.044584pt;}
._6_c00258{width:123.475840pt;}
._8_c00258{width:128.963886pt;}
._19_c00258{width:148.338352pt;}
._9_c00258{width:151.337028pt;}
._1c_c00258{width:157.625414pt;}
._1_c00258{width:167.998653pt;}
._3_c00258{width:177.826205pt;}
._a_c00258{width:183.600087pt;}
._c_c00258{width:185.938743pt;}
._16_c00258{width:197.418945pt;}
._15_c00258{width:198.401181pt;}
._1a_c00258{width:203.644967pt;}
._b_c00258{width:207.184134pt;}
._17_c00258{width:218.077073pt;}
._4_c00258{width:219.516646pt;}
._11_c00258{width:244.046549pt;}
._1d_c00258{width:248.131402pt;}
._1e_c00258{width:298.859449pt;}
._e_c00258{width:307.819100pt;}
._21_c00258{width:495.361936pt;}
._26_c00258{width:533.633312pt;}
._29_c00258{width:538.077248pt;}
._23_c00258{width:554.253424pt;}
._28_c00258{width:579.740704pt;}
._22_c00258{width:616.256912pt;}
._2a_c00258{width:652.163168pt;}
._27_c00258{width:675.465824pt;}
._25_c00258{width:735.359376pt;}
.fs2_c00258{font-size:46.680000pt;}
.fs1_c00258{font-size:51.970133pt;}
.fs0_c00258{font-size:62.240000pt;}
.y0_c00258{bottom:0.000000pt;}
.y2_c00258{bottom:97.547527pt;}
.y1_c00258{bottom:115.387067pt;}
.y30_c00258{bottom:133.546631pt;}
.y2f_c00258{bottom:151.386171pt;}
.y2e_c00258{bottom:169.306623pt;}
.y2d_c00258{bottom:187.227075pt;}
.y2c_c00258{bottom:205.066615pt;}
.y2b_c00258{bottom:222.987067pt;}
.y29_c00258{bottom:241.627067pt;}
.y28_c00258{bottom:260.107067pt;}
.y27_c00258{bottom:278.587067pt;}
.y26_c00258{bottom:297.227067pt;}
.y25_c00258{bottom:317.467067pt;}
.y2a_c00258{bottom:326.186331pt;}
.y24_c00258{bottom:335.947067pt;}
.y23_c00258{bottom:354.507067pt;}
.y22_c00258{bottom:373.067200pt;}
.y21_c00258{bottom:391.627067pt;}
.y20_c00258{bottom:410.103339pt;}
.y1f_c00258{bottom:428.583951pt;}
.y1e_c00258{bottom:455.463851pt;}
.y1d_c00258{bottom:482.264395pt;}
.y1c_c00258{bottom:509.144295pt;}
.y1b_c00258{bottom:527.064747pt;}
.y1a_c00258{bottom:553.865291pt;}
.y19_c00258{bottom:580.745191pt;}
.y18_c00258{bottom:607.545735pt;}
.y17_c00258{bottom:634.425635pt;}
.y16_c00258{bottom:661.226179pt;}
.y15_c00258{bottom:688.106079pt;}
.y14_c00258{bottom:714.906623pt;}
.y13_c00258{bottom:732.827075pt;}
.y12_c00258{bottom:750.747527pt;}
.y11_c00258{bottom:768.587067pt;}
.y10_c00258{bottom:786.587067pt;}
.yf_c00258{bottom:802.107067pt;}
.ye_c00258{bottom:817.707067pt;}
.yd_c00258{bottom:833.227067pt;}
.yc_c00258{bottom:848.827067pt;}
.yb_c00258{bottom:864.347067pt;}
.ya_c00258{bottom:879.947067pt;}
.y9_c00258{bottom:895.467067pt;}
.y8_c00258{bottom:912.267067pt;}
.y7_c00258{bottom:926.587067pt;}
.y6_c00258{bottom:942.187067pt;}
.y5_c00258{bottom:957.707067pt;}
.y4_c00258{bottom:973.307067pt;}
.y3_c00258{bottom:988.827067pt;}
.h3_c00258{height:41.847891pt;}
.h2_c00258{height:46.590412pt;}
.h4_c00258{height:46.967891pt;}
.h1_c00258{height:55.797187pt;}
.h5_c00258{height:56.192266pt;}
.h0_c00258{height:1122.666667pt;}
.w0_c00258{width:793.333333pt;}
.x0_c00258{left:0.000000pt;}
.x2_c00258{left:73.520052pt;}
.x3_c00258{left:154.160000pt;}
.x7_c00258{left:198.240000pt;}
.x6_c00258{left:202.560328pt;}
.x4_c00258{left:299.440000pt;}
.x8_c00258{left:358.640260pt;}
.x1_c00258{left:383.760000pt;}
.x5_c00258{left:396.800476pt;}
.x9_c00258{left:479.119784pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f240073b0c2ee417df9ee08e.woff2')format("woff");}.ff1_c00259{font-family:ff1_c00259;line-height:1.106934;font-style:normal;font-weight:normal;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_7cec8604d6693e69985362b6.woff2')format("woff");}.ff2_c00259{font-family:ff2_c00259;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00259;src:url('chunks/assets/font_8bafd04a316bc19284ed1cae.woff2')format("woff");}.ff3_c00259{font-family:ff3_c00259;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00259;src:url('chunks/assets/font_2ad22c4e3388b7d0ef73c122.woff2')format("woff");}.ff4_c00259{font-family:ff4_c00259;line-height:0.892090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00259;src:url('chunks/assets/font_11c3a71682af16e75de9b638.woff2')format("woff");}.ff5_c00259{font-family:ff5_c00259;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00259;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff6_c00259{font-family:ff6_c00259;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00259;src:url('chunks/assets/font_0e5419eb7f9f3915f450c419.woff2')format("woff");}.ff7_c00259{font-family:ff7_c00259;line-height:1.133301;font-style:normal;font-weight: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_c00259;src:url('chunks/assets/font_2f2d138ff74aef5136b3b86e.woff2')format("woff");}.ff8_c00259{font-family:ff8_c00259;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00259{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3_c00259{vertical-align:-32.400000px;}
.v4_c00259{vertical-align:-14.760000px;}
.v0_c00259{vertical-align:0.000000px;}
.v1_c00259{vertical-align:6.480000px;}
.v2_c00259{vertical-align:32.401223px;}
.ls36_c00259{letter-spacing:-0.344952px;}
.ls2a_c00259{letter-spacing:-0.228019px;}
.ls31_c00259{letter-spacing:-0.210479px;}
.lsf_c00259{letter-spacing:-0.198786px;}
.ls2c_c00259{letter-spacing:-0.175399px;}
.ls22_c00259{letter-spacing:-0.163706px;}
.ls35_c00259{letter-spacing:-0.157859px;}
.ls1a_c00259{letter-spacing:-0.152013px;}
.ls26_c00259{letter-spacing:-0.146166px;}
.ls1d_c00259{letter-spacing:-0.140319px;}
.ls13_c00259{letter-spacing:-0.134473px;}
.ls18_c00259{letter-spacing:-0.128626px;}
.ls1f_c00259{letter-spacing:-0.122779px;}
.ls27_c00259{letter-spacing:-0.116933px;}
.ls11_c00259{letter-spacing:-0.111086px;}
.lsb_c00259{letter-spacing:-0.105240px;}
.ls12_c00259{letter-spacing:-0.099393px;}
.ls14_c00259{letter-spacing:-0.093546px;}
.ls15_c00259{letter-spacing:-0.087700px;}
.lse_c00259{letter-spacing:-0.084024px;}
.ls16_c00259{letter-spacing:-0.081853px;}
.lsc_c00259{letter-spacing:-0.078773px;}
.ls20_c00259{letter-spacing:-0.076006px;}
.ls29_c00259{letter-spacing:-0.075619px;}
.ls10_c00259{letter-spacing:-0.070160px;}
.ls2d_c00259{letter-spacing:-0.064313px;}
.ls9_c00259{letter-spacing:-0.063018px;}
.ls34_c00259{letter-spacing:-0.058466px;}
.ls2f_c00259{letter-spacing:-0.052620px;}
.ls1c_c00259{letter-spacing:-0.046773px;}
.ls1b_c00259{letter-spacing:-0.035080px;}
.ls30_c00259{letter-spacing:-0.023387px;}
.ls23_c00259{letter-spacing:-0.017540px;}
.ls24_c00259{letter-spacing:-0.011693px;}
.ls1e_c00259{letter-spacing:-0.005847px;}
.lsa_c00259{letter-spacing:0.000000px;}
.ls3_c00259{letter-spacing:0.005847px;}
.ls4_c00259{letter-spacing:0.023281px;}
.ls6_c00259{letter-spacing:0.023387px;}
.ls5_c00259{letter-spacing:0.076006px;}
.lsd_c00259{letter-spacing:0.084024px;}
.ls8_c00259{letter-spacing:0.087700px;}
.ls28_c00259{letter-spacing:0.111086px;}
.ls2_c00259{letter-spacing:0.116933px;}
.ls25_c00259{letter-spacing:0.128626px;}
.ls37_c00259{letter-spacing:0.134473px;}
.ls19_c00259{letter-spacing:0.140319px;}
.ls1_c00259{letter-spacing:0.169553px;}
.ls7_c00259{letter-spacing:0.175399px;}
.ls21_c00259{letter-spacing:0.216326px;}
.ls2b_c00259{letter-spacing:0.233866px;}
.ls17_c00259{letter-spacing:0.245559px;}
.ls0_c00259{letter-spacing:0.274792px;}
.ls33_c00259{letter-spacing:0.356645px;}
.ls2e_c00259{letter-spacing:0.385878px;}
.ls32_c00259{letter-spacing:0.479424px;}
.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;}
}
.ws4_c00259{word-spacing:-58.466400px;}
.ws0_c00259{word-spacing:-16.253659px;}
.ws2_c00259{word-spacing:-16.183500px;}
.ws5_c00259{word-spacing:-16.130880px;}
.ws6_c00259{word-spacing:-16.125033px;}
.ws1_c00259{word-spacing:-12.967628px;}
.ws3_c00259{word-spacing:-10.397640px;}
.ws4c_c00259{word-spacing:-0.701597px;}
.ws12_c00259{word-spacing:-0.678210px;}
.wsa_c00259{word-spacing:-0.631437px;}
.ws33_c00259{word-spacing:-0.578817px;}
.ws37_c00259{word-spacing:-0.572971px;}
.ws14_c00259{word-spacing:-0.520351px;}
.ws48_c00259{word-spacing:-0.374185px;}
.ws2a_c00259{word-spacing:-0.327412px;}
.ws28_c00259{word-spacing:-0.321565px;}
.ws35_c00259{word-spacing:-0.304025px;}
.wsd_c00259{word-spacing:-0.292332px;}
.ws3e_c00259{word-spacing:-0.274792px;}
.ws29_c00259{word-spacing:-0.268945px;}
.ws36_c00259{word-spacing:-0.216326px;}
.ws13_c00259{word-spacing:-0.210479px;}
.ws50_c00259{word-spacing:-0.122779px;}
.ws2f_c00259{word-spacing:-0.116933px;}
.ws27_c00259{word-spacing:-0.023387px;}
.ws1c_c00259{word-spacing:-0.005847px;}
.ws7_c00259{word-spacing:0.000000px;}
.ws9_c00259{word-spacing:0.029233px;}
.ws22_c00259{word-spacing:0.035080px;}
.ws11_c00259{word-spacing:0.040926px;}
.wsf_c00259{word-spacing:0.046773px;}
.ws2b_c00259{word-spacing:0.052620px;}
.ws10_c00259{word-spacing:0.058466px;}
.ws16_c00259{word-spacing:0.064313px;}
.ws38_c00259{word-spacing:0.070160px;}
.ws34_c00259{word-spacing:0.076006px;}
.ws4f_c00259{word-spacing:0.093546px;}
.ws32_c00259{word-spacing:0.099393px;}
.ws8_c00259{word-spacing:0.246821px;}
.ws53_c00259{word-spacing:0.643130px;}
.ws54_c00259{word-spacing:0.783450px;}
.ws4b_c00259{word-spacing:0.976389px;}
.ws51_c00259{word-spacing:1.181021px;}
.ws2d_c00259{word-spacing:1.473353px;}
.ws4a_c00259{word-spacing:1.479200px;}
.ws52_c00259{word-spacing:1.514280px;}
.ws49_c00259{word-spacing:1.865078px;}
.ws19_c00259{word-spacing:1.906005px;}
.ws15_c00259{word-spacing:2.917473px;}
.ws3a_c00259{word-spacing:3.297505px;}
.ws3b_c00259{word-spacing:3.671690px;}
.ws3f_c00259{word-spacing:3.788623px;}
.ws25_c00259{word-spacing:5.162583px;}
.ws31_c00259{word-spacing:5.589388px;}
.ws23_c00259{word-spacing:6.571623px;}
.ws21_c00259{word-spacing:7.998204px;}
.ws26_c00259{word-spacing:8.974592px;}
.ws39_c00259{word-spacing:9.430630px;}
.ws2c_c00259{word-spacing:10.161460px;}
.ws30_c00259{word-spacing:11.488648px;}
.ws41_c00259{word-spacing:11.558807px;}
.ws40_c00259{word-spacing:11.722513px;}
.ws42_c00259{word-spacing:12.663822px;}
.ws4e_c00259{word-spacing:14.569827px;}
.ws4d_c00259{word-spacing:14.832926px;}
.ws45_c00259{word-spacing:15.259730px;}
.ws47_c00259{word-spacing:15.306504px;}
.ws46_c00259{word-spacing:15.540369px;}
.ws44_c00259{word-spacing:15.721615px;}
.ws1d_c00259{word-spacing:16.253659px;}
.ws1e_c00259{word-spacing:16.657077px;}
.ws1b_c00259{word-spacing:17.592540px;}
.ws24_c00259{word-spacing:25.298411px;}
.ws17_c00259{word-spacing:38.605364px;}
.ws1f_c00259{word-spacing:44.960662px;}
.ws2e_c00259{word-spacing:49.637974px;}
.ws3d_c00259{word-spacing:51.187333px;}
.ws3c_c00259{word-spacing:54.139886px;}
.ws1a_c00259{word-spacing:55.467074px;}
.wsb_c00259{word-spacing:60.869369px;}
.wsc_c00259{word-spacing:68.452461px;}
.ws18_c00259{word-spacing:70.376006px;}
.ws43_c00259{word-spacing:99.562433px;}
.ws20_c00259{word-spacing:120.440784px;}
.wse_c00259{word-spacing:296.342795px;}
._5_c00259{margin-left:-296.933306px;}
._3_c00259{margin-left:-295.839984px;}
._4_c00259{margin-left:-177.129805px;}
._2_c00259{margin-left:-1.783225px;}
._1_c00259{width:1.333034px;}
._8_c00259{width:2.351773px;}
._7_c00259{width:5.930694px;}
._6_c00259{width:167.324116px;}
._0_c00259{width:216.121921px;}
.fc0_c00259{color:rgb(0,0,0);}
.fs4_c00259{font-size:37.809600px;}
.fs3_c00259{font-size:46.562400px;}
.fs2_c00259{font-size:52.515000px;}
.fs1_c00259{font-size:58.466400px;}
.fs0_c00259{font-size:70.020000px;}
.y0_c00259{bottom:0.000000px;}
.y2_c00259{bottom:109.740968px;}
.y1_c00259{bottom:129.810450px;}
.y3f_c00259{bottom:149.429891px;}
.y3e_c00259{bottom:170.940450px;}
.y3d_c00259{bottom:185.249891px;}
.y3c_c00259{bottom:206.760450px;}
.y3b_c00259{bottom:221.069891px;}
.y3a_c00259{bottom:242.580450px;}
.y39_c00259{bottom:256.710107px;}
.y38_c00259{bottom:278.400450px;}
.y37_c00259{bottom:293.070450px;}
.y36_c00259{bottom:325.921324px;}
.y35_c00259{bottom:345.361402px;}
.y34_c00259{bottom:362.101794px;}
.y33_c00259{bottom:378.931347px;}
.y32_c00259{bottom:395.760900px;}
.y31_c00259{bottom:412.410669px;}
.y30_c00259{bottom:429.240222px;}
.y2f_c00259{bottom:446.069776px;}
.y2e_c00259{bottom:462.810168px;}
.y2d_c00259{bottom:479.550560px;}
.y2c_c00259{bottom:496.380113px;}
.y2b_c00259{bottom:513.120505px;}
.y2a_c00259{bottom:529.860897px;}
.y29_c00259{bottom:546.690450px;}
.y28_c00259{bottom:564.240368px;}
.y27_c00259{bottom:580.890137px;}
.y26_c00259{bottom:597.719691px;}
.y25_c00259{bottom:614.460083px;}
.y23_c00259{bottom:617.879721px;}
.y24_c00259{bottom:631.829804px;}
.y22_c00259{bottom:634.620113px;}
.y21_c00259{bottom:651.360505px;}
.y20_c00259{bottom:668.190058px;}
.y1f_c00259{bottom:684.930450px;}
.y1e_c00259{bottom:702.391709px;}
.y1d_c00259{bottom:719.221262px;}
.y1c_c00259{bottom:736.050815px;}
.y1b_c00259{bottom:752.700584px;}
.y1a_c00259{bottom:769.530137px;}
.y19_c00259{bottom:786.359691px;}
.y18_c00259{bottom:803.100083px;}
.y17_c00259{bottom:820.469491px;}
.y16_c00259{bottom:840.000192px;}
.y15_c00259{bottom:856.829745px;}
.y14_c00259{bottom:873.570137px;}
.y13_c00259{bottom:890.310529px;}
.y12_c00259{bottom:907.140083px;}
.y11_c00259{bottom:924.510144px;}
.y10_c00259{bottom:943.950222px;}
.yf_c00259{bottom:960.779776px;}
.ye_c00259{bottom:977.520168px;}
.yc_c00259{bottom:994.349721px;}
.yb_c00259{bottom:1011.090113px;}
.yd_c00259{bottom:1027.739882px;}
.ya_c00259{bottom:1027.830505px;}
.y9_c00259{bottom:1044.660058px;}
.y8_c00259{bottom:1061.400450px;}
.y7_c00259{bottom:1078.859666px;}
.y5_c00259{bottom:1083.721000px;}
.y6_c00259{bottom:1095.600058px;}
.y4_c00259{bottom:1098.930657px;}
.y3_c00259{bottom:1112.340450px;}
.hb_c00259{height:39.338549px;}
.h3_c00259{height:47.412224px;}
.h6_c00259{height:52.271474px;}
.h5_c00259{height:52.414214px;}
.h4_c00259{height:52.785339px;}
.h2_c00259{height:53.892224px;}
.hc_c00259{height:54.098549px;}
.h1_c00259{height:62.771836px;}
.ha_c00259{height:73.665292px;}
.h7_c00259{height:74.030009px;}
.h9_c00259{height:74.031371px;}
.h8_c00259{height:74.032622px;}
.h0_c00259{height:1263.000000px;}
.w0_c00259{width:892.500000px;}
.x0_c00259{left:0.000000px;}
.x2_c00259{left:82.710059px;}
.x3_c00259{left:186.299644px;}
.x4_c00259{left:189.990136px;}
.xc_c00259{left:245.790330px;}
.x6_c00259{left:267.570682px;}
.x5_c00259{left:279.720000px;}
.x7_c00259{left:282.600932px;}
.xd_c00259{left:390.421587px;}
.x9_c00259{left:398.431640px;}
.x8_c00259{left:414.181027px;}
.xa_c00259{left:417.061959px;}
.x1_c00259{left:431.730000px;}
.xb_c00259{left:514.442133px;}
@media print{
.v3_c00259{vertical-align:-28.800000pt;}
.v4_c00259{vertical-align:-13.120000pt;}
.v0_c00259{vertical-align:0.000000pt;}
.v1_c00259{vertical-align:5.760000pt;}
.v2_c00259{vertical-align:28.801087pt;}
.ls36_c00259{letter-spacing:-0.306624pt;}
.ls2a_c00259{letter-spacing:-0.202684pt;}
.ls31_c00259{letter-spacing:-0.187092pt;}
.lsf_c00259{letter-spacing:-0.176698pt;}
.ls2c_c00259{letter-spacing:-0.155910pt;}
.ls22_c00259{letter-spacing:-0.145516pt;}
.ls35_c00259{letter-spacing:-0.140319pt;}
.ls1a_c00259{letter-spacing:-0.135122pt;}
.ls26_c00259{letter-spacing:-0.129925pt;}
.ls1d_c00259{letter-spacing:-0.124728pt;}
.ls13_c00259{letter-spacing:-0.119531pt;}
.ls18_c00259{letter-spacing:-0.114334pt;}
.ls1f_c00259{letter-spacing:-0.109137pt;}
.ls27_c00259{letter-spacing:-0.103940pt;}
.ls11_c00259{letter-spacing:-0.098743pt;}
.lsb_c00259{letter-spacing:-0.093546pt;}
.ls12_c00259{letter-spacing:-0.088349pt;}
.ls14_c00259{letter-spacing:-0.083152pt;}
.ls15_c00259{letter-spacing:-0.077955pt;}
.lse_c00259{letter-spacing:-0.074688pt;}
.ls16_c00259{letter-spacing:-0.072758pt;}
.lsc_c00259{letter-spacing:-0.070020pt;}
.ls20_c00259{letter-spacing:-0.067561pt;}
.ls29_c00259{letter-spacing:-0.067217pt;}
.ls10_c00259{letter-spacing:-0.062364pt;}
.ls2d_c00259{letter-spacing:-0.057167pt;}
.ls9_c00259{letter-spacing:-0.056016pt;}
.ls34_c00259{letter-spacing:-0.051970pt;}
.ls2f_c00259{letter-spacing:-0.046773pt;}
.ls1c_c00259{letter-spacing:-0.041576pt;}
.ls1b_c00259{letter-spacing:-0.031182pt;}
.ls30_c00259{letter-spacing:-0.020788pt;}
.ls23_c00259{letter-spacing:-0.015591pt;}
.ls24_c00259{letter-spacing:-0.010394pt;}
.ls1e_c00259{letter-spacing:-0.005197pt;}
.lsa_c00259{letter-spacing:0.000000pt;}
.ls3_c00259{letter-spacing:0.005197pt;}
.ls4_c00259{letter-spacing:0.020694pt;}
.ls6_c00259{letter-spacing:0.020788pt;}
.ls5_c00259{letter-spacing:0.067561pt;}
.lsd_c00259{letter-spacing:0.074688pt;}
.ls8_c00259{letter-spacing:0.077955pt;}
.ls28_c00259{letter-spacing:0.098743pt;}
.ls2_c00259{letter-spacing:0.103940pt;}
.ls25_c00259{letter-spacing:0.114334pt;}
.ls37_c00259{letter-spacing:0.119531pt;}
.ls19_c00259{letter-spacing:0.124728pt;}
.ls1_c00259{letter-spacing:0.150713pt;}
.ls7_c00259{letter-spacing:0.155910pt;}
.ls21_c00259{letter-spacing:0.192289pt;}
.ls2b_c00259{letter-spacing:0.207881pt;}
.ls17_c00259{letter-spacing:0.218275pt;}
.ls0_c00259{letter-spacing:0.244260pt;}
.ls33_c00259{letter-spacing:0.317018pt;}
.ls2e_c00259{letter-spacing:0.343003pt;}
.ls32_c00259{letter-spacing:0.426155pt;}
.ws4_c00259{word-spacing:-51.970133pt;}
.ws0_c00259{word-spacing:-14.447697pt;}
.ws2_c00259{word-spacing:-14.385333pt;}
.ws5_c00259{word-spacing:-14.338560pt;}
.ws6_c00259{word-spacing:-14.333363pt;}
.ws1_c00259{word-spacing:-11.526781pt;}
.ws3_c00259{word-spacing:-9.242347pt;}
.ws4c_c00259{word-spacing:-0.623642pt;}
.ws12_c00259{word-spacing:-0.602854pt;}
.wsa_c00259{word-spacing:-0.561277pt;}
.ws33_c00259{word-spacing:-0.514504pt;}
.ws37_c00259{word-spacing:-0.509307pt;}
.ws14_c00259{word-spacing:-0.462534pt;}
.ws48_c00259{word-spacing:-0.332609pt;}
.ws2a_c00259{word-spacing:-0.291033pt;}
.ws28_c00259{word-spacing:-0.285836pt;}
.ws35_c00259{word-spacing:-0.270245pt;}
.wsd_c00259{word-spacing:-0.259851pt;}
.ws3e_c00259{word-spacing:-0.244260pt;}
.ws29_c00259{word-spacing:-0.239063pt;}
.ws36_c00259{word-spacing:-0.192289pt;}
.ws13_c00259{word-spacing:-0.187092pt;}
.ws50_c00259{word-spacing:-0.109137pt;}
.ws2f_c00259{word-spacing:-0.103940pt;}
.ws27_c00259{word-spacing:-0.020788pt;}
.ws1c_c00259{word-spacing:-0.005197pt;}
.ws7_c00259{word-spacing:0.000000pt;}
.ws9_c00259{word-spacing:0.025985pt;}
.ws22_c00259{word-spacing:0.031182pt;}
.ws11_c00259{word-spacing:0.036379pt;}
.wsf_c00259{word-spacing:0.041576pt;}
.ws2b_c00259{word-spacing:0.046773pt;}
.ws10_c00259{word-spacing:0.051970pt;}
.ws16_c00259{word-spacing:0.057167pt;}
.ws38_c00259{word-spacing:0.062364pt;}
.ws34_c00259{word-spacing:0.067561pt;}
.ws4f_c00259{word-spacing:0.083152pt;}
.ws32_c00259{word-spacing:0.088349pt;}
.ws8_c00259{word-spacing:0.219396pt;}
.ws53_c00259{word-spacing:0.571671pt;}
.ws54_c00259{word-spacing:0.696400pt;}
.ws4b_c00259{word-spacing:0.867901pt;}
.ws51_c00259{word-spacing:1.049797pt;}
.ws2d_c00259{word-spacing:1.309647pt;}
.ws4a_c00259{word-spacing:1.314844pt;}
.ws52_c00259{word-spacing:1.346026pt;}
.ws49_c00259{word-spacing:1.657847pt;}
.ws19_c00259{word-spacing:1.694226pt;}
.ws15_c00259{word-spacing:2.593310pt;}
.ws3a_c00259{word-spacing:2.931116pt;}
.ws3b_c00259{word-spacing:3.263724pt;}
.ws3f_c00259{word-spacing:3.367665pt;}
.ws25_c00259{word-spacing:4.588963pt;}
.ws31_c00259{word-spacing:4.968345pt;}
.ws23_c00259{word-spacing:5.841443pt;}
.ws21_c00259{word-spacing:7.109514pt;}
.ws26_c00259{word-spacing:7.977415pt;}
.ws39_c00259{word-spacing:8.382783pt;}
.ws2c_c00259{word-spacing:9.032409pt;}
.ws30_c00259{word-spacing:10.212131pt;}
.ws41_c00259{word-spacing:10.274495pt;}
.ws40_c00259{word-spacing:10.420012pt;}
.ws42_c00259{word-spacing:11.256731pt;}
.ws4e_c00259{word-spacing:12.950957pt;}
.ws4d_c00259{word-spacing:13.184823pt;}
.ws45_c00259{word-spacing:13.564205pt;}
.ws47_c00259{word-spacing:13.605781pt;}
.ws46_c00259{word-spacing:13.813661pt;}
.ws44_c00259{word-spacing:13.974769pt;}
.ws1d_c00259{word-spacing:14.447697pt;}
.ws1e_c00259{word-spacing:14.806291pt;}
.ws1b_c00259{word-spacing:15.637813pt;}
.ws24_c00259{word-spacing:22.487477pt;}
.ws17_c00259{word-spacing:34.315879pt;}
.ws1f_c00259{word-spacing:39.965033pt;}
.ws2e_c00259{word-spacing:44.122643pt;}
.ws3d_c00259{word-spacing:45.499852pt;}
.ws3c_c00259{word-spacing:48.124343pt;}
.ws1a_c00259{word-spacing:49.304065pt;}
.wsb_c00259{word-spacing:54.106106pt;}
.wsc_c00259{word-spacing:60.846632pt;}
.ws18_c00259{word-spacing:62.556449pt;}
.ws43_c00259{word-spacing:88.499940pt;}
.ws20_c00259{word-spacing:107.058475pt;}
.wse_c00259{word-spacing:263.415818pt;}
._5_c00259{margin-left:-263.940716pt;}
._3_c00259{margin-left:-262.968875pt;}
._4_c00259{margin-left:-157.448716pt;}
._2_c00259{margin-left:-1.585089pt;}
._1_c00259{width:1.184919pt;}
._8_c00259{width:2.090465pt;}
._7_c00259{width:5.271728pt;}
._6_c00259{width:148.732548pt;}
._0_c00259{width:192.108375pt;}
.fs4_c00259{font-size:33.608533pt;}
.fs3_c00259{font-size:41.388800pt;}
.fs2_c00259{font-size:46.680000pt;}
.fs1_c00259{font-size:51.970133pt;}
.fs0_c00259{font-size:62.240000pt;}
.y0_c00259{bottom:0.000000pt;}
.y2_c00259{bottom:97.547527pt;}
.y1_c00259{bottom:115.387067pt;}
.y3f_c00259{bottom:132.826570pt;}
.y3e_c00259{bottom:151.947067pt;}
.y3d_c00259{bottom:164.666570pt;}
.y3c_c00259{bottom:183.787067pt;}
.y3b_c00259{bottom:196.506570pt;}
.y3a_c00259{bottom:215.627067pt;}
.y39_c00259{bottom:228.186762pt;}
.y38_c00259{bottom:247.467067pt;}
.y37_c00259{bottom:260.507067pt;}
.y36_c00259{bottom:289.707843pt;}
.y35_c00259{bottom:306.987913pt;}
.y34_c00259{bottom:321.868261pt;}
.y33_c00259{bottom:336.827864pt;}
.y32_c00259{bottom:351.787467pt;}
.y31_c00259{bottom:366.587261pt;}
.y30_c00259{bottom:381.546864pt;}
.y2f_c00259{bottom:396.506467pt;}
.y2e_c00259{bottom:411.386816pt;}
.y2d_c00259{bottom:426.267164pt;}
.y2c_c00259{bottom:441.226767pt;}
.y2b_c00259{bottom:456.107115pt;}
.y2a_c00259{bottom:470.987464pt;}
.y29_c00259{bottom:485.947067pt;}
.y28_c00259{bottom:501.546994pt;}
.y27_c00259{bottom:516.346789pt;}
.y26_c00259{bottom:531.306392pt;}
.y25_c00259{bottom:546.186740pt;}
.y23_c00259{bottom:549.226419pt;}
.y24_c00259{bottom:561.626492pt;}
.y22_c00259{bottom:564.106767pt;}
.y21_c00259{bottom:578.987115pt;}
.y20_c00259{bottom:593.946718pt;}
.y1f_c00259{bottom:608.827067pt;}
.y1e_c00259{bottom:624.348185pt;}
.y1d_c00259{bottom:639.307788pt;}
.y1c_c00259{bottom:654.267391pt;}
.y1b_c00259{bottom:669.067186pt;}
.y1a_c00259{bottom:684.026789pt;}
.y19_c00259{bottom:698.986392pt;}
.y18_c00259{bottom:713.866740pt;}
.y17_c00259{bottom:729.306214pt;}
.y16_c00259{bottom:746.666837pt;}
.y15_c00259{bottom:761.626440pt;}
.y14_c00259{bottom:776.506789pt;}
.y13_c00259{bottom:791.387137pt;}
.y12_c00259{bottom:806.346740pt;}
.y11_c00259{bottom:821.786795pt;}
.y10_c00259{bottom:839.066864pt;}
.yf_c00259{bottom:854.026467pt;}
.ye_c00259{bottom:868.906816pt;}
.yc_c00259{bottom:883.866419pt;}
.yb_c00259{bottom:898.746767pt;}
.yd_c00259{bottom:913.546562pt;}
.ya_c00259{bottom:913.627115pt;}
.y9_c00259{bottom:928.586718pt;}
.y8_c00259{bottom:943.467067pt;}
.y7_c00259{bottom:958.986370pt;}
.y5_c00259{bottom:963.307556pt;}
.y6_c00259{bottom:973.866718pt;}
.y4_c00259{bottom:976.827251pt;}
.y3_c00259{bottom:988.747067pt;}
.hb_c00259{height:34.967599pt;}
.h3_c00259{height:42.144199pt;}
.h6_c00259{height:46.463532pt;}
.h5_c00259{height:46.590412pt;}
.h4_c00259{height:46.920301pt;}
.h2_c00259{height:47.904199pt;}
.hc_c00259{height:48.087599pt;}
.h1_c00259{height:55.797187pt;}
.ha_c00259{height:65.480259pt;}
.h7_c00259{height:65.804452pt;}
.h9_c00259{height:65.805663pt;}
.h8_c00259{height:65.806775pt;}
.h0_c00259{height:1122.666667pt;}
.w0_c00259{width:793.333333pt;}
.x0_c00259{left:0.000000pt;}
.x2_c00259{left:73.520052pt;}
.x3_c00259{left:165.599684pt;}
.x4_c00259{left:168.880121pt;}
.xc_c00259{left:218.480293pt;}
.x6_c00259{left:237.840606pt;}
.x5_c00259{left:248.640000pt;}
.x7_c00259{left:251.200828pt;}
.xd_c00259{left:347.041410pt;}
.x9_c00259{left:354.161458pt;}
.x8_c00259{left:368.160913pt;}
.xa_c00259{left:370.721741pt;}
.x1_c00259{left:383.760000pt;}
.xb_c00259{left:457.281896pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5c69a2c3facff08966b83c7b.woff2')format("woff");}.ff1_c00260{font-family:ff1_c00260;line-height:1.106934;font-style:normal;font-weight:normal;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_018710cad22717eac449acb9.woff2')format("woff");}.ff2_c00260{font-family:ff2_c00260;line-height:0.892090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00260;src:url('chunks/assets/font_0f626862a745e926831e9c7f.woff2')format("woff");}.ff3_c00260{font-family:ff3_c00260;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00260{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00260{vertical-align:-5.760000px;}
.v0_c00260{vertical-align:0.000000px;}
.v1_c00260{vertical-align:5.760600px;}
.ls17_c00260{letter-spacing:-0.432651px;}
.ls1d_c00260{letter-spacing:-0.268945px;}
.ls1c_c00260{letter-spacing:-0.210479px;}
.ls19_c00260{letter-spacing:-0.146166px;}
.ls25_c00260{letter-spacing:-0.140319px;}
.ls26_c00260{letter-spacing:-0.134473px;}
.ls1f_c00260{letter-spacing:-0.128626px;}
.ls20_c00260{letter-spacing:-0.122779px;}
.ls16_c00260{letter-spacing:-0.116933px;}
.ls23_c00260{letter-spacing:-0.111086px;}
.ls11_c00260{letter-spacing:-0.105240px;}
.ls2c_c00260{letter-spacing:-0.099393px;}
.ls13_c00260{letter-spacing:-0.093546px;}
.ls1e_c00260{letter-spacing:-0.087700px;}
.ls14_c00260{letter-spacing:-0.081853px;}
.ls28_c00260{letter-spacing:-0.076006px;}
.ls2b_c00260{letter-spacing:-0.073521px;}
.ls12_c00260{letter-spacing:-0.070160px;}
.ls18_c00260{letter-spacing:-0.064313px;}
.lse_c00260{letter-spacing:-0.063018px;}
.lsf_c00260{letter-spacing:0.000000px;}
.lsc_c00260{letter-spacing:0.010503px;}
.ls5_c00260{letter-spacing:0.023387px;}
.ls1_c00260{letter-spacing:0.040926px;}
.ls2_c00260{letter-spacing:0.105240px;}
.ls21_c00260{letter-spacing:0.111086px;}
.ls0_c00260{letter-spacing:0.116933px;}
.ls15_c00260{letter-spacing:0.128626px;}
.ls29_c00260{letter-spacing:0.140319px;}
.ls10_c00260{letter-spacing:0.152013px;}
.ls9_c00260{letter-spacing:0.157859px;}
.lsa_c00260{letter-spacing:0.163706px;}
.ls2a_c00260{letter-spacing:0.169553px;}
.ls24_c00260{letter-spacing:0.175399px;}
.ls27_c00260{letter-spacing:0.181246px;}
.lsb_c00260{letter-spacing:0.187092px;}
.ls2d_c00260{letter-spacing:0.192939px;}
.ls4_c00260{letter-spacing:0.198786px;}
.ls6_c00260{letter-spacing:0.204632px;}
.ls8_c00260{letter-spacing:0.210479px;}
.ls22_c00260{letter-spacing:0.222172px;}
.ls1a_c00260{letter-spacing:0.233866px;}
.ls3_c00260{letter-spacing:0.245559px;}
.lsd_c00260{letter-spacing:0.257252px;}
.ls1b_c00260{letter-spacing:0.268945px;}
.ls7_c00260{letter-spacing:0.274792px;}
.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;}
}
.ws1_c00260{word-spacing:-16.358899px;}
.ws0_c00260{word-spacing:-16.189346px;}
.ws19_c00260{word-spacing:-0.678210px;}
.ws3b_c00260{word-spacing:-0.660670px;}
.ws15_c00260{word-spacing:-0.637284px;}
.ws1a_c00260{word-spacing:-0.613897px;}
.ws12_c00260{word-spacing:-0.602204px;}
.ws3f_c00260{word-spacing:-0.596357px;}
.ws2a_c00260{word-spacing:-0.567124px;}
.ws9_c00260{word-spacing:-0.520351px;}
.ws3e_c00260{word-spacing:-0.321565px;}
.ws3c_c00260{word-spacing:-0.315719px;}
.ws16_c00260{word-spacing:-0.309872px;}
.ws40_c00260{word-spacing:-0.304025px;}
.wsd_c00260{word-spacing:-0.298179px;}
.ws11_c00260{word-spacing:-0.292332px;}
.ws38_c00260{word-spacing:-0.257252px;}
.ws17_c00260{word-spacing:-0.245559px;}
.ws37_c00260{word-spacing:-0.228019px;}
.ws29_c00260{word-spacing:-0.216326px;}
.ws36_c00260{word-spacing:-0.210479px;}
.ws35_c00260{word-spacing:-0.181246px;}
.ws8_c00260{word-spacing:-0.169553px;}
.wsc_c00260{word-spacing:-0.087700px;}
.ws2_c00260{word-spacing:0.000000px;}
.ws5_c00260{word-spacing:0.029233px;}
.ws39_c00260{word-spacing:0.035080px;}
.ws7_c00260{word-spacing:0.040926px;}
.ws6_c00260{word-spacing:0.046773px;}
.wse_c00260{word-spacing:0.052620px;}
.ws3d_c00260{word-spacing:0.058466px;}
.ws4_c00260{word-spacing:0.064313px;}
.ws34_c00260{word-spacing:0.070160px;}
.wsf_c00260{word-spacing:0.076006px;}
.ws2c_c00260{word-spacing:0.093546px;}
.ws3a_c00260{word-spacing:0.157545px;}
.ws10_c00260{word-spacing:0.391725px;}
.ws24_c00260{word-spacing:0.409265px;}
.ws1e_c00260{word-spacing:1.525973px;}
.ws2b_c00260{word-spacing:1.894311px;}
.ws20_c00260{word-spacing:4.379133px;}
.ws2f_c00260{word-spacing:10.038681px;}
.ws13_c00260{word-spacing:10.120534px;}
.ws2e_c00260{word-spacing:10.933217px;}
.ws2d_c00260{word-spacing:11.564654px;}
.wsb_c00260{word-spacing:12.675516px;}
.ws26_c00260{word-spacing:13.716217px;}
.ws1d_c00260{word-spacing:13.762991px;}
.ws32_c00260{word-spacing:16.627844px;}
.ws1f_c00260{word-spacing:18.077811px;}
.ws25_c00260{word-spacing:20.317074px;}
.wsa_c00260{word-spacing:22.380938px;}
.ws1c_c00260{word-spacing:24.526655px;}
.ws31_c00260{word-spacing:24.912533px;}
.ws1b_c00260{word-spacing:26.689912px;}
.ws14_c00260{word-spacing:40.780314px;}
.ws21_c00260{word-spacing:42.177661px;}
.ws22_c00260{word-spacing:42.920184px;}
.ws27_c00260{word-spacing:51.573211px;}
.ws28_c00260{word-spacing:65.207576px;}
.ws30_c00260{word-spacing:74.813605px;}
.ws33_c00260{word-spacing:77.783699px;}
.ws23_c00260{word-spacing:83.601105px;}
.ws18_c00260{word-spacing:153.766632px;}
.ws3_c00260{word-spacing:234.526270px;}
._2_c00260{margin-left:-235.169401px;}
._1_c00260{margin-left:-67.324060px;}
._6_c00260{margin-left:-65.803933px;}
._8_c00260{margin-left:-11.827753px;}
._0_c00260{margin-left:-1.122555px;}
._3_c00260{width:1.128402px;}
._1a_c00260{width:59.852169px;}
._24_c00260{width:64.063872px;}
._16_c00260{width:66.575690px;}
._14_c00260{width:69.949201px;}
._1d_c00260{width:84.501488px;}
._2b_c00260{width:86.816757px;}
._15_c00260{width:90.675540px;}
._34_c00260{width:92.156260px;}
._13_c00260{width:104.754249px;}
._f_c00260{width:112.530280px;}
._29_c00260{width:119.119443px;}
._30_c00260{width:124.048161px;}
._2e_c00260{width:127.965410px;}
._31_c00260{width:132.549175px;}
._1c_c00260{width:134.729972px;}
._12_c00260{width:135.940227px;}
._9_c00260{width:138.372429px;}
._33_c00260{width:139.430671px;}
._2a_c00260{width:142.827569px;}
._c_c00260{width:145.142838px;}
._b_c00260{width:146.996223px;}
._28_c00260{width:149.147786px;}
._11_c00260{width:157.467555px;}
._2d_c00260{width:158.810762px;}
._27_c00260{width:160.525348px;}
._20_c00260{width:163.881319px;}
._5_c00260{width:168.096747px;}
._e_c00260{width:169.248535px;}
._1e_c00260{width:171.383076px;}
._23_c00260{width:173.547336px;}
._a_c00260{width:175.177028px;}
._32_c00260{width:182.578874px;}
._19_c00260{width:199.483031px;}
._22_c00260{width:205.263837px;}
._21_c00260{width:207.356934px;}
._1f_c00260{width:209.216166px;}
._4_c00260{width:213.180188px;}
._2c_c00260{width:215.039419px;}
._17_c00260{width:217.056510px;}
._2f_c00260{width:226.797012px;}
._26_c00260{width:230.402868px;}
._7_c00260{width:235.081701px;}
._18_c00260{width:237.578216px;}
._25_c00260{width:244.219999px;}
._d_c00260{width:256.316698px;}
._1b_c00260{width:282.223159px;}
._10_c00260{width:353.932199px;}
.fc0_c00260{color:rgb(0,0,0);}
.fs2_c00260{font-size:52.515000px;}
.fs1_c00260{font-size:58.466400px;}
.fs0_c00260{font-size:70.020000px;}
.y0_c00260{bottom:0.000000px;}
.y2_c00260{bottom:109.740968px;}
.y1_c00260{bottom:129.810450px;}
.y43_c00260{bottom:154.830450px;}
.y42_c00260{bottom:172.380450px;}
.y41_c00260{bottom:189.840450px;}
.y40_c00260{bottom:207.390450px;}
.y3f_c00260{bottom:224.850450px;}
.y3e_c00260{bottom:242.400450px;}
.y3d_c00260{bottom:259.860450px;}
.y3c_c00260{bottom:277.410450px;}
.y3b_c00260{bottom:294.870450px;}
.y3a_c00260{bottom:312.420450px;}
.y39_c00260{bottom:329.880450px;}
.y38_c00260{bottom:347.430450px;}
.y37_c00260{bottom:366.330450px;}
.y36_c00260{bottom:382.440450px;}
.y35_c00260{bottom:399.900450px;}
.y34_c00260{bottom:417.450600px;}
.y33_c00260{bottom:434.910600px;}
.y32_c00260{bottom:452.460600px;}
.y31_c00260{bottom:469.920450px;}
.y30_c00260{bottom:487.470450px;}
.y2f_c00260{bottom:504.930600px;}
.y44_c00260{bottom:504.931638px;}
.y2e_c00260{bottom:522.480450px;}
.y2d_c00260{bottom:539.945230px;}
.y2c_c00260{bottom:556.774784px;}
.y2b_c00260{bottom:573.515175px;}
.y25_c00260{bottom:590.343267px;}
.y2a_c00260{bottom:590.344729px;}
.y24_c00260{bottom:606.993036px;}
.y29_c00260{bottom:606.994498px;}
.y20_c00260{bottom:623.821128px;}
.y23_c00260{bottom:623.822589px;}
.y28_c00260{bottom:623.824051px;}
.y1f_c00260{bottom:640.650681px;}
.y22_c00260{bottom:640.652143px;}
.y27_c00260{bottom:640.653604px;}
.y1e_c00260{bottom:657.300450px;}
.y21_c00260{bottom:657.301912px;}
.y26_c00260{bottom:657.303373px;}
.y1d_c00260{bottom:674.851511px;}
.y1c_c00260{bottom:691.681064px;}
.y1b_c00260{bottom:708.421456px;}
.y1a_c00260{bottom:725.161848px;}
.y19_c00260{bottom:741.991402px;}
.y18_c00260{bottom:758.820955px;}
.y17_c00260{bottom:775.470724px;}
.y16_c00260{bottom:792.300277px;}
.y15_c00260{bottom:809.129830px;}
.y14_c00260{bottom:825.870222px;}
.y13_c00260{bottom:842.610614px;}
.y12_c00260{bottom:859.440168px;}
.y11_c00260{bottom:876.180560px;}
.y10_c00260{bottom:892.920952px;}
.yf_c00260{bottom:909.750505px;}
.ye_c00260{bottom:926.490897px;}
.yd_c00260{bottom:943.320450px;}
.yc_c00260{bottom:960.779721px;}
.yb_c00260{bottom:977.520113px;}
.ya_c00260{bottom:994.349666px;}
.y9_c00260{bottom:1011.090058px;}
.y8_c00260{bottom:1027.830450px;}
.y7_c00260{bottom:1045.379721px;}
.y6_c00260{bottom:1062.120113px;}
.y5_c00260{bottom:1078.949666px;}
.y4_c00260{bottom:1095.690058px;}
.y3_c00260{bottom:1112.430450px;}
.h5_c00260{height:47.078877px;}
.h3_c00260{height:52.271474px;}
.h2_c00260{height:52.414214px;}
.h6_c00260{height:52.838877px;}
.h4_c00260{height:52.839477px;}
.h1_c00260{height:62.771836px;}
.h0_c00260{height:1263.000000px;}
.w0_c00260{width:892.500000px;}
.x0_c00260{left:0.000000px;}
.x2_c00260{left:82.710059px;}
.x3_c00260{left:245.790330px;}
.x4_c00260{left:390.421587px;}
.x1_c00260{left:431.730000px;}
.x5_c00260{left:514.441976px;}
@media print{
.v2_c00260{vertical-align:-5.120000pt;}
.v0_c00260{vertical-align:0.000000pt;}
.v1_c00260{vertical-align:5.120533pt;}
.ls17_c00260{letter-spacing:-0.384579pt;}
.ls1d_c00260{letter-spacing:-0.239063pt;}
.ls1c_c00260{letter-spacing:-0.187092pt;}
.ls19_c00260{letter-spacing:-0.129925pt;}
.ls25_c00260{letter-spacing:-0.124728pt;}
.ls26_c00260{letter-spacing:-0.119531pt;}
.ls1f_c00260{letter-spacing:-0.114334pt;}
.ls20_c00260{letter-spacing:-0.109137pt;}
.ls16_c00260{letter-spacing:-0.103940pt;}
.ls23_c00260{letter-spacing:-0.098743pt;}
.ls11_c00260{letter-spacing:-0.093546pt;}
.ls2c_c00260{letter-spacing:-0.088349pt;}
.ls13_c00260{letter-spacing:-0.083152pt;}
.ls1e_c00260{letter-spacing:-0.077955pt;}
.ls14_c00260{letter-spacing:-0.072758pt;}
.ls28_c00260{letter-spacing:-0.067561pt;}
.ls2b_c00260{letter-spacing:-0.065352pt;}
.ls12_c00260{letter-spacing:-0.062364pt;}
.ls18_c00260{letter-spacing:-0.057167pt;}
.lse_c00260{letter-spacing:-0.056016pt;}
.lsf_c00260{letter-spacing:0.000000pt;}
.lsc_c00260{letter-spacing:0.009336pt;}
.ls5_c00260{letter-spacing:0.020788pt;}
.ls1_c00260{letter-spacing:0.036379pt;}
.ls2_c00260{letter-spacing:0.093546pt;}
.ls21_c00260{letter-spacing:0.098743pt;}
.ls0_c00260{letter-spacing:0.103940pt;}
.ls15_c00260{letter-spacing:0.114334pt;}
.ls29_c00260{letter-spacing:0.124728pt;}
.ls10_c00260{letter-spacing:0.135122pt;}
.ls9_c00260{letter-spacing:0.140319pt;}
.lsa_c00260{letter-spacing:0.145516pt;}
.ls2a_c00260{letter-spacing:0.150713pt;}
.ls24_c00260{letter-spacing:0.155910pt;}
.ls27_c00260{letter-spacing:0.161107pt;}
.lsb_c00260{letter-spacing:0.166304pt;}
.ls2d_c00260{letter-spacing:0.171501pt;}
.ls4_c00260{letter-spacing:0.176698pt;}
.ls6_c00260{letter-spacing:0.181895pt;}
.ls8_c00260{letter-spacing:0.187092pt;}
.ls22_c00260{letter-spacing:0.197487pt;}
.ls1a_c00260{letter-spacing:0.207881pt;}
.ls3_c00260{letter-spacing:0.218275pt;}
.lsd_c00260{letter-spacing:0.228669pt;}
.ls1b_c00260{letter-spacing:0.239063pt;}
.ls7_c00260{letter-spacing:0.244260pt;}
.ws1_c00260{word-spacing:-14.541243pt;}
.ws0_c00260{word-spacing:-14.390530pt;}
.ws19_c00260{word-spacing:-0.602854pt;}
.ws3b_c00260{word-spacing:-0.587263pt;}
.ws15_c00260{word-spacing:-0.566474pt;}
.ws1a_c00260{word-spacing:-0.545686pt;}
.ws12_c00260{word-spacing:-0.535292pt;}
.ws3f_c00260{word-spacing:-0.530095pt;}
.ws2a_c00260{word-spacing:-0.504110pt;}
.ws9_c00260{word-spacing:-0.462534pt;}
.ws3e_c00260{word-spacing:-0.285836pt;}
.ws3c_c00260{word-spacing:-0.280639pt;}
.ws16_c00260{word-spacing:-0.275442pt;}
.ws40_c00260{word-spacing:-0.270245pt;}
.wsd_c00260{word-spacing:-0.265048pt;}
.ws11_c00260{word-spacing:-0.259851pt;}
.ws38_c00260{word-spacing:-0.228669pt;}
.ws17_c00260{word-spacing:-0.218275pt;}
.ws37_c00260{word-spacing:-0.202684pt;}
.ws29_c00260{word-spacing:-0.192289pt;}
.ws36_c00260{word-spacing:-0.187092pt;}
.ws35_c00260{word-spacing:-0.161107pt;}
.ws8_c00260{word-spacing:-0.150713pt;}
.wsc_c00260{word-spacing:-0.077955pt;}
.ws2_c00260{word-spacing:0.000000pt;}
.ws5_c00260{word-spacing:0.025985pt;}
.ws39_c00260{word-spacing:0.031182pt;}
.ws7_c00260{word-spacing:0.036379pt;}
.ws6_c00260{word-spacing:0.041576pt;}
.wse_c00260{word-spacing:0.046773pt;}
.ws3d_c00260{word-spacing:0.051970pt;}
.ws4_c00260{word-spacing:0.057167pt;}
.ws34_c00260{word-spacing:0.062364pt;}
.wsf_c00260{word-spacing:0.067561pt;}
.ws2c_c00260{word-spacing:0.083152pt;}
.ws3a_c00260{word-spacing:0.140040pt;}
.ws10_c00260{word-spacing:0.348200pt;}
.ws24_c00260{word-spacing:0.363791pt;}
.ws1e_c00260{word-spacing:1.356420pt;}
.ws2b_c00260{word-spacing:1.683832pt;}
.ws20_c00260{word-spacing:3.892563pt;}
.ws2f_c00260{word-spacing:8.923272pt;}
.ws13_c00260{word-spacing:8.996030pt;}
.ws2e_c00260{word-spacing:9.718415pt;}
.ws2d_c00260{word-spacing:10.279692pt;}
.wsb_c00260{word-spacing:11.267125pt;}
.ws26_c00260{word-spacing:12.192193pt;}
.ws1d_c00260{word-spacing:12.233769pt;}
.ws32_c00260{word-spacing:14.780306pt;}
.ws1f_c00260{word-spacing:16.069165pt;}
.ws25_c00260{word-spacing:18.059621pt;}
.wsa_c00260{word-spacing:19.894167pt;}
.ws1c_c00260{word-spacing:21.801471pt;}
.ws31_c00260{word-spacing:22.144474pt;}
.ws1b_c00260{word-spacing:23.724366pt;}
.ws14_c00260{word-spacing:36.249168pt;}
.ws21_c00260{word-spacing:37.491254pt;}
.ws22_c00260{word-spacing:38.151275pt;}
.ws27_c00260{word-spacing:45.842855pt;}
.ws28_c00260{word-spacing:57.962290pt;}
.ws30_c00260{word-spacing:66.500983pt;}
.ws33_c00260{word-spacing:69.141065pt;}
.ws23_c00260{word-spacing:74.312094pt;}
.ws18_c00260{word-spacing:136.681451pt;}
.ws3_c00260{word-spacing:208.467796pt;}
._2_c00260{margin-left:-209.039467pt;}
._1_c00260{margin-left:-59.843609pt;}
._6_c00260{margin-left:-58.492385pt;}
._8_c00260{margin-left:-10.513558pt;}
._0_c00260{margin-left:-0.997827pt;}
._3_c00260{width:1.003024pt;}
._1a_c00260{width:53.201928pt;}
._24_c00260{width:56.945664pt;}
._16_c00260{width:59.178391pt;}
._14_c00260{width:62.177068pt;}
._1d_c00260{width:75.112434pt;}
._2b_c00260{width:77.170451pt;}
._15_c00260{width:80.600480pt;}
._34_c00260{width:81.916676pt;}
._13_c00260{width:93.114888pt;}
._f_c00260{width:100.026916pt;}
._29_c00260{width:105.883950pt;}
._30_c00260{width:110.265032pt;}
._2e_c00260{width:113.747031pt;}
._31_c00260{width:117.821489pt;}
._1c_c00260{width:119.759975pt;}
._12_c00260{width:120.835757pt;}
._9_c00260{width:122.997715pt;}
._33_c00260{width:123.938374pt;}
._2a_c00260{width:126.957839pt;}
._c_c00260{width:129.015856pt;}
._b_c00260{width:130.663309pt;}
._28_c00260{width:132.575810pt;}
._11_c00260{width:139.971160pt;}
._2d_c00260{width:141.165121pt;}
._27_c00260{width:142.689198pt;}
._20_c00260{width:145.672284pt;}
._5_c00260{width:149.419330pt;}
._e_c00260{width:150.443142pt;}
._1e_c00260{width:152.340512pt;}
._23_c00260{width:154.264298pt;}
._a_c00260{width:155.712913pt;}
._32_c00260{width:162.292332pt;}
._19_c00260{width:177.318250pt;}
._22_c00260{width:182.456744pt;}
._21_c00260{width:184.317275pt;}
._1f_c00260{width:185.969925pt;}
._4_c00260{width:189.493500pt;}
._2c_c00260{width:191.146150pt;}
._17_c00260{width:192.939120pt;}
._2f_c00260{width:201.597344pt;}
._26_c00260{width:204.802550pt;}
._7_c00260{width:208.961512pt;}
._18_c00260{width:211.180637pt;}
._25_c00260{width:217.084444pt;}
._d_c00260{width:227.837065pt;}
._1b_c00260{width:250.865031pt;}
._10_c00260{width:314.606399pt;}
.fs2_c00260{font-size:46.680000pt;}
.fs1_c00260{font-size:51.970133pt;}
.fs0_c00260{font-size:62.240000pt;}
.y0_c00260{bottom:0.000000pt;}
.y2_c00260{bottom:97.547527pt;}
.y1_c00260{bottom:115.387067pt;}
.y43_c00260{bottom:137.627067pt;}
.y42_c00260{bottom:153.227067pt;}
.y41_c00260{bottom:168.747067pt;}
.y40_c00260{bottom:184.347067pt;}
.y3f_c00260{bottom:199.867067pt;}
.y3e_c00260{bottom:215.467067pt;}
.y3d_c00260{bottom:230.987067pt;}
.y3c_c00260{bottom:246.587067pt;}
.y3b_c00260{bottom:262.107067pt;}
.y3a_c00260{bottom:277.707067pt;}
.y39_c00260{bottom:293.227067pt;}
.y38_c00260{bottom:308.827067pt;}
.y37_c00260{bottom:325.627067pt;}
.y36_c00260{bottom:339.947067pt;}
.y35_c00260{bottom:355.467067pt;}
.y34_c00260{bottom:371.067200pt;}
.y33_c00260{bottom:386.587200pt;}
.y32_c00260{bottom:402.187200pt;}
.y31_c00260{bottom:417.707067pt;}
.y30_c00260{bottom:433.307067pt;}
.y2f_c00260{bottom:448.827200pt;}
.y44_c00260{bottom:448.828123pt;}
.y2e_c00260{bottom:464.427067pt;}
.y2d_c00260{bottom:479.951316pt;}
.y2c_c00260{bottom:494.910919pt;}
.y2b_c00260{bottom:509.791267pt;}
.y25_c00260{bottom:524.749571pt;}
.y2a_c00260{bottom:524.750870pt;}
.y24_c00260{bottom:539.549365pt;}
.y29_c00260{bottom:539.550665pt;}
.y20_c00260{bottom:554.507669pt;}
.y23_c00260{bottom:554.508968pt;}
.y28_c00260{bottom:554.510268pt;}
.y1f_c00260{bottom:569.467272pt;}
.y22_c00260{bottom:569.468571pt;}
.y27_c00260{bottom:569.469870pt;}
.y1e_c00260{bottom:584.267067pt;}
.y21_c00260{bottom:584.268366pt;}
.y26_c00260{bottom:584.269665pt;}
.y1d_c00260{bottom:599.868010pt;}
.y1c_c00260{bottom:614.827613pt;}
.y1b_c00260{bottom:629.707961pt;}
.y1a_c00260{bottom:644.588310pt;}
.y19_c00260{bottom:659.547913pt;}
.y18_c00260{bottom:674.507515pt;}
.y17_c00260{bottom:689.307310pt;}
.y16_c00260{bottom:704.266913pt;}
.y15_c00260{bottom:719.226516pt;}
.y14_c00260{bottom:734.106864pt;}
.y13_c00260{bottom:748.987213pt;}
.y12_c00260{bottom:763.946816pt;}
.y11_c00260{bottom:778.827164pt;}
.y10_c00260{bottom:793.707512pt;}
.yf_c00260{bottom:808.667115pt;}
.ye_c00260{bottom:823.547464pt;}
.yd_c00260{bottom:838.507067pt;}
.yc_c00260{bottom:854.026419pt;}
.yb_c00260{bottom:868.906767pt;}
.ya_c00260{bottom:883.866370pt;}
.y9_c00260{bottom:898.746718pt;}
.y8_c00260{bottom:913.627067pt;}
.y7_c00260{bottom:929.226419pt;}
.y6_c00260{bottom:944.106767pt;}
.y5_c00260{bottom:959.066370pt;}
.y4_c00260{bottom:973.946718pt;}
.y3_c00260{bottom:988.827067pt;}
.h5_c00260{height:41.847891pt;}
.h3_c00260{height:46.463532pt;}
.h2_c00260{height:46.590412pt;}
.h6_c00260{height:46.967891pt;}
.h4_c00260{height:46.968424pt;}
.h1_c00260{height:55.797187pt;}
.h0_c00260{height:1122.666667pt;}
.w0_c00260{width:793.333333pt;}
.x0_c00260{left:0.000000pt;}
.x2_c00260{left:73.520052pt;}
.x3_c00260{left:218.480293pt;}
.x4_c00260{left:347.041410pt;}
.x1_c00260{left:383.760000pt;}
.x5_c00260{left:457.281756pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_26b2b10a7569de05a8ecdf60.woff2')format("woff");}.ff1_c00261{font-family:ff1_c00261;line-height:1.106934;font-style:normal;font-weight:normal;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_1dc323be9b8ec5b1d0528831.woff2')format("woff");}.ff2_c00261{font-family:ff2_c00261;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00261{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00261{vertical-align:0.000000px;}
.ls15_c00261{letter-spacing:-0.175050px;}
.lsc_c00261{letter-spacing:-0.134473px;}
.lsb_c00261{letter-spacing:-0.111086px;}
.ls8_c00261{letter-spacing:-0.105240px;}
.ls11_c00261{letter-spacing:-0.098763px;}
.ls13_c00261{letter-spacing:-0.083569px;}
.lsa_c00261{letter-spacing:-0.070160px;}
.ls6_c00261{letter-spacing:-0.063018px;}
.ls14_c00261{letter-spacing:-0.049014px;}
.ls10_c00261{letter-spacing:-0.037986px;}
.ls12_c00261{letter-spacing:-0.035010px;}
.lsd_c00261{letter-spacing:-0.021006px;}
.lse_c00261{letter-spacing:-0.014004px;}
.lsf_c00261{letter-spacing:-0.007002px;}
.ls7_c00261{letter-spacing:0.000000px;}
.ls3_c00261{letter-spacing:0.007002px;}
.ls1_c00261{letter-spacing:0.007597px;}
.ls4_c00261{letter-spacing:0.021006px;}
.ls0_c00261{letter-spacing:0.028008px;}
.ls2_c00261{letter-spacing:0.113957px;}
.ls9_c00261{letter-spacing:0.192939px;}
.ls5_c00261{letter-spacing:0.224064px;}
.sc__c00261{text-shadow:none;}
.sc0_c00261{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00261{-webkit-text-stroke:0px transparent;}
.sc0_c00261{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00261{word-spacing:-19.493568px;}
.ws3_c00261{word-spacing:-0.596357px;}
.ws1e_c00261{word-spacing:-0.595170px;}
.ws5_c00261{word-spacing:-0.292332px;}
.wsf_c00261{word-spacing:-0.144346px;}
.ws11_c00261{word-spacing:-0.129151px;}
.ws19_c00261{word-spacing:-0.045583px;}
.wsc_c00261{word-spacing:-0.014004px;}
.ws1_c00261{word-spacing:0.000000px;}
.ws10_c00261{word-spacing:0.015194px;}
.ws4_c00261{word-spacing:0.029233px;}
.ws2_c00261{word-spacing:0.064313px;}
.ws6_c00261{word-spacing:0.093546px;}
.wse_c00261{word-spacing:0.167137px;}
.ws17_c00261{word-spacing:0.227914px;}
.wsd_c00261{word-spacing:0.357102px;}
.ws7_c00261{word-spacing:0.364104px;}
.ws18_c00261{word-spacing:0.425440px;}
.ws1c_c00261{word-spacing:2.156616px;}
.wsb_c00261{word-spacing:2.513718px;}
.ws15_c00261{word-spacing:5.377536px;}
.ws14_c00261{word-spacing:5.419548px;}
.ws9_c00261{word-spacing:5.748642px;}
.ws8_c00261{word-spacing:5.762646px;}
.ws13_c00261{word-spacing:12.617604px;}
.ws12_c00261{word-spacing:12.946698px;}
.ws16_c00261{word-spacing:13.275792px;}
.ws1d_c00261{word-spacing:16.167618px;}
.ws1a_c00261{word-spacing:23.778792px;}
.ws1b_c00261{word-spacing:24.156900px;}
.wsa_c00261{word-spacing:26.985708px;}
._3_c00261{margin-left:-1.233641px;}
._f_c00261{width:1.233641px;}
._e_c00261{width:55.548927px;}
._1_c00261{width:61.641126px;}
._4_c00261{width:65.266042px;}
._11_c00261{width:74.451114px;}
._0_c00261{width:82.993055px;}
._12_c00261{width:89.190493px;}
._5_c00261{width:105.642938px;}
._8_c00261{width:123.182858px;}
._13_c00261{width:145.785968px;}
._9_c00261{width:166.371988px;}
._2_c00261{width:172.937765px;}
._b_c00261{width:194.354007px;}
._a_c00261{width:199.434737px;}
._10_c00261{width:201.960486px;}
._7_c00261{width:205.971281px;}
._d_c00261{width:213.203574px;}
._6_c00261{width:237.087099px;}
._c_c00261{width:240.788022px;}
._14_c00261{width:438.480460px;}
._15_c00261{width:550.688872px;}
.fc0_c00261{color:rgb(0,0,0);}
.fs1_c00261{font-size:58.466400px;}
.fs0_c00261{font-size:70.020000px;}
.fs2_c00261{font-size:75.971400px;}
.y0_c00261{bottom:0.000000px;}
.y2_c00261{bottom:109.740968px;}
.y1_c00261{bottom:129.810450px;}
.y26_c00261{bottom:170.220481px;}
.y25_c00261{bottom:193.349838px;}
.y24_c00261{bottom:217.289676px;}
.y23_c00261{bottom:247.529563px;}
.y22_c00261{bottom:277.769451px;}
.y21_c00261{bottom:307.920063px;}
.y20_c00261{bottom:338.159950px;}
.y1f_c00261{bottom:368.310562px;}
.y1e_c00261{bottom:398.550450px;}
.y1d_c00261{bottom:423.299450px;}
.y1c_c00261{bottom:445.080450px;}
.y1b_c00261{bottom:494.218839px;}
.y1a_c00261{bottom:524.369451px;}
.y19_c00261{bottom:554.609338px;}
.y18_c00261{bottom:584.759951px;}
.y17_c00261{bottom:614.999838px;}
.y16_c00261{bottom:645.150450px;}
.y15_c00261{bottom:669.900183px;}
.y14_c00261{bottom:691.770450px;}
.y13_c00261{bottom:730.740198px;}
.y12_c00261{bottom:769.709829px;}
.y11_c00261{bottom:799.949717px;}
.y10_c00261{bottom:830.100328px;}
.yf_c00261{bottom:860.340216px;}
.ye_c00261{bottom:890.490828px;}
.yd_c00261{bottom:929.460459px;}
.yc_c00261{bottom:949.620968px;}
.yb_c00261{bottom:969.690450px;}
.ya_c00261{bottom:989.940450px;}
.y9_c00261{bottom:1007.400450px;}
.y8_c00261{bottom:1024.950450px;}
.y7_c00261{bottom:1042.410450px;}
.y6_c00261{bottom:1059.960450px;}
.y5_c00261{bottom:1077.420450px;}
.y4_c00261{bottom:1094.970450px;}
.y3_c00261{bottom:1112.430450px;}
.h2_c00261{height:52.414214px;}
.h1_c00261{height:62.771836px;}
.h3_c00261{height:63.216299px;}
.h4_c00261{height:68.589413px;}
.h0_c00261{height:1263.000000px;}
.w0_c00261{width:892.500000px;}
.x0_c00261{left:0.000000px;}
.x2_c00261{left:82.710059px;}
.x6_c00261{left:103.409662px;}
.x3_c00261{left:179.100000px;}
.x4_c00261{left:336.870000px;}
.x7_c00261{left:412.199613px;}
.x1_c00261{left:431.730000px;}
.x5_c00261{left:446.400536px;}
@media print{
.v0_c00261{vertical-align:0.000000pt;}
.ls15_c00261{letter-spacing:-0.155600pt;}
.lsc_c00261{letter-spacing:-0.119531pt;}
.lsb_c00261{letter-spacing:-0.098743pt;}
.ls8_c00261{letter-spacing:-0.093546pt;}
.ls11_c00261{letter-spacing:-0.087789pt;}
.ls13_c00261{letter-spacing:-0.074283pt;}
.lsa_c00261{letter-spacing:-0.062364pt;}
.ls6_c00261{letter-spacing:-0.056016pt;}
.ls14_c00261{letter-spacing:-0.043568pt;}
.ls10_c00261{letter-spacing:-0.033765pt;}
.ls12_c00261{letter-spacing:-0.031120pt;}
.lsd_c00261{letter-spacing:-0.018672pt;}
.lse_c00261{letter-spacing:-0.012448pt;}
.lsf_c00261{letter-spacing:-0.006224pt;}
.ls7_c00261{letter-spacing:0.000000pt;}
.ls3_c00261{letter-spacing:0.006224pt;}
.ls1_c00261{letter-spacing:0.006753pt;}
.ls4_c00261{letter-spacing:0.018672pt;}
.ls0_c00261{letter-spacing:0.024896pt;}
.ls2_c00261{letter-spacing:0.101295pt;}
.ls9_c00261{letter-spacing:0.171501pt;}
.ls5_c00261{letter-spacing:0.199168pt;}
.ws0_c00261{word-spacing:-17.327616pt;}
.ws3_c00261{word-spacing:-0.530095pt;}
.ws1e_c00261{word-spacing:-0.529040pt;}
.ws5_c00261{word-spacing:-0.259851pt;}
.wsf_c00261{word-spacing:-0.128307pt;}
.ws11_c00261{word-spacing:-0.114801pt;}
.ws19_c00261{word-spacing:-0.040518pt;}
.wsc_c00261{word-spacing:-0.012448pt;}
.ws1_c00261{word-spacing:0.000000pt;}
.ws10_c00261{word-spacing:0.013506pt;}
.ws4_c00261{word-spacing:0.025985pt;}
.ws2_c00261{word-spacing:0.057167pt;}
.ws6_c00261{word-spacing:0.083152pt;}
.wse_c00261{word-spacing:0.148566pt;}
.ws17_c00261{word-spacing:0.202590pt;}
.wsd_c00261{word-spacing:0.317424pt;}
.ws7_c00261{word-spacing:0.323648pt;}
.ws18_c00261{word-spacing:0.378169pt;}
.ws1c_c00261{word-spacing:1.916992pt;}
.wsb_c00261{word-spacing:2.234416pt;}
.ws15_c00261{word-spacing:4.780032pt;}
.ws14_c00261{word-spacing:4.817376pt;}
.ws9_c00261{word-spacing:5.109904pt;}
.ws8_c00261{word-spacing:5.122352pt;}
.ws13_c00261{word-spacing:11.215648pt;}
.ws12_c00261{word-spacing:11.508176pt;}
.ws16_c00261{word-spacing:11.800704pt;}
.ws1d_c00261{word-spacing:14.371216pt;}
.ws1a_c00261{word-spacing:21.136704pt;}
.ws1b_c00261{word-spacing:21.472800pt;}
.wsa_c00261{word-spacing:23.987296pt;}
._3_c00261{margin-left:-1.096570pt;}
._f_c00261{width:1.096570pt;}
._e_c00261{width:49.376824pt;}
._1_c00261{width:54.792112pt;}
._4_c00261{width:58.014260pt;}
._11_c00261{width:66.178768pt;}
._0_c00261{width:73.771604pt;}
._12_c00261{width:79.280438pt;}
._5_c00261{width:93.904834pt;}
._8_c00261{width:109.495874pt;}
._13_c00261{width:129.587527pt;}
._9_c00261{width:147.886211pt;}
._2_c00261{width:153.722457pt;}
._b_c00261{width:172.759117pt;}
._a_c00261{width:177.275322pt;}
._10_c00261{width:179.520432pt;}
._7_c00261{width:183.085583pt;}
._d_c00261{width:189.514288pt;}
._6_c00261{width:210.744088pt;}
._c_c00261{width:214.033797pt;}
._14_c00261{width:389.760409pt;}
._15_c00261{width:489.501220pt;}
.fs1_c00261{font-size:51.970133pt;}
.fs0_c00261{font-size:62.240000pt;}
.fs2_c00261{font-size:67.530133pt;}
.y0_c00261{bottom:0.000000pt;}
.y2_c00261{bottom:97.547527pt;}
.y1_c00261{bottom:115.387067pt;}
.y26_c00261{bottom:151.307095pt;}
.y25_c00261{bottom:171.866523pt;}
.y24_c00261{bottom:193.146379pt;}
.y23_c00261{bottom:220.026279pt;}
.y22_c00261{bottom:246.906179pt;}
.y21_c00261{bottom:273.706723pt;}
.y20_c00261{bottom:300.586623pt;}
.y1f_c00261{bottom:327.387167pt;}
.y1e_c00261{bottom:354.267067pt;}
.y1d_c00261{bottom:376.266177pt;}
.y1c_c00261{bottom:395.627067pt;}
.y1b_c00261{bottom:439.305635pt;}
.y1a_c00261{bottom:466.106179pt;}
.y19_c00261{bottom:492.986079pt;}
.y18_c00261{bottom:519.786623pt;}
.y17_c00261{bottom:546.666523pt;}
.y16_c00261{bottom:573.467067pt;}
.y15_c00261{bottom:595.466830pt;}
.y14_c00261{bottom:614.907067pt;}
.y13_c00261{bottom:649.546843pt;}
.y12_c00261{bottom:684.186515pt;}
.y11_c00261{bottom:711.066415pt;}
.y10_c00261{bottom:737.866959pt;}
.yf_c00261{bottom:764.746859pt;}
.ye_c00261{bottom:791.547403pt;}
.yd_c00261{bottom:826.187075pt;}
.yc_c00261{bottom:844.107527pt;}
.yb_c00261{bottom:861.947067pt;}
.ya_c00261{bottom:879.947067pt;}
.y9_c00261{bottom:895.467067pt;}
.y8_c00261{bottom:911.067067pt;}
.y7_c00261{bottom:926.587067pt;}
.y6_c00261{bottom:942.187067pt;}
.y5_c00261{bottom:957.707067pt;}
.y4_c00261{bottom:973.307067pt;}
.y3_c00261{bottom:988.827067pt;}
.h2_c00261{height:46.590412pt;}
.h1_c00261{height:55.797187pt;}
.h3_c00261{height:56.192266pt;}
.h4_c00261{height:60.968367pt;}
.h0_c00261{height:1122.666667pt;}
.w0_c00261{width:793.333333pt;}
.x0_c00261{left:0.000000pt;}
.x2_c00261{left:73.520052pt;}
.x6_c00261{left:91.919700pt;}
.x3_c00261{left:159.200000pt;}
.x4_c00261{left:299.440000pt;}
.x7_c00261{left:366.399656pt;}
.x1_c00261{left:383.760000pt;}
.x5_c00261{left:396.800476pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e7299fc0484ffb5cab1e3c57.woff2')format("woff");}.ff1_c00262{font-family:ff1_c00262;line-height:1.106934;font-style:normal;font-weight:normal;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_16f16b7b2b978b4ef50736a0.woff2')format("woff");}.ff2_c00262{font-family:ff2_c00262;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00262;src:url('chunks/assets/font_587da32f32e091c8eebe00b9.woff2')format("woff");}.ff3_c00262{font-family:ff3_c00262;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00262;src:url('chunks/assets/font_9a2d425c1f58c54b5898fc1e.woff2')format("woff");}.ff4_c00262{font-family:ff4_c00262;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00262;src:url('chunks/assets/font_42366ed3b05771d5fb4a7e79.woff2')format("woff");}.ff5_c00262{font-family:ff5_c00262;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00262{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00262{vertical-align:-69.837948px;}
.v0_c00262{vertical-align:0.000000px;}
.ls11_c00262{letter-spacing:-0.280080px;}
.lse_c00262{letter-spacing:-0.252072px;}
.ls1a_c00262{letter-spacing:-0.083569px;}
.ls18_c00262{letter-spacing:-0.075971px;}
.lsb_c00262{letter-spacing:-0.063018px;}
.ls14_c00262{letter-spacing:-0.056016px;}
.ls19_c00262{letter-spacing:-0.053180px;}
.ls15_c00262{letter-spacing:-0.049014px;}
.ls10_c00262{letter-spacing:-0.042012px;}
.ls12_c00262{letter-spacing:-0.035010px;}
.lsd_c00262{letter-spacing:-0.028008px;}
.ls13_c00262{letter-spacing:-0.021006px;}
.ls17_c00262{letter-spacing:-0.014004px;}
.ls16_c00262{letter-spacing:-0.007002px;}
.lsc_c00262{letter-spacing:0.000000px;}
.ls0_c00262{letter-spacing:0.007002px;}
.ls5_c00262{letter-spacing:0.014004px;}
.ls1_c00262{letter-spacing:0.021006px;}
.ls8_c00262{letter-spacing:0.028008px;}
.ls3_c00262{letter-spacing:0.042012px;}
.ls4_c00262{letter-spacing:0.063018px;}
.ls2_c00262{letter-spacing:0.098028px;}
.ls6_c00262{letter-spacing:0.147042px;}
.lsf_c00262{letter-spacing:0.196056px;}
.ls9_c00262{letter-spacing:0.273078px;}
.lsa_c00262{letter-spacing:0.630180px;}
.ls7_c00262{letter-spacing:1215.694242px;}
.sc__c00262{text-shadow:none;}
.sc0_c00262{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00262{-webkit-text-stroke:0px transparent;}
.sc0_c00262{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00262{word-spacing:-75.971400px;}
.ws0_c00262{word-spacing:-19.493568px;}
.wsa_c00262{word-spacing:-0.091026px;}
.ws6_c00262{word-spacing:-0.035010px;}
.ws4_c00262{word-spacing:-0.021006px;}
.ws2_c00262{word-spacing:0.000000px;}
.ws1b_c00262{word-spacing:0.182331px;}
.wsc_c00262{word-spacing:0.196056px;}
.ws1a_c00262{word-spacing:0.205123px;}
.ws9_c00262{word-spacing:0.336096px;}
.ws11_c00262{word-spacing:0.350100px;}
.ws19_c00262{word-spacing:0.357102px;}
.ws12_c00262{word-spacing:0.364104px;}
.ws3_c00262{word-spacing:0.371106px;}
.wsb_c00262{word-spacing:0.378108px;}
.ws8_c00262{word-spacing:0.385110px;}
.ws7_c00262{word-spacing:0.406116px;}
.ws5_c00262{word-spacing:0.595170px;}
.ws1f_c00262{word-spacing:0.735210px;}
.ws20_c00262{word-spacing:0.763218px;}
.ws1d_c00262{word-spacing:3.921120px;}
.ws1e_c00262{word-spacing:3.956130px;}
.ws14_c00262{word-spacing:4.670334px;}
.ws17_c00262{word-spacing:5.384538px;}
.ws18_c00262{word-spacing:5.405544px;}
.ws15_c00262{word-spacing:10.075878px;}
.ws16_c00262{word-spacing:10.089882px;}
.ws13_c00262{word-spacing:10.446984px;}
.ws1c_c00262{word-spacing:450.935842px;}
.wsf_c00262{word-spacing:923.794866px;}
.wse_c00262{word-spacing:943.960626px;}
.wsd_c00262{word-spacing:959.407038px;}
.ws10_c00262{word-spacing:1215.960318px;}
._e_c00262{margin-left:-1215.176094px;}
._b_c00262{margin-left:-959.813154px;}
._c_c00262{margin-left:-943.876602px;}
._9_c00262{margin-left:-1.134324px;}
._2_c00262{width:1.148328px;}
._f_c00262{width:4.544298px;}
._a_c00262{width:704.681280px;}
._1_c00262{width:838.195416px;}
._0_c00262{width:888.238710px;}
._3_c00262{width:896.473062px;}
._7_c00262{width:907.991352px;}
._6_c00262{width:931.378032px;}
._d_c00262{width:934.514928px;}
._4_c00262{width:946.978488px;}
._8_c00262{width:1005.480198px;}
._5_c00262{width:1048.136382px;}
.fc0_c00262{color:rgb(0,0,0);}
.fs0_c00262{font-size:70.020000px;}
.fs1_c00262{font-size:75.971400px;}
.y0_c00262{bottom:0.000000px;}
.y2_c00262{bottom:109.740968px;}
.y1_c00262{bottom:129.810450px;}
.y21_c00262{bottom:186.059843px;}
.y20_c00262{bottom:216.210455px;}
.y1f_c00262{bottom:253.830450px;}
.y1e_c00262{bottom:278.670450px;}
.y1d_c00262{bottom:320.609870px;}
.y1c_c00262{bottom:343.830252px;}
.y1b_c00262{bottom:366.959609px;}
.y1a_c00262{bottom:411.870436px;}
.y19_c00262{bottom:442.021049px;}
.y18_c00262{bottom:472.621539px;}
.y17_c00262{bottom:504.391363px;}
.y16_c00262{bottom:535.800585px;}
.y15_c00262{bottom:558.840666px;}
.y14_c00262{bottom:579.090450px;}
.y13_c00262{bottom:617.520450px;}
.y12_c00262{bottom:655.950450px;}
.y11_c00262{bottom:676.830450px;}
.y10_c00262{bottom:697.800450px;}
.yf_c00262{bottom:718.590450px;}
.ye_c00262{bottom:739.470450px;}
.yd_c00262{bottom:760.350450px;}
.yc_c00262{bottom:781.230450px;}
.yb_c00262{bottom:802.020450px;}
.ya_c00262{bottom:840.450450px;}
.y9_c00262{bottom:878.880450px;}
.y8_c00262{bottom:917.400450px;}
.y7_c00262{bottom:955.830450px;}
.y6_c00262{bottom:994.350450px;}
.y5_c00262{bottom:1032.690450px;}
.y4_c00262{bottom:1071.210450px;}
.y3_c00262{bottom:1109.640571px;}
.h1_c00262{height:62.771836px;}
.h2_c00262{height:63.216299px;}
.h3_c00262{height:68.589413px;}
.h0_c00262{height:1263.000000px;}
.w0_c00262{width:892.500000px;}
.x0_c00262{left:0.000000px;}
.x2_c00262{left:82.710059px;}
.x3_c00262{left:103.409721px;}
.x4_c00262{left:336.870000px;}
.x1_c00262{left:431.730000px;}
.x5_c00262{left:446.400536px;}
@media print{
.v1_c00262{vertical-align:-62.078176pt;}
.v0_c00262{vertical-align:0.000000pt;}
.ls11_c00262{letter-spacing:-0.248960pt;}
.lse_c00262{letter-spacing:-0.224064pt;}
.ls1a_c00262{letter-spacing:-0.074283pt;}
.ls18_c00262{letter-spacing:-0.067530pt;}
.lsb_c00262{letter-spacing:-0.056016pt;}
.ls14_c00262{letter-spacing:-0.049792pt;}
.ls19_c00262{letter-spacing:-0.047271pt;}
.ls15_c00262{letter-spacing:-0.043568pt;}
.ls10_c00262{letter-spacing:-0.037344pt;}
.ls12_c00262{letter-spacing:-0.031120pt;}
.lsd_c00262{letter-spacing:-0.024896pt;}
.ls13_c00262{letter-spacing:-0.018672pt;}
.ls17_c00262{letter-spacing:-0.012448pt;}
.ls16_c00262{letter-spacing:-0.006224pt;}
.lsc_c00262{letter-spacing:0.000000pt;}
.ls0_c00262{letter-spacing:0.006224pt;}
.ls5_c00262{letter-spacing:0.012448pt;}
.ls1_c00262{letter-spacing:0.018672pt;}
.ls8_c00262{letter-spacing:0.024896pt;}
.ls3_c00262{letter-spacing:0.037344pt;}
.ls4_c00262{letter-spacing:0.056016pt;}
.ls2_c00262{letter-spacing:0.087136pt;}
.ls6_c00262{letter-spacing:0.130704pt;}
.lsf_c00262{letter-spacing:0.174272pt;}
.ls9_c00262{letter-spacing:0.242736pt;}
.lsa_c00262{letter-spacing:0.560160pt;}
.ls7_c00262{letter-spacing:1080.617104pt;}
.ws1_c00262{word-spacing:-67.530133pt;}
.ws0_c00262{word-spacing:-17.327616pt;}
.wsa_c00262{word-spacing:-0.080912pt;}
.ws6_c00262{word-spacing:-0.031120pt;}
.ws4_c00262{word-spacing:-0.018672pt;}
.ws2_c00262{word-spacing:0.000000pt;}
.ws1b_c00262{word-spacing:0.162072pt;}
.wsc_c00262{word-spacing:0.174272pt;}
.ws1a_c00262{word-spacing:0.182331pt;}
.ws9_c00262{word-spacing:0.298752pt;}
.ws11_c00262{word-spacing:0.311200pt;}
.ws19_c00262{word-spacing:0.317424pt;}
.ws12_c00262{word-spacing:0.323648pt;}
.ws3_c00262{word-spacing:0.329872pt;}
.wsb_c00262{word-spacing:0.336096pt;}
.ws8_c00262{word-spacing:0.342320pt;}
.ws7_c00262{word-spacing:0.360992pt;}
.ws5_c00262{word-spacing:0.529040pt;}
.ws1f_c00262{word-spacing:0.653520pt;}
.ws20_c00262{word-spacing:0.678416pt;}
.ws1d_c00262{word-spacing:3.485440pt;}
.ws1e_c00262{word-spacing:3.516560pt;}
.ws14_c00262{word-spacing:4.151408pt;}
.ws17_c00262{word-spacing:4.786256pt;}
.ws18_c00262{word-spacing:4.804928pt;}
.ws15_c00262{word-spacing:8.956336pt;}
.ws16_c00262{word-spacing:8.968784pt;}
.ws13_c00262{word-spacing:9.286208pt;}
.ws1c_c00262{word-spacing:400.831859pt;}
.wsf_c00262{word-spacing:821.150992pt;}
.wse_c00262{word-spacing:839.076112pt;}
.wsd_c00262{word-spacing:852.806256pt;}
.ws10_c00262{word-spacing:1080.853616pt;}
._e_c00262{margin-left:-1080.156528pt;}
._b_c00262{margin-left:-853.167248pt;}
._c_c00262{margin-left:-839.001424pt;}
._9_c00262{margin-left:-1.008288pt;}
._2_c00262{width:1.020736pt;}
._f_c00262{width:4.039376pt;}
._a_c00262{width:626.383360pt;}
._1_c00262{width:745.062592pt;}
._0_c00262{width:789.545520pt;}
._3_c00262{width:796.864944pt;}
._7_c00262{width:807.103424pt;}
._6_c00262{width:827.891584pt;}
._d_c00262{width:830.679936pt;}
._4_c00262{width:841.758656pt;}
._8_c00262{width:893.760176pt;}
._5_c00262{width:931.676784pt;}
.fs0_c00262{font-size:62.240000pt;}
.fs1_c00262{font-size:67.530133pt;}
.y0_c00262{bottom:0.000000pt;}
.y2_c00262{bottom:97.547527pt;}
.y1_c00262{bottom:115.387067pt;}
.y21_c00262{bottom:165.386527pt;}
.y20_c00262{bottom:192.187071pt;}
.y1f_c00262{bottom:225.627067pt;}
.y1e_c00262{bottom:247.707067pt;}
.y1d_c00262{bottom:284.986551pt;}
.y1c_c00262{bottom:305.626891pt;}
.y1b_c00262{bottom:326.186319pt;}
.y1a_c00262{bottom:366.107055pt;}
.y19_c00262{bottom:392.907599pt;}
.y18_c00262{bottom:420.108035pt;}
.y17_c00262{bottom:448.347879pt;}
.y16_c00262{bottom:476.267187pt;}
.y15_c00262{bottom:496.747259pt;}
.y14_c00262{bottom:514.747067pt;}
.y13_c00262{bottom:548.907067pt;}
.y12_c00262{bottom:583.067067pt;}
.y11_c00262{bottom:601.627067pt;}
.y10_c00262{bottom:620.267067pt;}
.yf_c00262{bottom:638.747067pt;}
.ye_c00262{bottom:657.307067pt;}
.yd_c00262{bottom:675.867067pt;}
.yc_c00262{bottom:694.427067pt;}
.yb_c00262{bottom:712.907067pt;}
.ya_c00262{bottom:747.067067pt;}
.y9_c00262{bottom:781.227067pt;}
.y8_c00262{bottom:815.467067pt;}
.y7_c00262{bottom:849.627067pt;}
.y6_c00262{bottom:883.867067pt;}
.y5_c00262{bottom:917.947067pt;}
.y4_c00262{bottom:952.187067pt;}
.y3_c00262{bottom:986.347175pt;}
.h1_c00262{height:55.797187pt;}
.h2_c00262{height:56.192266pt;}
.h3_c00262{height:60.968367pt;}
.h0_c00262{height:1122.666667pt;}
.w0_c00262{width:793.333333pt;}
.x0_c00262{left:0.000000pt;}
.x2_c00262{left:73.520052pt;}
.x3_c00262{left:91.919752pt;}
.x4_c00262{left:299.440000pt;}
.x1_c00262{left:383.760000pt;}
.x5_c00262{left:396.800476pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f5c4224343153167b29ff676.woff2')format("woff");}.ff1_c00263{font-family:ff1_c00263;line-height:1.106934;font-style:normal;font-weight:normal;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_ca2ef861f8d3d7674a853b43.woff2')format("woff");}.ff2_c00263{font-family:ff2_c00263;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00263;src:url('chunks/assets/font_1ca93be972dcbe9380f6f198.woff2')format("woff");}.ff3_c00263{font-family:ff3_c00263;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00263;src:url('chunks/assets/font_95d21899336e6459c49c9764.woff2')format("woff");}.ff4_c00263{font-family:ff4_c00263;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00263;src:url('chunks/assets/font_db9384af6cc0e705cd3d687d.woff2')format("woff");}.ff5_c00263{font-family:ff5_c00263;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00263;src:url('chunks/assets/font_d27c7b0d95998c53618cb5f8.woff2')format("woff");}.ff6_c00263{font-family:ff6_c00263;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00263;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff7_c00263{font-family:ff7_c00263;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00263;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff8_c00263{font-family:ff8_c00263;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00263{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00263{vertical-align:-14.400000px;}
.v0_c00263{vertical-align:0.000000px;}
.v1_c00263{vertical-align:17.279046px;}
.ls1d_c00263{letter-spacing:-0.344952px;}
.lsf_c00263{letter-spacing:-0.246781px;}
.ls16_c00263{letter-spacing:-0.228019px;}
.ls18_c00263{letter-spacing:-0.181246px;}
.ls17_c00263{letter-spacing:-0.140319px;}
.ls1c_c00263{letter-spacing:-0.116933px;}
.ls12_c00263{letter-spacing:-0.075619px;}
.ls15_c00263{letter-spacing:-0.070160px;}
.ls8_c00263{letter-spacing:-0.063018px;}
.ls19_c00263{letter-spacing:-0.052620px;}
.lsb_c00263{letter-spacing:-0.049014px;}
.ls1e_c00263{letter-spacing:-0.046773px;}
.lse_c00263{letter-spacing:-0.042012px;}
.lsd_c00263{letter-spacing:-0.035010px;}
.lsc_c00263{letter-spacing:-0.028008px;}
.ls10_c00263{letter-spacing:-0.021006px;}
.lsa_c00263{letter-spacing:-0.014004px;}
.ls11_c00263{letter-spacing:-0.007002px;}
.ls9_c00263{letter-spacing:0.000000px;}
.ls2_c00263{letter-spacing:0.007002px;}
.ls3_c00263{letter-spacing:0.014004px;}
.ls0_c00263{letter-spacing:0.028008px;}
.ls13_c00263{letter-spacing:0.029233px;}
.ls1_c00263{letter-spacing:0.042012px;}
.ls6_c00263{letter-spacing:0.058466px;}
.ls4_c00263{letter-spacing:0.077022px;}
.ls14_c00263{letter-spacing:0.198786px;}
.ls7_c00263{letter-spacing:0.222172px;}
.ls5_c00263{letter-spacing:0.268945px;}
.ls1b_c00263{letter-spacing:0.274792px;}
.ls1a_c00263{letter-spacing:0.344952px;}
.sc__c00263{text-shadow:none;}
.sc0_c00263{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00263{-webkit-text-stroke:0px transparent;}
.sc0_c00263{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00263{word-spacing:-58.466400px;}
.ws1_c00263{word-spacing:-19.542582px;}
.ws0_c00263{word-spacing:-12.651004px;}
.ws2_c00263{word-spacing:-10.397640px;}
.ws1c_c00263{word-spacing:-0.543738px;}
.ws26_c00263{word-spacing:-0.344952px;}
.ws1b_c00263{word-spacing:-0.017540px;}
.ws4_c00263{word-spacing:0.000000px;}
.ws16_c00263{word-spacing:0.021006px;}
.ws6_c00263{word-spacing:0.035010px;}
.ws28_c00263{word-spacing:0.058466px;}
.ws27_c00263{word-spacing:0.134473px;}
.wsa_c00263{word-spacing:0.343098px;}
.ws14_c00263{word-spacing:0.350100px;}
.wsc_c00263{word-spacing:0.385110px;}
.ws11_c00263{word-spacing:2.149614px;}
.wsb_c00263{word-spacing:2.177622px;}
.ws20_c00263{word-spacing:2.356196px;}
.ws17_c00263{word-spacing:2.499714px;}
.ws1d_c00263{word-spacing:2.601755px;}
.ws1f_c00263{word-spacing:2.671914px;}
.ws19_c00263{word-spacing:2.849814px;}
.ws18_c00263{word-spacing:2.891826px;}
.ws1e_c00263{word-spacing:3.122106px;}
.ws8_c00263{word-spacing:3.977136px;}
.wsd_c00263{word-spacing:4.635324px;}
.wsf_c00263{word-spacing:5.020434px;}
.wse_c00263{word-spacing:5.027436px;}
.ws10_c00263{word-spacing:5.062446px;}
.ws7_c00263{word-spacing:7.212060px;}
.ws9_c00263{word-spacing:8.269362px;}
.ws12_c00263{word-spacing:9.725778px;}
.ws13_c00263{word-spacing:10.082880px;}
.ws5_c00263{word-spacing:10.439982px;}
.ws23_c00263{word-spacing:11.669893px;}
.ws24_c00263{word-spacing:12.266251px;}
.ws22_c00263{word-spacing:12.307177px;}
.ws25_c00263{word-spacing:12.336410px;}
.ws21_c00263{word-spacing:12.552736px;}
.ws15_c00263{word-spacing:14.410116px;}
.ws1a_c00263{word-spacing:20.529864px;}
._3_c00263{margin-left:-2.709162px;}
._1_c00263{margin-left:-1.218348px;}
._0_c00263{width:1.099314px;}
._2_c00263{width:5.930694px;}
.fc0_c00263{color:rgb(0,0,0);}
.fs2_c00263{font-size:37.809600px;}
.fs1_c00263{font-size:46.562400px;}
.fs3_c00263{font-size:58.466400px;}
.fs0_c00263{font-size:70.020000px;}
.y0_c00263{bottom:0.000000px;}
.y2_c00263{bottom:109.740968px;}
.y1_c00263{bottom:129.810450px;}
.y22_c00263{bottom:153.120600px;}
.y21_c00263{bottom:167.249548px;}
.y20_c00263{bottom:185.249891px;}
.y1f_c00263{bottom:206.760450px;}
.y1e_c00263{bottom:224.670450px;}
.y1d_c00263{bottom:239.429996px;}
.y1c_c00263{bottom:265.440675px;}
.y1b_c00263{bottom:295.591287px;}
.y1a_c00263{bottom:325.919698px;}
.y19_c00263{bottom:357.328920px;}
.y18_c00263{bottom:387.479532px;}
.y17_c00263{bottom:417.719419px;}
.y16_c00263{bottom:447.870031px;}
.y15_c00263{bottom:478.109919px;}
.y14_c00263{bottom:517.079550px;}
.y13_c00263{bottom:547.230162px;}
.y12_c00263{bottom:586.199793px;}
.y11_c00263{bottom:625.261229px;}
.y10_c00263{bottom:656.670450px;}
.yf_c00263{bottom:686.821062px;}
.ye_c00263{bottom:717.510828px;}
.yd_c00263{bottom:757.560518px;}
.yc_c00263{bottom:796.710688px;}
.yb_c00263{bottom:828.119910px;}
.ya_c00263{bottom:867.089541px;}
.y9_c00263{bottom:905.969897px;}
.y8_c00263{bottom:936.120508px;}
.y7_c00263{bottom:966.271121px;}
.y6_c00263{bottom:996.511008px;}
.y5_c00263{bottom:1041.330810px;}
.y4_c00263{bottom:1080.300441px;}
.y3_c00263{bottom:1110.451053px;}
.ha_c00263{height:39.337949px;}
.h8_c00263{height:39.338549px;}
.h7_c00263{height:39.698549px;}
.h9_c00263{height:54.098549px;}
.h2_c00263{height:62.600889px;}
.h5_c00263{height:62.603895px;}
.h4_c00263{height:62.768722px;}
.h3_c00263{height:62.770882px;}
.h1_c00263{height:62.771836px;}
.h6_c00263{height:62.773654px;}
.h0_c00263{height:1263.000000px;}
.w0_c00263{width:892.500000px;}
.x0_c00263{left:0.000000px;}
.x2_c00263{left:82.710059px;}
.x1_c00263{left:431.730000px;}
@media print{
.v2_c00263{vertical-align:-12.800000pt;}
.v0_c00263{vertical-align:0.000000pt;}
.v1_c00263{vertical-align:15.359152pt;}
.ls1d_c00263{letter-spacing:-0.306624pt;}
.lsf_c00263{letter-spacing:-0.219361pt;}
.ls16_c00263{letter-spacing:-0.202684pt;}
.ls18_c00263{letter-spacing:-0.161107pt;}
.ls17_c00263{letter-spacing:-0.124728pt;}
.ls1c_c00263{letter-spacing:-0.103940pt;}
.ls12_c00263{letter-spacing:-0.067217pt;}
.ls15_c00263{letter-spacing:-0.062364pt;}
.ls8_c00263{letter-spacing:-0.056016pt;}
.ls19_c00263{letter-spacing:-0.046773pt;}
.lsb_c00263{letter-spacing:-0.043568pt;}
.ls1e_c00263{letter-spacing:-0.041576pt;}
.lse_c00263{letter-spacing:-0.037344pt;}
.lsd_c00263{letter-spacing:-0.031120pt;}
.lsc_c00263{letter-spacing:-0.024896pt;}
.ls10_c00263{letter-spacing:-0.018672pt;}
.lsa_c00263{letter-spacing:-0.012448pt;}
.ls11_c00263{letter-spacing:-0.006224pt;}
.ls9_c00263{letter-spacing:0.000000pt;}
.ls2_c00263{letter-spacing:0.006224pt;}
.ls3_c00263{letter-spacing:0.012448pt;}
.ls0_c00263{letter-spacing:0.024896pt;}
.ls13_c00263{letter-spacing:0.025985pt;}
.ls1_c00263{letter-spacing:0.037344pt;}
.ls6_c00263{letter-spacing:0.051970pt;}
.ls4_c00263{letter-spacing:0.068464pt;}
.ls14_c00263{letter-spacing:0.176698pt;}
.ls7_c00263{letter-spacing:0.197487pt;}
.ls5_c00263{letter-spacing:0.239063pt;}
.ls1b_c00263{letter-spacing:0.244260pt;}
.ls1a_c00263{letter-spacing:0.306624pt;}
.ws3_c00263{word-spacing:-51.970133pt;}
.ws1_c00263{word-spacing:-17.371184pt;}
.ws0_c00263{word-spacing:-11.245337pt;}
.ws2_c00263{word-spacing:-9.242347pt;}
.ws1c_c00263{word-spacing:-0.483322pt;}
.ws26_c00263{word-spacing:-0.306624pt;}
.ws1b_c00263{word-spacing:-0.015591pt;}
.ws4_c00263{word-spacing:0.000000pt;}
.ws16_c00263{word-spacing:0.018672pt;}
.ws6_c00263{word-spacing:0.031120pt;}
.ws28_c00263{word-spacing:0.051970pt;}
.ws27_c00263{word-spacing:0.119531pt;}
.wsa_c00263{word-spacing:0.304976pt;}
.ws14_c00263{word-spacing:0.311200pt;}
.wsc_c00263{word-spacing:0.342320pt;}
.ws11_c00263{word-spacing:1.910768pt;}
.wsb_c00263{word-spacing:1.935664pt;}
.ws20_c00263{word-spacing:2.094396pt;}
.ws17_c00263{word-spacing:2.221968pt;}
.ws1d_c00263{word-spacing:2.312671pt;}
.ws1f_c00263{word-spacing:2.375035pt;}
.ws19_c00263{word-spacing:2.533168pt;}
.ws18_c00263{word-spacing:2.570512pt;}
.ws1e_c00263{word-spacing:2.775205pt;}
.ws8_c00263{word-spacing:3.535232pt;}
.wsd_c00263{word-spacing:4.120288pt;}
.wsf_c00263{word-spacing:4.462608pt;}
.wse_c00263{word-spacing:4.468832pt;}
.ws10_c00263{word-spacing:4.499952pt;}
.ws7_c00263{word-spacing:6.410720pt;}
.ws9_c00263{word-spacing:7.350544pt;}
.ws12_c00263{word-spacing:8.645136pt;}
.ws13_c00263{word-spacing:8.962560pt;}
.ws5_c00263{word-spacing:9.279984pt;}
.ws23_c00263{word-spacing:10.373239pt;}
.ws24_c00263{word-spacing:10.903334pt;}
.ws22_c00263{word-spacing:10.939713pt;}
.ws25_c00263{word-spacing:10.965698pt;}
.ws21_c00263{word-spacing:11.157988pt;}
.ws15_c00263{word-spacing:12.808992pt;}
.ws1a_c00263{word-spacing:18.248768pt;}
._3_c00263{margin-left:-2.408144pt;}
._1_c00263{margin-left:-1.082976pt;}
._0_c00263{width:0.977168pt;}
._2_c00263{width:5.271728pt;}
.fs2_c00263{font-size:33.608533pt;}
.fs1_c00263{font-size:41.388800pt;}
.fs3_c00263{font-size:51.970133pt;}
.fs0_c00263{font-size:62.240000pt;}
.y0_c00263{bottom:0.000000pt;}
.y2_c00263{bottom:97.547527pt;}
.y1_c00263{bottom:115.387067pt;}
.y22_c00263{bottom:136.107200pt;}
.y21_c00263{bottom:148.666265pt;}
.y20_c00263{bottom:164.666570pt;}
.y1f_c00263{bottom:183.787067pt;}
.y1e_c00263{bottom:199.707067pt;}
.y1d_c00263{bottom:212.826663pt;}
.y1c_c00263{bottom:235.947267pt;}
.y1b_c00263{bottom:262.747811pt;}
.y1a_c00263{bottom:289.706399pt;}
.y19_c00263{bottom:317.625707pt;}
.y18_c00263{bottom:344.426251pt;}
.y17_c00263{bottom:371.306151pt;}
.y16_c00263{bottom:398.106695pt;}
.y15_c00263{bottom:424.986595pt;}
.y14_c00263{bottom:459.626267pt;}
.y13_c00263{bottom:486.426811pt;}
.y12_c00263{bottom:521.066483pt;}
.y11_c00263{bottom:555.787759pt;}
.y10_c00263{bottom:583.707067pt;}
.yf_c00263{bottom:610.507611pt;}
.ye_c00263{bottom:637.787403pt;}
.yd_c00263{bottom:673.387127pt;}
.yc_c00263{bottom:708.187279pt;}
.yb_c00263{bottom:736.106587pt;}
.ya_c00263{bottom:770.746259pt;}
.y9_c00263{bottom:805.306575pt;}
.y8_c00263{bottom:832.107119pt;}
.y7_c00263{bottom:858.907663pt;}
.y6_c00263{bottom:885.787563pt;}
.y5_c00263{bottom:925.627387pt;}
.y4_c00263{bottom:960.267059pt;}
.y3_c00263{bottom:987.067603pt;}
.ha_c00263{height:34.967066pt;}
.h8_c00263{height:34.967599pt;}
.h7_c00263{height:35.287599pt;}
.h9_c00263{height:48.087599pt;}
.h2_c00263{height:55.645234pt;}
.h5_c00263{height:55.647906pt;}
.h4_c00263{height:55.794419pt;}
.h3_c00263{height:55.796340pt;}
.h1_c00263{height:55.797187pt;}
.h6_c00263{height:55.798803pt;}
.h0_c00263{height:1122.666667pt;}
.w0_c00263{width:793.333333pt;}
.x0_c00263{left:0.000000pt;}
.x2_c00263{left:73.520052pt;}
.x1_c00263{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a18d836925151b36d8a6de70.woff2')format("woff");}.ff1_c00264{font-family:ff1_c00264;line-height:1.106934;font-style:normal;font-weight:normal;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_3ba365a5ca762a646a0fd048.woff2')format("woff");}.ff2_c00264{font-family:ff2_c00264;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00264;src:url('chunks/assets/font_985cd21f066576205cc1ae8f.woff2')format("woff");}.ff3_c00264{font-family:ff3_c00264;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00264;src:url('chunks/assets/font_c5e5c8364f905967e192ae33.woff2')format("woff");}.ff4_c00264{font-family:ff4_c00264;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00264;src:url('chunks/assets/font_98d33545843b56b58e0971c9.woff2')format("woff");}.ff5_c00264{font-family:ff5_c00264;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00264;src:url('chunks/assets/font_f890c34f30c9bfd7503c0ddf.woff2')format("woff");}.ff6_c00264{font-family:ff6_c00264;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00264;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff7_c00264{font-family:ff7_c00264;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00264;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff8_c00264{font-family:ff8_c00264;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00264{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00264{vertical-align:-14.760000px;}
.v0_c00264{vertical-align:0.000000px;}
.v1_c00264{vertical-align:17.282466px;}
.ls1a_c00264{letter-spacing:-0.391725px;}
.ls16_c00264{letter-spacing:-0.268945px;}
.lsd_c00264{letter-spacing:-0.246781px;}
.ls18_c00264{letter-spacing:-0.181246px;}
.ls17_c00264{letter-spacing:-0.169553px;}
.ls10_c00264{letter-spacing:-0.091166px;}
.ls13_c00264{letter-spacing:-0.081853px;}
.ls12_c00264{letter-spacing:-0.075619px;}
.ls4_c00264{letter-spacing:-0.063018px;}
.lsf_c00264{letter-spacing:-0.060777px;}
.ls19_c00264{letter-spacing:-0.058466px;}
.lsc_c00264{letter-spacing:-0.056016px;}
.lse_c00264{letter-spacing:-0.049014px;}
.lsa_c00264{letter-spacing:-0.042012px;}
.lsb_c00264{letter-spacing:-0.035010px;}
.ls9_c00264{letter-spacing:-0.028008px;}
.ls8_c00264{letter-spacing:-0.021006px;}
.ls11_c00264{letter-spacing:-0.015194px;}
.ls7_c00264{letter-spacing:-0.014004px;}
.ls6_c00264{letter-spacing:-0.007002px;}
.ls15_c00264{letter-spacing:-0.005847px;}
.ls5_c00264{letter-spacing:0.000000px;}
.ls14_c00264{letter-spacing:0.011693px;}
.ls0_c00264{letter-spacing:0.014004px;}
.ls1_c00264{letter-spacing:0.021006px;}
.ls2_c00264{letter-spacing:0.076006px;}
.ls1b_c00264{letter-spacing:0.239712px;}
.ls3_c00264{letter-spacing:0.333258px;}
.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;}
}
.ws1_c00264{word-spacing:-75.971400px;}
.ws3_c00264{word-spacing:-58.466400px;}
.ws0_c00264{word-spacing:-12.651004px;}
.ws2_c00264{word-spacing:-10.397640px;}
.wsf_c00264{word-spacing:-0.035010px;}
.ws4_c00264{word-spacing:0.000000px;}
.ws12_c00264{word-spacing:0.014004px;}
.ws1b_c00264{word-spacing:0.015194px;}
.ws28_c00264{word-spacing:0.017540px;}
.ws1d_c00264{word-spacing:0.144346px;}
.ws1c_c00264{word-spacing:0.341871px;}
.ws1a_c00264{word-spacing:0.392112px;}
.ws18_c00264{word-spacing:1.435410px;}
.ws19_c00264{word-spacing:1.792512px;}
.ws8_c00264{word-spacing:2.492712px;}
.ws9_c00264{word-spacing:2.534724px;}
.ws21_c00264{word-spacing:4.256354px;}
.ws20_c00264{word-spacing:4.338207px;}
.ws1e_c00264{word-spacing:4.414213px;}
.ws22_c00264{word-spacing:4.601306px;}
.ws1f_c00264{word-spacing:4.683159px;}
.ws10_c00264{word-spacing:4.698342px;}
.ws23_c00264{word-spacing:4.864404px;}
.ws14_c00264{word-spacing:5.405544px;}
.wsc_c00264{word-spacing:6.476850px;}
.wsd_c00264{word-spacing:6.483852px;}
.wse_c00264{word-spacing:6.518862px;}
.ws15_c00264{word-spacing:6.854958px;}
.ws11_c00264{word-spacing:7.562160px;}
.ws16_c00264{word-spacing:7.919262px;}
.ws5_c00264{word-spacing:8.990568px;}
.ws13_c00264{word-spacing:9.382680px;}
.ws17_c00264{word-spacing:9.683766px;}
.wsb_c00264{word-spacing:9.739782px;}
.wsa_c00264{word-spacing:9.746784px;}
.ws27_c00264{word-spacing:9.851588px;}
.ws25_c00264{word-spacing:10.149767px;}
.ws24_c00264{word-spacing:10.272546px;}
.ws26_c00264{word-spacing:10.483026px;}
.ws6_c00264{word-spacing:15.481422px;}
.ws7_c00264{word-spacing:15.488424px;}
._3_c00264{margin-left:-2.709774px;}
._1_c00264{margin-left:-1.050300px;}
._0_c00264{width:1.029294px;}
._2_c00264{width:5.930694px;}
.fc0_c00264{color:rgb(0,0,0);}
.fs3_c00264{font-size:37.809600px;}
.fs1_c00264{font-size:46.562400px;}
.fs4_c00264{font-size:58.466400px;}
.fs0_c00264{font-size:70.020000px;}
.fs2_c00264{font-size:75.971400px;}
.y0_c00264{bottom:0.000000px;}
.y2_c00264{bottom:109.740968px;}
.y1_c00264{bottom:129.810450px;}
.y23_c00264{bottom:149.429548px;}
.y22_c00264{bottom:167.250107px;}
.y21_c00264{bottom:188.940450px;}
.y20_c00264{bottom:203.611548px;}
.y1f_c00264{bottom:257.161094px;}
.y1e_c00264{bottom:280.290450px;}
.y1d_c00264{bottom:305.220450px;}
.y1c_c00264{bottom:354.267178px;}
.y1b_c00264{bottom:384.417791px;}
.y1a_c00264{bottom:414.657678px;}
.y19_c00264{bottom:444.808290px;}
.y18_c00264{bottom:475.048177px;}
.y17_c00264{bottom:505.198789px;}
.y16_c00264{bottom:535.438677px;}
.y15_c00264{bottom:565.589289px;}
.y14_c00264{bottom:595.829176px;}
.y13_c00264{bottom:625.979788px;}
.y12_c00264{bottom:656.219676px;}
.y11_c00264{bottom:686.370288px;}
.y10_c00264{bottom:716.610175px;}
.yf_c00264{bottom:746.760787px;}
.ye_c00264{bottom:777.000675px;}
.yd_c00264{bottom:807.151287px;}
.yc_c00264{bottom:837.479834px;}
.yb_c00264{bottom:868.889055px;}
.ya_c00264{bottom:899.039667px;}
.y9_c00264{bottom:929.279555px;}
.y8_c00264{bottom:959.519442px;}
.y7_c00264{bottom:989.670054px;}
.y6_c00264{bottom:1019.909942px;}
.y5_c00264{bottom:1050.060553px;}
.y4_c00264{bottom:1080.300441px;}
.y3_c00264{bottom:1110.451053px;}
.h5_c00264{height:39.338549px;}
.h6_c00264{height:54.098549px;}
.h2_c00264{height:62.600889px;}
.h1_c00264{height:62.771836px;}
.h3_c00264{height:62.774302px;}
.h4_c00264{height:68.589413px;}
.h0_c00264{height:1263.000000px;}
.w0_c00264{width:892.500000px;}
.x0_c00264{left:0.000000px;}
.x2_c00264{left:82.710059px;}
.x1_c00264{left:431.730000px;}
.x3_c00264{left:446.400882px;}
@media print{
.v2_c00264{vertical-align:-13.120000pt;}
.v0_c00264{vertical-align:0.000000pt;}
.v1_c00264{vertical-align:15.362192pt;}
.ls1a_c00264{letter-spacing:-0.348200pt;}
.ls16_c00264{letter-spacing:-0.239063pt;}
.lsd_c00264{letter-spacing:-0.219361pt;}
.ls18_c00264{letter-spacing:-0.161107pt;}
.ls17_c00264{letter-spacing:-0.150713pt;}
.ls10_c00264{letter-spacing:-0.081036pt;}
.ls13_c00264{letter-spacing:-0.072758pt;}
.ls12_c00264{letter-spacing:-0.067217pt;}
.ls4_c00264{letter-spacing:-0.056016pt;}
.lsf_c00264{letter-spacing:-0.054024pt;}
.ls19_c00264{letter-spacing:-0.051970pt;}
.lsc_c00264{letter-spacing:-0.049792pt;}
.lse_c00264{letter-spacing:-0.043568pt;}
.lsa_c00264{letter-spacing:-0.037344pt;}
.lsb_c00264{letter-spacing:-0.031120pt;}
.ls9_c00264{letter-spacing:-0.024896pt;}
.ls8_c00264{letter-spacing:-0.018672pt;}
.ls11_c00264{letter-spacing:-0.013506pt;}
.ls7_c00264{letter-spacing:-0.012448pt;}
.ls6_c00264{letter-spacing:-0.006224pt;}
.ls15_c00264{letter-spacing:-0.005197pt;}
.ls5_c00264{letter-spacing:0.000000pt;}
.ls14_c00264{letter-spacing:0.010394pt;}
.ls0_c00264{letter-spacing:0.012448pt;}
.ls1_c00264{letter-spacing:0.018672pt;}
.ls2_c00264{letter-spacing:0.067561pt;}
.ls1b_c00264{letter-spacing:0.213078pt;}
.ls3_c00264{letter-spacing:0.296230pt;}
.ws1_c00264{word-spacing:-67.530133pt;}
.ws3_c00264{word-spacing:-51.970133pt;}
.ws0_c00264{word-spacing:-11.245337pt;}
.ws2_c00264{word-spacing:-9.242347pt;}
.wsf_c00264{word-spacing:-0.031120pt;}
.ws4_c00264{word-spacing:0.000000pt;}
.ws12_c00264{word-spacing:0.012448pt;}
.ws1b_c00264{word-spacing:0.013506pt;}
.ws28_c00264{word-spacing:0.015591pt;}
.ws1d_c00264{word-spacing:0.128307pt;}
.ws1c_c00264{word-spacing:0.303886pt;}
.ws1a_c00264{word-spacing:0.348544pt;}
.ws18_c00264{word-spacing:1.275920pt;}
.ws19_c00264{word-spacing:1.593344pt;}
.ws8_c00264{word-spacing:2.215744pt;}
.ws9_c00264{word-spacing:2.253088pt;}
.ws21_c00264{word-spacing:3.783426pt;}
.ws20_c00264{word-spacing:3.856184pt;}
.ws1e_c00264{word-spacing:3.923745pt;}
.ws22_c00264{word-spacing:4.090049pt;}
.ws1f_c00264{word-spacing:4.162808pt;}
.ws10_c00264{word-spacing:4.176304pt;}
.ws23_c00264{word-spacing:4.323915pt;}
.ws14_c00264{word-spacing:4.804928pt;}
.wsc_c00264{word-spacing:5.757200pt;}
.wsd_c00264{word-spacing:5.763424pt;}
.wse_c00264{word-spacing:5.794544pt;}
.ws15_c00264{word-spacing:6.093296pt;}
.ws11_c00264{word-spacing:6.721920pt;}
.ws16_c00264{word-spacing:7.039344pt;}
.ws5_c00264{word-spacing:7.991616pt;}
.ws13_c00264{word-spacing:8.340160pt;}
.ws17_c00264{word-spacing:8.607792pt;}
.wsb_c00264{word-spacing:8.657584pt;}
.wsa_c00264{word-spacing:8.663808pt;}
.ws27_c00264{word-spacing:8.756967pt;}
.ws25_c00264{word-spacing:9.022015pt;}
.ws24_c00264{word-spacing:9.131152pt;}
.ws26_c00264{word-spacing:9.318245pt;}
.ws6_c00264{word-spacing:13.761264pt;}
.ws7_c00264{word-spacing:13.767488pt;}
._3_c00264{margin-left:-2.408688pt;}
._1_c00264{margin-left:-0.933600pt;}
._0_c00264{width:0.914928pt;}
._2_c00264{width:5.271728pt;}
.fs3_c00264{font-size:33.608533pt;}
.fs1_c00264{font-size:41.388800pt;}
.fs4_c00264{font-size:51.970133pt;}
.fs0_c00264{font-size:62.240000pt;}
.fs2_c00264{font-size:67.530133pt;}
.y0_c00264{bottom:0.000000pt;}
.y2_c00264{bottom:97.547527pt;}
.y1_c00264{bottom:115.387067pt;}
.y23_c00264{bottom:132.826265pt;}
.y22_c00264{bottom:148.666762pt;}
.y21_c00264{bottom:167.947067pt;}
.y20_c00264{bottom:180.988043pt;}
.y1f_c00264{bottom:228.587639pt;}
.y1e_c00264{bottom:249.147067pt;}
.y1d_c00264{bottom:271.307067pt;}
.y1c_c00264{bottom:314.904159pt;}
.y1b_c00264{bottom:341.704703pt;}
.y1a_c00264{bottom:368.584603pt;}
.y19_c00264{bottom:395.385147pt;}
.y18_c00264{bottom:422.265047pt;}
.y17_c00264{bottom:449.065591pt;}
.y16_c00264{bottom:475.945491pt;}
.y15_c00264{bottom:502.746035pt;}
.y14_c00264{bottom:529.625935pt;}
.y13_c00264{bottom:556.426479pt;}
.y12_c00264{bottom:583.306379pt;}
.y11_c00264{bottom:610.106923pt;}
.y10_c00264{bottom:636.986823pt;}
.yf_c00264{bottom:663.787367pt;}
.ye_c00264{bottom:690.667267pt;}
.yd_c00264{bottom:717.467811pt;}
.yc_c00264{bottom:744.426519pt;}
.yb_c00264{bottom:772.345827pt;}
.ya_c00264{bottom:799.146371pt;}
.y9_c00264{bottom:826.026271pt;}
.y8_c00264{bottom:852.906171pt;}
.y7_c00264{bottom:879.706715pt;}
.y6_c00264{bottom:906.586615pt;}
.y5_c00264{bottom:933.387159pt;}
.y4_c00264{bottom:960.267059pt;}
.y3_c00264{bottom:987.067603pt;}
.h5_c00264{height:34.967599pt;}
.h6_c00264{height:48.087599pt;}
.h2_c00264{height:55.645234pt;}
.h1_c00264{height:55.797187pt;}
.h3_c00264{height:55.799380pt;}
.h4_c00264{height:60.968367pt;}
.h0_c00264{height:1122.666667pt;}
.w0_c00264{width:793.333333pt;}
.x0_c00264{left:0.000000pt;}
.x2_c00264{left:73.520052pt;}
.x1_c00264{left:383.760000pt;}
.x3_c00264{left:396.800784pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_30c28c556ca6ea4d62962ae9.woff2')format("woff");}.ff1_c00265{font-family:ff1_c00265;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00265;src:url('chunks/assets/font_fba7c06b1ea99b3c089779c3.woff2')format("woff");}.ff2_c00265{font-family:ff2_c00265;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00265;src:url('chunks/assets/font_9f26a610912bc930e99a9b79.woff2')format("woff");}.ff3_c00265{font-family:ff3_c00265;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00265;src:url('chunks/assets/font_128aa251fa04b3a474b80515.woff2')format("woff");}.ff4_c00265{font-family:ff4_c00265;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00265;src:url('chunks/assets/font_4cd812c9ff4459ed186cae8d.woff2')format("woff");}.ff5_c00265{font-family:ff5_c00265;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00265;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff6_c00265{font-family:ff6_c00265;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00265;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff7_c00265{font-family:ff7_c00265;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00265{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v4_c00265{vertical-align:-14.760000px;}
.v2_c00265{vertical-align:-7.919262px;}
.v1_c00265{vertical-align:-2.877822px;}
.v0_c00265{vertical-align:0.000000px;}
.v3_c00265{vertical-align:17.637768px;}
.ls13_c00265{letter-spacing:-0.315719px;}
.lsc_c00265{letter-spacing:-0.246781px;}
.lsf_c00265{letter-spacing:-0.075619px;}
.ls5_c00265{letter-spacing:-0.063018px;}
.ls16_c00265{letter-spacing:-0.052620px;}
.lsd_c00265{letter-spacing:-0.049014px;}
.ls12_c00265{letter-spacing:-0.046773px;}
.lsa_c00265{letter-spacing:-0.042012px;}
.ls11_c00265{letter-spacing:-0.040926px;}
.lse_c00265{letter-spacing:-0.035010px;}
.lsb_c00265{letter-spacing:-0.028008px;}
.ls8_c00265{letter-spacing:-0.021006px;}
.ls15_c00265{letter-spacing:-0.017540px;}
.ls7_c00265{letter-spacing:-0.014004px;}
.ls10_c00265{letter-spacing:-0.011693px;}
.ls9_c00265{letter-spacing:-0.007002px;}
.ls6_c00265{letter-spacing:0.000000px;}
.ls2_c00265{letter-spacing:0.007002px;}
.ls4_c00265{letter-spacing:0.011693px;}
.ls1_c00265{letter-spacing:0.014004px;}
.ls0_c00265{letter-spacing:0.028008px;}
.ls18_c00265{letter-spacing:0.046773px;}
.ls14_c00265{letter-spacing:0.105240px;}
.ls17_c00265{letter-spacing:0.245559px;}
.ls3_c00265{letter-spacing:0.362492px;}
.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;}
}
.ws3_c00265{word-spacing:-58.466400px;}
.ws0_c00265{word-spacing:-19.493568px;}
.ws4_c00265{word-spacing:-16.440752px;}
.ws1_c00265{word-spacing:-12.651004px;}
.ws2_c00265{word-spacing:-10.397640px;}
.ws25_c00265{word-spacing:-0.327412px;}
.ws22_c00265{word-spacing:-0.093546px;}
.ws26_c00265{word-spacing:-0.035080px;}
.wse_c00265{word-spacing:-0.021006px;}
.ws5_c00265{word-spacing:0.000000px;}
.wsb_c00265{word-spacing:0.007002px;}
.ws10_c00265{word-spacing:0.014004px;}
.ws1e_c00265{word-spacing:0.023387px;}
.ws9_c00265{word-spacing:0.028008px;}
.ws23_c00265{word-spacing:0.029233px;}
.ws11_c00265{word-spacing:0.035010px;}
.ws1f_c00265{word-spacing:0.052620px;}
.ws20_c00265{word-spacing:0.058466px;}
.ws21_c00265{word-spacing:0.327412px;}
.wsf_c00265{word-spacing:0.336096px;}
.ws8_c00265{word-spacing:0.350100px;}
.wsd_c00265{word-spacing:0.357102px;}
.wsa_c00265{word-spacing:0.364104px;}
.ws1b_c00265{word-spacing:0.378108px;}
.ws24_c00265{word-spacing:0.426805px;}
.ws15_c00265{word-spacing:0.728208px;}
.ws19_c00265{word-spacing:2.513718px;}
.ws1d_c00265{word-spacing:4.670334px;}
.ws12_c00265{word-spacing:5.027436px;}
.ws14_c00265{word-spacing:5.034438px;}
.ws13_c00265{word-spacing:5.048442px;}
.ws16_c00265{word-spacing:10.082880px;}
.ws18_c00265{word-spacing:10.804086px;}
.ws17_c00265{word-spacing:10.811088px;}
.ws1a_c00265{word-spacing:12.960702px;}
.ws1c_c00265{word-spacing:15.502428px;}
.ws6_c00265{word-spacing:43.559442px;}
.ws7_c00265{word-spacing:43.608456px;}
.wsc_c00265{word-spacing:43.972560px;}
._0_c00265{margin-left:-43.559442px;}
._8_c00265{margin-left:-2.710854px;}
._6_c00265{margin-left:-1.057302px;}
._5_c00265{width:1.190340px;}
._7_c00265{width:5.930694px;}
._3_c00265{width:43.923546px;}
._2_c00265{width:117.675612px;}
._4_c00265{width:717.438924px;}
._1_c00265{width:950.038362px;}
.fc0_c00265{color:rgb(0,0,0);}
.fs2_c00265{font-size:37.809600px;}
.fs1_c00265{font-size:46.562400px;}
.fs3_c00265{font-size:58.466400px;}
.fs0_c00265{font-size:70.020000px;}
.y0_c00265{bottom:0.000000px;}
.y2_c00265{bottom:109.740968px;}
.y1_c00265{bottom:129.810450px;}
.y29_c00265{bottom:153.120600px;}
.y28_c00265{bottom:170.940450px;}
.y27_c00265{bottom:185.697957px;}
.y26_c00265{bottom:246.088456px;}
.y25_c00265{bottom:276.239069px;}
.y24_c00265{bottom:306.478956px;}
.y23_c00265{bottom:336.629568px;}
.y22_c00265{bottom:366.869456px;}
.y21_c00265{bottom:389.820261px;}
.y20_c00265{bottom:420.237210px;}
.y1f_c00265{bottom:451.646431px;}
.y1e_c00265{bottom:481.886319px;}
.y1d_c00265{bottom:512.036931px;}
.y1c_c00265{bottom:542.276818px;}
.y1b_c00265{bottom:572.427430px;}
.y1a_c00265{bottom:602.667318px;}
.y19_c00265{bottom:632.817930px;}
.y18_c00265{bottom:663.057817px;}
.y17_c00265{bottom:686.008623px;}
.y16_c00265{bottom:716.339536px;}
.y15_c00265{bottom:746.671008px;}
.y14_c00265{bottom:778.080229px;}
.y13_c00265{bottom:808.320117px;}
.y12_c00265{bottom:838.560005px;}
.y11_c00265{bottom:868.710617px;}
.y10_c00265{bottom:898.861228px;}
.yf_c00265{bottom:921.901310px;}
.ye_c00265{bottom:945.030666px;}
.yd_c00265{bottom:965.280450px;}
.ya_c00265{bottom:986.160450px;}
.yc_c00265{bottom:988.140265px;}
.yb_c00265{bottom:1008.209748px;}
.y9_c00265{bottom:1009.470491px;}
.y8_c00265{bottom:1047.809942px;}
.y7_c00265{bottom:1067.970450px;}
.y4_c00265{bottom:1088.940450px;}
.y6_c00265{bottom:1089.661656px;}
.y5_c00265{bottom:1109.731138px;}
.y3_c00265{bottom:1109.731597px;}
.h8_c00265{height:39.337949px;}
.h7_c00265{height:39.338549px;}
.h3_c00265{height:62.600889px;}
.h4_c00265{height:62.769604px;}
.h1_c00265{height:62.771836px;}
.h6_c00265{height:62.782408px;}
.h5_c00265{height:62.784796px;}
.h2_c00265{height:63.216299px;}
.h0_c00265{height:1263.000000px;}
.w0_c00265{width:892.500000px;}
.x0_c00265{left:0.000000px;}
.x2_c00265{left:82.710059px;}
.x7_c00265{left:215.371296px;}
.x3_c00265{left:219.060005px;}
.x5_c00265{left:336.870000px;}
.x4_c00265{left:421.829168px;}
.x1_c00265{left:431.730000px;}
.x6_c00265{left:446.400536px;}
@media print{
.v4_c00265{vertical-align:-13.120000pt;}
.v2_c00265{vertical-align:-7.039344pt;}
.v1_c00265{vertical-align:-2.558064pt;}
.v0_c00265{vertical-align:0.000000pt;}
.v3_c00265{vertical-align:15.678016pt;}
.ls13_c00265{letter-spacing:-0.280639pt;}
.lsc_c00265{letter-spacing:-0.219361pt;}
.lsf_c00265{letter-spacing:-0.067217pt;}
.ls5_c00265{letter-spacing:-0.056016pt;}
.ls16_c00265{letter-spacing:-0.046773pt;}
.lsd_c00265{letter-spacing:-0.043568pt;}
.ls12_c00265{letter-spacing:-0.041576pt;}
.lsa_c00265{letter-spacing:-0.037344pt;}
.ls11_c00265{letter-spacing:-0.036379pt;}
.lse_c00265{letter-spacing:-0.031120pt;}
.lsb_c00265{letter-spacing:-0.024896pt;}
.ls8_c00265{letter-spacing:-0.018672pt;}
.ls15_c00265{letter-spacing:-0.015591pt;}
.ls7_c00265{letter-spacing:-0.012448pt;}
.ls10_c00265{letter-spacing:-0.010394pt;}
.ls9_c00265{letter-spacing:-0.006224pt;}
.ls6_c00265{letter-spacing:0.000000pt;}
.ls2_c00265{letter-spacing:0.006224pt;}
.ls4_c00265{letter-spacing:0.010394pt;}
.ls1_c00265{letter-spacing:0.012448pt;}
.ls0_c00265{letter-spacing:0.024896pt;}
.ls18_c00265{letter-spacing:0.041576pt;}
.ls14_c00265{letter-spacing:0.093546pt;}
.ls17_c00265{letter-spacing:0.218275pt;}
.ls3_c00265{letter-spacing:0.322215pt;}
.ws3_c00265{word-spacing:-51.970133pt;}
.ws0_c00265{word-spacing:-17.327616pt;}
.ws4_c00265{word-spacing:-14.614001pt;}
.ws1_c00265{word-spacing:-11.245337pt;}
.ws2_c00265{word-spacing:-9.242347pt;}
.ws25_c00265{word-spacing:-0.291033pt;}
.ws22_c00265{word-spacing:-0.083152pt;}
.ws26_c00265{word-spacing:-0.031182pt;}
.wse_c00265{word-spacing:-0.018672pt;}
.ws5_c00265{word-spacing:0.000000pt;}
.wsb_c00265{word-spacing:0.006224pt;}
.ws10_c00265{word-spacing:0.012448pt;}
.ws1e_c00265{word-spacing:0.020788pt;}
.ws9_c00265{word-spacing:0.024896pt;}
.ws23_c00265{word-spacing:0.025985pt;}
.ws11_c00265{word-spacing:0.031120pt;}
.ws1f_c00265{word-spacing:0.046773pt;}
.ws20_c00265{word-spacing:0.051970pt;}
.ws21_c00265{word-spacing:0.291033pt;}
.wsf_c00265{word-spacing:0.298752pt;}
.ws8_c00265{word-spacing:0.311200pt;}
.wsd_c00265{word-spacing:0.317424pt;}
.wsa_c00265{word-spacing:0.323648pt;}
.ws1b_c00265{word-spacing:0.336096pt;}
.ws24_c00265{word-spacing:0.379382pt;}
.ws15_c00265{word-spacing:0.647296pt;}
.ws19_c00265{word-spacing:2.234416pt;}
.ws1d_c00265{word-spacing:4.151408pt;}
.ws12_c00265{word-spacing:4.468832pt;}
.ws14_c00265{word-spacing:4.475056pt;}
.ws13_c00265{word-spacing:4.487504pt;}
.ws16_c00265{word-spacing:8.962560pt;}
.ws18_c00265{word-spacing:9.603632pt;}
.ws17_c00265{word-spacing:9.609856pt;}
.ws1a_c00265{word-spacing:11.520624pt;}
.ws1c_c00265{word-spacing:13.779936pt;}
.ws6_c00265{word-spacing:38.719504pt;}
.ws7_c00265{word-spacing:38.763072pt;}
.wsc_c00265{word-spacing:39.086720pt;}
._0_c00265{margin-left:-38.719504pt;}
._8_c00265{margin-left:-2.409648pt;}
._6_c00265{margin-left:-0.939824pt;}
._5_c00265{width:1.058080pt;}
._7_c00265{width:5.271728pt;}
._3_c00265{width:39.043152pt;}
._2_c00265{width:104.600544pt;}
._4_c00265{width:637.723488pt;}
._1_c00265{width:844.478544pt;}
.fs2_c00265{font-size:33.608533pt;}
.fs1_c00265{font-size:41.388800pt;}
.fs3_c00265{font-size:51.970133pt;}
.fs0_c00265{font-size:62.240000pt;}
.y0_c00265{bottom:0.000000pt;}
.y2_c00265{bottom:97.547527pt;}
.y1_c00265{bottom:115.387067pt;}
.y29_c00265{bottom:136.107200pt;}
.y28_c00265{bottom:151.947067pt;}
.y27_c00265{bottom:165.064851pt;}
.y26_c00265{bottom:218.745295pt;}
.y25_c00265{bottom:245.545839pt;}
.y24_c00265{bottom:272.425739pt;}
.y23_c00265{bottom:299.226283pt;}
.y22_c00265{bottom:326.106183pt;}
.y21_c00265{bottom:346.506899pt;}
.y20_c00265{bottom:373.544187pt;}
.y1f_c00265{bottom:401.463495pt;}
.y1e_c00265{bottom:428.343395pt;}
.y1d_c00265{bottom:455.143939pt;}
.y1c_c00265{bottom:482.023839pt;}
.y1b_c00265{bottom:508.824383pt;}
.y1a_c00265{bottom:535.704283pt;}
.y19_c00265{bottom:562.504827pt;}
.y18_c00265{bottom:589.384727pt;}
.y17_c00265{bottom:609.785443pt;}
.y16_c00265{bottom:636.746255pt;}
.y15_c00265{bottom:663.707563pt;}
.y14_c00265{bottom:691.626871pt;}
.y13_c00265{bottom:718.506771pt;}
.y12_c00265{bottom:745.386671pt;}
.y11_c00265{bottom:772.187215pt;}
.y10_c00265{bottom:798.987759pt;}
.yf_c00265{bottom:819.467831pt;}
.ye_c00265{bottom:840.027259pt;}
.yd_c00265{bottom:858.027067pt;}
.ya_c00265{bottom:876.587067pt;}
.yc_c00265{bottom:878.346903pt;}
.yb_c00265{bottom:896.186443pt;}
.y9_c00265{bottom:897.307103pt;}
.y8_c00265{bottom:931.386615pt;}
.y7_c00265{bottom:949.307067pt;}
.y4_c00265{bottom:967.947067pt;}
.y6_c00265{bottom:968.588139pt;}
.y5_c00265{bottom:986.427679pt;}
.y3_c00265{bottom:986.428087pt;}
.h8_c00265{height:34.967066pt;}
.h7_c00265{height:34.967599pt;}
.h3_c00265{height:55.645234pt;}
.h4_c00265{height:55.795203pt;}
.h1_c00265{height:55.797187pt;}
.h6_c00265{height:55.806585pt;}
.h5_c00265{height:55.808708pt;}
.h2_c00265{height:56.192266pt;}
.h0_c00265{height:1122.666667pt;}
.w0_c00265{width:793.333333pt;}
.x0_c00265{left:0.000000pt;}
.x2_c00265{left:73.520052pt;}
.x7_c00265{left:191.441152pt;}
.x3_c00265{left:194.720004pt;}
.x5_c00265{left:299.440000pt;}
.x4_c00265{left:374.959260pt;}
.x1_c00265{left:383.760000pt;}
.x6_c00265{left:396.800476pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9387382232901b8c681e34df.woff2')format("woff");}.ff1_c00266{font-family:ff1_c00266;line-height:1.106934;font-style:normal;font-weight:normal;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_3057f904c1b314236833b875.woff2')format("woff");}.ff2_c00266{font-family:ff2_c00266;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00266;src:url('chunks/assets/font_aa6c49a508131f45d2e5e4d2.woff2')format("woff");}.ff3_c00266{font-family:ff3_c00266;line-height:1.104492;font-style:normal;font-weight:normal;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_d6759c9bf836911660486be5.woff2')format("woff");}.ff4_c00266{font-family:ff4_c00266;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00266;src:url('chunks/assets/font_c2de7d7db9584bacf1fe023f.woff2')format("woff");}.ff5_c00266{font-family:ff5_c00266;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00266;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff6_c00266{font-family:ff6_c00266;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00266;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff7_c00266{font-family:ff7_c00266;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00266{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00266{vertical-align:-14.760000px;}
.v0_c00266{vertical-align:0.000000px;}
.v1_c00266{vertical-align:17.638740px;}
.lsd_c00266{letter-spacing:-0.326677px;}
.ls1b_c00266{letter-spacing:-0.309872px;}
.ls14_c00266{letter-spacing:-0.246781px;}
.ls18_c00266{letter-spacing:-0.245559px;}
.ls16_c00266{letter-spacing:-0.182331px;}
.ls1c_c00266{letter-spacing:-0.163706px;}
.lsc_c00266{letter-spacing:-0.129151px;}
.lsb_c00266{letter-spacing:-0.106360px;}
.ls15_c00266{letter-spacing:-0.098763px;}
.lsa_c00266{letter-spacing:-0.091166px;}
.lse_c00266{letter-spacing:-0.084024px;}
.ls17_c00266{letter-spacing:-0.075619px;}
.ls1d_c00266{letter-spacing:-0.070160px;}
.ls1e_c00266{letter-spacing:-0.064313px;}
.ls8_c00266{letter-spacing:-0.063018px;}
.ls1a_c00266{letter-spacing:-0.052620px;}
.ls12_c00266{letter-spacing:-0.049014px;}
.ls10_c00266{letter-spacing:-0.035010px;}
.lsf_c00266{letter-spacing:-0.028008px;}
.ls11_c00266{letter-spacing:-0.021006px;}
.ls13_c00266{letter-spacing:-0.014004px;}
.ls9_c00266{letter-spacing:0.000000px;}
.ls0_c00266{letter-spacing:0.007002px;}
.ls7_c00266{letter-spacing:0.011693px;}
.ls3_c00266{letter-spacing:0.028008px;}
.ls4_c00266{letter-spacing:0.035010px;}
.ls5_c00266{letter-spacing:0.060777px;}
.ls1_c00266{letter-spacing:0.077022px;}
.ls6_c00266{letter-spacing:0.083569px;}
.ls2_c00266{letter-spacing:0.126036px;}
.ls19_c00266{letter-spacing:0.315719px;}
.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;}
}
.ws5_c00266{word-spacing:-58.466400px;}
.ws1_c00266{word-spacing:-19.493568px;}
.ws2_c00266{word-spacing:-19.472562px;}
.ws0_c00266{word-spacing:-19.430550px;}
.ws6_c00266{word-spacing:-16.031487px;}
.ws3_c00266{word-spacing:-12.651004px;}
.ws4_c00266{word-spacing:-10.397640px;}
.ws21_c00266{word-spacing:-0.311483px;}
.ws27_c00266{word-spacing:-0.274792px;}
.ws11_c00266{word-spacing:-0.140040px;}
.ws1f_c00266{word-spacing:-0.068374px;}
.wsc_c00266{word-spacing:-0.021006px;}
.ws7_c00266{word-spacing:0.000000px;}
.ws14_c00266{word-spacing:0.035010px;}
.ws8_c00266{word-spacing:0.045583px;}
.ws1e_c00266{word-spacing:0.053180px;}
.ws9_c00266{word-spacing:0.060777px;}
.ws28_c00266{word-spacing:0.076006px;}
.wsa_c00266{word-spacing:0.258303px;}
.ws1d_c00266{word-spacing:0.308088px;}
.ws12_c00266{word-spacing:0.364104px;}
.wsb_c00266{word-spacing:0.364663px;}
.wse_c00266{word-spacing:0.371106px;}
.ws20_c00266{word-spacing:0.372260px;}
.ws1c_c00266{word-spacing:1.085310px;}
.ws18_c00266{word-spacing:2.163618px;}
.ws1a_c00266{word-spacing:2.891826px;}
.ws1b_c00266{word-spacing:2.926836px;}
.ws25_c00266{word-spacing:3.601530px;}
.ws23_c00266{word-spacing:3.659997px;}
.ws24_c00266{word-spacing:3.665843px;}
.ws26_c00266{word-spacing:3.923095px;}
.ws22_c00266{word-spacing:4.221274px;}
.ws17_c00266{word-spacing:11.896398px;}
.ws15_c00266{word-spacing:16.538724px;}
.ws16_c00266{word-spacing:16.566732px;}
.ws19_c00266{word-spacing:39.225204px;}
.wsf_c00266{word-spacing:43.580448px;}
.ws10_c00266{word-spacing:43.608456px;}
.wsd_c00266{word-spacing:43.629462px;}
.ws13_c00266{word-spacing:43.944552px;}
._4_c00266{margin-left:-43.132320px;}
._9_c00266{margin-left:-2.709774px;}
._7_c00266{margin-left:-1.141326px;}
._0_c00266{width:1.154765px;}
._8_c00266{width:5.930694px;}
._1_c00266{width:43.559442px;}
._6_c00266{width:189.004986px;}
._2_c00266{width:771.410340px;}
._3_c00266{width:984.964338px;}
._5_c00266{width:1027.809576px;}
.fc0_c00266{color:rgb(0,0,0);}
.fs3_c00266{font-size:37.809600px;}
.fs2_c00266{font-size:46.562400px;}
.fs4_c00266{font-size:58.466400px;}
.fs0_c00266{font-size:70.020000px;}
.fs1_c00266{font-size:75.971400px;}
.y0_c00266{bottom:0.000000px;}
.y2_c00266{bottom:109.740968px;}
.y1_c00266{bottom:129.810450px;}
.y2b_c00266{bottom:149.429891px;}
.y2a_c00266{bottom:170.940450px;}
.y29_c00266{bottom:185.700644px;}
.y28_c00266{bottom:227.910450px;}
.y27_c00266{bottom:252.750183px;}
.y26_c00266{bottom:274.620450px;}
.y25_c00266{bottom:323.580675px;}
.y24_c00266{bottom:353.820563px;}
.y23_c00266{bottom:384.060765px;}
.y22_c00266{bottom:415.469987px;}
.y21_c00266{bottom:445.709874px;}
.y20_c00266{bottom:475.860486px;}
.y1f_c00266{bottom:506.100374px;}
.y1e_c00266{bottom:536.250986px;}
.y1d_c00266{bottom:566.490873px;}
.y1c_c00266{bottom:596.641485px;}
.y1b_c00266{bottom:626.881372px;}
.y1a_c00266{bottom:657.121260px;}
.y19_c00266{bottom:687.271872px;}
.y18_c00266{bottom:710.401229px;}
.y17_c00266{bottom:733.530585px;}
.y16_c00266{bottom:756.570666px;}
.y15_c00266{bottom:776.820450px;}
.y13_c00266{bottom:797.699474px;}
.y12_c00266{bottom:817.859982px;}
.y14_c00266{bottom:838.018740px;}
.y11_c00266{bottom:838.020491px;}
.y10_c00266{bottom:876.359942px;}
.yf_c00266{bottom:896.520450px;}
.yb_c00266{bottom:917.490450px;}
.ya_c00266{bottom:938.280450px;}
.ye_c00266{bottom:939.450472px;}
.y9_c00266{bottom:959.160450px;}
.yd_c00266{bottom:959.519955px;}
.yc_c00266{bottom:979.680464px;}
.y8_c00266{bottom:980.040600px;}
.y7_c00266{bottom:1000.919892px;}
.y6_c00266{bottom:1039.170067px;}
.y5_c00266{bottom:1062.390450px;}
.y4_c00266{bottom:1087.230183px;}
.y3_c00266{bottom:1109.100450px;}
.h6_c00266{height:39.338549px;}
.h7_c00266{height:54.098549px;}
.h4_c00266{height:62.600889px;}
.h5_c00266{height:62.770576px;}
.h1_c00266{height:62.771836px;}
.h3_c00266{height:63.216299px;}
.h2_c00266{height:68.589413px;}
.h0_c00266{height:1263.000000px;}
.w0_c00266{width:892.500000px;}
.x0_c00266{left:0.000000px;}
.x2_c00266{left:82.710059px;}
.x3_c00266{left:228.689447px;}
.x8_c00266{left:336.870000px;}
.x6_c00266{left:400.049946px;}
.x4_c00266{left:405.450239px;}
.x1_c00266{left:431.730000px;}
.x5_c00266{left:440.549514px;}
.x9_c00266{left:446.400536px;}
.x7_c00266{left:516.150108px;}
@media print{
.v2_c00266{vertical-align:-13.120000pt;}
.v0_c00266{vertical-align:0.000000pt;}
.v1_c00266{vertical-align:15.678880pt;}
.lsd_c00266{letter-spacing:-0.290380pt;}
.ls1b_c00266{letter-spacing:-0.275442pt;}
.ls14_c00266{letter-spacing:-0.219361pt;}
.ls18_c00266{letter-spacing:-0.218275pt;}
.ls16_c00266{letter-spacing:-0.162072pt;}
.ls1c_c00266{letter-spacing:-0.145516pt;}
.lsc_c00266{letter-spacing:-0.114801pt;}
.lsb_c00266{letter-spacing:-0.094542pt;}
.ls15_c00266{letter-spacing:-0.087789pt;}
.lsa_c00266{letter-spacing:-0.081036pt;}
.lse_c00266{letter-spacing:-0.074688pt;}
.ls17_c00266{letter-spacing:-0.067217pt;}
.ls1d_c00266{letter-spacing:-0.062364pt;}
.ls1e_c00266{letter-spacing:-0.057167pt;}
.ls8_c00266{letter-spacing:-0.056016pt;}
.ls1a_c00266{letter-spacing:-0.046773pt;}
.ls12_c00266{letter-spacing:-0.043568pt;}
.ls10_c00266{letter-spacing:-0.031120pt;}
.lsf_c00266{letter-spacing:-0.024896pt;}
.ls11_c00266{letter-spacing:-0.018672pt;}
.ls13_c00266{letter-spacing:-0.012448pt;}
.ls9_c00266{letter-spacing:0.000000pt;}
.ls0_c00266{letter-spacing:0.006224pt;}
.ls7_c00266{letter-spacing:0.010394pt;}
.ls3_c00266{letter-spacing:0.024896pt;}
.ls4_c00266{letter-spacing:0.031120pt;}
.ls5_c00266{letter-spacing:0.054024pt;}
.ls1_c00266{letter-spacing:0.068464pt;}
.ls6_c00266{letter-spacing:0.074283pt;}
.ls2_c00266{letter-spacing:0.112032pt;}
.ls19_c00266{letter-spacing:0.280639pt;}
.ws5_c00266{word-spacing:-51.970133pt;}
.ws1_c00266{word-spacing:-17.327616pt;}
.ws2_c00266{word-spacing:-17.308944pt;}
.ws0_c00266{word-spacing:-17.271600pt;}
.ws6_c00266{word-spacing:-14.250211pt;}
.ws3_c00266{word-spacing:-11.245337pt;}
.ws4_c00266{word-spacing:-9.242347pt;}
.ws21_c00266{word-spacing:-0.276874pt;}
.ws27_c00266{word-spacing:-0.244260pt;}
.ws11_c00266{word-spacing:-0.124480pt;}
.ws1f_c00266{word-spacing:-0.060777pt;}
.wsc_c00266{word-spacing:-0.018672pt;}
.ws7_c00266{word-spacing:0.000000pt;}
.ws14_c00266{word-spacing:0.031120pt;}
.ws8_c00266{word-spacing:0.040518pt;}
.ws1e_c00266{word-spacing:0.047271pt;}
.ws9_c00266{word-spacing:0.054024pt;}
.ws28_c00266{word-spacing:0.067561pt;}
.wsa_c00266{word-spacing:0.229602pt;}
.ws1d_c00266{word-spacing:0.273856pt;}
.ws12_c00266{word-spacing:0.323648pt;}
.wsb_c00266{word-spacing:0.324145pt;}
.wse_c00266{word-spacing:0.329872pt;}
.ws20_c00266{word-spacing:0.330898pt;}
.ws1c_c00266{word-spacing:0.964720pt;}
.ws18_c00266{word-spacing:1.923216pt;}
.ws1a_c00266{word-spacing:2.570512pt;}
.ws1b_c00266{word-spacing:2.601632pt;}
.ws25_c00266{word-spacing:3.201360pt;}
.ws23_c00266{word-spacing:3.253330pt;}
.ws24_c00266{word-spacing:3.258527pt;}
.ws26_c00266{word-spacing:3.487196pt;}
.ws22_c00266{word-spacing:3.752244pt;}
.ws17_c00266{word-spacing:10.574576pt;}
.ws15_c00266{word-spacing:14.701088pt;}
.ws16_c00266{word-spacing:14.725984pt;}
.ws19_c00266{word-spacing:34.866848pt;}
.wsf_c00266{word-spacing:38.738176pt;}
.ws10_c00266{word-spacing:38.763072pt;}
.wsd_c00266{word-spacing:38.781744pt;}
.ws13_c00266{word-spacing:39.061824pt;}
._4_c00266{margin-left:-38.339840pt;}
._9_c00266{margin-left:-2.408688pt;}
._7_c00266{margin-left:-1.014512pt;}
._0_c00266{width:1.026458pt;}
._8_c00266{width:5.271728pt;}
._1_c00266{width:38.719504pt;}
._6_c00266{width:168.004432pt;}
._2_c00266{width:685.698080pt;}
._3_c00266{width:875.523856pt;}
._5_c00266{width:913.608512pt;}
.fs3_c00266{font-size:33.608533pt;}
.fs2_c00266{font-size:41.388800pt;}
.fs4_c00266{font-size:51.970133pt;}
.fs0_c00266{font-size:62.240000pt;}
.fs1_c00266{font-size:67.530133pt;}
.y0_c00266{bottom:0.000000pt;}
.y2_c00266{bottom:97.547527pt;}
.y1_c00266{bottom:115.387067pt;}
.y2b_c00266{bottom:132.826570pt;}
.y2a_c00266{bottom:151.947067pt;}
.y29_c00266{bottom:165.067239pt;}
.y28_c00266{bottom:202.587067pt;}
.y27_c00266{bottom:224.666830pt;}
.y26_c00266{bottom:244.107067pt;}
.y25_c00266{bottom:287.627267pt;}
.y24_c00266{bottom:314.507167pt;}
.y23_c00266{bottom:341.387347pt;}
.y22_c00266{bottom:369.306655pt;}
.y21_c00266{bottom:396.186555pt;}
.y20_c00266{bottom:422.987099pt;}
.y1f_c00266{bottom:449.866999pt;}
.y1e_c00266{bottom:476.667543pt;}
.y1d_c00266{bottom:503.547443pt;}
.y1c_c00266{bottom:530.347987pt;}
.y1b_c00266{bottom:557.227887pt;}
.y1a_c00266{bottom:584.107787pt;}
.y19_c00266{bottom:610.908331pt;}
.y18_c00266{bottom:631.467759pt;}
.y17_c00266{bottom:652.027187pt;}
.y16_c00266{bottom:672.507259pt;}
.y15_c00266{bottom:690.507067pt;}
.y13_c00266{bottom:709.066199pt;}
.y12_c00266{bottom:726.986651pt;}
.y14_c00266{bottom:744.905547pt;}
.y11_c00266{bottom:744.907103pt;}
.y10_c00266{bottom:778.986615pt;}
.yf_c00266{bottom:796.907067pt;}
.yb_c00266{bottom:815.547067pt;}
.ya_c00266{bottom:834.027067pt;}
.ye_c00266{bottom:835.067087pt;}
.y9_c00266{bottom:852.587067pt;}
.yd_c00266{bottom:852.906627pt;}
.yc_c00266{bottom:870.827079pt;}
.y8_c00266{bottom:871.147200pt;}
.y7_c00266{bottom:889.706571pt;}
.y6_c00266{bottom:923.706727pt;}
.y5_c00266{bottom:944.347067pt;}
.y4_c00266{bottom:966.426830pt;}
.y3_c00266{bottom:985.867067pt;}
.h6_c00266{height:34.967599pt;}
.h7_c00266{height:48.087599pt;}
.h4_c00266{height:55.645234pt;}
.h5_c00266{height:55.796067pt;}
.h1_c00266{height:55.797187pt;}
.h3_c00266{height:56.192266pt;}
.h2_c00266{height:60.968367pt;}
.h0_c00266{height:1122.666667pt;}
.w0_c00266{width:793.333333pt;}
.x0_c00266{left:0.000000pt;}
.x2_c00266{left:73.520052pt;}
.x3_c00266{left:203.279508pt;}
.x8_c00266{left:299.440000pt;}
.x6_c00266{left:355.599952pt;}
.x4_c00266{left:360.400212pt;}
.x1_c00266{left:383.760000pt;}
.x5_c00266{left:391.599568pt;}
.x9_c00266{left:396.800476pt;}
.x7_c00266{left:458.800096pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5b6147ad21f13d8cee3c22c4.woff2')format("woff");}.ff1_c00267{font-family:ff1_c00267;line-height:1.106934;font-style:normal;font-weight:normal;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_7b9ff58777d15b59735570c7.woff2')format("woff");}.ff2_c00267{font-family:ff2_c00267;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00267;src:url('chunks/assets/font_ad4b1eb687054ad1256c1cf3.woff2')format("woff");}.ff3_c00267{font-family:ff3_c00267;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00267;src:url('chunks/assets/font_8dcdac59b1799285412b7e15.woff2')format("woff");}.ff4_c00267{font-family:ff4_c00267;line-height:1.104492;font-style:normal;font-weight:normal;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_7e3eae6d6317031fe06c4b6f.woff2')format("woff");}.ff5_c00267{font-family:ff5_c00267;line-height:0.892090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00267{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00267{vertical-align:0.000000px;}
.v1_c00267{vertical-align:43.202340px;}
.ls10_c00267{letter-spacing:-0.182331px;}
.lsf_c00267{letter-spacing:-0.083569px;}
.ls7_c00267{letter-spacing:-0.063018px;}
.ls9_c00267{letter-spacing:-0.049014px;}
.lsb_c00267{letter-spacing:-0.042012px;}
.lse_c00267{letter-spacing:-0.035010px;}
.ls13_c00267{letter-spacing:-0.028008px;}
.lsc_c00267{letter-spacing:-0.021006px;}
.lsa_c00267{letter-spacing:-0.014004px;}
.ls12_c00267{letter-spacing:-0.007002px;}
.ls8_c00267{letter-spacing:0.000000px;}
.ls3_c00267{letter-spacing:0.014004px;}
.ls0_c00267{letter-spacing:0.028008px;}
.ls1_c00267{letter-spacing:0.045583px;}
.ls2_c00267{letter-spacing:0.083569px;}
.ls5_c00267{letter-spacing:0.091026px;}
.ls6_c00267{letter-spacing:0.217062px;}
.ls11_c00267{letter-spacing:0.343098px;}
.ls4_c00267{letter-spacing:50.015286px;}
.lsd_c00267{letter-spacing:69.102738px;}
.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;}
}
.ws1_c00267{word-spacing:-70.020000px;}
.ws0_c00267{word-spacing:-19.493568px;}
.ws12_c00267{word-spacing:-0.311483px;}
.ws10_c00267{word-spacing:-0.151943px;}
.ws1a_c00267{word-spacing:-0.105030px;}
.ws19_c00267{word-spacing:-0.035010px;}
.ws16_c00267{word-spacing:-0.007002px;}
.ws2_c00267{word-spacing:0.000000px;}
.ws1b_c00267{word-spacing:0.014004px;}
.wse_c00267{word-spacing:0.021006px;}
.ws5_c00267{word-spacing:0.028008px;}
.ws3_c00267{word-spacing:0.035010px;}
.ws9_c00267{word-spacing:0.049014px;}
.wsf_c00267{word-spacing:0.075971px;}
.ws7_c00267{word-spacing:0.364104px;}
.ws11_c00267{word-spacing:0.372260px;}
.wsd_c00267{word-spacing:2.898828px;}
.ws14_c00267{word-spacing:3.592026px;}
.wsc_c00267{word-spacing:4.320234px;}
.ws13_c00267{word-spacing:4.649328px;}
.wsb_c00267{word-spacing:6.868962px;}
.ws17_c00267{word-spacing:9.011574px;}
.wsa_c00267{word-spacing:9.361674px;}
.ws18_c00267{word-spacing:9.368676px;}
.ws15_c00267{word-spacing:10.797084px;}
.ws1c_c00267{word-spacing:13.695912px;}
.ws8_c00267{word-spacing:49.679190px;}
.ws4_c00267{word-spacing:87.482988px;}
.ws6_c00267{word-spacing:87.510996px;}
._2_c00267{margin-left:-87.125886px;}
._5_c00267{margin-left:-49.322088px;}
._a_c00267{margin-left:-1.072988px;}
._9_c00267{width:1.498428px;}
._0_c00267{width:87.482988px;}
._8_c00267{width:319.088142px;}
._7_c00267{width:1055.145384px;}
._3_c00267{width:1238.044626px;}
._4_c00267{width:1330.513038px;}
._1_c00267{width:1334.161080px;}
._6_c00267{width:1440.003312px;}
.fc0_c00267{color:rgb(0,0,0);}
.fs0_c00267{font-size:70.020000px;}
.fs1_c00267{font-size:75.971400px;}
.y0_c00267{bottom:0.000000px;}
.y2_c00267{bottom:109.740968px;}
.y1_c00267{bottom:129.810450px;}
.y26_c00267{bottom:165.359564px;}
.y25_c00267{bottom:195.599451px;}
.y24_c00267{bottom:225.750063px;}
.y23_c00267{bottom:255.989951px;}
.y22_c00267{bottom:286.140562px;}
.y21_c00267{bottom:316.380864px;}
.y20_c00267{bottom:346.439730px;}
.y1f_c00267{bottom:377.848951px;}
.y1e_c00267{bottom:408.088839px;}
.y1d_c00267{bottom:438.239451px;}
.y1c_c00267{bottom:468.479338px;}
.y1b_c00267{bottom:498.629950px;}
.y1a_c00267{bottom:528.869838px;}
.y19_c00267{bottom:559.020450px;}
.y18_c00267{bottom:583.860183px;}
.y17_c00267{bottom:605.730450px;}
.y16_c00267{bottom:647.579959px;}
.y15_c00267{bottom:670.709316px;}
.y14_c00267{bottom:701.040229px;}
.y13_c00267{bottom:731.190842px;}
.y12_c00267{bottom:761.430729px;}
.y11_c00267{bottom:791.581341px;}
.y10_c00267{bottom:821.821228px;}
.yf_c00267{bottom:844.950585px;}
.ye_c00267{bottom:867.990666px;}
.yd_c00267{bottom:888.240450px;}
.yc_c00267{bottom:909.120450px;}
.yb_c00267{bottom:930.000491px;}
.ya_c00267{bottom:968.339942px;}
.y9_c00267{bottom:988.500450px;}
.y7_c00267{bottom:1009.470450px;}
.y6_c00267{bottom:1030.260450px;}
.y8_c00267{bottom:1041.150999px;}
.y5_c00267{bottom:1051.230450px;}
.y4_c00267{bottom:1072.022326px;}
.y3_c00267{bottom:1110.361778px;}
.h5_c00267{height:62.600889px;}
.h1_c00267{height:62.771836px;}
.h2_c00267{height:63.216299px;}
.h4_c00267{height:68.589413px;}
.h3_c00267{height:105.974176px;}
.h0_c00267{height:1263.000000px;}
.w0_c00267{width:892.500000px;}
.x0_c00267{left:0.000000px;}
.x2_c00267{left:82.710059px;}
.xa_c00267{left:108.990256px;}
.xb_c00267{left:135.270090px;}
.x8_c00267{left:148.230869px;}
.x9_c00267{left:153.090000px;}
.x3_c00267{left:154.979451px;}
.x6_c00267{left:336.870000px;}
.x1_c00267{left:431.730000px;}
.x7_c00267{left:446.400536px;}
.x4_c00267{left:459.540743px;}
.x5_c00267{left:616.410050px;}
@media print{
.v0_c00267{vertical-align:0.000000pt;}
.v1_c00267{vertical-align:38.402080pt;}
.ls10_c00267{letter-spacing:-0.162072pt;}
.lsf_c00267{letter-spacing:-0.074283pt;}
.ls7_c00267{letter-spacing:-0.056016pt;}
.ls9_c00267{letter-spacing:-0.043568pt;}
.lsb_c00267{letter-spacing:-0.037344pt;}
.lse_c00267{letter-spacing:-0.031120pt;}
.ls13_c00267{letter-spacing:-0.024896pt;}
.lsc_c00267{letter-spacing:-0.018672pt;}
.lsa_c00267{letter-spacing:-0.012448pt;}
.ls12_c00267{letter-spacing:-0.006224pt;}
.ls8_c00267{letter-spacing:0.000000pt;}
.ls3_c00267{letter-spacing:0.012448pt;}
.ls0_c00267{letter-spacing:0.024896pt;}
.ls1_c00267{letter-spacing:0.040518pt;}
.ls2_c00267{letter-spacing:0.074283pt;}
.ls5_c00267{letter-spacing:0.080912pt;}
.ls6_c00267{letter-spacing:0.192944pt;}
.ls11_c00267{letter-spacing:0.304976pt;}
.ls4_c00267{letter-spacing:44.458032pt;}
.lsd_c00267{letter-spacing:61.424656pt;}
.ws1_c00267{word-spacing:-62.240000pt;}
.ws0_c00267{word-spacing:-17.327616pt;}
.ws12_c00267{word-spacing:-0.276874pt;}
.ws10_c00267{word-spacing:-0.135060pt;}
.ws1a_c00267{word-spacing:-0.093360pt;}
.ws19_c00267{word-spacing:-0.031120pt;}
.ws16_c00267{word-spacing:-0.006224pt;}
.ws2_c00267{word-spacing:0.000000pt;}
.ws1b_c00267{word-spacing:0.012448pt;}
.wse_c00267{word-spacing:0.018672pt;}
.ws5_c00267{word-spacing:0.024896pt;}
.ws3_c00267{word-spacing:0.031120pt;}
.ws9_c00267{word-spacing:0.043568pt;}
.wsf_c00267{word-spacing:0.067530pt;}
.ws7_c00267{word-spacing:0.323648pt;}
.ws11_c00267{word-spacing:0.330898pt;}
.wsd_c00267{word-spacing:2.576736pt;}
.ws14_c00267{word-spacing:3.192912pt;}
.wsc_c00267{word-spacing:3.840208pt;}
.ws13_c00267{word-spacing:4.132736pt;}
.wsb_c00267{word-spacing:6.105744pt;}
.ws17_c00267{word-spacing:8.010288pt;}
.wsa_c00267{word-spacing:8.321488pt;}
.ws18_c00267{word-spacing:8.327712pt;}
.ws15_c00267{word-spacing:9.597408pt;}
.ws1c_c00267{word-spacing:12.174144pt;}
.ws8_c00267{word-spacing:44.159280pt;}
.ws4_c00267{word-spacing:77.762656pt;}
.ws6_c00267{word-spacing:77.787552pt;}
._2_c00267{margin-left:-77.445232pt;}
._5_c00267{margin-left:-43.841856pt;}
._a_c00267{margin-left:-0.953767pt;}
._9_c00267{width:1.331936pt;}
._0_c00267{width:77.762656pt;}
._8_c00267{width:283.633904pt;}
._7_c00267{width:937.907008pt;}
._3_c00267{width:1100.484112pt;}
._4_c00267{width:1182.678256pt;}
._1_c00267{width:1185.920960pt;}
._6_c00267{width:1280.002944pt;}
.fs0_c00267{font-size:62.240000pt;}
.fs1_c00267{font-size:67.530133pt;}
.y0_c00267{bottom:0.000000pt;}
.y2_c00267{bottom:97.547527pt;}
.y1_c00267{bottom:115.387067pt;}
.y26_c00267{bottom:146.986279pt;}
.y25_c00267{bottom:173.866179pt;}
.y24_c00267{bottom:200.666723pt;}
.y23_c00267{bottom:227.546623pt;}
.y22_c00267{bottom:254.347167pt;}
.y21_c00267{bottom:281.227435pt;}
.y20_c00267{bottom:307.946427pt;}
.y1f_c00267{bottom:335.865735pt;}
.y1e_c00267{bottom:362.745635pt;}
.y1d_c00267{bottom:389.546179pt;}
.y1c_c00267{bottom:416.426079pt;}
.y1b_c00267{bottom:443.226623pt;}
.y1a_c00267{bottom:470.106523pt;}
.y19_c00267{bottom:496.907067pt;}
.y18_c00267{bottom:518.986830pt;}
.y17_c00267{bottom:538.427067pt;}
.y16_c00267{bottom:575.626631pt;}
.y15_c00267{bottom:596.186059pt;}
.y14_c00267{bottom:623.146871pt;}
.y13_c00267{bottom:649.947415pt;}
.y12_c00267{bottom:676.827315pt;}
.y11_c00267{bottom:703.627859pt;}
.y10_c00267{bottom:730.507759pt;}
.yf_c00267{bottom:751.067187pt;}
.ye_c00267{bottom:771.547259pt;}
.yd_c00267{bottom:789.547067pt;}
.yc_c00267{bottom:808.107067pt;}
.yb_c00267{bottom:826.667103pt;}
.ya_c00267{bottom:860.746615pt;}
.y9_c00267{bottom:878.667067pt;}
.y7_c00267{bottom:897.307067pt;}
.y6_c00267{bottom:915.787067pt;}
.y8_c00267{bottom:925.467555pt;}
.y5_c00267{bottom:934.427067pt;}
.y4_c00267{bottom:952.908735pt;}
.y3_c00267{bottom:986.988247pt;}
.h5_c00267{height:55.645234pt;}
.h1_c00267{height:55.797187pt;}
.h2_c00267{height:56.192266pt;}
.h4_c00267{height:60.968367pt;}
.h3_c00267{height:94.199267pt;}
.h0_c00267{height:1122.666667pt;}
.w0_c00267{width:793.333333pt;}
.x0_c00267{left:0.000000pt;}
.x2_c00267{left:73.520052pt;}
.xa_c00267{left:96.880228pt;}
.xb_c00267{left:120.240080pt;}
.x8_c00267{left:131.760772pt;}
.x9_c00267{left:136.080000pt;}
.x3_c00267{left:137.759512pt;}
.x6_c00267{left:299.440000pt;}
.x1_c00267{left:383.760000pt;}
.x7_c00267{left:396.800476pt;}
.x4_c00267{left:408.480660pt;}
.x5_c00267{left:547.920044pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_522e96fb9101327a2a7c138f.woff2')format("woff");}.ff1_c00268{font-family:ff1_c00268;line-height:1.106934;font-style:normal;font-weight:normal;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_0b5185007e9f2fd7a0eb1278.woff2')format("woff");}.ff2_c00268{font-family:ff2_c00268;line-height:0.892090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00268;src:url('chunks/assets/font_25c8ff884c351daf717491de.woff2')format("woff");}.ff3_c00268{font-family:ff3_c00268;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00268;src:url('chunks/assets/font_3c00900a5ed093a53dd21ba5.woff2')format("woff");}.ff4_c00268{font-family:ff4_c00268;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00268{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00268{vertical-align:-14.760600px;}
.v0_c00268{vertical-align:0.000000px;}
.v1_c00268{vertical-align:17.644572px;}
.ls11_c00268{letter-spacing:-0.246781px;}
.ls14_c00268{letter-spacing:-0.126036px;}
.ls16_c00268{letter-spacing:-0.075619px;}
.lsb_c00268{letter-spacing:-0.063018px;}
.ls15_c00268{letter-spacing:-0.056016px;}
.ls13_c00268{letter-spacing:-0.049014px;}
.lse_c00268{letter-spacing:-0.035010px;}
.lsf_c00268{letter-spacing:-0.028008px;}
.ls12_c00268{letter-spacing:-0.021006px;}
.lsd_c00268{letter-spacing:-0.014004px;}
.ls10_c00268{letter-spacing:-0.007002px;}
.lsc_c00268{letter-spacing:0.000000px;}
.ls2_c00268{letter-spacing:0.007002px;}
.ls1_c00268{letter-spacing:0.014004px;}
.ls6_c00268{letter-spacing:0.021006px;}
.lsa_c00268{letter-spacing:0.023387px;}
.ls5_c00268{letter-spacing:0.035010px;}
.ls3_c00268{letter-spacing:0.070020px;}
.ls8_c00268{letter-spacing:0.091026px;}
.ls9_c00268{letter-spacing:0.133038px;}
.ls4_c00268{letter-spacing:0.203058px;}
.ls0_c00268{letter-spacing:0.217062px;}
.ls7_c00268{letter-spacing:0.245070px;}
.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:-12.651004px;}
.ws1_c00268{word-spacing:-10.397640px;}
.ws5_c00268{word-spacing:-0.028008px;}
.ws23_c00268{word-spacing:-0.011693px;}
.wsa_c00268{word-spacing:-0.007002px;}
.ws2_c00268{word-spacing:0.000000px;}
.wsb_c00268{word-spacing:0.014004px;}
.ws3_c00268{word-spacing:5.041440px;}
.ws7_c00268{word-spacing:6.133752px;}
.ws6_c00268{word-spacing:10.425978px;}
.ws8_c00268{word-spacing:11.210202px;}
.ws9_c00268{word-spacing:11.539296px;}
.ws4_c00268{word-spacing:25.578306px;}
.ws16_c00268{word-spacing:738.668988px;}
.ws13_c00268{word-spacing:758.918772px;}
.ws1c_c00268{word-spacing:840.134970px;}
.ws20_c00268{word-spacing:879.332166px;}
.ws1e_c00268{word-spacing:887.041368px;}
.ws1b_c00268{word-spacing:902.263716px;}
.wsc_c00268{word-spacing:914.020074px;}
.ws15_c00268{word-spacing:914.041080px;}
.wse_c00268{word-spacing:925.930476px;}
.ws19_c00268{word-spacing:929.872602px;}
.ws12_c00268{word-spacing:949.674258px;}
.ws21_c00268{word-spacing:964.784574px;}
.ws17_c00268{word-spacing:968.726700px;}
.ws18_c00268{word-spacing:976.645962px;}
.ws10_c00268{word-spacing:976.694976px;}
.ws1a_c00268{word-spacing:980.244990px;}
.wsd_c00268{word-spacing:984.600234px;}
.ws22_c00268{word-spacing:988.605378px;}
.ws11_c00268{word-spacing:1019.078082px;}
.wsf_c00268{word-spacing:1023.503346px;}
.ws1f_c00268{word-spacing:1050.482052px;}
.ws14_c00268{word-spacing:1053.864018px;}
.ws1d_c00268{word-spacing:1121.153238px;}
._6_c00268{margin-left:-2.709774px;}
._2_c00268{margin-left:-1.358388px;}
._1_c00268{width:1.148328px;}
._5_c00268{width:5.930694px;}
._3_c00268{width:34.197768px;}
._0_c00268{width:39.596310px;}
._4_c00268{width:498.675438px;}
.fc0_c00268{color:rgb(0,0,0);}
.fs2_c00268{font-size:37.809600px;}
.fs1_c00268{font-size:46.562400px;}
.fs3_c00268{font-size:58.466400px;}
.fs0_c00268{font-size:70.020000px;}
.y0_c00268{bottom:0.000000px;}
.y2_c00268{bottom:109.740968px;}
.y1_c00268{bottom:129.810450px;}
.y29_c00268{bottom:153.120600px;}
.y28_c00268{bottom:167.790600px;}
.y27_c00268{bottom:200.460600px;}
.y26_c00268{bottom:222.060450px;}
.y25_c00268{bottom:243.660450px;}
.y24_c00268{bottom:265.260450px;}
.y23_c00268{bottom:286.860450px;}
.y22_c00268{bottom:308.460600px;}
.y21_c00268{bottom:329.970450px;}
.y20_c00268{bottom:351.570450px;}
.y1f_c00268{bottom:373.260450px;}
.y1e_c00268{bottom:394.770600px;}
.y1d_c00268{bottom:416.370600px;}
.y1c_c00268{bottom:437.970450px;}
.y1b_c00268{bottom:459.570450px;}
.y1a_c00268{bottom:481.170450px;}
.y19_c00268{bottom:502.680600px;}
.y18_c00268{bottom:524.280600px;}
.y17_c00268{bottom:545.880450px;}
.y16_c00268{bottom:567.480450px;}
.y15_c00268{bottom:589.080450px;}
.y14_c00268{bottom:610.680450px;}
.y13_c00268{bottom:632.190450px;}
.y12_c00268{bottom:653.880450px;}
.y11_c00268{bottom:675.480450px;}
.y10_c00268{bottom:714.450585px;}
.yf_c00268{bottom:739.200904px;}
.ye_c00268{bottom:762.240986px;}
.yd_c00268{bottom:792.749307px;}
.yc_c00268{bottom:824.158529px;}
.yb_c00268{bottom:854.398416px;}
.ya_c00268{bottom:884.549028px;}
.y9_c00268{bottom:929.279555px;}
.y8_c00268{bottom:959.519442px;}
.y7_c00268{bottom:989.670054px;}
.y6_c00268{bottom:1019.909942px;}
.y5_c00268{bottom:1050.060553px;}
.y4_c00268{bottom:1080.300441px;}
.y3_c00268{bottom:1110.451053px;}
.h4_c00268{height:39.337949px;}
.h1_c00268{height:62.771836px;}
.h2_c00268{height:62.776408px;}
.h3_c00268{height:63.216299px;}
.h0_c00268{height:1263.000000px;}
.w0_c00268{width:892.500000px;}
.x0_c00268{left:0.000000px;}
.x2_c00268{left:82.710059px;}
.x5_c00268{left:103.410149px;}
.x3_c00268{left:134.370814px;}
.x4_c00268{left:160.651071px;}
.x1_c00268{left:431.730000px;}
@media print{
.v2_c00268{vertical-align:-13.120533pt;}
.v0_c00268{vertical-align:0.000000pt;}
.v1_c00268{vertical-align:15.684064pt;}
.ls11_c00268{letter-spacing:-0.219361pt;}
.ls14_c00268{letter-spacing:-0.112032pt;}
.ls16_c00268{letter-spacing:-0.067217pt;}
.lsb_c00268{letter-spacing:-0.056016pt;}
.ls15_c00268{letter-spacing:-0.049792pt;}
.ls13_c00268{letter-spacing:-0.043568pt;}
.lse_c00268{letter-spacing:-0.031120pt;}
.lsf_c00268{letter-spacing:-0.024896pt;}
.ls12_c00268{letter-spacing:-0.018672pt;}
.lsd_c00268{letter-spacing:-0.012448pt;}
.ls10_c00268{letter-spacing:-0.006224pt;}
.lsc_c00268{letter-spacing:0.000000pt;}
.ls2_c00268{letter-spacing:0.006224pt;}
.ls1_c00268{letter-spacing:0.012448pt;}
.ls6_c00268{letter-spacing:0.018672pt;}
.lsa_c00268{letter-spacing:0.020788pt;}
.ls5_c00268{letter-spacing:0.031120pt;}
.ls3_c00268{letter-spacing:0.062240pt;}
.ls8_c00268{letter-spacing:0.080912pt;}
.ls9_c00268{letter-spacing:0.118256pt;}
.ls4_c00268{letter-spacing:0.180496pt;}
.ls0_c00268{letter-spacing:0.192944pt;}
.ls7_c00268{letter-spacing:0.217840pt;}
.ws0_c00268{word-spacing:-11.245337pt;}
.ws1_c00268{word-spacing:-9.242347pt;}
.ws5_c00268{word-spacing:-0.024896pt;}
.ws23_c00268{word-spacing:-0.010394pt;}
.wsa_c00268{word-spacing:-0.006224pt;}
.ws2_c00268{word-spacing:0.000000pt;}
.wsb_c00268{word-spacing:0.012448pt;}
.ws3_c00268{word-spacing:4.481280pt;}
.ws7_c00268{word-spacing:5.452224pt;}
.ws6_c00268{word-spacing:9.267536pt;}
.ws8_c00268{word-spacing:9.964624pt;}
.ws9_c00268{word-spacing:10.257152pt;}
.ws4_c00268{word-spacing:22.736272pt;}
.ws16_c00268{word-spacing:656.594656pt;}
.ws13_c00268{word-spacing:674.594464pt;}
.ws1c_c00268{word-spacing:746.786640pt;}
.ws20_c00268{word-spacing:781.628592pt;}
.ws1e_c00268{word-spacing:788.481216pt;}
.ws1b_c00268{word-spacing:802.012192pt;}
.wsc_c00268{word-spacing:812.462288pt;}
.ws15_c00268{word-spacing:812.480960pt;}
.wse_c00268{word-spacing:823.049312pt;}
.ws19_c00268{word-spacing:826.553424pt;}
.ws12_c00268{word-spacing:844.154896pt;}
.ws21_c00268{word-spacing:857.586288pt;}
.ws17_c00268{word-spacing:861.090400pt;}
.ws18_c00268{word-spacing:868.129744pt;}
.ws10_c00268{word-spacing:868.173312pt;}
.ws1a_c00268{word-spacing:871.328880pt;}
.wsd_c00268{word-spacing:875.200208pt;}
.ws22_c00268{word-spacing:878.760336pt;}
.ws11_c00268{word-spacing:905.847184pt;}
.wsf_c00268{word-spacing:909.780752pt;}
.ws1f_c00268{word-spacing:933.761824pt;}
.ws14_c00268{word-spacing:936.768016pt;}
.ws1d_c00268{word-spacing:996.580656pt;}
._6_c00268{margin-left:-2.408688pt;}
._2_c00268{margin-left:-1.207456pt;}
._1_c00268{width:1.020736pt;}
._5_c00268{width:5.271728pt;}
._3_c00268{width:30.398016pt;}
._0_c00268{width:35.196720pt;}
._4_c00268{width:443.267056pt;}
.fs2_c00268{font-size:33.608533pt;}
.fs1_c00268{font-size:41.388800pt;}
.fs3_c00268{font-size:51.970133pt;}
.fs0_c00268{font-size:62.240000pt;}
.y0_c00268{bottom:0.000000pt;}
.y2_c00268{bottom:97.547527pt;}
.y1_c00268{bottom:115.387067pt;}
.y29_c00268{bottom:136.107200pt;}
.y28_c00268{bottom:149.147200pt;}
.y27_c00268{bottom:178.187200pt;}
.y26_c00268{bottom:197.387067pt;}
.y25_c00268{bottom:216.587067pt;}
.y24_c00268{bottom:235.787067pt;}
.y23_c00268{bottom:254.987067pt;}
.y22_c00268{bottom:274.187200pt;}
.y21_c00268{bottom:293.307067pt;}
.y20_c00268{bottom:312.507067pt;}
.y1f_c00268{bottom:331.787067pt;}
.y1e_c00268{bottom:350.907200pt;}
.y1d_c00268{bottom:370.107200pt;}
.y1c_c00268{bottom:389.307067pt;}
.y1b_c00268{bottom:408.507067pt;}
.y1a_c00268{bottom:427.707067pt;}
.y19_c00268{bottom:446.827200pt;}
.y18_c00268{bottom:466.027200pt;}
.y17_c00268{bottom:485.227067pt;}
.y16_c00268{bottom:504.427067pt;}
.y15_c00268{bottom:523.627067pt;}
.y14_c00268{bottom:542.827067pt;}
.y13_c00268{bottom:561.947067pt;}
.y12_c00268{bottom:581.227067pt;}
.y11_c00268{bottom:600.427067pt;}
.y10_c00268{bottom:635.067187pt;}
.yf_c00268{bottom:657.067471pt;}
.ye_c00268{bottom:677.547543pt;}
.yd_c00268{bottom:704.666051pt;}
.yc_c00268{bottom:732.585359pt;}
.yb_c00268{bottom:759.465259pt;}
.ya_c00268{bottom:786.265803pt;}
.y9_c00268{bottom:826.026271pt;}
.y8_c00268{bottom:852.906171pt;}
.y7_c00268{bottom:879.706715pt;}
.y6_c00268{bottom:906.586615pt;}
.y5_c00268{bottom:933.387159pt;}
.y4_c00268{bottom:960.267059pt;}
.y3_c00268{bottom:987.067603pt;}
.h4_c00268{height:34.967066pt;}
.h1_c00268{height:55.797187pt;}
.h2_c00268{height:55.801252pt;}
.h3_c00268{height:56.192266pt;}
.h0_c00268{height:1122.666667pt;}
.w0_c00268{width:793.333333pt;}
.x0_c00268{left:0.000000pt;}
.x2_c00268{left:73.520052pt;}
.x5_c00268{left:91.920132pt;}
.x3_c00268{left:119.440724pt;}
.x4_c00268{left:142.800952pt;}
.x1_c00268{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2b5577eea658177963d68501.woff2')format("woff");}.ff1_c00269{font-family:ff1_c00269;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00269{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00269{vertical-align:0.000000px;}
.ls11_c00269{letter-spacing:-0.343098px;}
.ls12_c00269{letter-spacing:-0.308088px;}
.ls9_c00269{letter-spacing:-0.063018px;}
.lsc_c00269{letter-spacing:-0.056016px;}
.ls10_c00269{letter-spacing:-0.042012px;}
.lse_c00269{letter-spacing:-0.035010px;}
.lsf_c00269{letter-spacing:-0.028008px;}
.lsb_c00269{letter-spacing:-0.021006px;}
.lsd_c00269{letter-spacing:-0.014004px;}
.ls13_c00269{letter-spacing:-0.007002px;}
.lsa_c00269{letter-spacing:0.000000px;}
.ls0_c00269{letter-spacing:0.007002px;}
.ls1_c00269{letter-spacing:0.021006px;}
.ls6_c00269{letter-spacing:0.028008px;}
.ls4_c00269{letter-spacing:0.035010px;}
.ls3_c00269{letter-spacing:0.042012px;}
.ls5_c00269{letter-spacing:0.056016px;}
.ls7_c00269{letter-spacing:0.063018px;}
.ls2_c00269{letter-spacing:0.077022px;}
.ls8_c00269{letter-spacing:0.147042px;}
.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;}
.ws6_c00269{word-spacing:754.920630px;}
.ws19_c00269{word-spacing:770.759154px;}
.ws26_c00269{word-spacing:774.323172px;}
.wsd_c00269{word-spacing:805.629114px;}
.ws2_c00269{word-spacing:816.818310px;}
.ws5_c00269{word-spacing:828.630684px;}
.ws24_c00269{word-spacing:833.041944px;}
.ws17_c00269{word-spacing:848.089242px;}
.ws13_c00269{word-spacing:883.442340px;}
.ws1a_c00269{word-spacing:895.002642px;}
.ws1d_c00269{word-spacing:918.368316px;}
.ws9_c00269{word-spacing:921.904326px;}
.ws2b_c00269{word-spacing:929.473488px;}
.ws1c_c00269{word-spacing:929.788578px;}
.ws18_c00269{word-spacing:937.420758px;}
.ws28_c00269{word-spacing:941.684976px;}
.ws1f_c00269{word-spacing:949.702266px;}
.ws15_c00269{word-spacing:950.003352px;}
.ws16_c00269{word-spacing:957.222414px;}
.ws21_c00269{word-spacing:960.765426px;}
.ws8_c00269{word-spacing:964.812582px;}
.wsa_c00269{word-spacing:965.190690px;}
.ws11_c00269{word-spacing:973.025928px;}
.ws10_c00269{word-spacing:980.637102px;}
.ws20_c00269{word-spacing:992.169396px;}
.ws7_c00269{word-spacing:1000.459764px;}
.ws1_c00269{word-spacing:1004.044788px;}
.wse_c00269{word-spacing:1012.286142px;}
.ws12_c00269{word-spacing:1015.142958px;}
.ws2a_c00269{word-spacing:1015.556076px;}
.ws27_c00269{word-spacing:1023.447330px;}
.wsf_c00269{word-spacing:1027.081368px;}
.ws4_c00269{word-spacing:1035.322722px;}
.wsc_c00269{word-spacing:1035.371736px;}
.ws2c_c00269{word-spacing:1038.872736px;}
.ws14_c00269{word-spacing:1038.970764px;}
.wsb_c00269{word-spacing:1042.905888px;}
.ws29_c00269{word-spacing:1046.497914px;}
.ws25_c00269{word-spacing:1050.440040px;}
.ws22_c00269{word-spacing:1054.452186px;}
.ws1e_c00269{word-spacing:1057.995198px;}
.ws3_c00269{word-spacing:1062.399456px;}
.ws2d_c00269{word-spacing:1093.327290px;}
.ws23_c00269{word-spacing:1096.758270px;}
.ws1b_c00269{word-spacing:1105.853868px;}
._3_c00269{margin-left:-1057.967190px;}
._2_c00269{margin-left:-1039.061790px;}
._1_c00269{margin-left:-1.022292px;}
._0_c00269{width:1.316376px;}
.fc0_c00269{color:rgb(0,0,0);}
.fs0_c00269{font-size:70.020000px;}
.y0_c00269{bottom:0.000000px;}
.y2_c00269{bottom:109.740968px;}
.y1_c00269{bottom:129.810450px;}
.y2f_c00269{bottom:159.150450px;}
.y2e_c00269{bottom:180.660450px;}
.y2d_c00269{bottom:202.260450px;}
.y2c_c00269{bottom:223.860450px;}
.y2b_c00269{bottom:245.460600px;}
.y2a_c00269{bottom:267.060450px;}
.y29_c00269{bottom:288.570450px;}
.y28_c00269{bottom:310.260450px;}
.y27_c00269{bottom:331.860450px;}
.y26_c00269{bottom:353.370450px;}
.y25_c00269{bottom:374.970450px;}
.y24_c00269{bottom:396.570450px;}
.y23_c00269{bottom:418.170450px;}
.y22_c00269{bottom:439.770600px;}
.y21_c00269{bottom:461.370600px;}
.y20_c00269{bottom:482.880450px;}
.y1f_c00269{bottom:504.480450px;}
.y1e_c00269{bottom:526.170450px;}
.y1d_c00269{bottom:547.680450px;}
.y1c_c00269{bottom:569.280450px;}
.y1b_c00269{bottom:590.790450px;}
.y1a_c00269{bottom:612.480450px;}
.y19_c00269{bottom:634.080450px;}
.y18_c00269{bottom:655.590450px;}
.y17_c00269{bottom:677.190450px;}
.y16_c00269{bottom:698.790450px;}
.y15_c00269{bottom:720.390450px;}
.y14_c00269{bottom:741.990450px;}
.y13_c00269{bottom:763.590450px;}
.y12_c00269{bottom:785.100450px;}
.y11_c00269{bottom:806.700450px;}
.y10_c00269{bottom:828.390450px;}
.yf_c00269{bottom:849.900450px;}
.ye_c00269{bottom:871.500600px;}
.yd_c00269{bottom:893.100450px;}
.yc_c00269{bottom:914.700450px;}
.yb_c00269{bottom:936.300450px;}
.ya_c00269{bottom:957.810450px;}
.y9_c00269{bottom:979.410450px;}
.y8_c00269{bottom:1001.010450px;}
.y7_c00269{bottom:1022.610450px;}
.y6_c00269{bottom:1044.210450px;}
.y5_c00269{bottom:1065.810450px;}
.y4_c00269{bottom:1087.320450px;}
.y3_c00269{bottom:1109.010391px;}
.h1_c00269{height:62.771836px;}
.h0_c00269{height:1263.000000px;}
.w0_c00269{width:892.500000px;}
.x0_c00269{left:0.000000px;}
.x2_c00269{left:82.710059px;}
.x3_c00269{left:103.409721px;}
.x1_c00269{left:431.730000px;}
@media print{
.v0_c00269{vertical-align:0.000000pt;}
.ls11_c00269{letter-spacing:-0.304976pt;}
.ls12_c00269{letter-spacing:-0.273856pt;}
.ls9_c00269{letter-spacing:-0.056016pt;}
.lsc_c00269{letter-spacing:-0.049792pt;}
.ls10_c00269{letter-spacing:-0.037344pt;}
.lse_c00269{letter-spacing:-0.031120pt;}
.lsf_c00269{letter-spacing:-0.024896pt;}
.lsb_c00269{letter-spacing:-0.018672pt;}
.lsd_c00269{letter-spacing:-0.012448pt;}
.ls13_c00269{letter-spacing:-0.006224pt;}
.lsa_c00269{letter-spacing:0.000000pt;}
.ls0_c00269{letter-spacing:0.006224pt;}
.ls1_c00269{letter-spacing:0.018672pt;}
.ls6_c00269{letter-spacing:0.024896pt;}
.ls4_c00269{letter-spacing:0.031120pt;}
.ls3_c00269{letter-spacing:0.037344pt;}
.ls5_c00269{letter-spacing:0.049792pt;}
.ls7_c00269{letter-spacing:0.056016pt;}
.ls2_c00269{letter-spacing:0.068464pt;}
.ls8_c00269{letter-spacing:0.130704pt;}
.ws0_c00269{word-spacing:0.000000pt;}
.ws6_c00269{word-spacing:671.040560pt;}
.ws19_c00269{word-spacing:685.119248pt;}
.ws26_c00269{word-spacing:688.287264pt;}
.wsd_c00269{word-spacing:716.114768pt;}
.ws2_c00269{word-spacing:726.060720pt;}
.ws5_c00269{word-spacing:736.560608pt;}
.ws24_c00269{word-spacing:740.481728pt;}
.ws17_c00269{word-spacing:753.857104pt;}
.ws13_c00269{word-spacing:785.282080pt;}
.ws1a_c00269{word-spacing:795.557904pt;}
.ws1d_c00269{word-spacing:816.327392pt;}
.ws9_c00269{word-spacing:819.470512pt;}
.ws2b_c00269{word-spacing:826.198656pt;}
.ws1c_c00269{word-spacing:826.478736pt;}
.ws18_c00269{word-spacing:833.262896pt;}
.ws28_c00269{word-spacing:837.053312pt;}
.ws1f_c00269{word-spacing:844.179792pt;}
.ws15_c00269{word-spacing:844.447424pt;}
.ws16_c00269{word-spacing:850.864368pt;}
.ws21_c00269{word-spacing:854.013712pt;}
.ws8_c00269{word-spacing:857.611184pt;}
.wsa_c00269{word-spacing:857.947280pt;}
.ws11_c00269{word-spacing:864.911936pt;}
.ws10_c00269{word-spacing:871.677424pt;}
.ws20_c00269{word-spacing:881.928352pt;}
.ws7_c00269{word-spacing:889.297568pt;}
.ws1_c00269{word-spacing:892.484256pt;}
.wse_c00269{word-spacing:899.809904pt;}
.ws12_c00269{word-spacing:902.349296pt;}
.ws2a_c00269{word-spacing:902.716512pt;}
.ws27_c00269{word-spacing:909.730960pt;}
.wsf_c00269{word-spacing:912.961216pt;}
.ws4_c00269{word-spacing:920.286864pt;}
.wsc_c00269{word-spacing:920.330432pt;}
.ws2c_c00269{word-spacing:923.442432pt;}
.ws14_c00269{word-spacing:923.529568pt;}
.wsb_c00269{word-spacing:927.027456pt;}
.ws29_c00269{word-spacing:930.220368pt;}
.ws25_c00269{word-spacing:933.724480pt;}
.ws22_c00269{word-spacing:937.290832pt;}
.ws1e_c00269{word-spacing:940.440176pt;}
.ws3_c00269{word-spacing:944.355072pt;}
.ws2d_c00269{word-spacing:971.846480pt;}
.ws23_c00269{word-spacing:974.896240pt;}
.ws1b_c00269{word-spacing:982.981216pt;}
._3_c00269{margin-left:-940.415280pt;}
._2_c00269{margin-left:-923.610480pt;}
._1_c00269{margin-left:-0.908704pt;}
._0_c00269{width:1.170112pt;}
.fs0_c00269{font-size:62.240000pt;}
.y0_c00269{bottom:0.000000pt;}
.y2_c00269{bottom:97.547527pt;}
.y1_c00269{bottom:115.387067pt;}
.y2f_c00269{bottom:141.467067pt;}
.y2e_c00269{bottom:160.587067pt;}
.y2d_c00269{bottom:179.787067pt;}
.y2c_c00269{bottom:198.987067pt;}
.y2b_c00269{bottom:218.187200pt;}
.y2a_c00269{bottom:237.387067pt;}
.y29_c00269{bottom:256.507067pt;}
.y28_c00269{bottom:275.787067pt;}
.y27_c00269{bottom:294.987067pt;}
.y26_c00269{bottom:314.107067pt;}
.y25_c00269{bottom:333.307067pt;}
.y24_c00269{bottom:352.507067pt;}
.y23_c00269{bottom:371.707067pt;}
.y22_c00269{bottom:390.907200pt;}
.y21_c00269{bottom:410.107200pt;}
.y20_c00269{bottom:429.227067pt;}
.y1f_c00269{bottom:448.427067pt;}
.y1e_c00269{bottom:467.707067pt;}
.y1d_c00269{bottom:486.827067pt;}
.y1c_c00269{bottom:506.027067pt;}
.y1b_c00269{bottom:525.147067pt;}
.y1a_c00269{bottom:544.427067pt;}
.y19_c00269{bottom:563.627067pt;}
.y18_c00269{bottom:582.747067pt;}
.y17_c00269{bottom:601.947067pt;}
.y16_c00269{bottom:621.147067pt;}
.y15_c00269{bottom:640.347067pt;}
.y14_c00269{bottom:659.547067pt;}
.y13_c00269{bottom:678.747067pt;}
.y12_c00269{bottom:697.867067pt;}
.y11_c00269{bottom:717.067067pt;}
.y10_c00269{bottom:736.347067pt;}
.yf_c00269{bottom:755.467067pt;}
.ye_c00269{bottom:774.667200pt;}
.yd_c00269{bottom:793.867067pt;}
.yc_c00269{bottom:813.067067pt;}
.yb_c00269{bottom:832.267067pt;}
.ya_c00269{bottom:851.387067pt;}
.y9_c00269{bottom:870.587067pt;}
.y8_c00269{bottom:889.787067pt;}
.y7_c00269{bottom:908.987067pt;}
.y6_c00269{bottom:928.187067pt;}
.y5_c00269{bottom:947.387067pt;}
.y4_c00269{bottom:966.507067pt;}
.y3_c00269{bottom:985.787015pt;}
.h1_c00269{height:55.797187pt;}
.h0_c00269{height:1122.666667pt;}
.w0_c00269{width:793.333333pt;}
.x0_c00269{left:0.000000pt;}
.x2_c00269{left:73.520052pt;}
.x3_c00269{left:91.919752pt;}
.x1_c00269{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4c1338958c916de25d98a3cd.woff2')format("woff");}.ff1_c00270{font-family:ff1_c00270;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00270{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00270{vertical-align:0.000000px;}
.lsd_c00270{letter-spacing:-0.420120px;}
.ls9_c00270{letter-spacing:-0.063018px;}
.ls12_c00270{letter-spacing:-0.056016px;}
.lsf_c00270{letter-spacing:-0.042012px;}
.lsc_c00270{letter-spacing:-0.035010px;}
.ls10_c00270{letter-spacing:-0.028008px;}
.lsb_c00270{letter-spacing:-0.021006px;}
.lse_c00270{letter-spacing:-0.014004px;}
.ls11_c00270{letter-spacing:-0.007002px;}
.lsa_c00270{letter-spacing:0.000000px;}
.ls3_c00270{letter-spacing:0.007002px;}
.ls1_c00270{letter-spacing:0.014004px;}
.ls4_c00270{letter-spacing:0.021006px;}
.ls7_c00270{letter-spacing:0.028008px;}
.ls0_c00270{letter-spacing:0.035010px;}
.ls6_c00270{letter-spacing:0.042012px;}
.ls8_c00270{letter-spacing:0.056016px;}
.ls5_c00270{letter-spacing:0.063018px;}
.ls2_c00270{letter-spacing:0.091026px;}
.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;}
.ws21_c00270{word-spacing:789.811596px;}
.ws16_c00270{word-spacing:790.168698px;}
.ws1c_c00270{word-spacing:812.827170px;}
.ws7_c00270{word-spacing:832.215708px;}
.ws17_c00270{word-spacing:852.136398px;}
.ws18_c00270{word-spacing:863.619678px;}
.ws19_c00270{word-spacing:879.458202px;}
.ws22_c00270{word-spacing:887.034366px;}
.wsb_c00270{word-spacing:894.911616px;}
.ws14_c00270{word-spacing:906.801012px;}
.ws2_c00270{word-spacing:914.349168px;}
.wsa_c00270{word-spacing:925.482348px;}
.ws1_c00270{word-spacing:925.930476px;}
.ws2a_c00270{word-spacing:929.886606px;}
.wsf_c00270{word-spacing:934.227846px;}
.ws2c_c00270{word-spacing:937.728846px;}
.ws26_c00270{word-spacing:941.376888px;}
.ws12_c00270{word-spacing:949.261140px;}
.ws27_c00270{word-spacing:961.164540px;}
.wsc_c00270{word-spacing:961.178544px;}
.ws1a_c00270{word-spacing:961.220556px;}
.wse_c00270{word-spacing:964.805580px;}
.ws5_c00270{word-spacing:965.204694px;}
.ws1b_c00270{word-spacing:969.083802px;}
.ws3_c00270{word-spacing:984.621240px;}
.wsd_c00270{word-spacing:984.978342px;}
.ws13_c00270{word-spacing:988.178256px;}
.ws25_c00270{word-spacing:992.162394px;}
.ws15_c00270{word-spacing:996.454620px;}
.ws6_c00270{word-spacing:1003.680684px;}
.ws20_c00270{word-spacing:1007.594802px;}
.ws8_c00270{word-spacing:1007.979912px;}
.ws2b_c00270{word-spacing:1008.042930px;}
.ws4_c00270{word-spacing:1011.571938px;}
.ws1f_c00270{word-spacing:1011.971052px;}
.ws24_c00270{word-spacing:1019.519208px;}
.ws23_c00270{word-spacing:1026.717264px;}
.ws11_c00270{word-spacing:1031.086512px;}
.ws29_c00270{word-spacing:1035.021636px;}
.ws10_c00270{word-spacing:1035.364734px;}
.ws1d_c00270{word-spacing:1046.876022px;}
.ws28_c00270{word-spacing:1058.765418px;}
.ws9_c00270{word-spacing:1073.847726px;}
.ws1e_c00270{word-spacing:1077.768846px;}
._0_c00270{width:1.022292px;}
.fc0_c00270{color:rgb(0,0,0);}
.fs0_c00270{font-size:70.020000px;}
.y0_c00270{bottom:0.000000px;}
.y2_c00270{bottom:109.740968px;}
.y1_c00270{bottom:129.810450px;}
.y2f_c00270{bottom:159.150450px;}
.y2e_c00270{bottom:180.660450px;}
.y2d_c00270{bottom:202.260450px;}
.y2c_c00270{bottom:223.860450px;}
.y2b_c00270{bottom:245.460600px;}
.y2a_c00270{bottom:267.060450px;}
.y29_c00270{bottom:288.570450px;}
.y28_c00270{bottom:310.260450px;}
.y27_c00270{bottom:331.860450px;}
.y26_c00270{bottom:353.370450px;}
.y25_c00270{bottom:374.970450px;}
.y24_c00270{bottom:396.570450px;}
.y23_c00270{bottom:418.170450px;}
.y22_c00270{bottom:439.770600px;}
.y21_c00270{bottom:461.370600px;}
.y20_c00270{bottom:482.880450px;}
.y1f_c00270{bottom:504.480450px;}
.y1e_c00270{bottom:526.170450px;}
.y1d_c00270{bottom:547.680450px;}
.y1c_c00270{bottom:569.280450px;}
.y1b_c00270{bottom:590.790450px;}
.y1a_c00270{bottom:612.480450px;}
.y19_c00270{bottom:634.080450px;}
.y18_c00270{bottom:655.590450px;}
.y17_c00270{bottom:677.190450px;}
.y16_c00270{bottom:698.790450px;}
.y15_c00270{bottom:720.390450px;}
.y14_c00270{bottom:741.990450px;}
.y13_c00270{bottom:763.590450px;}
.y12_c00270{bottom:785.100450px;}
.y11_c00270{bottom:806.700450px;}
.y10_c00270{bottom:828.390450px;}
.yf_c00270{bottom:849.900450px;}
.ye_c00270{bottom:871.500600px;}
.yd_c00270{bottom:893.100450px;}
.yc_c00270{bottom:914.700450px;}
.yb_c00270{bottom:936.300450px;}
.ya_c00270{bottom:957.810450px;}
.y9_c00270{bottom:979.410450px;}
.y8_c00270{bottom:1001.010450px;}
.y7_c00270{bottom:1022.610450px;}
.y6_c00270{bottom:1044.210450px;}
.y5_c00270{bottom:1065.810450px;}
.y4_c00270{bottom:1087.320450px;}
.y3_c00270{bottom:1109.010391px;}
.h1_c00270{height:62.771836px;}
.h0_c00270{height:1263.000000px;}
.w0_c00270{width:892.500000px;}
.x0_c00270{left:0.000000px;}
.x2_c00270{left:82.710059px;}
.x3_c00270{left:103.409721px;}
.x1_c00270{left:431.730000px;}
@media print{
.v0_c00270{vertical-align:0.000000pt;}
.lsd_c00270{letter-spacing:-0.373440pt;}
.ls9_c00270{letter-spacing:-0.056016pt;}
.ls12_c00270{letter-spacing:-0.049792pt;}
.lsf_c00270{letter-spacing:-0.037344pt;}
.lsc_c00270{letter-spacing:-0.031120pt;}
.ls10_c00270{letter-spacing:-0.024896pt;}
.lsb_c00270{letter-spacing:-0.018672pt;}
.lse_c00270{letter-spacing:-0.012448pt;}
.ls11_c00270{letter-spacing:-0.006224pt;}
.lsa_c00270{letter-spacing:0.000000pt;}
.ls3_c00270{letter-spacing:0.006224pt;}
.ls1_c00270{letter-spacing:0.012448pt;}
.ls4_c00270{letter-spacing:0.018672pt;}
.ls7_c00270{letter-spacing:0.024896pt;}
.ls0_c00270{letter-spacing:0.031120pt;}
.ls6_c00270{letter-spacing:0.037344pt;}
.ls8_c00270{letter-spacing:0.049792pt;}
.ls5_c00270{letter-spacing:0.056016pt;}
.ls2_c00270{letter-spacing:0.080912pt;}
.ws0_c00270{word-spacing:0.000000pt;}
.ws21_c00270{word-spacing:702.054752pt;}
.ws16_c00270{word-spacing:702.372176pt;}
.ws1c_c00270{word-spacing:722.513040pt;}
.ws7_c00270{word-spacing:739.747296pt;}
.ws17_c00270{word-spacing:757.454576pt;}
.ws18_c00270{word-spacing:767.661936pt;}
.ws19_c00270{word-spacing:781.740624pt;}
.ws22_c00270{word-spacing:788.474992pt;}
.wsb_c00270{word-spacing:795.476992pt;}
.ws14_c00270{word-spacing:806.045344pt;}
.ws2_c00270{word-spacing:812.754816pt;}
.wsa_c00270{word-spacing:822.650976pt;}
.ws1_c00270{word-spacing:823.049312pt;}
.ws2a_c00270{word-spacing:826.565872pt;}
.wsf_c00270{word-spacing:830.424752pt;}
.ws2c_c00270{word-spacing:833.536752pt;}
.ws26_c00270{word-spacing:836.779456pt;}
.ws12_c00270{word-spacing:843.787680pt;}
.ws27_c00270{word-spacing:854.368480pt;}
.wsc_c00270{word-spacing:854.380928pt;}
.ws1a_c00270{word-spacing:854.418272pt;}
.wse_c00270{word-spacing:857.604960pt;}
.ws5_c00270{word-spacing:857.959728pt;}
.ws1b_c00270{word-spacing:861.407824pt;}
.ws3_c00270{word-spacing:875.218880pt;}
.wsd_c00270{word-spacing:875.536304pt;}
.ws13_c00270{word-spacing:878.380672pt;}
.ws25_c00270{word-spacing:881.922128pt;}
.ws15_c00270{word-spacing:885.737440pt;}
.ws6_c00270{word-spacing:892.160608pt;}
.ws20_c00270{word-spacing:895.639824pt;}
.ws8_c00270{word-spacing:895.982144pt;}
.ws2b_c00270{word-spacing:896.038160pt;}
.ws4_c00270{word-spacing:899.175056pt;}
.ws1f_c00270{word-spacing:899.529824pt;}
.ws24_c00270{word-spacing:906.239296pt;}
.ws23_c00270{word-spacing:912.637568pt;}
.ws11_c00270{word-spacing:916.521344pt;}
.ws29_c00270{word-spacing:920.019232pt;}
.ws10_c00270{word-spacing:920.324208pt;}
.ws1d_c00270{word-spacing:930.556464pt;}
.ws28_c00270{word-spacing:941.124816pt;}
.ws9_c00270{word-spacing:954.531312pt;}
.ws1e_c00270{word-spacing:958.016752pt;}
._0_c00270{width:0.908704pt;}
.fs0_c00270{font-size:62.240000pt;}
.y0_c00270{bottom:0.000000pt;}
.y2_c00270{bottom:97.547527pt;}
.y1_c00270{bottom:115.387067pt;}
.y2f_c00270{bottom:141.467067pt;}
.y2e_c00270{bottom:160.587067pt;}
.y2d_c00270{bottom:179.787067pt;}
.y2c_c00270{bottom:198.987067pt;}
.y2b_c00270{bottom:218.187200pt;}
.y2a_c00270{bottom:237.387067pt;}
.y29_c00270{bottom:256.507067pt;}
.y28_c00270{bottom:275.787067pt;}
.y27_c00270{bottom:294.987067pt;}
.y26_c00270{bottom:314.107067pt;}
.y25_c00270{bottom:333.307067pt;}
.y24_c00270{bottom:352.507067pt;}
.y23_c00270{bottom:371.707067pt;}
.y22_c00270{bottom:390.907200pt;}
.y21_c00270{bottom:410.107200pt;}
.y20_c00270{bottom:429.227067pt;}
.y1f_c00270{bottom:448.427067pt;}
.y1e_c00270{bottom:467.707067pt;}
.y1d_c00270{bottom:486.827067pt;}
.y1c_c00270{bottom:506.027067pt;}
.y1b_c00270{bottom:525.147067pt;}
.y1a_c00270{bottom:544.427067pt;}
.y19_c00270{bottom:563.627067pt;}
.y18_c00270{bottom:582.747067pt;}
.y17_c00270{bottom:601.947067pt;}
.y16_c00270{bottom:621.147067pt;}
.y15_c00270{bottom:640.347067pt;}
.y14_c00270{bottom:659.547067pt;}
.y13_c00270{bottom:678.747067pt;}
.y12_c00270{bottom:697.867067pt;}
.y11_c00270{bottom:717.067067pt;}
.y10_c00270{bottom:736.347067pt;}
.yf_c00270{bottom:755.467067pt;}
.ye_c00270{bottom:774.667200pt;}
.yd_c00270{bottom:793.867067pt;}
.yc_c00270{bottom:813.067067pt;}
.yb_c00270{bottom:832.267067pt;}
.ya_c00270{bottom:851.387067pt;}
.y9_c00270{bottom:870.587067pt;}
.y8_c00270{bottom:889.787067pt;}
.y7_c00270{bottom:908.987067pt;}
.y6_c00270{bottom:928.187067pt;}
.y5_c00270{bottom:947.387067pt;}
.y4_c00270{bottom:966.507067pt;}
.y3_c00270{bottom:985.787015pt;}
.h1_c00270{height:55.797187pt;}
.h0_c00270{height:1122.666667pt;}
.w0_c00270{width:793.333333pt;}
.x0_c00270{left:0.000000pt;}
.x2_c00270{left:73.520052pt;}
.x3_c00270{left:91.919752pt;}
.x1_c00270{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9696f9dbad6097b8d14ebf6f.woff2')format("woff");}.ff1_c00271{font-family:ff1_c00271;line-height:1.106934;font-style:normal;font-weight:normal;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_ab6d761312b4cecb74d7808b.woff2')format("woff");}.ff2_c00271{font-family:ff2_c00271;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00271{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00271{vertical-align:0.000000px;}
.ls15_c00271{letter-spacing:-0.126036px;}
.ls11_c00271{letter-spacing:-0.070020px;}
.ls8_c00271{letter-spacing:-0.063018px;}
.lsf_c00271{letter-spacing:-0.056016px;}
.lsa_c00271{letter-spacing:-0.035010px;}
.ls16_c00271{letter-spacing:-0.028008px;}
.ls13_c00271{letter-spacing:-0.021006px;}
.lsb_c00271{letter-spacing:-0.014004px;}
.lsc_c00271{letter-spacing:-0.007002px;}
.ls9_c00271{letter-spacing:0.000000px;}
.ls7_c00271{letter-spacing:0.007002px;}
.ls0_c00271{letter-spacing:0.014004px;}
.lsd_c00271{letter-spacing:0.021006px;}
.ls6_c00271{letter-spacing:0.028008px;}
.ls3_c00271{letter-spacing:0.035010px;}
.ls1_c00271{letter-spacing:0.042012px;}
.ls14_c00271{letter-spacing:0.063018px;}
.ls5_c00271{letter-spacing:0.091026px;}
.ls2_c00271{letter-spacing:0.182052px;}
.ls4_c00271{letter-spacing:0.231066px;}
.lse_c00271{letter-spacing:0.315090px;}
.ls10_c00271{letter-spacing:0.385110px;}
.ls12_c00271{letter-spacing:0.455130px;}
.sc__c00271{text-shadow:none;}
.sc0_c00271{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00271{-webkit-text-stroke:0px transparent;}
.sc0_c00271{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00271{word-spacing:-19.493568px;}
.ws1_c00271{word-spacing:0.000000px;}
.wsc_c00271{word-spacing:0.014004px;}
.ws9_c00271{word-spacing:0.364104px;}
.wsa_c00271{word-spacing:0.721206px;}
.wse_c00271{word-spacing:2.142612px;}
.wsb_c00271{word-spacing:4.306230px;}
.wsd_c00271{word-spacing:41.024718px;}
.ws3_c00271{word-spacing:824.779584px;}
.ws5_c00271{word-spacing:887.041368px;}
.ws6_c00271{word-spacing:902.515788px;}
.ws2_c00271{word-spacing:910.414044px;}
.ws4_c00271{word-spacing:925.503354px;}
.ws8_c00271{word-spacing:953.245278px;}
.ws7_c00271{word-spacing:984.621240px;}
._1_c00271{margin-left:-1.015290px;}
._0_c00271{width:1.232352px;}
.fc0_c00271{color:rgb(0,0,0);}
.fs0_c00271{font-size:70.020000px;}
.y0_c00271{bottom:0.000000px;}
.y2_c00271{bottom:109.740968px;}
.y1_c00271{bottom:129.810450px;}
.y2c_c00271{bottom:192.270906px;}
.y2b_c00271{bottom:222.330492px;}
.y2a_c00271{bottom:252.570380px;}
.y29_c00271{bottom:282.720991px;}
.y28_c00271{bottom:312.960879px;}
.y27_c00271{bottom:343.111491px;}
.y26_c00271{bottom:373.351379px;}
.y25_c00271{bottom:396.391460px;}
.y24_c00271{bottom:419.520816px;}
.y23_c00271{bottom:439.770600px;}
.y22_c00271{bottom:461.369676px;}
.y20_c00271{bottom:482.880450px;}
.y1f_c00271{bottom:504.480450px;}
.y1e_c00271{bottom:526.170450px;}
.y1d_c00271{bottom:547.680450px;}
.y1c_c00271{bottom:569.280450px;}
.y1b_c00271{bottom:590.790450px;}
.y1a_c00271{bottom:612.480450px;}
.y19_c00271{bottom:634.080450px;}
.y18_c00271{bottom:655.590450px;}
.y17_c00271{bottom:677.190450px;}
.y16_c00271{bottom:698.790450px;}
.y15_c00271{bottom:720.390450px;}
.y14_c00271{bottom:741.990450px;}
.y13_c00271{bottom:763.590450px;}
.y12_c00271{bottom:785.100450px;}
.y11_c00271{bottom:806.700450px;}
.y10_c00271{bottom:828.390450px;}
.yf_c00271{bottom:849.900450px;}
.ye_c00271{bottom:871.500600px;}
.yd_c00271{bottom:893.100450px;}
.yc_c00271{bottom:914.700450px;}
.yb_c00271{bottom:936.300450px;}
.y21_c00271{bottom:957.720450px;}
.ya_c00271{bottom:957.810450px;}
.y9_c00271{bottom:979.410450px;}
.y8_c00271{bottom:1001.010450px;}
.y7_c00271{bottom:1022.610450px;}
.y6_c00271{bottom:1044.210450px;}
.y5_c00271{bottom:1065.810450px;}
.y4_c00271{bottom:1087.320450px;}
.y3_c00271{bottom:1109.010391px;}
.h1_c00271{height:62.771836px;}
.h2_c00271{height:63.216299px;}
.h0_c00271{height:1263.000000px;}
.w0_c00271{width:892.500000px;}
.x0_c00271{left:0.000000px;}
.x2_c00271{left:82.710059px;}
.x3_c00271{left:103.409721px;}
.x5_c00271{left:336.870000px;}
.x4_c00271{left:412.740000px;}
.x1_c00271{left:431.730000px;}
.x6_c00271{left:446.400536px;}
@media print{
.v0_c00271{vertical-align:0.000000pt;}
.ls15_c00271{letter-spacing:-0.112032pt;}
.ls11_c00271{letter-spacing:-0.062240pt;}
.ls8_c00271{letter-spacing:-0.056016pt;}
.lsf_c00271{letter-spacing:-0.049792pt;}
.lsa_c00271{letter-spacing:-0.031120pt;}
.ls16_c00271{letter-spacing:-0.024896pt;}
.ls13_c00271{letter-spacing:-0.018672pt;}
.lsb_c00271{letter-spacing:-0.012448pt;}
.lsc_c00271{letter-spacing:-0.006224pt;}
.ls9_c00271{letter-spacing:0.000000pt;}
.ls7_c00271{letter-spacing:0.006224pt;}
.ls0_c00271{letter-spacing:0.012448pt;}
.lsd_c00271{letter-spacing:0.018672pt;}
.ls6_c00271{letter-spacing:0.024896pt;}
.ls3_c00271{letter-spacing:0.031120pt;}
.ls1_c00271{letter-spacing:0.037344pt;}
.ls14_c00271{letter-spacing:0.056016pt;}
.ls5_c00271{letter-spacing:0.080912pt;}
.ls2_c00271{letter-spacing:0.161824pt;}
.ls4_c00271{letter-spacing:0.205392pt;}
.lse_c00271{letter-spacing:0.280080pt;}
.ls10_c00271{letter-spacing:0.342320pt;}
.ls12_c00271{letter-spacing:0.404560pt;}
.ws0_c00271{word-spacing:-17.327616pt;}
.ws1_c00271{word-spacing:0.000000pt;}
.wsc_c00271{word-spacing:0.012448pt;}
.ws9_c00271{word-spacing:0.323648pt;}
.wsa_c00271{word-spacing:0.641072pt;}
.wse_c00271{word-spacing:1.904544pt;}
.wsb_c00271{word-spacing:3.827760pt;}
.wsd_c00271{word-spacing:36.466416pt;}
.ws3_c00271{word-spacing:733.137408pt;}
.ws5_c00271{word-spacing:788.481216pt;}
.ws6_c00271{word-spacing:802.236256pt;}
.ws2_c00271{word-spacing:809.256928pt;}
.ws4_c00271{word-spacing:822.669648pt;}
.ws8_c00271{word-spacing:847.329136pt;}
.ws7_c00271{word-spacing:875.218880pt;}
._1_c00271{margin-left:-0.902480pt;}
._0_c00271{width:1.095424pt;}
.fs0_c00271{font-size:62.240000pt;}
.y0_c00271{bottom:0.000000pt;}
.y2_c00271{bottom:97.547527pt;}
.y1_c00271{bottom:115.387067pt;}
.y2c_c00271{bottom:170.907472pt;}
.y2b_c00271{bottom:197.627104pt;}
.y2a_c00271{bottom:224.507004pt;}
.y29_c00271{bottom:251.307548pt;}
.y28_c00271{bottom:278.187448pt;}
.y27_c00271{bottom:304.987992pt;}
.y26_c00271{bottom:331.867892pt;}
.y25_c00271{bottom:352.347964pt;}
.y24_c00271{bottom:372.907392pt;}
.y23_c00271{bottom:390.907200pt;}
.y22_c00271{bottom:410.106379pt;}
.y20_c00271{bottom:429.227067pt;}
.y1f_c00271{bottom:448.427067pt;}
.y1e_c00271{bottom:467.707067pt;}
.y1d_c00271{bottom:486.827067pt;}
.y1c_c00271{bottom:506.027067pt;}
.y1b_c00271{bottom:525.147067pt;}
.y1a_c00271{bottom:544.427067pt;}
.y19_c00271{bottom:563.627067pt;}
.y18_c00271{bottom:582.747067pt;}
.y17_c00271{bottom:601.947067pt;}
.y16_c00271{bottom:621.147067pt;}
.y15_c00271{bottom:640.347067pt;}
.y14_c00271{bottom:659.547067pt;}
.y13_c00271{bottom:678.747067pt;}
.y12_c00271{bottom:697.867067pt;}
.y11_c00271{bottom:717.067067pt;}
.y10_c00271{bottom:736.347067pt;}
.yf_c00271{bottom:755.467067pt;}
.ye_c00271{bottom:774.667200pt;}
.yd_c00271{bottom:793.867067pt;}
.yc_c00271{bottom:813.067067pt;}
.yb_c00271{bottom:832.267067pt;}
.y21_c00271{bottom:851.307067pt;}
.ya_c00271{bottom:851.387067pt;}
.y9_c00271{bottom:870.587067pt;}
.y8_c00271{bottom:889.787067pt;}
.y7_c00271{bottom:908.987067pt;}
.y6_c00271{bottom:928.187067pt;}
.y5_c00271{bottom:947.387067pt;}
.y4_c00271{bottom:966.507067pt;}
.y3_c00271{bottom:985.787015pt;}
.h1_c00271{height:55.797187pt;}
.h2_c00271{height:56.192266pt;}
.h0_c00271{height:1122.666667pt;}
.w0_c00271{width:793.333333pt;}
.x0_c00271{left:0.000000pt;}
.x2_c00271{left:73.520052pt;}
.x3_c00271{left:91.919752pt;}
.x5_c00271{left:299.440000pt;}
.x4_c00271{left:366.880000pt;}
.x1_c00271{left:383.760000pt;}
.x6_c00271{left:396.800476pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0b7a50dc471183e712d6bf70.woff2')format("woff");}.ff1_c00272{font-family:ff1_c00272;line-height:1.106934;font-style:normal;font-weight:normal;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_88cd6939764914958a2f9962.woff2')format("woff");}.ff2_c00272{font-family:ff2_c00272;line-height:0.892090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00272;src:url('chunks/assets/font_4103fdd18c329a457437f5bf.woff2')format("woff");}.ff3_c00272{font-family:ff3_c00272;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00272{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00272{vertical-align:0.000000px;}
.ls13_c00272{letter-spacing:-0.404366px;}
.ls15_c00272{letter-spacing:-0.320342px;}
.ls17_c00272{letter-spacing:-0.278330px;}
.ls20_c00272{letter-spacing:-0.136539px;}
.ls21_c00272{letter-spacing:-0.126036px;}
.ls1f_c00272{letter-spacing:-0.115533px;}
.ls1e_c00272{letter-spacing:-0.110282px;}
.ls1d_c00272{letter-spacing:-0.089276px;}
.ls23_c00272{letter-spacing:-0.073521px;}
.lsb_c00272{letter-spacing:-0.063018px;}
.ls19_c00272{letter-spacing:-0.057767px;}
.ls11_c00272{letter-spacing:-0.047264px;}
.ls1c_c00272{letter-spacing:-0.042012px;}
.ls1b_c00272{letter-spacing:-0.036761px;}
.lsf_c00272{letter-spacing:-0.028008px;}
.ls1a_c00272{letter-spacing:-0.026258px;}
.lsd_c00272{letter-spacing:-0.021006px;}
.ls16_c00272{letter-spacing:-0.015755px;}
.lse_c00272{letter-spacing:-0.014004px;}
.ls10_c00272{letter-spacing:-0.010503px;}
.lsc_c00272{letter-spacing:0.000000px;}
.ls9_c00272{letter-spacing:0.004656px;}
.ls7_c00272{letter-spacing:0.010503px;}
.ls3_c00272{letter-spacing:0.021006px;}
.ls6_c00272{letter-spacing:0.026258px;}
.ls8_c00272{letter-spacing:0.027937px;}
.lsa_c00272{letter-spacing:0.028008px;}
.ls12_c00272{letter-spacing:0.047264px;}
.ls5_c00272{letter-spacing:0.049014px;}
.ls18_c00272{letter-spacing:0.052515px;}
.ls14_c00272{letter-spacing:0.057767px;}
.ls22_c00272{letter-spacing:0.065187px;}
.ls2_c00272{letter-spacing:0.077022px;}
.ls0_c00272{letter-spacing:0.084024px;}
.ls4_c00272{letter-spacing:0.119034px;}
.ls1_c00272{letter-spacing:0.217062px;}
.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;}
}
.ws2_c00272{word-spacing:-19.493568px;}
.ws0_c00272{word-spacing:-14.651685px;}
.ws1_c00272{word-spacing:-12.972285px;}
.ws5_c00272{word-spacing:-0.343098px;}
.ws13_c00272{word-spacing:-0.168048px;}
.ws17_c00272{word-spacing:-0.147042px;}
.wsb_c00272{word-spacing:-0.133038px;}
.ws6_c00272{word-spacing:-0.098028px;}
.wsc_c00272{word-spacing:-0.063018px;}
.ws3_c00272{word-spacing:0.000000px;}
.wsf_c00272{word-spacing:0.110282px;}
.ws16_c00272{word-spacing:0.141791px;}
.wse_c00272{word-spacing:0.147042px;}
.ws19_c00272{word-spacing:0.157545px;}
.wsd_c00272{word-spacing:0.178551px;}
.ws15_c00272{word-spacing:0.194306px;}
.ws1d_c00272{word-spacing:0.204809px;}
.ws1c_c00272{word-spacing:0.294084px;}
.ws1b_c00272{word-spacing:0.304587px;}
.ws8_c00272{word-spacing:0.357102px;}
.ws1f_c00272{word-spacing:0.364104px;}
.ws12_c00272{word-spacing:0.446378px;}
.ws11_c00272{word-spacing:0.546156px;}
.ws14_c00272{word-spacing:0.588168px;}
.ws18_c00272{word-spacing:0.619677px;}
.ws1a_c00272{word-spacing:0.640683px;}
.ws10_c00272{word-spacing:0.850743px;}
.ws4_c00272{word-spacing:2.163618px;}
.ws7_c00272{word-spacing:44.546724px;}
.ws9_c00272{word-spacing:44.602740px;}
.wsa_c00272{word-spacing:44.651754px;}
.ws1e_c00272{word-spacing:481.504784px;}
._9_c00272{margin-left:-481.347238px;}
._4_c00272{margin-left:-45.463986px;}
._3_c00272{margin-left:-44.280648px;}
._0_c00272{margin-left:-1.120320px;}
._1_c00272{width:1.295370px;}
._2_c00272{width:44.280648px;}
._5_c00272{width:249.026130px;}
._8_c00272{width:371.907729px;}
._6_c00272{width:526.417362px;}
._7_c00272{width:599.758061px;}
.fc0_c00272{color:rgb(0,0,0);}
.fs2_c00272{font-size:46.562400px;}
.fs1_c00272{font-size:52.515000px;}
.fs0_c00272{font-size:70.020000px;}
.y0_c00272{bottom:0.000000px;}
.y2_c00272{bottom:109.740968px;}
.y1_c00272{bottom:129.810450px;}
.y2c_c00272{bottom:204.600202px;}
.y2b_c00272{bottom:227.640284px;}
.y2a_c00272{bottom:250.860666px;}
.y29_c00272{bottom:271.110450px;}
.y28_c00272{bottom:307.830444px;}
.y27_c00272{bottom:325.290368px;}
.y24_c00272{bottom:325.290450px;}
.y23_c00272{bottom:357.960389px;}
.y22_c00272{bottom:375.240450px;}
.y21_c00272{bottom:408.000389px;}
.y20_c00272{bottom:425.280450px;}
.y26_c00272{bottom:453.450929px;}
.y1f_c00272{bottom:458.041203px;}
.y1e_c00272{bottom:475.410539px;}
.y25_c00272{bottom:483.510450px;}
.y1d_c00272{bottom:492.690600px;}
.y1a_c00272{bottom:525.449740px;}
.y1c_c00272{bottom:542.728488px;}
.y19_c00272{bottom:542.729801px;}
.y1b_c00272{bottom:560.099137px;}
.y18_c00272{bottom:560.100450px;}
.y16_c00272{bottom:592.859740px;}
.y15_c00272{bottom:610.139801px;}
.y17_c00272{bottom:627.509137px;}
.y14_c00272{bottom:627.510450px;}
.y13_c00272{bottom:661.799653px;}
.y12_c00272{bottom:685.650216px;}
.y11_c00272{bottom:708.779573px;}
.y10_c00272{bottom:731.908929px;}
.yf_c00272{bottom:755.129312px;}
.ye_c00272{bottom:778.169393px;}
.yd_c00272{bottom:808.498556px;}
.yc_c00272{bottom:838.649168px;}
.yb_c00272{bottom:868.889055px;}
.ya_c00272{bottom:899.039667px;}
.y9_c00272{bottom:929.279555px;}
.y8_c00272{bottom:959.519442px;}
.y7_c00272{bottom:989.670054px;}
.y6_c00272{bottom:1019.909942px;}
.y5_c00272{bottom:1050.060553px;}
.y4_c00272{bottom:1080.300441px;}
.y3_c00272{bottom:1110.451053px;}
.h4_c00272{height:41.742464px;}
.h5_c00272{height:47.077562px;}
.h3_c00272{height:47.078877px;}
.h1_c00272{height:62.771836px;}
.h2_c00272{height:63.216299px;}
.h0_c00272{height:1263.000000px;}
.w0_c00272{width:892.500000px;}
.x0_c00272{left:0.000000px;}
.x2_c00272{left:82.710059px;}
.x4_c00272{left:132.749851px;}
.x3_c00272{left:134.370814px;}
.x8_c00272{left:225.450000px;}
.x9_c00272{left:227.700128px;}
.x5_c00272{left:297.450399px;}
.xc_c00272{left:336.870000px;}
.x6_c00272{left:421.469823px;}
.x1_c00272{left:431.730000px;}
.xd_c00272{left:446.400536px;}
.xa_c00272{left:540.810000px;}
.xb_c00272{left:543.060128px;}
.x7_c00272{left:617.940254px;}
@media print{
.v0_c00272{vertical-align:0.000000pt;}
.ls13_c00272{letter-spacing:-0.359436pt;}
.ls15_c00272{letter-spacing:-0.284748pt;}
.ls17_c00272{letter-spacing:-0.247404pt;}
.ls20_c00272{letter-spacing:-0.121368pt;}
.ls21_c00272{letter-spacing:-0.112032pt;}
.ls1f_c00272{letter-spacing:-0.102696pt;}
.ls1e_c00272{letter-spacing:-0.098028pt;}
.ls1d_c00272{letter-spacing:-0.079356pt;}
.ls23_c00272{letter-spacing:-0.065352pt;}
.lsb_c00272{letter-spacing:-0.056016pt;}
.ls19_c00272{letter-spacing:-0.051348pt;}
.ls11_c00272{letter-spacing:-0.042012pt;}
.ls1c_c00272{letter-spacing:-0.037344pt;}
.ls1b_c00272{letter-spacing:-0.032676pt;}
.lsf_c00272{letter-spacing:-0.024896pt;}
.ls1a_c00272{letter-spacing:-0.023340pt;}
.lsd_c00272{letter-spacing:-0.018672pt;}
.ls16_c00272{letter-spacing:-0.014004pt;}
.lse_c00272{letter-spacing:-0.012448pt;}
.ls10_c00272{letter-spacing:-0.009336pt;}
.lsc_c00272{letter-spacing:0.000000pt;}
.ls9_c00272{letter-spacing:0.004139pt;}
.ls7_c00272{letter-spacing:0.009336pt;}
.ls3_c00272{letter-spacing:0.018672pt;}
.ls6_c00272{letter-spacing:0.023340pt;}
.ls8_c00272{letter-spacing:0.024833pt;}
.lsa_c00272{letter-spacing:0.024896pt;}
.ls12_c00272{letter-spacing:0.042012pt;}
.ls5_c00272{letter-spacing:0.043568pt;}
.ls18_c00272{letter-spacing:0.046680pt;}
.ls14_c00272{letter-spacing:0.051348pt;}
.ls22_c00272{letter-spacing:0.057944pt;}
.ls2_c00272{letter-spacing:0.068464pt;}
.ls0_c00272{letter-spacing:0.074688pt;}
.ls4_c00272{letter-spacing:0.105808pt;}
.ls1_c00272{letter-spacing:0.192944pt;}
.ws2_c00272{word-spacing:-17.327616pt;}
.ws0_c00272{word-spacing:-13.023720pt;}
.ws1_c00272{word-spacing:-11.530920pt;}
.ws5_c00272{word-spacing:-0.304976pt;}
.ws13_c00272{word-spacing:-0.149376pt;}
.ws17_c00272{word-spacing:-0.130704pt;}
.wsb_c00272{word-spacing:-0.118256pt;}
.ws6_c00272{word-spacing:-0.087136pt;}
.wsc_c00272{word-spacing:-0.056016pt;}
.ws3_c00272{word-spacing:0.000000pt;}
.wsf_c00272{word-spacing:0.098028pt;}
.ws16_c00272{word-spacing:0.126036pt;}
.wse_c00272{word-spacing:0.130704pt;}
.ws19_c00272{word-spacing:0.140040pt;}
.wsd_c00272{word-spacing:0.158712pt;}
.ws15_c00272{word-spacing:0.172716pt;}
.ws1d_c00272{word-spacing:0.182052pt;}
.ws1c_c00272{word-spacing:0.261408pt;}
.ws1b_c00272{word-spacing:0.270744pt;}
.ws8_c00272{word-spacing:0.317424pt;}
.ws1f_c00272{word-spacing:0.323648pt;}
.ws12_c00272{word-spacing:0.396780pt;}
.ws11_c00272{word-spacing:0.485472pt;}
.ws14_c00272{word-spacing:0.522816pt;}
.ws18_c00272{word-spacing:0.550824pt;}
.ws1a_c00272{word-spacing:0.569496pt;}
.ws10_c00272{word-spacing:0.756216pt;}
.ws4_c00272{word-spacing:1.923216pt;}
.ws7_c00272{word-spacing:39.597088pt;}
.ws9_c00272{word-spacing:39.646880pt;}
.wsa_c00272{word-spacing:39.690448pt;}
.ws1e_c00272{word-spacing:428.004252pt;}
._9_c00272{margin-left:-427.864212pt;}
._4_c00272{margin-left:-40.412432pt;}
._3_c00272{margin-left:-39.360576pt;}
._0_c00272{margin-left:-0.995840pt;}
._1_c00272{width:1.151440pt;}
._2_c00272{width:39.360576pt;}
._5_c00272{width:221.356560pt;}
._8_c00272{width:330.584648pt;}
._6_c00272{width:467.926544pt;}
._7_c00272{width:533.118276pt;}
.fs2_c00272{font-size:41.388800pt;}
.fs1_c00272{font-size:46.680000pt;}
.fs0_c00272{font-size:62.240000pt;}
.y0_c00272{bottom:0.000000pt;}
.y2_c00272{bottom:97.547527pt;}
.y1_c00272{bottom:115.387067pt;}
.y2c_c00272{bottom:181.866847pt;}
.y2b_c00272{bottom:202.346919pt;}
.y2a_c00272{bottom:222.987259pt;}
.y29_c00272{bottom:240.987067pt;}
.y28_c00272{bottom:273.627061pt;}
.y27_c00272{bottom:289.146994pt;}
.y24_c00272{bottom:289.147067pt;}
.y23_c00272{bottom:318.187013pt;}
.y22_c00272{bottom:333.547067pt;}
.y21_c00272{bottom:362.667013pt;}
.y20_c00272{bottom:378.027067pt;}
.y26_c00272{bottom:403.067492pt;}
.y1f_c00272{bottom:407.147736pt;}
.y1e_c00272{bottom:422.587146pt;}
.y25_c00272{bottom:429.787067pt;}
.y1d_c00272{bottom:437.947200pt;}
.y1a_c00272{bottom:467.066436pt;}
.y1c_c00272{bottom:482.425323pt;}
.y19_c00272{bottom:482.426490pt;}
.y1b_c00272{bottom:497.865900pt;}
.y18_c00272{bottom:497.867067pt;}
.y16_c00272{bottom:526.986436pt;}
.y15_c00272{bottom:542.346490pt;}
.y17_c00272{bottom:557.785900pt;}
.y14_c00272{bottom:557.787067pt;}
.y13_c00272{bottom:588.266359pt;}
.y12_c00272{bottom:609.466859pt;}
.y11_c00272{bottom:630.026287pt;}
.y10_c00272{bottom:650.585715pt;}
.yf_c00272{bottom:671.226055pt;}
.ye_c00272{bottom:691.706127pt;}
.yd_c00272{bottom:718.665383pt;}
.yc_c00272{bottom:745.465927pt;}
.yb_c00272{bottom:772.345827pt;}
.ya_c00272{bottom:799.146371pt;}
.y9_c00272{bottom:826.026271pt;}
.y8_c00272{bottom:852.906171pt;}
.y7_c00272{bottom:879.706715pt;}
.y6_c00272{bottom:906.586615pt;}
.y5_c00272{bottom:933.387159pt;}
.y4_c00272{bottom:960.267059pt;}
.y3_c00272{bottom:987.067603pt;}
.h4_c00272{height:37.104412pt;}
.h5_c00272{height:41.846722pt;}
.h3_c00272{height:41.847891pt;}
.h1_c00272{height:55.797187pt;}
.h2_c00272{height:56.192266pt;}
.h0_c00272{height:1122.666667pt;}
.w0_c00272{width:793.333333pt;}
.x0_c00272{left:0.000000pt;}
.x2_c00272{left:73.520052pt;}
.x4_c00272{left:117.999868pt;}
.x3_c00272{left:119.440724pt;}
.x8_c00272{left:200.400000pt;}
.x9_c00272{left:202.400114pt;}
.x5_c00272{left:264.400355pt;}
.xc_c00272{left:299.440000pt;}
.x6_c00272{left:374.639843pt;}
.x1_c00272{left:383.760000pt;}
.xd_c00272{left:396.800476pt;}
.xa_c00272{left:480.720000pt;}
.xb_c00272{left:482.720114pt;}
.x7_c00272{left:549.280226pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2ca2ee8e15045a93d2589638.woff2')format("woff");}.ff1_c00273{font-family:ff1_c00273;line-height:1.106934;font-style:normal;font-weight:normal;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_ef47abe59a3980d93858c13c.woff2')format("woff");}.ff2_c00273{font-family:ff2_c00273;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00273;src:url('chunks/assets/font_db64bb9f1b951dc0ef294411.woff2')format("woff");}.ff3_c00273{font-family:ff3_c00273;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00273;src:url('chunks/assets/font_a12926c207225281a226b5d2.woff2')format("woff");}.ff4_c00273{font-family:ff4_c00273;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00273{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00273{vertical-align:0.000000px;}
.ls11_c00273{letter-spacing:-0.167137px;}
.ls12_c00273{letter-spacing:-0.113957px;}
.ls13_c00273{letter-spacing:-0.106360px;}
.lsd_c00273{letter-spacing:-0.084024px;}
.ls6_c00273{letter-spacing:-0.083569px;}
.ls10_c00273{letter-spacing:-0.068374px;}
.ls4_c00273{letter-spacing:-0.063018px;}
.lsf_c00273{letter-spacing:-0.049014px;}
.lsa_c00273{letter-spacing:-0.042012px;}
.ls14_c00273{letter-spacing:-0.037986px;}
.ls8_c00273{letter-spacing:-0.035010px;}
.ls15_c00273{letter-spacing:-0.030389px;}
.ls9_c00273{letter-spacing:-0.028008px;}
.lse_c00273{letter-spacing:-0.021006px;}
.ls7_c00273{letter-spacing:-0.014004px;}
.lsc_c00273{letter-spacing:-0.007002px;}
.ls5_c00273{letter-spacing:0.000000px;}
.ls2_c00273{letter-spacing:0.021006px;}
.ls3_c00273{letter-spacing:0.042012px;}
.ls1_c00273{letter-spacing:0.056016px;}
.ls0_c00273{letter-spacing:0.303886px;}
.lsb_c00273{letter-spacing:0.343098px;}
.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:-19.437552px;}
.ws1_c00273{word-spacing:-19.430550px;}
.wsa_c00273{word-spacing:-0.427122px;}
.ws4_c00273{word-spacing:-0.174734px;}
.ws22_c00273{word-spacing:-0.075971px;}
.ws19_c00273{word-spacing:-0.007002px;}
.ws2_c00273{word-spacing:0.000000px;}
.ws17_c00273{word-spacing:0.007002px;}
.ws18_c00273{word-spacing:0.014004px;}
.ws3_c00273{word-spacing:0.037986px;}
.ws13_c00273{word-spacing:0.070020px;}
.wse_c00273{word-spacing:0.322092px;}
.ws9_c00273{word-spacing:0.385110px;}
.wsf_c00273{word-spacing:0.665190px;}
.wsb_c00273{word-spacing:0.714204px;}
.ws5_c00273{word-spacing:2.156616px;}
.ws12_c00273{word-spacing:2.485710px;}
.ws11_c00273{word-spacing:2.506716px;}
.wsc_c00273{word-spacing:4.642326px;}
.wsd_c00273{word-spacing:4.677336px;}
.ws7_c00273{word-spacing:5.762646px;}
.ws8_c00273{word-spacing:5.776650px;}
.ws10_c00273{word-spacing:8.640468px;}
.ws15_c00273{word-spacing:12.925692px;}
.ws16_c00273{word-spacing:12.960702px;}
.ws1a_c00273{word-spacing:14.774220px;}
.ws1b_c00273{word-spacing:15.117318px;}
.ws6_c00273{word-spacing:18.744354px;}
.ws21_c00273{word-spacing:22.669866px;}
.ws1f_c00273{word-spacing:22.928169px;}
.ws20_c00273{word-spacing:23.186471px;}
.ws14_c00273{word-spacing:25.585308px;}
.ws1c_c00273{word-spacing:29.555442px;}
.ws1d_c00273{word-spacing:29.720012px;}
.ws1e_c00273{word-spacing:29.818774px;}
._0_c00273{margin-left:-1.413068px;}
._1_c00273{width:1.134324px;}
.fc0_c00273{color:rgb(0,0,0);}
.fs0_c00273{font-size:70.020000px;}
.fs1_c00273{font-size:75.971400px;}
.y0_c00273{bottom:0.000000px;}
.y2_c00273{bottom:109.740968px;}
.y1_c00273{bottom:129.810450px;}
.y1e_c00273{bottom:170.398916px;}
.y1d_c00273{bottom:203.159683px;}
.y1c_c00273{bottom:235.915635px;}
.y1b_c00273{bottom:267.324857px;}
.y1a_c00273{bottom:297.475469px;}
.y19_c00273{bottom:327.626081px;}
.y18_c00273{bottom:357.865968px;}
.y17_c00273{bottom:388.016580px;}
.y16_c00273{bottom:418.256467px;}
.y15_c00273{bottom:448.407080px;}
.y14_c00273{bottom:478.646967px;}
.y13_c00273{bottom:529.227664px;}
.y12_c00273{bottom:559.467552px;}
.y11_c00273{bottom:589.707439px;}
.y10_c00273{bottom:619.858051px;}
.yf_c00273{bottom:650.097939px;}
.ye_c00273{bottom:680.157525px;}
.yd_c00273{bottom:730.738222px;}
.yc_c00273{bottom:781.318920px;}
.yb_c00273{bottom:831.988893px;}
.ya_c00273{bottom:882.658866px;}
.y9_c00273{bottom:933.328839px;}
.y8_c00273{bottom:963.479451px;}
.y7_c00273{bottom:993.719339px;}
.y6_c00273{bottom:1023.869950px;}
.y5_c00273{bottom:1054.109838px;}
.y4_c00273{bottom:1084.260450px;}
.y3_c00273{bottom:1109.100450px;}
.h3_c00273{height:62.600889px;}
.h1_c00273{height:62.771836px;}
.h6_c00273{height:68.107173px;}
.h5_c00273{height:68.126433px;}
.h2_c00273{height:68.589413px;}
.h4_c00273{height:73.028672px;}
.h0_c00273{height:1263.000000px;}
.w0_c00273{width:892.500000px;}
.x0_c00273{left:0.000000px;}
.x2_c00273{left:82.710059px;}
.x4_c00273{left:412.290639px;}
.x1_c00273{left:431.730000px;}
.x3_c00273{left:446.400882px;}
@media print{
.v0_c00273{vertical-align:0.000000pt;}
.ls11_c00273{letter-spacing:-0.148566pt;}
.ls12_c00273{letter-spacing:-0.101295pt;}
.ls13_c00273{letter-spacing:-0.094542pt;}
.lsd_c00273{letter-spacing:-0.074688pt;}
.ls6_c00273{letter-spacing:-0.074283pt;}
.ls10_c00273{letter-spacing:-0.060777pt;}
.ls4_c00273{letter-spacing:-0.056016pt;}
.lsf_c00273{letter-spacing:-0.043568pt;}
.lsa_c00273{letter-spacing:-0.037344pt;}
.ls14_c00273{letter-spacing:-0.033765pt;}
.ls8_c00273{letter-spacing:-0.031120pt;}
.ls15_c00273{letter-spacing:-0.027012pt;}
.ls9_c00273{letter-spacing:-0.024896pt;}
.lse_c00273{letter-spacing:-0.018672pt;}
.ls7_c00273{letter-spacing:-0.012448pt;}
.lsc_c00273{letter-spacing:-0.006224pt;}
.ls5_c00273{letter-spacing:0.000000pt;}
.ls2_c00273{letter-spacing:0.018672pt;}
.ls3_c00273{letter-spacing:0.037344pt;}
.ls1_c00273{letter-spacing:0.049792pt;}
.ls0_c00273{letter-spacing:0.270121pt;}
.lsb_c00273{letter-spacing:0.304976pt;}
.ws0_c00273{word-spacing:-17.277824pt;}
.ws1_c00273{word-spacing:-17.271600pt;}
.wsa_c00273{word-spacing:-0.379664pt;}
.ws4_c00273{word-spacing:-0.155319pt;}
.ws22_c00273{word-spacing:-0.067530pt;}
.ws19_c00273{word-spacing:-0.006224pt;}
.ws2_c00273{word-spacing:0.000000pt;}
.ws17_c00273{word-spacing:0.006224pt;}
.ws18_c00273{word-spacing:0.012448pt;}
.ws3_c00273{word-spacing:0.033765pt;}
.ws13_c00273{word-spacing:0.062240pt;}
.wse_c00273{word-spacing:0.286304pt;}
.ws9_c00273{word-spacing:0.342320pt;}
.wsf_c00273{word-spacing:0.591280pt;}
.wsb_c00273{word-spacing:0.634848pt;}
.ws5_c00273{word-spacing:1.916992pt;}
.ws12_c00273{word-spacing:2.209520pt;}
.ws11_c00273{word-spacing:2.228192pt;}
.wsc_c00273{word-spacing:4.126512pt;}
.wsd_c00273{word-spacing:4.157632pt;}
.ws7_c00273{word-spacing:5.122352pt;}
.ws8_c00273{word-spacing:5.134800pt;}
.ws10_c00273{word-spacing:7.680416pt;}
.ws15_c00273{word-spacing:11.489504pt;}
.ws16_c00273{word-spacing:11.520624pt;}
.ws1a_c00273{word-spacing:13.132640pt;}
.ws1b_c00273{word-spacing:13.437616pt;}
.ws6_c00273{word-spacing:16.661648pt;}
.ws21_c00273{word-spacing:20.150992pt;}
.ws1f_c00273{word-spacing:20.380594pt;}
.ws20_c00273{word-spacing:20.610197pt;}
.ws14_c00273{word-spacing:22.742496pt;}
.ws1c_c00273{word-spacing:26.271504pt;}
.ws1d_c00273{word-spacing:26.417788pt;}
.ws1e_c00273{word-spacing:26.505577pt;}
._0_c00273{margin-left:-1.256060pt;}
._1_c00273{width:1.008288pt;}
.fs0_c00273{font-size:62.240000pt;}
.fs1_c00273{font-size:67.530133pt;}
.y0_c00273{bottom:0.000000pt;}
.y2_c00273{bottom:97.547527pt;}
.y1_c00273{bottom:115.387067pt;}
.y1e_c00273{bottom:151.465703pt;}
.y1d_c00273{bottom:180.586385pt;}
.y1c_c00273{bottom:209.702787pt;}
.y1b_c00273{bottom:237.622095pt;}
.y1a_c00273{bottom:264.422639pt;}
.y19_c00273{bottom:291.223183pt;}
.y18_c00273{bottom:318.103083pt;}
.y17_c00273{bottom:344.903627pt;}
.y16_c00273{bottom:371.783527pt;}
.y15_c00273{bottom:398.584071pt;}
.y14_c00273{bottom:425.463971pt;}
.y13_c00273{bottom:470.424591pt;}
.y12_c00273{bottom:497.304491pt;}
.y11_c00273{bottom:524.184391pt;}
.y10_c00273{bottom:550.984935pt;}
.yf_c00273{bottom:577.864835pt;}
.ye_c00273{bottom:604.584467pt;}
.yd_c00273{bottom:649.545087pt;}
.yc_c00273{bottom:694.505707pt;}
.yb_c00273{bottom:739.545683pt;}
.ya_c00273{bottom:784.585659pt;}
.y9_c00273{bottom:829.625635pt;}
.y8_c00273{bottom:856.426179pt;}
.y7_c00273{bottom:883.306079pt;}
.y6_c00273{bottom:910.106623pt;}
.y5_c00273{bottom:936.986523pt;}
.y4_c00273{bottom:963.787067pt;}
.y3_c00273{bottom:985.867067pt;}
.h3_c00273{height:55.645234pt;}
.h1_c00273{height:55.797187pt;}
.h6_c00273{height:60.539709pt;}
.h5_c00273{height:60.556829pt;}
.h2_c00273{height:60.968367pt;}
.h4_c00273{height:64.914375pt;}
.h0_c00273{height:1122.666667pt;}
.w0_c00273{width:793.333333pt;}
.x0_c00273{left:0.000000pt;}
.x2_c00273{left:73.520052pt;}
.x4_c00273{left:366.480568pt;}
.x1_c00273{left:383.760000pt;}
.x3_c00273{left:396.800784pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4683e8b0b737a59bf6cc740c.woff2')format("woff");}.ff1_c00274{font-family:ff1_c00274;line-height:1.106934;font-style:normal;font-weight:normal;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_c268fa324f0073dbdc1e50e4.woff2')format("woff");}.ff2_c00274{font-family:ff2_c00274;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00274{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00274{vertical-align:0.000000px;}
.ls16_c00274{letter-spacing:-0.294084px;}
.ls5_c00274{letter-spacing:-0.151943px;}
.ls8_c00274{letter-spacing:-0.136749px;}
.lsc_c00274{letter-spacing:-0.121554px;}
.ls10_c00274{letter-spacing:-0.106360px;}
.ls4_c00274{letter-spacing:-0.098763px;}
.ls11_c00274{letter-spacing:-0.091166px;}
.lse_c00274{letter-spacing:-0.075971px;}
.lsa_c00274{letter-spacing:-0.068374px;}
.ls2_c00274{letter-spacing:-0.063018px;}
.lsf_c00274{letter-spacing:-0.060777px;}
.lsb_c00274{letter-spacing:-0.053180px;}
.ls17_c00274{letter-spacing:-0.049014px;}
.ls6_c00274{letter-spacing:-0.045583px;}
.ls14_c00274{letter-spacing:-0.042012px;}
.lsd_c00274{letter-spacing:-0.037986px;}
.ls12_c00274{letter-spacing:-0.035010px;}
.ls9_c00274{letter-spacing:-0.030389px;}
.ls7_c00274{letter-spacing:-0.022791px;}
.ls18_c00274{letter-spacing:-0.021006px;}
.ls15_c00274{letter-spacing:-0.014004px;}
.ls13_c00274{letter-spacing:-0.007002px;}
.ls3_c00274{letter-spacing:0.000000px;}
.ls1_c00274{letter-spacing:0.007002px;}
.ls0_c00274{letter-spacing:0.083569px;}
.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;}
}
.ws1f_c00274{word-spacing:-0.021006px;}
.ws0_c00274{word-spacing:0.000000px;}
.ws27_c00274{word-spacing:0.028008px;}
.ws18_c00274{word-spacing:0.167137px;}
.ws8_c00274{word-spacing:0.227914px;}
.ws9_c00274{word-spacing:0.288691px;}
.ws24_c00274{word-spacing:0.336096px;}
.wsa_c00274{word-spacing:0.349468px;}
.ws21_c00274{word-spacing:0.357102px;}
.ws1b_c00274{word-spacing:0.378108px;}
.ws19_c00274{word-spacing:0.402648px;}
.ws25_c00274{word-spacing:0.756216px;}
.ws1c_c00274{word-spacing:1.435410px;}
.ws1a_c00274{word-spacing:3.620034px;}
.ws5_c00274{word-spacing:4.398744px;}
.ws4_c00274{word-spacing:4.497507px;}
.ws6_c00274{word-spacing:4.588673px;}
.ws7_c00274{word-spacing:4.725421px;}
.ws26_c00274{word-spacing:7.219062px;}
.ws20_c00274{word-spacing:8.633466px;}
.ws1_c00274{word-spacing:8.820280px;}
.ws14_c00274{word-spacing:8.835474px;}
.ws3_c00274{word-spacing:8.919042px;}
.ws2_c00274{word-spacing:9.010208px;}
.ws15_c00274{word-spacing:9.048194px;}
.ws17_c00274{word-spacing:9.298899px;}
.ws16_c00274{word-spacing:9.542008px;}
.wsb_c00274{word-spacing:9.845893px;}
.wsc_c00274{word-spacing:9.876282px;}
.ws29_c00274{word-spacing:10.068876px;}
.wsd_c00274{word-spacing:10.081405px;}
.ws28_c00274{word-spacing:10.089882px;}
.ws23_c00274{word-spacing:10.818090px;}
.ws22_c00274{word-spacing:11.077164px;}
.ws1d_c00274{word-spacing:15.530436px;}
.ws1e_c00274{word-spacing:15.866532px;}
.ws10_c00274{word-spacing:18.058402px;}
.wsf_c00274{word-spacing:18.172359px;}
.wse_c00274{word-spacing:18.255927px;}
.ws13_c00274{word-spacing:26.559601px;}
.ws11_c00274{word-spacing:26.658364px;}
.ws12_c00274{word-spacing:26.825501px;}
._1_c00274{margin-left:-1.154765px;}
._0_c00274{width:1.451054px;}
.fc0_c00274{color:rgb(0,0,0);}
.fs0_c00274{font-size:70.020000px;}
.fs1_c00274{font-size:75.971400px;}
.y0_c00274{bottom:0.000000px;}
.y2_c00274{bottom:109.740968px;}
.y1_c00274{bottom:129.810450px;}
.y21_c00274{bottom:179.485455px;}
.y20_c00274{bottom:209.636067px;}
.y1f_c00274{bottom:239.875955px;}
.y1e_c00274{bottom:270.026567px;}
.y1d_c00274{bottom:300.266454px;}
.y1c_c00274{bottom:330.417066px;}
.y1b_c00274{bottom:360.656953px;}
.y1a_c00274{bottom:390.807566px;}
.y19_c00274{bottom:421.047453px;}
.y18_c00274{bottom:451.198065px;}
.y17_c00274{bottom:481.437953px;}
.y16_c00274{bottom:511.588565px;}
.y15_c00274{bottom:541.828452px;}
.y14_c00274{bottom:571.979064px;}
.y13_c00274{bottom:602.218952px;}
.y12_c00274{bottom:632.369563px;}
.y11_c00274{bottom:662.609451px;}
.y10_c00274{bottom:692.760063px;}
.yf_c00274{bottom:722.999951px;}
.ye_c00274{bottom:753.150563px;}
.yd_c00274{bottom:783.390450px;}
.yc_c00274{bottom:814.890541px;}
.yb_c00274{bottom:847.560143px;}
.ya_c00274{bottom:880.229744px;}
.y9_c00274{bottom:912.990511px;}
.y8_c00274{bottom:945.660112px;}
.y7_c00274{bottom:978.420879px;}
.y6_c00274{bottom:1011.090480px;}
.y5_c00274{bottom:1043.851247px;}
.y4_c00274{bottom:1076.520849px;}
.y3_c00274{bottom:1109.190450px;}
.h1_c00274{height:62.771836px;}
.h2_c00274{height:68.107173px;}
.h0_c00274{height:1263.000000px;}
.w0_c00274{width:892.500000px;}
.x0_c00274{left:0.000000px;}
.x2_c00274{left:82.710059px;}
.x1_c00274{left:431.730000px;}
@media print{
.v0_c00274{vertical-align:0.000000pt;}
.ls16_c00274{letter-spacing:-0.261408pt;}
.ls5_c00274{letter-spacing:-0.135060pt;}
.ls8_c00274{letter-spacing:-0.121554pt;}
.lsc_c00274{letter-spacing:-0.108048pt;}
.ls10_c00274{letter-spacing:-0.094542pt;}
.ls4_c00274{letter-spacing:-0.087789pt;}
.ls11_c00274{letter-spacing:-0.081036pt;}
.lse_c00274{letter-spacing:-0.067530pt;}
.lsa_c00274{letter-spacing:-0.060777pt;}
.ls2_c00274{letter-spacing:-0.056016pt;}
.lsf_c00274{letter-spacing:-0.054024pt;}
.lsb_c00274{letter-spacing:-0.047271pt;}
.ls17_c00274{letter-spacing:-0.043568pt;}
.ls6_c00274{letter-spacing:-0.040518pt;}
.ls14_c00274{letter-spacing:-0.037344pt;}
.lsd_c00274{letter-spacing:-0.033765pt;}
.ls12_c00274{letter-spacing:-0.031120pt;}
.ls9_c00274{letter-spacing:-0.027012pt;}
.ls7_c00274{letter-spacing:-0.020259pt;}
.ls18_c00274{letter-spacing:-0.018672pt;}
.ls15_c00274{letter-spacing:-0.012448pt;}
.ls13_c00274{letter-spacing:-0.006224pt;}
.ls3_c00274{letter-spacing:0.000000pt;}
.ls1_c00274{letter-spacing:0.006224pt;}
.ls0_c00274{letter-spacing:0.074283pt;}
.ws1f_c00274{word-spacing:-0.018672pt;}
.ws0_c00274{word-spacing:0.000000pt;}
.ws27_c00274{word-spacing:0.024896pt;}
.ws18_c00274{word-spacing:0.148566pt;}
.ws8_c00274{word-spacing:0.202590pt;}
.ws9_c00274{word-spacing:0.256615pt;}
.ws24_c00274{word-spacing:0.298752pt;}
.wsa_c00274{word-spacing:0.310639pt;}
.ws21_c00274{word-spacing:0.317424pt;}
.ws1b_c00274{word-spacing:0.336096pt;}
.ws19_c00274{word-spacing:0.357910pt;}
.ws25_c00274{word-spacing:0.672192pt;}
.ws1c_c00274{word-spacing:1.275920pt;}
.ws1a_c00274{word-spacing:3.217808pt;}
.ws5_c00274{word-spacing:3.909995pt;}
.ws4_c00274{word-spacing:3.997784pt;}
.ws6_c00274{word-spacing:4.078820pt;}
.ws7_c00274{word-spacing:4.200374pt;}
.ws26_c00274{word-spacing:6.416944pt;}
.ws20_c00274{word-spacing:7.674192pt;}
.ws1_c00274{word-spacing:7.840248pt;}
.ws14_c00274{word-spacing:7.853755pt;}
.ws3_c00274{word-spacing:7.928038pt;}
.ws2_c00274{word-spacing:8.009074pt;}
.ws15_c00274{word-spacing:8.042839pt;}
.ws17_c00274{word-spacing:8.265688pt;}
.ws16_c00274{word-spacing:8.481785pt;}
.wsb_c00274{word-spacing:8.751905pt;}
.wsc_c00274{word-spacing:8.778917pt;}
.ws29_c00274{word-spacing:8.950112pt;}
.wsd_c00274{word-spacing:8.961249pt;}
.ws28_c00274{word-spacing:8.968784pt;}
.ws23_c00274{word-spacing:9.616080pt;}
.ws22_c00274{word-spacing:9.846368pt;}
.ws1d_c00274{word-spacing:13.804832pt;}
.ws1e_c00274{word-spacing:14.103584pt;}
.ws10_c00274{word-spacing:16.051913pt;}
.wsf_c00274{word-spacing:16.153208pt;}
.wse_c00274{word-spacing:16.227491pt;}
.ws13_c00274{word-spacing:23.608535pt;}
.ws11_c00274{word-spacing:23.696324pt;}
.ws12_c00274{word-spacing:23.844890pt;}
._1_c00274{margin-left:-1.026458pt;}
._0_c00274{width:1.289826pt;}
.fs0_c00274{font-size:62.240000pt;}
.fs1_c00274{font-size:67.530133pt;}
.y0_c00274{bottom:0.000000pt;}
.y2_c00274{bottom:97.547527pt;}
.y1_c00274{bottom:115.387067pt;}
.y21_c00274{bottom:159.542627pt;}
.y20_c00274{bottom:186.343171pt;}
.y1f_c00274{bottom:213.223071pt;}
.y1e_c00274{bottom:240.023615pt;}
.y1d_c00274{bottom:266.903515pt;}
.y1c_c00274{bottom:293.704059pt;}
.y1b_c00274{bottom:320.583959pt;}
.y1a_c00274{bottom:347.384503pt;}
.y19_c00274{bottom:374.264403pt;}
.y18_c00274{bottom:401.064947pt;}
.y17_c00274{bottom:427.944847pt;}
.y16_c00274{bottom:454.745391pt;}
.y15_c00274{bottom:481.625291pt;}
.y14_c00274{bottom:508.425835pt;}
.y13_c00274{bottom:535.305735pt;}
.y12_c00274{bottom:562.106279pt;}
.y11_c00274{bottom:588.986179pt;}
.y10_c00274{bottom:615.786723pt;}
.yf_c00274{bottom:642.666623pt;}
.ye_c00274{bottom:669.467167pt;}
.yd_c00274{bottom:696.347067pt;}
.yc_c00274{bottom:724.347148pt;}
.yb_c00274{bottom:753.386793pt;}
.ya_c00274{bottom:782.426439pt;}
.y9_c00274{bottom:811.547121pt;}
.y8_c00274{bottom:840.586766pt;}
.y7_c00274{bottom:869.707448pt;}
.y6_c00274{bottom:898.747094pt;}
.y5_c00274{bottom:927.867775pt;}
.y4_c00274{bottom:956.907421pt;}
.y3_c00274{bottom:985.947067pt;}
.h1_c00274{height:55.797187pt;}
.h2_c00274{height:60.539709pt;}
.h0_c00274{height:1122.666667pt;}
.w0_c00274{width:793.333333pt;}
.x0_c00274{left:0.000000pt;}
.x2_c00274{left:73.520052pt;}
.x1_c00274{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5ed41251b1d1ce401bb898c0.woff2')format("woff");}.ff1_c00275{font-family:ff1_c00275;line-height:1.106934;font-style:normal;font-weight:normal;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_8d45bd6a431e24abcf4885dc.woff2')format("woff");}.ff2_c00275{font-family:ff2_c00275;line-height:0.892090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00275;src:url('chunks/assets/font_9251bdbf43e63eba76303e03.woff2')format("woff");}.ff3_c00275{font-family:ff3_c00275;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00275;src:url('chunks/assets/font_587da32f32e091c8eebe00b9.woff2')format("woff");}.ff4_c00275{font-family:ff4_c00275;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00275;src:url('chunks/assets/font_a4044124bf3a5341d498c162.woff2')format("woff");}.ff5_c00275{font-family:ff5_c00275;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00275;src:url('chunks/assets/font_1fb0efe1369e22f0776d0fb4.woff2')format("woff");}.ff6_c00275{font-family:ff6_c00275;line-height:1.133301;font-style:normal;font-weight: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_c00275;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff7_c00275{font-family:ff7_c00275;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00275{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00275{vertical-align:-14.400000px;}
.v0_c00275{vertical-align:0.000000px;}
.v1_c00275{vertical-align:32.043132px;}
.ls1b_c00275{letter-spacing:-0.654824px;}
.ls19_c00275{letter-spacing:-0.415111px;}
.ls11_c00275{letter-spacing:-0.335249px;}
.ls1a_c00275{letter-spacing:-0.157859px;}
.ls15_c00275{letter-spacing:-0.075619px;}
.lsc_c00275{letter-spacing:-0.063018px;}
.lsf_c00275{letter-spacing:-0.049014px;}
.ls14_c00275{letter-spacing:-0.035010px;}
.ls13_c00275{letter-spacing:-0.028008px;}
.lse_c00275{letter-spacing:-0.021006px;}
.ls10_c00275{letter-spacing:-0.014004px;}
.ls12_c00275{letter-spacing:-0.007002px;}
.lsd_c00275{letter-spacing:0.000000px;}
.ls7_c00275{letter-spacing:0.014004px;}
.lsa_c00275{letter-spacing:0.017540px;}
.ls2_c00275{letter-spacing:0.021006px;}
.ls9_c00275{letter-spacing:0.023281px;}
.ls4_c00275{letter-spacing:0.028008px;}
.lsb_c00275{letter-spacing:0.035080px;}
.ls8_c00275{letter-spacing:0.042012px;}
.ls1_c00275{letter-spacing:0.056016px;}
.ls6_c00275{letter-spacing:0.063018px;}
.ls16_c00275{letter-spacing:0.204632px;}
.ls0_c00275{letter-spacing:0.217062px;}
.ls3_c00275{letter-spacing:0.273078px;}
.ls18_c00275{letter-spacing:0.380032px;}
.ls17_c00275{letter-spacing:0.444345px;}
.ls5_c00275{letter-spacing:0.630180px;}
.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;}
}
.ws2_c00275{word-spacing:-70.020000px;}
.ws5_c00275{word-spacing:-58.466400px;}
.ws1_c00275{word-spacing:-19.738638px;}
.ws3_c00275{word-spacing:-12.967628px;}
.ws0_c00275{word-spacing:-12.609098px;}
.ws4_c00275{word-spacing:-10.397640px;}
.ws25_c00275{word-spacing:-0.724983px;}
.ws2b_c00275{word-spacing:-0.344952px;}
.ws21_c00275{word-spacing:-0.056016px;}
.wsd_c00275{word-spacing:-0.014004px;}
.ws6_c00275{word-spacing:0.000000px;}
.ws1c_c00275{word-spacing:0.014004px;}
.ws1d_c00275{word-spacing:0.364104px;}
.wsb_c00275{word-spacing:0.721206px;}
.wsa_c00275{word-spacing:2.926836px;}
.ws10_c00275{word-spacing:5.748642px;}
.ws12_c00275{word-spacing:5.755644px;}
.ws11_c00275{word-spacing:5.769648px;}
.wsc_c00275{word-spacing:6.084738px;}
.ws19_c00275{word-spacing:6.497856px;}
.ws1b_c00275{word-spacing:6.833952px;}
.ws1a_c00275{word-spacing:6.840954px;}
.ws29_c00275{word-spacing:8.091750px;}
.ws24_c00275{word-spacing:8.571174px;}
.ws2a_c00275{word-spacing:8.588714px;}
.ws22_c00275{word-spacing:8.810886px;}
.ws23_c00275{word-spacing:8.997979px;}
.wse_c00275{word-spacing:12.603600px;}
.wsf_c00275{word-spacing:12.946698px;}
.ws18_c00275{word-spacing:12.974706px;}
.ws17_c00275{word-spacing:13.310802px;}
.ws16_c00275{word-spacing:13.324806px;}
.ws20_c00275{word-spacing:14.032008px;}
.ws1f_c00275{word-spacing:14.410116px;}
.ws8_c00275{word-spacing:17.568018px;}
.ws7_c00275{word-spacing:17.645040px;}
.ws1e_c00275{word-spacing:17.974134px;}
.ws13_c00275{word-spacing:20.480850px;}
.ws14_c00275{word-spacing:20.529864px;}
.ws15_c00275{word-spacing:20.536866px;}
.ws9_c00275{word-spacing:27.034722px;}
.ws27_c00275{word-spacing:34.536102px;}
.ws28_c00275{word-spacing:34.729042px;}
.ws26_c00275{word-spacing:34.986294px;}
._2_c00275{margin-left:-2.583738px;}
._0_c00275{margin-left:-1.148328px;}
._1_c00275{width:1.036296px;}
._4_c00275{width:5.930694px;}
._3_c00275{width:12.750642px;}
.fc0_c00275{color:rgb(0,0,0);}
.fs2_c00275{font-size:37.809600px;}
.fs1_c00275{font-size:46.562400px;}
.fs3_c00275{font-size:58.466400px;}
.fs0_c00275{font-size:70.020000px;}
.y0_c00275{bottom:0.000000px;}
.y2_c00275{bottom:109.740968px;}
.y1_c00275{bottom:129.810450px;}
.y24_c00275{bottom:149.429548px;}
.y23_c00275{bottom:167.250107px;}
.y22_c00275{bottom:188.940450px;}
.y21_c00275{bottom:203.070107px;}
.y20_c00275{bottom:224.670450px;}
.y1f_c00275{bottom:239.430076px;}
.y1e_c00275{bottom:277.499951px;}
.y1d_c00275{bottom:307.650562px;}
.y1c_c00275{bottom:337.887916px;}
.y1b_c00275{bottom:368.038528px;}
.y1a_c00275{bottom:398.278416px;}
.y19_c00275{bottom:428.429028px;}
.y18_c00275{bottom:458.668915px;}
.y17_c00275{bottom:488.728501px;}
.y16_c00275{bottom:518.968389px;}
.y15_c00275{bottom:549.119001px;}
.y14_c00275{bottom:579.358888px;}
.y13_c00275{bottom:609.509500px;}
.y12_c00275{bottom:640.290292px;}
.y11_c00275{bottom:672.060117px;}
.y10_c00275{bottom:703.380063px;}
.yf_c00275{bottom:733.530675px;}
.ye_c00275{bottom:763.770562px;}
.yd_c00275{bottom:794.009667px;}
.yc_c00275{bottom:824.160279px;}
.yb_c00275{bottom:854.400166px;}
.ya_c00275{bottom:899.039667px;}
.y9_c00275{bottom:929.279555px;}
.y8_c00275{bottom:959.519442px;}
.y7_c00275{bottom:989.670054px;}
.y6_c00275{bottom:1019.909942px;}
.y5_c00275{bottom:1050.060553px;}
.y4_c00275{bottom:1080.300441px;}
.y3_c00275{bottom:1110.451053px;}
.h8_c00275{height:39.338549px;}
.h6_c00275{height:39.698549px;}
.h7_c00275{height:54.098549px;}
.h2_c00275{height:62.600889px;}
.h1_c00275{height:62.771836px;}
.h5_c00275{height:62.773330px;}
.h3_c00275{height:73.671918px;}
.h4_c00275{height:73.678920px;}
.h0_c00275{height:1263.000000px;}
.w0_c00275{width:892.500000px;}
.x0_c00275{left:0.000000px;}
.x2_c00275{left:82.710059px;}
.x1_c00275{left:431.730000px;}
@media print{
.v2_c00275{vertical-align:-12.800000pt;}
.v0_c00275{vertical-align:0.000000pt;}
.v1_c00275{vertical-align:28.482784pt;}
.ls1b_c00275{letter-spacing:-0.582065pt;}
.ls19_c00275{letter-spacing:-0.368988pt;}
.ls11_c00275{letter-spacing:-0.297999pt;}
.ls1a_c00275{letter-spacing:-0.140319pt;}
.ls15_c00275{letter-spacing:-0.067217pt;}
.lsc_c00275{letter-spacing:-0.056016pt;}
.lsf_c00275{letter-spacing:-0.043568pt;}
.ls14_c00275{letter-spacing:-0.031120pt;}
.ls13_c00275{letter-spacing:-0.024896pt;}
.lse_c00275{letter-spacing:-0.018672pt;}
.ls10_c00275{letter-spacing:-0.012448pt;}
.ls12_c00275{letter-spacing:-0.006224pt;}
.lsd_c00275{letter-spacing:0.000000pt;}
.ls7_c00275{letter-spacing:0.012448pt;}
.lsa_c00275{letter-spacing:0.015591pt;}
.ls2_c00275{letter-spacing:0.018672pt;}
.ls9_c00275{letter-spacing:0.020694pt;}
.ls4_c00275{letter-spacing:0.024896pt;}
.lsb_c00275{letter-spacing:0.031182pt;}
.ls8_c00275{letter-spacing:0.037344pt;}
.ls1_c00275{letter-spacing:0.049792pt;}
.ls6_c00275{letter-spacing:0.056016pt;}
.ls16_c00275{letter-spacing:0.181895pt;}
.ls0_c00275{letter-spacing:0.192944pt;}
.ls3_c00275{letter-spacing:0.242736pt;}
.ls18_c00275{letter-spacing:0.337806pt;}
.ls17_c00275{letter-spacing:0.394973pt;}
.ls5_c00275{letter-spacing:0.560160pt;}
.ws2_c00275{word-spacing:-62.240000pt;}
.ws5_c00275{word-spacing:-51.970133pt;}
.ws1_c00275{word-spacing:-17.545456pt;}
.ws3_c00275{word-spacing:-11.526781pt;}
.ws0_c00275{word-spacing:-11.208087pt;}
.ws4_c00275{word-spacing:-9.242347pt;}
.ws25_c00275{word-spacing:-0.644430pt;}
.ws2b_c00275{word-spacing:-0.306624pt;}
.ws21_c00275{word-spacing:-0.049792pt;}
.wsd_c00275{word-spacing:-0.012448pt;}
.ws6_c00275{word-spacing:0.000000pt;}
.ws1c_c00275{word-spacing:0.012448pt;}
.ws1d_c00275{word-spacing:0.323648pt;}
.wsb_c00275{word-spacing:0.641072pt;}
.wsa_c00275{word-spacing:2.601632pt;}
.ws10_c00275{word-spacing:5.109904pt;}
.ws12_c00275{word-spacing:5.116128pt;}
.ws11_c00275{word-spacing:5.128576pt;}
.wsc_c00275{word-spacing:5.408656pt;}
.ws19_c00275{word-spacing:5.775872pt;}
.ws1b_c00275{word-spacing:6.074624pt;}
.ws1a_c00275{word-spacing:6.080848pt;}
.ws29_c00275{word-spacing:7.192666pt;}
.ws24_c00275{word-spacing:7.618822pt;}
.ws2a_c00275{word-spacing:7.634413pt;}
.ws22_c00275{word-spacing:7.831899pt;}
.ws23_c00275{word-spacing:7.998204pt;}
.wse_c00275{word-spacing:11.203200pt;}
.wsf_c00275{word-spacing:11.508176pt;}
.ws18_c00275{word-spacing:11.533072pt;}
.ws17_c00275{word-spacing:11.831824pt;}
.ws16_c00275{word-spacing:11.844272pt;}
.ws20_c00275{word-spacing:12.472896pt;}
.ws1f_c00275{word-spacing:12.808992pt;}
.ws8_c00275{word-spacing:15.616016pt;}
.ws7_c00275{word-spacing:15.684480pt;}
.ws1e_c00275{word-spacing:15.977008pt;}
.ws13_c00275{word-spacing:18.205200pt;}
.ws14_c00275{word-spacing:18.248768pt;}
.ws15_c00275{word-spacing:18.254992pt;}
.ws9_c00275{word-spacing:24.030864pt;}
.ws27_c00275{word-spacing:30.698758pt;}
.ws28_c00275{word-spacing:30.870259pt;}
.ws26_c00275{word-spacing:31.098928pt;}
._2_c00275{margin-left:-2.296656pt;}
._0_c00275{margin-left:-1.020736pt;}
._1_c00275{width:0.921152pt;}
._4_c00275{width:5.271728pt;}
._3_c00275{width:11.333904pt;}
.fs2_c00275{font-size:33.608533pt;}
.fs1_c00275{font-size:41.388800pt;}
.fs3_c00275{font-size:51.970133pt;}
.fs0_c00275{font-size:62.240000pt;}
.y0_c00275{bottom:0.000000pt;}
.y2_c00275{bottom:97.547527pt;}
.y1_c00275{bottom:115.387067pt;}
.y24_c00275{bottom:132.826265pt;}
.y23_c00275{bottom:148.666762pt;}
.y22_c00275{bottom:167.947067pt;}
.y21_c00275{bottom:180.506762pt;}
.y20_c00275{bottom:199.707067pt;}
.y1f_c00275{bottom:212.826735pt;}
.y1e_c00275{bottom:246.666623pt;}
.y1d_c00275{bottom:273.467167pt;}
.y1c_c00275{bottom:300.344815pt;}
.y1b_c00275{bottom:327.145359pt;}
.y1a_c00275{bottom:354.025259pt;}
.y19_c00275{bottom:380.825803pt;}
.y18_c00275{bottom:407.705703pt;}
.y17_c00275{bottom:434.425335pt;}
.y16_c00275{bottom:461.305235pt;}
.y15_c00275{bottom:488.105779pt;}
.y14_c00275{bottom:514.985679pt;}
.y13_c00275{bottom:541.786223pt;}
.y12_c00275{bottom:569.146927pt;}
.y11_c00275{bottom:597.386771pt;}
.y10_c00275{bottom:625.226723pt;}
.yf_c00275{bottom:652.027267pt;}
.ye_c00275{bottom:678.907167pt;}
.yd_c00275{bottom:705.786371pt;}
.yc_c00275{bottom:732.586915pt;}
.yb_c00275{bottom:759.466815pt;}
.ya_c00275{bottom:799.146371pt;}
.y9_c00275{bottom:826.026271pt;}
.y8_c00275{bottom:852.906171pt;}
.y7_c00275{bottom:879.706715pt;}
.y6_c00275{bottom:906.586615pt;}
.y5_c00275{bottom:933.387159pt;}
.y4_c00275{bottom:960.267059pt;}
.y3_c00275{bottom:987.067603pt;}
.h8_c00275{height:34.967599pt;}
.h6_c00275{height:35.287599pt;}
.h7_c00275{height:48.087599pt;}
.h2_c00275{height:55.645234pt;}
.h1_c00275{height:55.797187pt;}
.h5_c00275{height:55.798516pt;}
.h3_c00275{height:65.486150pt;}
.h4_c00275{height:65.492374pt;}
.h0_c00275{height:1122.666667pt;}
.w0_c00275{width:793.333333pt;}
.x0_c00275{left:0.000000pt;}
.x2_c00275{left:73.520052pt;}
.x1_c00275{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ed488e759aa13f4cfcbaba63.woff2')format("woff");}.ff1_c00276{font-family:ff1_c00276;line-height:1.106934;font-style:normal;font-weight:normal;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_8b5f21a59ab377fb49ad948a.woff2')format("woff");}.ff2_c00276{font-family:ff2_c00276;line-height:1.104492;font-style:normal;font-weight:normal;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_c3f0980121f1e30415895a57.woff2')format("woff");}.ff3_c00276{font-family:ff3_c00276;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00276;src:url('chunks/assets/font_f9d73a7eac352673a8a8177c.woff2')format("woff");}.ff4_c00276{font-family:ff4_c00276;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00276{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00276{vertical-align:-14.760000px;}
.v0_c00276{vertical-align:0.000000px;}
.v1_c00276{vertical-align:32.053572px;}
.ls11_c00276{letter-spacing:-0.157859px;}
.ls10_c00276{letter-spacing:-0.075619px;}
.ls6_c00276{letter-spacing:-0.063018px;}
.lsd_c00276{letter-spacing:-0.056016px;}
.lse_c00276{letter-spacing:-0.042012px;}
.ls8_c00276{letter-spacing:-0.035010px;}
.lsc_c00276{letter-spacing:-0.028008px;}
.lsa_c00276{letter-spacing:-0.021006px;}
.ls9_c00276{letter-spacing:-0.014004px;}
.lsb_c00276{letter-spacing:-0.007002px;}
.ls7_c00276{letter-spacing:0.000000px;}
.ls13_c00276{letter-spacing:0.005847px;}
.ls2_c00276{letter-spacing:0.007002px;}
.ls4_c00276{letter-spacing:0.023281px;}
.ls1_c00276{letter-spacing:0.028008px;}
.ls3_c00276{letter-spacing:0.035010px;}
.ls0_c00276{letter-spacing:0.042012px;}
.ls12_c00276{letter-spacing:0.064313px;}
.ls5_c00276{letter-spacing:0.093546px;}
.lsf_c00276{letter-spacing:0.343098px;}
.sc__c00276{text-shadow:none;}
.sc0_c00276{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00276{-webkit-text-stroke:0px transparent;}
.sc0_c00276{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00276{word-spacing:-16.259506px;}
.ws0_c00276{word-spacing:-12.967628px;}
.ws1_c00276{word-spacing:-10.397640px;}
.ws3_c00276{word-spacing:0.000000px;}
.ws23_c00276{word-spacing:0.005847px;}
.ws20_c00276{word-spacing:0.014004px;}
.ws1a_c00276{word-spacing:0.028008px;}
.wse_c00276{word-spacing:0.336096px;}
.ws4_c00276{word-spacing:0.343098px;}
.wsd_c00276{word-spacing:0.350100px;}
.ws1b_c00276{word-spacing:0.364104px;}
.ws8_c00276{word-spacing:0.378108px;}
.wsc_c00276{word-spacing:0.728208px;}
.ws5_c00276{word-spacing:0.742212px;}
.ws6_c00276{word-spacing:2.163618px;}
.ws16_c00276{word-spacing:2.520720px;}
.ws15_c00276{word-spacing:2.541726px;}
.ws12_c00276{word-spacing:4.628322px;}
.ws11_c00276{word-spacing:4.684338px;}
.wsf_c00276{word-spacing:6.133752px;}
.ws10_c00276{word-spacing:6.161760px;}
.ws1c_c00276{word-spacing:8.283366px;}
.ws1d_c00276{word-spacing:8.661474px;}
.ws21_c00276{word-spacing:11.693280px;}
.ws22_c00276{word-spacing:11.798520px;}
.ws19_c00276{word-spacing:12.225492px;}
.ws13_c00276{word-spacing:14.039010px;}
.ws9_c00276{word-spacing:14.088024px;}
.wsa_c00276{word-spacing:14.347098px;}
.wsb_c00276{word-spacing:14.361102px;}
.ws14_c00276{word-spacing:14.410116px;}
.ws18_c00276{word-spacing:14.746212px;}
.ws17_c00276{word-spacing:14.767218px;}
.ws1f_c00276{word-spacing:15.103314px;}
.ws1e_c00276{word-spacing:15.117318px;}
.ws7_c00276{word-spacing:43.559442px;}
._1_c00276{margin-left:-42.810228px;}
._4_c00276{margin-left:-2.709828px;}
._2_c00276{margin-left:-1.155330px;}
._0_c00276{width:1.001286px;}
._3_c00276{width:5.930694px;}
.fc0_c00276{color:rgb(0,0,0);}
.fs2_c00276{font-size:37.809600px;}
.fs1_c00276{font-size:46.562400px;}
.fs3_c00276{font-size:58.466400px;}
.fs0_c00276{font-size:70.020000px;}
.y0_c00276{bottom:0.000000px;}
.y2_c00276{bottom:109.740968px;}
.y1_c00276{bottom:129.810450px;}
.y22_c00276{bottom:149.429548px;}
.y21_c00276{bottom:167.250107px;}
.y20_c00276{bottom:188.940450px;}
.y1f_c00276{bottom:203.611422px;}
.y1e_c00276{bottom:260.220841px;}
.y1d_c00276{bottom:290.460729px;}
.y1c_c00276{bottom:320.611341px;}
.y1b_c00276{bottom:359.580972px;}
.y1a_c00276{bottom:398.550603px;}
.y19_c00276{bottom:437.520234px;}
.y18_c00276{bottom:476.400589px;}
.y17_c00276{bottom:506.640477px;}
.y16_c00276{bottom:536.791089px;}
.y15_c00276{bottom:567.030976px;}
.y14_c00276{bottom:597.090562px;}
.y13_c00276{bottom:627.327057px;}
.y12_c00276{bottom:657.477669px;}
.y11_c00276{bottom:687.717557px;}
.y10_c00276{bottom:717.868169px;}
.yf_c00276{bottom:748.108056px;}
.ye_c00276{bottom:778.258668px;}
.yd_c00276{bottom:808.498556px;}
.yc_c00276{bottom:838.649168px;}
.yb_c00276{bottom:868.889055px;}
.ya_c00276{bottom:899.039667px;}
.y9_c00276{bottom:929.279555px;}
.y8_c00276{bottom:959.519442px;}
.y7_c00276{bottom:989.670054px;}
.y6_c00276{bottom:1019.909942px;}
.y5_c00276{bottom:1050.060553px;}
.y4_c00276{bottom:1080.300441px;}
.y3_c00276{bottom:1110.451053px;}
.h3_c00276{height:39.338549px;}
.h4_c00276{height:54.098549px;}
.h1_c00276{height:62.771836px;}
.h2_c00276{height:73.796036px;}
.h0_c00276{height:1263.000000px;}
.w0_c00276{width:892.500000px;}
.x0_c00276{left:0.000000px;}
.x2_c00276{left:82.710059px;}
.x1_c00276{left:431.730000px;}
@media print{
.v2_c00276{vertical-align:-13.120000pt;}
.v0_c00276{vertical-align:0.000000pt;}
.v1_c00276{vertical-align:28.492064pt;}
.ls11_c00276{letter-spacing:-0.140319pt;}
.ls10_c00276{letter-spacing:-0.067217pt;}
.ls6_c00276{letter-spacing:-0.056016pt;}
.lsd_c00276{letter-spacing:-0.049792pt;}
.lse_c00276{letter-spacing:-0.037344pt;}
.ls8_c00276{letter-spacing:-0.031120pt;}
.lsc_c00276{letter-spacing:-0.024896pt;}
.lsa_c00276{letter-spacing:-0.018672pt;}
.ls9_c00276{letter-spacing:-0.012448pt;}
.lsb_c00276{letter-spacing:-0.006224pt;}
.ls7_c00276{letter-spacing:0.000000pt;}
.ls13_c00276{letter-spacing:0.005197pt;}
.ls2_c00276{letter-spacing:0.006224pt;}
.ls4_c00276{letter-spacing:0.020694pt;}
.ls1_c00276{letter-spacing:0.024896pt;}
.ls3_c00276{letter-spacing:0.031120pt;}
.ls0_c00276{letter-spacing:0.037344pt;}
.ls12_c00276{letter-spacing:0.057167pt;}
.ls5_c00276{letter-spacing:0.083152pt;}
.lsf_c00276{letter-spacing:0.304976pt;}
.ws2_c00276{word-spacing:-14.452894pt;}
.ws0_c00276{word-spacing:-11.526781pt;}
.ws1_c00276{word-spacing:-9.242347pt;}
.ws3_c00276{word-spacing:0.000000pt;}
.ws23_c00276{word-spacing:0.005197pt;}
.ws20_c00276{word-spacing:0.012448pt;}
.ws1a_c00276{word-spacing:0.024896pt;}
.wse_c00276{word-spacing:0.298752pt;}
.ws4_c00276{word-spacing:0.304976pt;}
.wsd_c00276{word-spacing:0.311200pt;}
.ws1b_c00276{word-spacing:0.323648pt;}
.ws8_c00276{word-spacing:0.336096pt;}
.wsc_c00276{word-spacing:0.647296pt;}
.ws5_c00276{word-spacing:0.659744pt;}
.ws6_c00276{word-spacing:1.923216pt;}
.ws16_c00276{word-spacing:2.240640pt;}
.ws15_c00276{word-spacing:2.259312pt;}
.ws12_c00276{word-spacing:4.114064pt;}
.ws11_c00276{word-spacing:4.163856pt;}
.wsf_c00276{word-spacing:5.452224pt;}
.ws10_c00276{word-spacing:5.477120pt;}
.ws1c_c00276{word-spacing:7.362992pt;}
.ws1d_c00276{word-spacing:7.699088pt;}
.ws21_c00276{word-spacing:10.394027pt;}
.ws22_c00276{word-spacing:10.487573pt;}
.ws19_c00276{word-spacing:10.867104pt;}
.ws13_c00276{word-spacing:12.479120pt;}
.ws9_c00276{word-spacing:12.522688pt;}
.wsa_c00276{word-spacing:12.752976pt;}
.wsb_c00276{word-spacing:12.765424pt;}
.ws14_c00276{word-spacing:12.808992pt;}
.ws18_c00276{word-spacing:13.107744pt;}
.ws17_c00276{word-spacing:13.126416pt;}
.ws1f_c00276{word-spacing:13.425168pt;}
.ws1e_c00276{word-spacing:13.437616pt;}
.ws7_c00276{word-spacing:38.719504pt;}
._1_c00276{margin-left:-38.053536pt;}
._4_c00276{margin-left:-2.408736pt;}
._2_c00276{margin-left:-1.026960pt;}
._0_c00276{width:0.890032pt;}
._3_c00276{width:5.271728pt;}
.fs2_c00276{font-size:33.608533pt;}
.fs1_c00276{font-size:41.388800pt;}
.fs3_c00276{font-size:51.970133pt;}
.fs0_c00276{font-size:62.240000pt;}
.y0_c00276{bottom:0.000000pt;}
.y2_c00276{bottom:97.547527pt;}
.y1_c00276{bottom:115.387067pt;}
.y22_c00276{bottom:132.826265pt;}
.y21_c00276{bottom:148.666762pt;}
.y20_c00276{bottom:167.947067pt;}
.y1f_c00276{bottom:180.987931pt;}
.y1e_c00276{bottom:231.307415pt;}
.y1d_c00276{bottom:258.187315pt;}
.y1c_c00276{bottom:284.987859pt;}
.y1b_c00276{bottom:319.627531pt;}
.y1a_c00276{bottom:354.267203pt;}
.y19_c00276{bottom:388.906875pt;}
.y18_c00276{bottom:423.467191pt;}
.y17_c00276{bottom:450.347091pt;}
.y16_c00276{bottom:477.147635pt;}
.y15_c00276{bottom:504.027535pt;}
.y14_c00276{bottom:530.747167pt;}
.y13_c00276{bottom:557.624051pt;}
.y12_c00276{bottom:584.424595pt;}
.y11_c00276{bottom:611.304495pt;}
.y10_c00276{bottom:638.105039pt;}
.yf_c00276{bottom:664.984939pt;}
.ye_c00276{bottom:691.785483pt;}
.yd_c00276{bottom:718.665383pt;}
.yc_c00276{bottom:745.465927pt;}
.yb_c00276{bottom:772.345827pt;}
.ya_c00276{bottom:799.146371pt;}
.y9_c00276{bottom:826.026271pt;}
.y8_c00276{bottom:852.906171pt;}
.y7_c00276{bottom:879.706715pt;}
.y6_c00276{bottom:906.586615pt;}
.y5_c00276{bottom:933.387159pt;}
.y4_c00276{bottom:960.267059pt;}
.y3_c00276{bottom:987.067603pt;}
.h3_c00276{height:34.967599pt;}
.h4_c00276{height:48.087599pt;}
.h1_c00276{height:55.797187pt;}
.h2_c00276{height:65.596476pt;}
.h0_c00276{height:1122.666667pt;}
.w0_c00276{width:793.333333pt;}
.x0_c00276{left:0.000000pt;}
.x2_c00276{left:73.520052pt;}
.x1_c00276{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4340a30306ff1c307e59db2a.woff2')format("woff");}.ff1_c00277{font-family:ff1_c00277;line-height:1.106934;font-style:normal;font-weight:normal;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_af52627b194e843936404ace.woff2')format("woff");}.ff2_c00277{font-family:ff2_c00277;line-height:1.104492;font-style:normal;font-weight:normal;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_42cbf7066c30ff2ad6920c01.woff2')format("woff");}.ff3_c00277{font-family:ff3_c00277;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00277;src:url('chunks/assets/font_9134db9ec6d7b2814ec36162.woff2')format("woff");}.ff4_c00277{font-family:ff4_c00277;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00277;src:url('chunks/assets/font_9eb46c34185e6474b205bf24.woff2')format("woff");}.ff5_c00277{font-family:ff5_c00277;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00277;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff6_c00277{font-family:ff6_c00277;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00277{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00277{vertical-align:-14.760000px;}
.v0_c00277{vertical-align:0.000000px;}
.v1_c00277{vertical-align:17.638488px;}
.lsf_c00277{letter-spacing:-0.268945px;}
.ls13_c00277{letter-spacing:-0.263099px;}
.lsa_c00277{letter-spacing:-0.246781px;}
.ls12_c00277{letter-spacing:-0.146166px;}
.lse_c00277{letter-spacing:-0.075619px;}
.ls4_c00277{letter-spacing:-0.063018px;}
.ls9_c00277{letter-spacing:-0.056016px;}
.lsd_c00277{letter-spacing:-0.042012px;}
.ls8_c00277{letter-spacing:-0.035010px;}
.lsc_c00277{letter-spacing:-0.028008px;}
.ls6_c00277{letter-spacing:-0.021006px;}
.lsb_c00277{letter-spacing:-0.014004px;}
.ls7_c00277{letter-spacing:-0.007002px;}
.ls5_c00277{letter-spacing:0.000000px;}
.ls1_c00277{letter-spacing:0.007002px;}
.ls2_c00277{letter-spacing:0.014004px;}
.ls0_c00277{letter-spacing:0.021006px;}
.ls3_c00277{letter-spacing:0.042012px;}
.ls10_c00277{letter-spacing:0.099393px;}
.ls11_c00277{letter-spacing:0.701597px;}
.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;}
}
.ws3_c00277{word-spacing:-58.466400px;}
.ws1_c00277{word-spacing:-19.465560px;}
.ws0_c00277{word-spacing:-12.651004px;}
.ws2_c00277{word-spacing:-10.397640px;}
.wsb_c00277{word-spacing:-0.007002px;}
.ws4_c00277{word-spacing:0.000000px;}
.ws10_c00277{word-spacing:0.021006px;}
.ws27_c00277{word-spacing:0.157859px;}
.ws21_c00277{word-spacing:0.336096px;}
.ws24_c00277{word-spacing:0.371106px;}
.ws26_c00277{word-spacing:0.631437px;}
.ws28_c00277{word-spacing:0.637284px;}
.wsd_c00277{word-spacing:0.700200px;}
.wse_c00277{word-spacing:0.763218px;}
.ws1d_c00277{word-spacing:1.071306px;}
.ws25_c00277{word-spacing:1.362267px;}
.ws15_c00277{word-spacing:1.806516px;}
.ws18_c00277{word-spacing:2.142612px;}
.ws19_c00277{word-spacing:2.177622px;}
.wsf_c00277{word-spacing:3.578022px;}
.ws1b_c00277{word-spacing:5.013432px;}
.ws1c_c00277{word-spacing:5.055444px;}
.ws7_c00277{word-spacing:5.363532px;}
.ws8_c00277{word-spacing:5.391540px;}
.ws1f_c00277{word-spacing:7.177050px;}
.ws1e_c00277{word-spacing:7.219062px;}
.ws20_c00277{word-spacing:7.226064px;}
.ws17_c00277{word-spacing:9.704772px;}
.ws9_c00277{word-spacing:10.818090px;}
.ws5_c00277{word-spacing:12.967704px;}
.ws11_c00277{word-spacing:15.110316px;}
.ws13_c00277{word-spacing:15.453414px;}
.ws6_c00277{word-spacing:15.467418px;}
.ws12_c00277{word-spacing:15.481422px;}
.wsa_c00277{word-spacing:16.909830px;}
.ws14_c00277{word-spacing:19.087452px;}
.ws16_c00277{word-spacing:19.801656px;}
.ws1a_c00277{word-spacing:20.900970px;}
.ws22_c00277{word-spacing:23.701770px;}
.ws23_c00277{word-spacing:23.799798px;}
.wsc_c00277{word-spacing:27.349812px;}
._2_c00277{margin-left:-2.807802px;}
._0_c00277{margin-left:-1.414404px;}
._1_c00277{width:1.232352px;}
._4_c00277{width:5.930694px;}
._3_c00277{width:23.043582px;}
.fc0_c00277{color:rgb(0,0,0);}
.fs2_c00277{font-size:37.809600px;}
.fs1_c00277{font-size:46.562400px;}
.fs3_c00277{font-size:58.466400px;}
.fs0_c00277{font-size:70.020000px;}
.y0_c00277{bottom:0.000000px;}
.y2_c00277{bottom:109.740968px;}
.y1_c00277{bottom:129.810450px;}
.y21_c00277{bottom:149.429891px;}
.y20_c00277{bottom:170.940450px;}
.y1f_c00277{bottom:185.696535px;}
.y1e_c00277{bottom:232.676454px;}
.y1d_c00277{bottom:262.827066px;}
.y1c_c00277{bottom:292.977678px;}
.y1b_c00277{bottom:323.128290px;}
.y1a_c00277{bottom:353.368178px;}
.y19_c00277{bottom:383.518790px;}
.y18_c00277{bottom:413.758677px;}
.y17_c00277{bottom:452.728308px;}
.y16_c00277{bottom:491.608663px;}
.y15_c00277{bottom:521.848551px;}
.y14_c00277{bottom:552.088438px;}
.y13_c00277{bottom:582.239050px;}
.y12_c00277{bottom:612.478938px;}
.y11_c00277{bottom:642.629550px;}
.y10_c00277{bottom:672.869438px;}
.yf_c00277{bottom:711.749793px;}
.ye_c00277{bottom:750.810828px;}
.yd_c00277{bottom:782.220050px;}
.yc_c00277{bottom:812.459937px;}
.yb_c00277{bottom:842.610549px;}
.ya_c00277{bottom:881.580180px;}
.y9_c00277{bottom:920.549811px;}
.y8_c00277{bottom:950.700423px;}
.y7_c00277{bottom:980.940311px;}
.y6_c00277{bottom:1011.090923px;}
.y5_c00277{bottom:1041.330810px;}
.y4_c00277{bottom:1071.481422px;}
.y3_c00277{bottom:1110.451053px;}
.h6_c00277{height:39.338549px;}
.h7_c00277{height:54.098549px;}
.h2_c00277{height:62.600889px;}
.h3_c00277{height:62.770324px;}
.h1_c00277{height:62.771836px;}
.h5_c00277{height:62.788096px;}
.h4_c00277{height:63.216299px;}
.h0_c00277{height:1263.000000px;}
.w0_c00277{width:892.500000px;}
.x0_c00277{left:0.000000px;}
.x2_c00277{left:82.710059px;}
.x1_c00277{left:431.730000px;}
@media print{
.v2_c00277{vertical-align:-13.120000pt;}
.v0_c00277{vertical-align:0.000000pt;}
.v1_c00277{vertical-align:15.678656pt;}
.lsf_c00277{letter-spacing:-0.239063pt;}
.ls13_c00277{letter-spacing:-0.233866pt;}
.lsa_c00277{letter-spacing:-0.219361pt;}
.ls12_c00277{letter-spacing:-0.129925pt;}
.lse_c00277{letter-spacing:-0.067217pt;}
.ls4_c00277{letter-spacing:-0.056016pt;}
.ls9_c00277{letter-spacing:-0.049792pt;}
.lsd_c00277{letter-spacing:-0.037344pt;}
.ls8_c00277{letter-spacing:-0.031120pt;}
.lsc_c00277{letter-spacing:-0.024896pt;}
.ls6_c00277{letter-spacing:-0.018672pt;}
.lsb_c00277{letter-spacing:-0.012448pt;}
.ls7_c00277{letter-spacing:-0.006224pt;}
.ls5_c00277{letter-spacing:0.000000pt;}
.ls1_c00277{letter-spacing:0.006224pt;}
.ls2_c00277{letter-spacing:0.012448pt;}
.ls0_c00277{letter-spacing:0.018672pt;}
.ls3_c00277{letter-spacing:0.037344pt;}
.ls10_c00277{letter-spacing:0.088349pt;}
.ls11_c00277{letter-spacing:0.623642pt;}
.ws3_c00277{word-spacing:-51.970133pt;}
.ws1_c00277{word-spacing:-17.302720pt;}
.ws0_c00277{word-spacing:-11.245337pt;}
.ws2_c00277{word-spacing:-9.242347pt;}
.wsb_c00277{word-spacing:-0.006224pt;}
.ws4_c00277{word-spacing:0.000000pt;}
.ws10_c00277{word-spacing:0.018672pt;}
.ws27_c00277{word-spacing:0.140319pt;}
.ws21_c00277{word-spacing:0.298752pt;}
.ws24_c00277{word-spacing:0.329872pt;}
.ws26_c00277{word-spacing:0.561277pt;}
.ws28_c00277{word-spacing:0.566474pt;}
.wsd_c00277{word-spacing:0.622400pt;}
.wse_c00277{word-spacing:0.678416pt;}
.ws1d_c00277{word-spacing:0.952272pt;}
.ws25_c00277{word-spacing:1.210904pt;}
.ws15_c00277{word-spacing:1.605792pt;}
.ws18_c00277{word-spacing:1.904544pt;}
.ws19_c00277{word-spacing:1.935664pt;}
.wsf_c00277{word-spacing:3.180464pt;}
.ws1b_c00277{word-spacing:4.456384pt;}
.ws1c_c00277{word-spacing:4.493728pt;}
.ws7_c00277{word-spacing:4.767584pt;}
.ws8_c00277{word-spacing:4.792480pt;}
.ws1f_c00277{word-spacing:6.379600pt;}
.ws1e_c00277{word-spacing:6.416944pt;}
.ws20_c00277{word-spacing:6.423168pt;}
.ws17_c00277{word-spacing:8.626464pt;}
.ws9_c00277{word-spacing:9.616080pt;}
.ws5_c00277{word-spacing:11.526848pt;}
.ws11_c00277{word-spacing:13.431392pt;}
.ws13_c00277{word-spacing:13.736368pt;}
.ws6_c00277{word-spacing:13.748816pt;}
.ws12_c00277{word-spacing:13.761264pt;}
.wsa_c00277{word-spacing:15.030960pt;}
.ws14_c00277{word-spacing:16.966624pt;}
.ws16_c00277{word-spacing:17.601472pt;}
.ws1a_c00277{word-spacing:18.578640pt;}
.ws22_c00277{word-spacing:21.068240pt;}
.ws23_c00277{word-spacing:21.155376pt;}
.wsc_c00277{word-spacing:24.310944pt;}
._2_c00277{margin-left:-2.495824pt;}
._0_c00277{margin-left:-1.257248pt;}
._1_c00277{width:1.095424pt;}
._4_c00277{width:5.271728pt;}
._3_c00277{width:20.483184pt;}
.fs2_c00277{font-size:33.608533pt;}
.fs1_c00277{font-size:41.388800pt;}
.fs3_c00277{font-size:51.970133pt;}
.fs0_c00277{font-size:62.240000pt;}
.y0_c00277{bottom:0.000000pt;}
.y2_c00277{bottom:97.547527pt;}
.y1_c00277{bottom:115.387067pt;}
.y21_c00277{bottom:132.826570pt;}
.y20_c00277{bottom:151.947067pt;}
.y1f_c00277{bottom:165.063587pt;}
.y1e_c00277{bottom:206.823515pt;}
.y1d_c00277{bottom:233.624059pt;}
.y1c_c00277{bottom:260.424603pt;}
.y1b_c00277{bottom:287.225147pt;}
.y1a_c00277{bottom:314.105047pt;}
.y19_c00277{bottom:340.905591pt;}
.y18_c00277{bottom:367.785491pt;}
.y17_c00277{bottom:402.425163pt;}
.y16_c00277{bottom:436.985479pt;}
.y15_c00277{bottom:463.865379pt;}
.y14_c00277{bottom:490.745279pt;}
.y13_c00277{bottom:517.545823pt;}
.y12_c00277{bottom:544.425723pt;}
.y11_c00277{bottom:571.226267pt;}
.y10_c00277{bottom:598.106167pt;}
.yf_c00277{bottom:632.666483pt;}
.ye_c00277{bottom:667.387403pt;}
.yd_c00277{bottom:695.306711pt;}
.yc_c00277{bottom:722.186611pt;}
.yb_c00277{bottom:748.987155pt;}
.ya_c00277{bottom:783.626827pt;}
.y9_c00277{bottom:818.266499pt;}
.y8_c00277{bottom:845.067043pt;}
.y7_c00277{bottom:871.946943pt;}
.y6_c00277{bottom:898.747487pt;}
.y5_c00277{bottom:925.627387pt;}
.y4_c00277{bottom:952.427931pt;}
.y3_c00277{bottom:987.067603pt;}
.h6_c00277{height:34.967599pt;}
.h7_c00277{height:48.087599pt;}
.h2_c00277{height:55.645234pt;}
.h3_c00277{height:55.795843pt;}
.h1_c00277{height:55.797187pt;}
.h5_c00277{height:55.811641pt;}
.h4_c00277{height:56.192266pt;}
.h0_c00277{height:1122.666667pt;}
.w0_c00277{width:793.333333pt;}
.x0_c00277{left:0.000000pt;}
.x2_c00277{left:73.520052pt;}
.x1_c00277{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3d2a6e80df896d7059225430.woff2')format("woff");}.ff1_c00278{font-family:ff1_c00278;line-height:1.106934;font-style:normal;font-weight:normal;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_46f8e3dd33cec99c5167e48e.woff2')format("woff");}.ff2_c00278{font-family:ff2_c00278;line-height:1.104492;font-style:normal;font-weight:normal;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_ad682384a804fa8dbdc7f6e0.woff2')format("woff");}.ff3_c00278{font-family:ff3_c00278;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00278;src:url('chunks/assets/font_587da32f32e091c8eebe00b9.woff2')format("woff");}.ff4_c00278{font-family:ff4_c00278;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00278;src:url('chunks/assets/font_2e9ede0b7f1b9ff2ce4fd687.woff2')format("woff");}.ff5_c00278{font-family:ff5_c00278;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00278;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff6_c00278{font-family:ff6_c00278;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00278;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff7_c00278{font-family:ff7_c00278;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00278{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00278{vertical-align:-17.640000px;}
.v3_c00278{vertical-align:-14.760000px;}
.v0_c00278{vertical-align:0.000000px;}
.v1_c00278{vertical-align:17.636994px;}
.ls18_c00278{letter-spacing:-0.485271px;}
.ls14_c00278{letter-spacing:-0.380032px;}
.lsc_c00278{letter-spacing:-0.246781px;}
.ls17_c00278{letter-spacing:-0.163706px;}
.ls11_c00278{letter-spacing:-0.146166px;}
.lsd_c00278{letter-spacing:-0.126036px;}
.ls16_c00278{letter-spacing:-0.116933px;}
.ls10_c00278{letter-spacing:-0.075619px;}
.ls4_c00278{letter-spacing:-0.063018px;}
.ls15_c00278{letter-spacing:-0.058466px;}
.lsa_c00278{letter-spacing:-0.056016px;}
.lse_c00278{letter-spacing:-0.049014px;}
.lsb_c00278{letter-spacing:-0.035010px;}
.ls6_c00278{letter-spacing:-0.028008px;}
.ls9_c00278{letter-spacing:-0.021006px;}
.ls8_c00278{letter-spacing:-0.014004px;}
.ls7_c00278{letter-spacing:-0.007002px;}
.ls5_c00278{letter-spacing:0.000000px;}
.ls1_c00278{letter-spacing:0.007002px;}
.ls0_c00278{letter-spacing:0.021006px;}
.ls1a_c00278{letter-spacing:0.029233px;}
.ls12_c00278{letter-spacing:0.046773px;}
.lsf_c00278{letter-spacing:0.224064px;}
.ls2_c00278{letter-spacing:0.273078px;}
.ls13_c00278{letter-spacing:0.274792px;}
.ls19_c00278{letter-spacing:0.304025px;}
.ls3_c00278{letter-spacing:0.362492px;}
.sc__c00278{text-shadow:none;}
.sc0_c00278{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00278{-webkit-text-stroke:0px transparent;}
.sc0_c00278{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00278{word-spacing:-70.020000px;}
.ws4_c00278{word-spacing:-58.466400px;}
.ws2_c00278{word-spacing:-19.339524px;}
.ws5_c00278{word-spacing:-16.136726px;}
.ws6_c00278{word-spacing:-16.078260px;}
.ws0_c00278{word-spacing:-12.651004px;}
.ws3_c00278{word-spacing:-10.397640px;}
.ws28_c00278{word-spacing:-0.292332px;}
.ws13_c00278{word-spacing:-0.021006px;}
.ws2a_c00278{word-spacing:-0.017540px;}
.ws7_c00278{word-spacing:0.000000px;}
.wse_c00278{word-spacing:0.021006px;}
.ws29_c00278{word-spacing:0.070160px;}
.ws1e_c00278{word-spacing:0.119034px;}
.ws26_c00278{word-spacing:0.175399px;}
.ws12_c00278{word-spacing:0.364104px;}
.ws17_c00278{word-spacing:0.371106px;}
.ws27_c00278{word-spacing:0.496964px;}
.ws1b_c00278{word-spacing:1.092312px;}
.ws10_c00278{word-spacing:4.285224px;}
.wsf_c00278{word-spacing:4.320234px;}
.wsb_c00278{word-spacing:6.476850px;}
.wsc_c00278{word-spacing:6.847956px;}
.ws1f_c00278{word-spacing:6.861960px;}
.wsd_c00278{word-spacing:6.882966px;}
.ws8_c00278{word-spacing:8.654472px;}
.ws11_c00278{word-spacing:10.432980px;}
.wsa_c00278{word-spacing:14.032008px;}
.ws15_c00278{word-spacing:15.103314px;}
.ws16_c00278{word-spacing:15.110316px;}
.ws14_c00278{word-spacing:16.923834px;}
.ws20_c00278{word-spacing:18.016146px;}
.ws19_c00278{word-spacing:20.529864px;}
.ws18_c00278{word-spacing:20.858958px;}
.ws1a_c00278{word-spacing:20.914974px;}
.ws1c_c00278{word-spacing:27.006714px;}
.ws1d_c00278{word-spacing:27.013716px;}
.ws9_c00278{word-spacing:28.764216px;}
.ws23_c00278{word-spacing:28.899942px;}
.ws22_c00278{word-spacing:29.127960px;}
.ws24_c00278{word-spacing:29.174734px;}
.ws25_c00278{word-spacing:29.554765px;}
.ws21_c00278{word-spacing:29.677545px;}
._3_c00278{margin-left:-2.707452px;}
._0_c00278{margin-left:-1.064304px;}
._1_c00278{width:1.008288px;}
._2_c00278{width:5.930694px;}
.fc0_c00278{color:rgb(0,0,0);}
.fs2_c00278{font-size:37.809600px;}
.fs1_c00278{font-size:46.562400px;}
.fs3_c00278{font-size:58.466400px;}
.fs0_c00278{font-size:70.020000px;}
.y0_c00278{bottom:0.000000px;}
.y2_c00278{bottom:109.740968px;}
.y1_c00278{bottom:129.810450px;}
.y20_c00278{bottom:153.120600px;}
.y1f_c00278{bottom:167.250107px;}
.y1e_c00278{bottom:188.940450px;}
.y1d_c00278{bottom:203.609302px;}
.y1c_c00278{bottom:271.019307px;}
.y1b_c00278{bottom:309.988938px;}
.y1a_c00278{bottom:340.139550px;}
.y19_c00278{bottom:370.379437px;}
.y18_c00278{bottom:409.259793px;}
.y17_c00278{bottom:448.320325px;}
.y16_c00278{bottom:479.729547px;}
.y15_c00278{bottom:509.969434px;}
.y14_c00278{bottom:540.120046px;}
.y13_c00278{bottom:570.359934px;}
.y12_c00278{bottom:600.960424px;}
.y11_c00278{bottom:632.730249px;}
.y10_c00278{bottom:664.050195px;}
.yf_c00278{bottom:703.019826px;}
.ye_c00278{bottom:741.989457px;}
.yd_c00278{bottom:780.959088px;}
.yc_c00278{bottom:811.109700px;}
.yb_c00278{bottom:841.349587px;}
.ya_c00278{bottom:880.229943px;}
.y9_c00278{bottom:919.291202px;}
.y8_c00278{bottom:950.700423px;}
.y7_c00278{bottom:980.940311px;}
.y6_c00278{bottom:1011.090923px;}
.y5_c00278{bottom:1041.330810px;}
.y4_c00278{bottom:1071.481422px;}
.y3_c00278{bottom:1110.451053px;}
.h7_c00278{height:39.337949px;}
.h5_c00278{height:39.338549px;}
.h6_c00278{height:54.098549px;}
.h2_c00278{height:62.600889px;}
.h1_c00278{height:62.771836px;}
.h3_c00278{height:62.772334px;}
.h4_c00278{height:62.776426px;}
.h0_c00278{height:1263.000000px;}
.w0_c00278{width:892.500000px;}
.x0_c00278{left:0.000000px;}
.x2_c00278{left:82.710059px;}
.x1_c00278{left:431.730000px;}
@media print{
.v2_c00278{vertical-align:-15.680000pt;}
.v3_c00278{vertical-align:-13.120000pt;}
.v0_c00278{vertical-align:0.000000pt;}
.v1_c00278{vertical-align:15.677328pt;}
.ls18_c00278{letter-spacing:-0.431352pt;}
.ls14_c00278{letter-spacing:-0.337806pt;}
.lsc_c00278{letter-spacing:-0.219361pt;}
.ls17_c00278{letter-spacing:-0.145516pt;}
.ls11_c00278{letter-spacing:-0.129925pt;}
.lsd_c00278{letter-spacing:-0.112032pt;}
.ls16_c00278{letter-spacing:-0.103940pt;}
.ls10_c00278{letter-spacing:-0.067217pt;}
.ls4_c00278{letter-spacing:-0.056016pt;}
.ls15_c00278{letter-spacing:-0.051970pt;}
.lsa_c00278{letter-spacing:-0.049792pt;}
.lse_c00278{letter-spacing:-0.043568pt;}
.lsb_c00278{letter-spacing:-0.031120pt;}
.ls6_c00278{letter-spacing:-0.024896pt;}
.ls9_c00278{letter-spacing:-0.018672pt;}
.ls8_c00278{letter-spacing:-0.012448pt;}
.ls7_c00278{letter-spacing:-0.006224pt;}
.ls5_c00278{letter-spacing:0.000000pt;}
.ls1_c00278{letter-spacing:0.006224pt;}
.ls0_c00278{letter-spacing:0.018672pt;}
.ls1a_c00278{letter-spacing:0.025985pt;}
.ls12_c00278{letter-spacing:0.041576pt;}
.lsf_c00278{letter-spacing:0.199168pt;}
.ls2_c00278{letter-spacing:0.242736pt;}
.ls13_c00278{letter-spacing:0.244260pt;}
.ls19_c00278{letter-spacing:0.270245pt;}
.ls3_c00278{letter-spacing:0.322215pt;}
.ws1_c00278{word-spacing:-62.240000pt;}
.ws4_c00278{word-spacing:-51.970133pt;}
.ws2_c00278{word-spacing:-17.190688pt;}
.ws5_c00278{word-spacing:-14.343757pt;}
.ws6_c00278{word-spacing:-14.291787pt;}
.ws0_c00278{word-spacing:-11.245337pt;}
.ws3_c00278{word-spacing:-9.242347pt;}
.ws28_c00278{word-spacing:-0.259851pt;}
.ws13_c00278{word-spacing:-0.018672pt;}
.ws2a_c00278{word-spacing:-0.015591pt;}
.ws7_c00278{word-spacing:0.000000pt;}
.wse_c00278{word-spacing:0.018672pt;}
.ws29_c00278{word-spacing:0.062364pt;}
.ws1e_c00278{word-spacing:0.105808pt;}
.ws26_c00278{word-spacing:0.155910pt;}
.ws12_c00278{word-spacing:0.323648pt;}
.ws17_c00278{word-spacing:0.329872pt;}
.ws27_c00278{word-spacing:0.441746pt;}
.ws1b_c00278{word-spacing:0.970944pt;}
.ws10_c00278{word-spacing:3.809088pt;}
.wsf_c00278{word-spacing:3.840208pt;}
.wsb_c00278{word-spacing:5.757200pt;}
.wsc_c00278{word-spacing:6.087072pt;}
.ws1f_c00278{word-spacing:6.099520pt;}
.wsd_c00278{word-spacing:6.118192pt;}
.ws8_c00278{word-spacing:7.692864pt;}
.ws11_c00278{word-spacing:9.273760pt;}
.wsa_c00278{word-spacing:12.472896pt;}
.ws15_c00278{word-spacing:13.425168pt;}
.ws16_c00278{word-spacing:13.431392pt;}
.ws14_c00278{word-spacing:15.043408pt;}
.ws20_c00278{word-spacing:16.014352pt;}
.ws19_c00278{word-spacing:18.248768pt;}
.ws18_c00278{word-spacing:18.541296pt;}
.ws1a_c00278{word-spacing:18.591088pt;}
.ws1c_c00278{word-spacing:24.005968pt;}
.ws1d_c00278{word-spacing:24.012192pt;}
.ws9_c00278{word-spacing:25.568192pt;}
.ws23_c00278{word-spacing:25.688837pt;}
.ws22_c00278{word-spacing:25.891520pt;}
.ws24_c00278{word-spacing:25.933097pt;}
.ws25_c00278{word-spacing:26.270902pt;}
.ws21_c00278{word-spacing:26.380040pt;}
._3_c00278{margin-left:-2.406624pt;}
._0_c00278{margin-left:-0.946048pt;}
._1_c00278{width:0.896256pt;}
._2_c00278{width:5.271728pt;}
.fs2_c00278{font-size:33.608533pt;}
.fs1_c00278{font-size:41.388800pt;}
.fs3_c00278{font-size:51.970133pt;}
.fs0_c00278{font-size:62.240000pt;}
.y0_c00278{bottom:0.000000pt;}
.y2_c00278{bottom:97.547527pt;}
.y1_c00278{bottom:115.387067pt;}
.y20_c00278{bottom:136.107200pt;}
.y1f_c00278{bottom:148.666762pt;}
.y1e_c00278{bottom:167.947067pt;}
.y1d_c00278{bottom:180.986047pt;}
.y1c_c00278{bottom:240.906051pt;}
.y1b_c00278{bottom:275.545723pt;}
.y1a_c00278{bottom:302.346267pt;}
.y19_c00278{bottom:329.226167pt;}
.y18_c00278{bottom:363.786483pt;}
.y17_c00278{bottom:398.506956pt;}
.y16_c00278{bottom:426.426264pt;}
.y15_c00278{bottom:453.306164pt;}
.y14_c00278{bottom:480.106708pt;}
.y13_c00278{bottom:506.986608pt;}
.y12_c00278{bottom:534.187044pt;}
.y11_c00278{bottom:562.426888pt;}
.y10_c00278{bottom:590.266840pt;}
.yf_c00278{bottom:624.906512pt;}
.ye_c00278{bottom:659.546184pt;}
.yd_c00278{bottom:694.185856pt;}
.yc_c00278{bottom:720.986400pt;}
.yb_c00278{bottom:747.866300pt;}
.ya_c00278{bottom:782.426616pt;}
.y9_c00278{bottom:817.147735pt;}
.y8_c00278{bottom:845.067043pt;}
.y7_c00278{bottom:871.946943pt;}
.y6_c00278{bottom:898.747487pt;}
.y5_c00278{bottom:925.627387pt;}
.y4_c00278{bottom:952.427931pt;}
.y3_c00278{bottom:987.067603pt;}
.h7_c00278{height:34.967066pt;}
.h5_c00278{height:34.967599pt;}
.h6_c00278{height:48.087599pt;}
.h2_c00278{height:55.645234pt;}
.h1_c00278{height:55.797187pt;}
.h3_c00278{height:55.797630pt;}
.h4_c00278{height:55.801267pt;}
.h0_c00278{height:1122.666667pt;}
.w0_c00278{width:793.333333pt;}
.x0_c00278{left:0.000000pt;}
.x2_c00278{left:73.520052pt;}
.x1_c00278{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2561ce2df2172a10bcdc8bc2.woff2')format("woff");}.ff1_c00279{font-family:ff1_c00279;line-height:1.106934;font-style:normal;font-weight:normal;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_e6cb86dc1b590cc652c88610.woff2')format("woff");}.ff2_c00279{font-family:ff2_c00279;line-height:1.133301;font-style:normal;font-weight:normal;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_8505344b4b69085cca47cdf5.woff2')format("woff");}.ff3_c00279{font-family:ff3_c00279;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00279;src:url('chunks/assets/font_1c7a3a8193a814971095c6cc.woff2')format("woff");}.ff4_c00279{font-family:ff4_c00279;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00279;src:url('chunks/assets/font_ea076ed079dfab82210173e5.woff2')format("woff");}.ff5_c00279{font-family:ff5_c00279;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00279;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff6_c00279{font-family:ff6_c00279;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00279;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff7_c00279{font-family:ff7_c00279;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00279{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00279{vertical-align:-14.760000px;}
.v0_c00279{vertical-align:0.000000px;}
.v1_c00279{vertical-align:32.404146px;}
.ls17_c00279{letter-spacing:-0.707443px;}
.ls12_c00279{letter-spacing:-0.654824px;}
.ls15_c00279{letter-spacing:-0.257252px;}
.ls7_c00279{letter-spacing:-0.105030px;}
.lsd_c00279{letter-spacing:-0.077022px;}
.ls11_c00279{letter-spacing:-0.075619px;}
.ls3_c00279{letter-spacing:-0.063018px;}
.ls9_c00279{letter-spacing:-0.060777px;}
.ls6_c00279{letter-spacing:-0.056016px;}
.lsc_c00279{letter-spacing:-0.042012px;}
.lsb_c00279{letter-spacing:-0.035010px;}
.ls14_c00279{letter-spacing:-0.029233px;}
.ls10_c00279{letter-spacing:-0.028008px;}
.lsa_c00279{letter-spacing:-0.021006px;}
.lsf_c00279{letter-spacing:-0.014004px;}
.ls5_c00279{letter-spacing:-0.007002px;}
.ls13_c00279{letter-spacing:-0.005847px;}
.ls4_c00279{letter-spacing:0.000000px;}
.ls8_c00279{letter-spacing:0.014004px;}
.ls1_c00279{letter-spacing:0.021006px;}
.ls2_c00279{letter-spacing:0.023281px;}
.lse_c00279{letter-spacing:0.343098px;}
.ls16_c00279{letter-spacing:0.380032px;}
.ls0_c00279{letter-spacing:8.976564px;}
.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;}
}
.ws3_c00279{word-spacing:-58.466400px;}
.ws0_c00279{word-spacing:-19.388538px;}
.ws1_c00279{word-spacing:-12.967628px;}
.ws2_c00279{word-spacing:-10.397640px;}
.ws4_c00279{word-spacing:0.000000px;}
.ws12_c00279{word-spacing:0.021006px;}
.ws8_c00279{word-spacing:0.189929px;}
.ws1b_c00279{word-spacing:0.374185px;}
.ws6_c00279{word-spacing:0.399114px;}
.ws1c_c00279{word-spacing:1.081628px;}
.ws13_c00279{word-spacing:1.456416px;}
.wsf_c00279{word-spacing:1.820520px;}
.ws11_c00279{word-spacing:2.863818px;}
.ws14_c00279{word-spacing:3.592026px;}
.ws15_c00279{word-spacing:3.613032px;}
.ws10_c00279{word-spacing:4.320234px;}
.ws17_c00279{word-spacing:4.338207px;}
.ws18_c00279{word-spacing:4.361593px;}
.ws1a_c00279{word-spacing:4.671465px;}
.ws19_c00279{word-spacing:4.952104px;}
.ws16_c00279{word-spacing:4.987184px;}
.wsb_c00279{word-spacing:8.983566px;}
.ws9_c00279{word-spacing:17.645040px;}
.wsa_c00279{word-spacing:17.659044px;}
.ws5_c00279{word-spacing:23.393682px;}
.wse_c00279{word-spacing:28.764216px;}
.ws7_c00279{word-spacing:31.053870px;}
.wsd_c00279{word-spacing:40.674618px;}
.wsc_c00279{word-spacing:40.709628px;}
._3_c00279{margin-left:-2.711880px;}
._0_c00279{margin-left:-1.197342px;}
._1_c00279{width:1.036296px;}
._4_c00279{width:2.112162px;}
._2_c00279{width:5.930694px;}
.fc0_c00279{color:rgb(0,0,0);}
.fs4_c00279{font-size:37.809600px;}
.fs3_c00279{font-size:46.562400px;}
.fs5_c00279{font-size:58.466400px;}
.fs1_c00279{font-size:64.067400px;}
.fs0_c00279{font-size:70.020000px;}
.fs2_c00279{font-size:75.971400px;}
.y0_c00279{bottom:0.000000px;}
.y2_c00279{bottom:109.740968px;}
.y1_c00279{bottom:129.810450px;}
.y22_c00279{bottom:149.429891px;}
.y21_c00279{bottom:170.940450px;}
.y20_c00279{bottom:185.698866px;}
.y1f_c00279{bottom:250.768452px;}
.y1e_c00279{bottom:281.008339px;}
.y1d_c00279{bottom:311.158951px;}
.y1c_c00279{bottom:341.398839px;}
.y1b_c00279{bottom:371.549451px;}
.y1a_c00279{bottom:401.789338px;}
.y19_c00279{bottom:431.939950px;}
.y18_c00279{bottom:462.179838px;}
.y17_c00279{bottom:492.329563px;}
.y16_c00279{bottom:522.569451px;}
.y15_c00279{bottom:552.720063px;}
.y14_c00279{bottom:582.959950px;}
.y13_c00279{bottom:613.110563px;}
.y12_c00279{bottom:643.350450px;}
.y11_c00279{bottom:668.100450px;}
.y10_c00279{bottom:717.238717px;}
.yf_c00279{bottom:741.719460px;}
.ye_c00279{bottom:761.879969px;}
.yd_c00279{bottom:809.579343px;}
.yc_c00279{bottom:839.729955px;}
.yb_c00279{bottom:869.969843px;}
.ya_c00279{bottom:900.120454px;}
.y9_c00279{bottom:937.740450px;}
.y8_c00279{bottom:958.351349px;}
.y7_c00279{bottom:980.130450px;}
.y6_c00279{bottom:1018.920285px;}
.y5_c00279{bottom:1041.510450px;}
.y4_c00279{bottom:1080.300441px;}
.y3_c00279{bottom:1110.451053px;}
.h9_c00279{height:39.338549px;}
.ha_c00279{height:54.098549px;}
.h2_c00279{height:59.281115px;}
.h6_c00279{height:62.600889px;}
.h1_c00279{height:62.771836px;}
.h8_c00279{height:62.778772px;}
.h4_c00279{height:63.216299px;}
.h3_c00279{height:68.107173px;}
.h5_c00279{height:68.589413px;}
.h7_c00279{height:74.146610px;}
.h0_c00279{height:1263.000000px;}
.w0_c00279{width:892.500000px;}
.x0_c00279{left:0.000000px;}
.x2_c00279{left:82.710059px;}
.x1_c00279{left:431.730000px;}
@media print{
.v2_c00279{vertical-align:-13.120000pt;}
.v0_c00279{vertical-align:0.000000pt;}
.v1_c00279{vertical-align:28.803685pt;}
.ls17_c00279{letter-spacing:-0.628839pt;}
.ls12_c00279{letter-spacing:-0.582065pt;}
.ls15_c00279{letter-spacing:-0.228669pt;}
.ls7_c00279{letter-spacing:-0.093360pt;}
.lsd_c00279{letter-spacing:-0.068464pt;}
.ls11_c00279{letter-spacing:-0.067217pt;}
.ls3_c00279{letter-spacing:-0.056016pt;}
.ls9_c00279{letter-spacing:-0.054024pt;}
.ls6_c00279{letter-spacing:-0.049792pt;}
.lsc_c00279{letter-spacing:-0.037344pt;}
.lsb_c00279{letter-spacing:-0.031120pt;}
.ls14_c00279{letter-spacing:-0.025985pt;}
.ls10_c00279{letter-spacing:-0.024896pt;}
.lsa_c00279{letter-spacing:-0.018672pt;}
.lsf_c00279{letter-spacing:-0.012448pt;}
.ls5_c00279{letter-spacing:-0.006224pt;}
.ls13_c00279{letter-spacing:-0.005197pt;}
.ls4_c00279{letter-spacing:0.000000pt;}
.ls8_c00279{letter-spacing:0.012448pt;}
.ls1_c00279{letter-spacing:0.018672pt;}
.ls2_c00279{letter-spacing:0.020694pt;}
.lse_c00279{letter-spacing:0.304976pt;}
.ls16_c00279{letter-spacing:0.337806pt;}
.ls0_c00279{letter-spacing:7.979168pt;}
.ws3_c00279{word-spacing:-51.970133pt;}
.ws0_c00279{word-spacing:-17.234256pt;}
.ws1_c00279{word-spacing:-11.526781pt;}
.ws2_c00279{word-spacing:-9.242347pt;}
.ws4_c00279{word-spacing:0.000000pt;}
.ws12_c00279{word-spacing:0.018672pt;}
.ws8_c00279{word-spacing:0.168825pt;}
.ws1b_c00279{word-spacing:0.332609pt;}
.ws6_c00279{word-spacing:0.354768pt;}
.ws1c_c00279{word-spacing:0.961447pt;}
.ws13_c00279{word-spacing:1.294592pt;}
.wsf_c00279{word-spacing:1.618240pt;}
.ws11_c00279{word-spacing:2.545616pt;}
.ws14_c00279{word-spacing:3.192912pt;}
.ws15_c00279{word-spacing:3.211584pt;}
.ws10_c00279{word-spacing:3.840208pt;}
.ws17_c00279{word-spacing:3.856184pt;}
.ws18_c00279{word-spacing:3.876972pt;}
.ws1a_c00279{word-spacing:4.152414pt;}
.ws19_c00279{word-spacing:4.401870pt;}
.ws16_c00279{word-spacing:4.433052pt;}
.wsb_c00279{word-spacing:7.985392pt;}
.ws9_c00279{word-spacing:15.684480pt;}
.wsa_c00279{word-spacing:15.696928pt;}
.ws5_c00279{word-spacing:20.794384pt;}
.wse_c00279{word-spacing:25.568192pt;}
.ws7_c00279{word-spacing:27.603440pt;}
.wsd_c00279{word-spacing:36.155216pt;}
.wsc_c00279{word-spacing:36.186336pt;}
._3_c00279{margin-left:-2.410560pt;}
._0_c00279{margin-left:-1.064304pt;}
._1_c00279{width:0.921152pt;}
._4_c00279{width:1.877477pt;}
._2_c00279{width:5.271728pt;}
.fs4_c00279{font-size:33.608533pt;}
.fs3_c00279{font-size:41.388800pt;}
.fs5_c00279{font-size:51.970133pt;}
.fs1_c00279{font-size:56.948800pt;}
.fs0_c00279{font-size:62.240000pt;}
.fs2_c00279{font-size:67.530133pt;}
.y0_c00279{bottom:0.000000pt;}
.y2_c00279{bottom:97.547527pt;}
.y1_c00279{bottom:115.387067pt;}
.y22_c00279{bottom:132.826570pt;}
.y21_c00279{bottom:151.947067pt;}
.y20_c00279{bottom:165.065659pt;}
.y1f_c00279{bottom:222.905291pt;}
.y1e_c00279{bottom:249.785191pt;}
.y1d_c00279{bottom:276.585735pt;}
.y1c_c00279{bottom:303.465635pt;}
.y1b_c00279{bottom:330.266179pt;}
.y1a_c00279{bottom:357.146079pt;}
.y19_c00279{bottom:383.946623pt;}
.y18_c00279{bottom:410.826523pt;}
.y17_c00279{bottom:437.626279pt;}
.y16_c00279{bottom:464.506179pt;}
.y15_c00279{bottom:491.306723pt;}
.y14_c00279{bottom:518.186623pt;}
.y13_c00279{bottom:544.987167pt;}
.y12_c00279{bottom:571.867067pt;}
.y11_c00279{bottom:593.867067pt;}
.y10_c00279{bottom:637.545527pt;}
.yf_c00279{bottom:659.306187pt;}
.ye_c00279{bottom:677.226639pt;}
.yd_c00279{bottom:719.626083pt;}
.yc_c00279{bottom:746.426627pt;}
.yb_c00279{bottom:773.306527pt;}
.ya_c00279{bottom:800.107071pt;}
.y9_c00279{bottom:833.547067pt;}
.y8_c00279{bottom:851.867866pt;}
.y7_c00279{bottom:871.227067pt;}
.y6_c00279{bottom:905.706920pt;}
.y5_c00279{bottom:925.787067pt;}
.y4_c00279{bottom:960.267059pt;}
.y3_c00279{bottom:987.067603pt;}
.h9_c00279{height:34.967599pt;}
.ha_c00279{height:48.087599pt;}
.h2_c00279{height:52.694324pt;}
.h6_c00279{height:55.645234pt;}
.h1_c00279{height:55.797187pt;}
.h8_c00279{height:55.803353pt;}
.h4_c00279{height:56.192266pt;}
.h3_c00279{height:60.539709pt;}
.h5_c00279{height:60.968367pt;}
.h7_c00279{height:65.908098pt;}
.h0_c00279{height:1122.666667pt;}
.w0_c00279{width:793.333333pt;}
.x0_c00279{left:0.000000pt;}
.x2_c00279{left:73.520052pt;}
.x1_c00279{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_de8b2e02abb2082c4082d7f7.woff2')format("woff");}.ff1_c00280{font-family:ff1_c00280;line-height:1.106934;font-style:normal;font-weight:normal;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_ba22b0b5fe23bd8a2cac40e7.woff2')format("woff");}.ff2_c00280{font-family:ff2_c00280;line-height:1.104492;font-style:normal;font-weight:normal;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_de6ea9f4a878b8f9a351e90f.woff2')format("woff");}.ff3_c00280{font-family:ff3_c00280;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00280{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00280{vertical-align:-14.760000px;}
.v0_c00280{vertical-align:0.000000px;}
.v1_c00280{vertical-align:32.040036px;}
.ls12_c00280{letter-spacing:-0.672364px;}
.ls11_c00280{letter-spacing:-0.075619px;}
.ls7_c00280{letter-spacing:-0.063018px;}
.ls10_c00280{letter-spacing:-0.049014px;}
.lsf_c00280{letter-spacing:-0.042012px;}
.lsa_c00280{letter-spacing:-0.035010px;}
.ls9_c00280{letter-spacing:-0.028008px;}
.lsd_c00280{letter-spacing:-0.021006px;}
.lse_c00280{letter-spacing:-0.014004px;}
.lsb_c00280{letter-spacing:-0.007002px;}
.ls8_c00280{letter-spacing:0.000000px;}
.ls0_c00280{letter-spacing:0.007002px;}
.ls4_c00280{letter-spacing:0.021006px;}
.ls1_c00280{letter-spacing:0.023281px;}
.ls2_c00280{letter-spacing:0.049014px;}
.ls3_c00280{letter-spacing:0.056016px;}
.ls6_c00280{letter-spacing:0.140319px;}
.ls5_c00280{letter-spacing:0.146166px;}
.lsc_c00280{letter-spacing:0.343098px;}
.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:-12.967628px;}
.ws1_c00280{word-spacing:-10.397640px;}
.ws1d_c00280{word-spacing:-0.134473px;}
.ws1e_c00280{word-spacing:-0.128626px;}
.ws4_c00280{word-spacing:-0.021006px;}
.ws9_c00280{word-spacing:-0.007002px;}
.ws2_c00280{word-spacing:0.000000px;}
.wsa_c00280{word-spacing:0.007002px;}
.ws6_c00280{word-spacing:0.014004px;}
.wsf_c00280{word-spacing:0.028008px;}
.ws1c_c00280{word-spacing:0.035010px;}
.ws16_c00280{word-spacing:0.287082px;}
.wse_c00280{word-spacing:0.294084px;}
.ws1b_c00280{word-spacing:0.343098px;}
.wsb_c00280{word-spacing:0.357102px;}
.wsd_c00280{word-spacing:0.364104px;}
.ws8_c00280{word-spacing:0.378108px;}
.ws1f_c00280{word-spacing:0.684057px;}
.ws11_c00280{word-spacing:0.728208px;}
.ws12_c00280{word-spacing:1.078308px;}
.ws13_c00280{word-spacing:2.527722px;}
.ws3_c00280{word-spacing:4.691340px;}
.ws18_c00280{word-spacing:6.441840px;}
.ws17_c00280{word-spacing:6.462846px;}
.ws19_c00280{word-spacing:8.647470px;}
.ws14_c00280{word-spacing:9.718776px;}
.ws7_c00280{word-spacing:11.147184px;}
.wsc_c00280{word-spacing:11.189196px;}
.ws15_c00280{word-spacing:11.525292px;}
.ws1a_c00280{word-spacing:15.117318px;}
.ws10_c00280{word-spacing:16.216632px;}
.ws5_c00280{word-spacing:22.343382px;}
._3_c00280{margin-left:-2.710494px;}
._0_c00280{margin-left:-1.260360px;}
._1_c00280{width:1.022292px;}
._2_c00280{width:5.930694px;}
.fc0_c00280{color:rgb(0,0,0);}
.fs2_c00280{font-size:37.809600px;}
.fs1_c00280{font-size:46.562400px;}
.fs3_c00280{font-size:58.466400px;}
.fs0_c00280{font-size:70.020000px;}
.y0_c00280{bottom:0.000000px;}
.y2_c00280{bottom:109.740968px;}
.y1_c00280{bottom:129.810450px;}
.y23_c00280{bottom:153.120600px;}
.y22_c00280{bottom:170.940450px;}
.y21_c00280{bottom:188.940450px;}
.y20_c00280{bottom:203.607421px;}
.y1f_c00280{bottom:265.077979px;}
.y1e_c00280{bottom:295.228591px;}
.y1d_c00280{bottom:325.468479px;}
.y1c_c00280{bottom:355.619091px;}
.y1b_c00280{bottom:385.858978px;}
.y1a_c00280{bottom:416.009590px;}
.y19_c00280{bottom:446.249478px;}
.y18_c00280{bottom:476.400090px;}
.y17_c00280{bottom:506.639977px;}
.y16_c00280{bottom:536.790589px;}
.y15_c00280{bottom:567.030477px;}
.y14_c00280{bottom:597.090063px;}
.y13_c00280{bottom:627.329950px;}
.y12_c00280{bottom:657.480562px;}
.y11_c00280{bottom:687.718565px;}
.y10_c00280{bottom:717.869177px;}
.yf_c00280{bottom:748.109064px;}
.ye_c00280{bottom:778.259676px;}
.yd_c00280{bottom:808.499564px;}
.yc_c00280{bottom:838.650176px;}
.yb_c00280{bottom:868.890063px;}
.ya_c00280{bottom:899.040675px;}
.y9_c00280{bottom:929.280563px;}
.y8_c00280{bottom:959.519451px;}
.y7_c00280{bottom:989.670063px;}
.y6_c00280{bottom:1019.909951px;}
.y5_c00280{bottom:1050.060563px;}
.y4_c00280{bottom:1080.300441px;}
.y3_c00280{bottom:1110.451053px;}
.h8_c00280{height:39.337949px;}
.h7_c00280{height:39.338549px;}
.h2_c00280{height:62.600889px;}
.h1_c00280{height:62.771836px;}
.h6_c00280{height:62.783950px;}
.h3_c00280{height:73.668822px;}
.h4_c00280{height:73.672782px;}
.h5_c00280{height:73.676328px;}
.h0_c00280{height:1263.000000px;}
.w0_c00280{width:892.500000px;}
.x0_c00280{left:0.000000px;}
.x2_c00280{left:82.710059px;}
.x1_c00280{left:431.730000px;}
@media print{
.v2_c00280{vertical-align:-13.120000pt;}
.v0_c00280{vertical-align:0.000000pt;}
.v1_c00280{vertical-align:28.480032pt;}
.ls12_c00280{letter-spacing:-0.597657pt;}
.ls11_c00280{letter-spacing:-0.067217pt;}
.ls7_c00280{letter-spacing:-0.056016pt;}
.ls10_c00280{letter-spacing:-0.043568pt;}
.lsf_c00280{letter-spacing:-0.037344pt;}
.lsa_c00280{letter-spacing:-0.031120pt;}
.ls9_c00280{letter-spacing:-0.024896pt;}
.lsd_c00280{letter-spacing:-0.018672pt;}
.lse_c00280{letter-spacing:-0.012448pt;}
.lsb_c00280{letter-spacing:-0.006224pt;}
.ls8_c00280{letter-spacing:0.000000pt;}
.ls0_c00280{letter-spacing:0.006224pt;}
.ls4_c00280{letter-spacing:0.018672pt;}
.ls1_c00280{letter-spacing:0.020694pt;}
.ls2_c00280{letter-spacing:0.043568pt;}
.ls3_c00280{letter-spacing:0.049792pt;}
.ls6_c00280{letter-spacing:0.124728pt;}
.ls5_c00280{letter-spacing:0.129925pt;}
.lsc_c00280{letter-spacing:0.304976pt;}
.ws0_c00280{word-spacing:-11.526781pt;}
.ws1_c00280{word-spacing:-9.242347pt;}
.ws1d_c00280{word-spacing:-0.119531pt;}
.ws1e_c00280{word-spacing:-0.114334pt;}
.ws4_c00280{word-spacing:-0.018672pt;}
.ws9_c00280{word-spacing:-0.006224pt;}
.ws2_c00280{word-spacing:0.000000pt;}
.wsa_c00280{word-spacing:0.006224pt;}
.ws6_c00280{word-spacing:0.012448pt;}
.wsf_c00280{word-spacing:0.024896pt;}
.ws1c_c00280{word-spacing:0.031120pt;}
.ws16_c00280{word-spacing:0.255184pt;}
.wse_c00280{word-spacing:0.261408pt;}
.ws1b_c00280{word-spacing:0.304976pt;}
.wsb_c00280{word-spacing:0.317424pt;}
.wsd_c00280{word-spacing:0.323648pt;}
.ws8_c00280{word-spacing:0.336096pt;}
.ws1f_c00280{word-spacing:0.608051pt;}
.ws11_c00280{word-spacing:0.647296pt;}
.ws12_c00280{word-spacing:0.958496pt;}
.ws13_c00280{word-spacing:2.246864pt;}
.ws3_c00280{word-spacing:4.170080pt;}
.ws18_c00280{word-spacing:5.726080pt;}
.ws17_c00280{word-spacing:5.744752pt;}
.ws19_c00280{word-spacing:7.686640pt;}
.ws14_c00280{word-spacing:8.638912pt;}
.ws7_c00280{word-spacing:9.908608pt;}
.wsc_c00280{word-spacing:9.945952pt;}
.ws15_c00280{word-spacing:10.244704pt;}
.ws1a_c00280{word-spacing:13.437616pt;}
.ws10_c00280{word-spacing:14.414784pt;}
.ws5_c00280{word-spacing:19.860784pt;}
._3_c00280{margin-left:-2.409328pt;}
._0_c00280{margin-left:-1.120320pt;}
._1_c00280{width:0.908704pt;}
._2_c00280{width:5.271728pt;}
.fs2_c00280{font-size:33.608533pt;}
.fs1_c00280{font-size:41.388800pt;}
.fs3_c00280{font-size:51.970133pt;}
.fs0_c00280{font-size:62.240000pt;}
.y0_c00280{bottom:0.000000pt;}
.y2_c00280{bottom:97.547527pt;}
.y1_c00280{bottom:115.387067pt;}
.y23_c00280{bottom:136.107200pt;}
.y22_c00280{bottom:151.947067pt;}
.y21_c00280{bottom:167.947067pt;}
.y20_c00280{bottom:180.984375pt;}
.y1f_c00280{bottom:235.624871pt;}
.y1e_c00280{bottom:262.425415pt;}
.y1d_c00280{bottom:289.305315pt;}
.y1c_c00280{bottom:316.105859pt;}
.y1b_c00280{bottom:342.985759pt;}
.y1a_c00280{bottom:369.786303pt;}
.y19_c00280{bottom:396.666203pt;}
.y18_c00280{bottom:423.466747pt;}
.y17_c00280{bottom:450.346647pt;}
.y16_c00280{bottom:477.147191pt;}
.y15_c00280{bottom:504.027091pt;}
.y14_c00280{bottom:530.746723pt;}
.y13_c00280{bottom:557.626623pt;}
.y12_c00280{bottom:584.427167pt;}
.y11_c00280{bottom:611.305391pt;}
.y10_c00280{bottom:638.105935pt;}
.yf_c00280{bottom:664.985835pt;}
.ye_c00280{bottom:691.786379pt;}
.yd_c00280{bottom:718.666279pt;}
.yc_c00280{bottom:745.466823pt;}
.yb_c00280{bottom:772.346723pt;}
.ya_c00280{bottom:799.147267pt;}
.y9_c00280{bottom:826.027167pt;}
.y8_c00280{bottom:852.906179pt;}
.y7_c00280{bottom:879.706723pt;}
.y6_c00280{bottom:906.586623pt;}
.y5_c00280{bottom:933.387167pt;}
.y4_c00280{bottom:960.267059pt;}
.y3_c00280{bottom:987.067603pt;}
.h8_c00280{height:34.967066pt;}
.h7_c00280{height:34.967599pt;}
.h2_c00280{height:55.645234pt;}
.h1_c00280{height:55.797187pt;}
.h6_c00280{height:55.807956pt;}
.h3_c00280{height:65.483398pt;}
.h4_c00280{height:65.486918pt;}
.h5_c00280{height:65.490070pt;}
.h0_c00280{height:1122.666667pt;}
.w0_c00280{width:793.333333pt;}
.x0_c00280{left:0.000000pt;}
.x2_c00280{left:73.520052pt;}
.x1_c00280{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d64dd7030d74a45902970aed.woff2')format("woff");}.ff1_c00281{font-family:ff1_c00281;line-height:1.106934;font-style:normal;font-weight:normal;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_7c3c4a44d67953cbbe098206.woff2')format("woff");}.ff2_c00281{font-family:ff2_c00281;line-height:1.104492;font-style:normal;font-weight:normal;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_b29f44e744d175758dc5a6c3.woff2')format("woff");}.ff3_c00281{font-family:ff3_c00281;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00281;src:url('chunks/assets/font_02ebe103ee9713ee580bf467.woff2')format("woff");}.ff4_c00281{font-family:ff4_c00281;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00281;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff5_c00281{font-family:ff5_c00281;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00281{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00281{vertical-align:-14.760000px;}
.v0_c00281{vertical-align:0.000000px;}
.v1_c00281{vertical-align:17.286462px;}
.ls10_c00281{letter-spacing:-0.654824px;}
.lse_c00281{letter-spacing:-0.246781px;}
.ls12_c00281{letter-spacing:-0.210479px;}
.lsf_c00281{letter-spacing:-0.075619px;}
.ls11_c00281{letter-spacing:-0.064313px;}
.ls5_c00281{letter-spacing:-0.063018px;}
.ls9_c00281{letter-spacing:-0.056016px;}
.lsc_c00281{letter-spacing:-0.049014px;}
.ls8_c00281{letter-spacing:-0.042012px;}
.lsb_c00281{letter-spacing:-0.028008px;}
.ls7_c00281{letter-spacing:-0.021006px;}
.lsa_c00281{letter-spacing:-0.014004px;}
.lsd_c00281{letter-spacing:-0.007002px;}
.ls6_c00281{letter-spacing:0.000000px;}
.ls3_c00281{letter-spacing:0.007002px;}
.ls1_c00281{letter-spacing:0.021006px;}
.ls0_c00281{letter-spacing:0.028008px;}
.ls4_c00281{letter-spacing:0.029233px;}
.ls2_c00281{letter-spacing:0.336024px;}
.sc__c00281{text-shadow:none;}
.sc0_c00281{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00281{-webkit-text-stroke:0px transparent;}
.sc0_c00281{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00281{word-spacing:-58.466400px;}
.ws0_c00281{word-spacing:-19.465560px;}
.ws1_c00281{word-spacing:-12.651004px;}
.ws2_c00281{word-spacing:-10.397640px;}
.ws1f_c00281{word-spacing:-0.350100px;}
.ws29_c00281{word-spacing:-0.344952px;}
.ws20_c00281{word-spacing:-0.007002px;}
.ws4_c00281{word-spacing:0.000000px;}
.ws16_c00281{word-spacing:0.028008px;}
.ws1a_c00281{word-spacing:0.357102px;}
.ws24_c00281{word-spacing:0.666517px;}
.ws18_c00281{word-spacing:1.057302px;}
.ws19_c00281{word-spacing:1.456416px;}
.ws10_c00281{word-spacing:1.799514px;}
.ws11_c00281{word-spacing:2.170620px;}
.wse_c00281{word-spacing:3.963132px;}
.ws8_c00281{word-spacing:4.278222px;}
.ws1c_c00281{word-spacing:4.327236px;}
.ws9_c00281{word-spacing:4.362246px;}
.ws1e_c00281{word-spacing:4.670334px;}
.ws1d_c00281{word-spacing:4.677336px;}
.ws13_c00281{word-spacing:5.034438px;}
.ws14_c00281{word-spacing:5.048442px;}
.wsf_c00281{word-spacing:5.398542px;}
.ws27_c00281{word-spacing:5.741400px;}
.ws6_c00281{word-spacing:5.748642px;}
.ws26_c00281{word-spacing:5.770634px;}
.ws25_c00281{word-spacing:5.834947px;}
.ws28_c00281{word-spacing:6.343604px;}
.ws23_c00281{word-spacing:7.191054px;}
.ws22_c00281{word-spacing:7.226064px;}
.ws12_c00281{word-spacing:11.154186px;}
.ws7_c00281{word-spacing:14.788224px;}
.ws1b_c00281{word-spacing:19.808658px;}
.ws5_c00281{word-spacing:20.529864px;}
.ws17_c00281{word-spacing:21.615174px;}
.ws15_c00281{word-spacing:24.857100px;}
.wsa_c00281{word-spacing:25.165188px;}
.wsd_c00281{word-spacing:34.204770px;}
.wsb_c00281{word-spacing:34.561872px;}
.wsc_c00281{word-spacing:34.575876px;}
.ws21_c00281{word-spacing:41.360814px;}
._3_c00281{margin-left:-2.710800px;}
._0_c00281{margin-left:-1.393398px;}
._1_c00281{width:1.162332px;}
._2_c00281{width:5.930694px;}
.fc0_c00281{color:rgb(0,0,0);}
.fs2_c00281{font-size:37.809600px;}
.fs1_c00281{font-size:46.562400px;}
.fs3_c00281{font-size:58.466400px;}
.fs0_c00281{font-size:70.020000px;}
.y0_c00281{bottom:0.000000px;}
.y2_c00281{bottom:109.740968px;}
.y1_c00281{bottom:129.810450px;}
.y24_c00281{bottom:149.429891px;}
.y23_c00281{bottom:170.940450px;}
.y22_c00281{bottom:188.940450px;}
.y21_c00281{bottom:203.609678px;}
.y20_c00281{bottom:232.139327px;}
.y1f_c00281{bottom:262.379214px;}
.y1e_c00281{bottom:292.529826px;}
.y1d_c00281{bottom:322.769714px;}
.y1c_c00281{bottom:352.920326px;}
.y1b_c00281{bottom:383.160213px;}
.y1a_c00281{bottom:413.310825px;}
.y19_c00281{bottom:443.550713px;}
.y18_c00281{bottom:473.790567px;}
.y17_c00281{bottom:505.199788px;}
.y16_c00281{bottom:535.439676px;}
.y15_c00281{bottom:565.590288px;}
.y14_c00281{bottom:595.830175px;}
.y13_c00281{bottom:625.980787px;}
.y12_c00281{bottom:656.220675px;}
.y11_c00281{bottom:686.371287px;}
.y10_c00281{bottom:716.698835px;}
.yf_c00281{bottom:748.108056px;}
.ye_c00281{bottom:778.258668px;}
.yd_c00281{bottom:808.498556px;}
.yc_c00281{bottom:838.649168px;}
.yb_c00281{bottom:868.889055px;}
.ya_c00281{bottom:899.039667px;}
.y9_c00281{bottom:929.279555px;}
.y8_c00281{bottom:959.519442px;}
.y7_c00281{bottom:989.670054px;}
.y6_c00281{bottom:1019.909942px;}
.y5_c00281{bottom:1050.060553px;}
.y4_c00281{bottom:1080.300441px;}
.y3_c00281{bottom:1110.451053px;}
.h6_c00281{height:39.338549px;}
.h7_c00281{height:54.098549px;}
.h2_c00281{height:62.600889px;}
.h1_c00281{height:62.771836px;}
.h4_c00281{height:62.771968px;}
.h5_c00281{height:62.774926px;}
.h3_c00281{height:62.778298px;}
.h0_c00281{height:1263.000000px;}
.w0_c00281{width:892.500000px;}
.x0_c00281{left:0.000000px;}
.x2_c00281{left:82.710059px;}
.x1_c00281{left:431.730000px;}
@media print{
.v2_c00281{vertical-align:-13.120000pt;}
.v0_c00281{vertical-align:0.000000pt;}
.v1_c00281{vertical-align:15.365744pt;}
.ls10_c00281{letter-spacing:-0.582065pt;}
.lse_c00281{letter-spacing:-0.219361pt;}
.ls12_c00281{letter-spacing:-0.187092pt;}
.lsf_c00281{letter-spacing:-0.067217pt;}
.ls11_c00281{letter-spacing:-0.057167pt;}
.ls5_c00281{letter-spacing:-0.056016pt;}
.ls9_c00281{letter-spacing:-0.049792pt;}
.lsc_c00281{letter-spacing:-0.043568pt;}
.ls8_c00281{letter-spacing:-0.037344pt;}
.lsb_c00281{letter-spacing:-0.024896pt;}
.ls7_c00281{letter-spacing:-0.018672pt;}
.lsa_c00281{letter-spacing:-0.012448pt;}
.lsd_c00281{letter-spacing:-0.006224pt;}
.ls6_c00281{letter-spacing:0.000000pt;}
.ls3_c00281{letter-spacing:0.006224pt;}
.ls1_c00281{letter-spacing:0.018672pt;}
.ls0_c00281{letter-spacing:0.024896pt;}
.ls4_c00281{letter-spacing:0.025985pt;}
.ls2_c00281{letter-spacing:0.298688pt;}
.ws3_c00281{word-spacing:-51.970133pt;}
.ws0_c00281{word-spacing:-17.302720pt;}
.ws1_c00281{word-spacing:-11.245337pt;}
.ws2_c00281{word-spacing:-9.242347pt;}
.ws1f_c00281{word-spacing:-0.311200pt;}
.ws29_c00281{word-spacing:-0.306624pt;}
.ws20_c00281{word-spacing:-0.006224pt;}
.ws4_c00281{word-spacing:0.000000pt;}
.ws16_c00281{word-spacing:0.024896pt;}
.ws1a_c00281{word-spacing:0.317424pt;}
.ws24_c00281{word-spacing:0.592460pt;}
.ws18_c00281{word-spacing:0.939824pt;}
.ws19_c00281{word-spacing:1.294592pt;}
.ws10_c00281{word-spacing:1.599568pt;}
.ws11_c00281{word-spacing:1.929440pt;}
.wse_c00281{word-spacing:3.522784pt;}
.ws8_c00281{word-spacing:3.802864pt;}
.ws1c_c00281{word-spacing:3.846432pt;}
.ws9_c00281{word-spacing:3.877552pt;}
.ws1e_c00281{word-spacing:4.151408pt;}
.ws1d_c00281{word-spacing:4.157632pt;}
.ws13_c00281{word-spacing:4.475056pt;}
.ws14_c00281{word-spacing:4.487504pt;}
.wsf_c00281{word-spacing:4.798704pt;}
.ws27_c00281{word-spacing:5.103467pt;}
.ws6_c00281{word-spacing:5.109904pt;}
.ws26_c00281{word-spacing:5.129452pt;}
.ws25_c00281{word-spacing:5.186619pt;}
.ws28_c00281{word-spacing:5.638759pt;}
.ws23_c00281{word-spacing:6.392048pt;}
.ws22_c00281{word-spacing:6.423168pt;}
.ws12_c00281{word-spacing:9.914832pt;}
.ws7_c00281{word-spacing:13.145088pt;}
.ws1b_c00281{word-spacing:17.607696pt;}
.ws5_c00281{word-spacing:18.248768pt;}
.ws17_c00281{word-spacing:19.213488pt;}
.ws15_c00281{word-spacing:22.095200pt;}
.wsa_c00281{word-spacing:22.369056pt;}
.wsd_c00281{word-spacing:30.404240pt;}
.wsb_c00281{word-spacing:30.721664pt;}
.wsc_c00281{word-spacing:30.734112pt;}
.ws21_c00281{word-spacing:36.765168pt;}
._3_c00281{margin-left:-2.409600pt;}
._0_c00281{margin-left:-1.238576pt;}
._1_c00281{width:1.033184pt;}
._2_c00281{width:5.271728pt;}
.fs2_c00281{font-size:33.608533pt;}
.fs1_c00281{font-size:41.388800pt;}
.fs3_c00281{font-size:51.970133pt;}
.fs0_c00281{font-size:62.240000pt;}
.y0_c00281{bottom:0.000000pt;}
.y2_c00281{bottom:97.547527pt;}
.y1_c00281{bottom:115.387067pt;}
.y24_c00281{bottom:132.826570pt;}
.y23_c00281{bottom:151.947067pt;}
.y22_c00281{bottom:167.947067pt;}
.y21_c00281{bottom:180.986380pt;}
.y20_c00281{bottom:206.346068pt;}
.y1f_c00281{bottom:233.225968pt;}
.y1e_c00281{bottom:260.026512pt;}
.y1d_c00281{bottom:286.906412pt;}
.y1c_c00281{bottom:313.706956pt;}
.y1b_c00281{bottom:340.586856pt;}
.y1a_c00281{bottom:367.387400pt;}
.y19_c00281{bottom:394.267300pt;}
.y18_c00281{bottom:421.147171pt;}
.y17_c00281{bottom:449.066479pt;}
.y16_c00281{bottom:475.946379pt;}
.y15_c00281{bottom:502.746923pt;}
.y14_c00281{bottom:529.626823pt;}
.y13_c00281{bottom:556.427367pt;}
.y12_c00281{bottom:583.307267pt;}
.y11_c00281{bottom:610.107811pt;}
.y10_c00281{bottom:637.065631pt;}
.yf_c00281{bottom:664.984939pt;}
.ye_c00281{bottom:691.785483pt;}
.yd_c00281{bottom:718.665383pt;}
.yc_c00281{bottom:745.465927pt;}
.yb_c00281{bottom:772.345827pt;}
.ya_c00281{bottom:799.146371pt;}
.y9_c00281{bottom:826.026271pt;}
.y8_c00281{bottom:852.906171pt;}
.y7_c00281{bottom:879.706715pt;}
.y6_c00281{bottom:906.586615pt;}
.y5_c00281{bottom:933.387159pt;}
.y4_c00281{bottom:960.267059pt;}
.y3_c00281{bottom:987.067603pt;}
.h6_c00281{height:34.967599pt;}
.h7_c00281{height:48.087599pt;}
.h2_c00281{height:55.645234pt;}
.h1_c00281{height:55.797187pt;}
.h4_c00281{height:55.797305pt;}
.h5_c00281{height:55.799934pt;}
.h3_c00281{height:55.802932pt;}
.h0_c00281{height:1122.666667pt;}
.w0_c00281{width:793.333333pt;}
.x0_c00281{left:0.000000pt;}
.x2_c00281{left:73.520052pt;}
.x1_c00281{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d393cb47ba7147fc62efa8f0.woff2')format("woff");}.ff1_c00282{font-family:ff1_c00282;line-height:1.106934;font-style:normal;font-weight:normal;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_00064bd86805dc8b6c8e8511.woff2')format("woff");}.ff2_c00282{font-family:ff2_c00282;line-height:1.104492;font-style:normal;font-weight:normal;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_227e9e9383f812dd5231a849.woff2')format("woff");}.ff3_c00282{font-family:ff3_c00282;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00282{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00282{vertical-align:-14.760000px;}
.v0_c00282{vertical-align:0.000000px;}
.v1_c00282{vertical-align:17.634474px;}
.ls10_c00282{letter-spacing:-0.602204px;}
.lsb_c00282{letter-spacing:-0.246781px;}
.ls7_c00282{letter-spacing:-0.077022px;}
.lsf_c00282{letter-spacing:-0.075619px;}
.ls4_c00282{letter-spacing:-0.063018px;}
.ls6_c00282{letter-spacing:-0.049014px;}
.ls9_c00282{letter-spacing:-0.042012px;}
.ls8_c00282{letter-spacing:-0.035010px;}
.lsc_c00282{letter-spacing:-0.028008px;}
.lse_c00282{letter-spacing:-0.021006px;}
.lsd_c00282{letter-spacing:-0.014004px;}
.lsa_c00282{letter-spacing:-0.007002px;}
.ls5_c00282{letter-spacing:0.000000px;}
.ls2_c00282{letter-spacing:0.007002px;}
.ls1_c00282{letter-spacing:0.021006px;}
.ls0_c00282{letter-spacing:0.028008px;}
.ls3_c00282{letter-spacing:0.049014px;}
.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;}
}
.ws2_c00282{word-spacing:-19.465560px;}
.ws1_c00282{word-spacing:-19.451556px;}
.ws0_c00282{word-spacing:-12.651004px;}
.ws3_c00282{word-spacing:-10.397640px;}
.ws9_c00282{word-spacing:-0.007002px;}
.ws4_c00282{word-spacing:0.000000px;}
.ws1f_c00282{word-spacing:0.014004px;}
.ws16_c00282{word-spacing:0.021006px;}
.ws1d_c00282{word-spacing:0.028008px;}
.wsa_c00282{word-spacing:0.371106px;}
.ws8_c00282{word-spacing:0.385110px;}
.ws22_c00282{word-spacing:0.613897px;}
.wsf_c00282{word-spacing:0.679194px;}
.wsb_c00282{word-spacing:0.735210px;}
.ws10_c00282{word-spacing:1.442412px;}
.ws7_c00282{word-spacing:1.463418px;}
.ws6_c00282{word-spacing:1.505430px;}
.ws1c_c00282{word-spacing:1.813518px;}
.ws5_c00282{word-spacing:1.834524px;}
.wse_c00282{word-spacing:2.534724px;}
.wsc_c00282{word-spacing:3.234924px;}
.wsd_c00282{word-spacing:3.269934px;}
.ws12_c00282{word-spacing:3.606030px;}
.ws14_c00282{word-spacing:3.928122px;}
.ws15_c00282{word-spacing:3.963132px;}
.ws18_c00282{word-spacing:4.334238px;}
.ws17_c00282{word-spacing:4.348242px;}
.ws11_c00282{word-spacing:5.426550px;}
.ws19_c00282{word-spacing:6.490854px;}
.ws1b_c00282{word-spacing:7.940268px;}
.ws1a_c00282{word-spacing:7.954272px;}
.ws13_c00282{word-spacing:10.790082px;}
.ws1e_c00282{word-spacing:12.974706px;}
.ws21_c00282{word-spacing:19.738638px;}
.ws20_c00282{word-spacing:19.780650px;}
._3_c00282{margin-left:-2.709432px;}
._1_c00282{margin-left:-1.064304px;}
._0_c00282{width:1.092312px;}
._2_c00282{width:5.930694px;}
.fc0_c00282{color:rgb(0,0,0);}
.fs2_c00282{font-size:37.809600px;}
.fs1_c00282{font-size:46.562400px;}
.fs3_c00282{font-size:58.466400px;}
.fs0_c00282{font-size:70.020000px;}
.y0_c00282{bottom:0.000000px;}
.y2_c00282{bottom:109.740968px;}
.y1_c00282{bottom:129.810450px;}
.y23_c00282{bottom:153.120600px;}
.y22_c00282{bottom:170.940450px;}
.y21_c00282{bottom:188.940450px;}
.y20_c00282{bottom:203.609925px;}
.y1f_c00282{bottom:261.029826px;}
.y1e_c00282{bottom:291.180438px;}
.y1d_c00282{bottom:321.420326px;}
.y1c_c00282{bottom:351.570938px;}
.y1b_c00282{bottom:381.810825px;}
.y1a_c00282{bottom:412.050713px;}
.y19_c00282{bottom:442.290455px;}
.y18_c00282{bottom:473.699676px;}
.y17_c00282{bottom:503.939564px;}
.y16_c00282{bottom:534.090175px;}
.y15_c00282{bottom:564.330063px;}
.y14_c00282{bottom:594.480675px;}
.y13_c00282{bottom:624.720563px;}
.y12_c00282{bottom:654.957318px;}
.y11_c00282{bottom:686.366539px;}
.y10_c00282{bottom:716.606427px;}
.yf_c00282{bottom:746.757039px;}
.ye_c00282{bottom:776.996926px;}
.yd_c00282{bottom:807.147538px;}
.yc_c00282{bottom:837.387426px;}
.yb_c00282{bottom:867.538038px;}
.ya_c00282{bottom:897.777925px;}
.y9_c00282{bottom:927.928537px;}
.y8_c00282{bottom:958.168425px;}
.y7_c00282{bottom:988.319037px;}
.y6_c00282{bottom:1018.558924px;}
.y5_c00282{bottom:1048.709537px;}
.y4_c00282{bottom:1079.041831px;}
.y3_c00282{bottom:1110.451053px;}
.h8_c00282{height:39.337949px;}
.h7_c00282{height:39.338549px;}
.h2_c00282{height:62.600889px;}
.h3_c00282{height:62.766310px;}
.h1_c00282{height:62.771836px;}
.h5_c00282{height:62.772418px;}
.h6_c00282{height:62.773936px;}
.h4_c00282{height:62.784364px;}
.h0_c00282{height:1263.000000px;}
.w0_c00282{width:892.500000px;}
.x0_c00282{left:0.000000px;}
.x2_c00282{left:82.710059px;}
.x1_c00282{left:431.730000px;}
@media print{
.v2_c00282{vertical-align:-13.120000pt;}
.v0_c00282{vertical-align:0.000000pt;}
.v1_c00282{vertical-align:15.675088pt;}
.ls10_c00282{letter-spacing:-0.535292pt;}
.lsb_c00282{letter-spacing:-0.219361pt;}
.ls7_c00282{letter-spacing:-0.068464pt;}
.lsf_c00282{letter-spacing:-0.067217pt;}
.ls4_c00282{letter-spacing:-0.056016pt;}
.ls6_c00282{letter-spacing:-0.043568pt;}
.ls9_c00282{letter-spacing:-0.037344pt;}
.ls8_c00282{letter-spacing:-0.031120pt;}
.lsc_c00282{letter-spacing:-0.024896pt;}
.lse_c00282{letter-spacing:-0.018672pt;}
.lsd_c00282{letter-spacing:-0.012448pt;}
.lsa_c00282{letter-spacing:-0.006224pt;}
.ls5_c00282{letter-spacing:0.000000pt;}
.ls2_c00282{letter-spacing:0.006224pt;}
.ls1_c00282{letter-spacing:0.018672pt;}
.ls0_c00282{letter-spacing:0.024896pt;}
.ls3_c00282{letter-spacing:0.043568pt;}
.ws2_c00282{word-spacing:-17.302720pt;}
.ws1_c00282{word-spacing:-17.290272pt;}
.ws0_c00282{word-spacing:-11.245337pt;}
.ws3_c00282{word-spacing:-9.242347pt;}
.ws9_c00282{word-spacing:-0.006224pt;}
.ws4_c00282{word-spacing:0.000000pt;}
.ws1f_c00282{word-spacing:0.012448pt;}
.ws16_c00282{word-spacing:0.018672pt;}
.ws1d_c00282{word-spacing:0.024896pt;}
.wsa_c00282{word-spacing:0.329872pt;}
.ws8_c00282{word-spacing:0.342320pt;}
.ws22_c00282{word-spacing:0.545686pt;}
.wsf_c00282{word-spacing:0.603728pt;}
.wsb_c00282{word-spacing:0.653520pt;}
.ws10_c00282{word-spacing:1.282144pt;}
.ws7_c00282{word-spacing:1.300816pt;}
.ws6_c00282{word-spacing:1.338160pt;}
.ws1c_c00282{word-spacing:1.612016pt;}
.ws5_c00282{word-spacing:1.630688pt;}
.wse_c00282{word-spacing:2.253088pt;}
.wsc_c00282{word-spacing:2.875488pt;}
.wsd_c00282{word-spacing:2.906608pt;}
.ws12_c00282{word-spacing:3.205360pt;}
.ws14_c00282{word-spacing:3.491664pt;}
.ws15_c00282{word-spacing:3.522784pt;}
.ws18_c00282{word-spacing:3.852656pt;}
.ws17_c00282{word-spacing:3.865104pt;}
.ws11_c00282{word-spacing:4.823600pt;}
.ws19_c00282{word-spacing:5.769648pt;}
.ws1b_c00282{word-spacing:7.058016pt;}
.ws1a_c00282{word-spacing:7.070464pt;}
.ws13_c00282{word-spacing:9.591184pt;}
.ws1e_c00282{word-spacing:11.533072pt;}
.ws21_c00282{word-spacing:17.545456pt;}
.ws20_c00282{word-spacing:17.582800pt;}
._3_c00282{margin-left:-2.408384pt;}
._1_c00282{margin-left:-0.946048pt;}
._0_c00282{width:0.970944pt;}
._2_c00282{width:5.271728pt;}
.fs2_c00282{font-size:33.608533pt;}
.fs1_c00282{font-size:41.388800pt;}
.fs3_c00282{font-size:51.970133pt;}
.fs0_c00282{font-size:62.240000pt;}
.y0_c00282{bottom:0.000000pt;}
.y2_c00282{bottom:97.547527pt;}
.y1_c00282{bottom:115.387067pt;}
.y23_c00282{bottom:136.107200pt;}
.y22_c00282{bottom:151.947067pt;}
.y21_c00282{bottom:167.947067pt;}
.y20_c00282{bottom:180.986600pt;}
.y1f_c00282{bottom:232.026512pt;}
.y1e_c00282{bottom:258.827056pt;}
.y1d_c00282{bottom:285.706956pt;}
.y1c_c00282{bottom:312.507500pt;}
.y1b_c00282{bottom:339.387400pt;}
.y1a_c00282{bottom:366.267300pt;}
.y19_c00282{bottom:393.147071pt;}
.y18_c00282{bottom:421.066379pt;}
.y17_c00282{bottom:447.946279pt;}
.y16_c00282{bottom:474.746823pt;}
.y15_c00282{bottom:501.626723pt;}
.y14_c00282{bottom:528.427267pt;}
.y13_c00282{bottom:555.307167pt;}
.y12_c00282{bottom:582.184283pt;}
.y11_c00282{bottom:610.103591pt;}
.y10_c00282{bottom:636.983491pt;}
.yf_c00282{bottom:663.784035pt;}
.ye_c00282{bottom:690.663935pt;}
.yd_c00282{bottom:717.464479pt;}
.yc_c00282{bottom:744.344379pt;}
.yb_c00282{bottom:771.144923pt;}
.ya_c00282{bottom:798.024823pt;}
.y9_c00282{bottom:824.825367pt;}
.y8_c00282{bottom:851.705267pt;}
.y7_c00282{bottom:878.505811pt;}
.y6_c00282{bottom:905.385711pt;}
.y5_c00282{bottom:932.186255pt;}
.y4_c00282{bottom:959.148295pt;}
.y3_c00282{bottom:987.067603pt;}
.h8_c00282{height:34.967066pt;}
.h7_c00282{height:34.967599pt;}
.h2_c00282{height:55.645234pt;}
.h3_c00282{height:55.792275pt;}
.h1_c00282{height:55.797187pt;}
.h5_c00282{height:55.797705pt;}
.h6_c00282{height:55.799054pt;}
.h4_c00282{height:55.808324pt;}
.h0_c00282{height:1122.666667pt;}
.w0_c00282{width:793.333333pt;}
.x0_c00282{left:0.000000pt;}
.x2_c00282{left:73.520052pt;}
.x1_c00282{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_20b70e3f5f81b9bc0c70e5ba.woff2')format("woff");}.ff1_c00283{font-family:ff1_c00283;line-height:1.106934;font-style:normal;font-weight:normal;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_de29908f0028100c5419c63d.woff2')format("woff");}.ff2_c00283{font-family:ff2_c00283;line-height:1.104492;font-style:normal;font-weight:normal;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_84b3170628ab273526cfc167.woff2')format("woff");}.ff3_c00283{font-family:ff3_c00283;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00283;src:url('chunks/assets/font_fb5e088cdf89e7c69f1e1679.woff2')format("woff");}.ff4_c00283{font-family:ff4_c00283;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00283{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00283{vertical-align:-14.760600px;}
.v0_c00283{vertical-align:0.000000px;}
.v1_c00283{vertical-align:32.040684px;}
.ls14_c00283{letter-spacing:-0.672364px;}
.ls11_c00283{letter-spacing:-0.265900px;}
.ls10_c00283{letter-spacing:-0.151943px;}
.lse_c00283{letter-spacing:-0.126036px;}
.ls13_c00283{letter-spacing:-0.075619px;}
.ls6_c00283{letter-spacing:-0.063018px;}
.ls12_c00283{letter-spacing:-0.056016px;}
.lsc_c00283{letter-spacing:-0.049014px;}
.lsb_c00283{letter-spacing:-0.042012px;}
.lsa_c00283{letter-spacing:-0.035010px;}
.ls8_c00283{letter-spacing:-0.028008px;}
.lsf_c00283{letter-spacing:-0.021006px;}
.lsd_c00283{letter-spacing:-0.014004px;}
.ls9_c00283{letter-spacing:-0.007002px;}
.ls7_c00283{letter-spacing:0.000000px;}
.ls0_c00283{letter-spacing:0.007002px;}
.ls4_c00283{letter-spacing:0.014004px;}
.ls2_c00283{letter-spacing:0.023281px;}
.ls1_c00283{letter-spacing:0.028008px;}
.ls5_c00283{letter-spacing:0.035010px;}
.ls3_c00283{letter-spacing:0.112032px;}
.sc__c00283{text-shadow:none;}
.sc0_c00283{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00283{-webkit-text-stroke:0px transparent;}
.sc0_c00283{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00283{word-spacing:-19.500570px;}
.ws0_c00283{word-spacing:-12.967628px;}
.ws2_c00283{word-spacing:-10.397640px;}
.ws15_c00283{word-spacing:-0.049014px;}
.ws14_c00283{word-spacing:-0.014004px;}
.ws3_c00283{word-spacing:0.000000px;}
.ws1b_c00283{word-spacing:0.007002px;}
.ws10_c00283{word-spacing:0.014004px;}
.wse_c00283{word-spacing:0.021006px;}
.wsd_c00283{word-spacing:0.035010px;}
.ws12_c00283{word-spacing:0.112032px;}
.ws1d_c00283{word-spacing:0.159540px;}
.ws1c_c00283{word-spacing:0.281094px;}
.ws13_c00283{word-spacing:0.329094px;}
.ws6_c00283{word-spacing:0.350100px;}
.ws26_c00283{word-spacing:0.385110px;}
.ws22_c00283{word-spacing:0.399114px;}
.ws27_c00283{word-spacing:0.684057px;}
.ws4_c00283{word-spacing:0.735210px;}
.ws17_c00283{word-spacing:1.057302px;}
.ws5_c00283{word-spacing:1.071306px;}
.ws16_c00283{word-spacing:5.377536px;}
.ws19_c00283{word-spacing:6.147756px;}
.wsf_c00283{word-spacing:6.434838px;}
.ws18_c00283{word-spacing:6.483852px;}
.ws21_c00283{word-spacing:9.368676px;}
.ws25_c00283{word-spacing:10.075878px;}
.wsa_c00283{word-spacing:13.296798px;}
.wsb_c00283{word-spacing:13.331808px;}
.wsc_c00283{word-spacing:13.660902px;}
.ws11_c00283{word-spacing:14.277078px;}
.ws9_c00283{word-spacing:15.145326px;}
.ws24_c00283{word-spacing:15.481422px;}
.ws23_c00283{word-spacing:15.488424px;}
.ws8_c00283{word-spacing:23.743782px;}
.ws7_c00283{word-spacing:23.778792px;}
.ws1a_c00283{word-spacing:24.822090px;}
.ws1e_c00283{word-spacing:26.250498px;}
.ws20_c00283{word-spacing:26.264502px;}
.ws1f_c00283{word-spacing:26.642610px;}
._3_c00283{margin-left:-2.709774px;}
._1_c00283{margin-left:-1.176336px;}
._0_c00283{width:1.218348px;}
._2_c00283{width:5.930694px;}
.fc0_c00283{color:rgb(0,0,0);}
.fs3_c00283{font-size:37.809600px;}
.fs1_c00283{font-size:46.562400px;}
.fs4_c00283{font-size:58.466400px;}
.fs0_c00283{font-size:70.020000px;}
.fs2_c00283{font-size:75.971400px;}
.y0_c00283{bottom:0.000000px;}
.y2_c00283{bottom:109.740968px;}
.y1_c00283{bottom:129.810450px;}
.y1f_c00283{bottom:153.120600px;}
.y1e_c00283{bottom:167.790085px;}
.y1d_c00283{bottom:240.150504px;}
.y1c_c00283{bottom:270.390391px;}
.y1b_c00283{bottom:300.630279px;}
.y1a_c00283{bottom:351.119951px;}
.y19_c00283{bottom:381.359838px;}
.y18_c00283{bottom:411.510450px;}
.y17_c00283{bottom:452.370600px;}
.y16_c00283{bottom:504.387862px;}
.y15_c00283{bottom:534.627750px;}
.y14_c00283{bottom:564.778362px;}
.y13_c00283{bottom:594.928974px;}
.y12_c00283{bottom:625.168861px;}
.y11_c00283{bottom:655.319473px;}
.y10_c00283{bottom:685.559361px;}
.yf_c00283{bottom:726.149955px;}
.ye_c00283{bottom:746.219437px;}
.yd_c00283{bottom:794.009838px;}
.yc_c00283{bottom:824.160279px;}
.yb_c00283{bottom:854.400166px;}
.ya_c00283{bottom:899.039667px;}
.y9_c00283{bottom:929.279555px;}
.y8_c00283{bottom:959.519442px;}
.y7_c00283{bottom:989.670054px;}
.y6_c00283{bottom:1019.909942px;}
.y5_c00283{bottom:1050.060553px;}
.y4_c00283{bottom:1080.300441px;}
.y3_c00283{bottom:1110.451053px;}
.h7_c00283{height:39.337949px;}
.h2_c00283{height:62.600889px;}
.h1_c00283{height:62.771836px;}
.h6_c00283{height:62.773894px;}
.h4_c00283{height:63.216299px;}
.h5_c00283{height:68.589413px;}
.h3_c00283{height:73.783148px;}
.h0_c00283{height:1263.000000px;}
.w0_c00283{width:892.500000px;}
.x0_c00283{left:0.000000px;}
.x2_c00283{left:82.710059px;}
.x3_c00283{left:108.990297px;}
.x1_c00283{left:431.730000px;}
@media print{
.v2_c00283{vertical-align:-13.120533pt;}
.v0_c00283{vertical-align:0.000000pt;}
.v1_c00283{vertical-align:28.480608pt;}
.ls14_c00283{letter-spacing:-0.597657pt;}
.ls11_c00283{letter-spacing:-0.236355pt;}
.ls10_c00283{letter-spacing:-0.135060pt;}
.lse_c00283{letter-spacing:-0.112032pt;}
.ls13_c00283{letter-spacing:-0.067217pt;}
.ls6_c00283{letter-spacing:-0.056016pt;}
.ls12_c00283{letter-spacing:-0.049792pt;}
.lsc_c00283{letter-spacing:-0.043568pt;}
.lsb_c00283{letter-spacing:-0.037344pt;}
.lsa_c00283{letter-spacing:-0.031120pt;}
.ls8_c00283{letter-spacing:-0.024896pt;}
.lsf_c00283{letter-spacing:-0.018672pt;}
.lsd_c00283{letter-spacing:-0.012448pt;}
.ls9_c00283{letter-spacing:-0.006224pt;}
.ls7_c00283{letter-spacing:0.000000pt;}
.ls0_c00283{letter-spacing:0.006224pt;}
.ls4_c00283{letter-spacing:0.012448pt;}
.ls2_c00283{letter-spacing:0.020694pt;}
.ls1_c00283{letter-spacing:0.024896pt;}
.ls5_c00283{letter-spacing:0.031120pt;}
.ls3_c00283{letter-spacing:0.099584pt;}
.ws1_c00283{word-spacing:-17.333840pt;}
.ws0_c00283{word-spacing:-11.526781pt;}
.ws2_c00283{word-spacing:-9.242347pt;}
.ws15_c00283{word-spacing:-0.043568pt;}
.ws14_c00283{word-spacing:-0.012448pt;}
.ws3_c00283{word-spacing:0.000000pt;}
.ws1b_c00283{word-spacing:0.006224pt;}
.ws10_c00283{word-spacing:0.012448pt;}
.wse_c00283{word-spacing:0.018672pt;}
.wsd_c00283{word-spacing:0.031120pt;}
.ws12_c00283{word-spacing:0.099584pt;}
.ws1d_c00283{word-spacing:0.141813pt;}
.ws1c_c00283{word-spacing:0.249861pt;}
.ws13_c00283{word-spacing:0.292528pt;}
.ws6_c00283{word-spacing:0.311200pt;}
.ws26_c00283{word-spacing:0.342320pt;}
.ws22_c00283{word-spacing:0.354768pt;}
.ws27_c00283{word-spacing:0.608051pt;}
.ws4_c00283{word-spacing:0.653520pt;}
.ws17_c00283{word-spacing:0.939824pt;}
.ws5_c00283{word-spacing:0.952272pt;}
.ws16_c00283{word-spacing:4.780032pt;}
.ws19_c00283{word-spacing:5.464672pt;}
.wsf_c00283{word-spacing:5.719856pt;}
.ws18_c00283{word-spacing:5.763424pt;}
.ws21_c00283{word-spacing:8.327712pt;}
.ws25_c00283{word-spacing:8.956336pt;}
.wsa_c00283{word-spacing:11.819376pt;}
.wsb_c00283{word-spacing:11.850496pt;}
.wsc_c00283{word-spacing:12.143024pt;}
.ws11_c00283{word-spacing:12.690736pt;}
.ws9_c00283{word-spacing:13.462512pt;}
.ws24_c00283{word-spacing:13.761264pt;}
.ws23_c00283{word-spacing:13.767488pt;}
.ws8_c00283{word-spacing:21.105584pt;}
.ws7_c00283{word-spacing:21.136704pt;}
.ws1a_c00283{word-spacing:22.064080pt;}
.ws1e_c00283{word-spacing:23.333776pt;}
.ws20_c00283{word-spacing:23.346224pt;}
.ws1f_c00283{word-spacing:23.682320pt;}
._3_c00283{margin-left:-2.408688pt;}
._1_c00283{margin-left:-1.045632pt;}
._0_c00283{width:1.082976pt;}
._2_c00283{width:5.271728pt;}
.fs3_c00283{font-size:33.608533pt;}
.fs1_c00283{font-size:41.388800pt;}
.fs4_c00283{font-size:51.970133pt;}
.fs0_c00283{font-size:62.240000pt;}
.fs2_c00283{font-size:67.530133pt;}
.y0_c00283{bottom:0.000000pt;}
.y2_c00283{bottom:97.547527pt;}
.y1_c00283{bottom:115.387067pt;}
.y1f_c00283{bottom:136.107200pt;}
.y1e_c00283{bottom:149.146743pt;}
.y1d_c00283{bottom:213.467115pt;}
.y1c_c00283{bottom:240.347015pt;}
.y1b_c00283{bottom:267.226915pt;}
.y1a_c00283{bottom:312.106623pt;}
.y19_c00283{bottom:338.986523pt;}
.y18_c00283{bottom:365.787067pt;}
.y17_c00283{bottom:402.107200pt;}
.y16_c00283{bottom:448.344767pt;}
.y15_c00283{bottom:475.224667pt;}
.y14_c00283{bottom:502.025211pt;}
.y13_c00283{bottom:528.825755pt;}
.y12_c00283{bottom:555.705655pt;}
.y11_c00283{bottom:582.506199pt;}
.y10_c00283{bottom:609.386099pt;}
.yf_c00283{bottom:645.466627pt;}
.ye_c00283{bottom:663.306167pt;}
.yd_c00283{bottom:705.786523pt;}
.yc_c00283{bottom:732.586915pt;}
.yb_c00283{bottom:759.466815pt;}
.ya_c00283{bottom:799.146371pt;}
.y9_c00283{bottom:826.026271pt;}
.y8_c00283{bottom:852.906171pt;}
.y7_c00283{bottom:879.706715pt;}
.y6_c00283{bottom:906.586615pt;}
.y5_c00283{bottom:933.387159pt;}
.y4_c00283{bottom:960.267059pt;}
.y3_c00283{bottom:987.067603pt;}
.h7_c00283{height:34.967066pt;}
.h2_c00283{height:55.645234pt;}
.h1_c00283{height:55.797187pt;}
.h6_c00283{height:55.799017pt;}
.h4_c00283{height:56.192266pt;}
.h5_c00283{height:60.968367pt;}
.h3_c00283{height:65.585021pt;}
.h0_c00283{height:1122.666667pt;}
.w0_c00283{width:793.333333pt;}
.x0_c00283{left:0.000000pt;}
.x2_c00283{left:73.520052pt;}
.x3_c00283{left:96.880264pt;}
.x1_c00283{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e47333f1d3bdb2145dc736f0.woff2')format("woff");}.ff1_c00284{font-family:ff1_c00284;line-height:1.106934;font-style:normal;font-weight:normal;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_3f49278cc397cb7b2edfe403.woff2')format("woff");}.ff2_c00284{font-family:ff2_c00284;line-height:1.104492;font-style:normal;font-weight:normal;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_f7bf38e90131f74c4091765d.woff2')format("woff");}.ff3_c00284{font-family:ff3_c00284;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00284;src:url('chunks/assets/font_d2ef0493caf4dc7a3c7550a1.woff2')format("woff");}.ff4_c00284{font-family:ff4_c00284;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00284;src:url('chunks/assets/font_45bb092becc1ef181491f38e.woff2')format("woff");}.ff5_c00284{font-family:ff5_c00284;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00284;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff6_c00284{font-family:ff6_c00284;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00284{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00284{vertical-align:-14.760000px;}
.v0_c00284{vertical-align:0.000000px;}
.v1_c00284{vertical-align:32.415822px;}
.ls11_c00284{letter-spacing:-0.263099px;}
.ls10_c00284{letter-spacing:-0.111086px;}
.lse_c00284{letter-spacing:-0.093546px;}
.lsc_c00284{letter-spacing:-0.075619px;}
.lsd_c00284{letter-spacing:-0.070160px;}
.ls5_c00284{letter-spacing:-0.063018px;}
.ls8_c00284{letter-spacing:-0.035010px;}
.ls9_c00284{letter-spacing:-0.028008px;}
.ls13_c00284{letter-spacing:-0.023387px;}
.ls7_c00284{letter-spacing:-0.021006px;}
.ls14_c00284{letter-spacing:-0.017540px;}
.lsb_c00284{letter-spacing:-0.014004px;}
.lsa_c00284{letter-spacing:-0.007002px;}
.ls6_c00284{letter-spacing:0.000000px;}
.ls0_c00284{letter-spacing:0.007002px;}
.ls1_c00284{letter-spacing:0.021006px;}
.ls2_c00284{letter-spacing:0.023281px;}
.lsf_c00284{letter-spacing:0.029233px;}
.ls12_c00284{letter-spacing:0.058466px;}
.ls4_c00284{letter-spacing:0.076006px;}
.ls3_c00284{letter-spacing:0.362492px;}
.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;}
}
.ws2_c00284{word-spacing:-58.466400px;}
.ws0_c00284{word-spacing:-12.967628px;}
.ws1_c00284{word-spacing:-10.397640px;}
.ws25_c00284{word-spacing:-0.403418px;}
.ws14_c00284{word-spacing:-0.007002px;}
.ws3_c00284{word-spacing:0.000000px;}
.ws7_c00284{word-spacing:0.007002px;}
.ws8_c00284{word-spacing:0.021006px;}
.ws27_c00284{word-spacing:0.029233px;}
.ws26_c00284{word-spacing:0.035080px;}
.ws11_c00284{word-spacing:0.357102px;}
.ws1f_c00284{word-spacing:0.364104px;}
.ws6_c00284{word-spacing:0.742212px;}
.wsa_c00284{word-spacing:1.421406px;}
.ws9_c00284{word-spacing:1.456416px;}
.ws19_c00284{word-spacing:3.606030px;}
.wsf_c00284{word-spacing:5.391540px;}
.wse_c00284{word-spacing:5.398542px;}
.ws4_c00284{word-spacing:5.405544px;}
.ws1c_c00284{word-spacing:5.412546px;}
.ws5_c00284{word-spacing:6.455844px;}
.ws22_c00284{word-spacing:6.466384px;}
.wsd_c00284{word-spacing:6.469848px;}
.ws1b_c00284{word-spacing:6.476850px;}
.ws20_c00284{word-spacing:6.565777px;}
.ws21_c00284{word-spacing:6.589163px;}
.ws24_c00284{word-spacing:6.758716px;}
.ws23_c00284{word-spacing:6.963348px;}
.ws10_c00284{word-spacing:7.926264px;}
.ws18_c00284{word-spacing:9.004572px;}
.ws17_c00284{word-spacing:10.425978px;}
.ws13_c00284{word-spacing:11.483280px;}
.ws12_c00284{word-spacing:11.875392px;}
.wsc_c00284{word-spacing:12.974706px;}
.wsb_c00284{word-spacing:15.096312px;}
.ws1a_c00284{word-spacing:15.481422px;}
.ws1d_c00284{word-spacing:16.916832px;}
.ws16_c00284{word-spacing:20.158758px;}
.ws15_c00284{word-spacing:21.965274px;}
.ws1e_c00284{word-spacing:50.022288px;}
._3_c00284{margin-left:-2.710494px;}
._1_c00284{margin-left:-1.260360px;}
._0_c00284{width:1.330380px;}
._2_c00284{width:5.930694px;}
.fc0_c00284{color:rgb(0,0,0);}
.fs2_c00284{font-size:37.809600px;}
.fs1_c00284{font-size:46.562400px;}
.fs3_c00284{font-size:58.466400px;}
.fs0_c00284{font-size:70.020000px;}
.y0_c00284{bottom:0.000000px;}
.y2_c00284{bottom:109.740968px;}
.y1_c00284{bottom:129.810450px;}
.y1f_c00284{bottom:149.429891px;}
.y1e_c00284{bottom:170.940450px;}
.y1d_c00284{bottom:185.700869px;}
.y1c_c00284{bottom:253.376495px;}
.y1b_c00284{bottom:283.705658px;}
.y1a_c00284{bottom:313.856270px;}
.y19_c00284{bottom:344.096157px;}
.y18_c00284{bottom:374.246769px;}
.y17_c00284{bottom:404.486657px;}
.y16_c00284{bottom:434.637269px;}
.y15_c00284{bottom:485.217966px;}
.y14_c00284{bottom:515.457854px;}
.y13_c00284{bottom:545.697741px;}
.y12_c00284{bottom:596.187413px;}
.y11_c00284{bottom:626.427300px;}
.y10_c00284{bottom:656.667188px;}
.yf_c00284{bottom:707.247885px;}
.ye_c00284{bottom:737.487773px;}
.yd_c00284{bottom:787.977444px;}
.yc_c00284{bottom:818.308358px;}
.yb_c00284{bottom:848.458970px;}
.ya_c00284{bottom:878.698857px;}
.y9_c00284{bottom:908.849469px;}
.y8_c00284{bottom:939.089357px;}
.y7_c00284{bottom:969.239969px;}
.y6_c00284{bottom:1019.820666px;}
.y5_c00284{bottom:1050.060553px;}
.y4_c00284{bottom:1080.300441px;}
.y3_c00284{bottom:1110.451053px;}
.h4_c00284{height:39.338549px;}
.h5_c00284{height:54.098549px;}
.h2_c00284{height:62.600889px;}
.h1_c00284{height:62.771836px;}
.h3_c00284{height:74.044608px;}
.h0_c00284{height:1263.000000px;}
.w0_c00284{width:892.500000px;}
.x0_c00284{left:0.000000px;}
.x2_c00284{left:82.710059px;}
.x1_c00284{left:431.730000px;}
@media print{
.v2_c00284{vertical-align:-13.120000pt;}
.v0_c00284{vertical-align:0.000000pt;}
.v1_c00284{vertical-align:28.814064pt;}
.ls11_c00284{letter-spacing:-0.233866pt;}
.ls10_c00284{letter-spacing:-0.098743pt;}
.lse_c00284{letter-spacing:-0.083152pt;}
.lsc_c00284{letter-spacing:-0.067217pt;}
.lsd_c00284{letter-spacing:-0.062364pt;}
.ls5_c00284{letter-spacing:-0.056016pt;}
.ls8_c00284{letter-spacing:-0.031120pt;}
.ls9_c00284{letter-spacing:-0.024896pt;}
.ls13_c00284{letter-spacing:-0.020788pt;}
.ls7_c00284{letter-spacing:-0.018672pt;}
.ls14_c00284{letter-spacing:-0.015591pt;}
.lsb_c00284{letter-spacing:-0.012448pt;}
.lsa_c00284{letter-spacing:-0.006224pt;}
.ls6_c00284{letter-spacing:0.000000pt;}
.ls0_c00284{letter-spacing:0.006224pt;}
.ls1_c00284{letter-spacing:0.018672pt;}
.ls2_c00284{letter-spacing:0.020694pt;}
.lsf_c00284{letter-spacing:0.025985pt;}
.ls12_c00284{letter-spacing:0.051970pt;}
.ls4_c00284{letter-spacing:0.067561pt;}
.ls3_c00284{letter-spacing:0.322215pt;}
.ws2_c00284{word-spacing:-51.970133pt;}
.ws0_c00284{word-spacing:-11.526781pt;}
.ws1_c00284{word-spacing:-9.242347pt;}
.ws25_c00284{word-spacing:-0.358594pt;}
.ws14_c00284{word-spacing:-0.006224pt;}
.ws3_c00284{word-spacing:0.000000pt;}
.ws7_c00284{word-spacing:0.006224pt;}
.ws8_c00284{word-spacing:0.018672pt;}
.ws27_c00284{word-spacing:0.025985pt;}
.ws26_c00284{word-spacing:0.031182pt;}
.ws11_c00284{word-spacing:0.317424pt;}
.ws1f_c00284{word-spacing:0.323648pt;}
.ws6_c00284{word-spacing:0.659744pt;}
.wsa_c00284{word-spacing:1.263472pt;}
.ws9_c00284{word-spacing:1.294592pt;}
.ws19_c00284{word-spacing:3.205360pt;}
.wsf_c00284{word-spacing:4.792480pt;}
.wse_c00284{word-spacing:4.798704pt;}
.ws4_c00284{word-spacing:4.804928pt;}
.ws1c_c00284{word-spacing:4.811152pt;}
.ws5_c00284{word-spacing:5.738528pt;}
.ws22_c00284{word-spacing:5.747897pt;}
.wsd_c00284{word-spacing:5.750976pt;}
.ws1b_c00284{word-spacing:5.757200pt;}
.ws20_c00284{word-spacing:5.836246pt;}
.ws21_c00284{word-spacing:5.857034pt;}
.ws24_c00284{word-spacing:6.007747pt;}
.ws23_c00284{word-spacing:6.189643pt;}
.ws10_c00284{word-spacing:7.045568pt;}
.ws18_c00284{word-spacing:8.004064pt;}
.ws17_c00284{word-spacing:9.267536pt;}
.ws13_c00284{word-spacing:10.207360pt;}
.ws12_c00284{word-spacing:10.555904pt;}
.wsc_c00284{word-spacing:11.533072pt;}
.wsb_c00284{word-spacing:13.418944pt;}
.ws1a_c00284{word-spacing:13.761264pt;}
.ws1d_c00284{word-spacing:15.037184pt;}
.ws16_c00284{word-spacing:17.918896pt;}
.ws15_c00284{word-spacing:19.524688pt;}
.ws1e_c00284{word-spacing:44.464256pt;}
._3_c00284{margin-left:-2.409328pt;}
._1_c00284{margin-left:-1.120320pt;}
._0_c00284{width:1.182560pt;}
._2_c00284{width:5.271728pt;}
.fs2_c00284{font-size:33.608533pt;}
.fs1_c00284{font-size:41.388800pt;}
.fs3_c00284{font-size:51.970133pt;}
.fs0_c00284{font-size:62.240000pt;}
.y0_c00284{bottom:0.000000pt;}
.y2_c00284{bottom:97.547527pt;}
.y1_c00284{bottom:115.387067pt;}
.y1f_c00284{bottom:132.826570pt;}
.y1e_c00284{bottom:151.947067pt;}
.y1d_c00284{bottom:165.067439pt;}
.y1c_c00284{bottom:225.223551pt;}
.y1b_c00284{bottom:252.182807pt;}
.y1a_c00284{bottom:278.983351pt;}
.y19_c00284{bottom:305.863251pt;}
.y18_c00284{bottom:332.663795pt;}
.y17_c00284{bottom:359.543695pt;}
.y16_c00284{bottom:386.344239pt;}
.y15_c00284{bottom:431.304859pt;}
.y14_c00284{bottom:458.184759pt;}
.y13_c00284{bottom:485.064659pt;}
.y12_c00284{bottom:529.944367pt;}
.y11_c00284{bottom:556.824267pt;}
.y10_c00284{bottom:583.704167pt;}
.yf_c00284{bottom:628.664787pt;}
.ye_c00284{bottom:655.544687pt;}
.yd_c00284{bottom:700.424395pt;}
.yc_c00284{bottom:727.385207pt;}
.yb_c00284{bottom:754.185751pt;}
.ya_c00284{bottom:781.065651pt;}
.y9_c00284{bottom:807.866195pt;}
.y8_c00284{bottom:834.746095pt;}
.y7_c00284{bottom:861.546639pt;}
.y6_c00284{bottom:906.507259pt;}
.y5_c00284{bottom:933.387159pt;}
.y4_c00284{bottom:960.267059pt;}
.y3_c00284{bottom:987.067603pt;}
.h4_c00284{height:34.967599pt;}
.h5_c00284{height:48.087599pt;}
.h2_c00284{height:55.645234pt;}
.h1_c00284{height:55.797187pt;}
.h3_c00284{height:65.817430pt;}
.h0_c00284{height:1122.666667pt;}
.w0_c00284{width:793.333333pt;}
.x0_c00284{left:0.000000pt;}
.x2_c00284{left:73.520052pt;}
.x1_c00284{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_210ee4df03ea153d044511c4.woff2')format("woff");}.ff1_c00285{font-family:ff1_c00285;line-height:1.106934;font-style:normal;font-weight:normal;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_47c3aba08548ed19fb2e2037.woff2')format("woff");}.ff2_c00285{font-family:ff2_c00285;line-height:1.104492;font-style:normal;font-weight:normal;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_6dffb76e6a59c8a59e89aa42.woff2')format("woff");}.ff3_c00285{font-family:ff3_c00285;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00285{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00285{vertical-align:-14.760600px;}
.v0_c00285{vertical-align:0.000000px;}
.v1_c00285{vertical-align:32.042484px;}
.lsb_c00285{letter-spacing:-0.335249px;}
.lsd_c00285{letter-spacing:-0.091026px;}
.lsf_c00285{letter-spacing:-0.075619px;}
.lse_c00285{letter-spacing:-0.070020px;}
.ls3_c00285{letter-spacing:-0.063018px;}
.ls7_c00285{letter-spacing:-0.049014px;}
.ls10_c00285{letter-spacing:-0.035080px;}
.ls5_c00285{letter-spacing:-0.035010px;}
.ls6_c00285{letter-spacing:-0.028008px;}
.ls9_c00285{letter-spacing:-0.021006px;}
.lsa_c00285{letter-spacing:-0.014004px;}
.ls8_c00285{letter-spacing:-0.007002px;}
.ls4_c00285{letter-spacing:0.000000px;}
.ls0_c00285{letter-spacing:0.007002px;}
.ls2_c00285{letter-spacing:0.014004px;}
.ls1_c00285{letter-spacing:0.021006px;}
.lsc_c00285{letter-spacing:0.343098px;}
.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:-19.465560px;}
.ws2_c00285{word-spacing:-19.374534px;}
.ws1_c00285{word-spacing:-12.609098px;}
.ws3_c00285{word-spacing:-10.397640px;}
.ws4_c00285{word-spacing:0.000000px;}
.ws12_c00285{word-spacing:0.007002px;}
.wsf_c00285{word-spacing:0.021006px;}
.ws7_c00285{word-spacing:0.035010px;}
.ws21_c00285{word-spacing:0.046773px;}
.ws1f_c00285{word-spacing:0.056016px;}
.ws15_c00285{word-spacing:0.350100px;}
.ws20_c00285{word-spacing:0.392112px;}
.ws6_c00285{word-spacing:0.735210px;}
.ws14_c00285{word-spacing:1.792512px;}
.ws17_c00285{word-spacing:1.813518px;}
.ws13_c00285{word-spacing:3.255930px;}
.ws10_c00285{word-spacing:5.363532px;}
.ws9_c00285{word-spacing:5.391540px;}
.ws11_c00285{word-spacing:5.405544px;}
.ws1b_c00285{word-spacing:5.769648px;}
.ws5_c00285{word-spacing:5.783652px;}
.ws1c_c00285{word-spacing:8.283366px;}
.ws1d_c00285{word-spacing:8.290368px;}
.wsb_c00285{word-spacing:8.640468px;}
.wsa_c00285{word-spacing:9.004572px;}
.ws18_c00285{word-spacing:10.096884px;}
.ws1e_c00285{word-spacing:10.460988px;}
.wse_c00285{word-spacing:13.695912px;}
.ws8_c00285{word-spacing:16.895826px;}
.ws19_c00285{word-spacing:22.294368px;}
.ws16_c00285{word-spacing:22.329378px;}
.ws1a_c00285{word-spacing:22.686480px;}
.wsc_c00285{word-spacing:24.135894px;}
.wsd_c00285{word-spacing:24.471990px;}
._3_c00285{margin-left:-2.710116px;}
._1_c00285{margin-left:-1.113318px;}
._0_c00285{width:1.078308px;}
._2_c00285{width:5.930694px;}
.fc0_c00285{color:rgb(0,0,0);}
.fs2_c00285{font-size:37.809600px;}
.fs1_c00285{font-size:46.562400px;}
.fs3_c00285{font-size:58.466400px;}
.fs0_c00285{font-size:70.020000px;}
.y0_c00285{bottom:0.000000px;}
.y2_c00285{bottom:109.740968px;}
.y1_c00285{bottom:129.810450px;}
.y20_c00285{bottom:153.120600px;}
.y1f_c00285{bottom:167.789919px;}
.y1e_c00285{bottom:193.079392px;}
.y1d_c00285{bottom:223.319280px;}
.y1c_c00285{bottom:253.469892px;}
.y1b_c00285{bottom:283.709779px;}
.y1a_c00285{bottom:313.860391px;}
.y19_c00285{bottom:344.100279px;}
.y18_c00285{bottom:374.250891px;}
.y17_c00285{bottom:404.490778px;}
.y16_c00285{bottom:454.979829px;}
.y15_c00285{bottom:485.308992px;}
.y14_c00285{bottom:515.459604px;}
.y13_c00285{bottom:545.699492px;}
.y12_c00285{bottom:596.189163px;}
.y11_c00285{bottom:626.429051px;}
.y10_c00285{bottom:656.668938px;}
.yf_c00285{bottom:707.249635px;}
.ye_c00285{bottom:737.489523px;}
.yd_c00285{bottom:787.979195px;}
.yc_c00285{bottom:818.310108px;}
.yb_c00285{bottom:848.460720px;}
.ya_c00285{bottom:878.700607px;}
.y9_c00285{bottom:908.851219px;}
.y8_c00285{bottom:939.091107px;}
.y7_c00285{bottom:969.241719px;}
.y6_c00285{bottom:999.481606px;}
.y5_c00285{bottom:1049.971278px;}
.y4_c00285{bottom:1080.300441px;}
.y3_c00285{bottom:1110.451053px;}
.h5_c00285{height:39.337949px;}
.h2_c00285{height:62.600889px;}
.h1_c00285{height:62.771836px;}
.h4_c00285{height:62.774560px;}
.h3_c00285{height:73.671270px;}
.h0_c00285{height:1263.000000px;}
.w0_c00285{width:892.500000px;}
.x0_c00285{left:0.000000px;}
.x2_c00285{left:82.710059px;}
.x1_c00285{left:431.730000px;}
@media print{
.v2_c00285{vertical-align:-13.120533pt;}
.v0_c00285{vertical-align:0.000000pt;}
.v1_c00285{vertical-align:28.482208pt;}
.lsb_c00285{letter-spacing:-0.297999pt;}
.lsd_c00285{letter-spacing:-0.080912pt;}
.lsf_c00285{letter-spacing:-0.067217pt;}
.lse_c00285{letter-spacing:-0.062240pt;}
.ls3_c00285{letter-spacing:-0.056016pt;}
.ls7_c00285{letter-spacing:-0.043568pt;}
.ls10_c00285{letter-spacing:-0.031182pt;}
.ls5_c00285{letter-spacing:-0.031120pt;}
.ls6_c00285{letter-spacing:-0.024896pt;}
.ls9_c00285{letter-spacing:-0.018672pt;}
.lsa_c00285{letter-spacing:-0.012448pt;}
.ls8_c00285{letter-spacing:-0.006224pt;}
.ls4_c00285{letter-spacing:0.000000pt;}
.ls0_c00285{letter-spacing:0.006224pt;}
.ls2_c00285{letter-spacing:0.012448pt;}
.ls1_c00285{letter-spacing:0.018672pt;}
.lsc_c00285{letter-spacing:0.304976pt;}
.ws0_c00285{word-spacing:-17.302720pt;}
.ws2_c00285{word-spacing:-17.221808pt;}
.ws1_c00285{word-spacing:-11.208087pt;}
.ws3_c00285{word-spacing:-9.242347pt;}
.ws4_c00285{word-spacing:0.000000pt;}
.ws12_c00285{word-spacing:0.006224pt;}
.wsf_c00285{word-spacing:0.018672pt;}
.ws7_c00285{word-spacing:0.031120pt;}
.ws21_c00285{word-spacing:0.041576pt;}
.ws1f_c00285{word-spacing:0.049792pt;}
.ws15_c00285{word-spacing:0.311200pt;}
.ws20_c00285{word-spacing:0.348544pt;}
.ws6_c00285{word-spacing:0.653520pt;}
.ws14_c00285{word-spacing:1.593344pt;}
.ws17_c00285{word-spacing:1.612016pt;}
.ws13_c00285{word-spacing:2.894160pt;}
.ws10_c00285{word-spacing:4.767584pt;}
.ws9_c00285{word-spacing:4.792480pt;}
.ws11_c00285{word-spacing:4.804928pt;}
.ws1b_c00285{word-spacing:5.128576pt;}
.ws5_c00285{word-spacing:5.141024pt;}
.ws1c_c00285{word-spacing:7.362992pt;}
.ws1d_c00285{word-spacing:7.369216pt;}
.wsb_c00285{word-spacing:7.680416pt;}
.wsa_c00285{word-spacing:8.004064pt;}
.ws18_c00285{word-spacing:8.975008pt;}
.ws1e_c00285{word-spacing:9.298656pt;}
.wse_c00285{word-spacing:12.174144pt;}
.ws8_c00285{word-spacing:15.018512pt;}
.ws19_c00285{word-spacing:19.817216pt;}
.ws16_c00285{word-spacing:19.848336pt;}
.ws1a_c00285{word-spacing:20.165760pt;}
.wsc_c00285{word-spacing:21.454128pt;}
.wsd_c00285{word-spacing:21.752880pt;}
._3_c00285{margin-left:-2.408992pt;}
._1_c00285{margin-left:-0.989616pt;}
._0_c00285{width:0.958496pt;}
._2_c00285{width:5.271728pt;}
.fs2_c00285{font-size:33.608533pt;}
.fs1_c00285{font-size:41.388800pt;}
.fs3_c00285{font-size:51.970133pt;}
.fs0_c00285{font-size:62.240000pt;}
.y0_c00285{bottom:0.000000pt;}
.y2_c00285{bottom:97.547527pt;}
.y1_c00285{bottom:115.387067pt;}
.y20_c00285{bottom:136.107200pt;}
.y1f_c00285{bottom:149.146595pt;}
.y1e_c00285{bottom:171.626127pt;}
.y1d_c00285{bottom:198.506027pt;}
.y1c_c00285{bottom:225.306571pt;}
.y1b_c00285{bottom:252.186471pt;}
.y1a_c00285{bottom:278.987015pt;}
.y19_c00285{bottom:305.866915pt;}
.y18_c00285{bottom:332.667459pt;}
.y17_c00285{bottom:359.547359pt;}
.y16_c00285{bottom:404.426515pt;}
.y15_c00285{bottom:431.385771pt;}
.y14_c00285{bottom:458.186315pt;}
.y13_c00285{bottom:485.066215pt;}
.y12_c00285{bottom:529.945923pt;}
.y11_c00285{bottom:556.825823pt;}
.y10_c00285{bottom:583.705723pt;}
.yf_c00285{bottom:628.666343pt;}
.ye_c00285{bottom:655.546243pt;}
.yd_c00285{bottom:700.425951pt;}
.yc_c00285{bottom:727.386763pt;}
.yb_c00285{bottom:754.187307pt;}
.ya_c00285{bottom:781.067207pt;}
.y9_c00285{bottom:807.867751pt;}
.y8_c00285{bottom:834.747651pt;}
.y7_c00285{bottom:861.548195pt;}
.y6_c00285{bottom:888.428095pt;}
.y5_c00285{bottom:933.307803pt;}
.y4_c00285{bottom:960.267059pt;}
.y3_c00285{bottom:987.067603pt;}
.h5_c00285{height:34.967066pt;}
.h2_c00285{height:55.645234pt;}
.h1_c00285{height:55.797187pt;}
.h4_c00285{height:55.799609pt;}
.h3_c00285{height:65.485574pt;}
.h0_c00285{height:1122.666667pt;}
.w0_c00285{width:793.333333pt;}
.x0_c00285{left:0.000000pt;}
.x2_c00285{left:73.520052pt;}
.x1_c00285{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e44ba4f63516e0ec3b49347f.woff2')format("woff");}.ff1_c00286{font-family:ff1_c00286;line-height:1.106934;font-style:normal;font-weight:normal;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_164911f71bd955d155284b9d.woff2')format("woff");}.ff2_c00286{font-family:ff2_c00286;line-height:1.104492;font-style:normal;font-weight:normal;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_34a476f89c5b42a3c6515a35.woff2')format("woff");}.ff3_c00286{font-family:ff3_c00286;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00286;src:url('chunks/assets/font_a6a31818708ca4567ff94126.woff2')format("woff");}.ff4_c00286{font-family:ff4_c00286;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00286{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00286{vertical-align:-14.760000px;}
.v0_c00286{vertical-align:0.000000px;}
.v1_c00286{vertical-align:32.044032px;}
.ls12_c00286{letter-spacing:-0.678210px;}
.ls11_c00286{letter-spacing:-0.152013px;}
.ls10_c00286{letter-spacing:-0.075619px;}
.ls7_c00286{letter-spacing:-0.063018px;}
.lse_c00286{letter-spacing:-0.056016px;}
.ls14_c00286{letter-spacing:-0.046773px;}
.lsc_c00286{letter-spacing:-0.042012px;}
.lsa_c00286{letter-spacing:-0.035010px;}
.lsd_c00286{letter-spacing:-0.028008px;}
.lsb_c00286{letter-spacing:-0.021006px;}
.ls9_c00286{letter-spacing:-0.014004px;}
.lsf_c00286{letter-spacing:-0.007002px;}
.ls16_c00286{letter-spacing:-0.005847px;}
.ls8_c00286{letter-spacing:0.000000px;}
.ls0_c00286{letter-spacing:0.007002px;}
.ls2_c00286{letter-spacing:0.014004px;}
.ls6_c00286{letter-spacing:0.017540px;}
.ls4_c00286{letter-spacing:0.021006px;}
.ls3_c00286{letter-spacing:0.023281px;}
.ls1_c00286{letter-spacing:0.042012px;}
.ls5_c00286{letter-spacing:0.046773px;}
.ls15_c00286{letter-spacing:0.263099px;}
.ls17_c00286{letter-spacing:0.374185px;}
.ls13_c00286{letter-spacing:0.537891px;}
.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;}
}
.ws1_c00286{word-spacing:-19.465560px;}
.ws2_c00286{word-spacing:-19.451556px;}
.ws4_c00286{word-spacing:-16.189346px;}
.ws0_c00286{word-spacing:-12.967628px;}
.ws3_c00286{word-spacing:-10.397640px;}
.ws2a_c00286{word-spacing:-0.035080px;}
.ws21_c00286{word-spacing:-0.007002px;}
.ws30_c00286{word-spacing:-0.005847px;}
.ws5_c00286{word-spacing:0.000000px;}
.ws18_c00286{word-spacing:0.007002px;}
.wse_c00286{word-spacing:0.014004px;}
.ws2b_c00286{word-spacing:0.163706px;}
.ws23_c00286{word-spacing:0.343098px;}
.ws2c_c00286{word-spacing:0.689904px;}
.ws8_c00286{word-spacing:1.743498px;}
.ws10_c00286{word-spacing:1.806516px;}
.ws9_c00286{word-spacing:1.820520px;}
.wsf_c00286{word-spacing:1.841526px;}
.ws24_c00286{word-spacing:3.269934px;}
.ws15_c00286{word-spacing:3.571020px;}
.ws16_c00286{word-spacing:3.599028px;}
.ws12_c00286{word-spacing:3.963132px;}
.ws29_c00286{word-spacing:7.534152px;}
.ws6_c00286{word-spacing:7.541154px;}
.ws7_c00286{word-spacing:7.562160px;}
.ws1f_c00286{word-spacing:7.583166px;}
.ws28_c00286{word-spacing:7.611174px;}
.ws25_c00286{word-spacing:8.633466px;}
.ws1e_c00286{word-spacing:8.647470px;}
.wsd_c00286{word-spacing:9.333666px;}
.ws20_c00286{word-spacing:9.375678px;}
.wsc_c00286{word-spacing:9.389682px;}
.ws27_c00286{word-spacing:11.168190px;}
.ws26_c00286{word-spacing:11.560302px;}
.ws2d_c00286{word-spacing:12.798295px;}
.ws1d_c00286{word-spacing:12.953700px;}
.ws1c_c00286{word-spacing:12.960702px;}
.ws2f_c00286{word-spacing:13.073087px;}
.ws2e_c00286{word-spacing:13.382959px;}
.ws1a_c00286{word-spacing:15.796512px;}
.ws19_c00286{word-spacing:15.803514px;}
.ws1b_c00286{word-spacing:15.859530px;}
.wsb_c00286{word-spacing:16.923834px;}
.ws13_c00286{word-spacing:17.280936px;}
.ws14_c00286{word-spacing:17.301942px;}
.ws22_c00286{word-spacing:20.158758px;}
.wsa_c00286{word-spacing:28.078020px;}
.ws17_c00286{word-spacing:34.211772px;}
.ws11_c00286{word-spacing:35.997282px;}
._3_c00286{margin-left:-2.712870px;}
._1_c00286{margin-left:-1.232352px;}
._0_c00286{width:1.029294px;}
._4_c00286{width:2.109060px;}
._2_c00286{width:5.930694px;}
.fc0_c00286{color:rgb(0,0,0);}
.fs2_c00286{font-size:37.809600px;}
.fs1_c00286{font-size:46.562400px;}
.fs3_c00286{font-size:58.466400px;}
.fs0_c00286{font-size:70.020000px;}
.y0_c00286{bottom:0.000000px;}
.y2_c00286{bottom:109.740968px;}
.y1_c00286{bottom:129.810450px;}
.y21_c00286{bottom:149.429891px;}
.y20_c00286{bottom:170.940450px;}
.y1f_c00286{bottom:188.940450px;}
.y1e_c00286{bottom:203.608150px;}
.y1d_c00286{bottom:264.178951px;}
.y1c_c00286{bottom:294.329563px;}
.y1b_c00286{bottom:324.569451px;}
.y1a_c00286{bottom:354.809338px;}
.y19_c00286{bottom:384.959950px;}
.y18_c00286{bottom:415.199838px;}
.y17_c00286{bottom:445.349586px;}
.y16_c00286{bottom:475.589474px;}
.y15_c00286{bottom:526.079145px;}
.y14_c00286{bottom:556.319033px;}
.y13_c00286{bottom:586.558920px;}
.y12_c00286{bottom:616.709532px;}
.y11_c00286{bottom:646.949420px;}
.y10_c00286{bottom:677.100032px;}
.yf_c00286{bottom:727.589703px;}
.ye_c00286{bottom:757.920617px;}
.yd_c00286{bottom:788.071229px;}
.yc_c00286{bottom:818.311116px;}
.yb_c00286{bottom:848.461728px;}
.ya_c00286{bottom:878.701616px;}
.y9_c00286{bottom:908.761202px;}
.y8_c00286{bottom:959.519442px;}
.y7_c00286{bottom:989.670054px;}
.y6_c00286{bottom:1019.909942px;}
.y5_c00286{bottom:1050.060553px;}
.y4_c00286{bottom:1080.300441px;}
.y3_c00286{bottom:1110.451053px;}
.h6_c00286{height:39.338549px;}
.h7_c00286{height:54.098549px;}
.h2_c00286{height:62.600889px;}
.h1_c00286{height:62.771836px;}
.h5_c00286{height:62.781034px;}
.h3_c00286{height:73.672818px;}
.h4_c00286{height:74.146520px;}
.h0_c00286{height:1263.000000px;}
.w0_c00286{width:892.500000px;}
.x0_c00286{left:0.000000px;}
.x2_c00286{left:82.710059px;}
.x1_c00286{left:431.730000px;}
@media print{
.v2_c00286{vertical-align:-13.120000pt;}
.v0_c00286{vertical-align:0.000000pt;}
.v1_c00286{vertical-align:28.483584pt;}
.ls12_c00286{letter-spacing:-0.602854pt;}
.ls11_c00286{letter-spacing:-0.135122pt;}
.ls10_c00286{letter-spacing:-0.067217pt;}
.ls7_c00286{letter-spacing:-0.056016pt;}
.lse_c00286{letter-spacing:-0.049792pt;}
.ls14_c00286{letter-spacing:-0.041576pt;}
.lsc_c00286{letter-spacing:-0.037344pt;}
.lsa_c00286{letter-spacing:-0.031120pt;}
.lsd_c00286{letter-spacing:-0.024896pt;}
.lsb_c00286{letter-spacing:-0.018672pt;}
.ls9_c00286{letter-spacing:-0.012448pt;}
.lsf_c00286{letter-spacing:-0.006224pt;}
.ls16_c00286{letter-spacing:-0.005197pt;}
.ls8_c00286{letter-spacing:0.000000pt;}
.ls0_c00286{letter-spacing:0.006224pt;}
.ls2_c00286{letter-spacing:0.012448pt;}
.ls6_c00286{letter-spacing:0.015591pt;}
.ls4_c00286{letter-spacing:0.018672pt;}
.ls3_c00286{letter-spacing:0.020694pt;}
.ls1_c00286{letter-spacing:0.037344pt;}
.ls5_c00286{letter-spacing:0.041576pt;}
.ls15_c00286{letter-spacing:0.233866pt;}
.ls17_c00286{letter-spacing:0.332609pt;}
.ls13_c00286{letter-spacing:0.478125pt;}
.ws1_c00286{word-spacing:-17.302720pt;}
.ws2_c00286{word-spacing:-17.290272pt;}
.ws4_c00286{word-spacing:-14.390530pt;}
.ws0_c00286{word-spacing:-11.526781pt;}
.ws3_c00286{word-spacing:-9.242347pt;}
.ws2a_c00286{word-spacing:-0.031182pt;}
.ws21_c00286{word-spacing:-0.006224pt;}
.ws30_c00286{word-spacing:-0.005197pt;}
.ws5_c00286{word-spacing:0.000000pt;}
.ws18_c00286{word-spacing:0.006224pt;}
.wse_c00286{word-spacing:0.012448pt;}
.ws2b_c00286{word-spacing:0.145516pt;}
.ws23_c00286{word-spacing:0.304976pt;}
.ws2c_c00286{word-spacing:0.613248pt;}
.ws8_c00286{word-spacing:1.549776pt;}
.ws10_c00286{word-spacing:1.605792pt;}
.ws9_c00286{word-spacing:1.618240pt;}
.wsf_c00286{word-spacing:1.636912pt;}
.ws24_c00286{word-spacing:2.906608pt;}
.ws15_c00286{word-spacing:3.174240pt;}
.ws16_c00286{word-spacing:3.199136pt;}
.ws12_c00286{word-spacing:3.522784pt;}
.ws29_c00286{word-spacing:6.697024pt;}
.ws6_c00286{word-spacing:6.703248pt;}
.ws7_c00286{word-spacing:6.721920pt;}
.ws1f_c00286{word-spacing:6.740592pt;}
.ws28_c00286{word-spacing:6.765488pt;}
.ws25_c00286{word-spacing:7.674192pt;}
.ws1e_c00286{word-spacing:7.686640pt;}
.wsd_c00286{word-spacing:8.296592pt;}
.ws20_c00286{word-spacing:8.333936pt;}
.wsc_c00286{word-spacing:8.346384pt;}
.ws27_c00286{word-spacing:9.927280pt;}
.ws26_c00286{word-spacing:10.275824pt;}
.ws2d_c00286{word-spacing:11.376262pt;}
.ws1d_c00286{word-spacing:11.514400pt;}
.ws1c_c00286{word-spacing:11.520624pt;}
.ws2f_c00286{word-spacing:11.620522pt;}
.ws2e_c00286{word-spacing:11.895964pt;}
.ws1a_c00286{word-spacing:14.041344pt;}
.ws19_c00286{word-spacing:14.047568pt;}
.ws1b_c00286{word-spacing:14.097360pt;}
.wsb_c00286{word-spacing:15.043408pt;}
.ws13_c00286{word-spacing:15.360832pt;}
.ws14_c00286{word-spacing:15.379504pt;}
.ws22_c00286{word-spacing:17.918896pt;}
.wsa_c00286{word-spacing:24.958240pt;}
.ws17_c00286{word-spacing:30.410464pt;}
.ws11_c00286{word-spacing:31.997584pt;}
._3_c00286{margin-left:-2.411440pt;}
._1_c00286{margin-left:-1.095424pt;}
._0_c00286{width:0.914928pt;}
._4_c00286{width:1.874720pt;}
._2_c00286{width:5.271728pt;}
.fs2_c00286{font-size:33.608533pt;}
.fs1_c00286{font-size:41.388800pt;}
.fs3_c00286{font-size:51.970133pt;}
.fs0_c00286{font-size:62.240000pt;}
.y0_c00286{bottom:0.000000pt;}
.y2_c00286{bottom:97.547527pt;}
.y1_c00286{bottom:115.387067pt;}
.y21_c00286{bottom:132.826570pt;}
.y20_c00286{bottom:151.947067pt;}
.y1f_c00286{bottom:167.947067pt;}
.y1e_c00286{bottom:180.985023pt;}
.y1d_c00286{bottom:234.825735pt;}
.y1c_c00286{bottom:261.626279pt;}
.y1b_c00286{bottom:288.506179pt;}
.y1a_c00286{bottom:315.386079pt;}
.y19_c00286{bottom:342.186623pt;}
.y18_c00286{bottom:369.066523pt;}
.y17_c00286{bottom:395.866299pt;}
.y16_c00286{bottom:422.746199pt;}
.y15_c00286{bottom:467.625907pt;}
.y14_c00286{bottom:494.505807pt;}
.y13_c00286{bottom:521.385707pt;}
.y12_c00286{bottom:548.186251pt;}
.y11_c00286{bottom:575.066151pt;}
.y10_c00286{bottom:601.866695pt;}
.yf_c00286{bottom:646.746403pt;}
.ye_c00286{bottom:673.707215pt;}
.yd_c00286{bottom:700.507759pt;}
.yc_c00286{bottom:727.387659pt;}
.yb_c00286{bottom:754.188203pt;}
.ya_c00286{bottom:781.068103pt;}
.y9_c00286{bottom:807.787735pt;}
.y8_c00286{bottom:852.906171pt;}
.y7_c00286{bottom:879.706715pt;}
.y6_c00286{bottom:906.586615pt;}
.y5_c00286{bottom:933.387159pt;}
.y4_c00286{bottom:960.267059pt;}
.y3_c00286{bottom:987.067603pt;}
.h6_c00286{height:34.967599pt;}
.h7_c00286{height:48.087599pt;}
.h2_c00286{height:55.645234pt;}
.h1_c00286{height:55.797187pt;}
.h5_c00286{height:55.805364pt;}
.h3_c00286{height:65.486950pt;}
.h4_c00286{height:65.908018pt;}
.h0_c00286{height:1122.666667pt;}
.w0_c00286{width:793.333333pt;}
.x0_c00286{left:0.000000pt;}
.x2_c00286{left:73.520052pt;}
.x1_c00286{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_12c5d2fb7943e640263fbf37.woff2')format("woff");}.ff1_c00287{font-family:ff1_c00287;line-height:1.106934;font-style:normal;font-weight:normal;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_a3b4ed3a230a1e13dbf47177.woff2')format("woff");}.ff2_c00287{font-family:ff2_c00287;line-height:1.104492;font-style:normal;font-weight:normal;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_bd282fac039551b8a5f000aa.woff2')format("woff");}.ff3_c00287{font-family:ff3_c00287;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00287;src:url('chunks/assets/font_57155289f4b3f1a79a43d5c1.woff2')format("woff");}.ff4_c00287{font-family:ff4_c00287;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00287;src:url('chunks/assets/font_88de90e4fc889bed679917a0.woff2')format("woff");}.ff5_c00287{font-family:ff5_c00287;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00287{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00287{vertical-align:-14.760000px;}
.v0_c00287{vertical-align:0.000000px;}
.v1_c00287{vertical-align:32.040036px;}
.ls1b_c00287{letter-spacing:-0.730830px;}
.ls1c_c00287{letter-spacing:-0.707443px;}
.ls17_c00287{letter-spacing:-0.198786px;}
.ls1e_c00287{letter-spacing:-0.181246px;}
.ls10_c00287{letter-spacing:-0.091166px;}
.ls13_c00287{letter-spacing:-0.075619px;}
.ls6_c00287{letter-spacing:-0.063018px;}
.lsc_c00287{letter-spacing:-0.056016px;}
.ls16_c00287{letter-spacing:-0.052620px;}
.lsd_c00287{letter-spacing:-0.049014px;}
.ls8_c00287{letter-spacing:-0.042012px;}
.ls1d_c00287{letter-spacing:-0.040926px;}
.lsf_c00287{letter-spacing:-0.035010px;}
.lsb_c00287{letter-spacing:-0.028008px;}
.lse_c00287{letter-spacing:-0.021006px;}
.ls9_c00287{letter-spacing:-0.014004px;}
.ls19_c00287{letter-spacing:-0.011693px;}
.lsa_c00287{letter-spacing:-0.007002px;}
.ls7_c00287{letter-spacing:0.000000px;}
.ls2_c00287{letter-spacing:0.007002px;}
.ls4_c00287{letter-spacing:0.011693px;}
.ls0_c00287{letter-spacing:0.023281px;}
.ls1_c00287{letter-spacing:0.035010px;}
.ls3_c00287{letter-spacing:0.049014px;}
.ls5_c00287{letter-spacing:0.111086px;}
.ls14_c00287{letter-spacing:0.263099px;}
.ls11_c00287{letter-spacing:0.301086px;}
.ls1a_c00287{letter-spacing:0.327412px;}
.ls12_c00287{letter-spacing:0.343098px;}
.ls15_c00287{letter-spacing:0.344952px;}
.ls18_c00287{letter-spacing:0.514504px;}
.sc__c00287{text-shadow:none;}
.sc0_c00287{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00287{-webkit-text-stroke:0px transparent;}
.sc0_c00287{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00287{word-spacing:-19.430550px;}
.ws0_c00287{word-spacing:-12.967628px;}
.ws2_c00287{word-spacing:-10.397640px;}
.ws27_c00287{word-spacing:-0.672364px;}
.ws25_c00287{word-spacing:-0.502811px;}
.ws2d_c00287{word-spacing:-0.315719px;}
.ws13_c00287{word-spacing:-0.014004px;}
.ws3_c00287{word-spacing:0.000000px;}
.ws1f_c00287{word-spacing:0.021006px;}
.ws26_c00287{word-spacing:0.023387px;}
.wsa_c00287{word-spacing:0.042012px;}
.ws24_c00287{word-spacing:0.064313px;}
.ws2c_c00287{word-spacing:0.192939px;}
.ws1e_c00287{word-spacing:0.294084px;}
.ws1d_c00287{word-spacing:0.371106px;}
.ws14_c00287{word-spacing:0.402648px;}
.ws4_c00287{word-spacing:0.707202px;}
.ws5_c00287{word-spacing:0.749214px;}
.ws16_c00287{word-spacing:1.442412px;}
.ws20_c00287{word-spacing:1.470420px;}
.ws17_c00287{word-spacing:1.484424px;}
.ws15_c00287{word-spacing:1.799514px;}
.ws22_c00287{word-spacing:2.186643px;}
.wse_c00287{word-spacing:2.548728px;}
.ws21_c00287{word-spacing:2.630988px;}
.ws19_c00287{word-spacing:2.863818px;}
.ws10_c00287{word-spacing:2.891826px;}
.ws11_c00287{word-spacing:2.905830px;}
.ws23_c00287{word-spacing:2.946707px;}
.ws1a_c00287{word-spacing:3.227922px;}
.ws18_c00287{word-spacing:3.241926px;}
.ws29_c00287{word-spacing:3.502137px;}
.ws1b_c00287{word-spacing:3.606030px;}
.wsf_c00287{word-spacing:3.914118px;}
.ws2a_c00287{word-spacing:4.683159px;}
.ws28_c00287{word-spacing:4.706545px;}
.ws9_c00287{word-spacing:5.055444px;}
.ws8_c00287{word-spacing:5.090454px;}
.wsc_c00287{word-spacing:7.912260px;}
.wsb_c00287{word-spacing:7.954272px;}
.ws7_c00287{word-spacing:13.674906px;}
.ws6_c00287{word-spacing:13.681908px;}
.ws2b_c00287{word-spacing:14.096249px;}
.ws12_c00287{word-spacing:16.601742px;}
.ws1c_c00287{word-spacing:20.858958px;}
.wsd_c00287{word-spacing:28.449126px;}
._4_c00287{margin-left:-2.710692px;}
._1_c00287{margin-left:-1.036296px;}
._0_c00287{width:1.169334px;}
._2_c00287{width:2.891826px;}
._3_c00287{width:5.930694px;}
.fc0_c00287{color:rgb(0,0,0);}
.fs3_c00287{font-size:37.809600px;}
.fs1_c00287{font-size:46.562400px;}
.fs4_c00287{font-size:58.466400px;}
.fs0_c00287{font-size:70.020000px;}
.fs2_c00287{font-size:75.971400px;}
.y0_c00287{bottom:0.000000px;}
.y2_c00287{bottom:109.740968px;}
.y1_c00287{bottom:129.810450px;}
.y24_c00287{bottom:149.429548px;}
.y23_c00287{bottom:167.250107px;}
.y22_c00287{bottom:188.940450px;}
.y21_c00287{bottom:206.760450px;}
.y20_c00287{bottom:221.069891px;}
.y1f_c00287{bottom:242.580450px;}
.y1e_c00287{bottom:257.247597px;}
.y1d_c00287{bottom:311.968227px;}
.y1c_c00287{bottom:342.118839px;}
.y1b_c00287{bottom:372.358726px;}
.y1a_c00287{bottom:402.509338px;}
.y19_c00287{bottom:432.659950px;}
.y18_c00287{bottom:462.899838px;}
.y17_c00287{bottom:493.050713px;}
.y16_c00287{bottom:523.289838px;}
.y15_c00287{bottom:553.440450px;}
.y14_c00287{bottom:578.190450px;}
.y13_c00287{bottom:627.329838px;}
.y12_c00287{bottom:657.478952px;}
.y11_c00287{bottom:687.718839px;}
.y10_c00287{bottom:717.869451px;}
.yf_c00287{bottom:748.109339px;}
.ye_c00287{bottom:778.259951px;}
.yd_c00287{bottom:808.499838px;}
.yc_c00287{bottom:838.649177px;}
.yb_c00287{bottom:868.889064px;}
.ya_c00287{bottom:899.039676px;}
.y9_c00287{bottom:929.279563px;}
.y8_c00287{bottom:959.519451px;}
.y7_c00287{bottom:989.670063px;}
.y6_c00287{bottom:1019.909951px;}
.y5_c00287{bottom:1050.060563px;}
.y4_c00287{bottom:1080.300441px;}
.y3_c00287{bottom:1110.451053px;}
.ha_c00287{height:39.338549px;}
.hb_c00287{height:54.098549px;}
.h2_c00287{height:62.600889px;}
.h1_c00287{height:62.771836px;}
.h8_c00287{height:62.774884px;}
.h9_c00287{height:62.783248px;}
.h7_c00287{height:63.216299px;}
.h6_c00287{height:68.589413px;}
.h3_c00287{height:73.668822px;}
.h4_c00287{height:74.033880px;}
.h5_c00287{height:74.034780px;}
.h0_c00287{height:1263.000000px;}
.w0_c00287{width:892.500000px;}
.x0_c00287{left:0.000000px;}
.x2_c00287{left:82.710059px;}
.x1_c00287{left:431.730000px;}
@media print{
.v2_c00287{vertical-align:-13.120000pt;}
.v0_c00287{vertical-align:0.000000pt;}
.v1_c00287{vertical-align:28.480032pt;}
.ls1b_c00287{letter-spacing:-0.649627pt;}
.ls1c_c00287{letter-spacing:-0.628839pt;}
.ls17_c00287{letter-spacing:-0.176698pt;}
.ls1e_c00287{letter-spacing:-0.161107pt;}
.ls10_c00287{letter-spacing:-0.081036pt;}
.ls13_c00287{letter-spacing:-0.067217pt;}
.ls6_c00287{letter-spacing:-0.056016pt;}
.lsc_c00287{letter-spacing:-0.049792pt;}
.ls16_c00287{letter-spacing:-0.046773pt;}
.lsd_c00287{letter-spacing:-0.043568pt;}
.ls8_c00287{letter-spacing:-0.037344pt;}
.ls1d_c00287{letter-spacing:-0.036379pt;}
.lsf_c00287{letter-spacing:-0.031120pt;}
.lsb_c00287{letter-spacing:-0.024896pt;}
.lse_c00287{letter-spacing:-0.018672pt;}
.ls9_c00287{letter-spacing:-0.012448pt;}
.ls19_c00287{letter-spacing:-0.010394pt;}
.lsa_c00287{letter-spacing:-0.006224pt;}
.ls7_c00287{letter-spacing:0.000000pt;}
.ls2_c00287{letter-spacing:0.006224pt;}
.ls4_c00287{letter-spacing:0.010394pt;}
.ls0_c00287{letter-spacing:0.020694pt;}
.ls1_c00287{letter-spacing:0.031120pt;}
.ls3_c00287{letter-spacing:0.043568pt;}
.ls5_c00287{letter-spacing:0.098743pt;}
.ls14_c00287{letter-spacing:0.233866pt;}
.ls11_c00287{letter-spacing:0.267632pt;}
.ls1a_c00287{letter-spacing:0.291033pt;}
.ls12_c00287{letter-spacing:0.304976pt;}
.ls15_c00287{letter-spacing:0.306624pt;}
.ls18_c00287{letter-spacing:0.457337pt;}
.ws1_c00287{word-spacing:-17.271600pt;}
.ws0_c00287{word-spacing:-11.526781pt;}
.ws2_c00287{word-spacing:-9.242347pt;}
.ws27_c00287{word-spacing:-0.597657pt;}
.ws25_c00287{word-spacing:-0.446943pt;}
.ws2d_c00287{word-spacing:-0.280639pt;}
.ws13_c00287{word-spacing:-0.012448pt;}
.ws3_c00287{word-spacing:0.000000pt;}
.ws1f_c00287{word-spacing:0.018672pt;}
.ws26_c00287{word-spacing:0.020788pt;}
.wsa_c00287{word-spacing:0.037344pt;}
.ws24_c00287{word-spacing:0.057167pt;}
.ws2c_c00287{word-spacing:0.171501pt;}
.ws1e_c00287{word-spacing:0.261408pt;}
.ws1d_c00287{word-spacing:0.329872pt;}
.ws14_c00287{word-spacing:0.357910pt;}
.ws4_c00287{word-spacing:0.628624pt;}
.ws5_c00287{word-spacing:0.665968pt;}
.ws16_c00287{word-spacing:1.282144pt;}
.ws20_c00287{word-spacing:1.307040pt;}
.ws17_c00287{word-spacing:1.319488pt;}
.ws15_c00287{word-spacing:1.599568pt;}
.ws22_c00287{word-spacing:1.943683pt;}
.wse_c00287{word-spacing:2.265536pt;}
.ws21_c00287{word-spacing:2.338656pt;}
.ws19_c00287{word-spacing:2.545616pt;}
.ws10_c00287{word-spacing:2.570512pt;}
.ws11_c00287{word-spacing:2.582960pt;}
.ws23_c00287{word-spacing:2.619295pt;}
.ws1a_c00287{word-spacing:2.869264pt;}
.ws18_c00287{word-spacing:2.881712pt;}
.ws29_c00287{word-spacing:3.113011pt;}
.ws1b_c00287{word-spacing:3.205360pt;}
.wsf_c00287{word-spacing:3.479216pt;}
.ws2a_c00287{word-spacing:4.162808pt;}
.ws28_c00287{word-spacing:4.183596pt;}
.ws9_c00287{word-spacing:4.493728pt;}
.ws8_c00287{word-spacing:4.524848pt;}
.wsc_c00287{word-spacing:7.033120pt;}
.wsb_c00287{word-spacing:7.070464pt;}
.ws7_c00287{word-spacing:12.155472pt;}
.ws6_c00287{word-spacing:12.161696pt;}
.ws2b_c00287{word-spacing:12.529999pt;}
.ws12_c00287{word-spacing:14.757104pt;}
.ws1c_c00287{word-spacing:18.541296pt;}
.wsd_c00287{word-spacing:25.288112pt;}
._4_c00287{margin-left:-2.409504pt;}
._1_c00287{margin-left:-0.921152pt;}
._0_c00287{width:1.039408pt;}
._2_c00287{width:2.570512pt;}
._3_c00287{width:5.271728pt;}
.fs3_c00287{font-size:33.608533pt;}
.fs1_c00287{font-size:41.388800pt;}
.fs4_c00287{font-size:51.970133pt;}
.fs0_c00287{font-size:62.240000pt;}
.fs2_c00287{font-size:67.530133pt;}
.y0_c00287{bottom:0.000000pt;}
.y2_c00287{bottom:97.547527pt;}
.y1_c00287{bottom:115.387067pt;}
.y24_c00287{bottom:132.826265pt;}
.y23_c00287{bottom:148.666762pt;}
.y22_c00287{bottom:167.947067pt;}
.y21_c00287{bottom:183.787067pt;}
.y20_c00287{bottom:196.506570pt;}
.y1f_c00287{bottom:215.627067pt;}
.y1e_c00287{bottom:228.664531pt;}
.y1d_c00287{bottom:277.305091pt;}
.y1c_c00287{bottom:304.105635pt;}
.y1b_c00287{bottom:330.985535pt;}
.y1a_c00287{bottom:357.786079pt;}
.y19_c00287{bottom:384.586623pt;}
.y18_c00287{bottom:411.466523pt;}
.y17_c00287{bottom:438.267300pt;}
.y16_c00287{bottom:465.146523pt;}
.y15_c00287{bottom:491.947067pt;}
.y14_c00287{bottom:513.947067pt;}
.y13_c00287{bottom:557.626523pt;}
.y12_c00287{bottom:584.425735pt;}
.y11_c00287{bottom:611.305635pt;}
.y10_c00287{bottom:638.106179pt;}
.yf_c00287{bottom:664.986079pt;}
.ye_c00287{bottom:691.786623pt;}
.yd_c00287{bottom:718.666523pt;}
.yc_c00287{bottom:745.465935pt;}
.yb_c00287{bottom:772.345835pt;}
.ya_c00287{bottom:799.146379pt;}
.y9_c00287{bottom:826.026279pt;}
.y8_c00287{bottom:852.906179pt;}
.y7_c00287{bottom:879.706723pt;}
.y6_c00287{bottom:906.586623pt;}
.y5_c00287{bottom:933.387167pt;}
.y4_c00287{bottom:960.267059pt;}
.y3_c00287{bottom:987.067603pt;}
.ha_c00287{height:34.967599pt;}
.hb_c00287{height:48.087599pt;}
.h2_c00287{height:55.645234pt;}
.h1_c00287{height:55.797187pt;}
.h8_c00287{height:55.799897pt;}
.h9_c00287{height:55.807332pt;}
.h7_c00287{height:56.192266pt;}
.h6_c00287{height:60.968367pt;}
.h3_c00287{height:65.483398pt;}
.h4_c00287{height:65.807894pt;}
.h5_c00287{height:65.808694pt;}
.h0_c00287{height:1122.666667pt;}
.w0_c00287{width:793.333333pt;}
.x0_c00287{left:0.000000pt;}
.x2_c00287{left:73.520052pt;}
.x1_c00287{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_892f41b9a6dd10bfa4ea6250.woff2')format("woff");}.ff1_c00288{font-family:ff1_c00288;line-height:1.106934;font-style:normal;font-weight:normal;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_9545f207be7aa27718aa1385.woff2')format("woff");}.ff2_c00288{font-family:ff2_c00288;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00288;src:url('chunks/assets/font_d48c28e6809cbbf7a7c9480a.woff2')format("woff");}.ff3_c00288{font-family:ff3_c00288;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00288;src:url('chunks/assets/font_a0513cf123166ca4c1414487.woff2')format("woff");}.ff4_c00288{font-family:ff4_c00288;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00288{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00288{vertical-align:-83.160000px;}
.v0_c00288{vertical-align:0.000000px;}
.ls5_c00288{letter-spacing:-0.063018px;}
.ls10_c00288{letter-spacing:-0.056016px;}
.lsd_c00288{letter-spacing:-0.049014px;}
.lsa_c00288{letter-spacing:-0.042012px;}
.lsb_c00288{letter-spacing:-0.035010px;}
.lsc_c00288{letter-spacing:-0.028008px;}
.ls9_c00288{letter-spacing:-0.021006px;}
.ls7_c00288{letter-spacing:-0.014004px;}
.ls8_c00288{letter-spacing:-0.007002px;}
.ls6_c00288{letter-spacing:0.000000px;}
.ls0_c00288{letter-spacing:0.007002px;}
.ls4_c00288{letter-spacing:0.021006px;}
.ls2_c00288{letter-spacing:0.049014px;}
.ls3_c00288{letter-spacing:0.063018px;}
.lsf_c00288{letter-spacing:0.147042px;}
.lse_c00288{letter-spacing:0.175050px;}
.ls11_c00288{letter-spacing:0.630180px;}
.ls1_c00288{letter-spacing:260.254440px;}
.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:-19.423548px;}
.wsf_c00288{word-spacing:-0.035010px;}
.ws4_c00288{word-spacing:-0.021006px;}
.ws1_c00288{word-spacing:0.000000px;}
.ws22_c00288{word-spacing:0.028008px;}
.wse_c00288{word-spacing:0.168048px;}
.ws16_c00288{word-spacing:0.294084px;}
.ws3_c00288{word-spacing:0.350100px;}
.ws8_c00288{word-spacing:0.371106px;}
.ws17_c00288{word-spacing:0.378108px;}
.wsd_c00288{word-spacing:0.392112px;}
.ws21_c00288{word-spacing:0.406116px;}
.ws27_c00288{word-spacing:1.092312px;}
.ws2_c00288{word-spacing:2.520720px;}
.ws5_c00288{word-spacing:3.606030px;}
.ws6_c00288{word-spacing:4.348242px;}
.ws9_c00288{word-spacing:4.684338px;}
.ws1d_c00288{word-spacing:6.042726px;}
.ws1e_c00288{word-spacing:6.084738px;}
.ws10_c00288{word-spacing:6.315804px;}
.ws12_c00288{word-spacing:6.462846px;}
.wsb_c00288{word-spacing:6.476850px;}
.wsa_c00288{word-spacing:6.504858px;}
.ws11_c00288{word-spacing:6.518862px;}
.wsc_c00288{word-spacing:8.297370px;}
.ws23_c00288{word-spacing:8.661474px;}
.ws15_c00288{word-spacing:11.896398px;}
.ws14_c00288{word-spacing:14.417118px;}
.ws25_c00288{word-spacing:16.951842px;}
.ws1b_c00288{word-spacing:19.843668px;}
.ws13_c00288{word-spacing:23.043582px;}
.ws1c_c00288{word-spacing:24.836094px;}
.ws7_c00288{word-spacing:25.942410px;}
.ws20_c00288{word-spacing:29.555442px;}
.ws24_c00288{word-spacing:33.854670px;}
.ws1f_c00288{word-spacing:45.078876px;}
.ws26_c00288{word-spacing:57.969558px;}
.ws18_c00288{word-spacing:66.610026px;}
.ws1a_c00288{word-spacing:70.566156px;}
.ws19_c00288{word-spacing:150.108876px;}
._3_c00288{margin-left:-56.954268px;}
._1_c00288{margin-left:-1.127322px;}
._0_c00288{width:1.260360px;}
._2_c00288{width:396.402894px;}
.fc0_c00288{color:rgb(0,0,0);}
.fs0_c00288{font-size:70.020000px;}
.y0_c00288{bottom:0.000000px;}
.y2_c00288{bottom:109.740968px;}
.y1_c00288{bottom:129.810450px;}
.y26_c00288{bottom:200.280600px;}
.y20_c00288{bottom:220.710600px;}
.y25_c00288{bottom:250.770450px;}
.y1f_c00288{bottom:250.860450px;}
.y1e_c00288{bottom:281.100450px;}
.y1d_c00288{bottom:311.250450px;}
.y1c_c00288{bottom:341.490450px;}
.y24_c00288{bottom:371.640450px;}
.y1b_c00288{bottom:392.069753px;}
.y23_c00288{bottom:422.220450px;}
.y1a_c00288{bottom:442.650450px;}
.y22_c00288{bottom:472.800450px;}
.y19_c00288{bottom:472.890450px;}
.y18_c00288{bottom:503.130450px;}
.y17_c00288{bottom:533.280450px;}
.y21_c00288{bottom:563.520450px;}
.y16_c00288{bottom:584.310450px;}
.y15_c00288{bottom:625.980450px;}
.y14_c00288{bottom:657.477669px;}
.y13_c00288{bottom:677.638178px;}
.y12_c00288{bottom:697.798686px;}
.y11_c00288{bottom:717.868169px;}
.y10_c00288{bottom:738.028677px;}
.yf_c00288{bottom:758.189186px;}
.ye_c00288{bottom:778.258668px;}
.yd_c00288{bottom:808.498556px;}
.yc_c00288{bottom:838.649168px;}
.yb_c00288{bottom:868.889055px;}
.ya_c00288{bottom:899.039667px;}
.y9_c00288{bottom:929.279555px;}
.y8_c00288{bottom:959.519442px;}
.y7_c00288{bottom:989.670054px;}
.y6_c00288{bottom:1019.909942px;}
.y5_c00288{bottom:1050.060553px;}
.y4_c00288{bottom:1080.300441px;}
.y3_c00288{bottom:1110.451053px;}
.h3_c00288{height:62.600889px;}
.h1_c00288{height:62.771836px;}
.h2_c00288{height:63.216299px;}
.h4_c00288{height:73.028672px;}
.h0_c00288{height:1263.000000px;}
.w0_c00288{width:892.500000px;}
.x0_c00288{left:0.000000px;}
.x2_c00288{left:82.710059px;}
.x4_c00288{left:152.640000px;}
.x3_c00288{left:173.700000px;}
.x1_c00288{left:431.730000px;}
.x5_c00288{left:472.500000px;}
.x6_c00288{left:474.660000px;}
@media print{
.v1_c00288{vertical-align:-73.920000pt;}
.v0_c00288{vertical-align:0.000000pt;}
.ls5_c00288{letter-spacing:-0.056016pt;}
.ls10_c00288{letter-spacing:-0.049792pt;}
.lsd_c00288{letter-spacing:-0.043568pt;}
.lsa_c00288{letter-spacing:-0.037344pt;}
.lsb_c00288{letter-spacing:-0.031120pt;}
.lsc_c00288{letter-spacing:-0.024896pt;}
.ls9_c00288{letter-spacing:-0.018672pt;}
.ls7_c00288{letter-spacing:-0.012448pt;}
.ls8_c00288{letter-spacing:-0.006224pt;}
.ls6_c00288{letter-spacing:0.000000pt;}
.ls0_c00288{letter-spacing:0.006224pt;}
.ls4_c00288{letter-spacing:0.018672pt;}
.ls2_c00288{letter-spacing:0.043568pt;}
.ls3_c00288{letter-spacing:0.056016pt;}
.lsf_c00288{letter-spacing:0.130704pt;}
.lse_c00288{letter-spacing:0.155600pt;}
.ls11_c00288{letter-spacing:0.560160pt;}
.ls1_c00288{letter-spacing:231.337280pt;}
.ws0_c00288{word-spacing:-17.265376pt;}
.wsf_c00288{word-spacing:-0.031120pt;}
.ws4_c00288{word-spacing:-0.018672pt;}
.ws1_c00288{word-spacing:0.000000pt;}
.ws22_c00288{word-spacing:0.024896pt;}
.wse_c00288{word-spacing:0.149376pt;}
.ws16_c00288{word-spacing:0.261408pt;}
.ws3_c00288{word-spacing:0.311200pt;}
.ws8_c00288{word-spacing:0.329872pt;}
.ws17_c00288{word-spacing:0.336096pt;}
.wsd_c00288{word-spacing:0.348544pt;}
.ws21_c00288{word-spacing:0.360992pt;}
.ws27_c00288{word-spacing:0.970944pt;}
.ws2_c00288{word-spacing:2.240640pt;}
.ws5_c00288{word-spacing:3.205360pt;}
.ws6_c00288{word-spacing:3.865104pt;}
.ws9_c00288{word-spacing:4.163856pt;}
.ws1d_c00288{word-spacing:5.371312pt;}
.ws1e_c00288{word-spacing:5.408656pt;}
.ws10_c00288{word-spacing:5.614048pt;}
.ws12_c00288{word-spacing:5.744752pt;}
.wsb_c00288{word-spacing:5.757200pt;}
.wsa_c00288{word-spacing:5.782096pt;}
.ws11_c00288{word-spacing:5.794544pt;}
.wsc_c00288{word-spacing:7.375440pt;}
.ws23_c00288{word-spacing:7.699088pt;}
.ws15_c00288{word-spacing:10.574576pt;}
.ws14_c00288{word-spacing:12.815216pt;}
.ws25_c00288{word-spacing:15.068304pt;}
.ws1b_c00288{word-spacing:17.638816pt;}
.ws13_c00288{word-spacing:20.483184pt;}
.ws1c_c00288{word-spacing:22.076528pt;}
.ws7_c00288{word-spacing:23.059920pt;}
.ws20_c00288{word-spacing:26.271504pt;}
.ws24_c00288{word-spacing:30.093040pt;}
.ws1f_c00288{word-spacing:40.070112pt;}
.ws26_c00288{word-spacing:51.528496pt;}
.ws18_c00288{word-spacing:59.208912pt;}
.ws1a_c00288{word-spacing:62.725472pt;}
.ws19_c00288{word-spacing:133.430112pt;}
._3_c00288{margin-left:-50.626016pt;}
._1_c00288{margin-left:-1.002064pt;}
._0_c00288{width:1.120320pt;}
._2_c00288{width:352.358128pt;}
.fs0_c00288{font-size:62.240000pt;}
.y0_c00288{bottom:0.000000pt;}
.y2_c00288{bottom:97.547527pt;}
.y1_c00288{bottom:115.387067pt;}
.y26_c00288{bottom:178.027200pt;}
.y20_c00288{bottom:196.187200pt;}
.y25_c00288{bottom:222.907067pt;}
.y1f_c00288{bottom:222.987067pt;}
.y1e_c00288{bottom:249.867067pt;}
.y1d_c00288{bottom:276.667067pt;}
.y1c_c00288{bottom:303.547067pt;}
.y24_c00288{bottom:330.347067pt;}
.y1b_c00288{bottom:348.506447pt;}
.y23_c00288{bottom:375.307067pt;}
.y1a_c00288{bottom:393.467067pt;}
.y22_c00288{bottom:420.267067pt;}
.y19_c00288{bottom:420.347067pt;}
.y18_c00288{bottom:447.227067pt;}
.y17_c00288{bottom:474.027067pt;}
.y21_c00288{bottom:500.907067pt;}
.y16_c00288{bottom:519.387067pt;}
.y15_c00288{bottom:556.427067pt;}
.y14_c00288{bottom:584.424595pt;}
.y13_c00288{bottom:602.345047pt;}
.y12_c00288{bottom:620.265499pt;}
.y11_c00288{bottom:638.105039pt;}
.y10_c00288{bottom:656.025491pt;}
.yf_c00288{bottom:673.945943pt;}
.ye_c00288{bottom:691.785483pt;}
.yd_c00288{bottom:718.665383pt;}
.yc_c00288{bottom:745.465927pt;}
.yb_c00288{bottom:772.345827pt;}
.ya_c00288{bottom:799.146371pt;}
.y9_c00288{bottom:826.026271pt;}
.y8_c00288{bottom:852.906171pt;}
.y7_c00288{bottom:879.706715pt;}
.y6_c00288{bottom:906.586615pt;}
.y5_c00288{bottom:933.387159pt;}
.y4_c00288{bottom:960.267059pt;}
.y3_c00288{bottom:987.067603pt;}
.h3_c00288{height:55.645234pt;}
.h1_c00288{height:55.797187pt;}
.h2_c00288{height:56.192266pt;}
.h4_c00288{height:64.914375pt;}
.h0_c00288{height:1122.666667pt;}
.w0_c00288{width:793.333333pt;}
.x0_c00288{left:0.000000pt;}
.x2_c00288{left:73.520052pt;}
.x4_c00288{left:135.680000pt;}
.x3_c00288{left:154.400000pt;}
.x1_c00288{left:383.760000pt;}
.x5_c00288{left:420.000000pt;}
.x6_c00288{left:421.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_66e100d107266b86ff6bcc1a.woff2')format("woff");}.ff1_c00289{font-family:ff1_c00289;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00289;src:url('chunks/assets/font_941c49c6495bff92d17f4845.woff2')format("woff");}.ff2_c00289{font-family:ff2_c00289;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00289;src:url('chunks/assets/font_9b0cd2876ee4757abea5776d.woff2')format("woff");}.ff3_c00289{font-family:ff3_c00289;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00289;src:url('chunks/assets/font_53b4210e3da0de25e5b25ba1.woff2')format("woff");}.ff4_c00289{font-family:ff4_c00289;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00289;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff5_c00289{font-family:ff5_c00289;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00289;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff6_c00289{font-family:ff6_c00289;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00289{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00289{vertical-align:-14.760000px;}
.v0_c00289{vertical-align:0.000000px;}
.v1_c00289{vertical-align:32.040000px;}
.ls11_c00289{letter-spacing:-0.181246px;}
.ls1f_c00289{letter-spacing:-0.163706px;}
.ls24_c00289{letter-spacing:-0.140319px;}
.ls12_c00289{letter-spacing:-0.134473px;}
.ls21_c00289{letter-spacing:-0.128626px;}
.ls17_c00289{letter-spacing:-0.116933px;}
.ls15_c00289{letter-spacing:-0.111086px;}
.ls1e_c00289{letter-spacing:-0.099393px;}
.ls23_c00289{letter-spacing:-0.093546px;}
.ls1c_c00289{letter-spacing:-0.081853px;}
.ls22_c00289{letter-spacing:-0.076006px;}
.ls10_c00289{letter-spacing:-0.075619px;}
.lse_c00289{letter-spacing:-0.070020px;}
.ls6_c00289{letter-spacing:-0.063018px;}
.ls16_c00289{letter-spacing:-0.058466px;}
.ls19_c00289{letter-spacing:-0.052620px;}
.lsf_c00289{letter-spacing:-0.049014px;}
.lsd_c00289{letter-spacing:-0.042012px;}
.ls1a_c00289{letter-spacing:-0.040926px;}
.lsb_c00289{letter-spacing:-0.035010px;}
.ls1d_c00289{letter-spacing:-0.029233px;}
.ls8_c00289{letter-spacing:-0.028008px;}
.lsa_c00289{letter-spacing:-0.021006px;}
.ls9_c00289{letter-spacing:-0.014004px;}
.lsc_c00289{letter-spacing:-0.007002px;}
.ls13_c00289{letter-spacing:-0.005847px;}
.ls7_c00289{letter-spacing:0.000000px;}
.ls0_c00289{letter-spacing:0.007002px;}
.ls1_c00289{letter-spacing:0.014004px;}
.ls3_c00289{letter-spacing:0.023281px;}
.ls2_c00289{letter-spacing:0.042012px;}
.ls26_c00289{letter-spacing:0.122779px;}
.ls4_c00289{letter-spacing:0.333258px;}
.ls1b_c00289{letter-spacing:0.356645px;}
.ls20_c00289{letter-spacing:0.374185px;}
.ls25_c00289{letter-spacing:0.438498px;}
.ls18_c00289{letter-spacing:0.444345px;}
.ls14_c00289{letter-spacing:0.485271px;}
.ls27_c00289{letter-spacing:0.537891px;}
.ls5_c00289{letter-spacing:9.366317px;}
.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;}
}
.ws2_c00289{word-spacing:-58.466400px;}
.ws3_c00289{word-spacing:-16.031487px;}
.ws0_c00289{word-spacing:-12.967628px;}
.ws1_c00289{word-spacing:-10.397640px;}
.ws2e_c00289{word-spacing:-0.473578px;}
.ws38_c00289{word-spacing:-0.362492px;}
.ws5_c00289{word-spacing:-0.343098px;}
.ws4_c00289{word-spacing:0.000000px;}
.ws3b_c00289{word-spacing:0.105240px;}
.ws37_c00289{word-spacing:0.111086px;}
.wse_c00289{word-spacing:0.357102px;}
.ws3a_c00289{word-spacing:0.450191px;}
.ws39_c00289{word-spacing:0.502811px;}
.ws3c_c00289{word-spacing:0.514504px;}
.ws19_c00289{word-spacing:1.106316px;}
.ws18_c00289{word-spacing:1.113318px;}
.ws15_c00289{word-spacing:1.428408px;}
.ws1c_c00289{word-spacing:1.820520px;}
.ws1d_c00289{word-spacing:3.234924px;}
.ws16_c00289{word-spacing:3.571020px;}
.ws9_c00289{word-spacing:3.606030px;}
.ws34_c00289{word-spacing:3.975715px;}
.ws33_c00289{word-spacing:4.016642px;}
.ws29_c00289{word-spacing:4.327236px;}
.ws35_c00289{word-spacing:4.414213px;}
.ws14_c00289{word-spacing:4.649328px;}
.ws2f_c00289{word-spacing:5.109963px;}
.ws12_c00289{word-spacing:5.377536px;}
.ws28_c00289{word-spacing:5.398542px;}
.wsd_c00289{word-spacing:5.419548px;}
.ws30_c00289{word-spacing:5.530921px;}
.ws1e_c00289{word-spacing:6.504858px;}
.ws11_c00289{word-spacing:7.569162px;}
.ws3f_c00289{word-spacing:8.115136px;}
.ws1b_c00289{word-spacing:8.619462px;}
.wsc_c00289{word-spacing:9.004572px;}
.ws3d_c00289{word-spacing:9.249384px;}
.ws17_c00289{word-spacing:9.389682px;}
.ws3e_c00289{word-spacing:9.430630px;}
.ws36_c00289{word-spacing:10.120534px;}
.ws2c_c00289{word-spacing:10.225773px;}
.ws2d_c00289{word-spacing:10.459639px;}
.ws2b_c00289{word-spacing:10.635038px;}
.ws24_c00289{word-spacing:10.811088px;}
.ws25_c00289{word-spacing:11.525292px;}
.ws32_c00289{word-spacing:12.891841px;}
.ws31_c00289{word-spacing:13.108167px;}
.ws23_c00289{word-spacing:14.795226px;}
.ws13_c00289{word-spacing:15.145326px;}
.ws6_c00289{word-spacing:15.838524px;}
.ws2a_c00289{word-spacing:16.860816px;}
.ws26_c00289{word-spacing:16.944840px;}
.ws8_c00289{word-spacing:19.066446px;}
.ws7_c00289{word-spacing:19.080450px;}
.ws1f_c00289{word-spacing:19.801656px;}
.ws21_c00289{word-spacing:20.935980px;}
.ws1a_c00289{word-spacing:28.092024px;}
.ws20_c00289{word-spacing:31.677048px;}
.wsf_c00289{word-spacing:39.953412px;}
.ws10_c00289{word-spacing:52.914114px;}
.ws22_c00289{word-spacing:52.935120px;}
.wsa_c00289{word-spacing:54.013428px;}
.ws27_c00289{word-spacing:65.160612px;}
.wsb_c00289{word-spacing:111.618882px;}
._3_c00289{margin-left:-2.709774px;}
._1_c00289{margin-left:-1.085310px;}
._0_c00289{width:1.344384px;}
._4_c00289{width:3.928942px;}
._2_c00289{width:5.930694px;}
.fc0_c00289{color:rgb(0,0,0);}
.fs2_c00289{font-size:37.809600px;}
.fs1_c00289{font-size:46.562400px;}
.fs3_c00289{font-size:58.466400px;}
.fs0_c00289{font-size:70.020000px;}
.y0_c00289{bottom:0.000000px;}
.y2_c00289{bottom:109.740968px;}
.y1_c00289{bottom:129.810450px;}
.y37_c00289{bottom:149.429548px;}
.y36_c00289{bottom:167.250107px;}
.y35_c00289{bottom:188.940450px;}
.y34_c00289{bottom:203.070107px;}
.y33_c00289{bottom:224.670450px;}
.y32_c00289{bottom:238.890453px;}
.y31_c00289{bottom:256.620388px;}
.y30_c00289{bottom:274.709893px;}
.y2f_c00289{bottom:292.439828px;}
.y2e_c00289{bottom:310.349548px;}
.y2d_c00289{bottom:328.349891px;}
.y2c_c00289{bottom:349.860450px;}
.y2b_c00289{bottom:364.530450px;}
.y19_c00289{bottom:404.670450px;}
.y18_c00289{bottom:434.820450px;}
.y17_c00289{bottom:465.060450px;}
.y16_c00289{bottom:495.210600px;}
.y15_c00289{bottom:525.450600px;}
.y14_c00289{bottom:555.600450px;}
.y13_c00289{bottom:585.840450px;}
.y2a_c00289{bottom:606.180450px;}
.y12_c00289{bottom:615.990450px;}
.y29_c00289{bottom:636.420450px;}
.y11_c00289{bottom:646.230450px;}
.y28_c00289{bottom:666.660450px;}
.y10_c00289{bottom:676.380450px;}
.y27_c00289{bottom:696.810450px;}
.yf_c00289{bottom:706.620450px;}
.y26_c00289{bottom:727.050450px;}
.ye_c00289{bottom:736.770450px;}
.y25_c00289{bottom:757.200450px;}
.yd_c00289{bottom:767.010450px;}
.y24_c00289{bottom:807.690450px;}
.yc_c00289{bottom:817.500450px;}
.y23_c00289{bottom:838.020450px;}
.yb_c00289{bottom:847.830450px;}
.y22_c00289{bottom:868.170450px;}
.ya_c00289{bottom:877.980450px;}
.y21_c00289{bottom:898.410450px;}
.y9_c00289{bottom:908.220450px;}
.y20_c00289{bottom:928.560450px;}
.y8_c00289{bottom:938.370450px;}
.y1f_c00289{bottom:958.800450px;}
.y7_c00289{bottom:968.610450px;}
.y1e_c00289{bottom:988.950450px;}
.y6_c00289{bottom:998.760450px;}
.y1d_c00289{bottom:1019.190450px;}
.y5_c00289{bottom:1029.000450px;}
.y1c_c00289{bottom:1049.340450px;}
.y4_c00289{bottom:1059.150450px;}
.y1b_c00289{bottom:1079.580450px;}
.y3_c00289{bottom:1109.640450px;}
.y1a_c00289{bottom:1109.730450px;}
.h4_c00289{height:39.338549px;}
.h6_c00289{height:39.698549px;}
.h5_c00289{height:54.098549px;}
.h2_c00289{height:62.600889px;}
.h1_c00289{height:62.771836px;}
.h3_c00289{height:73.668786px;}
.h0_c00289{height:1263.000000px;}
.w0_c00289{width:892.500000px;}
.x0_c00289{left:0.000000px;}
.x2_c00289{left:82.710059px;}
.x3_c00289{left:152.640000px;}
.x1_c00289{left:431.730000px;}
.x5_c00289{left:472.500000px;}
.x4_c00289{left:474.660000px;}
@media print{
.v2_c00289{vertical-align:-13.120000pt;}
.v0_c00289{vertical-align:0.000000pt;}
.v1_c00289{vertical-align:28.480000pt;}
.ls11_c00289{letter-spacing:-0.161107pt;}
.ls1f_c00289{letter-spacing:-0.145516pt;}
.ls24_c00289{letter-spacing:-0.124728pt;}
.ls12_c00289{letter-spacing:-0.119531pt;}
.ls21_c00289{letter-spacing:-0.114334pt;}
.ls17_c00289{letter-spacing:-0.103940pt;}
.ls15_c00289{letter-spacing:-0.098743pt;}
.ls1e_c00289{letter-spacing:-0.088349pt;}
.ls23_c00289{letter-spacing:-0.083152pt;}
.ls1c_c00289{letter-spacing:-0.072758pt;}
.ls22_c00289{letter-spacing:-0.067561pt;}
.ls10_c00289{letter-spacing:-0.067217pt;}
.lse_c00289{letter-spacing:-0.062240pt;}
.ls6_c00289{letter-spacing:-0.056016pt;}
.ls16_c00289{letter-spacing:-0.051970pt;}
.ls19_c00289{letter-spacing:-0.046773pt;}
.lsf_c00289{letter-spacing:-0.043568pt;}
.lsd_c00289{letter-spacing:-0.037344pt;}
.ls1a_c00289{letter-spacing:-0.036379pt;}
.lsb_c00289{letter-spacing:-0.031120pt;}
.ls1d_c00289{letter-spacing:-0.025985pt;}
.ls8_c00289{letter-spacing:-0.024896pt;}
.lsa_c00289{letter-spacing:-0.018672pt;}
.ls9_c00289{letter-spacing:-0.012448pt;}
.lsc_c00289{letter-spacing:-0.006224pt;}
.ls13_c00289{letter-spacing:-0.005197pt;}
.ls7_c00289{letter-spacing:0.000000pt;}
.ls0_c00289{letter-spacing:0.006224pt;}
.ls1_c00289{letter-spacing:0.012448pt;}
.ls3_c00289{letter-spacing:0.020694pt;}
.ls2_c00289{letter-spacing:0.037344pt;}
.ls26_c00289{letter-spacing:0.109137pt;}
.ls4_c00289{letter-spacing:0.296230pt;}
.ls1b_c00289{letter-spacing:0.317018pt;}
.ls20_c00289{letter-spacing:0.332609pt;}
.ls25_c00289{letter-spacing:0.389776pt;}
.ls18_c00289{letter-spacing:0.394973pt;}
.ls14_c00289{letter-spacing:0.431352pt;}
.ls27_c00289{letter-spacing:0.478125pt;}
.ls5_c00289{letter-spacing:8.325615pt;}
.ws2_c00289{word-spacing:-51.970133pt;}
.ws3_c00289{word-spacing:-14.250211pt;}
.ws0_c00289{word-spacing:-11.526781pt;}
.ws1_c00289{word-spacing:-9.242347pt;}
.ws2e_c00289{word-spacing:-0.420958pt;}
.ws38_c00289{word-spacing:-0.322215pt;}
.ws5_c00289{word-spacing:-0.304976pt;}
.ws4_c00289{word-spacing:0.000000pt;}
.ws3b_c00289{word-spacing:0.093546pt;}
.ws37_c00289{word-spacing:0.098743pt;}
.wse_c00289{word-spacing:0.317424pt;}
.ws3a_c00289{word-spacing:0.400170pt;}
.ws39_c00289{word-spacing:0.446943pt;}
.ws3c_c00289{word-spacing:0.457337pt;}
.ws19_c00289{word-spacing:0.983392pt;}
.ws18_c00289{word-spacing:0.989616pt;}
.ws15_c00289{word-spacing:1.269696pt;}
.ws1c_c00289{word-spacing:1.618240pt;}
.ws1d_c00289{word-spacing:2.875488pt;}
.ws16_c00289{word-spacing:3.174240pt;}
.ws9_c00289{word-spacing:3.205360pt;}
.ws34_c00289{word-spacing:3.533969pt;}
.ws33_c00289{word-spacing:3.570348pt;}
.ws29_c00289{word-spacing:3.846432pt;}
.ws35_c00289{word-spacing:3.923745pt;}
.ws14_c00289{word-spacing:4.132736pt;}
.ws2f_c00289{word-spacing:4.542190pt;}
.ws12_c00289{word-spacing:4.780032pt;}
.ws28_c00289{word-spacing:4.798704pt;}
.wsd_c00289{word-spacing:4.817376pt;}
.ws30_c00289{word-spacing:4.916375pt;}
.ws1e_c00289{word-spacing:5.782096pt;}
.ws11_c00289{word-spacing:6.728144pt;}
.ws3f_c00289{word-spacing:7.213455pt;}
.ws1b_c00289{word-spacing:7.661744pt;}
.wsc_c00289{word-spacing:8.004064pt;}
.ws3d_c00289{word-spacing:8.221675pt;}
.ws17_c00289{word-spacing:8.346384pt;}
.ws3e_c00289{word-spacing:8.382783pt;}
.ws36_c00289{word-spacing:8.996030pt;}
.ws2c_c00289{word-spacing:9.089576pt;}
.ws2d_c00289{word-spacing:9.297457pt;}
.ws2b_c00289{word-spacing:9.453367pt;}
.ws24_c00289{word-spacing:9.609856pt;}
.ws25_c00289{word-spacing:10.244704pt;}
.ws32_c00289{word-spacing:11.459414pt;}
.ws31_c00289{word-spacing:11.651704pt;}
.ws23_c00289{word-spacing:13.151312pt;}
.ws13_c00289{word-spacing:13.462512pt;}
.ws6_c00289{word-spacing:14.078688pt;}
.ws2a_c00289{word-spacing:14.987392pt;}
.ws26_c00289{word-spacing:15.062080pt;}
.ws8_c00289{word-spacing:16.947952pt;}
.ws7_c00289{word-spacing:16.960400pt;}
.ws1f_c00289{word-spacing:17.601472pt;}
.ws21_c00289{word-spacing:18.609760pt;}
.ws1a_c00289{word-spacing:24.970688pt;}
.ws20_c00289{word-spacing:28.157376pt;}
.wsf_c00289{word-spacing:35.514144pt;}
.ws10_c00289{word-spacing:47.034768pt;}
.ws22_c00289{word-spacing:47.053440pt;}
.wsa_c00289{word-spacing:48.011936pt;}
.ws27_c00289{word-spacing:57.920544pt;}
.wsb_c00289{word-spacing:99.216784pt;}
._3_c00289{margin-left:-2.408688pt;}
._1_c00289{margin-left:-0.964720pt;}
._0_c00289{width:1.195008pt;}
._4_c00289{width:3.492393pt;}
._2_c00289{width:5.271728pt;}
.fs2_c00289{font-size:33.608533pt;}
.fs1_c00289{font-size:41.388800pt;}
.fs3_c00289{font-size:51.970133pt;}
.fs0_c00289{font-size:62.240000pt;}
.y0_c00289{bottom:0.000000pt;}
.y2_c00289{bottom:97.547527pt;}
.y1_c00289{bottom:115.387067pt;}
.y37_c00289{bottom:132.826265pt;}
.y36_c00289{bottom:148.666762pt;}
.y35_c00289{bottom:167.947067pt;}
.y34_c00289{bottom:180.506762pt;}
.y33_c00289{bottom:199.707067pt;}
.y32_c00289{bottom:212.347069pt;}
.y31_c00289{bottom:228.107012pt;}
.y30_c00289{bottom:244.186571pt;}
.y2f_c00289{bottom:259.946514pt;}
.y2e_c00289{bottom:275.866265pt;}
.y2d_c00289{bottom:291.866570pt;}
.y2c_c00289{bottom:310.987067pt;}
.y2b_c00289{bottom:324.027067pt;}
.y19_c00289{bottom:359.707067pt;}
.y18_c00289{bottom:386.507067pt;}
.y17_c00289{bottom:413.387067pt;}
.y16_c00289{bottom:440.187200pt;}
.y15_c00289{bottom:467.067200pt;}
.y14_c00289{bottom:493.867067pt;}
.y13_c00289{bottom:520.747067pt;}
.y2a_c00289{bottom:538.827067pt;}
.y12_c00289{bottom:547.547067pt;}
.y29_c00289{bottom:565.707067pt;}
.y11_c00289{bottom:574.427067pt;}
.y28_c00289{bottom:592.587067pt;}
.y10_c00289{bottom:601.227067pt;}
.y27_c00289{bottom:619.387067pt;}
.yf_c00289{bottom:628.107067pt;}
.y26_c00289{bottom:646.267067pt;}
.ye_c00289{bottom:654.907067pt;}
.y25_c00289{bottom:673.067067pt;}
.yd_c00289{bottom:681.787067pt;}
.y24_c00289{bottom:717.947067pt;}
.yc_c00289{bottom:726.667067pt;}
.y23_c00289{bottom:744.907067pt;}
.yb_c00289{bottom:753.627067pt;}
.y22_c00289{bottom:771.707067pt;}
.ya_c00289{bottom:780.427067pt;}
.y21_c00289{bottom:798.587067pt;}
.y9_c00289{bottom:807.307067pt;}
.y20_c00289{bottom:825.387067pt;}
.y8_c00289{bottom:834.107067pt;}
.y1f_c00289{bottom:852.267067pt;}
.y7_c00289{bottom:860.987067pt;}
.y1e_c00289{bottom:879.067067pt;}
.y6_c00289{bottom:887.787067pt;}
.y1d_c00289{bottom:905.947067pt;}
.y5_c00289{bottom:914.667067pt;}
.y1c_c00289{bottom:932.747067pt;}
.y4_c00289{bottom:941.467067pt;}
.y1b_c00289{bottom:959.627067pt;}
.y3_c00289{bottom:986.347067pt;}
.y1a_c00289{bottom:986.427067pt;}
.h4_c00289{height:34.967599pt;}
.h6_c00289{height:35.287599pt;}
.h5_c00289{height:48.087599pt;}
.h2_c00289{height:55.645234pt;}
.h1_c00289{height:55.797187pt;}
.h3_c00289{height:65.483366pt;}
.h0_c00289{height:1122.666667pt;}
.w0_c00289{width:793.333333pt;}
.x0_c00289{left:0.000000pt;}
.x2_c00289{left:73.520052pt;}
.x3_c00289{left:135.680000pt;}
.x1_c00289{left:383.760000pt;}
.x5_c00289{left:420.000000pt;}
.x4_c00289{left:421.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63ac810012d0f5785c7ad362.woff2')format("woff");}.ff1_c00290{font-family:ff1_c00290;line-height:1.106934;font-style:normal;font-weight:normal;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_8c2cadde5b88bfc0b4e6a6ad.woff2')format("woff");}.ff2_c00290{font-family:ff2_c00290;line-height:1.104492;font-style:normal;font-weight:normal;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_165b9fc362aae14ec68d8619.woff2')format("woff");}.ff3_c00290{font-family:ff3_c00290;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00290{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00290{vertical-align:0.000000px;}
.v1_c00290{vertical-align:32.040000px;}
.lsf_c00290{letter-spacing:-0.070020px;}
.ls6_c00290{letter-spacing:-0.063018px;}
.lsa_c00290{letter-spacing:-0.049014px;}
.lse_c00290{letter-spacing:-0.042012px;}
.lsd_c00290{letter-spacing:-0.035010px;}
.lsb_c00290{letter-spacing:-0.028008px;}
.lsc_c00290{letter-spacing:-0.021006px;}
.ls8_c00290{letter-spacing:-0.014004px;}
.ls9_c00290{letter-spacing:-0.007002px;}
.ls7_c00290{letter-spacing:0.000000px;}
.ls1_c00290{letter-spacing:0.007002px;}
.ls0_c00290{letter-spacing:0.014004px;}
.ls4_c00290{letter-spacing:0.023281px;}
.ls3_c00290{letter-spacing:0.028008px;}
.ls2_c00290{letter-spacing:0.041906px;}
.ls5_c00290{letter-spacing:0.056016px;}
.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:-12.986253px;}
.ws1_c00290{word-spacing:-12.967628px;}
.ws1b_c00290{word-spacing:-0.070020px;}
.ws6_c00290{word-spacing:-0.021006px;}
.wsa_c00290{word-spacing:-0.007002px;}
.ws2_c00290{word-spacing:0.000000px;}
.ws15_c00290{word-spacing:0.021006px;}
.ws1a_c00290{word-spacing:0.056016px;}
.ws19_c00290{word-spacing:0.357102px;}
.ws1c_c00290{word-spacing:0.392112px;}
.wsc_c00290{word-spacing:0.721206px;}
.wsf_c00290{word-spacing:0.728208px;}
.ws12_c00290{word-spacing:3.227922px;}
.wsb_c00290{word-spacing:3.276936px;}
.ws4_c00290{word-spacing:6.105744px;}
.ws13_c00290{word-spacing:9.368676px;}
.ws11_c00290{word-spacing:11.931408px;}
.ws14_c00290{word-spacing:13.695912px;}
.wsd_c00290{word-spacing:15.852528px;}
.ws17_c00290{word-spacing:18.380250px;}
.ws10_c00290{word-spacing:21.559158px;}
.ws16_c00290{word-spacing:24.871104px;}
.ws3_c00290{word-spacing:26.614602px;}
.ws5_c00290{word-spacing:28.799226px;}
.ws18_c00290{word-spacing:30.983850px;}
.ws8_c00290{word-spacing:40.310514px;}
.ws9_c00290{word-spacing:42.467130px;}
.wse_c00290{word-spacing:75.950694px;}
.ws7_c00290{word-spacing:118.788930px;}
._2_c00290{margin-left:-25.193196px;}
._0_c00290{margin-left:-1.449414px;}
._1_c00290{width:1.344384px;}
.fc0_c00290{color:rgb(0,0,0);}
.fs1_c00290{font-size:46.562400px;}
.fs0_c00290{font-size:70.020000px;}
.y0_c00290{bottom:0.000000px;}
.y2_c00290{bottom:109.740968px;}
.y1_c00290{bottom:129.810450px;}
.y20_c00290{bottom:192.539563px;}
.y1f_c00290{bottom:222.779451px;}
.y1e_c00290{bottom:252.930063px;}
.y1d_c00290{bottom:283.169951px;}
.y1c_c00290{bottom:313.409838px;}
.y1b_c00290{bottom:343.560450px;}
.y1a_c00290{bottom:374.430450px;}
.y19_c00290{bottom:404.670450px;}
.y18_c00290{bottom:434.820450px;}
.y17_c00290{bottom:465.060450px;}
.y16_c00290{bottom:495.210600px;}
.y15_c00290{bottom:545.790450px;}
.y14_c00290{bottom:576.030450px;}
.y13_c00290{bottom:606.180450px;}
.y12_c00290{bottom:636.420450px;}
.y11_c00290{bottom:666.660450px;}
.y10_c00290{bottom:696.810450px;}
.yf_c00290{bottom:727.050450px;}
.ye_c00290{bottom:757.200450px;}
.yd_c00290{bottom:787.440450px;}
.yc_c00290{bottom:817.590450px;}
.yb_c00290{bottom:847.830450px;}
.ya_c00290{bottom:898.320450px;}
.y9_c00290{bottom:928.560450px;}
.y8_c00290{bottom:958.800450px;}
.y7_c00290{bottom:988.950450px;}
.y6_c00290{bottom:1019.190450px;}
.y5_c00290{bottom:1049.340450px;}
.y4_c00290{bottom:1079.580450px;}
.y3_c00290{bottom:1109.730450px;}
.h2_c00290{height:62.600889px;}
.h1_c00290{height:62.771836px;}
.h5_c00290{height:63.216299px;}
.h3_c00290{height:73.668786px;}
.h4_c00290{height:74.028786px;}
.h0_c00290{height:1263.000000px;}
.w0_c00290{width:892.500000px;}
.x0_c00290{left:0.000000px;}
.x2_c00290{left:82.710059px;}
.x3_c00290{left:152.640000px;}
.x5_c00290{left:304.110441px;}
.x1_c00290{left:431.730000px;}
.x4_c00290{left:454.860000px;}
@media print{
.v0_c00290{vertical-align:0.000000pt;}
.v1_c00290{vertical-align:28.480000pt;}
.lsf_c00290{letter-spacing:-0.062240pt;}
.ls6_c00290{letter-spacing:-0.056016pt;}
.lsa_c00290{letter-spacing:-0.043568pt;}
.lse_c00290{letter-spacing:-0.037344pt;}
.lsd_c00290{letter-spacing:-0.031120pt;}
.lsb_c00290{letter-spacing:-0.024896pt;}
.lsc_c00290{letter-spacing:-0.018672pt;}
.ls8_c00290{letter-spacing:-0.012448pt;}
.ls9_c00290{letter-spacing:-0.006224pt;}
.ls7_c00290{letter-spacing:0.000000pt;}
.ls1_c00290{letter-spacing:0.006224pt;}
.ls0_c00290{letter-spacing:0.012448pt;}
.ls4_c00290{letter-spacing:0.020694pt;}
.ls3_c00290{letter-spacing:0.024896pt;}
.ls2_c00290{letter-spacing:0.037250pt;}
.ls5_c00290{letter-spacing:0.049792pt;}
.ws0_c00290{word-spacing:-11.543336pt;}
.ws1_c00290{word-spacing:-11.526781pt;}
.ws1b_c00290{word-spacing:-0.062240pt;}
.ws6_c00290{word-spacing:-0.018672pt;}
.wsa_c00290{word-spacing:-0.006224pt;}
.ws2_c00290{word-spacing:0.000000pt;}
.ws15_c00290{word-spacing:0.018672pt;}
.ws1a_c00290{word-spacing:0.049792pt;}
.ws19_c00290{word-spacing:0.317424pt;}
.ws1c_c00290{word-spacing:0.348544pt;}
.wsc_c00290{word-spacing:0.641072pt;}
.wsf_c00290{word-spacing:0.647296pt;}
.ws12_c00290{word-spacing:2.869264pt;}
.wsb_c00290{word-spacing:2.912832pt;}
.ws4_c00290{word-spacing:5.427328pt;}
.ws13_c00290{word-spacing:8.327712pt;}
.ws11_c00290{word-spacing:10.605696pt;}
.ws14_c00290{word-spacing:12.174144pt;}
.wsd_c00290{word-spacing:14.091136pt;}
.ws17_c00290{word-spacing:16.338000pt;}
.ws10_c00290{word-spacing:19.163696pt;}
.ws16_c00290{word-spacing:22.107648pt;}
.ws3_c00290{word-spacing:23.657424pt;}
.ws5_c00290{word-spacing:25.599312pt;}
.ws18_c00290{word-spacing:27.541200pt;}
.ws8_c00290{word-spacing:35.831568pt;}
.ws9_c00290{word-spacing:37.748560pt;}
.wse_c00290{word-spacing:67.511728pt;}
.ws7_c00290{word-spacing:105.590160pt;}
._2_c00290{margin-left:-22.393952pt;}
._0_c00290{margin-left:-1.288368pt;}
._1_c00290{width:1.195008pt;}
.fs1_c00290{font-size:41.388800pt;}
.fs0_c00290{font-size:62.240000pt;}
.y0_c00290{bottom:0.000000pt;}
.y2_c00290{bottom:97.547527pt;}
.y1_c00290{bottom:115.387067pt;}
.y20_c00290{bottom:171.146279pt;}
.y1f_c00290{bottom:198.026179pt;}
.y1e_c00290{bottom:224.826723pt;}
.y1d_c00290{bottom:251.706623pt;}
.y1c_c00290{bottom:278.586523pt;}
.y1b_c00290{bottom:305.387067pt;}
.y1a_c00290{bottom:332.827067pt;}
.y19_c00290{bottom:359.707067pt;}
.y18_c00290{bottom:386.507067pt;}
.y17_c00290{bottom:413.387067pt;}
.y16_c00290{bottom:440.187200pt;}
.y15_c00290{bottom:485.147067pt;}
.y14_c00290{bottom:512.027067pt;}
.y13_c00290{bottom:538.827067pt;}
.y12_c00290{bottom:565.707067pt;}
.y11_c00290{bottom:592.587067pt;}
.y10_c00290{bottom:619.387067pt;}
.yf_c00290{bottom:646.267067pt;}
.ye_c00290{bottom:673.067067pt;}
.yd_c00290{bottom:699.947067pt;}
.yc_c00290{bottom:726.747067pt;}
.yb_c00290{bottom:753.627067pt;}
.ya_c00290{bottom:798.507067pt;}
.y9_c00290{bottom:825.387067pt;}
.y8_c00290{bottom:852.267067pt;}
.y7_c00290{bottom:879.067067pt;}
.y6_c00290{bottom:905.947067pt;}
.y5_c00290{bottom:932.747067pt;}
.y4_c00290{bottom:959.627067pt;}
.y3_c00290{bottom:986.427067pt;}
.h2_c00290{height:55.645234pt;}
.h1_c00290{height:55.797187pt;}
.h5_c00290{height:56.192266pt;}
.h3_c00290{height:65.483366pt;}
.h4_c00290{height:65.803366pt;}
.h0_c00290{height:1122.666667pt;}
.w0_c00290{width:793.333333pt;}
.x0_c00290{left:0.000000pt;}
.x2_c00290{left:73.520052pt;}
.x3_c00290{left:135.680000pt;}
.x5_c00290{left:270.320392pt;}
.x1_c00290{left:383.760000pt;}
.x4_c00290{left:404.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7b3c0ee8bca0492adf847b6f.woff2')format("woff");}.ff1_c00291{font-family:ff1_c00291;line-height:1.106934;font-style:normal;font-weight:normal;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_89030fb6e4ce1dd8f873a44c.woff2')format("woff");}.ff2_c00291{font-family:ff2_c00291;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00291{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00291{vertical-align:0.000000px;}
.ls3_c00291{letter-spacing:-0.063018px;}
.ls5_c00291{letter-spacing:-0.042012px;}
.ls6_c00291{letter-spacing:-0.028008px;}
.lsa_c00291{letter-spacing:-0.021006px;}
.ls8_c00291{letter-spacing:-0.014004px;}
.ls7_c00291{letter-spacing:-0.007002px;}
.ls4_c00291{letter-spacing:0.000000px;}
.ls1_c00291{letter-spacing:0.007002px;}
.ls2_c00291{letter-spacing:0.021006px;}
.ls0_c00291{letter-spacing:0.084024px;}
.ls9_c00291{letter-spacing:0.196056px;}
.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:-19.549584px;}
.wsd_c00291{word-spacing:-0.035010px;}
.ws1_c00291{word-spacing:0.000000px;}
.ws10_c00291{word-spacing:0.007002px;}
.ws7_c00291{word-spacing:0.014004px;}
.wse_c00291{word-spacing:0.147042px;}
.wsc_c00291{word-spacing:1.078308px;}
.ws5_c00291{word-spacing:2.149614px;}
.ws8_c00291{word-spacing:3.578022px;}
.ws3_c00291{word-spacing:5.776650px;}
.wsf_c00291{word-spacing:6.833952px;}
.ws9_c00291{word-spacing:7.198056px;}
.ws2_c00291{word-spacing:9.025578px;}
.wsb_c00291{word-spacing:11.504286px;}
.wsa_c00291{word-spacing:11.511288px;}
.ws4_c00291{word-spacing:19.094454px;}
.ws6_c00291{word-spacing:53.642322px;}
._0_c00291{margin-left:-1.512432px;}
._1_c00291{width:1.043298px;}
.fc0_c00291{color:rgb(0,0,0);}
.fs0_c00291{font-size:70.020000px;}
.y0_c00291{bottom:0.000000px;}
.y2_c00291{bottom:109.740968px;}
.y1_c00291{bottom:129.810450px;}
.y16_c00291{bottom:271.014672px;}
.y15_c00291{bottom:301.165284px;}
.y14_c00291{bottom:331.405172px;}
.y13_c00291{bottom:361.555784px;}
.y12_c00291{bottom:391.795671px;}
.y11_c00291{bottom:421.946283px;}
.y10_c00291{bottom:452.186171px;}
.yf_c00291{bottom:482.336783px;}
.ye_c00291{bottom:512.576670px;}
.yd_c00291{bottom:542.727282px;}
.yc_c00291{bottom:572.877894px;}
.yb_c00291{bottom:603.028506px;}
.ya_c00291{bottom:633.268394px;}
.y9_c00291{bottom:663.508281px;}
.y8_c00291{bottom:693.658893px;}
.y7_c00291{bottom:723.898781px;}
.y6_c00291{bottom:754.049393px;}
.y5_c00291{bottom:784.289280px;}
.y4_c00291{bottom:814.439892px;}
.y3_c00291{bottom:840.900450px;}
.h1_c00291{height:62.771836px;}
.h2_c00291{height:63.216299px;}
.h0_c00291{height:1263.000000px;}
.w0_c00291{width:892.500000px;}
.x0_c00291{left:0.000000px;}
.x2_c00291{left:82.710059px;}
.x4_c00291{left:152.640517px;}
.x1_c00291{left:431.730000px;}
.x3_c00291{left:732.870000px;}
@media print{
.v0_c00291{vertical-align:0.000000pt;}
.ls3_c00291{letter-spacing:-0.056016pt;}
.ls5_c00291{letter-spacing:-0.037344pt;}
.ls6_c00291{letter-spacing:-0.024896pt;}
.lsa_c00291{letter-spacing:-0.018672pt;}
.ls8_c00291{letter-spacing:-0.012448pt;}
.ls7_c00291{letter-spacing:-0.006224pt;}
.ls4_c00291{letter-spacing:0.000000pt;}
.ls1_c00291{letter-spacing:0.006224pt;}
.ls2_c00291{letter-spacing:0.018672pt;}
.ls0_c00291{letter-spacing:0.074688pt;}
.ls9_c00291{letter-spacing:0.174272pt;}
.ws0_c00291{word-spacing:-17.377408pt;}
.wsd_c00291{word-spacing:-0.031120pt;}
.ws1_c00291{word-spacing:0.000000pt;}
.ws10_c00291{word-spacing:0.006224pt;}
.ws7_c00291{word-spacing:0.012448pt;}
.wse_c00291{word-spacing:0.130704pt;}
.wsc_c00291{word-spacing:0.958496pt;}
.ws5_c00291{word-spacing:1.910768pt;}
.ws8_c00291{word-spacing:3.180464pt;}
.ws3_c00291{word-spacing:5.134800pt;}
.wsf_c00291{word-spacing:6.074624pt;}
.ws9_c00291{word-spacing:6.398272pt;}
.ws2_c00291{word-spacing:8.022736pt;}
.wsb_c00291{word-spacing:10.226032pt;}
.wsa_c00291{word-spacing:10.232256pt;}
.ws4_c00291{word-spacing:16.972848pt;}
.ws6_c00291{word-spacing:47.682064pt;}
._0_c00291{margin-left:-1.344384pt;}
._1_c00291{width:0.927376pt;}
.fs0_c00291{font-size:62.240000pt;}
.y0_c00291{bottom:0.000000pt;}
.y2_c00291{bottom:97.547527pt;}
.y1_c00291{bottom:115.387067pt;}
.y16_c00291{bottom:240.901931pt;}
.y15_c00291{bottom:267.702475pt;}
.y14_c00291{bottom:294.582375pt;}
.y13_c00291{bottom:321.382919pt;}
.y12_c00291{bottom:348.262819pt;}
.y11_c00291{bottom:375.063363pt;}
.y10_c00291{bottom:401.943263pt;}
.yf_c00291{bottom:428.743807pt;}
.ye_c00291{bottom:455.623707pt;}
.yd_c00291{bottom:482.424251pt;}
.yc_c00291{bottom:509.224795pt;}
.yb_c00291{bottom:536.025339pt;}
.ya_c00291{bottom:562.905239pt;}
.y9_c00291{bottom:589.785139pt;}
.y8_c00291{bottom:616.585683pt;}
.y7_c00291{bottom:643.465583pt;}
.y6_c00291{bottom:670.266127pt;}
.y5_c00291{bottom:697.146027pt;}
.y4_c00291{bottom:723.946571pt;}
.y3_c00291{bottom:747.467067pt;}
.h1_c00291{height:55.797187pt;}
.h2_c00291{height:56.192266pt;}
.h0_c00291{height:1122.666667pt;}
.w0_c00291{width:793.333333pt;}
.x0_c00291{left:0.000000pt;}
.x2_c00291{left:73.520052pt;}
.x4_c00291{left:135.680460pt;}
.x1_c00291{left:383.760000pt;}
.x3_c00291{left:651.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5c9bd4606c2982b7681658b9.woff2')format("woff");}.ff1_c00292{font-family:ff1_c00292;line-height:1.106934;font-style:normal;font-weight:normal;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_155605f57d5931021a897ecd.woff2')format("woff");}.ff2_c00292{font-family:ff2_c00292;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00292;src:url('chunks/assets/font_0f2f2d65f2628f4f5aec08ac.woff2')format("woff");}.ff3_c00292{font-family:ff3_c00292;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00292;src:url('chunks/assets/font_5d107621d1c1b155b119d29f.woff2')format("woff");}.ff4_c00292{font-family:ff4_c00292;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00292;src:url('chunks/assets/font_a42c55894ee9aac59271f90f.woff2')format("woff");}.ff5_c00292{font-family:ff5_c00292;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00292;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff6_c00292{font-family:ff6_c00292;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00292;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff7_c00292{font-family:ff7_c00292;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00292{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00292{vertical-align:-14.760600px;}
.v0_c00292{vertical-align:0.000000px;}
.v1_c00292{vertical-align:32.405544px;}
.lse_c00292{letter-spacing:-0.701597px;}
.lsf_c00292{letter-spacing:-0.087700px;}
.lsd_c00292{letter-spacing:-0.081853px;}
.lsb_c00292{letter-spacing:-0.075619px;}
.ls4_c00292{letter-spacing:-0.063018px;}
.ls8_c00292{letter-spacing:-0.035010px;}
.lsa_c00292{letter-spacing:-0.028008px;}
.ls7_c00292{letter-spacing:-0.021006px;}
.ls6_c00292{letter-spacing:-0.014004px;}
.ls9_c00292{letter-spacing:-0.007002px;}
.lsc_c00292{letter-spacing:-0.005847px;}
.ls5_c00292{letter-spacing:0.000000px;}
.ls3_c00292{letter-spacing:0.005847px;}
.ls1_c00292{letter-spacing:0.014004px;}
.ls2_c00292{letter-spacing:0.023281px;}
.ls0_c00292{letter-spacing:0.084024px;}
.sc__c00292{text-shadow:none;}
.sc0_c00292{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00292{-webkit-text-stroke:0px transparent;}
.sc0_c00292{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00292{word-spacing:-58.466400px;}
.ws0_c00292{word-spacing:-19.549584px;}
.ws4_c00292{word-spacing:-15.493596px;}
.ws1_c00292{word-spacing:-12.967628px;}
.ws2_c00292{word-spacing:-10.397640px;}
.ws12_c00292{word-spacing:-0.350798px;}
.wsf_c00292{word-spacing:-0.339105px;}
.ws10_c00292{word-spacing:-0.263099px;}
.ws5_c00292{word-spacing:0.000000px;}
.wsd_c00292{word-spacing:0.014004px;}
.wse_c00292{word-spacing:0.364104px;}
.wsc_c00292{word-spacing:0.378108px;}
.ws11_c00292{word-spacing:0.461885px;}
.ws8_c00292{word-spacing:1.078308px;}
.ws7_c00292{word-spacing:1.449414px;}
.wsa_c00292{word-spacing:6.448842px;}
.ws9_c00292{word-spacing:14.781222px;}
.wsb_c00292{word-spacing:16.909830px;}
.ws6_c00292{word-spacing:29.520432px;}
._4_c00292{margin-left:-2.709774px;}
._0_c00292{margin-left:-1.512432px;}
._1_c00292{width:1.029294px;}
._5_c00292{width:2.030208px;}
._3_c00292{width:5.930694px;}
._2_c00292{width:7.926264px;}
.fc0_c00292{color:rgb(0,0,0);}
.fs2_c00292{font-size:37.809600px;}
.fs1_c00292{font-size:46.562400px;}
.fs3_c00292{font-size:58.466400px;}
.fs0_c00292{font-size:70.020000px;}
.y0_c00292{bottom:0.000000px;}
.y2_c00292{bottom:109.740968px;}
.y1_c00292{bottom:129.810450px;}
.y13_c00292{bottom:153.120600px;}
.y12_c00292{bottom:167.790600px;}
.y11_c00292{bottom:458.850450px;}
.y10_c00292{bottom:489.000600px;}
.yf_c00292{bottom:519.240450px;}
.ye_c00292{bottom:549.390450px;}
.yd_c00292{bottom:570.358614px;}
.yc_c00292{bottom:600.509226px;}
.yb_c00292{bottom:630.659838px;}
.ya_c00292{bottom:660.809064px;}
.y9_c00292{bottom:691.048952px;}
.y8_c00292{bottom:721.199564px;}
.y7_c00292{bottom:751.439451px;}
.y6_c00292{bottom:781.590063px;}
.y5_c00292{bottom:811.829950px;}
.y4_c00292{bottom:841.980563px;}
.y3_c00292{bottom:872.220450px;}
.h5_c00292{height:39.337949px;}
.h3_c00292{height:62.600889px;}
.h1_c00292{height:62.771836px;}
.h2_c00292{height:63.216299px;}
.h4_c00292{height:74.034330px;}
.h0_c00292{height:1263.000000px;}
.w0_c00292{width:892.500000px;}
.x0_c00292{left:0.000000px;}
.x2_c00292{left:82.710059px;}
.x3_c00292{left:152.640000px;}
.x6_c00292{left:178.920000px;}
.x5_c00292{left:354.690000px;}
.x1_c00292{left:431.730000px;}
.x4_c00292{left:454.860000px;}
@media print{
.v2_c00292{vertical-align:-13.120533pt;}
.v0_c00292{vertical-align:0.000000pt;}
.v1_c00292{vertical-align:28.804928pt;}
.lse_c00292{letter-spacing:-0.623642pt;}
.lsf_c00292{letter-spacing:-0.077955pt;}
.lsd_c00292{letter-spacing:-0.072758pt;}
.lsb_c00292{letter-spacing:-0.067217pt;}
.ls4_c00292{letter-spacing:-0.056016pt;}
.ls8_c00292{letter-spacing:-0.031120pt;}
.lsa_c00292{letter-spacing:-0.024896pt;}
.ls7_c00292{letter-spacing:-0.018672pt;}
.ls6_c00292{letter-spacing:-0.012448pt;}
.ls9_c00292{letter-spacing:-0.006224pt;}
.lsc_c00292{letter-spacing:-0.005197pt;}
.ls5_c00292{letter-spacing:0.000000pt;}
.ls3_c00292{letter-spacing:0.005197pt;}
.ls1_c00292{letter-spacing:0.012448pt;}
.ls2_c00292{letter-spacing:0.020694pt;}
.ls0_c00292{letter-spacing:0.074688pt;}
.ws3_c00292{word-spacing:-51.970133pt;}
.ws0_c00292{word-spacing:-17.377408pt;}
.ws4_c00292{word-spacing:-13.772085pt;}
.ws1_c00292{word-spacing:-11.526781pt;}
.ws2_c00292{word-spacing:-9.242347pt;}
.ws12_c00292{word-spacing:-0.311821pt;}
.wsf_c00292{word-spacing:-0.301427pt;}
.ws10_c00292{word-spacing:-0.233866pt;}
.ws5_c00292{word-spacing:0.000000pt;}
.wsd_c00292{word-spacing:0.012448pt;}
.wse_c00292{word-spacing:0.323648pt;}
.wsc_c00292{word-spacing:0.336096pt;}
.ws11_c00292{word-spacing:0.410564pt;}
.ws8_c00292{word-spacing:0.958496pt;}
.ws7_c00292{word-spacing:1.288368pt;}
.wsa_c00292{word-spacing:5.732304pt;}
.ws9_c00292{word-spacing:13.138864pt;}
.wsb_c00292{word-spacing:15.030960pt;}
.ws6_c00292{word-spacing:26.240384pt;}
._4_c00292{margin-left:-2.408688pt;}
._0_c00292{margin-left:-1.344384pt;}
._1_c00292{width:0.914928pt;}
._5_c00292{width:1.804630pt;}
._3_c00292{width:5.271728pt;}
._2_c00292{width:7.045568pt;}
.fs2_c00292{font-size:33.608533pt;}
.fs1_c00292{font-size:41.388800pt;}
.fs3_c00292{font-size:51.970133pt;}
.fs0_c00292{font-size:62.240000pt;}
.y0_c00292{bottom:0.000000pt;}
.y2_c00292{bottom:97.547527pt;}
.y1_c00292{bottom:115.387067pt;}
.y13_c00292{bottom:136.107200pt;}
.y12_c00292{bottom:149.147200pt;}
.y11_c00292{bottom:407.867067pt;}
.y10_c00292{bottom:434.667200pt;}
.yf_c00292{bottom:461.547067pt;}
.ye_c00292{bottom:488.347067pt;}
.yd_c00292{bottom:506.985435pt;}
.yc_c00292{bottom:533.785979pt;}
.yb_c00292{bottom:560.586523pt;}
.ya_c00292{bottom:587.385835pt;}
.y9_c00292{bottom:614.265735pt;}
.y8_c00292{bottom:641.066279pt;}
.y7_c00292{bottom:667.946179pt;}
.y6_c00292{bottom:694.746723pt;}
.y5_c00292{bottom:721.626623pt;}
.y4_c00292{bottom:748.427167pt;}
.y3_c00292{bottom:775.307067pt;}
.h5_c00292{height:34.967066pt;}
.h3_c00292{height:55.645234pt;}
.h1_c00292{height:55.797187pt;}
.h2_c00292{height:56.192266pt;}
.h4_c00292{height:65.808294pt;}
.h0_c00292{height:1122.666667pt;}
.w0_c00292{width:793.333333pt;}
.x0_c00292{left:0.000000pt;}
.x2_c00292{left:73.520052pt;}
.x3_c00292{left:135.680000pt;}
.x6_c00292{left:159.040000pt;}
.x5_c00292{left:315.280000pt;}
.x1_c00292{left:383.760000pt;}
.x4_c00292{left:404.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4931c6814dc68d84ec495c13.woff2')format("woff");}.ff1_c00293{font-family:ff1_c00293;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00293;src:url('chunks/assets/font_9e538c59b9ae06a6bb1e670b.woff2')format("woff");}.ff2_c00293{font-family:ff2_c00293;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00293;src:url('chunks/assets/font_d4ad535458dec510a8d5ed9d.woff2')format("woff");}.ff3_c00293{font-family:ff3_c00293;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00293;src:url('chunks/assets/font_704e21a8eb74039d8476fa49.woff2')format("woff");}.ff4_c00293{font-family:ff4_c00293;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00293;src:url('chunks/assets/font_a80f8eb198d70b888c6d7ece.woff2')format("woff");}.ff5_c00293{font-family:ff5_c00293;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00293{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00293{vertical-align:-14.400000px;}
.v0_c00293{vertical-align:0.000000px;}
.ls11_c00293{letter-spacing:-0.146166px;}
.lse_c00293{letter-spacing:-0.075619px;}
.ls6_c00293{letter-spacing:-0.063018px;}
.ls12_c00293{letter-spacing:-0.052620px;}
.lsf_c00293{letter-spacing:-0.046773px;}
.lsc_c00293{letter-spacing:-0.042012px;}
.ls13_c00293{letter-spacing:-0.035080px;}
.lsd_c00293{letter-spacing:-0.035010px;}
.ls10_c00293{letter-spacing:-0.029233px;}
.lsb_c00293{letter-spacing:-0.028008px;}
.lsa_c00293{letter-spacing:-0.021006px;}
.ls8_c00293{letter-spacing:-0.014004px;}
.ls9_c00293{letter-spacing:-0.007002px;}
.ls7_c00293{letter-spacing:0.000000px;}
.ls2_c00293{letter-spacing:0.007002px;}
.ls5_c00293{letter-spacing:0.011693px;}
.ls4_c00293{letter-spacing:0.040926px;}
.ls1_c00293{letter-spacing:0.042012px;}
.ls0_c00293{letter-spacing:0.084024px;}
.ls3_c00293{letter-spacing:2.525748px;}
.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:-19.549584px;}
.ws1_c00293{word-spacing:-10.397640px;}
.ws8_c00293{word-spacing:-0.343098px;}
.ws2_c00293{word-spacing:0.000000px;}
.ws1e_c00293{word-spacing:0.046773px;}
.ws16_c00293{word-spacing:0.357102px;}
.ws19_c00293{word-spacing:1.052395px;}
.ws1a_c00293{word-spacing:1.239488px;}
.ws18_c00293{word-spacing:2.204183px;}
.ws17_c00293{word-spacing:2.221723px;}
.ws6_c00293{word-spacing:2.821806px;}
.ws3_c00293{word-spacing:2.877822px;}
.ws5_c00293{word-spacing:3.248928px;}
.ws1b_c00293{word-spacing:3.303352px;}
.ws13_c00293{word-spacing:3.991140px;}
.ws15_c00293{word-spacing:4.334238px;}
.wsd_c00293{word-spacing:4.670334px;}
.wse_c00293{word-spacing:4.691340px;}
.ws11_c00293{word-spacing:5.020434px;}
.ws10_c00293{word-spacing:5.062446px;}
.ws4_c00293{word-spacing:6.833952px;}
.ws12_c00293{word-spacing:9.711774px;}
.ws14_c00293{word-spacing:10.797084px;}
.wsc_c00293{word-spacing:10.804086px;}
.ws1d_c00293{word-spacing:13.681138px;}
.ws1c_c00293{word-spacing:13.745451px;}
.ws9_c00293{word-spacing:14.774220px;}
.wsb_c00293{word-spacing:17.631036px;}
.wsa_c00293{word-spacing:17.666046px;}
.ws7_c00293{word-spacing:22.315374px;}
.wsf_c00293{word-spacing:29.527434px;}
._3_c00293{margin-left:-7.128690px;}
._0_c00293{margin-left:-1.512432px;}
._1_c00293{width:1.120320px;}
._2_c00293{width:5.930694px;}
.fc0_c00293{color:rgb(0,0,0);}
.fs1_c00293{font-size:37.809600px;}
.fs2_c00293{font-size:58.466400px;}
.fs0_c00293{font-size:70.020000px;}
.y0_c00293{bottom:0.000000px;}
.y2_c00293{bottom:109.740968px;}
.y1_c00293{bottom:129.810450px;}
.y1c_c00293{bottom:149.339486px;}
.y1b_c00293{bottom:167.249205px;}
.y1a_c00293{bottom:185.249548px;}
.y19_c00293{bottom:203.070107px;}
.y18_c00293{bottom:224.670450px;}
.y17_c00293{bottom:239.430450px;}
.y16_c00293{bottom:274.260450px;}
.y15_c00293{bottom:304.410450px;}
.y14_c00293{bottom:334.650450px;}
.y13_c00293{bottom:364.800450px;}
.y12_c00293{bottom:395.040600px;}
.y11_c00293{bottom:425.190450px;}
.y10_c00293{bottom:455.430600px;}
.yf_c00293{bottom:485.580450px;}
.ye_c00293{bottom:515.820450px;}
.yd_c00293{bottom:545.970450px;}
.yc_c00293{bottom:576.210450px;}
.yb_c00293{bottom:606.360450px;}
.ya_c00293{bottom:636.600450px;}
.y9_c00293{bottom:666.750450px;}
.y8_c00293{bottom:696.990450px;}
.y7_c00293{bottom:727.140450px;}
.y6_c00293{bottom:757.380450px;}
.y5_c00293{bottom:787.620450px;}
.y4_c00293{bottom:817.770450px;}
.y3_c00293{bottom:848.010450px;}
.h4_c00293{height:39.698549px;}
.h5_c00293{height:54.098549px;}
.h3_c00293{height:62.600889px;}
.h1_c00293{height:62.771836px;}
.h2_c00293{height:63.216299px;}
.h0_c00293{height:1263.000000px;}
.w0_c00293{width:892.500000px;}
.x0_c00293{left:0.000000px;}
.x2_c00293{left:82.710059px;}
.x3_c00293{left:152.640000px;}
.x1_c00293{left:431.730000px;}
@media print{
.v1_c00293{vertical-align:-12.800000pt;}
.v0_c00293{vertical-align:0.000000pt;}
.ls11_c00293{letter-spacing:-0.129925pt;}
.lse_c00293{letter-spacing:-0.067217pt;}
.ls6_c00293{letter-spacing:-0.056016pt;}
.ls12_c00293{letter-spacing:-0.046773pt;}
.lsf_c00293{letter-spacing:-0.041576pt;}
.lsc_c00293{letter-spacing:-0.037344pt;}
.ls13_c00293{letter-spacing:-0.031182pt;}
.lsd_c00293{letter-spacing:-0.031120pt;}
.ls10_c00293{letter-spacing:-0.025985pt;}
.lsb_c00293{letter-spacing:-0.024896pt;}
.lsa_c00293{letter-spacing:-0.018672pt;}
.ls8_c00293{letter-spacing:-0.012448pt;}
.ls9_c00293{letter-spacing:-0.006224pt;}
.ls7_c00293{letter-spacing:0.000000pt;}
.ls2_c00293{letter-spacing:0.006224pt;}
.ls5_c00293{letter-spacing:0.010394pt;}
.ls4_c00293{letter-spacing:0.036379pt;}
.ls1_c00293{letter-spacing:0.037344pt;}
.ls0_c00293{letter-spacing:0.074688pt;}
.ls3_c00293{letter-spacing:2.245110pt;}
.ws0_c00293{word-spacing:-17.377408pt;}
.ws1_c00293{word-spacing:-9.242347pt;}
.ws8_c00293{word-spacing:-0.304976pt;}
.ws2_c00293{word-spacing:0.000000pt;}
.ws1e_c00293{word-spacing:0.041576pt;}
.ws16_c00293{word-spacing:0.317424pt;}
.ws19_c00293{word-spacing:0.935462pt;}
.ws1a_c00293{word-spacing:1.101767pt;}
.ws18_c00293{word-spacing:1.959274pt;}
.ws17_c00293{word-spacing:1.974865pt;}
.ws6_c00293{word-spacing:2.508272pt;}
.ws3_c00293{word-spacing:2.558064pt;}
.ws5_c00293{word-spacing:2.887936pt;}
.ws1b_c00293{word-spacing:2.936313pt;}
.ws13_c00293{word-spacing:3.547680pt;}
.ws15_c00293{word-spacing:3.852656pt;}
.wsd_c00293{word-spacing:4.151408pt;}
.wse_c00293{word-spacing:4.170080pt;}
.ws11_c00293{word-spacing:4.462608pt;}
.ws10_c00293{word-spacing:4.499952pt;}
.ws4_c00293{word-spacing:6.074624pt;}
.ws12_c00293{word-spacing:8.632688pt;}
.ws14_c00293{word-spacing:9.597408pt;}
.wsc_c00293{word-spacing:9.603632pt;}
.ws1d_c00293{word-spacing:12.161011pt;}
.ws1c_c00293{word-spacing:12.218178pt;}
.ws9_c00293{word-spacing:13.132640pt;}
.wsb_c00293{word-spacing:15.672032pt;}
.wsa_c00293{word-spacing:15.703152pt;}
.ws7_c00293{word-spacing:19.835888pt;}
.wsf_c00293{word-spacing:26.246608pt;}
._3_c00293{margin-left:-6.336613pt;}
._0_c00293{margin-left:-1.344384pt;}
._1_c00293{width:0.995840pt;}
._2_c00293{width:5.271728pt;}
.fs1_c00293{font-size:33.608533pt;}
.fs2_c00293{font-size:51.970133pt;}
.fs0_c00293{font-size:62.240000pt;}
.y0_c00293{bottom:0.000000pt;}
.y2_c00293{bottom:97.547527pt;}
.y1_c00293{bottom:115.387067pt;}
.y1c_c00293{bottom:132.746209pt;}
.y1b_c00293{bottom:148.665960pt;}
.y1a_c00293{bottom:164.666265pt;}
.y19_c00293{bottom:180.506762pt;}
.y18_c00293{bottom:199.707067pt;}
.y17_c00293{bottom:212.827067pt;}
.y16_c00293{bottom:243.787067pt;}
.y15_c00293{bottom:270.587067pt;}
.y14_c00293{bottom:297.467067pt;}
.y13_c00293{bottom:324.267067pt;}
.y12_c00293{bottom:351.147200pt;}
.y11_c00293{bottom:377.947067pt;}
.y10_c00293{bottom:404.827200pt;}
.yf_c00293{bottom:431.627067pt;}
.ye_c00293{bottom:458.507067pt;}
.yd_c00293{bottom:485.307067pt;}
.yc_c00293{bottom:512.187067pt;}
.yb_c00293{bottom:538.987067pt;}
.ya_c00293{bottom:565.867067pt;}
.y9_c00293{bottom:592.667067pt;}
.y8_c00293{bottom:619.547067pt;}
.y7_c00293{bottom:646.347067pt;}
.y6_c00293{bottom:673.227067pt;}
.y5_c00293{bottom:700.107067pt;}
.y4_c00293{bottom:726.907067pt;}
.y3_c00293{bottom:753.787067pt;}
.h4_c00293{height:35.287599pt;}
.h5_c00293{height:48.087599pt;}
.h3_c00293{height:55.645234pt;}
.h1_c00293{height:55.797187pt;}
.h2_c00293{height:56.192266pt;}
.h0_c00293{height:1122.666667pt;}
.w0_c00293{width:793.333333pt;}
.x0_c00293{left:0.000000pt;}
.x2_c00293{left:73.520052pt;}
.x3_c00293{left:135.680000pt;}
.x1_c00293{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3e19c35085896e7289b23faf.woff2')format("woff");}.ff1_c00294{font-family:ff1_c00294;line-height:1.106934;font-style:normal;font-weight:normal;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_3f7bb7feff0b44a99fced3dc.woff2')format("woff");}.ff2_c00294{font-family:ff2_c00294;line-height:1.104492;font-style:normal;font-weight:normal;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_b5c6327db8342701d97be108.woff2')format("woff");}.ff3_c00294{font-family:ff3_c00294;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00294{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00294{vertical-align:0.000000px;}
.v1_c00294{vertical-align:32.400000px;}
.lse_c00294{letter-spacing:-0.420120px;}
.ls4_c00294{letter-spacing:-0.063018px;}
.ls9_c00294{letter-spacing:-0.049014px;}
.lsb_c00294{letter-spacing:-0.035010px;}
.lsc_c00294{letter-spacing:-0.028008px;}
.ls8_c00294{letter-spacing:-0.021006px;}
.ls6_c00294{letter-spacing:-0.014004px;}
.ls7_c00294{letter-spacing:-0.007002px;}
.ls5_c00294{letter-spacing:0.000000px;}
.ls3_c00294{letter-spacing:0.014004px;}
.ls1_c00294{letter-spacing:0.023281px;}
.ls0_c00294{letter-spacing:0.028008px;}
.ls2_c00294{letter-spacing:0.077022px;}
.lsd_c00294{letter-spacing:0.147042px;}
.lsa_c00294{letter-spacing:0.252072px;}
.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:-12.967628px;}
.ws1_c00294{word-spacing:0.000000px;}
.ws5_c00294{word-spacing:0.007002px;}
.wsa_c00294{word-spacing:0.014004px;}
.ws6_c00294{word-spacing:0.035010px;}
.ws7_c00294{word-spacing:5.132466px;}
.ws9_c00294{word-spacing:5.307516px;}
.ws8_c00294{word-spacing:5.419548px;}
.ws2_c00294{word-spacing:8.640468px;}
.ws4_c00294{word-spacing:21.916260px;}
.ws3_c00294{word-spacing:21.951270px;}
.wsb_c00294{word-spacing:23.960844px;}
.wsc_c00294{word-spacing:24.093882px;}
.wsd_c00294{word-spacing:24.163902px;}
.wse_c00294{word-spacing:28.463130px;}
._0_c00294{margin-left:-1.246356px;}
._1_c00294{width:1.078308px;}
.fc0_c00294{color:rgb(0,0,0);}
.fs1_c00294{font-size:46.562400px;}
.fs0_c00294{font-size:70.020000px;}
.y0_c00294{bottom:0.000000px;}
.y2_c00294{bottom:109.740968px;}
.y1_c00294{bottom:129.810450px;}
.y2e_c00294{bottom:202.350450px;}
.y2f_c00294{bottom:202.440450px;}
.y2d_c00294{bottom:232.680450px;}
.y2c_c00294{bottom:253.464974px;}
.y2b_c00294{bottom:273.625482px;}
.y2a_c00294{bottom:293.785991px;}
.y29_c00294{bottom:313.855473px;}
.y28_c00294{bottom:334.015982px;}
.y27_c00294{bottom:354.176490px;}
.y26_c00294{bottom:374.245973px;}
.y25_c00294{bottom:394.406481px;}
.y24_c00294{bottom:414.566990px;}
.y23_c00294{bottom:434.636472px;}
.y22_c00294{bottom:454.796981px;}
.y21_c00294{bottom:474.957489px;}
.y20_c00294{bottom:495.026972px;}
.y1f_c00294{bottom:515.187480px;}
.y1e_c00294{bottom:535.347989px;}
.y1d_c00294{bottom:555.417471px;}
.y1c_c00294{bottom:575.577980px;}
.y1b_c00294{bottom:595.738488px;}
.y1a_c00294{bottom:615.807971px;}
.y19_c00294{bottom:635.968479px;}
.y18_c00294{bottom:656.128988px;}
.y17_c00294{bottom:676.198470px;}
.y16_c00294{bottom:696.358979px;}
.y15_c00294{bottom:716.519487px;}
.y14_c00294{bottom:736.679996px;}
.y13_c00294{bottom:756.749478px;}
.y12_c00294{bottom:776.909987px;}
.y11_c00294{bottom:797.070495px;}
.y10_c00294{bottom:817.139977px;}
.yf_c00294{bottom:837.300486px;}
.ye_c00294{bottom:857.460994px;}
.yd_c00294{bottom:877.530477px;}
.yc_c00294{bottom:897.690986px;}
.yb_c00294{bottom:917.851494px;}
.ya_c00294{bottom:937.920977px;}
.y9_c00294{bottom:957.990459px;}
.y8_c00294{bottom:978.150968px;}
.y7_c00294{bottom:998.220450px;}
.y6_c00294{bottom:1019.190450px;}
.y5_c00294{bottom:1049.340450px;}
.y4_c00294{bottom:1079.580450px;}
.y3_c00294{bottom:1109.730450px;}
.h2_c00294{height:62.600889px;}
.h1_c00294{height:62.771836px;}
.h4_c00294{height:63.216299px;}
.h3_c00294{height:74.028786px;}
.h0_c00294{height:1263.000000px;}
.w0_c00294{width:892.500000px;}
.x0_c00294{left:0.000000px;}
.x2_c00294{left:82.710059px;}
.x5_c00294{left:136.800000px;}
.x3_c00294{left:152.640000px;}
.x4_c00294{left:342.270000px;}
.x1_c00294{left:431.730000px;}
.x6_c00294{left:467.190000px;}
@media print{
.v0_c00294{vertical-align:0.000000pt;}
.v1_c00294{vertical-align:28.800000pt;}
.lse_c00294{letter-spacing:-0.373440pt;}
.ls4_c00294{letter-spacing:-0.056016pt;}
.ls9_c00294{letter-spacing:-0.043568pt;}
.lsb_c00294{letter-spacing:-0.031120pt;}
.lsc_c00294{letter-spacing:-0.024896pt;}
.ls8_c00294{letter-spacing:-0.018672pt;}
.ls6_c00294{letter-spacing:-0.012448pt;}
.ls7_c00294{letter-spacing:-0.006224pt;}
.ls5_c00294{letter-spacing:0.000000pt;}
.ls3_c00294{letter-spacing:0.012448pt;}
.ls1_c00294{letter-spacing:0.020694pt;}
.ls0_c00294{letter-spacing:0.024896pt;}
.ls2_c00294{letter-spacing:0.068464pt;}
.lsd_c00294{letter-spacing:0.130704pt;}
.lsa_c00294{letter-spacing:0.224064pt;}
.ws0_c00294{word-spacing:-11.526781pt;}
.ws1_c00294{word-spacing:0.000000pt;}
.ws5_c00294{word-spacing:0.006224pt;}
.wsa_c00294{word-spacing:0.012448pt;}
.ws6_c00294{word-spacing:0.031120pt;}
.ws7_c00294{word-spacing:4.562192pt;}
.ws9_c00294{word-spacing:4.717792pt;}
.ws8_c00294{word-spacing:4.817376pt;}
.ws2_c00294{word-spacing:7.680416pt;}
.ws4_c00294{word-spacing:19.481120pt;}
.ws3_c00294{word-spacing:19.512240pt;}
.wsb_c00294{word-spacing:21.298528pt;}
.wsc_c00294{word-spacing:21.416784pt;}
.wsd_c00294{word-spacing:21.479024pt;}
.wse_c00294{word-spacing:25.300560pt;}
._0_c00294{margin-left:-1.107872pt;}
._1_c00294{width:0.958496pt;}
.fs1_c00294{font-size:41.388800pt;}
.fs0_c00294{font-size:62.240000pt;}
.y0_c00294{bottom:0.000000pt;}
.y2_c00294{bottom:97.547527pt;}
.y1_c00294{bottom:115.387067pt;}
.y2e_c00294{bottom:179.867067pt;}
.y2f_c00294{bottom:179.947067pt;}
.y2d_c00294{bottom:206.827067pt;}
.y2c_c00294{bottom:225.302199pt;}
.y2b_c00294{bottom:243.222651pt;}
.y2a_c00294{bottom:261.143103pt;}
.y29_c00294{bottom:278.982643pt;}
.y28_c00294{bottom:296.903095pt;}
.y27_c00294{bottom:314.823547pt;}
.y26_c00294{bottom:332.663087pt;}
.y25_c00294{bottom:350.583539pt;}
.y24_c00294{bottom:368.503991pt;}
.y23_c00294{bottom:386.343531pt;}
.y22_c00294{bottom:404.263983pt;}
.y21_c00294{bottom:422.184435pt;}
.y20_c00294{bottom:440.023975pt;}
.y1f_c00294{bottom:457.944427pt;}
.y1e_c00294{bottom:475.864879pt;}
.y1d_c00294{bottom:493.704419pt;}
.y1c_c00294{bottom:511.624871pt;}
.y1b_c00294{bottom:529.545323pt;}
.y1a_c00294{bottom:547.384863pt;}
.y19_c00294{bottom:565.305315pt;}
.y18_c00294{bottom:583.225767pt;}
.y17_c00294{bottom:601.065307pt;}
.y16_c00294{bottom:618.985759pt;}
.y15_c00294{bottom:636.906211pt;}
.y14_c00294{bottom:654.826663pt;}
.y13_c00294{bottom:672.666203pt;}
.y12_c00294{bottom:690.586655pt;}
.y11_c00294{bottom:708.507107pt;}
.y10_c00294{bottom:726.346647pt;}
.yf_c00294{bottom:744.267099pt;}
.ye_c00294{bottom:762.187551pt;}
.yd_c00294{bottom:780.027091pt;}
.yc_c00294{bottom:797.947543pt;}
.yb_c00294{bottom:815.867995pt;}
.ya_c00294{bottom:833.707535pt;}
.y9_c00294{bottom:851.547075pt;}
.y8_c00294{bottom:869.467527pt;}
.y7_c00294{bottom:887.307067pt;}
.y6_c00294{bottom:905.947067pt;}
.y5_c00294{bottom:932.747067pt;}
.y4_c00294{bottom:959.627067pt;}
.y3_c00294{bottom:986.427067pt;}
.h2_c00294{height:55.645234pt;}
.h1_c00294{height:55.797187pt;}
.h4_c00294{height:56.192266pt;}
.h3_c00294{height:65.803366pt;}
.h0_c00294{height:1122.666667pt;}
.w0_c00294{width:793.333333pt;}
.x0_c00294{left:0.000000pt;}
.x2_c00294{left:73.520052pt;}
.x5_c00294{left:121.600000pt;}
.x3_c00294{left:135.680000pt;}
.x4_c00294{left:304.240000pt;}
.x1_c00294{left:383.760000pt;}
.x6_c00294{left:415.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4adf933660ee042a9e75f1a3.woff2')format("woff");}.ff1_c00295{font-family:ff1_c00295;line-height:1.106934;font-style:normal;font-weight:normal;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_08f23766e3149f3837f11c91.woff2')format("woff");}.ff2_c00295{font-family:ff2_c00295;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00295;src:url('chunks/assets/font_402d4f17a0e37c1fa71f42ab.woff2')format("woff");}.ff3_c00295{font-family:ff3_c00295;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00295;src:url('chunks/assets/font_c172476e31a966b5bc48fbdb.woff2')format("woff");}.ff4_c00295{font-family:ff4_c00295;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00295;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff5_c00295{font-family:ff5_c00295;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00295;src:url('chunks/assets/font_ce5e441dd9f081b591a129d5.woff2')format("woff");}.ff6_c00295{font-family:ff6_c00295;line-height:1.133301;font-style:normal;font-weight: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_c00295;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff7_c00295{font-family:ff7_c00295;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00295{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00295{vertical-align:-14.760000px;}
.v0_c00295{vertical-align:0.000000px;}
.v1_c00295{vertical-align:32.040000px;}
.ls15_c00295{letter-spacing:-0.093546px;}
.ls13_c00295{letter-spacing:-0.075619px;}
.ls19_c00295{letter-spacing:-0.070160px;}
.ls10_c00295{letter-spacing:-0.070020px;}
.ls8_c00295{letter-spacing:-0.063018px;}
.ls16_c00295{letter-spacing:-0.058466px;}
.lsd_c00295{letter-spacing:-0.056016px;}
.ls12_c00295{letter-spacing:-0.049014px;}
.lse_c00295{letter-spacing:-0.042012px;}
.ls18_c00295{letter-spacing:-0.040926px;}
.ls14_c00295{letter-spacing:-0.035080px;}
.lsc_c00295{letter-spacing:-0.035010px;}
.lsb_c00295{letter-spacing:-0.028008px;}
.ls11_c00295{letter-spacing:-0.021006px;}
.lsa_c00295{letter-spacing:-0.014004px;}
.lsf_c00295{letter-spacing:-0.007002px;}
.ls9_c00295{letter-spacing:0.000000px;}
.ls4_c00295{letter-spacing:0.007002px;}
.ls0_c00295{letter-spacing:0.014004px;}
.ls3_c00295{letter-spacing:0.021006px;}
.ls5_c00295{letter-spacing:0.023281px;}
.ls1_c00295{letter-spacing:0.035010px;}
.ls17_c00295{letter-spacing:0.052620px;}
.ls2_c00295{letter-spacing:0.098028px;}
.ls7_c00295{letter-spacing:0.362492px;}
.ls6_c00295{letter-spacing:80.256924px;}
.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;}
}
.ws3_c00295{word-spacing:-58.466400px;}
.ws0_c00295{word-spacing:-19.465560px;}
.ws4_c00295{word-spacing:-16.154266px;}
.ws1_c00295{word-spacing:-12.967628px;}
.ws2_c00295{word-spacing:-10.397640px;}
.ws15_c00295{word-spacing:-0.007002px;}
.ws5_c00295{word-spacing:0.000000px;}
.ws2f_c00295{word-spacing:0.021006px;}
.wsf_c00295{word-spacing:0.042012px;}
.ws3c_c00295{word-spacing:0.052620px;}
.ws3d_c00295{word-spacing:0.081853px;}
.ws1b_c00295{word-spacing:0.364104px;}
.ws9_c00295{word-spacing:0.378108px;}
.ws2e_c00295{word-spacing:0.385110px;}
.ws32_c00295{word-spacing:1.106316px;}
.ws34_c00295{word-spacing:1.113318px;}
.ws33_c00295{word-spacing:1.421406px;}
.ws7_c00295{word-spacing:2.534724px;}
.ws39_c00295{word-spacing:3.969869px;}
.ws10_c00295{word-spacing:3.984138px;}
.ws38_c00295{word-spacing:4.367440px;}
.ws3b_c00295{word-spacing:4.753318px;}
.ws3a_c00295{word-spacing:4.788398px;}
.ws28_c00295{word-spacing:6.497856px;}
.ws1a_c00295{word-spacing:10.089882px;}
.ws19_c00295{word-spacing:10.762074px;}
.ws14_c00295{word-spacing:13.345812px;}
.ws2a_c00295{word-spacing:14.046012px;}
.ws18_c00295{word-spacing:14.095026px;}
.ws22_c00295{word-spacing:14.746212px;}
.ws16_c00295{word-spacing:15.089310px;}
.ws20_c00295{word-spacing:17.680050px;}
.ws2b_c00295{word-spacing:18.009144px;}
.ws1d_c00295{word-spacing:19.808658px;}
.wse_c00295{word-spacing:20.522862px;}
.ws31_c00295{word-spacing:23.078592px;}
.ws6_c00295{word-spacing:23.414688px;}
.ws27_c00295{word-spacing:23.421690px;}
.ws29_c00295{word-spacing:23.813802px;}
.ws25_c00295{word-spacing:25.221204px;}
.wsd_c00295{word-spacing:25.529292px;}
.ws2c_c00295{word-spacing:28.806228px;}
.ws26_c00295{word-spacing:30.283650px;}
.ws24_c00295{word-spacing:30.955842px;}
.ws1c_c00295{word-spacing:31.298940px;}
.ws1e_c00295{word-spacing:31.312944px;}
.ws35_c00295{word-spacing:37.068588px;}
.ws11_c00295{word-spacing:42.481134px;}
.ws2d_c00295{word-spacing:42.495138px;}
.ws8_c00295{word-spacing:44.609742px;}
.ws30_c00295{word-spacing:47.900682px;}
.ws23_c00295{word-spacing:48.621888px;}
.wsc_c00295{word-spacing:49.343094px;}
.ws13_c00295{word-spacing:50.421402px;}
.ws17_c00295{word-spacing:51.149610px;}
.wsb_c00295{word-spacing:63.312084px;}
.wsa_c00295{word-spacing:63.410112px;}
.ws21_c00295{word-spacing:64.082304px;}
.ws37_c00295{word-spacing:66.939120px;}
.ws1f_c00295{word-spacing:78.457410px;}
.ws36_c00295{word-spacing:80.291934px;}
.ws12_c00295{word-spacing:85.928544px;}
._2_c00295{margin-left:-13.583880px;}
._5_c00295{margin-left:-2.709774px;}
._1_c00295{margin-left:-1.155330px;}
._0_c00295{width:1.253358px;}
._4_c00295{width:5.930694px;}
._3_c00295{width:42.818310px;}
.fc0_c00295{color:rgb(0,0,0);}
.fs2_c00295{font-size:37.809600px;}
.fs1_c00295{font-size:46.562400px;}
.fs3_c00295{font-size:58.466400px;}
.fs0_c00295{font-size:70.020000px;}
.y0_c00295{bottom:0.000000px;}
.y2_c00295{bottom:109.740968px;}
.y1_c00295{bottom:129.810450px;}
.y35_c00295{bottom:153.120600px;}
.y34_c00295{bottom:167.250107px;}
.y33_c00295{bottom:188.940450px;}
.y32_c00295{bottom:203.610450px;}
.y1c_c00295{bottom:273.180450px;}
.y31_c00295{bottom:274.080450px;}
.y1b_c00295{bottom:303.420450px;}
.y30_c00295{bottom:304.230450px;}
.y1a_c00295{bottom:333.570450px;}
.y2f_c00295{bottom:334.470450px;}
.y19_c00295{bottom:363.810450px;}
.y2e_c00295{bottom:364.620450px;}
.y2d_c00295{bottom:394.860600px;}
.y18_c00295{bottom:414.390450px;}
.y2c_c00295{bottom:425.010450px;}
.y17_c00295{bottom:444.630450px;}
.y2b_c00295{bottom:455.250450px;}
.y16_c00295{bottom:474.870600px;}
.y2a_c00295{bottom:485.400450px;}
.y15_c00295{bottom:505.020600px;}
.y29_c00295{bottom:515.640450px;}
.y14_c00295{bottom:535.170450px;}
.y28_c00295{bottom:545.790450px;}
.y13_c00295{bottom:565.320450px;}
.y27_c00295{bottom:576.030450px;}
.y26_c00295{bottom:606.180450px;}
.y12_c00295{bottom:615.900450px;}
.y25_c00295{bottom:636.420450px;}
.y11_c00295{bottom:646.230450px;}
.y24_c00295{bottom:666.660450px;}
.y10_c00295{bottom:676.380450px;}
.y23_c00295{bottom:696.810450px;}
.yf_c00295{bottom:706.620450px;}
.y22_c00295{bottom:727.050450px;}
.ye_c00295{bottom:736.770450px;}
.y21_c00295{bottom:757.200450px;}
.yd_c00295{bottom:767.010450px;}
.y20_c00295{bottom:787.440450px;}
.yc_c00295{bottom:817.500450px;}
.y1f_c00295{bottom:817.590450px;}
.yb_c00295{bottom:847.830450px;}
.ya_c00295{bottom:877.980450px;}
.y9_c00295{bottom:908.220450px;}
.y8_c00295{bottom:938.370450px;}
.y7_c00295{bottom:968.610450px;}
.y6_c00295{bottom:998.760450px;}
.y5_c00295{bottom:1029.000450px;}
.y4_c00295{bottom:1059.150450px;}
.y1e_c00295{bottom:1079.490450px;}
.y3_c00295{bottom:1109.640450px;}
.y1d_c00295{bottom:1109.730450px;}
.h7_c00295{height:39.337949px;}
.h5_c00295{height:39.338549px;}
.h6_c00295{height:54.098549px;}
.h3_c00295{height:62.600889px;}
.h1_c00295{height:62.771836px;}
.h2_c00295{height:63.216299px;}
.h4_c00295{height:73.668786px;}
.h0_c00295{height:1263.000000px;}
.w0_c00295{width:892.500000px;}
.x0_c00295{left:0.000000px;}
.x2_c00295{left:82.710059px;}
.x3_c00295{left:136.800000px;}
.x1_c00295{left:431.730000px;}
.x4_c00295{left:467.190000px;}
@media print{
.v2_c00295{vertical-align:-13.120000pt;}
.v0_c00295{vertical-align:0.000000pt;}
.v1_c00295{vertical-align:28.480000pt;}
.ls15_c00295{letter-spacing:-0.083152pt;}
.ls13_c00295{letter-spacing:-0.067217pt;}
.ls19_c00295{letter-spacing:-0.062364pt;}
.ls10_c00295{letter-spacing:-0.062240pt;}
.ls8_c00295{letter-spacing:-0.056016pt;}
.ls16_c00295{letter-spacing:-0.051970pt;}
.lsd_c00295{letter-spacing:-0.049792pt;}
.ls12_c00295{letter-spacing:-0.043568pt;}
.lse_c00295{letter-spacing:-0.037344pt;}
.ls18_c00295{letter-spacing:-0.036379pt;}
.ls14_c00295{letter-spacing:-0.031182pt;}
.lsc_c00295{letter-spacing:-0.031120pt;}
.lsb_c00295{letter-spacing:-0.024896pt;}
.ls11_c00295{letter-spacing:-0.018672pt;}
.lsa_c00295{letter-spacing:-0.012448pt;}
.lsf_c00295{letter-spacing:-0.006224pt;}
.ls9_c00295{letter-spacing:0.000000pt;}
.ls4_c00295{letter-spacing:0.006224pt;}
.ls0_c00295{letter-spacing:0.012448pt;}
.ls3_c00295{letter-spacing:0.018672pt;}
.ls5_c00295{letter-spacing:0.020694pt;}
.ls1_c00295{letter-spacing:0.031120pt;}
.ls17_c00295{letter-spacing:0.046773pt;}
.ls2_c00295{letter-spacing:0.087136pt;}
.ls7_c00295{letter-spacing:0.322215pt;}
.ls6_c00295{letter-spacing:71.339488pt;}
.ws3_c00295{word-spacing:-51.970133pt;}
.ws0_c00295{word-spacing:-17.302720pt;}
.ws4_c00295{word-spacing:-14.359348pt;}
.ws1_c00295{word-spacing:-11.526781pt;}
.ws2_c00295{word-spacing:-9.242347pt;}
.ws15_c00295{word-spacing:-0.006224pt;}
.ws5_c00295{word-spacing:0.000000pt;}
.ws2f_c00295{word-spacing:0.018672pt;}
.wsf_c00295{word-spacing:0.037344pt;}
.ws3c_c00295{word-spacing:0.046773pt;}
.ws3d_c00295{word-spacing:0.072758pt;}
.ws1b_c00295{word-spacing:0.323648pt;}
.ws9_c00295{word-spacing:0.336096pt;}
.ws2e_c00295{word-spacing:0.342320pt;}
.ws32_c00295{word-spacing:0.983392pt;}
.ws34_c00295{word-spacing:0.989616pt;}
.ws33_c00295{word-spacing:1.263472pt;}
.ws7_c00295{word-spacing:2.253088pt;}
.ws39_c00295{word-spacing:3.528772pt;}
.ws10_c00295{word-spacing:3.541456pt;}
.ws38_c00295{word-spacing:3.882169pt;}
.ws3b_c00295{word-spacing:4.225172pt;}
.ws3a_c00295{word-spacing:4.256354pt;}
.ws28_c00295{word-spacing:5.775872pt;}
.ws1a_c00295{word-spacing:8.968784pt;}
.ws19_c00295{word-spacing:9.566288pt;}
.ws14_c00295{word-spacing:11.862944pt;}
.ws2a_c00295{word-spacing:12.485344pt;}
.ws18_c00295{word-spacing:12.528912pt;}
.ws22_c00295{word-spacing:13.107744pt;}
.ws16_c00295{word-spacing:13.412720pt;}
.ws20_c00295{word-spacing:15.715600pt;}
.ws2b_c00295{word-spacing:16.008128pt;}
.ws1d_c00295{word-spacing:17.607696pt;}
.wse_c00295{word-spacing:18.242544pt;}
.ws31_c00295{word-spacing:20.514304pt;}
.ws6_c00295{word-spacing:20.813056pt;}
.ws27_c00295{word-spacing:20.819280pt;}
.ws29_c00295{word-spacing:21.167824pt;}
.ws25_c00295{word-spacing:22.418848pt;}
.wsd_c00295{word-spacing:22.692704pt;}
.ws2c_c00295{word-spacing:25.605536pt;}
.ws26_c00295{word-spacing:26.918800pt;}
.ws24_c00295{word-spacing:27.516304pt;}
.ws1c_c00295{word-spacing:27.821280pt;}
.ws1e_c00295{word-spacing:27.833728pt;}
.ws35_c00295{word-spacing:32.949856pt;}
.ws11_c00295{word-spacing:37.761008pt;}
.ws2d_c00295{word-spacing:37.773456pt;}
.ws8_c00295{word-spacing:39.653104pt;}
.ws30_c00295{word-spacing:42.578384pt;}
.ws23_c00295{word-spacing:43.219456pt;}
.wsc_c00295{word-spacing:43.860528pt;}
.ws13_c00295{word-spacing:44.819024pt;}
.ws17_c00295{word-spacing:45.466320pt;}
.wsb_c00295{word-spacing:56.277408pt;}
.wsa_c00295{word-spacing:56.364544pt;}
.ws21_c00295{word-spacing:56.962048pt;}
.ws37_c00295{word-spacing:59.501440pt;}
.ws1f_c00295{word-spacing:69.739920pt;}
.ws36_c00295{word-spacing:71.370608pt;}
.ws12_c00295{word-spacing:76.380928pt;}
._2_c00295{margin-left:-12.074560pt;}
._5_c00295{margin-left:-2.408688pt;}
._1_c00295{margin-left:-1.026960pt;}
._0_c00295{width:1.114096pt;}
._4_c00295{width:5.271728pt;}
._3_c00295{width:38.060720pt;}
.fs2_c00295{font-size:33.608533pt;}
.fs1_c00295{font-size:41.388800pt;}
.fs3_c00295{font-size:51.970133pt;}
.fs0_c00295{font-size:62.240000pt;}
.y0_c00295{bottom:0.000000pt;}
.y2_c00295{bottom:97.547527pt;}
.y1_c00295{bottom:115.387067pt;}
.y35_c00295{bottom:136.107200pt;}
.y34_c00295{bottom:148.666762pt;}
.y33_c00295{bottom:167.947067pt;}
.y32_c00295{bottom:180.987067pt;}
.y1c_c00295{bottom:242.827067pt;}
.y31_c00295{bottom:243.627067pt;}
.y1b_c00295{bottom:269.707067pt;}
.y30_c00295{bottom:270.427067pt;}
.y1a_c00295{bottom:296.507067pt;}
.y2f_c00295{bottom:297.307067pt;}
.y19_c00295{bottom:323.387067pt;}
.y2e_c00295{bottom:324.107067pt;}
.y2d_c00295{bottom:350.987200pt;}
.y18_c00295{bottom:368.347067pt;}
.y2c_c00295{bottom:377.787067pt;}
.y17_c00295{bottom:395.227067pt;}
.y2b_c00295{bottom:404.667067pt;}
.y16_c00295{bottom:422.107200pt;}
.y2a_c00295{bottom:431.467067pt;}
.y15_c00295{bottom:448.907200pt;}
.y29_c00295{bottom:458.347067pt;}
.y14_c00295{bottom:475.707067pt;}
.y28_c00295{bottom:485.147067pt;}
.y13_c00295{bottom:502.507067pt;}
.y27_c00295{bottom:512.027067pt;}
.y26_c00295{bottom:538.827067pt;}
.y12_c00295{bottom:547.467067pt;}
.y25_c00295{bottom:565.707067pt;}
.y11_c00295{bottom:574.427067pt;}
.y24_c00295{bottom:592.587067pt;}
.y10_c00295{bottom:601.227067pt;}
.y23_c00295{bottom:619.387067pt;}
.yf_c00295{bottom:628.107067pt;}
.y22_c00295{bottom:646.267067pt;}
.ye_c00295{bottom:654.907067pt;}
.y21_c00295{bottom:673.067067pt;}
.yd_c00295{bottom:681.787067pt;}
.y20_c00295{bottom:699.947067pt;}
.yc_c00295{bottom:726.667067pt;}
.y1f_c00295{bottom:726.747067pt;}
.yb_c00295{bottom:753.627067pt;}
.ya_c00295{bottom:780.427067pt;}
.y9_c00295{bottom:807.307067pt;}
.y8_c00295{bottom:834.107067pt;}
.y7_c00295{bottom:860.987067pt;}
.y6_c00295{bottom:887.787067pt;}
.y5_c00295{bottom:914.667067pt;}
.y4_c00295{bottom:941.467067pt;}
.y1e_c00295{bottom:959.547067pt;}
.y3_c00295{bottom:986.347067pt;}
.y1d_c00295{bottom:986.427067pt;}
.h7_c00295{height:34.967066pt;}
.h5_c00295{height:34.967599pt;}
.h6_c00295{height:48.087599pt;}
.h3_c00295{height:55.645234pt;}
.h1_c00295{height:55.797187pt;}
.h2_c00295{height:56.192266pt;}
.h4_c00295{height:65.483366pt;}
.h0_c00295{height:1122.666667pt;}
.w0_c00295{width:793.333333pt;}
.x0_c00295{left:0.000000pt;}
.x2_c00295{left:73.520052pt;}
.x3_c00295{left:121.600000pt;}
.x1_c00295{left:383.760000pt;}
.x4_c00295{left:415.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_aa3a547cffc365046c1642bd.woff2')format("woff");}.ff1_c00296{font-family:ff1_c00296;line-height:1.106934;font-style:normal;font-weight:normal;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_8601d4aea86db86d9d601db4.woff2')format("woff");}.ff2_c00296{font-family:ff2_c00296;line-height:1.104492;font-style:normal;font-weight:normal;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_71f4419739fd18aeb8508b0e.woff2')format("woff");}.ff3_c00296{font-family:ff3_c00296;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00296;src:url('chunks/assets/font_b1f44a2f3497ae0e5efb02c4.woff2')format("woff");}.ff4_c00296{font-family:ff4_c00296;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00296;src:url('chunks/assets/font_3bea9b88c96c1f1c7f62a515.woff2')format("woff");}.ff5_c00296{font-family:ff5_c00296;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00296;src:url('chunks/assets/font_2f2d138ff74aef5136b3b86e.woff2')format("woff");}.ff6_c00296{font-family:ff6_c00296;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00296;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff7_c00296{font-family:ff7_c00296;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00296{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00296{vertical-align:-14.760000px;}
.v0_c00296{vertical-align:0.000000px;}
.v1_c00296{vertical-align:32.040000px;}
.ls12_c00296{letter-spacing:-1.064088px;}
.ls10_c00296{letter-spacing:-0.344952px;}
.lsd_c00296{letter-spacing:-0.339105px;}
.ls11_c00296{letter-spacing:-0.304025px;}
.lse_c00296{letter-spacing:-0.274792px;}
.ls15_c00296{letter-spacing:-0.222172px;}
.ls16_c00296{letter-spacing:-0.146166px;}
.lsc_c00296{letter-spacing:-0.075619px;}
.ls4_c00296{letter-spacing:-0.063018px;}
.ls14_c00296{letter-spacing:-0.052620px;}
.ls9_c00296{letter-spacing:-0.049014px;}
.lsb_c00296{letter-spacing:-0.042012px;}
.ls8_c00296{letter-spacing:-0.028008px;}
.ls6_c00296{letter-spacing:-0.021006px;}
.lsa_c00296{letter-spacing:-0.014004px;}
.ls18_c00296{letter-spacing:-0.011693px;}
.ls7_c00296{letter-spacing:-0.007002px;}
.ls13_c00296{letter-spacing:-0.005847px;}
.ls5_c00296{letter-spacing:0.000000px;}
.ls2_c00296{letter-spacing:0.007002px;}
.ls1_c00296{letter-spacing:0.021006px;}
.ls0_c00296{letter-spacing:0.023281px;}
.lsf_c00296{letter-spacing:0.023387px;}
.ls17_c00296{letter-spacing:0.356645px;}
.ls3_c00296{letter-spacing:0.362492px;}
.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;}
}
.ws3_c00296{word-spacing:-58.466400px;}
.ws1_c00296{word-spacing:-19.458558px;}
.ws0_c00296{word-spacing:-12.967628px;}
.ws2_c00296{word-spacing:-10.397640px;}
.ws21_c00296{word-spacing:-0.070160px;}
.ws4_c00296{word-spacing:0.000000px;}
.ws8_c00296{word-spacing:0.014004px;}
.ws1f_c00296{word-spacing:0.017540px;}
.ws23_c00296{word-spacing:0.023387px;}
.wsc_c00296{word-spacing:0.035010px;}
.ws20_c00296{word-spacing:0.064313px;}
.ws22_c00296{word-spacing:0.157859px;}
.wse_c00296{word-spacing:0.343098px;}
.ws1d_c00296{word-spacing:1.397347px;}
.ws1b_c00296{word-spacing:1.432427px;}
.ws1c_c00296{word-spacing:1.438273px;}
.ws1a_c00296{word-spacing:1.730605px;}
.ws19_c00296{word-spacing:1.794918px;}
.ws1e_c00296{word-spacing:2.519902px;}
.ws18_c00296{word-spacing:5.769648px;}
.ws15_c00296{word-spacing:6.147756px;}
.wsd_c00296{word-spacing:11.126178px;}
.ws9_c00296{word-spacing:11.868390px;}
.ws7_c00296{word-spacing:12.617604px;}
.ws5_c00296{word-spacing:14.046012px;}
.wsf_c00296{word-spacing:15.845526px;}
.ws11_c00296{word-spacing:16.944840px;}
.ws16_c00296{word-spacing:19.444554px;}
.ws10_c00296{word-spacing:28.078020px;}
.ws14_c00296{word-spacing:32.776362px;}
.wsb_c00296{word-spacing:37.453698px;}
.ws17_c00296{word-spacing:38.139894px;}
.wsa_c00296{word-spacing:38.511000px;}
.ws6_c00296{word-spacing:41.416830px;}
.ws12_c00296{word-spacing:53.313228px;}
.ws13_c00296{word-spacing:57.990564px;}
._3_c00296{margin-left:-7.366758px;}
._1_c00296{margin-left:-1.274364px;}
._0_c00296{width:1.071306px;}
._4_c00296{width:2.398628px;}
._2_c00296{width:5.930694px;}
.fc0_c00296{color:rgb(0,0,0);}
.fs2_c00296{font-size:37.809600px;}
.fs1_c00296{font-size:46.562400px;}
.fs3_c00296{font-size:58.466400px;}
.fs0_c00296{font-size:70.020000px;}
.y0_c00296{bottom:0.000000px;}
.y2_c00296{bottom:109.740968px;}
.y1_c00296{bottom:129.810450px;}
.y29_c00296{bottom:153.120600px;}
.y28_c00296{bottom:167.250107px;}
.y27_c00296{bottom:188.940450px;}
.y26_c00296{bottom:203.610450px;}
.y25_c00296{bottom:263.548951px;}
.y24_c00296{bottom:293.788839px;}
.y23_c00296{bottom:323.939451px;}
.y22_c00296{bottom:354.179338px;}
.y21_c00296{bottom:384.329950px;}
.y20_c00296{bottom:414.569838px;}
.y1f_c00296{bottom:444.720450px;}
.y1e_c00296{bottom:475.770600px;}
.y1d_c00296{bottom:505.920450px;}
.y1c_c00296{bottom:536.160450px;}
.y1b_c00296{bottom:566.310450px;}
.y1a_c00296{bottom:596.460450px;}
.y19_c00296{bottom:626.610450px;}
.y18_c00296{bottom:656.850450px;}
.y17_c00296{bottom:687.000450px;}
.y16_c00296{bottom:717.240450px;}
.y15_c00296{bottom:747.390450px;}
.y14_c00296{bottom:777.630450px;}
.y13_c00296{bottom:807.780450px;}
.yb_c00296{bottom:827.400779px;}
.y12_c00296{bottom:838.020450px;}
.y11_c00296{bottom:868.170450px;}
.ya_c00296{bottom:877.890450px;}
.y10_c00296{bottom:898.410450px;}
.y9_c00296{bottom:908.220450px;}
.yf_c00296{bottom:928.560450px;}
.y8_c00296{bottom:938.370450px;}
.ye_c00296{bottom:958.800450px;}
.y7_c00296{bottom:968.610450px;}
.yd_c00296{bottom:988.950450px;}
.y6_c00296{bottom:1019.100450px;}
.yc_c00296{bottom:1019.190450px;}
.y5_c00296{bottom:1049.340450px;}
.y4_c00296{bottom:1079.580450px;}
.y3_c00296{bottom:1109.730450px;}
.h7_c00296{height:39.337949px;}
.h5_c00296{height:39.338549px;}
.h6_c00296{height:54.098549px;}
.h2_c00296{height:62.600889px;}
.h1_c00296{height:62.771836px;}
.h4_c00296{height:63.216299px;}
.h3_c00296{height:73.668786px;}
.h0_c00296{height:1263.000000px;}
.w0_c00296{width:892.500000px;}
.x0_c00296{left:0.000000px;}
.x2_c00296{left:82.710059px;}
.x3_c00296{left:136.800000px;}
.x1_c00296{left:431.730000px;}
.x5_c00296{left:446.400000px;}
.x4_c00296{left:467.190000px;}
@media print{
.v2_c00296{vertical-align:-13.120000pt;}
.v0_c00296{vertical-align:0.000000pt;}
.v1_c00296{vertical-align:28.480000pt;}
.ls12_c00296{letter-spacing:-0.945856pt;}
.ls10_c00296{letter-spacing:-0.306624pt;}
.lsd_c00296{letter-spacing:-0.301427pt;}
.ls11_c00296{letter-spacing:-0.270245pt;}
.lse_c00296{letter-spacing:-0.244260pt;}
.ls15_c00296{letter-spacing:-0.197487pt;}
.ls16_c00296{letter-spacing:-0.129925pt;}
.lsc_c00296{letter-spacing:-0.067217pt;}
.ls4_c00296{letter-spacing:-0.056016pt;}
.ls14_c00296{letter-spacing:-0.046773pt;}
.ls9_c00296{letter-spacing:-0.043568pt;}
.lsb_c00296{letter-spacing:-0.037344pt;}
.ls8_c00296{letter-spacing:-0.024896pt;}
.ls6_c00296{letter-spacing:-0.018672pt;}
.lsa_c00296{letter-spacing:-0.012448pt;}
.ls18_c00296{letter-spacing:-0.010394pt;}
.ls7_c00296{letter-spacing:-0.006224pt;}
.ls13_c00296{letter-spacing:-0.005197pt;}
.ls5_c00296{letter-spacing:0.000000pt;}
.ls2_c00296{letter-spacing:0.006224pt;}
.ls1_c00296{letter-spacing:0.018672pt;}
.ls0_c00296{letter-spacing:0.020694pt;}
.lsf_c00296{letter-spacing:0.020788pt;}
.ls17_c00296{letter-spacing:0.317018pt;}
.ls3_c00296{letter-spacing:0.322215pt;}
.ws3_c00296{word-spacing:-51.970133pt;}
.ws1_c00296{word-spacing:-17.296496pt;}
.ws0_c00296{word-spacing:-11.526781pt;}
.ws2_c00296{word-spacing:-9.242347pt;}
.ws21_c00296{word-spacing:-0.062364pt;}
.ws4_c00296{word-spacing:0.000000pt;}
.ws8_c00296{word-spacing:0.012448pt;}
.ws1f_c00296{word-spacing:0.015591pt;}
.ws23_c00296{word-spacing:0.020788pt;}
.wsc_c00296{word-spacing:0.031120pt;}
.ws20_c00296{word-spacing:0.057167pt;}
.ws22_c00296{word-spacing:0.140319pt;}
.wse_c00296{word-spacing:0.304976pt;}
.ws1d_c00296{word-spacing:1.242086pt;}
.ws1b_c00296{word-spacing:1.273268pt;}
.ws1c_c00296{word-spacing:1.278465pt;}
.ws1a_c00296{word-spacing:1.538316pt;}
.ws19_c00296{word-spacing:1.595483pt;}
.ws1e_c00296{word-spacing:2.239913pt;}
.ws18_c00296{word-spacing:5.128576pt;}
.ws15_c00296{word-spacing:5.464672pt;}
.wsd_c00296{word-spacing:9.889936pt;}
.ws9_c00296{word-spacing:10.549680pt;}
.ws7_c00296{word-spacing:11.215648pt;}
.ws5_c00296{word-spacing:12.485344pt;}
.wsf_c00296{word-spacing:14.084912pt;}
.ws11_c00296{word-spacing:15.062080pt;}
.ws16_c00296{word-spacing:17.284048pt;}
.ws10_c00296{word-spacing:24.958240pt;}
.ws14_c00296{word-spacing:29.134544pt;}
.wsb_c00296{word-spacing:33.292176pt;}
.ws17_c00296{word-spacing:33.902128pt;}
.wsa_c00296{word-spacing:34.232000pt;}
.ws6_c00296{word-spacing:36.814960pt;}
.ws12_c00296{word-spacing:47.389536pt;}
.ws13_c00296{word-spacing:51.547168pt;}
._3_c00296{margin-left:-6.548229pt;}
._1_c00296{margin-left:-1.132768pt;}
._0_c00296{width:0.952272pt;}
._4_c00296{width:2.132114pt;}
._2_c00296{width:5.271728pt;}
.fs2_c00296{font-size:33.608533pt;}
.fs1_c00296{font-size:41.388800pt;}
.fs3_c00296{font-size:51.970133pt;}
.fs0_c00296{font-size:62.240000pt;}
.y0_c00296{bottom:0.000000pt;}
.y2_c00296{bottom:97.547527pt;}
.y1_c00296{bottom:115.387067pt;}
.y29_c00296{bottom:136.107200pt;}
.y28_c00296{bottom:148.666762pt;}
.y27_c00296{bottom:167.947067pt;}
.y26_c00296{bottom:180.987067pt;}
.y25_c00296{bottom:234.265735pt;}
.y24_c00296{bottom:261.145635pt;}
.y23_c00296{bottom:287.946179pt;}
.y22_c00296{bottom:314.826079pt;}
.y21_c00296{bottom:341.626623pt;}
.y20_c00296{bottom:368.506523pt;}
.y1f_c00296{bottom:395.307067pt;}
.y1e_c00296{bottom:422.907200pt;}
.y1d_c00296{bottom:449.707067pt;}
.y1c_c00296{bottom:476.587067pt;}
.y1b_c00296{bottom:503.387067pt;}
.y1a_c00296{bottom:530.187067pt;}
.y19_c00296{bottom:556.987067pt;}
.y18_c00296{bottom:583.867067pt;}
.y17_c00296{bottom:610.667067pt;}
.y16_c00296{bottom:637.547067pt;}
.y15_c00296{bottom:664.347067pt;}
.y14_c00296{bottom:691.227067pt;}
.y13_c00296{bottom:718.027067pt;}
.yb_c00296{bottom:735.467359pt;}
.y12_c00296{bottom:744.907067pt;}
.y11_c00296{bottom:771.707067pt;}
.ya_c00296{bottom:780.347067pt;}
.y10_c00296{bottom:798.587067pt;}
.y9_c00296{bottom:807.307067pt;}
.yf_c00296{bottom:825.387067pt;}
.y8_c00296{bottom:834.107067pt;}
.ye_c00296{bottom:852.267067pt;}
.y7_c00296{bottom:860.987067pt;}
.yd_c00296{bottom:879.067067pt;}
.y6_c00296{bottom:905.867067pt;}
.yc_c00296{bottom:905.947067pt;}
.y5_c00296{bottom:932.747067pt;}
.y4_c00296{bottom:959.627067pt;}
.y3_c00296{bottom:986.427067pt;}
.h7_c00296{height:34.967066pt;}
.h5_c00296{height:34.967599pt;}
.h6_c00296{height:48.087599pt;}
.h2_c00296{height:55.645234pt;}
.h1_c00296{height:55.797187pt;}
.h4_c00296{height:56.192266pt;}
.h3_c00296{height:65.483366pt;}
.h0_c00296{height:1122.666667pt;}
.w0_c00296{width:793.333333pt;}
.x0_c00296{left:0.000000pt;}
.x2_c00296{left:73.520052pt;}
.x3_c00296{left:121.600000pt;}
.x1_c00296{left:383.760000pt;}
.x5_c00296{left:396.800000pt;}
.x4_c00296{left:415.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_741dc84445e0c96eaa1571d5.woff2')format("woff");}.ff1_c00297{font-family:ff1_c00297;line-height:1.106934;font-style:normal;font-weight:normal;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_16d5a40cdcf3badc7f058bba.woff2')format("woff");}.ff2_c00297{font-family:ff2_c00297;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00297{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00297{vertical-align:0.000000px;}
.ls6_c00297{letter-spacing:-0.161046px;}
.ls4_c00297{letter-spacing:-0.063018px;}
.ls9_c00297{letter-spacing:-0.056016px;}
.ls8_c00297{letter-spacing:-0.035010px;}
.ls7_c00297{letter-spacing:-0.014004px;}
.ls5_c00297{letter-spacing:0.000000px;}
.ls1_c00297{letter-spacing:0.007002px;}
.ls2_c00297{letter-spacing:0.014004px;}
.ls0_c00297{letter-spacing:0.042012px;}
.ls3_c00297{letter-spacing:0.119034px;}
.sc__c00297{text-shadow:none;}
.sc0_c00297{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00297{-webkit-text-stroke:0px transparent;}
.sc0_c00297{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00297{word-spacing:-19.507572px;}
.ws7_c00297{word-spacing:-0.056016px;}
.ws1_c00297{word-spacing:0.000000px;}
.ws3_c00297{word-spacing:0.357102px;}
.ws9_c00297{word-spacing:0.399114px;}
.ws2_c00297{word-spacing:0.504144px;}
.ws6_c00297{word-spacing:4.320234px;}
.ws5_c00297{word-spacing:6.861960px;}
.wsc_c00297{word-spacing:12.568590px;}
.ws4_c00297{word-spacing:13.317804px;}
.wsa_c00297{word-spacing:17.266932px;}
.ws8_c00297{word-spacing:19.780650px;}
.wsb_c00297{word-spacing:20.508858px;}
._4_c00297{margin-left:-20.606886px;}
._3_c00297{margin-left:-19.444554px;}
._2_c00297{margin-left:-1.393398px;}
._0_c00297{width:1.337382px;}
._5_c00297{width:2.520720px;}
._1_c00297{width:7.926264px;}
.fc0_c00297{color:rgb(0,0,0);}
.fs0_c00297{font-size:70.020000px;}
.y0_c00297{bottom:0.000000px;}
.y2_c00297{bottom:109.740968px;}
.y1_c00297{bottom:129.810450px;}
.y1a_c00297{bottom:182.820450px;}
.y19_c00297{bottom:203.604672px;}
.y18_c00297{bottom:233.844560px;}
.y17_c00297{bottom:263.995171px;}
.y16_c00297{bottom:294.235059px;}
.y15_c00297{bottom:324.385671px;}
.y14_c00297{bottom:354.625559px;}
.y13_c00297{bottom:384.776171px;}
.y12_c00297{bottom:415.016058px;}
.y11_c00297{bottom:445.166670px;}
.y10_c00297{bottom:475.406557px;}
.yf_c00297{bottom:505.557169px;}
.ye_c00297{bottom:535.797057px;}
.yd_c00297{bottom:565.947669px;}
.yc_c00297{bottom:596.187557px;}
.yb_c00297{bottom:626.338169px;}
.ya_c00297{bottom:656.488780px;}
.y9_c00297{bottom:686.639392px;}
.y8_c00297{bottom:716.879280px;}
.y7_c00297{bottom:747.029892px;}
.y6_c00297{bottom:773.490450px;}
.y5_c00297{bottom:1049.341098px;}
.y4_c00297{bottom:1079.580985px;}
.y3_c00297{bottom:1109.731597px;}
.h1_c00297{height:62.771836px;}
.h2_c00297{height:63.216299px;}
.h0_c00297{height:1263.000000px;}
.w0_c00297{width:892.500000px;}
.x0_c00297{left:0.000000px;}
.x2_c00297{left:82.710059px;}
.x8_c00297{left:136.799654px;}
.x5_c00297{left:163.080765px;}
.x7_c00297{left:189.360167px;}
.x4_c00297{left:297.181318px;}
.x1_c00297{left:431.730000px;}
.x3_c00297{left:446.400940px;}
.x6_c00297{left:741.060000px;}
@media print{
.v0_c00297{vertical-align:0.000000pt;}
.ls6_c00297{letter-spacing:-0.143152pt;}
.ls4_c00297{letter-spacing:-0.056016pt;}
.ls9_c00297{letter-spacing:-0.049792pt;}
.ls8_c00297{letter-spacing:-0.031120pt;}
.ls7_c00297{letter-spacing:-0.012448pt;}
.ls5_c00297{letter-spacing:0.000000pt;}
.ls1_c00297{letter-spacing:0.006224pt;}
.ls2_c00297{letter-spacing:0.012448pt;}
.ls0_c00297{letter-spacing:0.037344pt;}
.ls3_c00297{letter-spacing:0.105808pt;}
.ws0_c00297{word-spacing:-17.340064pt;}
.ws7_c00297{word-spacing:-0.049792pt;}
.ws1_c00297{word-spacing:0.000000pt;}
.ws3_c00297{word-spacing:0.317424pt;}
.ws9_c00297{word-spacing:0.354768pt;}
.ws2_c00297{word-spacing:0.448128pt;}
.ws6_c00297{word-spacing:3.840208pt;}
.ws5_c00297{word-spacing:6.099520pt;}
.wsc_c00297{word-spacing:11.172080pt;}
.ws4_c00297{word-spacing:11.838048pt;}
.wsa_c00297{word-spacing:15.348384pt;}
.ws8_c00297{word-spacing:17.582800pt;}
.wsb_c00297{word-spacing:18.230096pt;}
._4_c00297{margin-left:-18.317232pt;}
._3_c00297{margin-left:-17.284048pt;}
._2_c00297{margin-left:-1.238576pt;}
._0_c00297{width:1.188784pt;}
._5_c00297{width:2.240640pt;}
._1_c00297{width:7.045568pt;}
.fs0_c00297{font-size:62.240000pt;}
.y0_c00297{bottom:0.000000pt;}
.y2_c00297{bottom:97.547527pt;}
.y1_c00297{bottom:115.387067pt;}
.y1a_c00297{bottom:162.507067pt;}
.y19_c00297{bottom:180.981931pt;}
.y18_c00297{bottom:207.861831pt;}
.y17_c00297{bottom:234.662375pt;}
.y16_c00297{bottom:261.542275pt;}
.y15_c00297{bottom:288.342819pt;}
.y14_c00297{bottom:315.222719pt;}
.y13_c00297{bottom:342.023263pt;}
.y12_c00297{bottom:368.903163pt;}
.y11_c00297{bottom:395.703707pt;}
.y10_c00297{bottom:422.583607pt;}
.yf_c00297{bottom:449.384151pt;}
.ye_c00297{bottom:476.264051pt;}
.yd_c00297{bottom:503.064595pt;}
.yc_c00297{bottom:529.944495pt;}
.yb_c00297{bottom:556.745039pt;}
.ya_c00297{bottom:583.545583pt;}
.y9_c00297{bottom:610.346127pt;}
.y8_c00297{bottom:637.226027pt;}
.y7_c00297{bottom:664.026571pt;}
.y6_c00297{bottom:687.547067pt;}
.y5_c00297{bottom:932.747643pt;}
.y4_c00297{bottom:959.627543pt;}
.y3_c00297{bottom:986.428087pt;}
.h1_c00297{height:55.797187pt;}
.h2_c00297{height:56.192266pt;}
.h0_c00297{height:1122.666667pt;}
.w0_c00297{width:793.333333pt;}
.x0_c00297{left:0.000000pt;}
.x2_c00297{left:73.520052pt;}
.x8_c00297{left:121.599692pt;}
.x5_c00297{left:144.960680pt;}
.x7_c00297{left:168.320148pt;}
.x4_c00297{left:264.161172pt;}
.x1_c00297{left:383.760000pt;}
.x3_c00297{left:396.800836pt;}
.x6_c00297{left:658.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a824f3c9d78674f77327b2d8.woff2')format("woff");}.ff1_c00298{font-family:ff1_c00298;line-height:1.106934;font-style:normal;font-weight:normal;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_67c7daf95bf135957f7cc977.woff2')format("woff");}.ff2_c00298{font-family:ff2_c00298;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00298{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00298{vertical-align:0.000000px;}
.ls1_c00298{letter-spacing:-0.063018px;}
.ls3_c00298{letter-spacing:-0.042012px;}
.ls6_c00298{letter-spacing:-0.035010px;}
.ls5_c00298{letter-spacing:-0.028008px;}
.ls4_c00298{letter-spacing:-0.014004px;}
.ls7_c00298{letter-spacing:-0.007002px;}
.ls2_c00298{letter-spacing:0.000000px;}
.ls0_c00298{letter-spacing:0.042012px;}
.sc__c00298{text-shadow:none;}
.sc0_c00298{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00298{-webkit-text-stroke:0px transparent;}
.sc0_c00298{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00298{word-spacing:-19.507572px;}
.ws7_c00298{word-spacing:-0.014004px;}
.ws1_c00298{word-spacing:0.000000px;}
.ws2_c00298{word-spacing:0.028008px;}
.ws6_c00298{word-spacing:5.755644px;}
.ws9_c00298{word-spacing:6.476850px;}
.ws3_c00298{word-spacing:10.453986px;}
.ws4_c00298{word-spacing:15.481422px;}
.ws5_c00298{word-spacing:15.859530px;}
.ws8_c00298{word-spacing:29.541438px;}
._2_c00298{margin-left:-1.267362px;}
._0_c00298{width:1.001286px;}
._1_c00298{width:8.283366px;}
.fc0_c00298{color:rgb(0,0,0);}
.fs0_c00298{font-size:70.020000px;}
.y0_c00298{bottom:0.000000px;}
.y2_c00298{bottom:109.740968px;}
.y1_c00298{bottom:129.810450px;}
.y19_c00298{bottom:166.440450px;}
.y18_c00298{bottom:196.590450px;}
.y17_c00298{bottom:226.830450px;}
.y16_c00298{bottom:256.980450px;}
.y15_c00298{bottom:287.220450px;}
.y14_c00298{bottom:317.370450px;}
.y13_c00298{bottom:347.610450px;}
.y12_c00298{bottom:377.760450px;}
.y11_c00298{bottom:408.000600px;}
.y10_c00298{bottom:438.150450px;}
.yf_c00298{bottom:468.390450px;}
.ye_c00298{bottom:498.540600px;}
.yd_c00298{bottom:528.780450px;}
.yc_c00298{bottom:558.930450px;}
.yb_c00298{bottom:589.170450px;}
.ya_c00298{bottom:619.320450px;}
.y9_c00298{bottom:649.560450px;}
.y8_c00298{bottom:679.710450px;}
.y7_c00298{bottom:709.950450px;}
.y6_c00298{bottom:740.100450px;}
.y5_c00298{bottom:1049.340450px;}
.y4_c00298{bottom:1079.580450px;}
.y3_c00298{bottom:1109.730450px;}
.h1_c00298{height:62.771836px;}
.h2_c00298{height:63.216299px;}
.h0_c00298{height:1263.000000px;}
.w0_c00298{width:892.500000px;}
.x0_c00298{left:0.000000px;}
.x2_c00298{left:82.710059px;}
.x4_c00298{left:136.800000px;}
.x5_c00298{left:163.080000px;}
.x3_c00298{left:343.260000px;}
.x1_c00298{left:431.730000px;}
@media print{
.v0_c00298{vertical-align:0.000000pt;}
.ls1_c00298{letter-spacing:-0.056016pt;}
.ls3_c00298{letter-spacing:-0.037344pt;}
.ls6_c00298{letter-spacing:-0.031120pt;}
.ls5_c00298{letter-spacing:-0.024896pt;}
.ls4_c00298{letter-spacing:-0.012448pt;}
.ls7_c00298{letter-spacing:-0.006224pt;}
.ls2_c00298{letter-spacing:0.000000pt;}
.ls0_c00298{letter-spacing:0.037344pt;}
.ws0_c00298{word-spacing:-17.340064pt;}
.ws7_c00298{word-spacing:-0.012448pt;}
.ws1_c00298{word-spacing:0.000000pt;}
.ws2_c00298{word-spacing:0.024896pt;}
.ws6_c00298{word-spacing:5.116128pt;}
.ws9_c00298{word-spacing:5.757200pt;}
.ws3_c00298{word-spacing:9.292432pt;}
.ws4_c00298{word-spacing:13.761264pt;}
.ws5_c00298{word-spacing:14.097360pt;}
.ws8_c00298{word-spacing:26.259056pt;}
._2_c00298{margin-left:-1.126544pt;}
._0_c00298{width:0.890032pt;}
._1_c00298{width:7.362992pt;}
.fs0_c00298{font-size:62.240000pt;}
.y0_c00298{bottom:0.000000pt;}
.y2_c00298{bottom:97.547527pt;}
.y1_c00298{bottom:115.387067pt;}
.y19_c00298{bottom:147.947067pt;}
.y18_c00298{bottom:174.747067pt;}
.y17_c00298{bottom:201.627067pt;}
.y16_c00298{bottom:228.427067pt;}
.y15_c00298{bottom:255.307067pt;}
.y14_c00298{bottom:282.107067pt;}
.y13_c00298{bottom:308.987067pt;}
.y12_c00298{bottom:335.787067pt;}
.y11_c00298{bottom:362.667200pt;}
.y10_c00298{bottom:389.467067pt;}
.yf_c00298{bottom:416.347067pt;}
.ye_c00298{bottom:443.147200pt;}
.yd_c00298{bottom:470.027067pt;}
.yc_c00298{bottom:496.827067pt;}
.yb_c00298{bottom:523.707067pt;}
.ya_c00298{bottom:550.507067pt;}
.y9_c00298{bottom:577.387067pt;}
.y8_c00298{bottom:604.187067pt;}
.y7_c00298{bottom:631.067067pt;}
.y6_c00298{bottom:657.867067pt;}
.y5_c00298{bottom:932.747067pt;}
.y4_c00298{bottom:959.627067pt;}
.y3_c00298{bottom:986.427067pt;}
.h1_c00298{height:55.797187pt;}
.h2_c00298{height:56.192266pt;}
.h0_c00298{height:1122.666667pt;}
.w0_c00298{width:793.333333pt;}
.x0_c00298{left:0.000000pt;}
.x2_c00298{left:73.520052pt;}
.x4_c00298{left:121.600000pt;}
.x5_c00298{left:144.960000pt;}
.x3_c00298{left:305.120000pt;}
.x1_c00298{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8862020854627020eaf141df.woff2')format("woff");}.ff1_c00299{font-family:ff1_c00299;line-height:1.106934;font-style:normal;font-weight:normal;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_5ad11f52b1d6d12f541d50ed.woff2')format("woff");}.ff2_c00299{font-family:ff2_c00299;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00299{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00299{vertical-align:0.000000px;}
.ls1_c00299{letter-spacing:-0.063018px;}
.ls7_c00299{letter-spacing:-0.049014px;}
.ls6_c00299{letter-spacing:-0.042012px;}
.ls3_c00299{letter-spacing:-0.035010px;}
.ls5_c00299{letter-spacing:-0.021006px;}
.ls4_c00299{letter-spacing:-0.014004px;}
.ls2_c00299{letter-spacing:0.000000px;}
.ls0_c00299{letter-spacing:0.042012px;}
.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:-19.507572px;}
.ws1_c00299{word-spacing:0.000000px;}
.ws5_c00299{word-spacing:0.035010px;}
.ws2_c00299{word-spacing:0.378108px;}
.ws4_c00299{word-spacing:2.548728px;}
.ws3_c00299{word-spacing:2.884824px;}
._1_c00299{margin-left:-1.330380px;}
._2_c00299{width:1.197342px;}
._0_c00299{width:7.926264px;}
.fc0_c00299{color:rgb(0,0,0);}
.fs0_c00299{font-size:70.020000px;}
.y0_c00299{bottom:0.000000px;}
.y2_c00299{bottom:109.740968px;}
.y1_c00299{bottom:129.810450px;}
.y21_c00299{bottom:153.928497px;}
.y20_c00299{bottom:173.997980px;}
.y1f_c00299{bottom:194.158488px;}
.y1e_c00299{bottom:214.318997px;}
.y1d_c00299{bottom:234.388479px;}
.y1c_c00299{bottom:254.548988px;}
.y1b_c00299{bottom:274.618470px;}
.y1a_c00299{bottom:294.687953px;}
.y19_c00299{bottom:314.848461px;}
.y18_c00299{bottom:335.008969px;}
.y17_c00299{bottom:355.078452px;}
.y16_c00299{bottom:375.238960px;}
.y15_c00299{bottom:395.399469px;}
.y14_c00299{bottom:415.468951px;}
.y13_c00299{bottom:435.629460px;}
.y12_c00299{bottom:455.789968px;}
.y11_c00299{bottom:475.859451px;}
.y10_c00299{bottom:496.019959px;}
.yf_c00299{bottom:516.180468px;}
.ye_c00299{bottom:536.249950px;}
.yd_c00299{bottom:556.410459px;}
.yc_c00299{bottom:576.570967px;}
.yb_c00299{bottom:596.640450px;}
.ya_c00299{bottom:617.610450px;}
.y9_c00299{bottom:647.760450px;}
.y8_c00299{bottom:678.000450px;}
.y7_c00299{bottom:708.150450px;}
.y6_c00299{bottom:738.390450px;}
.y5_c00299{bottom:764.760450px;}
.y4_c00299{bottom:1079.580450px;}
.y3_c00299{bottom:1109.730450px;}
.h1_c00299{height:62.771836px;}
.h2_c00299{height:63.216299px;}
.h0_c00299{height:1263.000000px;}
.w0_c00299{width:892.500000px;}
.x0_c00299{left:0.000000px;}
.x2_c00299{left:82.710059px;}
.x6_c00299{left:136.800000px;}
.x3_c00299{left:163.080000px;}
.x4_c00299{left:189.360000px;}
.x7_c00299{left:342.270000px;}
.x1_c00299{left:431.730000px;}
.x5_c00299{left:753.839850px;}
@media print{
.v0_c00299{vertical-align:0.000000pt;}
.ls1_c00299{letter-spacing:-0.056016pt;}
.ls7_c00299{letter-spacing:-0.043568pt;}
.ls6_c00299{letter-spacing:-0.037344pt;}
.ls3_c00299{letter-spacing:-0.031120pt;}
.ls5_c00299{letter-spacing:-0.018672pt;}
.ls4_c00299{letter-spacing:-0.012448pt;}
.ls2_c00299{letter-spacing:0.000000pt;}
.ls0_c00299{letter-spacing:0.037344pt;}
.ws0_c00299{word-spacing:-17.340064pt;}
.ws1_c00299{word-spacing:0.000000pt;}
.ws5_c00299{word-spacing:0.031120pt;}
.ws2_c00299{word-spacing:0.336096pt;}
.ws4_c00299{word-spacing:2.265536pt;}
.ws3_c00299{word-spacing:2.564288pt;}
._1_c00299{margin-left:-1.182560pt;}
._2_c00299{width:1.064304pt;}
._0_c00299{width:7.045568pt;}
.fs0_c00299{font-size:62.240000pt;}
.y0_c00299{bottom:0.000000pt;}
.y2_c00299{bottom:97.547527pt;}
.y1_c00299{bottom:115.387067pt;}
.y21_c00299{bottom:136.825331pt;}
.y20_c00299{bottom:154.664871pt;}
.y1f_c00299{bottom:172.585323pt;}
.y1e_c00299{bottom:190.505775pt;}
.y1d_c00299{bottom:208.345315pt;}
.y1c_c00299{bottom:226.265767pt;}
.y1b_c00299{bottom:244.105307pt;}
.y1a_c00299{bottom:261.944847pt;}
.y19_c00299{bottom:279.865299pt;}
.y18_c00299{bottom:297.785751pt;}
.y17_c00299{bottom:315.625291pt;}
.y16_c00299{bottom:333.545743pt;}
.y15_c00299{bottom:351.466195pt;}
.y14_c00299{bottom:369.305735pt;}
.y13_c00299{bottom:387.226187pt;}
.y12_c00299{bottom:405.146639pt;}
.y11_c00299{bottom:422.986179pt;}
.y10_c00299{bottom:440.906631pt;}
.yf_c00299{bottom:458.827083pt;}
.ye_c00299{bottom:476.666623pt;}
.yd_c00299{bottom:494.587075pt;}
.yc_c00299{bottom:512.507527pt;}
.yb_c00299{bottom:530.347067pt;}
.ya_c00299{bottom:548.987067pt;}
.y9_c00299{bottom:575.787067pt;}
.y8_c00299{bottom:602.667067pt;}
.y7_c00299{bottom:629.467067pt;}
.y6_c00299{bottom:656.347067pt;}
.y5_c00299{bottom:679.787067pt;}
.y4_c00299{bottom:959.627067pt;}
.y3_c00299{bottom:986.427067pt;}
.h1_c00299{height:55.797187pt;}
.h2_c00299{height:56.192266pt;}
.h0_c00299{height:1122.666667pt;}
.w0_c00299{width:793.333333pt;}
.x0_c00299{left:0.000000pt;}
.x2_c00299{left:73.520052pt;}
.x6_c00299{left:121.600000pt;}
.x3_c00299{left:144.960000pt;}
.x4_c00299{left:168.320000pt;}
.x7_c00299{left:304.240000pt;}
.x1_c00299{left:383.760000pt;}
.x5_c00299{left:670.079867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d3deaa15bbace9407f52b446.woff2')format("woff");}.ff1_c00300{font-family:ff1_c00300;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00300;src:url('chunks/assets/font_9ab80aaa67c8f59de8f5b855.woff2')format("woff");}.ff2_c00300{font-family:ff2_c00300;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00300;src:url('chunks/assets/font_d44d04bcbb5b4aa95e8f6244.woff2')format("woff");}.ff3_c00300{font-family:ff3_c00300;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00300;src:url('chunks/assets/font_259d70d87120201dfcd8462e.woff2')format("woff");}.ff4_c00300{font-family:ff4_c00300;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00300;src:url('chunks/assets/font_195394a1d0a913e452fe461e.woff2')format("woff");}.ff5_c00300{font-family:ff5_c00300;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00300{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00300{vertical-align:-14.400000px;}
.v0_c00300{vertical-align:0.000000px;}
.ls24_c00300{letter-spacing:-0.643130px;}
.ls1f_c00300{letter-spacing:-0.327412px;}
.ls23_c00300{letter-spacing:-0.251406px;}
.ls16_c00300{letter-spacing:-0.182052px;}
.ls21_c00300{letter-spacing:-0.105240px;}
.lsd_c00300{letter-spacing:-0.091026px;}
.ls1a_c00300{letter-spacing:-0.075619px;}
.ls19_c00300{letter-spacing:-0.070020px;}
.lsb_c00300{letter-spacing:-0.063018px;}
.ls18_c00300{letter-spacing:-0.056016px;}
.ls1b_c00300{letter-spacing:-0.052620px;}
.lsf_c00300{letter-spacing:-0.049014px;}
.ls22_c00300{letter-spacing:-0.046773px;}
.ls17_c00300{letter-spacing:-0.042012px;}
.ls10_c00300{letter-spacing:-0.035010px;}
.lse_c00300{letter-spacing:-0.028008px;}
.ls11_c00300{letter-spacing:-0.021006px;}
.ls13_c00300{letter-spacing:-0.014004px;}
.ls14_c00300{letter-spacing:-0.007002px;}
.ls20_c00300{letter-spacing:-0.005847px;}
.lsc_c00300{letter-spacing:0.000000px;}
.ls3_c00300{letter-spacing:0.007002px;}
.ls8_c00300{letter-spacing:0.014004px;}
.ls9_c00300{letter-spacing:0.017540px;}
.ls4_c00300{letter-spacing:0.021006px;}
.ls1_c00300{letter-spacing:0.028008px;}
.ls2_c00300{letter-spacing:0.042012px;}
.ls5_c00300{letter-spacing:0.049014px;}
.ls15_c00300{letter-spacing:0.056016px;}
.ls0_c00300{letter-spacing:0.077022px;}
.ls6_c00300{letter-spacing:0.084024px;}
.ls1c_c00300{letter-spacing:0.093546px;}
.ls1e_c00300{letter-spacing:0.163706px;}
.ls12_c00300{letter-spacing:0.357102px;}
.ls1d_c00300{letter-spacing:0.491118px;}
.ls7_c00300{letter-spacing:3.213918px;}
.lsa_c00300{letter-spacing:6.127279px;}
.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:-10.397640px;}
.ws32_c00300{word-spacing:-0.007002px;}
.ws3b_c00300{word-spacing:-0.005847px;}
.ws1_c00300{word-spacing:0.000000px;}
.ws8_c00300{word-spacing:0.014004px;}
.ws22_c00300{word-spacing:0.021006px;}
.ws9_c00300{word-spacing:0.035010px;}
.ws3f_c00300{word-spacing:0.263099px;}
.ws18_c00300{word-spacing:0.357102px;}
.ws27_c00300{word-spacing:0.399114px;}
.ws21_c00300{word-spacing:0.525150px;}
.ws40_c00300{word-spacing:0.654824px;}
.ws37_c00300{word-spacing:1.683832px;}
.ws39_c00300{word-spacing:2.011244px;}
.wsd_c00300{word-spacing:2.135610px;}
.ws38_c00300{word-spacing:2.174950px;}
.ws3a_c00300{word-spacing:2.502362px;}
.ws16_c00300{word-spacing:2.527722px;}
.ws19_c00300{word-spacing:2.884824px;}
.ws1a_c00300{word-spacing:2.898828px;}
.ws24_c00300{word-spacing:3.984138px;}
.wse_c00300{word-spacing:4.684338px;}
.ws3c_c00300{word-spacing:6.138972px;}
.ws3e_c00300{word-spacing:6.179898px;}
.ws3d_c00300{word-spacing:6.238365px;}
.ws3_c00300{word-spacing:6.385824px;}
.ws33_c00300{word-spacing:6.840954px;}
.ws2_c00300{word-spacing:6.917976px;}
.ws1f_c00300{word-spacing:7.940268px;}
.ws4_c00300{word-spacing:8.598456px;}
.ws15_c00300{word-spacing:9.683766px;}
.ws25_c00300{word-spacing:10.047870px;}
.wsc_c00300{word-spacing:11.168190px;}
.ws2b_c00300{word-spacing:11.882394px;}
.ws12_c00300{word-spacing:12.246498px;}
.ws29_c00300{word-spacing:13.688910px;}
.ws20_c00300{word-spacing:14.382108px;}
.ws13_c00300{word-spacing:14.767218px;}
.ws7_c00300{word-spacing:15.096312px;}
.wsa_c00300{word-spacing:16.216632px;}
.ws36_c00300{word-spacing:16.481678px;}
.ws35_c00300{word-spacing:16.984489px;}
.ws1b_c00300{word-spacing:18.016146px;}
.ws5_c00300{word-spacing:19.024434px;}
.ws14_c00300{word-spacing:19.066446px;}
.ws6_c00300{word-spacing:19.129464px;}
.ws2d_c00300{word-spacing:21.272076px;}
.ws23_c00300{word-spacing:24.128892px;}
.ws1c_c00300{word-spacing:25.893396px;}
.ws28_c00300{word-spacing:26.278506px;}
.ws34_c00300{word-spacing:26.649612px;}
.ws11_c00300{word-spacing:39.610314px;}
.ws31_c00300{word-spacing:42.859242px;}
.ws2e_c00300{word-spacing:48.642894px;}
.ws1d_c00300{word-spacing:57.234348px;}
.ws1e_c00300{word-spacing:57.605454px;}
.wsf_c00300{word-spacing:60.497280px;}
.ws2c_c00300{word-spacing:65.181618px;}
.ws17_c00300{word-spacing:65.454696px;}
.ws10_c00300{word-spacing:74.529288px;}
.wsb_c00300{word-spacing:77.421114px;}
.ws26_c00300{word-spacing:79.948836px;}
.ws2f_c00300{word-spacing:83.932974px;}
.ws30_c00300{word-spacing:85.340376px;}
.ws2a_c00300{word-spacing:93.609738px;}
._3_c00300{margin-left:-2.709774px;}
._1_c00300{margin-left:-1.148328px;}
._0_c00300{width:1.246356px;}
._2_c00300{width:5.930694px;}
.fc1_c00300{color:rgb(103,103,103);}
.fc0_c00300{color:rgb(0,0,0);}
.fs1_c00300{font-size:37.809600px;}
.fs2_c00300{font-size:58.466400px;}
.fs0_c00300{font-size:70.020000px;}
.y0_c00300{bottom:0.000000px;}
.y2_c00300{bottom:109.740968px;}
.y1_c00300{bottom:129.810450px;}
.y38_c00300{bottom:149.429891px;}
.y37_c00300{bottom:170.940450px;}
.y36_c00300{bottom:185.249548px;}
.y35_c00300{bottom:203.070107px;}
.y34_c00300{bottom:224.670450px;}
.y33_c00300{bottom:239.430450px;}
.y32_c00300{bottom:272.910450px;}
.y1d_c00300{bottom:283.617250px;}
.y31_c00300{bottom:303.150450px;}
.y1c_c00300{bottom:313.767862px;}
.y1b_c00300{bottom:344.007750px;}
.y30_c00300{bottom:353.640450px;}
.y2f_c00300{bottom:383.880450px;}
.y1a_c00300{bottom:394.497421px;}
.y2e_c00300{bottom:414.120600px;}
.y19_c00300{bottom:424.826584px;}
.y2d_c00300{bottom:444.270600px;}
.y18_c00300{bottom:454.977196px;}
.y2c_c00300{bottom:474.510450px;}
.y17_c00300{bottom:485.217084px;}
.y2b_c00300{bottom:504.660450px;}
.y16_c00300{bottom:515.367696px;}
.y2a_c00300{bottom:534.900450px;}
.y15_c00300{bottom:545.607583px;}
.y29_c00300{bottom:565.050450px;}
.y14_c00300{bottom:575.758196px;}
.y28_c00300{bottom:595.290450px;}
.y13_c00300{bottom:605.908807px;}
.y27_c00300{bottom:625.440450px;}
.y26_c00300{bottom:655.680450px;}
.y12_c00300{bottom:656.578780px;}
.y11_c00300{bottom:686.729393px;}
.y25_c00300{bottom:706.170450px;}
.y10_c00300{bottom:716.969280px;}
.y24_c00300{bottom:736.500450px;}
.yf_c00300{bottom:747.119892px;}
.y23_c00300{bottom:766.650450px;}
.ye_c00300{bottom:777.359779px;}
.y22_c00300{bottom:796.890450px;}
.yd_c00300{bottom:807.510391px;}
.y21_c00300{bottom:827.040600px;}
.yc_c00300{bottom:837.750279px;}
.yb_c00300{bottom:867.900891px;}
.y20_c00300{bottom:877.620450px;}
.ya_c00300{bottom:898.140779px;}
.y1f_c00300{bottom:928.200450px;}
.y9_c00300{bottom:948.630450px;}
.y1e_c00300{bottom:978.780450px;}
.y8_c00300{bottom:978.870450px;}
.y7_c00300{bottom:1009.110450px;}
.y6_c00300{bottom:1039.260450px;}
.y5_c00300{bottom:1069.500450px;}
.y4_c00300{bottom:1090.290545px;}
.y3_c00300{bottom:1110.451053px;}
.h6_c00300{height:39.338549px;}
.h4_c00300{height:39.698549px;}
.h5_c00300{height:54.098549px;}
.h3_c00300{height:62.600889px;}
.h1_c00300{height:62.771836px;}
.h2_c00300{height:63.216299px;}
.h0_c00300{height:1263.000000px;}
.w0_c00300{width:892.500000px;}
.x0_c00300{left:0.000000px;}
.x2_c00300{left:82.710059px;}
.x3_c00300{left:136.260000px;}
.x1_c00300{left:431.730000px;}
.x4_c00300{left:469.440000px;}
@media print{
.v1_c00300{vertical-align:-12.800000pt;}
.v0_c00300{vertical-align:0.000000pt;}
.ls24_c00300{letter-spacing:-0.571671pt;}
.ls1f_c00300{letter-spacing:-0.291033pt;}
.ls23_c00300{letter-spacing:-0.223472pt;}
.ls16_c00300{letter-spacing:-0.161824pt;}
.ls21_c00300{letter-spacing:-0.093546pt;}
.lsd_c00300{letter-spacing:-0.080912pt;}
.ls1a_c00300{letter-spacing:-0.067217pt;}
.ls19_c00300{letter-spacing:-0.062240pt;}
.lsb_c00300{letter-spacing:-0.056016pt;}
.ls18_c00300{letter-spacing:-0.049792pt;}
.ls1b_c00300{letter-spacing:-0.046773pt;}
.lsf_c00300{letter-spacing:-0.043568pt;}
.ls22_c00300{letter-spacing:-0.041576pt;}
.ls17_c00300{letter-spacing:-0.037344pt;}
.ls10_c00300{letter-spacing:-0.031120pt;}
.lse_c00300{letter-spacing:-0.024896pt;}
.ls11_c00300{letter-spacing:-0.018672pt;}
.ls13_c00300{letter-spacing:-0.012448pt;}
.ls14_c00300{letter-spacing:-0.006224pt;}
.ls20_c00300{letter-spacing:-0.005197pt;}
.lsc_c00300{letter-spacing:0.000000pt;}
.ls3_c00300{letter-spacing:0.006224pt;}
.ls8_c00300{letter-spacing:0.012448pt;}
.ls9_c00300{letter-spacing:0.015591pt;}
.ls4_c00300{letter-spacing:0.018672pt;}
.ls1_c00300{letter-spacing:0.024896pt;}
.ls2_c00300{letter-spacing:0.037344pt;}
.ls5_c00300{letter-spacing:0.043568pt;}
.ls15_c00300{letter-spacing:0.049792pt;}
.ls0_c00300{letter-spacing:0.068464pt;}
.ls6_c00300{letter-spacing:0.074688pt;}
.ls1c_c00300{letter-spacing:0.083152pt;}
.ls1e_c00300{letter-spacing:0.145516pt;}
.ls12_c00300{letter-spacing:0.317424pt;}
.ls1d_c00300{letter-spacing:0.436549pt;}
.ls7_c00300{letter-spacing:2.856816pt;}
.lsa_c00300{letter-spacing:5.446470pt;}
.ws0_c00300{word-spacing:-9.242347pt;}
.ws32_c00300{word-spacing:-0.006224pt;}
.ws3b_c00300{word-spacing:-0.005197pt;}
.ws1_c00300{word-spacing:0.000000pt;}
.ws8_c00300{word-spacing:0.012448pt;}
.ws22_c00300{word-spacing:0.018672pt;}
.ws9_c00300{word-spacing:0.031120pt;}
.ws3f_c00300{word-spacing:0.233866pt;}
.ws18_c00300{word-spacing:0.317424pt;}
.ws27_c00300{word-spacing:0.354768pt;}
.ws21_c00300{word-spacing:0.466800pt;}
.ws40_c00300{word-spacing:0.582065pt;}
.ws37_c00300{word-spacing:1.496740pt;}
.ws39_c00300{word-spacing:1.787773pt;}
.wsd_c00300{word-spacing:1.898320pt;}
.ws38_c00300{word-spacing:1.933289pt;}
.ws3a_c00300{word-spacing:2.224322pt;}
.ws16_c00300{word-spacing:2.246864pt;}
.ws19_c00300{word-spacing:2.564288pt;}
.ws1a_c00300{word-spacing:2.576736pt;}
.ws24_c00300{word-spacing:3.541456pt;}
.wse_c00300{word-spacing:4.163856pt;}
.ws3c_c00300{word-spacing:5.456864pt;}
.ws3e_c00300{word-spacing:5.493243pt;}
.ws3d_c00300{word-spacing:5.545213pt;}
.ws3_c00300{word-spacing:5.676288pt;}
.ws33_c00300{word-spacing:6.080848pt;}
.ws2_c00300{word-spacing:6.149312pt;}
.ws1f_c00300{word-spacing:7.058016pt;}
.ws4_c00300{word-spacing:7.643072pt;}
.ws15_c00300{word-spacing:8.607792pt;}
.ws25_c00300{word-spacing:8.931440pt;}
.wsc_c00300{word-spacing:9.927280pt;}
.ws2b_c00300{word-spacing:10.562128pt;}
.ws12_c00300{word-spacing:10.885776pt;}
.ws29_c00300{word-spacing:12.167920pt;}
.ws20_c00300{word-spacing:12.784096pt;}
.ws13_c00300{word-spacing:13.126416pt;}
.ws7_c00300{word-spacing:13.418944pt;}
.wsa_c00300{word-spacing:14.414784pt;}
.ws36_c00300{word-spacing:14.650381pt;}
.ws35_c00300{word-spacing:15.097324pt;}
.ws1b_c00300{word-spacing:16.014352pt;}
.ws5_c00300{word-spacing:16.910608pt;}
.ws14_c00300{word-spacing:16.947952pt;}
.ws6_c00300{word-spacing:17.003968pt;}
.ws2d_c00300{word-spacing:18.908512pt;}
.ws23_c00300{word-spacing:21.447904pt;}
.ws1c_c00300{word-spacing:23.016352pt;}
.ws28_c00300{word-spacing:23.358672pt;}
.ws34_c00300{word-spacing:23.688544pt;}
.ws11_c00300{word-spacing:35.209168pt;}
.ws31_c00300{word-spacing:38.097104pt;}
.ws2e_c00300{word-spacing:43.238128pt;}
.ws1d_c00300{word-spacing:50.874976pt;}
.ws1e_c00300{word-spacing:51.204848pt;}
.wsf_c00300{word-spacing:53.775360pt;}
.ws2c_c00300{word-spacing:57.939216pt;}
.ws17_c00300{word-spacing:58.181952pt;}
.ws10_c00300{word-spacing:66.248256pt;}
.wsb_c00300{word-spacing:68.818768pt;}
.ws26_c00300{word-spacing:71.065632pt;}
.ws2f_c00300{word-spacing:74.607088pt;}
.ws30_c00300{word-spacing:75.858112pt;}
.ws2a_c00300{word-spacing:83.208656pt;}
._3_c00300{margin-left:-2.408688pt;}
._1_c00300{margin-left:-1.020736pt;}
._0_c00300{width:1.107872pt;}
._2_c00300{width:5.271728pt;}
.fs1_c00300{font-size:33.608533pt;}
.fs2_c00300{font-size:51.970133pt;}
.fs0_c00300{font-size:62.240000pt;}
.y0_c00300{bottom:0.000000pt;}
.y2_c00300{bottom:97.547527pt;}
.y1_c00300{bottom:115.387067pt;}
.y38_c00300{bottom:132.826570pt;}
.y37_c00300{bottom:151.947067pt;}
.y36_c00300{bottom:164.666265pt;}
.y35_c00300{bottom:180.506762pt;}
.y34_c00300{bottom:199.707067pt;}
.y33_c00300{bottom:212.827067pt;}
.y32_c00300{bottom:242.587067pt;}
.y1d_c00300{bottom:252.104223pt;}
.y31_c00300{bottom:269.467067pt;}
.y1c_c00300{bottom:278.904767pt;}
.y1b_c00300{bottom:305.784667pt;}
.y30_c00300{bottom:314.347067pt;}
.y2f_c00300{bottom:341.227067pt;}
.y1a_c00300{bottom:350.664375pt;}
.y2e_c00300{bottom:368.107200pt;}
.y19_c00300{bottom:377.623631pt;}
.y2d_c00300{bottom:394.907200pt;}
.y18_c00300{bottom:404.424175pt;}
.y2c_c00300{bottom:421.787067pt;}
.y17_c00300{bottom:431.304075pt;}
.y2b_c00300{bottom:448.587067pt;}
.y16_c00300{bottom:458.104619pt;}
.y2a_c00300{bottom:475.467067pt;}
.y15_c00300{bottom:484.984519pt;}
.y29_c00300{bottom:502.267067pt;}
.y14_c00300{bottom:511.785063pt;}
.y28_c00300{bottom:529.147067pt;}
.y13_c00300{bottom:538.585607pt;}
.y27_c00300{bottom:555.947067pt;}
.y26_c00300{bottom:582.827067pt;}
.y12_c00300{bottom:583.625583pt;}
.y11_c00300{bottom:610.426127pt;}
.y25_c00300{bottom:627.707067pt;}
.y10_c00300{bottom:637.306027pt;}
.y24_c00300{bottom:654.667067pt;}
.yf_c00300{bottom:664.106571pt;}
.y23_c00300{bottom:681.467067pt;}
.ye_c00300{bottom:690.986471pt;}
.y22_c00300{bottom:708.347067pt;}
.yd_c00300{bottom:717.787015pt;}
.y21_c00300{bottom:735.147200pt;}
.yc_c00300{bottom:744.666915pt;}
.yb_c00300{bottom:771.467459pt;}
.y20_c00300{bottom:780.107067pt;}
.ya_c00300{bottom:798.347359pt;}
.y1f_c00300{bottom:825.067067pt;}
.y9_c00300{bottom:843.227067pt;}
.y1e_c00300{bottom:870.027067pt;}
.y8_c00300{bottom:870.107067pt;}
.y7_c00300{bottom:896.987067pt;}
.y6_c00300{bottom:923.787067pt;}
.y5_c00300{bottom:950.667067pt;}
.y4_c00300{bottom:969.147151pt;}
.y3_c00300{bottom:987.067603pt;}
.h6_c00300{height:34.967599pt;}
.h4_c00300{height:35.287599pt;}
.h5_c00300{height:48.087599pt;}
.h3_c00300{height:55.645234pt;}
.h1_c00300{height:55.797187pt;}
.h2_c00300{height:56.192266pt;}
.h0_c00300{height:1122.666667pt;}
.w0_c00300{width:793.333333pt;}
.x0_c00300{left:0.000000pt;}
.x2_c00300{left:73.520052pt;}
.x3_c00300{left:121.120000pt;}
.x1_c00300{left:383.760000pt;}
.x4_c00300{left:417.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_17a47b08cbb98359c4971e0c.woff2')format("woff");}.ff1_c00301{font-family:ff1_c00301;line-height:1.106934;font-style:normal;font-weight:normal;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_c34a065312a2ef8d4916fd2e.woff2')format("woff");}.ff2_c00301{font-family:ff2_c00301;line-height:1.104492;font-style:normal;font-weight:normal;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_59289c7b0f5605b63a324ea2.woff2')format("woff");}.ff3_c00301{font-family:ff3_c00301;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00301;src:url('chunks/assets/font_850b64b7c757ecfcd3f65944.woff2')format("woff");}.ff4_c00301{font-family:ff4_c00301;line-height:1.133301;font-style:normal;font-weight:normal;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_55256aec822299b474ba57f7.woff2')format("woff");}.ff5_c00301{font-family:ff5_c00301;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00301{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00301{vertical-align:-14.760000px;}
.v0_c00301{vertical-align:0.000000px;}
.v1_c00301{vertical-align:32.040000px;}
.ls13_c00301{letter-spacing:-0.444345px;}
.ls10_c00301{letter-spacing:-0.157859px;}
.ls15_c00301{letter-spacing:-0.111086px;}
.ls11_c00301{letter-spacing:-0.105240px;}
.lsf_c00301{letter-spacing:-0.075619px;}
.ls7_c00301{letter-spacing:-0.063018px;}
.lsb_c00301{letter-spacing:-0.042012px;}
.ls12_c00301{letter-spacing:-0.035080px;}
.lsd_c00301{letter-spacing:-0.035010px;}
.lsa_c00301{letter-spacing:-0.028008px;}
.ls9_c00301{letter-spacing:-0.021006px;}
.lsc_c00301{letter-spacing:-0.007002px;}
.ls8_c00301{letter-spacing:0.000000px;}
.ls3_c00301{letter-spacing:0.007002px;}
.ls4_c00301{letter-spacing:0.014004px;}
.ls2_c00301{letter-spacing:0.021006px;}
.ls6_c00301{letter-spacing:0.023281px;}
.ls0_c00301{letter-spacing:0.028008px;}
.ls5_c00301{letter-spacing:0.035010px;}
.lse_c00301{letter-spacing:0.259074px;}
.ls16_c00301{letter-spacing:0.368338px;}
.ls1_c00301{letter-spacing:0.441126px;}
.ls14_c00301{letter-spacing:0.672364px;}
.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:-12.967628px;}
.ws1_c00301{word-spacing:-10.397640px;}
.ws27_c00301{word-spacing:-1.017315px;}
.ws29_c00301{word-spacing:-0.356645px;}
.ws1c_c00301{word-spacing:-0.049014px;}
.ws2_c00301{word-spacing:0.000000px;}
.wsc_c00301{word-spacing:0.014004px;}
.ws28_c00301{word-spacing:0.122779px;}
.ws17_c00301{word-spacing:0.329094px;}
.ws5_c00301{word-spacing:0.343098px;}
.wsf_c00301{word-spacing:0.364104px;}
.ws15_c00301{word-spacing:1.820520px;}
.ws1e_c00301{word-spacing:2.870820px;}
.ws23_c00301{word-spacing:3.975715px;}
.ws22_c00301{word-spacing:4.133574px;}
.ws1a_c00301{word-spacing:4.404258px;}
.ws19_c00301{word-spacing:4.663332px;}
.ws16_c00301{word-spacing:5.391540px;}
.ws11_c00301{word-spacing:5.755644px;}
.ws25_c00301{word-spacing:5.805714px;}
.ws24_c00301{word-spacing:5.875873px;}
.ws18_c00301{word-spacing:6.133752px;}
.ws26_c00301{word-spacing:6.214978px;}
.ws7_c00301{word-spacing:7.107030px;}
.ws8_c00301{word-spacing:7.611174px;}
.ws6_c00301{word-spacing:7.926264px;}
.ws13_c00301{word-spacing:10.811088px;}
.ws21_c00301{word-spacing:11.133180px;}
.ws1f_c00301{word-spacing:14.753214px;}
.ws14_c00301{word-spacing:20.858958px;}
.wsb_c00301{word-spacing:21.202056px;}
.wse_c00301{word-spacing:21.230064px;}
.wsa_c00301{word-spacing:23.743782px;}
.ws10_c00301{word-spacing:28.099026px;}
.ws4_c00301{word-spacing:32.384250px;}
.ws9_c00301{word-spacing:37.782792px;}
.ws1b_c00301{word-spacing:38.525004px;}
.ws3_c00301{word-spacing:46.038150px;}
.ws1d_c00301{word-spacing:51.856812px;}
.ws20_c00301{word-spacing:67.275216px;}
.wsd_c00301{word-spacing:85.690476px;}
.ws12_c00301{word-spacing:113.404392px;}
._4_c00301{margin-left:-7.163700px;}
._0_c00301{margin-left:-1.477422px;}
._1_c00301{width:1.036296px;}
._5_c00301{width:2.142750px;}
._3_c00301{width:5.930694px;}
._2_c00301{width:21.188052px;}
.fc0_c00301{color:rgb(0,0,0);}
.fs2_c00301{font-size:37.809600px;}
.fs1_c00301{font-size:46.562400px;}
.fs3_c00301{font-size:58.466400px;}
.fs0_c00301{font-size:70.020000px;}
.y0_c00301{bottom:0.000000px;}
.y2_c00301{bottom:109.740968px;}
.y1_c00301{bottom:129.810450px;}
.y25_c00301{bottom:149.429548px;}
.y24_c00301{bottom:167.250107px;}
.y23_c00301{bottom:188.940450px;}
.y22_c00301{bottom:203.610450px;}
.y1c_c00301{bottom:252.835590px;}
.y1b_c00301{bottom:282.986202px;}
.y1a_c00301{bottom:333.475873px;}
.y19_c00301{bottom:363.805036px;}
.y18_c00301{bottom:393.955648px;}
.y17_c00301{bottom:424.195536px;}
.y16_c00301{bottom:474.776233px;}
.y15_c00301{bottom:505.016121px;}
.y14_c00301{bottom:535.166733px;}
.y13_c00301{bottom:565.317345px;}
.y12_c00301{bottom:595.557232px;}
.y11_c00301{bottom:625.707844px;}
.y10_c00301{bottom:655.947732px;}
.yf_c00301{bottom:686.098344px;}
.ye_c00301{bottom:736.768317px;}
.yd_c00301{bottom:767.008204px;}
.yc_c00301{bottom:797.158816px;}
.yb_c00301{bottom:827.398704px;}
.ya_c00301{bottom:877.888375px;}
.y9_c00301{bottom:908.219289px;}
.y8_c00301{bottom:938.369901px;}
.y7_c00301{bottom:968.609788px;}
.y21_c00301{bottom:968.610450px;}
.y6_c00301{bottom:998.760400px;}
.y20_c00301{bottom:1019.100450px;}
.y5_c00301{bottom:1049.250072px;}
.y1f_c00301{bottom:1049.340450px;}
.y1e_c00301{bottom:1079.580450px;}
.y4_c00301{bottom:1079.580985px;}
.y1d_c00301{bottom:1109.730450px;}
.y3_c00301{bottom:1109.731597px;}
.h5_c00301{height:39.338549px;}
.h6_c00301{height:54.098549px;}
.h2_c00301{height:62.600889px;}
.h1_c00301{height:62.771836px;}
.h3_c00301{height:63.216299px;}
.h4_c00301{height:73.668786px;}
.h0_c00301{height:1263.000000px;}
.w0_c00301{width:892.500000px;}
.x0_c00301{left:0.000000px;}
.x2_c00301{left:82.710059px;}
.x3_c00301{left:136.259604px;}
.x1_c00301{left:431.730000px;}
.x4_c00301{left:469.440000px;}
@media print{
.v2_c00301{vertical-align:-13.120000pt;}
.v0_c00301{vertical-align:0.000000pt;}
.v1_c00301{vertical-align:28.480000pt;}
.ls13_c00301{letter-spacing:-0.394973pt;}
.ls10_c00301{letter-spacing:-0.140319pt;}
.ls15_c00301{letter-spacing:-0.098743pt;}
.ls11_c00301{letter-spacing:-0.093546pt;}
.lsf_c00301{letter-spacing:-0.067217pt;}
.ls7_c00301{letter-spacing:-0.056016pt;}
.lsb_c00301{letter-spacing:-0.037344pt;}
.ls12_c00301{letter-spacing:-0.031182pt;}
.lsd_c00301{letter-spacing:-0.031120pt;}
.lsa_c00301{letter-spacing:-0.024896pt;}
.ls9_c00301{letter-spacing:-0.018672pt;}
.lsc_c00301{letter-spacing:-0.006224pt;}
.ls8_c00301{letter-spacing:0.000000pt;}
.ls3_c00301{letter-spacing:0.006224pt;}
.ls4_c00301{letter-spacing:0.012448pt;}
.ls2_c00301{letter-spacing:0.018672pt;}
.ls6_c00301{letter-spacing:0.020694pt;}
.ls0_c00301{letter-spacing:0.024896pt;}
.ls5_c00301{letter-spacing:0.031120pt;}
.lse_c00301{letter-spacing:0.230288pt;}
.ls16_c00301{letter-spacing:0.327412pt;}
.ls1_c00301{letter-spacing:0.392112pt;}
.ls14_c00301{letter-spacing:0.597657pt;}
.ws0_c00301{word-spacing:-11.526781pt;}
.ws1_c00301{word-spacing:-9.242347pt;}
.ws27_c00301{word-spacing:-0.904280pt;}
.ws29_c00301{word-spacing:-0.317018pt;}
.ws1c_c00301{word-spacing:-0.043568pt;}
.ws2_c00301{word-spacing:0.000000pt;}
.wsc_c00301{word-spacing:0.012448pt;}
.ws28_c00301{word-spacing:0.109137pt;}
.ws17_c00301{word-spacing:0.292528pt;}
.ws5_c00301{word-spacing:0.304976pt;}
.wsf_c00301{word-spacing:0.323648pt;}
.ws15_c00301{word-spacing:1.618240pt;}
.ws1e_c00301{word-spacing:2.551840pt;}
.ws23_c00301{word-spacing:3.533969pt;}
.ws22_c00301{word-spacing:3.674288pt;}
.ws1a_c00301{word-spacing:3.914896pt;}
.ws19_c00301{word-spacing:4.145184pt;}
.ws16_c00301{word-spacing:4.792480pt;}
.ws11_c00301{word-spacing:5.116128pt;}
.ws25_c00301{word-spacing:5.160634pt;}
.ws24_c00301{word-spacing:5.222998pt;}
.ws18_c00301{word-spacing:5.452224pt;}
.ws26_c00301{word-spacing:5.524425pt;}
.ws7_c00301{word-spacing:6.317360pt;}
.ws8_c00301{word-spacing:6.765488pt;}
.ws6_c00301{word-spacing:7.045568pt;}
.ws13_c00301{word-spacing:9.609856pt;}
.ws21_c00301{word-spacing:9.896160pt;}
.ws1f_c00301{word-spacing:13.113968pt;}
.ws14_c00301{word-spacing:18.541296pt;}
.wsb_c00301{word-spacing:18.846272pt;}
.wse_c00301{word-spacing:18.871168pt;}
.wsa_c00301{word-spacing:21.105584pt;}
.ws10_c00301{word-spacing:24.976912pt;}
.ws4_c00301{word-spacing:28.786000pt;}
.ws9_c00301{word-spacing:33.584704pt;}
.ws1b_c00301{word-spacing:34.244448pt;}
.ws3_c00301{word-spacing:40.922800pt;}
.ws1d_c00301{word-spacing:46.094944pt;}
.ws20_c00301{word-spacing:59.800192pt;}
.wsd_c00301{word-spacing:76.169312pt;}
.ws12_c00301{word-spacing:100.803904pt;}
._4_c00301{margin-left:-6.367733pt;}
._0_c00301{margin-left:-1.313264pt;}
._1_c00301{width:0.921152pt;}
._5_c00301{width:1.904666pt;}
._3_c00301{width:5.271728pt;}
._2_c00301{width:18.833824pt;}
.fs2_c00301{font-size:33.608533pt;}
.fs1_c00301{font-size:41.388800pt;}
.fs3_c00301{font-size:51.970133pt;}
.fs0_c00301{font-size:62.240000pt;}
.y0_c00301{bottom:0.000000pt;}
.y2_c00301{bottom:97.547527pt;}
.y1_c00301{bottom:115.387067pt;}
.y25_c00301{bottom:132.826265pt;}
.y24_c00301{bottom:148.666762pt;}
.y23_c00301{bottom:167.947067pt;}
.y22_c00301{bottom:180.987067pt;}
.y1c_c00301{bottom:224.742747pt;}
.y1b_c00301{bottom:251.543291pt;}
.y1a_c00301{bottom:296.422999pt;}
.y19_c00301{bottom:323.382255pt;}
.y18_c00301{bottom:350.182799pt;}
.y17_c00301{bottom:377.062699pt;}
.y16_c00301{bottom:422.023319pt;}
.y15_c00301{bottom:448.903219pt;}
.y14_c00301{bottom:475.703763pt;}
.y13_c00301{bottom:502.504307pt;}
.y12_c00301{bottom:529.384207pt;}
.y11_c00301{bottom:556.184751pt;}
.y10_c00301{bottom:583.064651pt;}
.yf_c00301{bottom:609.865195pt;}
.ye_c00301{bottom:654.905171pt;}
.yd_c00301{bottom:681.785071pt;}
.yc_c00301{bottom:708.585615pt;}
.yb_c00301{bottom:735.465515pt;}
.ya_c00301{bottom:780.345223pt;}
.y9_c00301{bottom:807.306035pt;}
.y8_c00301{bottom:834.106579pt;}
.y7_c00301{bottom:860.986479pt;}
.y21_c00301{bottom:860.987067pt;}
.y6_c00301{bottom:887.787023pt;}
.y20_c00301{bottom:905.867067pt;}
.y5_c00301{bottom:932.666731pt;}
.y1f_c00301{bottom:932.747067pt;}
.y1e_c00301{bottom:959.627067pt;}
.y4_c00301{bottom:959.627543pt;}
.y1d_c00301{bottom:986.427067pt;}
.y3_c00301{bottom:986.428087pt;}
.h5_c00301{height:34.967599pt;}
.h6_c00301{height:48.087599pt;}
.h2_c00301{height:55.645234pt;}
.h1_c00301{height:55.797187pt;}
.h3_c00301{height:56.192266pt;}
.h4_c00301{height:65.483366pt;}
.h0_c00301{height:1122.666667pt;}
.w0_c00301{width:793.333333pt;}
.x0_c00301{left:0.000000pt;}
.x2_c00301{left:73.520052pt;}
.x3_c00301{left:121.119648pt;}
.x1_c00301{left:383.760000pt;}
.x4_c00301{left:417.280000pt;}
}





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

.ir_c00302:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00302{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00302;src:url('chunks/assets/font_7df2061a9b5d2d6526834c32.woff2')format("woff");}.ff1_c00302{font-family:ff1_c00302;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00302;src:url('chunks/assets/font_5ce45dc1252db0bdf211a641.woff2')format("woff");}.ff2_c00302{font-family:ff2_c00302;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00302{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00302{vertical-align:0.000000px;}
.v1_c00302{vertical-align:32.422434px;}
.ls7_c00302{letter-spacing:-0.063018px;}
.lsf_c00302{letter-spacing:-0.056016px;}
.lse_c00302{letter-spacing:-0.049014px;}
.lsc_c00302{letter-spacing:-0.042012px;}
.lsb_c00302{letter-spacing:-0.035010px;}
.ls10_c00302{letter-spacing:-0.028008px;}
.lsa_c00302{letter-spacing:-0.021006px;}
.lsd_c00302{letter-spacing:-0.014004px;}
.ls9_c00302{letter-spacing:-0.007002px;}
.ls8_c00302{letter-spacing:0.000000px;}
.ls2_c00302{letter-spacing:0.007002px;}
.ls4_c00302{letter-spacing:0.014004px;}
.ls3_c00302{letter-spacing:0.021006px;}
.ls6_c00302{letter-spacing:0.023281px;}
.ls0_c00302{letter-spacing:0.035010px;}
.ls5_c00302{letter-spacing:0.042012px;}
.ls1_c00302{letter-spacing:0.070020px;}
.sc__c00302{text-shadow:none;}
.sc0_c00302{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00302{-webkit-text-stroke:0px transparent;}
.sc0_c00302{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00302{word-spacing:-19.402542px;}
.ws1_c00302{word-spacing:-12.967628px;}
.ws2_c00302{word-spacing:0.000000px;}
.ws1c_c00302{word-spacing:3.963132px;}
.wse_c00302{word-spacing:4.642326px;}
.wsf_c00302{word-spacing:5.734638px;}
.ws17_c00302{word-spacing:6.119748px;}
.ws8_c00302{word-spacing:6.833952px;}
.ws15_c00302{word-spacing:7.863246px;}
.ws1b_c00302{word-spacing:9.725778px;}
.ws19_c00302{word-spacing:10.096884px;}
.ws4_c00302{word-spacing:10.804086px;}
.ws9_c00302{word-spacing:12.554586px;}
.ws3_c00302{word-spacing:14.032008px;}
.ws12_c00302{word-spacing:16.909830px;}
.ws7_c00302{word-spacing:17.624034px;}
.wsa_c00302{word-spacing:17.918118px;}
.ws11_c00302{word-spacing:18.394254px;}
.wsd_c00302{word-spacing:19.108458px;}
.ws13_c00302{word-spacing:20.886966px;}
.ws1a_c00302{word-spacing:21.986280px;}
.ws10_c00302{word-spacing:26.642610px;}
.ws14_c00302{word-spacing:32.377248px;}
.wsb_c00302{word-spacing:38.539008px;}
.ws5_c00302{word-spacing:41.409828px;}
.wsc_c00302{word-spacing:46.780362px;}
.ws16_c00302{word-spacing:47.886678px;}
.ws1d_c00302{word-spacing:53.978418px;}
.ws6_c00302{word-spacing:60.497280px;}
.ws18_c00302{word-spacing:200.201184px;}
._2_c00302{margin-left:-9.893826px;}
._1_c00302{margin-left:-1.036296px;}
._0_c00302{width:1.008288px;}
._3_c00302{width:22.350384px;}
.fc0_c00302{color:rgb(0,0,0);}
.fs1_c00302{font-size:46.562400px;}
.fs0_c00302{font-size:70.020000px;}
.y0_c00302{bottom:0.000000px;}
.y2_c00302{bottom:109.740968px;}
.y1_c00302{bottom:129.810450px;}
.y22_c00302{bottom:173.728951px;}
.y21_c00302{bottom:203.968839px;}
.y20_c00302{bottom:234.119451px;}
.y1f_c00302{bottom:264.359338px;}
.y1e_c00302{bottom:294.509951px;}
.y1d_c00302{bottom:324.749838px;}
.y1c_c00302{bottom:354.894992px;}
.y1b_c00302{bottom:385.134879px;}
.y1a_c00302{bottom:415.285491px;}
.y19_c00302{bottom:445.525379px;}
.y18_c00302{bottom:475.765266px;}
.y17_c00302{bottom:505.915878px;}
.y16_c00302{bottom:536.155766px;}
.y15_c00302{bottom:566.306378px;}
.y14_c00302{bottom:596.456990px;}
.y13_c00302{bottom:626.607602px;}
.y12_c00302{bottom:656.847489px;}
.y11_c00302{bottom:686.998101px;}
.y10_c00302{bottom:717.237989px;}
.yf_c00302{bottom:747.388601px;}
.ye_c00302{bottom:777.628488px;}
.yd_c00302{bottom:807.779100px;}
.yc_c00302{bottom:838.018988px;}
.yb_c00302{bottom:868.169600px;}
.ya_c00302{bottom:898.409487px;}
.y9_c00302{bottom:928.560099px;}
.y8_c00302{bottom:958.799987px;}
.y7_c00302{bottom:988.950599px;}
.y6_c00302{bottom:1019.190486px;}
.y5_c00302{bottom:1049.341098px;}
.y4_c00302{bottom:1079.580985px;}
.y3_c00302{bottom:1109.731597px;}
.h2_c00302{height:62.600889px;}
.h1_c00302{height:62.771836px;}
.h3_c00302{height:74.051220px;}
.h0_c00302{height:1263.000000px;}
.w0_c00302{width:892.500000px;}
.x0_c00302{left:0.000000px;}
.x2_c00302{left:82.710059px;}
.x3_c00302{left:136.259604px;}
.x1_c00302{left:431.730000px;}
@media print{
.v0_c00302{vertical-align:0.000000pt;}
.v1_c00302{vertical-align:28.819941pt;}
.ls7_c00302{letter-spacing:-0.056016pt;}
.lsf_c00302{letter-spacing:-0.049792pt;}
.lse_c00302{letter-spacing:-0.043568pt;}
.lsc_c00302{letter-spacing:-0.037344pt;}
.lsb_c00302{letter-spacing:-0.031120pt;}
.ls10_c00302{letter-spacing:-0.024896pt;}
.lsa_c00302{letter-spacing:-0.018672pt;}
.lsd_c00302{letter-spacing:-0.012448pt;}
.ls9_c00302{letter-spacing:-0.006224pt;}
.ls8_c00302{letter-spacing:0.000000pt;}
.ls2_c00302{letter-spacing:0.006224pt;}
.ls4_c00302{letter-spacing:0.012448pt;}
.ls3_c00302{letter-spacing:0.018672pt;}
.ls6_c00302{letter-spacing:0.020694pt;}
.ls0_c00302{letter-spacing:0.031120pt;}
.ls5_c00302{letter-spacing:0.037344pt;}
.ls1_c00302{letter-spacing:0.062240pt;}
.ws0_c00302{word-spacing:-17.246704pt;}
.ws1_c00302{word-spacing:-11.526781pt;}
.ws2_c00302{word-spacing:0.000000pt;}
.ws1c_c00302{word-spacing:3.522784pt;}
.wse_c00302{word-spacing:4.126512pt;}
.wsf_c00302{word-spacing:5.097456pt;}
.ws17_c00302{word-spacing:5.439776pt;}
.ws8_c00302{word-spacing:6.074624pt;}
.ws15_c00302{word-spacing:6.989552pt;}
.ws1b_c00302{word-spacing:8.645136pt;}
.ws19_c00302{word-spacing:8.975008pt;}
.ws4_c00302{word-spacing:9.603632pt;}
.ws9_c00302{word-spacing:11.159632pt;}
.ws3_c00302{word-spacing:12.472896pt;}
.ws12_c00302{word-spacing:15.030960pt;}
.ws7_c00302{word-spacing:15.665808pt;}
.wsa_c00302{word-spacing:15.927216pt;}
.ws11_c00302{word-spacing:16.350448pt;}
.wsd_c00302{word-spacing:16.985296pt;}
.ws13_c00302{word-spacing:18.566192pt;}
.ws1a_c00302{word-spacing:19.543360pt;}
.ws10_c00302{word-spacing:23.682320pt;}
.ws14_c00302{word-spacing:28.779776pt;}
.wsb_c00302{word-spacing:34.256896pt;}
.ws5_c00302{word-spacing:36.808736pt;}
.wsc_c00302{word-spacing:41.582544pt;}
.ws16_c00302{word-spacing:42.565936pt;}
.ws1d_c00302{word-spacing:47.980816pt;}
.ws6_c00302{word-spacing:53.775360pt;}
.ws18_c00302{word-spacing:177.956608pt;}
._2_c00302{margin-left:-8.794512pt;}
._1_c00302{margin-left:-0.921152pt;}
._0_c00302{width:0.896256pt;}
._3_c00302{width:19.867008pt;}
.fs1_c00302{font-size:41.388800pt;}
.fs0_c00302{font-size:62.240000pt;}
.y0_c00302{bottom:0.000000pt;}
.y2_c00302{bottom:97.547527pt;}
.y1_c00302{bottom:115.387067pt;}
.y22_c00302{bottom:154.425735pt;}
.y21_c00302{bottom:181.305635pt;}
.y20_c00302{bottom:208.106179pt;}
.y1f_c00302{bottom:234.986079pt;}
.y1e_c00302{bottom:261.786623pt;}
.y1d_c00302{bottom:288.666523pt;}
.y1c_c00302{bottom:315.462215pt;}
.y1b_c00302{bottom:342.342115pt;}
.y1a_c00302{bottom:369.142659pt;}
.y19_c00302{bottom:396.022559pt;}
.y18_c00302{bottom:422.902459pt;}
.y17_c00302{bottom:449.703003pt;}
.y16_c00302{bottom:476.582903pt;}
.y15_c00302{bottom:503.383447pt;}
.y14_c00302{bottom:530.183991pt;}
.y13_c00302{bottom:556.984535pt;}
.y12_c00302{bottom:583.864435pt;}
.y11_c00302{bottom:610.664979pt;}
.y10_c00302{bottom:637.544879pt;}
.yf_c00302{bottom:664.345423pt;}
.ye_c00302{bottom:691.225323pt;}
.yd_c00302{bottom:718.025867pt;}
.yc_c00302{bottom:744.905767pt;}
.yb_c00302{bottom:771.706311pt;}
.ya_c00302{bottom:798.586211pt;}
.y9_c00302{bottom:825.386755pt;}
.y8_c00302{bottom:852.266655pt;}
.y7_c00302{bottom:879.067199pt;}
.y6_c00302{bottom:905.947099pt;}
.y5_c00302{bottom:932.747643pt;}
.y4_c00302{bottom:959.627543pt;}
.y3_c00302{bottom:986.428087pt;}
.h2_c00302{height:55.645234pt;}
.h1_c00302{height:55.797187pt;}
.h3_c00302{height:65.823307pt;}
.h0_c00302{height:1122.666667pt;}
.w0_c00302{width:793.333333pt;}
.x0_c00302{left:0.000000pt;}
.x2_c00302{left:73.520052pt;}
.x3_c00302{left:121.119648pt;}
.x1_c00302{left:383.760000pt;}
}





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

.ir_c00303:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00303{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00303;src:url('chunks/assets/font_b6ef609cae8fc0c0a2342589.woff2')format("woff");}.ff1_c00303{font-family:ff1_c00303;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00303;src:url('chunks/assets/font_c16f8059ef3dbb15b9d7c013.woff2')format("woff");}.ff2_c00303{font-family:ff2_c00303;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00303;src:url('chunks/assets/font_09552e582b0b8da7a12f48c5.woff2')format("woff");}.ff3_c00303{font-family:ff3_c00303;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00303{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00303{vertical-align:0.000000px;}
.v1_c00303{vertical-align:32.401404px;}
.ls7_c00303{letter-spacing:-0.063018px;}
.ls9_c00303{letter-spacing:-0.042012px;}
.lsc_c00303{letter-spacing:-0.035010px;}
.lsa_c00303{letter-spacing:-0.021006px;}
.lsb_c00303{letter-spacing:-0.014004px;}
.ls8_c00303{letter-spacing:0.000000px;}
.ls5_c00303{letter-spacing:0.007002px;}
.ls4_c00303{letter-spacing:0.014004px;}
.ls1_c00303{letter-spacing:0.023281px;}
.ls6_c00303{letter-spacing:0.028008px;}
.ls2_c00303{letter-spacing:0.042012px;}
.ls0_c00303{letter-spacing:0.063018px;}
.ls3_c00303{letter-spacing:0.084024px;}
.lsd_c00303{letter-spacing:0.231066px;}
.sc__c00303{text-shadow:none;}
.sc0_c00303{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00303{-webkit-text-stroke:0px transparent;}
.sc0_c00303{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00303{word-spacing:-19.549584px;}
.ws0_c00303{word-spacing:-12.967628px;}
.wsc_c00303{word-spacing:-0.245070px;}
.wsd_c00303{word-spacing:-0.056016px;}
.ws2_c00303{word-spacing:0.000000px;}
.ws9_c00303{word-spacing:0.007002px;}
.ws11_c00303{word-spacing:2.499714px;}
.ws8_c00303{word-spacing:2.863818px;}
.ws13_c00303{word-spacing:6.798942px;}
.ws12_c00303{word-spacing:6.861960px;}
.ws14_c00303{word-spacing:10.089882px;}
.ws3_c00303{word-spacing:10.110888px;}
.ws6_c00303{word-spacing:11.868390px;}
.ws15_c00303{word-spacing:15.845526px;}
.wse_c00303{word-spacing:20.130750px;}
.wsf_c00303{word-spacing:20.886966px;}
.wsa_c00303{word-spacing:21.265074px;}
.ws10_c00303{word-spacing:21.622176px;}
.wsb_c00303{word-spacing:24.142896px;}
.ws7_c00303{word-spacing:48.523860px;}
.ws4_c00303{word-spacing:66.967128px;}
.ws5_c00303{word-spacing:159.841656px;}
._1_c00303{margin-left:-1.596456px;}
._0_c00303{width:1.302372px;}
._2_c00303{width:8.283366px;}
.fc0_c00303{color:rgb(0,0,0);}
.fs1_c00303{font-size:46.562400px;}
.fs0_c00303{font-size:70.020000px;}
.y0_c00303{bottom:0.000000px;}
.y2_c00303{bottom:109.740968px;}
.y1_c00303{bottom:129.810450px;}
.y1a_c00303{bottom:170.397761px;}
.y19_c00303{bottom:200.637648px;}
.y18_c00303{bottom:230.788260px;}
.y17_c00303{bottom:261.028148px;}
.y16_c00303{bottom:291.178760px;}
.y15_c00303{bottom:321.418647px;}
.y14_c00303{bottom:351.569259px;}
.y13_c00303{bottom:402.149957px;}
.y12_c00303{bottom:449.040600px;}
.y11_c00303{bottom:696.359950px;}
.y10_c00303{bottom:726.599838px;}
.yf_c00303{bottom:756.750450px;}
.ye_c00303{bottom:777.629838px;}
.yd_c00303{bottom:807.780450px;}
.yc_c00303{bottom:838.019339px;}
.yb_c00303{bottom:868.169950px;}
.ya_c00303{bottom:898.409838px;}
.y9_c00303{bottom:928.560099px;}
.y8_c00303{bottom:958.799987px;}
.y7_c00303{bottom:988.950599px;}
.y6_c00303{bottom:1019.190486px;}
.y5_c00303{bottom:1049.341098px;}
.y4_c00303{bottom:1079.580985px;}
.y3_c00303{bottom:1109.731597px;}
.h2_c00303{height:62.600889px;}
.h1_c00303{height:62.771836px;}
.h4_c00303{height:63.216299px;}
.h3_c00303{height:74.030190px;}
.h0_c00303{height:1263.000000px;}
.w0_c00303{width:892.500000px;}
.x0_c00303{left:0.000000px;}
.x2_c00303{left:82.710059px;}
.x3_c00303{left:136.259604px;}
.x5_c00303{left:162.540337px;}
.x7_c00303{left:171.449554px;}
.x4_c00303{left:288.270000px;}
.x1_c00303{left:431.730000px;}
.x6_c00303{left:753.300000px;}
@media print{
.v0_c00303{vertical-align:0.000000pt;}
.v1_c00303{vertical-align:28.801248pt;}
.ls7_c00303{letter-spacing:-0.056016pt;}
.ls9_c00303{letter-spacing:-0.037344pt;}
.lsc_c00303{letter-spacing:-0.031120pt;}
.lsa_c00303{letter-spacing:-0.018672pt;}
.lsb_c00303{letter-spacing:-0.012448pt;}
.ls8_c00303{letter-spacing:0.000000pt;}
.ls5_c00303{letter-spacing:0.006224pt;}
.ls4_c00303{letter-spacing:0.012448pt;}
.ls1_c00303{letter-spacing:0.020694pt;}
.ls6_c00303{letter-spacing:0.024896pt;}
.ls2_c00303{letter-spacing:0.037344pt;}
.ls0_c00303{letter-spacing:0.056016pt;}
.ls3_c00303{letter-spacing:0.074688pt;}
.lsd_c00303{letter-spacing:0.205392pt;}
.ws1_c00303{word-spacing:-17.377408pt;}
.ws0_c00303{word-spacing:-11.526781pt;}
.wsc_c00303{word-spacing:-0.217840pt;}
.wsd_c00303{word-spacing:-0.049792pt;}
.ws2_c00303{word-spacing:0.000000pt;}
.ws9_c00303{word-spacing:0.006224pt;}
.ws11_c00303{word-spacing:2.221968pt;}
.ws8_c00303{word-spacing:2.545616pt;}
.ws13_c00303{word-spacing:6.043504pt;}
.ws12_c00303{word-spacing:6.099520pt;}
.ws14_c00303{word-spacing:8.968784pt;}
.ws3_c00303{word-spacing:8.987456pt;}
.ws6_c00303{word-spacing:10.549680pt;}
.ws15_c00303{word-spacing:14.084912pt;}
.wse_c00303{word-spacing:17.894000pt;}
.wsf_c00303{word-spacing:18.566192pt;}
.wsa_c00303{word-spacing:18.902288pt;}
.ws10_c00303{word-spacing:19.219712pt;}
.wsb_c00303{word-spacing:21.460352pt;}
.ws7_c00303{word-spacing:43.132320pt;}
.ws4_c00303{word-spacing:59.526336pt;}
.ws5_c00303{word-spacing:142.081472pt;}
._1_c00303{margin-left:-1.419072pt;}
._0_c00303{width:1.157664pt;}
._2_c00303{width:7.362992pt;}
.fs1_c00303{font-size:41.388800pt;}
.fs0_c00303{font-size:62.240000pt;}
.y0_c00303{bottom:0.000000pt;}
.y2_c00303{bottom:97.547527pt;}
.y1_c00303{bottom:115.387067pt;}
.y1a_c00303{bottom:151.464676pt;}
.y19_c00303{bottom:178.344576pt;}
.y18_c00303{bottom:205.145120pt;}
.y17_c00303{bottom:232.025020pt;}
.y16_c00303{bottom:258.825564pt;}
.y15_c00303{bottom:285.705464pt;}
.y14_c00303{bottom:312.506008pt;}
.y13_c00303{bottom:357.466628pt;}
.y12_c00303{bottom:399.147200pt;}
.y11_c00303{bottom:618.986623pt;}
.y10_c00303{bottom:645.866523pt;}
.yf_c00303{bottom:672.667067pt;}
.ye_c00303{bottom:691.226523pt;}
.yd_c00303{bottom:718.027067pt;}
.yc_c00303{bottom:744.906079pt;}
.yb_c00303{bottom:771.706623pt;}
.ya_c00303{bottom:798.586523pt;}
.y9_c00303{bottom:825.386755pt;}
.y8_c00303{bottom:852.266655pt;}
.y7_c00303{bottom:879.067199pt;}
.y6_c00303{bottom:905.947099pt;}
.y5_c00303{bottom:932.747643pt;}
.y4_c00303{bottom:959.627543pt;}
.y3_c00303{bottom:986.428087pt;}
.h2_c00303{height:55.645234pt;}
.h1_c00303{height:55.797187pt;}
.h4_c00303{height:56.192266pt;}
.h3_c00303{height:65.804614pt;}
.h0_c00303{height:1122.666667pt;}
.w0_c00303{width:793.333333pt;}
.x0_c00303{left:0.000000pt;}
.x2_c00303{left:73.520052pt;}
.x3_c00303{left:121.119648pt;}
.x5_c00303{left:144.480300pt;}
.x7_c00303{left:152.399604pt;}
.x4_c00303{left:256.240000pt;}
.x1_c00303{left:383.760000pt;}
.x6_c00303{left:669.600000pt;}
}





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

.ir_c00304:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00304{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00304;src:url('chunks/assets/font_1b19f208dc5b122feba2f9d0.woff2')format("woff");}.ff1_c00304{font-family:ff1_c00304;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00304;src:url('chunks/assets/font_50f0b9b38879d03beb33dc28.woff2')format("woff");}.ff2_c00304{font-family:ff2_c00304;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00304;src:url('chunks/assets/font_26fde1f7272c91ca8d65608d.woff2')format("woff");}.ff3_c00304{font-family:ff3_c00304;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00304{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00304{vertical-align:0.000000px;}
.ls4_c00304{letter-spacing:-0.063018px;}
.lsb_c00304{letter-spacing:-0.035010px;}
.lsa_c00304{letter-spacing:-0.028008px;}
.ls8_c00304{letter-spacing:-0.021006px;}
.ls6_c00304{letter-spacing:-0.014004px;}
.ls7_c00304{letter-spacing:-0.007002px;}
.ls5_c00304{letter-spacing:0.000000px;}
.ls3_c00304{letter-spacing:0.014004px;}
.ls0_c00304{letter-spacing:0.021006px;}
.ls1_c00304{letter-spacing:0.070020px;}
.ls2_c00304{letter-spacing:0.084024px;}
.ls9_c00304{letter-spacing:0.119034px;}
.sc__c00304{text-shadow:none;}
.sc0_c00304{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00304{-webkit-text-stroke:0px transparent;}
.sc0_c00304{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00304{word-spacing:-19.549584px;}
.ws6_c00304{word-spacing:-0.441126px;}
.ws1_c00304{word-spacing:0.000000px;}
.wsb_c00304{word-spacing:0.049014px;}
.ws4_c00304{word-spacing:0.364104px;}
.wsf_c00304{word-spacing:2.156616px;}
.wsc_c00304{word-spacing:3.963132px;}
.ws9_c00304{word-spacing:4.313232px;}
.wsa_c00304{word-spacing:4.334238px;}
.ws10_c00304{word-spacing:5.398542px;}
.wsd_c00304{word-spacing:6.497856px;}
.ws3_c00304{word-spacing:6.833952px;}
.wse_c00304{word-spacing:7.569162px;}
.ws5_c00304{word-spacing:8.248356px;}
.ws8_c00304{word-spacing:16.174620px;}
.ws2_c00304{word-spacing:16.545726px;}
.ws7_c00304{word-spacing:22.308372px;}
._2_c00304{margin-left:-8.241354px;}
._1_c00304{margin-left:-1.260360px;}
._0_c00304{width:1.036296px;}
.fc0_c00304{color:rgb(0,0,0);}
.fs0_c00304{font-size:70.020000px;}
.y0_c00304{bottom:0.000000px;}
.y2_c00304{bottom:109.740968px;}
.y1_c00304{bottom:129.810450px;}
.y16_c00304{bottom:163.740779px;}
.y15_c00304{bottom:214.230450px;}
.y14_c00304{bottom:244.470450px;}
.y13_c00304{bottom:274.710450px;}
.y12_c00304{bottom:304.860450px;}
.y11_c00304{bottom:335.100450px;}
.y10_c00304{bottom:365.250600px;}
.yf_c00304{bottom:415.740450px;}
.ye_c00304{bottom:446.070450px;}
.yd_c00304{bottom:476.220450px;}
.yc_c00304{bottom:506.370600px;}
.yb_c00304{bottom:553.260450px;}
.ya_c00304{bottom:837.119230px;}
.y9_c00304{bottom:867.269842px;}
.y8_c00304{bottom:897.509730px;}
.y7_c00304{bottom:947.999402px;}
.y6_c00304{bottom:978.330315px;}
.y5_c00304{bottom:1028.911013px;}
.y4_c00304{bottom:1079.491710px;}
.y3_c00304{bottom:1109.731597px;}
.h3_c00304{height:62.600889px;}
.h1_c00304{height:62.771836px;}
.h2_c00304{height:63.216299px;}
.h0_c00304{height:1263.000000px;}
.w0_c00304{width:892.500000px;}
.x0_c00304{left:0.000000px;}
.x2_c00304{left:82.710059px;}
.x4_c00304{left:136.259604px;}
.x5_c00304{left:162.539861px;}
.x3_c00304{left:171.449906px;}
.x6_c00304{left:188.820117px;}
.x1_c00304{left:431.730000px;}
.x7_c00304{left:753.389850px;}
@media print{
.v0_c00304{vertical-align:0.000000pt;}
.ls4_c00304{letter-spacing:-0.056016pt;}
.lsb_c00304{letter-spacing:-0.031120pt;}
.lsa_c00304{letter-spacing:-0.024896pt;}
.ls8_c00304{letter-spacing:-0.018672pt;}
.ls6_c00304{letter-spacing:-0.012448pt;}
.ls7_c00304{letter-spacing:-0.006224pt;}
.ls5_c00304{letter-spacing:0.000000pt;}
.ls3_c00304{letter-spacing:0.012448pt;}
.ls0_c00304{letter-spacing:0.018672pt;}
.ls1_c00304{letter-spacing:0.062240pt;}
.ls2_c00304{letter-spacing:0.074688pt;}
.ls9_c00304{letter-spacing:0.105808pt;}
.ws0_c00304{word-spacing:-17.377408pt;}
.ws6_c00304{word-spacing:-0.392112pt;}
.ws1_c00304{word-spacing:0.000000pt;}
.wsb_c00304{word-spacing:0.043568pt;}
.ws4_c00304{word-spacing:0.323648pt;}
.wsf_c00304{word-spacing:1.916992pt;}
.wsc_c00304{word-spacing:3.522784pt;}
.ws9_c00304{word-spacing:3.833984pt;}
.wsa_c00304{word-spacing:3.852656pt;}
.ws10_c00304{word-spacing:4.798704pt;}
.wsd_c00304{word-spacing:5.775872pt;}
.ws3_c00304{word-spacing:6.074624pt;}
.wse_c00304{word-spacing:6.728144pt;}
.ws5_c00304{word-spacing:7.331872pt;}
.ws8_c00304{word-spacing:14.377440pt;}
.ws2_c00304{word-spacing:14.707312pt;}
.ws7_c00304{word-spacing:19.829664pt;}
._2_c00304{margin-left:-7.325648pt;}
._1_c00304{margin-left:-1.120320pt;}
._0_c00304{width:0.921152pt;}
.fs0_c00304{font-size:62.240000pt;}
.y0_c00304{bottom:0.000000pt;}
.y2_c00304{bottom:97.547527pt;}
.y1_c00304{bottom:115.387067pt;}
.y16_c00304{bottom:145.547359pt;}
.y15_c00304{bottom:190.427067pt;}
.y14_c00304{bottom:217.307067pt;}
.y13_c00304{bottom:244.187067pt;}
.y12_c00304{bottom:270.987067pt;}
.y11_c00304{bottom:297.867067pt;}
.y10_c00304{bottom:324.667200pt;}
.yf_c00304{bottom:369.547067pt;}
.ye_c00304{bottom:396.507067pt;}
.yd_c00304{bottom:423.307067pt;}
.yc_c00304{bottom:450.107200pt;}
.yb_c00304{bottom:491.787067pt;}
.ya_c00304{bottom:744.105983pt;}
.y9_c00304{bottom:770.906527pt;}
.y8_c00304{bottom:797.786427pt;}
.y7_c00304{bottom:842.666135pt;}
.y6_c00304{bottom:869.626947pt;}
.y5_c00304{bottom:914.587567pt;}
.y4_c00304{bottom:959.548187pt;}
.y3_c00304{bottom:986.428087pt;}
.h3_c00304{height:55.645234pt;}
.h1_c00304{height:55.797187pt;}
.h2_c00304{height:56.192266pt;}
.h0_c00304{height:1122.666667pt;}
.w0_c00304{width:793.333333pt;}
.x0_c00304{left:0.000000pt;}
.x2_c00304{left:73.520052pt;}
.x4_c00304{left:121.119648pt;}
.x5_c00304{left:144.479876pt;}
.x3_c00304{left:152.399916pt;}
.x6_c00304{left:167.840104pt;}
.x1_c00304{left:383.760000pt;}
.x7_c00304{left:669.679867pt;}
}





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

.ir_c00305:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00305{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00305;src:url('chunks/assets/font_cf24216bd8dba529fa160b3a.woff2')format("woff");}.ff1_c00305{font-family:ff1_c00305;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00305;src:url('chunks/assets/font_e3a858c629362ba60ffd0c9f.woff2')format("woff");}.ff2_c00305{font-family:ff2_c00305;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00305;src:url('chunks/assets/font_56eac1b32b7ca1a349ffcb7a.woff2')format("woff");}.ff3_c00305{font-family:ff3_c00305;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00305{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00305{vertical-align:0.000000px;}
.ls3_c00305{letter-spacing:-0.063018px;}
.lsa_c00305{letter-spacing:-0.049014px;}
.ls7_c00305{letter-spacing:-0.042012px;}
.ls5_c00305{letter-spacing:-0.035010px;}
.lsb_c00305{letter-spacing:-0.028008px;}
.ls6_c00305{letter-spacing:-0.021006px;}
.ls8_c00305{letter-spacing:-0.014004px;}
.ls9_c00305{letter-spacing:-0.007002px;}
.ls4_c00305{letter-spacing:0.000000px;}
.ls2_c00305{letter-spacing:0.007002px;}
.ls0_c00305{letter-spacing:0.056016px;}
.ls1_c00305{letter-spacing:0.084024px;}
.sc__c00305{text-shadow:none;}
.sc0_c00305{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00305{-webkit-text-stroke:0px transparent;}
.sc0_c00305{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00305{word-spacing:-19.549584px;}
.ws2_c00305{word-spacing:-0.070020px;}
.ws8_c00305{word-spacing:-0.007002px;}
.ws1_c00305{word-spacing:0.000000px;}
.ws9_c00305{word-spacing:0.007002px;}
.ws7_c00305{word-spacing:0.035010px;}
.ws6_c00305{word-spacing:1.799514px;}
.ws16_c00305{word-spacing:2.135610px;}
.wsb_c00305{word-spacing:8.990568px;}
.wsc_c00305{word-spacing:10.096884px;}
.wsa_c00305{word-spacing:11.504286px;}
.ws15_c00305{word-spacing:17.273934px;}
.wsf_c00305{word-spacing:20.907972px;}
.ws11_c00305{word-spacing:21.979278px;}
.ws12_c00305{word-spacing:22.315374px;}
.wse_c00305{word-spacing:24.822090px;}
.wsd_c00305{word-spacing:25.221204px;}
.ws17_c00305{word-spacing:28.449126px;}
.ws3_c00305{word-spacing:28.820232px;}
.ws4_c00305{word-spacing:29.170332px;}
.ws5_c00305{word-spacing:29.191338px;}
.ws10_c00305{word-spacing:33.476562px;}
.ws14_c00305{word-spacing:50.785506px;}
.ws13_c00305{word-spacing:51.114600px;}
._1_c00305{margin-left:-1.050300px;}
._2_c00305{width:1.176336px;}
._0_c00305{width:8.283366px;}
.fc0_c00305{color:rgb(0,0,0);}
.fs0_c00305{font-size:70.020000px;}
.y0_c00305{bottom:0.000000px;}
.y2_c00305{bottom:109.740968px;}
.y1_c00305{bottom:129.810450px;}
.y19_c00305{bottom:179.124060px;}
.y18_c00305{bottom:209.274672px;}
.y17_c00305{bottom:239.514560px;}
.y16_c00305{bottom:269.665171px;}
.y15_c00305{bottom:299.905059px;}
.y14_c00305{bottom:330.055671px;}
.y13_c00305{bottom:360.295558px;}
.y12_c00305{bottom:390.446170px;}
.y11_c00305{bottom:420.686058px;}
.y10_c00305{bottom:450.836670px;}
.yf_c00305{bottom:481.076557px;}
.ye_c00305{bottom:511.227169px;}
.yd_c00305{bottom:541.467057px;}
.yc_c00305{bottom:571.617669px;}
.yb_c00305{bottom:601.857556px;}
.ya_c00305{bottom:632.008169px;}
.y9_c00305{bottom:662.158780px;}
.y8_c00305{bottom:692.309392px;}
.y7_c00305{bottom:722.549280px;}
.y6_c00305{bottom:752.699892px;}
.y5_c00305{bottom:779.160450px;}
.y4_c00305{bottom:1079.580985px;}
.y3_c00305{bottom:1109.731597px;}
.h3_c00305{height:62.600889px;}
.h1_c00305{height:62.771836px;}
.h2_c00305{height:63.216299px;}
.h0_c00305{height:1263.000000px;}
.w0_c00305{width:892.500000px;}
.x0_c00305{left:0.000000px;}
.x2_c00305{left:82.710059px;}
.x6_c00305{left:136.259311px;}
.x3_c00305{left:162.539861px;}
.x4_c00305{left:188.820117px;}
.x1_c00305{left:431.730000px;}
.x5_c00305{left:752.220000px;}
@media print{
.v0_c00305{vertical-align:0.000000pt;}
.ls3_c00305{letter-spacing:-0.056016pt;}
.lsa_c00305{letter-spacing:-0.043568pt;}
.ls7_c00305{letter-spacing:-0.037344pt;}
.ls5_c00305{letter-spacing:-0.031120pt;}
.lsb_c00305{letter-spacing:-0.024896pt;}
.ls6_c00305{letter-spacing:-0.018672pt;}
.ls8_c00305{letter-spacing:-0.012448pt;}
.ls9_c00305{letter-spacing:-0.006224pt;}
.ls4_c00305{letter-spacing:0.000000pt;}
.ls2_c00305{letter-spacing:0.006224pt;}
.ls0_c00305{letter-spacing:0.049792pt;}
.ls1_c00305{letter-spacing:0.074688pt;}
.ws0_c00305{word-spacing:-17.377408pt;}
.ws2_c00305{word-spacing:-0.062240pt;}
.ws8_c00305{word-spacing:-0.006224pt;}
.ws1_c00305{word-spacing:0.000000pt;}
.ws9_c00305{word-spacing:0.006224pt;}
.ws7_c00305{word-spacing:0.031120pt;}
.ws6_c00305{word-spacing:1.599568pt;}
.ws16_c00305{word-spacing:1.898320pt;}
.wsb_c00305{word-spacing:7.991616pt;}
.wsc_c00305{word-spacing:8.975008pt;}
.wsa_c00305{word-spacing:10.226032pt;}
.ws15_c00305{word-spacing:15.354608pt;}
.wsf_c00305{word-spacing:18.584864pt;}
.ws11_c00305{word-spacing:19.537136pt;}
.ws12_c00305{word-spacing:19.835888pt;}
.wse_c00305{word-spacing:22.064080pt;}
.wsd_c00305{word-spacing:22.418848pt;}
.ws17_c00305{word-spacing:25.288112pt;}
.ws3_c00305{word-spacing:25.617984pt;}
.ws4_c00305{word-spacing:25.929184pt;}
.ws5_c00305{word-spacing:25.947856pt;}
.ws10_c00305{word-spacing:29.756944pt;}
.ws14_c00305{word-spacing:45.142672pt;}
.ws13_c00305{word-spacing:45.435200pt;}
._1_c00305{margin-left:-0.933600pt;}
._2_c00305{width:1.045632pt;}
._0_c00305{width:7.362992pt;}
.fs0_c00305{font-size:62.240000pt;}
.y0_c00305{bottom:0.000000pt;}
.y2_c00305{bottom:97.547527pt;}
.y1_c00305{bottom:115.387067pt;}
.y19_c00305{bottom:159.221387pt;}
.y18_c00305{bottom:186.021931pt;}
.y17_c00305{bottom:212.901831pt;}
.y16_c00305{bottom:239.702375pt;}
.y15_c00305{bottom:266.582275pt;}
.y14_c00305{bottom:293.382819pt;}
.y13_c00305{bottom:320.262719pt;}
.y12_c00305{bottom:347.063263pt;}
.y11_c00305{bottom:373.943163pt;}
.y10_c00305{bottom:400.743707pt;}
.yf_c00305{bottom:427.623607pt;}
.ye_c00305{bottom:454.424151pt;}
.yd_c00305{bottom:481.304051pt;}
.yc_c00305{bottom:508.104595pt;}
.yb_c00305{bottom:534.984495pt;}
.ya_c00305{bottom:561.785039pt;}
.y9_c00305{bottom:588.585583pt;}
.y8_c00305{bottom:615.386127pt;}
.y7_c00305{bottom:642.266027pt;}
.y6_c00305{bottom:669.066571pt;}
.y5_c00305{bottom:692.587067pt;}
.y4_c00305{bottom:959.627543pt;}
.y3_c00305{bottom:986.428087pt;}
.h3_c00305{height:55.645234pt;}
.h1_c00305{height:55.797187pt;}
.h2_c00305{height:56.192266pt;}
.h0_c00305{height:1122.666667pt;}
.w0_c00305{width:793.333333pt;}
.x0_c00305{left:0.000000pt;}
.x2_c00305{left:73.520052pt;}
.x6_c00305{left:121.119388pt;}
.x3_c00305{left:144.479876pt;}
.x4_c00305{left:167.840104pt;}
.x1_c00305{left:383.760000pt;}
.x5_c00305{left:668.640000pt;}
}





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

.ir_c00306:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00306{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00306;src:url('chunks/assets/font_2bd77b661927e5457f81a24a.woff2')format("woff");}.ff1_c00306{font-family:ff1_c00306;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00306;src:url('chunks/assets/font_2ec4e7a3766248a956c82d46.woff2')format("woff");}.ff2_c00306{font-family:ff2_c00306;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00306;src:url('chunks/assets/font_c3ee71b3ff210495e030e692.woff2')format("woff");}.ff3_c00306{font-family:ff3_c00306;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00306;src:url('chunks/assets/font_7ea04eba1f59605f845fd2ae.woff2')format("woff");}.ff4_c00306{font-family:ff4_c00306;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00306;src:url('chunks/assets/font_02bf4febc9fa120d67296770.woff2')format("woff");}.ff5_c00306{font-family:ff5_c00306;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00306{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00306{vertical-align:-14.760000px;}
.v0_c00306{vertical-align:0.000000px;}
.v1_c00306{vertical-align:32.037858px;}
.ls12_c00306{letter-spacing:-0.087700px;}
.lsb_c00306{letter-spacing:-0.075619px;}
.ls3_c00306{letter-spacing:-0.063018px;}
.lse_c00306{letter-spacing:-0.058466px;}
.lsa_c00306{letter-spacing:-0.042012px;}
.ls9_c00306{letter-spacing:-0.035010px;}
.ls10_c00306{letter-spacing:-0.029233px;}
.ls8_c00306{letter-spacing:-0.028008px;}
.lsc_c00306{letter-spacing:-0.023387px;}
.ls7_c00306{letter-spacing:-0.021006px;}
.ls5_c00306{letter-spacing:-0.014004px;}
.ls6_c00306{letter-spacing:-0.007002px;}
.ls4_c00306{letter-spacing:0.000000px;}
.ls0_c00306{letter-spacing:0.014004px;}
.ls1_c00306{letter-spacing:0.023281px;}
.ls2_c00306{letter-spacing:0.049014px;}
.lsd_c00306{letter-spacing:0.134473px;}
.lsf_c00306{letter-spacing:0.321565px;}
.ls11_c00306{letter-spacing:0.514504px;}
.sc__c00306{text-shadow:none;}
.sc0_c00306{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00306{-webkit-text-stroke:0px transparent;}
.sc0_c00306{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00306{word-spacing:-19.465560px;}
.ws0_c00306{word-spacing:-12.967628px;}
.ws2_c00306{word-spacing:-10.397640px;}
.ws19_c00306{word-spacing:-0.309872px;}
.ws15_c00306{word-spacing:-0.063018px;}
.ws3_c00306{word-spacing:0.000000px;}
.wsa_c00306{word-spacing:0.014004px;}
.ws14_c00306{word-spacing:0.028008px;}
.ws6_c00306{word-spacing:0.049014px;}
.ws18_c00306{word-spacing:0.070160px;}
.ws1c_c00306{word-spacing:0.099393px;}
.ws5_c00306{word-spacing:0.357102px;}
.ws1b_c00306{word-spacing:0.578817px;}
.ws17_c00306{word-spacing:0.596357px;}
.ws4_c00306{word-spacing:0.693198px;}
.wsb_c00306{word-spacing:0.742212px;}
.ws16_c00306{word-spacing:0.754217px;}
.ws1a_c00306{word-spacing:1.122555px;}
.ws8_c00306{word-spacing:1.435410px;}
.wsc_c00306{word-spacing:4.663332px;}
.wse_c00306{word-spacing:6.469848px;}
.wsd_c00306{word-spacing:7.191054px;}
.wsf_c00306{word-spacing:8.647470px;}
.ws7_c00306{word-spacing:12.239496px;}
.ws13_c00306{word-spacing:19.829664px;}
.ws10_c00306{word-spacing:24.864102px;}
.ws9_c00306{word-spacing:26.285508px;}
.ws12_c00306{word-spacing:29.527434px;}
.ws11_c00306{word-spacing:30.248640px;}
._4_c00306{margin-left:-2.709774px;}
._0_c00306{margin-left:-1.113318px;}
._1_c00306{width:1.071306px;}
._3_c00306{width:5.930694px;}
._2_c00306{width:8.283366px;}
.fc0_c00306{color:rgb(0,0,0);}
.fs2_c00306{font-size:37.809600px;}
.fs1_c00306{font-size:46.562400px;}
.fs3_c00306{font-size:58.466400px;}
.fs0_c00306{font-size:70.020000px;}
.y0_c00306{bottom:0.000000px;}
.y2_c00306{bottom:109.740968px;}
.y1_c00306{bottom:129.810450px;}
.y28_c00306{bottom:149.429891px;}
.y27_c00306{bottom:170.940450px;}
.y26_c00306{bottom:185.249891px;}
.y25_c00306{bottom:206.760450px;}
.y24_c00306{bottom:221.430450px;}
.y23_c00306{bottom:253.470450px;}
.y22_c00306{bottom:283.710450px;}
.y21_c00306{bottom:313.860450px;}
.y20_c00306{bottom:334.827831px;}
.y1f_c00306{bottom:354.897314px;}
.y1e_c00306{bottom:375.057822px;}
.y1d_c00306{bottom:395.218330px;}
.y1c_c00306{bottom:415.287813px;}
.y1b_c00306{bottom:435.448322px;}
.y1a_c00306{bottom:455.608830px;}
.y19_c00306{bottom:475.769339px;}
.y18_c00306{bottom:495.838821px;}
.y17_c00306{bottom:515.999329px;}
.y16_c00306{bottom:536.159838px;}
.y15_c00306{bottom:566.305842px;}
.y14_c00306{bottom:596.456454px;}
.y13_c00306{bottom:626.607066px;}
.y12_c00306{bottom:656.846954px;}
.y11_c00306{bottom:686.997566px;}
.y10_c00306{bottom:717.237453px;}
.yf_c00306{bottom:747.388065px;}
.ye_c00306{bottom:777.627952px;}
.yd_c00306{bottom:807.778565px;}
.yc_c00306{bottom:838.018452px;}
.yb_c00306{bottom:868.169064px;}
.ya_c00306{bottom:898.408952px;}
.y9_c00306{bottom:928.559563px;}
.y8_c00306{bottom:958.799451px;}
.y7_c00306{bottom:988.950063px;}
.y6_c00306{bottom:1019.189951px;}
.y5_c00306{bottom:1049.340563px;}
.y4_c00306{bottom:1079.580985px;}
.y3_c00306{bottom:1109.731597px;}
.h6_c00306{height:39.338549px;}
.h7_c00306{height:54.098549px;}
.h2_c00306{height:62.600889px;}
.h1_c00306{height:62.771836px;}
.h5_c00306{height:63.216299px;}
.h3_c00306{height:73.666644px;}
.h4_c00306{height:74.047218px;}
.h0_c00306{height:1263.000000px;}
.w0_c00306{width:892.500000px;}
.x0_c00306{left:0.000000px;}
.x2_c00306{left:82.710059px;}
.x3_c00306{left:136.259604px;}
.x6_c00306{left:162.540000px;}
.x5_c00306{left:343.260000px;}
.x1_c00306{left:431.730000px;}
.x4_c00306{left:446.400000px;}
@media print{
.v2_c00306{vertical-align:-13.120000pt;}
.v0_c00306{vertical-align:0.000000pt;}
.v1_c00306{vertical-align:28.478096pt;}
.ls12_c00306{letter-spacing:-0.077955pt;}
.lsb_c00306{letter-spacing:-0.067217pt;}
.ls3_c00306{letter-spacing:-0.056016pt;}
.lse_c00306{letter-spacing:-0.051970pt;}
.lsa_c00306{letter-spacing:-0.037344pt;}
.ls9_c00306{letter-spacing:-0.031120pt;}
.ls10_c00306{letter-spacing:-0.025985pt;}
.ls8_c00306{letter-spacing:-0.024896pt;}
.lsc_c00306{letter-spacing:-0.020788pt;}
.ls7_c00306{letter-spacing:-0.018672pt;}
.ls5_c00306{letter-spacing:-0.012448pt;}
.ls6_c00306{letter-spacing:-0.006224pt;}
.ls4_c00306{letter-spacing:0.000000pt;}
.ls0_c00306{letter-spacing:0.012448pt;}
.ls1_c00306{letter-spacing:0.020694pt;}
.ls2_c00306{letter-spacing:0.043568pt;}
.lsd_c00306{letter-spacing:0.119531pt;}
.lsf_c00306{letter-spacing:0.285836pt;}
.ls11_c00306{letter-spacing:0.457337pt;}
.ws1_c00306{word-spacing:-17.302720pt;}
.ws0_c00306{word-spacing:-11.526781pt;}
.ws2_c00306{word-spacing:-9.242347pt;}
.ws19_c00306{word-spacing:-0.275442pt;}
.ws15_c00306{word-spacing:-0.056016pt;}
.ws3_c00306{word-spacing:0.000000pt;}
.wsa_c00306{word-spacing:0.012448pt;}
.ws14_c00306{word-spacing:0.024896pt;}
.ws6_c00306{word-spacing:0.043568pt;}
.ws18_c00306{word-spacing:0.062364pt;}
.ws1c_c00306{word-spacing:0.088349pt;}
.ws5_c00306{word-spacing:0.317424pt;}
.ws1b_c00306{word-spacing:0.514504pt;}
.ws17_c00306{word-spacing:0.530095pt;}
.ws4_c00306{word-spacing:0.616176pt;}
.wsb_c00306{word-spacing:0.659744pt;}
.ws16_c00306{word-spacing:0.670415pt;}
.ws1a_c00306{word-spacing:0.997827pt;}
.ws8_c00306{word-spacing:1.275920pt;}
.wsc_c00306{word-spacing:4.145184pt;}
.wse_c00306{word-spacing:5.750976pt;}
.wsd_c00306{word-spacing:6.392048pt;}
.wsf_c00306{word-spacing:7.686640pt;}
.ws7_c00306{word-spacing:10.879552pt;}
.ws13_c00306{word-spacing:17.626368pt;}
.ws10_c00306{word-spacing:22.101424pt;}
.ws9_c00306{word-spacing:23.364896pt;}
.ws12_c00306{word-spacing:26.246608pt;}
.ws11_c00306{word-spacing:26.887680pt;}
._4_c00306{margin-left:-2.408688pt;}
._0_c00306{margin-left:-0.989616pt;}
._1_c00306{width:0.952272pt;}
._3_c00306{width:5.271728pt;}
._2_c00306{width:7.362992pt;}
.fs2_c00306{font-size:33.608533pt;}
.fs1_c00306{font-size:41.388800pt;}
.fs3_c00306{font-size:51.970133pt;}
.fs0_c00306{font-size:62.240000pt;}
.y0_c00306{bottom:0.000000pt;}
.y2_c00306{bottom:97.547527pt;}
.y1_c00306{bottom:115.387067pt;}
.y28_c00306{bottom:132.826570pt;}
.y27_c00306{bottom:151.947067pt;}
.y26_c00306{bottom:164.666570pt;}
.y25_c00306{bottom:183.787067pt;}
.y24_c00306{bottom:196.827067pt;}
.y23_c00306{bottom:225.307067pt;}
.y22_c00306{bottom:252.187067pt;}
.y21_c00306{bottom:278.987067pt;}
.y20_c00306{bottom:297.624739pt;}
.y1f_c00306{bottom:315.464279pt;}
.y1e_c00306{bottom:333.384731pt;}
.y1d_c00306{bottom:351.305183pt;}
.y1c_c00306{bottom:369.144723pt;}
.y1b_c00306{bottom:387.065175pt;}
.y1a_c00306{bottom:404.985627pt;}
.y19_c00306{bottom:422.906079pt;}
.y18_c00306{bottom:440.745619pt;}
.y17_c00306{bottom:458.666071pt;}
.y16_c00306{bottom:476.586523pt;}
.y15_c00306{bottom:503.382971pt;}
.y14_c00306{bottom:530.183515pt;}
.y13_c00306{bottom:556.984059pt;}
.y12_c00306{bottom:583.863959pt;}
.y11_c00306{bottom:610.664503pt;}
.y10_c00306{bottom:637.544403pt;}
.yf_c00306{bottom:664.344947pt;}
.ye_c00306{bottom:691.224847pt;}
.yd_c00306{bottom:718.025391pt;}
.yc_c00306{bottom:744.905291pt;}
.yb_c00306{bottom:771.705835pt;}
.ya_c00306{bottom:798.585735pt;}
.y9_c00306{bottom:825.386279pt;}
.y8_c00306{bottom:852.266179pt;}
.y7_c00306{bottom:879.066723pt;}
.y6_c00306{bottom:905.946623pt;}
.y5_c00306{bottom:932.747167pt;}
.y4_c00306{bottom:959.627543pt;}
.y3_c00306{bottom:986.428087pt;}
.h6_c00306{height:34.967599pt;}
.h7_c00306{height:48.087599pt;}
.h2_c00306{height:55.645234pt;}
.h1_c00306{height:55.797187pt;}
.h5_c00306{height:56.192266pt;}
.h3_c00306{height:65.481462pt;}
.h4_c00306{height:65.819750pt;}
.h0_c00306{height:1122.666667pt;}
.w0_c00306{width:793.333333pt;}
.x0_c00306{left:0.000000pt;}
.x2_c00306{left:73.520052pt;}
.x3_c00306{left:121.119648pt;}
.x6_c00306{left:144.480000pt;}
.x5_c00306{left:305.120000pt;}
.x1_c00306{left:383.760000pt;}
.x4_c00306{left:396.800000pt;}
}





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

.ir_c00307:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00307{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00307;src:url('chunks/assets/font_d50e529ffca6787ca7feedcc.woff2')format("woff");}.ff1_c00307{font-family:ff1_c00307;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00307;src:url('chunks/assets/font_632db6c4be748f2c7e40981a.woff2')format("woff");}.ff2_c00307{font-family:ff2_c00307;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00307;src:url('chunks/assets/font_2fdf63f41432bf00d7112f27.woff2')format("woff");}.ff3_c00307{font-family:ff3_c00307;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00307;src:url('chunks/assets/font_62c76ec9e51c2267d97cca5c.woff2')format("woff");}.ff4_c00307{font-family:ff4_c00307;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00307{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00307{vertical-align:-14.760000px;}
.v0_c00307{vertical-align:0.000000px;}
.v1_c00307{vertical-align:32.400600px;}
.ls14_c00307{letter-spacing:-0.146166px;}
.ls13_c00307{letter-spacing:-0.105240px;}
.ls10_c00307{letter-spacing:-0.091026px;}
.ls11_c00307{letter-spacing:-0.084024px;}
.ls12_c00307{letter-spacing:-0.075619px;}
.ls7_c00307{letter-spacing:-0.063018px;}
.lsf_c00307{letter-spacing:-0.049014px;}
.lsc_c00307{letter-spacing:-0.035010px;}
.lsd_c00307{letter-spacing:-0.028008px;}
.lsa_c00307{letter-spacing:-0.021006px;}
.lsb_c00307{letter-spacing:-0.014004px;}
.lse_c00307{letter-spacing:-0.007002px;}
.ls8_c00307{letter-spacing:0.000000px;}
.ls1_c00307{letter-spacing:0.014004px;}
.ls4_c00307{letter-spacing:0.023281px;}
.ls15_c00307{letter-spacing:0.023387px;}
.ls3_c00307{letter-spacing:0.035010px;}
.ls2_c00307{letter-spacing:0.042012px;}
.ls6_c00307{letter-spacing:0.056016px;}
.ls0_c00307{letter-spacing:0.084024px;}
.ls9_c00307{letter-spacing:0.343098px;}
.ls5_c00307{letter-spacing:1.057302px;}
.sc__c00307{text-shadow:none;}
.sc0_c00307{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00307{-webkit-text-stroke:0px transparent;}
.sc0_c00307{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00307{word-spacing:-19.549584px;}
.ws1_c00307{word-spacing:-19.507572px;}
.ws2_c00307{word-spacing:-12.967628px;}
.ws3_c00307{word-spacing:-10.397640px;}
.ws1c_c00307{word-spacing:-0.368338px;}
.ws4_c00307{word-spacing:0.000000px;}
.ws15_c00307{word-spacing:0.035010px;}
.wsd_c00307{word-spacing:0.357102px;}
.wsa_c00307{word-spacing:0.371106px;}
.ws12_c00307{word-spacing:0.693198px;}
.ws17_c00307{word-spacing:0.742212px;}
.ws16_c00307{word-spacing:1.155330px;}
.ws5_c00307{word-spacing:1.449414px;}
.ws6_c00307{word-spacing:1.799514px;}
.ws1a_c00307{word-spacing:1.917698px;}
.wsf_c00307{word-spacing:2.863818px;}
.wse_c00307{word-spacing:6.476850px;}
.ws1b_c00307{word-spacing:6.998428px;}
.ws7_c00307{word-spacing:8.255358px;}
.ws8_c00307{word-spacing:8.290368px;}
.ws13_c00307{word-spacing:8.654472px;}
.wsb_c00307{word-spacing:12.239496px;}
.wsc_c00307{word-spacing:12.596598px;}
.ws14_c00307{word-spacing:15.859530px;}
.ws11_c00307{word-spacing:24.121890px;}
.ws10_c00307{word-spacing:24.429978px;}
.ws18_c00307{word-spacing:24.549012px;}
.ws19_c00307{word-spacing:24.773076px;}
.ws9_c00307{word-spacing:31.698054px;}
._5_c00307{margin-left:-7.569816px;}
._0_c00307{margin-left:-1.071306px;}
._2_c00307{width:1.323378px;}
._4_c00307{width:5.930694px;}
._3_c00307{width:42.686982px;}
._1_c00307{width:1780.850700px;}
.fc0_c00307{color:rgb(0,0,0);}
.fs2_c00307{font-size:37.809600px;}
.fs1_c00307{font-size:46.562400px;}
.fs3_c00307{font-size:58.466400px;}
.fs0_c00307{font-size:70.020000px;}
.y0_c00307{bottom:0.000000px;}
.y2_c00307{bottom:109.740968px;}
.y1_c00307{bottom:129.810450px;}
.y1f_c00307{bottom:149.429548px;}
.y1e_c00307{bottom:167.250107px;}
.y1d_c00307{bottom:188.940450px;}
.y1c_c00307{bottom:203.610450px;}
.y1b_c00307{bottom:243.659262px;}
.y1a_c00307{bottom:264.539226px;}
.y19_c00307{bottom:284.699734px;}
.y18_c00307{bottom:304.679942px;}
.y17_c00307{bottom:324.840450px;}
.y16_c00307{bottom:355.800450px;}
.y15_c00307{bottom:386.040600px;}
.y14_c00307{bottom:416.190450px;}
.y13_c00307{bottom:446.430600px;}
.y12_c00307{bottom:476.580450px;}
.y11_c00307{bottom:506.820450px;}
.y10_c00307{bottom:536.970450px;}
.yf_c00307{bottom:567.210450px;}
.ye_c00307{bottom:597.360450px;}
.yd_c00307{bottom:627.600450px;}
.yc_c00307{bottom:657.750450px;}
.yb_c00307{bottom:687.990450px;}
.ya_c00307{bottom:718.140450px;}
.y9_c00307{bottom:748.380450px;}
.y8_c00307{bottom:778.530450px;}
.y7_c00307{bottom:808.770450px;}
.y6_c00307{bottom:838.920450px;}
.y5_c00307{bottom:869.160450px;}
.y4_c00307{bottom:899.310450px;}
.y3_c00307{bottom:925.680450px;}
.h6_c00307{height:39.338549px;}
.h7_c00307{height:54.098549px;}
.h3_c00307{height:62.600889px;}
.h1_c00307{height:62.771836px;}
.h2_c00307{height:63.216299px;}
.h5_c00307{height:63.221051px;}
.h4_c00307{height:74.029386px;}
.h0_c00307{height:1263.000000px;}
.w0_c00307{width:892.500000px;}
.x0_c00307{left:0.000000px;}
.x2_c00307{left:82.710059px;}
.x4_c00307{left:136.260000px;}
.x3_c00307{left:188.820000px;}
.x5_c00307{left:342.270000px;}
.x1_c00307{left:431.730000px;}
@media print{
.v2_c00307{vertical-align:-13.120000pt;}
.v0_c00307{vertical-align:0.000000pt;}
.v1_c00307{vertical-align:28.800533pt;}
.ls14_c00307{letter-spacing:-0.129925pt;}
.ls13_c00307{letter-spacing:-0.093546pt;}
.ls10_c00307{letter-spacing:-0.080912pt;}
.ls11_c00307{letter-spacing:-0.074688pt;}
.ls12_c00307{letter-spacing:-0.067217pt;}
.ls7_c00307{letter-spacing:-0.056016pt;}
.lsf_c00307{letter-spacing:-0.043568pt;}
.lsc_c00307{letter-spacing:-0.031120pt;}
.lsd_c00307{letter-spacing:-0.024896pt;}
.lsa_c00307{letter-spacing:-0.018672pt;}
.lsb_c00307{letter-spacing:-0.012448pt;}
.lse_c00307{letter-spacing:-0.006224pt;}
.ls8_c00307{letter-spacing:0.000000pt;}
.ls1_c00307{letter-spacing:0.012448pt;}
.ls4_c00307{letter-spacing:0.020694pt;}
.ls15_c00307{letter-spacing:0.020788pt;}
.ls3_c00307{letter-spacing:0.031120pt;}
.ls2_c00307{letter-spacing:0.037344pt;}
.ls6_c00307{letter-spacing:0.049792pt;}
.ls0_c00307{letter-spacing:0.074688pt;}
.ls9_c00307{letter-spacing:0.304976pt;}
.ls5_c00307{letter-spacing:0.939824pt;}
.ws0_c00307{word-spacing:-17.377408pt;}
.ws1_c00307{word-spacing:-17.340064pt;}
.ws2_c00307{word-spacing:-11.526781pt;}
.ws3_c00307{word-spacing:-9.242347pt;}
.ws1c_c00307{word-spacing:-0.327412pt;}
.ws4_c00307{word-spacing:0.000000pt;}
.ws15_c00307{word-spacing:0.031120pt;}
.wsd_c00307{word-spacing:0.317424pt;}
.wsa_c00307{word-spacing:0.329872pt;}
.ws12_c00307{word-spacing:0.616176pt;}
.ws17_c00307{word-spacing:0.659744pt;}
.ws16_c00307{word-spacing:1.026960pt;}
.ws5_c00307{word-spacing:1.288368pt;}
.ws6_c00307{word-spacing:1.599568pt;}
.ws1a_c00307{word-spacing:1.704620pt;}
.wsf_c00307{word-spacing:2.545616pt;}
.wse_c00307{word-spacing:5.757200pt;}
.ws1b_c00307{word-spacing:6.220825pt;}
.ws7_c00307{word-spacing:7.338096pt;}
.ws8_c00307{word-spacing:7.369216pt;}
.ws13_c00307{word-spacing:7.692864pt;}
.wsb_c00307{word-spacing:10.879552pt;}
.wsc_c00307{word-spacing:11.196976pt;}
.ws14_c00307{word-spacing:14.097360pt;}
.ws11_c00307{word-spacing:21.441680pt;}
.ws10_c00307{word-spacing:21.715536pt;}
.ws18_c00307{word-spacing:21.821344pt;}
.ws19_c00307{word-spacing:22.020512pt;}
.ws9_c00307{word-spacing:28.176048pt;}
._5_c00307{margin-left:-6.728725pt;}
._0_c00307{margin-left:-0.952272pt;}
._2_c00307{width:1.176336pt;}
._4_c00307{width:5.271728pt;}
._3_c00307{width:37.943984pt;}
._1_c00307{width:1582.978400pt;}
.fs2_c00307{font-size:33.608533pt;}
.fs1_c00307{font-size:41.388800pt;}
.fs3_c00307{font-size:51.970133pt;}
.fs0_c00307{font-size:62.240000pt;}
.y0_c00307{bottom:0.000000pt;}
.y2_c00307{bottom:97.547527pt;}
.y1_c00307{bottom:115.387067pt;}
.y1f_c00307{bottom:132.826265pt;}
.y1e_c00307{bottom:148.666762pt;}
.y1d_c00307{bottom:167.947067pt;}
.y1c_c00307{bottom:180.987067pt;}
.y1b_c00307{bottom:216.586011pt;}
.y1a_c00307{bottom:235.145979pt;}
.y19_c00307{bottom:253.066431pt;}
.y18_c00307{bottom:270.826615pt;}
.y17_c00307{bottom:288.747067pt;}
.y16_c00307{bottom:316.267067pt;}
.y15_c00307{bottom:343.147200pt;}
.y14_c00307{bottom:369.947067pt;}
.y13_c00307{bottom:396.827200pt;}
.y12_c00307{bottom:423.627067pt;}
.y11_c00307{bottom:450.507067pt;}
.y10_c00307{bottom:477.307067pt;}
.yf_c00307{bottom:504.187067pt;}
.ye_c00307{bottom:530.987067pt;}
.yd_c00307{bottom:557.867067pt;}
.yc_c00307{bottom:584.667067pt;}
.yb_c00307{bottom:611.547067pt;}
.ya_c00307{bottom:638.347067pt;}
.y9_c00307{bottom:665.227067pt;}
.y8_c00307{bottom:692.027067pt;}
.y7_c00307{bottom:718.907067pt;}
.y6_c00307{bottom:745.707067pt;}
.y5_c00307{bottom:772.587067pt;}
.y4_c00307{bottom:799.387067pt;}
.y3_c00307{bottom:822.827067pt;}
.h6_c00307{height:34.967599pt;}
.h7_c00307{height:48.087599pt;}
.h3_c00307{height:55.645234pt;}
.h1_c00307{height:55.797187pt;}
.h2_c00307{height:56.192266pt;}
.h5_c00307{height:56.196490pt;}
.h4_c00307{height:65.803899pt;}
.h0_c00307{height:1122.666667pt;}
.w0_c00307{width:793.333333pt;}
.x0_c00307{left:0.000000pt;}
.x2_c00307{left:73.520052pt;}
.x4_c00307{left:121.120000pt;}
.x3_c00307{left:167.840000pt;}
.x5_c00307{left:304.240000pt;}
.x1_c00307{left:383.760000pt;}
}





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

.ir_c00308:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00308{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00308;src:url('chunks/assets/font_cd2e2ec17a4737c23f640226.woff2')format("woff");}.ff1_c00308{font-family:ff1_c00308;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00308;src:url('chunks/assets/font_e2e394a91f7128de9c2fe02c.woff2')format("woff");}.ff2_c00308{font-family:ff2_c00308;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00308;src:url('chunks/assets/font_08f23766e3149f3837f11c91.woff2')format("woff");}.ff3_c00308{font-family:ff3_c00308;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00308;src:url('chunks/assets/font_4494e74d3bb36a3b206bbefc.woff2')format("woff");}.ff4_c00308{font-family:ff4_c00308;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00308;src:url('chunks/assets/font_d2ef0493caf4dc7a3c7550a1.woff2')format("woff");}.ff5_c00308{font-family:ff5_c00308;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00308;src:url('chunks/assets/font_6637bf698c70d8081c317761.woff2')format("woff");}.ff6_c00308{font-family:ff6_c00308;line-height:1.133301;font-style:normal;font-weight: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_c00308;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff7_c00308{font-family:ff7_c00308;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00308{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00308{vertical-align:-14.760600px;}
.v0_c00308{vertical-align:0.000000px;}
.v1_c00308{vertical-align:32.400000px;}
.ls18_c00308{letter-spacing:-1.064088px;}
.ls1a_c00308{letter-spacing:-0.707443px;}
.ls25_c00308{letter-spacing:-0.648977px;}
.ls28_c00308{letter-spacing:-0.637284px;}
.ls27_c00308{letter-spacing:-0.344952px;}
.ls17_c00308{letter-spacing:-0.263099px;}
.ls20_c00308{letter-spacing:-0.222172px;}
.ls21_c00308{letter-spacing:-0.134473px;}
.ls1c_c00308{letter-spacing:-0.105240px;}
.ls19_c00308{letter-spacing:-0.093546px;}
.ls14_c00308{letter-spacing:-0.075619px;}
.ls9_c00308{letter-spacing:-0.063018px;}
.ls23_c00308{letter-spacing:-0.058466px;}
.ls11_c00308{letter-spacing:-0.056016px;}
.ls1b_c00308{letter-spacing:-0.052620px;}
.lsc_c00308{letter-spacing:-0.049014px;}
.ls12_c00308{letter-spacing:-0.042012px;}
.ls22_c00308{letter-spacing:-0.035080px;}
.lsb_c00308{letter-spacing:-0.035010px;}
.lsd_c00308{letter-spacing:-0.028008px;}
.lsf_c00308{letter-spacing:-0.021006px;}
.lse_c00308{letter-spacing:-0.014004px;}
.ls1d_c00308{letter-spacing:-0.011693px;}
.ls10_c00308{letter-spacing:-0.007002px;}
.ls15_c00308{letter-spacing:-0.005847px;}
.lsa_c00308{letter-spacing:0.000000px;}
.ls2_c00308{letter-spacing:0.007002px;}
.ls13_c00308{letter-spacing:0.014004px;}
.ls4_c00308{letter-spacing:0.015653px;}
.ls5_c00308{letter-spacing:0.023281px;}
.ls3_c00308{letter-spacing:0.028008px;}
.ls7_c00308{letter-spacing:0.040926px;}
.ls0_c00308{letter-spacing:0.049014px;}
.ls1_c00308{letter-spacing:0.063018px;}
.ls8_c00308{letter-spacing:0.333258px;}
.ls1f_c00308{letter-spacing:0.350798px;}
.ls6_c00308{letter-spacing:0.362492px;}
.ls1e_c00308{letter-spacing:0.380032px;}
.ls24_c00308{letter-spacing:0.444345px;}
.ls16_c00308{letter-spacing:0.537891px;}
.ls26_c00308{letter-spacing:0.719137px;}
.sc__c00308{text-shadow:none;}
.sc0_c00308{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00308{-webkit-text-stroke:0px transparent;}
.sc0_c00308{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00308{word-spacing:-58.466400px;}
.ws0_c00308{word-spacing:-19.479564px;}
.ws1_c00308{word-spacing:-19.465560px;}
.ws5_c00308{word-spacing:-16.195193px;}
.ws2_c00308{word-spacing:-12.967628px;}
.ws3_c00308{word-spacing:-10.397640px;}
.ws3c_c00308{word-spacing:-0.695750px;}
.ws32_c00308{word-spacing:-0.526198px;}
.ws31_c00308{word-spacing:-0.339105px;}
.ws46_c00308{word-spacing:-0.309872px;}
.ws3b_c00308{word-spacing:-0.005847px;}
.ws6_c00308{word-spacing:0.000000px;}
.ws27_c00308{word-spacing:0.028008px;}
.wsf_c00308{word-spacing:0.035010px;}
.ws45_c00308{word-spacing:0.146166px;}
.wse_c00308{word-spacing:0.371106px;}
.ws33_c00308{word-spacing:0.637284px;}
.ws47_c00308{word-spacing:0.648977px;}
.ws34_c00308{word-spacing:1.075782px;}
.ws12_c00308{word-spacing:1.435410px;}
.ws36_c00308{word-spacing:1.812458px;}
.ws37_c00308{word-spacing:1.865078px;}
.ws35_c00308{word-spacing:1.906005px;}
.ws23_c00308{word-spacing:2.912832px;}
.ws11_c00308{word-spacing:3.970134px;}
.ws8_c00308{word-spacing:3.998142px;}
.ws2f_c00308{word-spacing:4.334238px;}
.ws7_c00308{word-spacing:4.341240px;}
.ws10_c00308{word-spacing:4.663332px;}
.ws30_c00308{word-spacing:7.555158px;}
.ws29_c00308{word-spacing:7.562160px;}
.ws13_c00308{word-spacing:7.576164px;}
.ws28_c00308{word-spacing:10.082880px;}
.ws1b_c00308{word-spacing:10.467990px;}
.ws2a_c00308{word-spacing:10.755072px;}
.wsa_c00308{word-spacing:11.182194px;}
.ws9_c00308{word-spacing:12.176478px;}
.ws43_c00308{word-spacing:12.891841px;}
.ws15_c00308{word-spacing:12.946698px;}
.ws2b_c00308{word-spacing:13.366818px;}
.ws42_c00308{word-spacing:13.394652px;}
.ws44_c00308{word-spacing:14.341808px;}
.ws39_c00308{word-spacing:14.423661px;}
.ws38_c00308{word-spacing:14.517207px;}
.ws3a_c00308{word-spacing:15.838548px;}
.ws3d_c00308{word-spacing:16.937716px;}
.ws40_c00308{word-spacing:16.966949px;}
.ws41_c00308{word-spacing:17.253435px;}
.ws3f_c00308{word-spacing:17.428834px;}
.ws3e_c00308{word-spacing:17.516533px;}
.ws25_c00308{word-spacing:20.158758px;}
.ws20_c00308{word-spacing:21.608172px;}
.ws24_c00308{word-spacing:22.679478px;}
.wsb_c00308{word-spacing:23.064588px;}
.ws2e_c00308{word-spacing:27.314802px;}
.ws1c_c00308{word-spacing:32.391252px;}
.ws17_c00308{word-spacing:32.440266px;}
.ws22_c00308{word-spacing:35.976276px;}
.ws19_c00308{word-spacing:38.167902px;}
.wsd_c00308{word-spacing:40.681620px;}
.ws14_c00308{word-spacing:48.243780px;}
.ws1d_c00308{word-spacing:50.428404px;}
.ws1e_c00308{word-spacing:50.442408px;}
.ws26_c00308{word-spacing:52.213914px;}
.ws1f_c00308{word-spacing:57.990564px;}
.ws21_c00308{word-spacing:60.826374px;}
.ws16_c00308{word-spacing:67.604310px;}
.ws2d_c00308{word-spacing:73.822086px;}
.ws2c_c00308{word-spacing:93.224628px;}
.ws18_c00308{word-spacing:97.943976px;}
.wsc_c00308{word-spacing:122.773068px;}
.ws1a_c00308{word-spacing:235.099152px;}
._3_c00308{margin-left:-7.562814px;}
._5_c00308{margin-left:-2.411198px;}
._0_c00308{margin-left:-1.078308px;}
._1_c00308{width:1.085310px;}
._4_c00308{width:2.146347px;}
._2_c00308{width:5.930694px;}
.fc0_c00308{color:rgb(0,0,0);}
.fs2_c00308{font-size:37.809600px;}
.fs1_c00308{font-size:46.562400px;}
.fs3_c00308{font-size:58.466400px;}
.fs0_c00308{font-size:70.020000px;}
.y0_c00308{bottom:0.000000px;}
.y2_c00308{bottom:109.740968px;}
.y1_c00308{bottom:129.810450px;}
.y3b_c00308{bottom:169.860450px;}
.y3a_c00308{bottom:211.710600px;}
.y39_c00308{bottom:246.540171px;}
.y38_c00308{bottom:264.360730px;}
.y37_c00308{bottom:285.960450px;}
.y36_c00308{bottom:300.180171px;}
.y35_c00308{bottom:318.000730px;}
.y34_c00308{bottom:339.600450px;}
.y33_c00308{bottom:357.510450px;}
.y32_c00308{bottom:375.330600px;}
.y31_c00308{bottom:390.000600px;}
.y30_c00308{bottom:425.010450px;}
.y19_c00308{bottom:445.524231px;}
.y2f_c00308{bottom:455.250450px;}
.y18_c00308{bottom:475.764118px;}
.y2e_c00308{bottom:485.400450px;}
.y17_c00308{bottom:505.914731px;}
.y2d_c00308{bottom:515.640450px;}
.y16_c00308{bottom:536.154618px;}
.y2c_c00308{bottom:545.790450px;}
.y15_c00308{bottom:566.305230px;}
.y2b_c00308{bottom:576.030450px;}
.y14_c00308{bottom:596.455842px;}
.y2a_c00308{bottom:606.180450px;}
.y13_c00308{bottom:626.606454px;}
.y29_c00308{bottom:636.420450px;}
.y12_c00308{bottom:656.846341px;}
.y28_c00308{bottom:666.660450px;}
.y11_c00308{bottom:686.996953px;}
.y27_c00308{bottom:696.810450px;}
.y10_c00308{bottom:717.236841px;}
.y26_c00308{bottom:727.050450px;}
.yf_c00308{bottom:747.387453px;}
.y25_c00308{bottom:757.200450px;}
.ye_c00308{bottom:777.627340px;}
.y24_c00308{bottom:787.440450px;}
.yd_c00308{bottom:807.777952px;}
.y23_c00308{bottom:837.930600px;}
.yc_c00308{bottom:838.017840px;}
.yb_c00308{bottom:868.168452px;}
.y22_c00308{bottom:868.170450px;}
.ya_c00308{bottom:898.408340px;}
.y21_c00308{bottom:898.410450px;}
.y9_c00308{bottom:928.558951px;}
.y20_c00308{bottom:928.560450px;}
.y8_c00308{bottom:958.798839px;}
.y1f_c00308{bottom:958.800450px;}
.y7_c00308{bottom:988.949451px;}
.y1e_c00308{bottom:988.950450px;}
.y6_c00308{bottom:1019.189339px;}
.y1d_c00308{bottom:1019.190450px;}
.y5_c00308{bottom:1049.339950px;}
.y1c_c00308{bottom:1049.340450px;}
.y4_c00308{bottom:1079.579838px;}
.y1b_c00308{bottom:1079.580450px;}
.y1a_c00308{bottom:1109.730450px;}
.y3_c00308{bottom:1109.731597px;}
.h5_c00308{height:39.337949px;}
.h6_c00308{height:39.338549px;}
.h8_c00308{height:39.697949px;}
.h7_c00308{height:54.098549px;}
.h2_c00308{height:62.600889px;}
.h1_c00308{height:62.771836px;}
.h3_c00308{height:63.216299px;}
.h4_c00308{height:74.142464px;}
.h0_c00308{height:1263.000000px;}
.w0_c00308{width:892.500000px;}
.x0_c00308{left:0.000000px;}
.x2_c00308{left:82.710059px;}
.x3_c00308{left:136.259604px;}
.x1_c00308{left:431.730000px;}
.x4_c00308{left:466.740000px;}
@media print{
.v2_c00308{vertical-align:-13.120533pt;}
.v0_c00308{vertical-align:0.000000pt;}
.v1_c00308{vertical-align:28.800000pt;}
.ls18_c00308{letter-spacing:-0.945856pt;}
.ls1a_c00308{letter-spacing:-0.628839pt;}
.ls25_c00308{letter-spacing:-0.576868pt;}
.ls28_c00308{letter-spacing:-0.566474pt;}
.ls27_c00308{letter-spacing:-0.306624pt;}
.ls17_c00308{letter-spacing:-0.233866pt;}
.ls20_c00308{letter-spacing:-0.197487pt;}
.ls21_c00308{letter-spacing:-0.119531pt;}
.ls1c_c00308{letter-spacing:-0.093546pt;}
.ls19_c00308{letter-spacing:-0.083152pt;}
.ls14_c00308{letter-spacing:-0.067217pt;}
.ls9_c00308{letter-spacing:-0.056016pt;}
.ls23_c00308{letter-spacing:-0.051970pt;}
.ls11_c00308{letter-spacing:-0.049792pt;}
.ls1b_c00308{letter-spacing:-0.046773pt;}
.lsc_c00308{letter-spacing:-0.043568pt;}
.ls12_c00308{letter-spacing:-0.037344pt;}
.ls22_c00308{letter-spacing:-0.031182pt;}
.lsb_c00308{letter-spacing:-0.031120pt;}
.lsd_c00308{letter-spacing:-0.024896pt;}
.lsf_c00308{letter-spacing:-0.018672pt;}
.lse_c00308{letter-spacing:-0.012448pt;}
.ls1d_c00308{letter-spacing:-0.010394pt;}
.ls10_c00308{letter-spacing:-0.006224pt;}
.ls15_c00308{letter-spacing:-0.005197pt;}
.lsa_c00308{letter-spacing:0.000000pt;}
.ls2_c00308{letter-spacing:0.006224pt;}
.ls13_c00308{letter-spacing:0.012448pt;}
.ls4_c00308{letter-spacing:0.013914pt;}
.ls5_c00308{letter-spacing:0.020694pt;}
.ls3_c00308{letter-spacing:0.024896pt;}
.ls7_c00308{letter-spacing:0.036379pt;}
.ls0_c00308{letter-spacing:0.043568pt;}
.ls1_c00308{letter-spacing:0.056016pt;}
.ls8_c00308{letter-spacing:0.296230pt;}
.ls1f_c00308{letter-spacing:0.311821pt;}
.ls6_c00308{letter-spacing:0.322215pt;}
.ls1e_c00308{letter-spacing:0.337806pt;}
.ls24_c00308{letter-spacing:0.394973pt;}
.ls16_c00308{letter-spacing:0.478125pt;}
.ls26_c00308{letter-spacing:0.639233pt;}
.ws4_c00308{word-spacing:-51.970133pt;}
.ws0_c00308{word-spacing:-17.315168pt;}
.ws1_c00308{word-spacing:-17.302720pt;}
.ws5_c00308{word-spacing:-14.395727pt;}
.ws2_c00308{word-spacing:-11.526781pt;}
.ws3_c00308{word-spacing:-9.242347pt;}
.ws3c_c00308{word-spacing:-0.618445pt;}
.ws32_c00308{word-spacing:-0.467731pt;}
.ws31_c00308{word-spacing:-0.301427pt;}
.ws46_c00308{word-spacing:-0.275442pt;}
.ws3b_c00308{word-spacing:-0.005197pt;}
.ws6_c00308{word-spacing:0.000000pt;}
.ws27_c00308{word-spacing:0.024896pt;}
.wsf_c00308{word-spacing:0.031120pt;}
.ws45_c00308{word-spacing:0.129925pt;}
.wse_c00308{word-spacing:0.329872pt;}
.ws33_c00308{word-spacing:0.566474pt;}
.ws47_c00308{word-spacing:0.576868pt;}
.ws34_c00308{word-spacing:0.956250pt;}
.ws12_c00308{word-spacing:1.275920pt;}
.ws36_c00308{word-spacing:1.611074pt;}
.ws37_c00308{word-spacing:1.657847pt;}
.ws35_c00308{word-spacing:1.694226pt;}
.ws23_c00308{word-spacing:2.589184pt;}
.ws11_c00308{word-spacing:3.529008pt;}
.ws8_c00308{word-spacing:3.553904pt;}
.ws2f_c00308{word-spacing:3.852656pt;}
.ws7_c00308{word-spacing:3.858880pt;}
.ws10_c00308{word-spacing:4.145184pt;}
.ws30_c00308{word-spacing:6.715696pt;}
.ws29_c00308{word-spacing:6.721920pt;}
.ws13_c00308{word-spacing:6.734368pt;}
.ws28_c00308{word-spacing:8.962560pt;}
.ws1b_c00308{word-spacing:9.304880pt;}
.ws2a_c00308{word-spacing:9.560064pt;}
.wsa_c00308{word-spacing:9.939728pt;}
.ws9_c00308{word-spacing:10.823536pt;}
.ws43_c00308{word-spacing:11.459414pt;}
.ws15_c00308{word-spacing:11.508176pt;}
.ws2b_c00308{word-spacing:11.881616pt;}
.ws42_c00308{word-spacing:11.906358pt;}
.ws44_c00308{word-spacing:12.748274pt;}
.ws39_c00308{word-spacing:12.821032pt;}
.ws38_c00308{word-spacing:12.904184pt;}
.ws3a_c00308{word-spacing:14.078709pt;}
.ws3d_c00308{word-spacing:15.055748pt;}
.ws40_c00308{word-spacing:15.081733pt;}
.ws41_c00308{word-spacing:15.336386pt;}
.ws3f_c00308{word-spacing:15.492297pt;}
.ws3e_c00308{word-spacing:15.570252pt;}
.ws25_c00308{word-spacing:17.918896pt;}
.ws20_c00308{word-spacing:19.207264pt;}
.ws24_c00308{word-spacing:20.159536pt;}
.wsb_c00308{word-spacing:20.501856pt;}
.ws2e_c00308{word-spacing:24.279824pt;}
.ws1c_c00308{word-spacing:28.792224pt;}
.ws17_c00308{word-spacing:28.835792pt;}
.ws22_c00308{word-spacing:31.978912pt;}
.ws19_c00308{word-spacing:33.927024pt;}
.wsd_c00308{word-spacing:36.161440pt;}
.ws14_c00308{word-spacing:42.883360pt;}
.ws1d_c00308{word-spacing:44.825248pt;}
.ws1e_c00308{word-spacing:44.837696pt;}
.ws26_c00308{word-spacing:46.412368pt;}
.ws1f_c00308{word-spacing:51.547168pt;}
.ws21_c00308{word-spacing:54.067888pt;}
.ws16_c00308{word-spacing:60.092720pt;}
.ws2d_c00308{word-spacing:65.619632pt;}
.ws2c_c00308{word-spacing:82.866336pt;}
.ws18_c00308{word-spacing:87.061312pt;}
.wsc_c00308{word-spacing:109.131616pt;}
.ws1a_c00308{word-spacing:208.977024pt;}
._3_c00308{margin-left:-6.722501pt;}
._5_c00308{margin-left:-2.143287pt;}
._0_c00308{margin-left:-0.958496pt;}
._1_c00308{width:0.964720pt;}
._4_c00308{width:1.907864pt;}
._2_c00308{width:5.271728pt;}
.fs2_c00308{font-size:33.608533pt;}
.fs1_c00308{font-size:41.388800pt;}
.fs3_c00308{font-size:51.970133pt;}
.fs0_c00308{font-size:62.240000pt;}
.y0_c00308{bottom:0.000000pt;}
.y2_c00308{bottom:97.547527pt;}
.y1_c00308{bottom:115.387067pt;}
.y3b_c00308{bottom:150.987067pt;}
.y3a_c00308{bottom:188.187200pt;}
.y39_c00308{bottom:219.146819pt;}
.y38_c00308{bottom:234.987316pt;}
.y37_c00308{bottom:254.187067pt;}
.y36_c00308{bottom:266.826819pt;}
.y35_c00308{bottom:282.667316pt;}
.y34_c00308{bottom:301.867067pt;}
.y33_c00308{bottom:317.787067pt;}
.y32_c00308{bottom:333.627200pt;}
.y31_c00308{bottom:346.667200pt;}
.y30_c00308{bottom:377.787067pt;}
.y19_c00308{bottom:396.021539pt;}
.y2f_c00308{bottom:404.667067pt;}
.y18_c00308{bottom:422.901439pt;}
.y2e_c00308{bottom:431.467067pt;}
.y17_c00308{bottom:449.701983pt;}
.y2d_c00308{bottom:458.347067pt;}
.y16_c00308{bottom:476.581883pt;}
.y2c_c00308{bottom:485.147067pt;}
.y15_c00308{bottom:503.382427pt;}
.y2b_c00308{bottom:512.027067pt;}
.y14_c00308{bottom:530.182971pt;}
.y2a_c00308{bottom:538.827067pt;}
.y13_c00308{bottom:556.983515pt;}
.y29_c00308{bottom:565.707067pt;}
.y12_c00308{bottom:583.863415pt;}
.y28_c00308{bottom:592.587067pt;}
.y11_c00308{bottom:610.663959pt;}
.y27_c00308{bottom:619.387067pt;}
.y10_c00308{bottom:637.543859pt;}
.y26_c00308{bottom:646.267067pt;}
.yf_c00308{bottom:664.344403pt;}
.y25_c00308{bottom:673.067067pt;}
.ye_c00308{bottom:691.224303pt;}
.y24_c00308{bottom:699.947067pt;}
.yd_c00308{bottom:718.024847pt;}
.y23_c00308{bottom:744.827200pt;}
.yc_c00308{bottom:744.904747pt;}
.yb_c00308{bottom:771.705291pt;}
.y22_c00308{bottom:771.707067pt;}
.ya_c00308{bottom:798.585191pt;}
.y21_c00308{bottom:798.587067pt;}
.y9_c00308{bottom:825.385735pt;}
.y20_c00308{bottom:825.387067pt;}
.y8_c00308{bottom:852.265635pt;}
.y1f_c00308{bottom:852.267067pt;}
.y7_c00308{bottom:879.066179pt;}
.y1e_c00308{bottom:879.067067pt;}
.y6_c00308{bottom:905.946079pt;}
.y1d_c00308{bottom:905.947067pt;}
.y5_c00308{bottom:932.746623pt;}
.y1c_c00308{bottom:932.747067pt;}
.y4_c00308{bottom:959.626523pt;}
.y1b_c00308{bottom:959.627067pt;}
.y1a_c00308{bottom:986.427067pt;}
.y3_c00308{bottom:986.428087pt;}
.h5_c00308{height:34.967066pt;}
.h6_c00308{height:34.967599pt;}
.h8_c00308{height:35.287066pt;}
.h7_c00308{height:48.087599pt;}
.h2_c00308{height:55.645234pt;}
.h1_c00308{height:55.797187pt;}
.h3_c00308{height:56.192266pt;}
.h4_c00308{height:65.904413pt;}
.h0_c00308{height:1122.666667pt;}
.w0_c00308{width:793.333333pt;}
.x0_c00308{left:0.000000pt;}
.x2_c00308{left:73.520052pt;}
.x3_c00308{left:121.119648pt;}
.x1_c00308{left:383.760000pt;}
.x4_c00308{left:414.880000pt;}
}





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

.ir_c00309:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00309{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00309;src:url('chunks/assets/font_32f89b3d2721aaafc5cbb2b7.woff2')format("woff");}.ff1_c00309{font-family:ff1_c00309;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00309;src:url('chunks/assets/font_fef94ae1c2d6f8f13ad54db9.woff2')format("woff");}.ff2_c00309{font-family:ff2_c00309;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00309{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00309{vertical-align:0.000000px;}
.v1_c00309{vertical-align:32.061336px;}
.ls6_c00309{letter-spacing:-0.063018px;}
.lse_c00309{letter-spacing:-0.056016px;}
.lsb_c00309{letter-spacing:-0.049014px;}
.lsd_c00309{letter-spacing:-0.042012px;}
.lsc_c00309{letter-spacing:-0.035010px;}
.lsf_c00309{letter-spacing:-0.028008px;}
.lsa_c00309{letter-spacing:-0.021006px;}
.ls8_c00309{letter-spacing:-0.014004px;}
.ls9_c00309{letter-spacing:-0.007002px;}
.ls7_c00309{letter-spacing:0.000000px;}
.ls5_c00309{letter-spacing:0.007002px;}
.ls4_c00309{letter-spacing:0.014004px;}
.ls2_c00309{letter-spacing:0.021006px;}
.ls3_c00309{letter-spacing:0.023281px;}
.ls1_c00309{letter-spacing:0.028008px;}
.ls0_c00309{letter-spacing:0.035010px;}
.sc__c00309{text-shadow:none;}
.sc0_c00309{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00309{-webkit-text-stroke:0px transparent;}
.sc0_c00309{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00309{word-spacing:-12.967628px;}
.ws1_c00309{word-spacing:0.000000px;}
.ws19_c00309{word-spacing:0.014004px;}
.wsf_c00309{word-spacing:0.035010px;}
.ws15_c00309{word-spacing:0.042012px;}
.ws25_c00309{word-spacing:0.350100px;}
.ws27_c00309{word-spacing:0.371106px;}
.ws17_c00309{word-spacing:1.078308px;}
.ws13_c00309{word-spacing:1.407402px;}
.ws14_c00309{word-spacing:4.355244px;}
.ws9_c00309{word-spacing:4.684338px;}
.wsd_c00309{word-spacing:5.356530px;}
.wsc_c00309{word-spacing:5.405544px;}
.ws26_c00309{word-spacing:6.133752px;}
.ws8_c00309{word-spacing:6.861960px;}
.ws1d_c00309{word-spacing:8.297370px;}
.wsb_c00309{word-spacing:9.389682px;}
.ws11_c00309{word-spacing:11.161188px;}
.ws5_c00309{word-spacing:12.239496px;}
.ws1f_c00309{word-spacing:12.631608px;}
.ws6_c00309{word-spacing:12.638610px;}
.ws12_c00309{word-spacing:12.953700px;}
.ws24_c00309{word-spacing:16.545726px;}
.ws4_c00309{word-spacing:17.287938px;}
.ws20_c00309{word-spacing:17.981136px;}
.ws1e_c00309{word-spacing:18.016146px;}
.ws7_c00309{word-spacing:19.073448px;}
.ws21_c00309{word-spacing:22.336380px;}
.ws16_c00309{word-spacing:24.135894px;}
.wse_c00309{word-spacing:25.942410px;}
.ws1b_c00309{word-spacing:32.755356px;}
.ws22_c00309{word-spacing:37.831806px;}
.ws1a_c00309{word-spacing:50.372388px;}
.ws3_c00309{word-spacing:53.271216px;}
.ws23_c00309{word-spacing:64.803510px;}
.ws2_c00309{word-spacing:66.554010px;}
.ws10_c00309{word-spacing:68.073444px;}
.wsa_c00309{word-spacing:72.008568px;}
.ws18_c00309{word-spacing:74.550294px;}
.ws1c_c00309{word-spacing:113.061294px;}
._0_c00309{margin-left:-1.183338px;}
._1_c00309{width:1.057302px;}
.fc0_c00309{color:rgb(0,0,0);}
.fs1_c00309{font-size:46.562400px;}
.fs0_c00309{font-size:70.020000px;}
.y0_c00309{bottom:0.000000px;}
.y2_c00309{bottom:109.740968px;}
.y1_c00309{bottom:129.810450px;}
.y22_c00309{bottom:173.728827px;}
.y21_c00309{bottom:203.968715px;}
.y20_c00309{bottom:234.119326px;}
.y1f_c00309{bottom:264.359214px;}
.y1e_c00309{bottom:294.509826px;}
.y1d_c00309{bottom:324.749714px;}
.y1c_c00309{bottom:354.900326px;}
.y1b_c00309{bottom:385.140213px;}
.y1a_c00309{bottom:415.290825px;}
.y19_c00309{bottom:445.530713px;}
.y18_c00309{bottom:475.765266px;}
.y17_c00309{bottom:505.915878px;}
.y16_c00309{bottom:536.155766px;}
.y15_c00309{bottom:566.306378px;}
.y14_c00309{bottom:596.456990px;}
.y13_c00309{bottom:626.607602px;}
.y12_c00309{bottom:656.847489px;}
.y11_c00309{bottom:686.998101px;}
.y10_c00309{bottom:717.237989px;}
.yf_c00309{bottom:747.388601px;}
.y2f_c00309{bottom:747.390450px;}
.ye_c00309{bottom:777.628488px;}
.y2e_c00309{bottom:777.630450px;}
.yd_c00309{bottom:807.779100px;}
.y2d_c00309{bottom:807.780450px;}
.yc_c00309{bottom:838.018988px;}
.y2c_c00309{bottom:838.020450px;}
.yb_c00309{bottom:868.169600px;}
.y2b_c00309{bottom:868.170450px;}
.ya_c00309{bottom:898.409487px;}
.y2a_c00309{bottom:898.410450px;}
.y9_c00309{bottom:928.560099px;}
.y29_c00309{bottom:928.560450px;}
.y8_c00309{bottom:958.799987px;}
.y28_c00309{bottom:958.800450px;}
.y27_c00309{bottom:988.950450px;}
.y7_c00309{bottom:988.950599px;}
.y26_c00309{bottom:1019.190450px;}
.y6_c00309{bottom:1019.190486px;}
.y25_c00309{bottom:1049.340450px;}
.y5_c00309{bottom:1049.341098px;}
.y24_c00309{bottom:1079.580450px;}
.y4_c00309{bottom:1079.580985px;}
.y23_c00309{bottom:1109.730450px;}
.y3_c00309{bottom:1109.731597px;}
.h2_c00309{height:62.600889px;}
.h1_c00309{height:62.771836px;}
.h3_c00309{height:73.690122px;}
.h0_c00309{height:1263.000000px;}
.w0_c00309{width:892.500000px;}
.x0_c00309{left:0.000000px;}
.x2_c00309{left:82.710059px;}
.x3_c00309{left:136.259604px;}
.x1_c00309{left:431.730000px;}
.x4_c00309{left:466.740000px;}
@media print{
.v0_c00309{vertical-align:0.000000pt;}
.v1_c00309{vertical-align:28.498965pt;}
.ls6_c00309{letter-spacing:-0.056016pt;}
.lse_c00309{letter-spacing:-0.049792pt;}
.lsb_c00309{letter-spacing:-0.043568pt;}
.lsd_c00309{letter-spacing:-0.037344pt;}
.lsc_c00309{letter-spacing:-0.031120pt;}
.lsf_c00309{letter-spacing:-0.024896pt;}
.lsa_c00309{letter-spacing:-0.018672pt;}
.ls8_c00309{letter-spacing:-0.012448pt;}
.ls9_c00309{letter-spacing:-0.006224pt;}
.ls7_c00309{letter-spacing:0.000000pt;}
.ls5_c00309{letter-spacing:0.006224pt;}
.ls4_c00309{letter-spacing:0.012448pt;}
.ls2_c00309{letter-spacing:0.018672pt;}
.ls3_c00309{letter-spacing:0.020694pt;}
.ls1_c00309{letter-spacing:0.024896pt;}
.ls0_c00309{letter-spacing:0.031120pt;}
.ws0_c00309{word-spacing:-11.526781pt;}
.ws1_c00309{word-spacing:0.000000pt;}
.ws19_c00309{word-spacing:0.012448pt;}
.wsf_c00309{word-spacing:0.031120pt;}
.ws15_c00309{word-spacing:0.037344pt;}
.ws25_c00309{word-spacing:0.311200pt;}
.ws27_c00309{word-spacing:0.329872pt;}
.ws17_c00309{word-spacing:0.958496pt;}
.ws13_c00309{word-spacing:1.251024pt;}
.ws14_c00309{word-spacing:3.871328pt;}
.ws9_c00309{word-spacing:4.163856pt;}
.wsd_c00309{word-spacing:4.761360pt;}
.wsc_c00309{word-spacing:4.804928pt;}
.ws26_c00309{word-spacing:5.452224pt;}
.ws8_c00309{word-spacing:6.099520pt;}
.ws1d_c00309{word-spacing:7.375440pt;}
.wsb_c00309{word-spacing:8.346384pt;}
.ws11_c00309{word-spacing:9.921056pt;}
.ws5_c00309{word-spacing:10.879552pt;}
.ws1f_c00309{word-spacing:11.228096pt;}
.ws6_c00309{word-spacing:11.234320pt;}
.ws12_c00309{word-spacing:11.514400pt;}
.ws24_c00309{word-spacing:14.707312pt;}
.ws4_c00309{word-spacing:15.367056pt;}
.ws20_c00309{word-spacing:15.983232pt;}
.ws1e_c00309{word-spacing:16.014352pt;}
.ws7_c00309{word-spacing:16.954176pt;}
.ws21_c00309{word-spacing:19.854560pt;}
.ws16_c00309{word-spacing:21.454128pt;}
.wse_c00309{word-spacing:23.059920pt;}
.ws1b_c00309{word-spacing:29.115872pt;}
.ws22_c00309{word-spacing:33.628272pt;}
.ws1a_c00309{word-spacing:44.775456pt;}
.ws3_c00309{word-spacing:47.352192pt;}
.ws23_c00309{word-spacing:57.603120pt;}
.ws2_c00309{word-spacing:59.159120pt;}
.ws10_c00309{word-spacing:60.509728pt;}
.wsa_c00309{word-spacing:64.007616pt;}
.ws18_c00309{word-spacing:66.266928pt;}
.ws1c_c00309{word-spacing:100.498928pt;}
._0_c00309{margin-left:-1.051856pt;}
._1_c00309{width:0.939824pt;}
.fs1_c00309{font-size:41.388800pt;}
.fs0_c00309{font-size:62.240000pt;}
.y0_c00309{bottom:0.000000pt;}
.y2_c00309{bottom:97.547527pt;}
.y1_c00309{bottom:115.387067pt;}
.y22_c00309{bottom:154.425624pt;}
.y21_c00309{bottom:181.305524pt;}
.y20_c00309{bottom:208.106068pt;}
.y1f_c00309{bottom:234.985968pt;}
.y1e_c00309{bottom:261.786512pt;}
.y1d_c00309{bottom:288.666412pt;}
.y1c_c00309{bottom:315.466956pt;}
.y1b_c00309{bottom:342.346856pt;}
.y1a_c00309{bottom:369.147400pt;}
.y19_c00309{bottom:396.027300pt;}
.y18_c00309{bottom:422.902459pt;}
.y17_c00309{bottom:449.703003pt;}
.y16_c00309{bottom:476.582903pt;}
.y15_c00309{bottom:503.383447pt;}
.y14_c00309{bottom:530.183991pt;}
.y13_c00309{bottom:556.984535pt;}
.y12_c00309{bottom:583.864435pt;}
.y11_c00309{bottom:610.664979pt;}
.y10_c00309{bottom:637.544879pt;}
.yf_c00309{bottom:664.345423pt;}
.y2f_c00309{bottom:664.347067pt;}
.ye_c00309{bottom:691.225323pt;}
.y2e_c00309{bottom:691.227067pt;}
.yd_c00309{bottom:718.025867pt;}
.y2d_c00309{bottom:718.027067pt;}
.yc_c00309{bottom:744.905767pt;}
.y2c_c00309{bottom:744.907067pt;}
.yb_c00309{bottom:771.706311pt;}
.y2b_c00309{bottom:771.707067pt;}
.ya_c00309{bottom:798.586211pt;}
.y2a_c00309{bottom:798.587067pt;}
.y9_c00309{bottom:825.386755pt;}
.y29_c00309{bottom:825.387067pt;}
.y8_c00309{bottom:852.266655pt;}
.y28_c00309{bottom:852.267067pt;}
.y27_c00309{bottom:879.067067pt;}
.y7_c00309{bottom:879.067199pt;}
.y26_c00309{bottom:905.947067pt;}
.y6_c00309{bottom:905.947099pt;}
.y25_c00309{bottom:932.747067pt;}
.y5_c00309{bottom:932.747643pt;}
.y24_c00309{bottom:959.627067pt;}
.y4_c00309{bottom:959.627543pt;}
.y23_c00309{bottom:986.427067pt;}
.y3_c00309{bottom:986.428087pt;}
.h2_c00309{height:55.645234pt;}
.h1_c00309{height:55.797187pt;}
.h3_c00309{height:65.502331pt;}
.h0_c00309{height:1122.666667pt;}
.w0_c00309{width:793.333333pt;}
.x0_c00309{left:0.000000pt;}
.x2_c00309{left:73.520052pt;}
.x3_c00309{left:121.119648pt;}
.x1_c00309{left:383.760000pt;}
.x4_c00309{left:414.880000pt;}
}





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

.ir_c00310:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00310{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00310;src:url('chunks/assets/font_ea19c8d5487ba34f425607b5.woff2')format("woff");}.ff1_c00310{font-family:ff1_c00310;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00310;src:url('chunks/assets/font_921dfd69dc121e90f33e0d93.woff2')format("woff");}.ff2_c00310{font-family:ff2_c00310;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00310{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00310{vertical-align:0.000000px;}
.v1_c00310{vertical-align:32.409396px;}
.lsd_c00310{letter-spacing:-0.077022px;}
.ls6_c00310{letter-spacing:-0.063018px;}
.lsa_c00310{letter-spacing:-0.056016px;}
.lsb_c00310{letter-spacing:-0.042012px;}
.lse_c00310{letter-spacing:-0.028008px;}
.ls8_c00310{letter-spacing:-0.021006px;}
.lsc_c00310{letter-spacing:-0.014004px;}
.ls9_c00310{letter-spacing:-0.007002px;}
.ls7_c00310{letter-spacing:0.000000px;}
.ls2_c00310{letter-spacing:0.007002px;}
.ls1_c00310{letter-spacing:0.014004px;}
.ls0_c00310{letter-spacing:0.021006px;}
.ls3_c00310{letter-spacing:0.023281px;}
.ls5_c00310{letter-spacing:0.035010px;}
.ls4_c00310{letter-spacing:0.042012px;}
.lsf_c00310{letter-spacing:0.245070px;}
.sc__c00310{text-shadow:none;}
.sc0_c00310{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00310{-webkit-text-stroke:0px transparent;}
.sc0_c00310{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00310{word-spacing:-19.479564px;}
.ws2_c00310{word-spacing:-19.465560px;}
.ws1_c00310{word-spacing:-12.967628px;}
.ws3_c00310{word-spacing:0.000000px;}
.wsd_c00310{word-spacing:0.406116px;}
.ws10_c00310{word-spacing:0.420120px;}
.ws12_c00310{word-spacing:2.177622px;}
.wsc_c00310{word-spacing:2.884824px;}
.ws7_c00310{word-spacing:5.727636px;}
.ws8_c00310{word-spacing:7.184052px;}
.wsf_c00310{word-spacing:7.555158px;}
.ws6_c00310{word-spacing:8.633466px;}
.ws1b_c00310{word-spacing:9.669762px;}
.ws1a_c00310{word-spacing:9.704772px;}
.ws9_c00310{word-spacing:10.124892px;}
.ws11_c00310{word-spacing:12.232494px;}
.ws17_c00310{word-spacing:12.603600px;}
.wse_c00310{word-spacing:14.382108px;}
.ws18_c00310{word-spacing:15.425406px;}
.ws15_c00310{word-spacing:19.801656px;}
.ws16_c00310{word-spacing:22.721490px;}
.ws4_c00310{word-spacing:23.043582px;}
.wsa_c00310{word-spacing:29.548440px;}
.ws13_c00310{word-spacing:32.377248px;}
.ws5_c00310{word-spacing:33.105456px;}
.ws14_c00310{word-spacing:33.854670px;}
.wsb_c00310{word-spacing:35.640180px;}
.ws19_c00310{word-spacing:41.402826px;}
.ws1c_c00310{word-spacing:148.330368px;}
._0_c00310{margin-left:-1.127322px;}
._1_c00310{width:1.400400px;}
._2_c00310{width:32.405256px;}
.fc0_c00310{color:rgb(0,0,0);}
.fs1_c00310{font-size:46.562400px;}
.fs0_c00310{font-size:70.020000px;}
.y0_c00310{bottom:0.000000px;}
.y2_c00310{bottom:109.740968px;}
.y1_c00310{bottom:129.810450px;}
.y22_c00310{bottom:173.728951px;}
.y21_c00310{bottom:203.968839px;}
.y20_c00310{bottom:234.119451px;}
.y1f_c00310{bottom:264.359338px;}
.y1e_c00310{bottom:294.509951px;}
.y1d_c00310{bottom:324.749838px;}
.y1c_c00310{bottom:354.897341px;}
.y1b_c00310{bottom:385.137228px;}
.y1a_c00310{bottom:415.287840px;}
.y19_c00310{bottom:445.527727px;}
.y18_c00310{bottom:475.767615px;}
.y17_c00310{bottom:505.918227px;}
.y16_c00310{bottom:536.158115px;}
.y15_c00310{bottom:566.308726px;}
.y14_c00310{bottom:596.459338px;}
.y13_c00310{bottom:626.609950px;}
.y12_c00310{bottom:656.849838px;}
.y11_c00310{bottom:686.998101px;}
.y10_c00310{bottom:717.237989px;}
.yf_c00310{bottom:747.388601px;}
.ye_c00310{bottom:777.628488px;}
.yd_c00310{bottom:807.779100px;}
.yc_c00310{bottom:838.018988px;}
.yb_c00310{bottom:868.169600px;}
.ya_c00310{bottom:898.409487px;}
.y9_c00310{bottom:928.560099px;}
.y8_c00310{bottom:958.799987px;}
.y7_c00310{bottom:988.950599px;}
.y6_c00310{bottom:1019.190486px;}
.y5_c00310{bottom:1049.341098px;}
.y4_c00310{bottom:1079.580985px;}
.y3_c00310{bottom:1109.731597px;}
.h2_c00310{height:62.600889px;}
.h1_c00310{height:62.771836px;}
.h3_c00310{height:74.038182px;}
.h4_c00310{height:74.041824px;}
.h0_c00310{height:1263.000000px;}
.w0_c00310{width:892.500000px;}
.x0_c00310{left:0.000000px;}
.x2_c00310{left:82.710059px;}
.x3_c00310{left:136.259604px;}
.x1_c00310{left:431.730000px;}
@media print{
.v0_c00310{vertical-align:0.000000pt;}
.v1_c00310{vertical-align:28.808352pt;}
.lsd_c00310{letter-spacing:-0.068464pt;}
.ls6_c00310{letter-spacing:-0.056016pt;}
.lsa_c00310{letter-spacing:-0.049792pt;}
.lsb_c00310{letter-spacing:-0.037344pt;}
.lse_c00310{letter-spacing:-0.024896pt;}
.ls8_c00310{letter-spacing:-0.018672pt;}
.lsc_c00310{letter-spacing:-0.012448pt;}
.ls9_c00310{letter-spacing:-0.006224pt;}
.ls7_c00310{letter-spacing:0.000000pt;}
.ls2_c00310{letter-spacing:0.006224pt;}
.ls1_c00310{letter-spacing:0.012448pt;}
.ls0_c00310{letter-spacing:0.018672pt;}
.ls3_c00310{letter-spacing:0.020694pt;}
.ls5_c00310{letter-spacing:0.031120pt;}
.ls4_c00310{letter-spacing:0.037344pt;}
.lsf_c00310{letter-spacing:0.217840pt;}
.ws0_c00310{word-spacing:-17.315168pt;}
.ws2_c00310{word-spacing:-17.302720pt;}
.ws1_c00310{word-spacing:-11.526781pt;}
.ws3_c00310{word-spacing:0.000000pt;}
.wsd_c00310{word-spacing:0.360992pt;}
.ws10_c00310{word-spacing:0.373440pt;}
.ws12_c00310{word-spacing:1.935664pt;}
.wsc_c00310{word-spacing:2.564288pt;}
.ws7_c00310{word-spacing:5.091232pt;}
.ws8_c00310{word-spacing:6.385824pt;}
.wsf_c00310{word-spacing:6.715696pt;}
.ws6_c00310{word-spacing:7.674192pt;}
.ws1b_c00310{word-spacing:8.595344pt;}
.ws1a_c00310{word-spacing:8.626464pt;}
.ws9_c00310{word-spacing:8.999904pt;}
.ws11_c00310{word-spacing:10.873328pt;}
.ws17_c00310{word-spacing:11.203200pt;}
.wse_c00310{word-spacing:12.784096pt;}
.ws18_c00310{word-spacing:13.711472pt;}
.ws15_c00310{word-spacing:17.601472pt;}
.ws16_c00310{word-spacing:20.196880pt;}
.ws4_c00310{word-spacing:20.483184pt;}
.wsa_c00310{word-spacing:26.265280pt;}
.ws13_c00310{word-spacing:28.779776pt;}
.ws5_c00310{word-spacing:29.427072pt;}
.ws14_c00310{word-spacing:30.093040pt;}
.wsb_c00310{word-spacing:31.680160pt;}
.ws19_c00310{word-spacing:36.802512pt;}
.ws1c_c00310{word-spacing:131.849216pt;}
._0_c00310{margin-left:-1.002064pt;}
._1_c00310{width:1.244800pt;}
._2_c00310{width:28.804672pt;}
.fs1_c00310{font-size:41.388800pt;}
.fs0_c00310{font-size:62.240000pt;}
.y0_c00310{bottom:0.000000pt;}
.y2_c00310{bottom:97.547527pt;}
.y1_c00310{bottom:115.387067pt;}
.y22_c00310{bottom:154.425735pt;}
.y21_c00310{bottom:181.305635pt;}
.y20_c00310{bottom:208.106179pt;}
.y1f_c00310{bottom:234.986079pt;}
.y1e_c00310{bottom:261.786623pt;}
.y1d_c00310{bottom:288.666523pt;}
.y1c_c00310{bottom:315.464303pt;}
.y1b_c00310{bottom:342.344203pt;}
.y1a_c00310{bottom:369.144747pt;}
.y19_c00310{bottom:396.024647pt;}
.y18_c00310{bottom:422.904547pt;}
.y17_c00310{bottom:449.705091pt;}
.y16_c00310{bottom:476.584991pt;}
.y15_c00310{bottom:503.385535pt;}
.y14_c00310{bottom:530.186079pt;}
.y13_c00310{bottom:556.986623pt;}
.y12_c00310{bottom:583.866523pt;}
.y11_c00310{bottom:610.664979pt;}
.y10_c00310{bottom:637.544879pt;}
.yf_c00310{bottom:664.345423pt;}
.ye_c00310{bottom:691.225323pt;}
.yd_c00310{bottom:718.025867pt;}
.yc_c00310{bottom:744.905767pt;}
.yb_c00310{bottom:771.706311pt;}
.ya_c00310{bottom:798.586211pt;}
.y9_c00310{bottom:825.386755pt;}
.y8_c00310{bottom:852.266655pt;}
.y7_c00310{bottom:879.067199pt;}
.y6_c00310{bottom:905.947099pt;}
.y5_c00310{bottom:932.747643pt;}
.y4_c00310{bottom:959.627543pt;}
.y3_c00310{bottom:986.428087pt;}
.h2_c00310{height:55.645234pt;}
.h1_c00310{height:55.797187pt;}
.h3_c00310{height:65.811718pt;}
.h4_c00310{height:65.814955pt;}
.h0_c00310{height:1122.666667pt;}
.w0_c00310{width:793.333333pt;}
.x0_c00310{left:0.000000pt;}
.x2_c00310{left:73.520052pt;}
.x3_c00310{left:121.119648pt;}
.x1_c00310{left:383.760000pt;}
}





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

.ir_c00311:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00311{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00311;src:url('chunks/assets/font_d140d36f8e585afe5a39ad2a.woff2')format("woff");}.ff1_c00311{font-family:ff1_c00311;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00311;src:url('chunks/assets/font_285e67f2133a133bec2e4d42.woff2')format("woff");}.ff2_c00311{font-family:ff2_c00311;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00311;src:url('chunks/assets/font_450125c439063f91c5935bdb.woff2')format("woff");}.ff3_c00311{font-family:ff3_c00311;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00311{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00311{vertical-align:0.000000px;}
.v1_c00311{vertical-align:32.049846px;}
.ls4_c00311{letter-spacing:-0.063018px;}
.lsa_c00311{letter-spacing:-0.056016px;}
.ls6_c00311{letter-spacing:-0.028008px;}
.ls7_c00311{letter-spacing:-0.021006px;}
.ls9_c00311{letter-spacing:-0.014004px;}
.ls8_c00311{letter-spacing:-0.007002px;}
.ls5_c00311{letter-spacing:0.000000px;}
.ls3_c00311{letter-spacing:0.007002px;}
.ls1_c00311{letter-spacing:0.021006px;}
.ls2_c00311{letter-spacing:0.023281px;}
.ls0_c00311{letter-spacing:0.028008px;}
.lsb_c00311{letter-spacing:0.231066px;}
.sc__c00311{text-shadow:none;}
.sc0_c00311{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00311{-webkit-text-stroke:0px transparent;}
.sc0_c00311{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00311{word-spacing:-12.967628px;}
.ws14_c00311{word-spacing:-0.245070px;}
.ws1_c00311{word-spacing:0.000000px;}
.wsf_c00311{word-spacing:0.364104px;}
.ws9_c00311{word-spacing:0.406116px;}
.ws6_c00311{word-spacing:3.613032px;}
.wsd_c00311{word-spacing:5.769648px;}
.ws4_c00311{word-spacing:8.248356px;}
.wsc_c00311{word-spacing:8.297370px;}
.ws3_c00311{word-spacing:9.011574px;}
.ws11_c00311{word-spacing:12.939696px;}
.wse_c00311{word-spacing:14.004000px;}
.ws5_c00311{word-spacing:18.730350px;}
.ws10_c00311{word-spacing:25.207200px;}
.ws8_c00311{word-spacing:26.656614px;}
.wsa_c00311{word-spacing:33.077448px;}
.ws7_c00311{word-spacing:44.644752px;}
.wsb_c00311{word-spacing:65.153610px;}
.ws12_c00311{word-spacing:68.038434px;}
.ws13_c00311{word-spacing:73.478988px;}
.ws2_c00311{word-spacing:101.479986px;}
._1_c00311{margin-left:-1.204344px;}
._0_c00311{width:1.113318px;}
.fc0_c00311{color:rgb(0,0,0);}
.fs1_c00311{font-size:46.562400px;}
.fs0_c00311{font-size:70.020000px;}
.y0_c00311{bottom:0.000000px;}
.y2_c00311{bottom:109.740968px;}
.y1_c00311{bottom:129.810450px;}
.y22_c00311{bottom:173.098517px;}
.y21_c00311{bottom:203.249128px;}
.y20_c00311{bottom:233.489016px;}
.y1f_c00311{bottom:263.548602px;}
.y1e_c00311{bottom:293.788489px;}
.y1d_c00311{bottom:323.939101px;}
.y1c_c00311{bottom:354.178989px;}
.y1b_c00311{bottom:384.329601px;}
.y1a_c00311{bottom:414.569489px;}
.y19_c00311{bottom:444.720101px;}
.y18_c00311{bottom:474.959988px;}
.y17_c00311{bottom:505.110600px;}
.y16_c00311{bottom:536.158227px;}
.y15_c00311{bottom:566.308839px;}
.y14_c00311{bottom:596.459451px;}
.y13_c00311{bottom:626.610063px;}
.y12_c00311{bottom:656.849950px;}
.y11_c00311{bottom:687.000563px;}
.y10_c00311{bottom:717.237989px;}
.yf_c00311{bottom:747.388601px;}
.ye_c00311{bottom:777.628488px;}
.yd_c00311{bottom:807.779100px;}
.yc_c00311{bottom:838.018988px;}
.yb_c00311{bottom:868.169600px;}
.ya_c00311{bottom:898.409487px;}
.y9_c00311{bottom:928.560099px;}
.y8_c00311{bottom:958.799987px;}
.y7_c00311{bottom:988.950599px;}
.y6_c00311{bottom:1019.190486px;}
.y5_c00311{bottom:1049.341098px;}
.y4_c00311{bottom:1079.580985px;}
.y3_c00311{bottom:1109.731597px;}
.h2_c00311{height:62.600889px;}
.h1_c00311{height:62.771836px;}
.h4_c00311{height:63.216299px;}
.h3_c00311{height:73.678632px;}
.h0_c00311{height:1263.000000px;}
.w0_c00311{width:892.500000px;}
.x0_c00311{left:0.000000px;}
.x2_c00311{left:82.710059px;}
.x3_c00311{left:136.259604px;}
.x5_c00311{left:288.270333px;}
.x1_c00311{left:431.730000px;}
.x4_c00311{left:446.400000px;}
@media print{
.v0_c00311{vertical-align:0.000000pt;}
.v1_c00311{vertical-align:28.488752pt;}
.ls4_c00311{letter-spacing:-0.056016pt;}
.lsa_c00311{letter-spacing:-0.049792pt;}
.ls6_c00311{letter-spacing:-0.024896pt;}
.ls7_c00311{letter-spacing:-0.018672pt;}
.ls9_c00311{letter-spacing:-0.012448pt;}
.ls8_c00311{letter-spacing:-0.006224pt;}
.ls5_c00311{letter-spacing:0.000000pt;}
.ls3_c00311{letter-spacing:0.006224pt;}
.ls1_c00311{letter-spacing:0.018672pt;}
.ls2_c00311{letter-spacing:0.020694pt;}
.ls0_c00311{letter-spacing:0.024896pt;}
.lsb_c00311{letter-spacing:0.205392pt;}
.ws0_c00311{word-spacing:-11.526781pt;}
.ws14_c00311{word-spacing:-0.217840pt;}
.ws1_c00311{word-spacing:0.000000pt;}
.wsf_c00311{word-spacing:0.323648pt;}
.ws9_c00311{word-spacing:0.360992pt;}
.ws6_c00311{word-spacing:3.211584pt;}
.wsd_c00311{word-spacing:5.128576pt;}
.ws4_c00311{word-spacing:7.331872pt;}
.wsc_c00311{word-spacing:7.375440pt;}
.ws3_c00311{word-spacing:8.010288pt;}
.ws11_c00311{word-spacing:11.501952pt;}
.wse_c00311{word-spacing:12.448000pt;}
.ws5_c00311{word-spacing:16.649200pt;}
.ws10_c00311{word-spacing:22.406400pt;}
.ws8_c00311{word-spacing:23.694768pt;}
.wsa_c00311{word-spacing:29.402176pt;}
.ws7_c00311{word-spacing:39.684224pt;}
.wsb_c00311{word-spacing:57.914320pt;}
.ws12_c00311{word-spacing:60.478608pt;}
.ws13_c00311{word-spacing:65.314656pt;}
.ws2_c00311{word-spacing:90.204432pt;}
._1_c00311{margin-left:-1.070528pt;}
._0_c00311{width:0.989616pt;}
.fs1_c00311{font-size:41.388800pt;}
.fs0_c00311{font-size:62.240000pt;}
.y0_c00311{bottom:0.000000pt;}
.y2_c00311{bottom:97.547527pt;}
.y1_c00311{bottom:115.387067pt;}
.y22_c00311{bottom:153.865348pt;}
.y21_c00311{bottom:180.665892pt;}
.y20_c00311{bottom:207.545792pt;}
.y1f_c00311{bottom:234.265424pt;}
.y1e_c00311{bottom:261.145324pt;}
.y1d_c00311{bottom:287.945868pt;}
.y1c_c00311{bottom:314.825768pt;}
.y1b_c00311{bottom:341.626312pt;}
.y1a_c00311{bottom:368.506212pt;}
.y19_c00311{bottom:395.306756pt;}
.y18_c00311{bottom:422.186656pt;}
.y17_c00311{bottom:448.987200pt;}
.y16_c00311{bottom:476.585091pt;}
.y15_c00311{bottom:503.385635pt;}
.y14_c00311{bottom:530.186179pt;}
.y13_c00311{bottom:556.986723pt;}
.y12_c00311{bottom:583.866623pt;}
.y11_c00311{bottom:610.667167pt;}
.y10_c00311{bottom:637.544879pt;}
.yf_c00311{bottom:664.345423pt;}
.ye_c00311{bottom:691.225323pt;}
.yd_c00311{bottom:718.025867pt;}
.yc_c00311{bottom:744.905767pt;}
.yb_c00311{bottom:771.706311pt;}
.ya_c00311{bottom:798.586211pt;}
.y9_c00311{bottom:825.386755pt;}
.y8_c00311{bottom:852.266655pt;}
.y7_c00311{bottom:879.067199pt;}
.y6_c00311{bottom:905.947099pt;}
.y5_c00311{bottom:932.747643pt;}
.y4_c00311{bottom:959.627543pt;}
.y3_c00311{bottom:986.428087pt;}
.h2_c00311{height:55.645234pt;}
.h1_c00311{height:55.797187pt;}
.h4_c00311{height:56.192266pt;}
.h3_c00311{height:65.492118pt;}
.h0_c00311{height:1122.666667pt;}
.w0_c00311{width:793.333333pt;}
.x0_c00311{left:0.000000pt;}
.x2_c00311{left:73.520052pt;}
.x3_c00311{left:121.119648pt;}
.x5_c00311{left:256.240296pt;}
.x1_c00311{left:383.760000pt;}
.x4_c00311{left:396.800000pt;}
}





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

.ir_c00312:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00312{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00312;src:url('chunks/assets/font_957d7136827e64411ccc7e03.woff2')format("woff");}.ff1_c00312{font-family:ff1_c00312;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00312;src:url('chunks/assets/font_83ee7af056305f20a406300c.woff2')format("woff");}.ff2_c00312{font-family:ff2_c00312;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00312{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00312{vertical-align:0.000000px;}
.ls5_c00312{letter-spacing:-0.063018px;}
.ls7_c00312{letter-spacing:-0.021006px;}
.ls8_c00312{letter-spacing:-0.014004px;}
.ls9_c00312{letter-spacing:-0.007002px;}
.ls6_c00312{letter-spacing:0.000000px;}
.ls2_c00312{letter-spacing:0.007002px;}
.ls3_c00312{letter-spacing:0.014004px;}
.ls4_c00312{letter-spacing:0.035010px;}
.ls0_c00312{letter-spacing:0.056016px;}
.ls1_c00312{letter-spacing:0.084024px;}
.sc__c00312{text-shadow:none;}
.sc0_c00312{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00312{-webkit-text-stroke:0px transparent;}
.sc0_c00312{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00312{word-spacing:-19.549584px;}
.ws2_c00312{word-spacing:-0.070020px;}
.ws7_c00312{word-spacing:-0.007002px;}
.ws1_c00312{word-spacing:0.000000px;}
.ws8_c00312{word-spacing:3.234924px;}
.ws6_c00312{word-spacing:12.218490px;}
.ws5_c00312{word-spacing:12.225492px;}
.ws4_c00312{word-spacing:20.158758px;}
.wsa_c00312{word-spacing:21.552156px;}
.ws9_c00312{word-spacing:21.930264px;}
.ws3_c00312{word-spacing:29.527434px;}
._1_c00312{margin-left:-1.050300px;}
._0_c00312{width:8.283366px;}
.fc0_c00312{color:rgb(0,0,0);}
.fs0_c00312{font-size:70.020000px;}
.y0_c00312{bottom:0.000000px;}
.y2_c00312{bottom:109.740968px;}
.y1_c00312{bottom:129.810450px;}
.y1a_c00312{bottom:165.804173px;}
.y19_c00312{bottom:195.954785px;}
.y18_c00312{bottom:226.194672px;}
.y17_c00312{bottom:256.345284px;}
.y16_c00312{bottom:286.585172px;}
.y15_c00312{bottom:316.735784px;}
.y14_c00312{bottom:346.975671px;}
.y13_c00312{bottom:377.126283px;}
.y12_c00312{bottom:407.366171px;}
.y11_c00312{bottom:437.516783px;}
.y10_c00312{bottom:467.667395px;}
.yf_c00312{bottom:497.907282px;}
.ye_c00312{bottom:528.057894px;}
.yd_c00312{bottom:558.297782px;}
.yc_c00312{bottom:588.448394px;}
.yb_c00312{bottom:618.688281px;}
.ya_c00312{bottom:648.838893px;}
.y9_c00312{bottom:679.078780px;}
.y8_c00312{bottom:709.229393px;}
.y7_c00312{bottom:739.469280px;}
.y6_c00312{bottom:769.619892px;}
.y5_c00312{bottom:796.080450px;}
.y4_c00312{bottom:1079.580985px;}
.y3_c00312{bottom:1109.731597px;}
.h1_c00312{height:62.771836px;}
.h2_c00312{height:63.216299px;}
.h0_c00312{height:1263.000000px;}
.w0_c00312{width:892.500000px;}
.x0_c00312{left:0.000000px;}
.x2_c00312{left:82.710059px;}
.x4_c00312{left:136.259604px;}
.x3_c00312{left:162.539861px;}
.x1_c00312{left:431.730000px;}
.x5_c00312{left:753.300000px;}
@media print{
.v0_c00312{vertical-align:0.000000pt;}
.ls5_c00312{letter-spacing:-0.056016pt;}
.ls7_c00312{letter-spacing:-0.018672pt;}
.ls8_c00312{letter-spacing:-0.012448pt;}
.ls9_c00312{letter-spacing:-0.006224pt;}
.ls6_c00312{letter-spacing:0.000000pt;}
.ls2_c00312{letter-spacing:0.006224pt;}
.ls3_c00312{letter-spacing:0.012448pt;}
.ls4_c00312{letter-spacing:0.031120pt;}
.ls0_c00312{letter-spacing:0.049792pt;}
.ls1_c00312{letter-spacing:0.074688pt;}
.ws0_c00312{word-spacing:-17.377408pt;}
.ws2_c00312{word-spacing:-0.062240pt;}
.ws7_c00312{word-spacing:-0.006224pt;}
.ws1_c00312{word-spacing:0.000000pt;}
.ws8_c00312{word-spacing:2.875488pt;}
.ws6_c00312{word-spacing:10.860880pt;}
.ws5_c00312{word-spacing:10.867104pt;}
.ws4_c00312{word-spacing:17.918896pt;}
.wsa_c00312{word-spacing:19.157472pt;}
.ws9_c00312{word-spacing:19.493568pt;}
.ws3_c00312{word-spacing:26.246608pt;}
._1_c00312{margin-left:-0.933600pt;}
._0_c00312{width:7.362992pt;}
.fs0_c00312{font-size:62.240000pt;}
.y0_c00312{bottom:0.000000pt;}
.y2_c00312{bottom:97.547527pt;}
.y1_c00312{bottom:115.387067pt;}
.y1a_c00312{bottom:147.381487pt;}
.y19_c00312{bottom:174.182031pt;}
.y18_c00312{bottom:201.061931pt;}
.y17_c00312{bottom:227.862475pt;}
.y16_c00312{bottom:254.742375pt;}
.y15_c00312{bottom:281.542919pt;}
.y14_c00312{bottom:308.422819pt;}
.y13_c00312{bottom:335.223363pt;}
.y12_c00312{bottom:362.103263pt;}
.y11_c00312{bottom:388.903807pt;}
.y10_c00312{bottom:415.704351pt;}
.yf_c00312{bottom:442.584251pt;}
.ye_c00312{bottom:469.384795pt;}
.yd_c00312{bottom:496.264695pt;}
.yc_c00312{bottom:523.065239pt;}
.yb_c00312{bottom:549.945139pt;}
.ya_c00312{bottom:576.745683pt;}
.y9_c00312{bottom:603.625583pt;}
.y8_c00312{bottom:630.426127pt;}
.y7_c00312{bottom:657.306027pt;}
.y6_c00312{bottom:684.106571pt;}
.y5_c00312{bottom:707.627067pt;}
.y4_c00312{bottom:959.627543pt;}
.y3_c00312{bottom:986.428087pt;}
.h1_c00312{height:55.797187pt;}
.h2_c00312{height:56.192266pt;}
.h0_c00312{height:1122.666667pt;}
.w0_c00312{width:793.333333pt;}
.x0_c00312{left:0.000000pt;}
.x2_c00312{left:73.520052pt;}
.x4_c00312{left:121.119648pt;}
.x3_c00312{left:144.479876pt;}
.x1_c00312{left:383.760000pt;}
.x5_c00312{left:669.600000pt;}
}





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

.ir_c00313:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00313{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00313;src:url('chunks/assets/font_e65d0f1b79f45384f057ae24.woff2')format("woff");}.ff1_c00313{font-family:ff1_c00313;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00313;src:url('chunks/assets/font_714ef69e72fccb71ddc13f07.woff2')format("woff");}.ff2_c00313{font-family:ff2_c00313;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00313{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00313{vertical-align:0.000000px;}
.ls3_c00313{letter-spacing:-0.063018px;}
.ls8_c00313{letter-spacing:-0.042012px;}
.ls6_c00313{letter-spacing:-0.035010px;}
.ls9_c00313{letter-spacing:-0.028008px;}
.ls7_c00313{letter-spacing:-0.014004px;}
.ls5_c00313{letter-spacing:-0.007002px;}
.ls4_c00313{letter-spacing:0.000000px;}
.ls1_c00313{letter-spacing:0.007002px;}
.ls2_c00313{letter-spacing:0.035010px;}
.ls0_c00313{letter-spacing:0.084024px;}
.sc__c00313{text-shadow:none;}
.sc0_c00313{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00313{-webkit-text-stroke:0px transparent;}
.sc0_c00313{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00313{word-spacing:-19.549584px;}
.ws8_c00313{word-spacing:-0.049014px;}
.ws7_c00313{word-spacing:-0.021006px;}
.ws1_c00313{word-spacing:0.000000px;}
.ws4_c00313{word-spacing:1.799514px;}
.ws5_c00313{word-spacing:2.191626px;}
.ws6_c00313{word-spacing:2.520720px;}
.ws3_c00313{word-spacing:3.262932px;}
.wsa_c00313{word-spacing:10.811088px;}
.ws9_c00313{word-spacing:16.195626px;}
.ws2_c00313{word-spacing:33.476562px;}
._0_c00313{margin-left:-1.148328px;}
._1_c00313{width:1.470420px;}
._2_c00313{width:8.283366px;}
.fc0_c00313{color:rgb(0,0,0);}
.fs0_c00313{font-size:70.020000px;}
.y0_c00313{bottom:0.000000px;}
.y2_c00313{bottom:109.740968px;}
.y1_c00313{bottom:129.810450px;}
.y11_c00313{bottom:171.119807px;}
.y10_c00313{bottom:201.359694px;}
.yf_c00313{bottom:231.510306px;}
.ye_c00313{bottom:261.750194px;}
.yd_c00313{bottom:288.030450px;}
.yc_c00313{bottom:585.118808px;}
.yb_c00313{bottom:615.358695px;}
.ya_c00313{bottom:645.509307px;}
.y9_c00313{bottom:675.749194px;}
.y8_c00313{bottom:705.899807px;}
.y7_c00313{bottom:736.139694px;}
.y6_c00313{bottom:766.290306px;}
.y5_c00313{bottom:796.530193px;}
.y4_c00313{bottom:822.810450px;}
.y3_c00313{bottom:1109.731597px;}
.h1_c00313{height:62.771836px;}
.h2_c00313{height:63.216299px;}
.h0_c00313{height:1263.000000px;}
.w0_c00313{width:892.500000px;}
.x0_c00313{left:0.000000px;}
.x2_c00313{left:82.710059px;}
.x3_c00313{left:136.259604px;}
.x5_c00313{left:162.540567px;}
.x1_c00313{left:431.730000px;}
.x4_c00313{left:736.470000px;}
.x6_c00313{left:751.770000px;}
@media print{
.v0_c00313{vertical-align:0.000000pt;}
.ls3_c00313{letter-spacing:-0.056016pt;}
.ls8_c00313{letter-spacing:-0.037344pt;}
.ls6_c00313{letter-spacing:-0.031120pt;}
.ls9_c00313{letter-spacing:-0.024896pt;}
.ls7_c00313{letter-spacing:-0.012448pt;}
.ls5_c00313{letter-spacing:-0.006224pt;}
.ls4_c00313{letter-spacing:0.000000pt;}
.ls1_c00313{letter-spacing:0.006224pt;}
.ls2_c00313{letter-spacing:0.031120pt;}
.ls0_c00313{letter-spacing:0.074688pt;}
.ws0_c00313{word-spacing:-17.377408pt;}
.ws8_c00313{word-spacing:-0.043568pt;}
.ws7_c00313{word-spacing:-0.018672pt;}
.ws1_c00313{word-spacing:0.000000pt;}
.ws4_c00313{word-spacing:1.599568pt;}
.ws5_c00313{word-spacing:1.948112pt;}
.ws6_c00313{word-spacing:2.240640pt;}
.ws3_c00313{word-spacing:2.900384pt;}
.wsa_c00313{word-spacing:9.609856pt;}
.ws9_c00313{word-spacing:14.396112pt;}
.ws2_c00313{word-spacing:29.756944pt;}
._0_c00313{margin-left:-1.020736pt;}
._1_c00313{width:1.307040pt;}
._2_c00313{width:7.362992pt;}
.fs0_c00313{font-size:62.240000pt;}
.y0_c00313{bottom:0.000000pt;}
.y2_c00313{bottom:97.547527pt;}
.y1_c00313{bottom:115.387067pt;}
.y11_c00313{bottom:152.106495pt;}
.y10_c00313{bottom:178.986395pt;}
.yf_c00313{bottom:205.786939pt;}
.ye_c00313{bottom:232.666839pt;}
.yd_c00313{bottom:256.027067pt;}
.yc_c00313{bottom:520.105607pt;}
.yb_c00313{bottom:546.985507pt;}
.ya_c00313{bottom:573.786051pt;}
.y9_c00313{bottom:600.665951pt;}
.y8_c00313{bottom:627.466495pt;}
.y7_c00313{bottom:654.346395pt;}
.y6_c00313{bottom:681.146939pt;}
.y5_c00313{bottom:708.026839pt;}
.y4_c00313{bottom:731.387067pt;}
.y3_c00313{bottom:986.428087pt;}
.h1_c00313{height:55.797187pt;}
.h2_c00313{height:56.192266pt;}
.h0_c00313{height:1122.666667pt;}
.w0_c00313{width:793.333333pt;}
.x0_c00313{left:0.000000pt;}
.x2_c00313{left:73.520052pt;}
.x3_c00313{left:121.119648pt;}
.x5_c00313{left:144.480504pt;}
.x1_c00313{left:383.760000pt;}
.x4_c00313{left:654.640000pt;}
.x6_c00313{left:668.240000pt;}
}





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

.ir_c00314:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00314{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00314;src:url('chunks/assets/font_d5d5586a2f361c8b4c2dce58.woff2')format("woff");}.ff1_c00314{font-family:ff1_c00314;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00314;src:url('chunks/assets/font_f001f549728f89a3e7d706ea.woff2')format("woff");}.ff2_c00314{font-family:ff2_c00314;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00314{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00314{vertical-align:0.000000px;}
.ls0_c00314{letter-spacing:-0.063018px;}
.ls2_c00314{letter-spacing:-0.042012px;}
.ls6_c00314{letter-spacing:-0.035010px;}
.ls3_c00314{letter-spacing:-0.021006px;}
.ls4_c00314{letter-spacing:-0.014004px;}
.ls5_c00314{letter-spacing:-0.007002px;}
.ls1_c00314{letter-spacing:0.000000px;}
.sc__c00314{text-shadow:none;}
.sc0_c00314{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00314{-webkit-text-stroke:0px transparent;}
.sc0_c00314{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00314{word-spacing:-0.357102px;}
.ws9_c00314{word-spacing:-0.007002px;}
.ws0_c00314{word-spacing:0.000000px;}
.wsa_c00314{word-spacing:0.007002px;}
.ws10_c00314{word-spacing:0.021006px;}
.ws2_c00314{word-spacing:0.364104px;}
.wse_c00314{word-spacing:0.378108px;}
.wsf_c00314{word-spacing:0.721206px;}
.wsc_c00314{word-spacing:4.313232px;}
.wsd_c00314{word-spacing:5.041440px;}
.ws6_c00314{word-spacing:11.147184px;}
.ws7_c00314{word-spacing:11.154186px;}
.ws8_c00314{word-spacing:11.161188px;}
.ws4_c00314{word-spacing:11.518290px;}
.wsb_c00314{word-spacing:13.688910px;}
.ws3_c00314{word-spacing:15.488424px;}
.ws1_c00314{word-spacing:31.347954px;}
._1_c00314{margin-left:-1.260360px;}
._0_c00314{width:1.071306px;}
._2_c00314{width:8.283366px;}
.fc0_c00314{color:rgb(0,0,0);}
.fs0_c00314{font-size:70.020000px;}
.y0_c00314{bottom:0.000000px;}
.y2_c00314{bottom:109.740968px;}
.y1_c00314{bottom:129.810450px;}
.y18_c00314{bottom:168.058339px;}
.y17_c00314{bottom:198.298227px;}
.y16_c00314{bottom:228.448839px;}
.y15_c00314{bottom:258.599451px;}
.y14_c00314{bottom:288.750063px;}
.y13_c00314{bottom:318.989951px;}
.y12_c00314{bottom:349.140562px;}
.y11_c00314{bottom:379.380450px;}
.y10_c00314{bottom:717.237989px;}
.yf_c00314{bottom:747.388601px;}
.ye_c00314{bottom:777.628488px;}
.yd_c00314{bottom:807.779100px;}
.yc_c00314{bottom:838.018988px;}
.yb_c00314{bottom:868.169600px;}
.ya_c00314{bottom:898.409487px;}
.y9_c00314{bottom:928.560099px;}
.y8_c00314{bottom:958.799987px;}
.y7_c00314{bottom:988.950599px;}
.y6_c00314{bottom:1019.190486px;}
.y5_c00314{bottom:1049.341098px;}
.y4_c00314{bottom:1079.580985px;}
.y3_c00314{bottom:1109.731597px;}
.h1_c00314{height:62.771836px;}
.h2_c00314{height:63.216299px;}
.h0_c00314{height:1263.000000px;}
.w0_c00314{width:892.500000px;}
.x0_c00314{left:0.000000px;}
.x2_c00314{left:82.710059px;}
.x3_c00314{left:136.259604px;}
.x4_c00314{left:162.539861px;}
.x1_c00314{left:431.730000px;}
@media print{
.v0_c00314{vertical-align:0.000000pt;}
.ls0_c00314{letter-spacing:-0.056016pt;}
.ls2_c00314{letter-spacing:-0.037344pt;}
.ls6_c00314{letter-spacing:-0.031120pt;}
.ls3_c00314{letter-spacing:-0.018672pt;}
.ls4_c00314{letter-spacing:-0.012448pt;}
.ls5_c00314{letter-spacing:-0.006224pt;}
.ls1_c00314{letter-spacing:0.000000pt;}
.ws5_c00314{word-spacing:-0.317424pt;}
.ws9_c00314{word-spacing:-0.006224pt;}
.ws0_c00314{word-spacing:0.000000pt;}
.wsa_c00314{word-spacing:0.006224pt;}
.ws10_c00314{word-spacing:0.018672pt;}
.ws2_c00314{word-spacing:0.323648pt;}
.wse_c00314{word-spacing:0.336096pt;}
.wsf_c00314{word-spacing:0.641072pt;}
.wsc_c00314{word-spacing:3.833984pt;}
.wsd_c00314{word-spacing:4.481280pt;}
.ws6_c00314{word-spacing:9.908608pt;}
.ws7_c00314{word-spacing:9.914832pt;}
.ws8_c00314{word-spacing:9.921056pt;}
.ws4_c00314{word-spacing:10.238480pt;}
.wsb_c00314{word-spacing:12.167920pt;}
.ws3_c00314{word-spacing:13.767488pt;}
.ws1_c00314{word-spacing:27.864848pt;}
._1_c00314{margin-left:-1.120320pt;}
._0_c00314{width:0.952272pt;}
._2_c00314{width:7.362992pt;}
.fs0_c00314{font-size:62.240000pt;}
.y0_c00314{bottom:0.000000pt;}
.y2_c00314{bottom:97.547527pt;}
.y1_c00314{bottom:115.387067pt;}
.y18_c00314{bottom:149.385191pt;}
.y17_c00314{bottom:176.265091pt;}
.y16_c00314{bottom:203.065635pt;}
.y15_c00314{bottom:229.866179pt;}
.y14_c00314{bottom:256.666723pt;}
.y13_c00314{bottom:283.546623pt;}
.y12_c00314{bottom:310.347167pt;}
.y11_c00314{bottom:337.227067pt;}
.y10_c00314{bottom:637.544879pt;}
.yf_c00314{bottom:664.345423pt;}
.ye_c00314{bottom:691.225323pt;}
.yd_c00314{bottom:718.025867pt;}
.yc_c00314{bottom:744.905767pt;}
.yb_c00314{bottom:771.706311pt;}
.ya_c00314{bottom:798.586211pt;}
.y9_c00314{bottom:825.386755pt;}
.y8_c00314{bottom:852.266655pt;}
.y7_c00314{bottom:879.067199pt;}
.y6_c00314{bottom:905.947099pt;}
.y5_c00314{bottom:932.747643pt;}
.y4_c00314{bottom:959.627543pt;}
.y3_c00314{bottom:986.428087pt;}
.h1_c00314{height:55.797187pt;}
.h2_c00314{height:56.192266pt;}
.h0_c00314{height:1122.666667pt;}
.w0_c00314{width:793.333333pt;}
.x0_c00314{left:0.000000pt;}
.x2_c00314{left:73.520052pt;}
.x3_c00314{left:121.119648pt;}
.x4_c00314{left:144.479876pt;}
.x1_c00314{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_326bf0ce0661ad438f7c55ce.woff2')format("woff");}.ff1_c00315{font-family:ff1_c00315;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00315;src:url('chunks/assets/font_c0e1dcd0255b20eddbcfe32c.woff2')format("woff");}.ff2_c00315{font-family:ff2_c00315;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00315{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00315{vertical-align:0.000000px;}
.ls2_c00315{letter-spacing:-0.063018px;}
.ls4_c00315{letter-spacing:-0.042012px;}
.ls6_c00315{letter-spacing:-0.035010px;}
.ls8_c00315{letter-spacing:-0.028008px;}
.ls7_c00315{letter-spacing:-0.014004px;}
.ls5_c00315{letter-spacing:-0.007002px;}
.ls3_c00315{letter-spacing:0.000000px;}
.ls0_c00315{letter-spacing:0.049014px;}
.ls1_c00315{letter-spacing:0.084024px;}
.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:-19.549584px;}
.ws3_c00315{word-spacing:-0.063018px;}
.ws1_c00315{word-spacing:0.000000px;}
.wsa_c00315{word-spacing:0.014004px;}
.ws2_c00315{word-spacing:0.028008px;}
.ws9_c00315{word-spacing:1.820520px;}
.ws7_c00315{word-spacing:7.548156px;}
.ws8_c00315{word-spacing:10.790082px;}
.ws6_c00315{word-spacing:11.175192px;}
.ws5_c00315{word-spacing:14.060016px;}
.ws4_c00315{word-spacing:25.914402px;}
._2_c00315{margin-left:-1.029294px;}
._0_c00315{width:1.001286px;}
._1_c00315{width:8.283366px;}
.fc0_c00315{color:rgb(0,0,0);}
.fs0_c00315{font-size:70.020000px;}
.y0_c00315{bottom:0.000000px;}
.y2_c00315{bottom:109.740968px;}
.y1_c00315{bottom:129.810450px;}
.y19_c00315{bottom:185.790600px;}
.y18_c00315{bottom:215.940450px;}
.y17_c00315{bottom:246.180450px;}
.y16_c00315{bottom:276.330450px;}
.y15_c00315{bottom:306.570450px;}
.y14_c00315{bottom:336.720450px;}
.y13_c00315{bottom:366.960600px;}
.y12_c00315{bottom:397.110600px;}
.y11_c00315{bottom:427.350450px;}
.y10_c00315{bottom:457.500450px;}
.yf_c00315{bottom:487.740450px;}
.ye_c00315{bottom:517.890450px;}
.yd_c00315{bottom:548.130450px;}
.yc_c00315{bottom:578.280450px;}
.yb_c00315{bottom:608.430450px;}
.ya_c00315{bottom:638.580450px;}
.y9_c00315{bottom:668.820450px;}
.y8_c00315{bottom:698.970450px;}
.y7_c00315{bottom:729.210450px;}
.y6_c00315{bottom:755.670450px;}
.y5_c00315{bottom:1049.340450px;}
.y4_c00315{bottom:1079.580450px;}
.y3_c00315{bottom:1109.730450px;}
.h1_c00315{height:62.771836px;}
.h2_c00315{height:63.216299px;}
.h0_c00315{height:1263.000000px;}
.w0_c00315{width:892.500000px;}
.x0_c00315{left:0.000000px;}
.x2_c00315{left:82.710059px;}
.x7_c00315{left:136.260000px;}
.x5_c00315{left:162.540000px;}
.x4_c00315{left:343.260000px;}
.x1_c00315{left:431.730000px;}
.x3_c00315{left:446.400000px;}
.x6_c00315{left:751.770000px;}
@media print{
.v0_c00315{vertical-align:0.000000pt;}
.ls2_c00315{letter-spacing:-0.056016pt;}
.ls4_c00315{letter-spacing:-0.037344pt;}
.ls6_c00315{letter-spacing:-0.031120pt;}
.ls8_c00315{letter-spacing:-0.024896pt;}
.ls7_c00315{letter-spacing:-0.012448pt;}
.ls5_c00315{letter-spacing:-0.006224pt;}
.ls3_c00315{letter-spacing:0.000000pt;}
.ls0_c00315{letter-spacing:0.043568pt;}
.ls1_c00315{letter-spacing:0.074688pt;}
.ws0_c00315{word-spacing:-17.377408pt;}
.ws3_c00315{word-spacing:-0.056016pt;}
.ws1_c00315{word-spacing:0.000000pt;}
.wsa_c00315{word-spacing:0.012448pt;}
.ws2_c00315{word-spacing:0.024896pt;}
.ws9_c00315{word-spacing:1.618240pt;}
.ws7_c00315{word-spacing:6.709472pt;}
.ws8_c00315{word-spacing:9.591184pt;}
.ws6_c00315{word-spacing:9.933504pt;}
.ws5_c00315{word-spacing:12.497792pt;}
.ws4_c00315{word-spacing:23.035024pt;}
._2_c00315{margin-left:-0.914928pt;}
._0_c00315{width:0.890032pt;}
._1_c00315{width:7.362992pt;}
.fs0_c00315{font-size:62.240000pt;}
.y0_c00315{bottom:0.000000pt;}
.y2_c00315{bottom:97.547527pt;}
.y1_c00315{bottom:115.387067pt;}
.y19_c00315{bottom:165.147200pt;}
.y18_c00315{bottom:191.947067pt;}
.y17_c00315{bottom:218.827067pt;}
.y16_c00315{bottom:245.627067pt;}
.y15_c00315{bottom:272.507067pt;}
.y14_c00315{bottom:299.307067pt;}
.y13_c00315{bottom:326.187200pt;}
.y12_c00315{bottom:352.987200pt;}
.y11_c00315{bottom:379.867067pt;}
.y10_c00315{bottom:406.667067pt;}
.yf_c00315{bottom:433.547067pt;}
.ye_c00315{bottom:460.347067pt;}
.yd_c00315{bottom:487.227067pt;}
.yc_c00315{bottom:514.027067pt;}
.yb_c00315{bottom:540.827067pt;}
.ya_c00315{bottom:567.627067pt;}
.y9_c00315{bottom:594.507067pt;}
.y8_c00315{bottom:621.307067pt;}
.y7_c00315{bottom:648.187067pt;}
.y6_c00315{bottom:671.707067pt;}
.y5_c00315{bottom:932.747067pt;}
.y4_c00315{bottom:959.627067pt;}
.y3_c00315{bottom:986.427067pt;}
.h1_c00315{height:55.797187pt;}
.h2_c00315{height:56.192266pt;}
.h0_c00315{height:1122.666667pt;}
.w0_c00315{width:793.333333pt;}
.x0_c00315{left:0.000000pt;}
.x2_c00315{left:73.520052pt;}
.x7_c00315{left:121.120000pt;}
.x5_c00315{left:144.480000pt;}
.x4_c00315{left:305.120000pt;}
.x1_c00315{left:383.760000pt;}
.x3_c00315{left:396.800000pt;}
.x6_c00315{left:668.240000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cbca54e2c6e3d255debb1be1.woff2')format("woff");}.ff1_c00316{font-family:ff1_c00316;line-height:1.106934;font-style:normal;font-weight:normal;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_fc12c63100ff5a9682ade04a.woff2')format("woff");}.ff2_c00316{font-family:ff2_c00316;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00316;src:url('chunks/assets/font_dcb186ffa78d045ad4b7f36a.woff2')format("woff");}.ff3_c00316{font-family:ff3_c00316;line-height:0.892090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00316;src:url('chunks/assets/font_bb59f583f57a1883638330bf.woff2')format("woff");}.ff4_c00316{font-family:ff4_c00316;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00316{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00316{vertical-align:0.000000px;}
.ls4_c00316{letter-spacing:-0.063018px;}
.lsc_c00316{letter-spacing:-0.049014px;}
.ls9_c00316{letter-spacing:-0.042012px;}
.ls8_c00316{letter-spacing:-0.035010px;}
.ls7_c00316{letter-spacing:-0.028008px;}
.lsa_c00316{letter-spacing:-0.021006px;}
.ls6_c00316{letter-spacing:-0.014004px;}
.lsb_c00316{letter-spacing:-0.007002px;}
.ls5_c00316{letter-spacing:0.000000px;}
.ls3_c00316{letter-spacing:0.007002px;}
.ls2_c00316{letter-spacing:0.014004px;}
.ls0_c00316{letter-spacing:0.084024px;}
.ls1_c00316{letter-spacing:0.217062px;}
.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:-19.549584px;}
.ws19_c00316{word-spacing:-0.007002px;}
.ws1_c00316{word-spacing:0.000000px;}
.wsd_c00316{word-spacing:0.028008px;}
.ws11_c00316{word-spacing:0.035010px;}
.ws17_c00316{word-spacing:0.378108px;}
.ws1a_c00316{word-spacing:0.385110px;}
.ws4_c00316{word-spacing:2.177622px;}
.ws5_c00316{word-spacing:2.191626px;}
.ws8_c00316{word-spacing:4.327236px;}
.ws12_c00316{word-spacing:4.334238px;}
.ws16_c00316{word-spacing:4.691340px;}
.ws13_c00316{word-spacing:5.755644px;}
.ws14_c00316{word-spacing:5.797656px;}
.wsa_c00316{word-spacing:12.232494px;}
.ws9_c00316{word-spacing:12.624606px;}
.ws10_c00316{word-spacing:13.331808px;}
.wsf_c00316{word-spacing:14.011002px;}
.wse_c00316{word-spacing:14.382108px;}
.ws15_c00316{word-spacing:14.403114px;}
.ws6_c00316{word-spacing:15.117318px;}
.ws3_c00316{word-spacing:15.131322px;}
.ws7_c00316{word-spacing:15.481422px;}
.ws18_c00316{word-spacing:18.730350px;}
.ws2_c00316{word-spacing:21.958272px;}
.wsb_c00316{word-spacing:28.771218px;}
.wsc_c00316{word-spacing:28.806228px;}
._0_c00316{margin-left:-1.148328px;}
._1_c00316{width:1.134324px;}
.fc0_c00316{color:rgb(0,0,0);}
.fs0_c00316{font-size:70.020000px;}
.y0_c00316{bottom:0.000000px;}
.y2_c00316{bottom:109.740968px;}
.y1_c00316{bottom:129.810450px;}
.y18_c00316{bottom:185.700600px;}
.y17_c00316{bottom:215.850450px;}
.y16_c00316{bottom:246.090450px;}
.y15_c00316{bottom:276.240450px;}
.y14_c00316{bottom:306.480450px;}
.y13_c00316{bottom:336.630450px;}
.y12_c00316{bottom:366.870450px;}
.y11_c00316{bottom:397.020600px;}
.y10_c00316{bottom:427.260450px;}
.yf_c00316{bottom:457.410450px;}
.ye_c00316{bottom:507.900450px;}
.yd_c00316{bottom:538.230450px;}
.yc_c00316{bottom:568.380450px;}
.yb_c00316{bottom:598.620450px;}
.ya_c00316{bottom:628.770450px;}
.y9_c00316{bottom:659.010450px;}
.y8_c00316{bottom:689.160450px;}
.y7_c00316{bottom:719.400450px;}
.y6_c00316{bottom:749.550450px;}
.y5_c00316{bottom:779.790600px;}
.y4_c00316{bottom:809.940450px;}
.y3_c00316{bottom:856.830450px;}
.h3_c00316{height:62.600889px;}
.h1_c00316{height:62.771836px;}
.h2_c00316{height:63.216299px;}
.h0_c00316{height:1263.000000px;}
.w0_c00316{width:892.500000px;}
.x0_c00316{left:0.000000px;}
.x2_c00316{left:82.710059px;}
.x4_c00316{left:136.260000px;}
.x1_c00316{left:431.730000px;}
.x3_c00316{left:743.220000px;}
@media print{
.v0_c00316{vertical-align:0.000000pt;}
.ls4_c00316{letter-spacing:-0.056016pt;}
.lsc_c00316{letter-spacing:-0.043568pt;}
.ls9_c00316{letter-spacing:-0.037344pt;}
.ls8_c00316{letter-spacing:-0.031120pt;}
.ls7_c00316{letter-spacing:-0.024896pt;}
.lsa_c00316{letter-spacing:-0.018672pt;}
.ls6_c00316{letter-spacing:-0.012448pt;}
.lsb_c00316{letter-spacing:-0.006224pt;}
.ls5_c00316{letter-spacing:0.000000pt;}
.ls3_c00316{letter-spacing:0.006224pt;}
.ls2_c00316{letter-spacing:0.012448pt;}
.ls0_c00316{letter-spacing:0.074688pt;}
.ls1_c00316{letter-spacing:0.192944pt;}
.ws0_c00316{word-spacing:-17.377408pt;}
.ws19_c00316{word-spacing:-0.006224pt;}
.ws1_c00316{word-spacing:0.000000pt;}
.wsd_c00316{word-spacing:0.024896pt;}
.ws11_c00316{word-spacing:0.031120pt;}
.ws17_c00316{word-spacing:0.336096pt;}
.ws1a_c00316{word-spacing:0.342320pt;}
.ws4_c00316{word-spacing:1.935664pt;}
.ws5_c00316{word-spacing:1.948112pt;}
.ws8_c00316{word-spacing:3.846432pt;}
.ws12_c00316{word-spacing:3.852656pt;}
.ws16_c00316{word-spacing:4.170080pt;}
.ws13_c00316{word-spacing:5.116128pt;}
.ws14_c00316{word-spacing:5.153472pt;}
.wsa_c00316{word-spacing:10.873328pt;}
.ws9_c00316{word-spacing:11.221872pt;}
.ws10_c00316{word-spacing:11.850496pt;}
.wsf_c00316{word-spacing:12.454224pt;}
.wse_c00316{word-spacing:12.784096pt;}
.ws15_c00316{word-spacing:12.802768pt;}
.ws6_c00316{word-spacing:13.437616pt;}
.ws3_c00316{word-spacing:13.450064pt;}
.ws7_c00316{word-spacing:13.761264pt;}
.ws18_c00316{word-spacing:16.649200pt;}
.ws2_c00316{word-spacing:19.518464pt;}
.wsb_c00316{word-spacing:25.574416pt;}
.wsc_c00316{word-spacing:25.605536pt;}
._0_c00316{margin-left:-1.020736pt;}
._1_c00316{width:1.008288pt;}
.fs0_c00316{font-size:62.240000pt;}
.y0_c00316{bottom:0.000000pt;}
.y2_c00316{bottom:97.547527pt;}
.y1_c00316{bottom:115.387067pt;}
.y18_c00316{bottom:165.067200pt;}
.y17_c00316{bottom:191.867067pt;}
.y16_c00316{bottom:218.747067pt;}
.y15_c00316{bottom:245.547067pt;}
.y14_c00316{bottom:272.427067pt;}
.y13_c00316{bottom:299.227067pt;}
.y12_c00316{bottom:326.107067pt;}
.y11_c00316{bottom:352.907200pt;}
.y10_c00316{bottom:379.787067pt;}
.yf_c00316{bottom:406.587067pt;}
.ye_c00316{bottom:451.467067pt;}
.yd_c00316{bottom:478.427067pt;}
.yc_c00316{bottom:505.227067pt;}
.yb_c00316{bottom:532.107067pt;}
.ya_c00316{bottom:558.907067pt;}
.y9_c00316{bottom:585.787067pt;}
.y8_c00316{bottom:612.587067pt;}
.y7_c00316{bottom:639.467067pt;}
.y6_c00316{bottom:666.267067pt;}
.y5_c00316{bottom:693.147200pt;}
.y4_c00316{bottom:719.947067pt;}
.y3_c00316{bottom:761.627067pt;}
.h3_c00316{height:55.645234pt;}
.h1_c00316{height:55.797187pt;}
.h2_c00316{height:56.192266pt;}
.h0_c00316{height:1122.666667pt;}
.w0_c00316{width:793.333333pt;}
.x0_c00316{left:0.000000pt;}
.x2_c00316{left:73.520052pt;}
.x4_c00316{left:121.120000pt;}
.x1_c00316{left:383.760000pt;}
.x3_c00316{left:660.640000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d562cef11d3c0663e25d90cb.woff2')format("woff");}.ff1_c00317{font-family:ff1_c00317;line-height:1.106934;font-style:normal;font-weight:normal;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_92ed8ddc0544073a0cde5358.woff2')format("woff");}.ff2_c00317{font-family:ff2_c00317;line-height:1.104492;font-style:normal;font-weight:normal;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_adbc1569a78f1a786e38253c.woff2')format("woff");}.ff3_c00317{font-family:ff3_c00317;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00317;src:url('chunks/assets/font_1602322a357707cfc011482a.woff2')format("woff");}.ff4_c00317{font-family:ff4_c00317;line-height:1.133301;font-style:normal;font-weight:normal;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_001f44b6ba7eed421a582d66.woff2')format("woff");}.ff5_c00317{font-family:ff5_c00317;line-height:1.133301;font-style:normal;font-weight:normal;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_b1d6e41c4b54b71cfaf38793.woff2')format("woff");}.ff6_c00317{font-family:ff6_c00317;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00317{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00317{vertical-align:-14.760600px;}
.v0_c00317{vertical-align:0.000000px;}
.v1_c00317{vertical-align:32.040000px;}
.lsf_c00317{letter-spacing:-0.385878px;}
.ls10_c00317{letter-spacing:-0.280639px;}
.ls9_c00317{letter-spacing:-0.091026px;}
.lsb_c00317{letter-spacing:-0.084024px;}
.lse_c00317{letter-spacing:-0.075619px;}
.ls11_c00317{letter-spacing:-0.070160px;}
.ls3_c00317{letter-spacing:-0.063018px;}
.lsd_c00317{letter-spacing:-0.056016px;}
.ls8_c00317{letter-spacing:-0.049014px;}
.ls5_c00317{letter-spacing:-0.042012px;}
.ls7_c00317{letter-spacing:-0.035010px;}
.ls6_c00317{letter-spacing:-0.028008px;}
.ls4_c00317{letter-spacing:0.000000px;}
.ls2_c00317{letter-spacing:0.007002px;}
.ls0_c00317{letter-spacing:0.023281px;}
.lsc_c00317{letter-spacing:0.056016px;}
.lsa_c00317{letter-spacing:0.301086px;}
.ls12_c00317{letter-spacing:0.356645px;}
.ls1_c00317{letter-spacing:9.697770px;}
.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;}
}
.ws3_c00317{word-spacing:-58.466400px;}
.ws2_c00317{word-spacing:-15.914554px;}
.ws0_c00317{word-spacing:-12.967628px;}
.ws1_c00317{word-spacing:-10.397640px;}
.ws14_c00317{word-spacing:-0.344952px;}
.ws4_c00317{word-spacing:0.000000px;}
.ws6_c00317{word-spacing:0.014004px;}
.ws7_c00317{word-spacing:0.028008px;}
.ws9_c00317{word-spacing:0.035010px;}
.ws13_c00317{word-spacing:0.081853px;}
.ws12_c00317{word-spacing:0.397572px;}
.ws5_c00317{word-spacing:4.348242px;}
.wsc_c00317{word-spacing:9.403686px;}
.wsa_c00317{word-spacing:9.795798px;}
.wsb_c00317{word-spacing:10.061874px;}
.ws8_c00317{word-spacing:10.818090px;}
.ws11_c00317{word-spacing:20.186766px;}
.ws10_c00317{word-spacing:20.200770px;}
.wsd_c00317{word-spacing:32.076162px;}
.wsf_c00317{word-spacing:42.411114px;}
.wse_c00317{word-spacing:42.908256px;}
._3_c00317{margin-left:-2.709774px;}
._1_c00317{margin-left:-1.295370px;}
._0_c00317{width:1.078308px;}
._2_c00317{width:5.930694px;}
.fc0_c00317{color:rgb(0,0,0);}
.fs2_c00317{font-size:37.809600px;}
.fs1_c00317{font-size:46.562400px;}
.fs3_c00317{font-size:58.466400px;}
.fs0_c00317{font-size:70.020000px;}
.y0_c00317{bottom:0.000000px;}
.y2_c00317{bottom:109.740968px;}
.y1_c00317{bottom:129.810450px;}
.y2e_c00317{bottom:153.120600px;}
.y2d_c00317{bottom:167.790600px;}
.y2c_c00317{bottom:212.520450px;}
.y2b_c00317{bottom:242.760450px;}
.y2a_c00317{bottom:263.544956px;}
.y29_c00317{bottom:283.705464px;}
.y28_c00317{bottom:303.865972px;}
.y27_c00317{bottom:323.935455px;}
.y26_c00317{bottom:344.095964px;}
.y25_c00317{bottom:364.256472px;}
.y24_c00317{bottom:384.325955px;}
.y23_c00317{bottom:404.486463px;}
.y22_c00317{bottom:424.646972px;}
.y21_c00317{bottom:444.716454px;}
.y20_c00317{bottom:464.876962px;}
.y1f_c00317{bottom:485.037471px;}
.y1e_c00317{bottom:505.106954px;}
.y1d_c00317{bottom:525.267462px;}
.y1c_c00317{bottom:545.427971px;}
.y1b_c00317{bottom:565.497453px;}
.y1a_c00317{bottom:585.657961px;}
.y19_c00317{bottom:605.818470px;}
.y18_c00317{bottom:625.887952px;}
.y17_c00317{bottom:646.048461px;}
.y16_c00317{bottom:666.208969px;}
.y15_c00317{bottom:686.278452px;}
.y14_c00317{bottom:706.438960px;}
.y13_c00317{bottom:726.599469px;}
.y12_c00317{bottom:746.668951px;}
.y11_c00317{bottom:766.829460px;}
.y10_c00317{bottom:786.989969px;}
.yf_c00317{bottom:807.059451px;}
.ye_c00317{bottom:827.219959px;}
.yd_c00317{bottom:847.380468px;}
.yc_c00317{bottom:867.449950px;}
.yb_c00317{bottom:887.610459px;}
.ya_c00317{bottom:907.770968px;}
.y9_c00317{bottom:927.840450px;}
.y8_c00317{bottom:958.800450px;}
.y7_c00317{bottom:988.950450px;}
.y6_c00317{bottom:1019.190450px;}
.y5_c00317{bottom:1049.340450px;}
.y4_c00317{bottom:1079.580450px;}
.y3_c00317{bottom:1109.730450px;}
.h5_c00317{height:39.337949px;}
.h2_c00317{height:62.600889px;}
.h1_c00317{height:62.771836px;}
.h4_c00317{height:63.216299px;}
.h3_c00317{height:73.668786px;}
.h0_c00317{height:1263.000000px;}
.w0_c00317{width:892.500000px;}
.x0_c00317{left:0.000000px;}
.x2_c00317{left:82.710059px;}
.x3_c00317{left:136.260000px;}
.x5_c00317{left:138.960000px;}
.x4_c00317{left:342.270000px;}
.x1_c00317{left:431.730000px;}
.x6_c00317{left:454.230000px;}
@media print{
.v2_c00317{vertical-align:-13.120533pt;}
.v0_c00317{vertical-align:0.000000pt;}
.v1_c00317{vertical-align:28.480000pt;}
.lsf_c00317{letter-spacing:-0.343003pt;}
.ls10_c00317{letter-spacing:-0.249457pt;}
.ls9_c00317{letter-spacing:-0.080912pt;}
.lsb_c00317{letter-spacing:-0.074688pt;}
.lse_c00317{letter-spacing:-0.067217pt;}
.ls11_c00317{letter-spacing:-0.062364pt;}
.ls3_c00317{letter-spacing:-0.056016pt;}
.lsd_c00317{letter-spacing:-0.049792pt;}
.ls8_c00317{letter-spacing:-0.043568pt;}
.ls5_c00317{letter-spacing:-0.037344pt;}
.ls7_c00317{letter-spacing:-0.031120pt;}
.ls6_c00317{letter-spacing:-0.024896pt;}
.ls4_c00317{letter-spacing:0.000000pt;}
.ls2_c00317{letter-spacing:0.006224pt;}
.ls0_c00317{letter-spacing:0.020694pt;}
.lsc_c00317{letter-spacing:0.049792pt;}
.lsa_c00317{letter-spacing:0.267632pt;}
.ls12_c00317{letter-spacing:0.317018pt;}
.ls1_c00317{letter-spacing:8.620240pt;}
.ws3_c00317{word-spacing:-51.970133pt;}
.ws2_c00317{word-spacing:-14.146270pt;}
.ws0_c00317{word-spacing:-11.526781pt;}
.ws1_c00317{word-spacing:-9.242347pt;}
.ws14_c00317{word-spacing:-0.306624pt;}
.ws4_c00317{word-spacing:0.000000pt;}
.ws6_c00317{word-spacing:0.012448pt;}
.ws7_c00317{word-spacing:0.024896pt;}
.ws9_c00317{word-spacing:0.031120pt;}
.ws13_c00317{word-spacing:0.072758pt;}
.ws12_c00317{word-spacing:0.353397pt;}
.ws5_c00317{word-spacing:3.865104pt;}
.wsc_c00317{word-spacing:8.358832pt;}
.wsa_c00317{word-spacing:8.707376pt;}
.wsb_c00317{word-spacing:8.943888pt;}
.ws8_c00317{word-spacing:9.616080pt;}
.ws11_c00317{word-spacing:17.943792pt;}
.ws10_c00317{word-spacing:17.956240pt;}
.wsd_c00317{word-spacing:28.512144pt;}
.wsf_c00317{word-spacing:37.698768pt;}
.wse_c00317{word-spacing:38.140672pt;}
._3_c00317{margin-left:-2.408688pt;}
._1_c00317{margin-left:-1.151440pt;}
._0_c00317{width:0.958496pt;}
._2_c00317{width:5.271728pt;}
.fs2_c00317{font-size:33.608533pt;}
.fs1_c00317{font-size:41.388800pt;}
.fs3_c00317{font-size:51.970133pt;}
.fs0_c00317{font-size:62.240000pt;}
.y0_c00317{bottom:0.000000pt;}
.y2_c00317{bottom:97.547527pt;}
.y1_c00317{bottom:115.387067pt;}
.y2e_c00317{bottom:136.107200pt;}
.y2d_c00317{bottom:149.147200pt;}
.y2c_c00317{bottom:188.907067pt;}
.y2b_c00317{bottom:215.787067pt;}
.y2a_c00317{bottom:234.262183pt;}
.y29_c00317{bottom:252.182635pt;}
.y28_c00317{bottom:270.103087pt;}
.y27_c00317{bottom:287.942627pt;}
.y26_c00317{bottom:305.863079pt;}
.y25_c00317{bottom:323.783531pt;}
.y24_c00317{bottom:341.623071pt;}
.y23_c00317{bottom:359.543523pt;}
.y22_c00317{bottom:377.463975pt;}
.y21_c00317{bottom:395.303515pt;}
.y20_c00317{bottom:413.223967pt;}
.y1f_c00317{bottom:431.144419pt;}
.y1e_c00317{bottom:448.983959pt;}
.y1d_c00317{bottom:466.904411pt;}
.y1c_c00317{bottom:484.824863pt;}
.y1b_c00317{bottom:502.664403pt;}
.y1a_c00317{bottom:520.584855pt;}
.y19_c00317{bottom:538.505307pt;}
.y18_c00317{bottom:556.344847pt;}
.y17_c00317{bottom:574.265299pt;}
.y16_c00317{bottom:592.185751pt;}
.y15_c00317{bottom:610.025291pt;}
.y14_c00317{bottom:627.945743pt;}
.y13_c00317{bottom:645.866195pt;}
.y12_c00317{bottom:663.705735pt;}
.y11_c00317{bottom:681.626187pt;}
.y10_c00317{bottom:699.546639pt;}
.yf_c00317{bottom:717.386179pt;}
.ye_c00317{bottom:735.306631pt;}
.yd_c00317{bottom:753.227083pt;}
.yc_c00317{bottom:771.066623pt;}
.yb_c00317{bottom:788.987075pt;}
.ya_c00317{bottom:806.907527pt;}
.y9_c00317{bottom:824.747067pt;}
.y8_c00317{bottom:852.267067pt;}
.y7_c00317{bottom:879.067067pt;}
.y6_c00317{bottom:905.947067pt;}
.y5_c00317{bottom:932.747067pt;}
.y4_c00317{bottom:959.627067pt;}
.y3_c00317{bottom:986.427067pt;}
.h5_c00317{height:34.967066pt;}
.h2_c00317{height:55.645234pt;}
.h1_c00317{height:55.797187pt;}
.h4_c00317{height:56.192266pt;}
.h3_c00317{height:65.483366pt;}
.h0_c00317{height:1122.666667pt;}
.w0_c00317{width:793.333333pt;}
.x0_c00317{left:0.000000pt;}
.x2_c00317{left:73.520052pt;}
.x3_c00317{left:121.120000pt;}
.x5_c00317{left:123.520000pt;}
.x4_c00317{left:304.240000pt;}
.x1_c00317{left:383.760000pt;}
.x6_c00317{left:403.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c61d336338da73e62ee0a22d.woff2')format("woff");}.ff1_c00318{font-family:ff1_c00318;line-height:1.106934;font-style:normal;font-weight:normal;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_6163e645ac901e31ed00fb17.woff2')format("woff");}.ff2_c00318{font-family:ff2_c00318;line-height:1.104492;font-style:normal;font-weight:normal;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_08f23766e3149f3837f11c91.woff2')format("woff");}.ff3_c00318{font-family:ff3_c00318;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00318;src:url('chunks/assets/font_11e669996d080eb176c4f3bb.woff2')format("woff");}.ff4_c00318{font-family:ff4_c00318;line-height:1.133301;font-style:normal;font-weight:normal;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_311d9ee85c53779b22f9ea15.woff2')format("woff");}.ff5_c00318{font-family:ff5_c00318;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00318;src:url('chunks/assets/font_62d1d09c290101057d8c9e22.woff2')format("woff");}.ff6_c00318{font-family:ff6_c00318;line-height:1.133301;font-style:normal;font-weight: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_c00318;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff7_c00318{font-family:ff7_c00318;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00318{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00318{vertical-align:-14.760000px;}
.v0_c00318{vertical-align:0.000000px;}
.v1_c00318{vertical-align:32.040000px;}
.ls1b_c00318{letter-spacing:-1.064088px;}
.ls1c_c00318{letter-spacing:-0.385878px;}
.ls1d_c00318{letter-spacing:-0.374185px;}
.ls1e_c00318{letter-spacing:-0.344952px;}
.ls15_c00318{letter-spacing:-0.280639px;}
.ls1a_c00318{letter-spacing:-0.163706px;}
.ls17_c00318{letter-spacing:-0.099393px;}
.ls14_c00318{letter-spacing:-0.075619px;}
.lsa_c00318{letter-spacing:-0.063018px;}
.lsf_c00318{letter-spacing:-0.056016px;}
.ls16_c00318{letter-spacing:-0.052620px;}
.lse_c00318{letter-spacing:-0.049014px;}
.ls12_c00318{letter-spacing:-0.042012px;}
.ls11_c00318{letter-spacing:-0.035010px;}
.ls13_c00318{letter-spacing:-0.028008px;}
.lsc_c00318{letter-spacing:-0.021006px;}
.ls10_c00318{letter-spacing:-0.014004px;}
.lsd_c00318{letter-spacing:-0.007002px;}
.lsb_c00318{letter-spacing:0.000000px;}
.ls0_c00318{letter-spacing:0.007002px;}
.ls9_c00318{letter-spacing:0.017540px;}
.ls1_c00318{letter-spacing:0.021006px;}
.ls7_c00318{letter-spacing:0.023281px;}
.ls5_c00318{letter-spacing:0.035010px;}
.ls2_c00318{letter-spacing:0.042012px;}
.ls3_c00318{letter-spacing:0.063018px;}
.ls4_c00318{letter-spacing:0.084024px;}
.ls6_c00318{letter-spacing:0.105030px;}
.ls19_c00318{letter-spacing:0.134473px;}
.ls8_c00318{letter-spacing:0.362492px;}
.ls18_c00318{letter-spacing:9.372164px;}
.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;}
}
.ws3_c00318{word-spacing:-58.466400px;}
.ws0_c00318{word-spacing:-19.458558px;}
.ws4_c00318{word-spacing:-16.031487px;}
.ws5_c00318{word-spacing:-15.821008px;}
.ws1_c00318{word-spacing:-12.967628px;}
.ws2_c00318{word-spacing:-10.397640px;}
.ws38_c00318{word-spacing:-0.476136px;}
.ws39_c00318{word-spacing:-0.064313px;}
.ws40_c00318{word-spacing:-0.005847px;}
.ws6_c00318{word-spacing:0.000000px;}
.wsb_c00318{word-spacing:0.028008px;}
.wsa_c00318{word-spacing:0.035010px;}
.ws3a_c00318{word-spacing:0.064313px;}
.ws35_c00318{word-spacing:0.308088px;}
.ws12_c00318{word-spacing:0.350100px;}
.ws3f_c00318{word-spacing:0.356645px;}
.ws18_c00318{word-spacing:0.392112px;}
.ws27_c00318{word-spacing:2.177622px;}
.ws14_c00318{word-spacing:2.184624px;}
.ws21_c00318{word-spacing:2.506716px;}
.ws28_c00318{word-spacing:2.905830px;}
.ws7_c00318{word-spacing:3.606030px;}
.wsf_c00318{word-spacing:3.620034px;}
.ws2e_c00318{word-spacing:4.320234px;}
.ws34_c00318{word-spacing:5.020434px;}
.ws1b_c00318{word-spacing:5.433552px;}
.ws1e_c00318{word-spacing:6.476850px;}
.ws17_c00318{word-spacing:7.527150px;}
.ws19_c00318{word-spacing:7.548156px;}
.ws32_c00318{word-spacing:7.569162px;}
.ws13_c00318{word-spacing:8.283366px;}
.ws24_c00318{word-spacing:8.654472px;}
.ws22_c00318{word-spacing:8.990568px;}
.ws3c_c00318{word-spacing:9.237691px;}
.ws3b_c00318{word-spacing:9.471557px;}
.ws3e_c00318{word-spacing:9.758042px;}
.ws3d_c00318{word-spacing:10.798744px;}
.ws36_c00318{word-spacing:12.554586px;}
.ws33_c00318{word-spacing:13.310802px;}
.ws2a_c00318{word-spacing:13.345812px;}
.ws10_c00318{word-spacing:13.716918px;}
.ws16_c00318{word-spacing:14.382108px;}
.ws9_c00318{word-spacing:16.195626px;}
.ws2d_c00318{word-spacing:16.209630px;}
.ws25_c00318{word-spacing:17.322948px;}
.ws30_c00318{word-spacing:18.366246px;}
.ws37_c00318{word-spacing:18.709344px;}
.ws31_c00318{word-spacing:19.437552px;}
.ws1a_c00318{word-spacing:21.993282px;}
.ws1f_c00318{word-spacing:24.401970px;}
.ws15_c00318{word-spacing:25.200198px;}
.ws29_c00318{word-spacing:27.020718px;}
.ws11_c00318{word-spacing:29.520432px;}
.wsd_c00318{word-spacing:30.283650px;}
.ws26_c00318{word-spacing:33.483564px;}
.ws2f_c00318{word-spacing:35.661186px;}
.ws1d_c00318{word-spacing:38.496996px;}
.ws1c_c00318{word-spacing:38.826090px;}
.wsc_c00318{word-spacing:39.988422px;}
.ws23_c00318{word-spacing:43.188336px;}
.ws2c_c00318{word-spacing:57.143322px;}
.ws2b_c00318{word-spacing:57.241350px;}
.ws20_c00318{word-spacing:77.421114px;}
.wse_c00318{word-spacing:107.277642px;}
.ws8_c00318{word-spacing:114.104592px;}
._5_c00318{margin-left:-10.342866px;}
._4_c00318{margin-left:-8.986232px;}
._3_c00318{margin-left:-7.366758px;}
._1_c00318{margin-left:-1.274364px;}
._0_c00318{width:1.071306px;}
._6_c00318{width:2.205840px;}
._2_c00318{width:5.930694px;}
.fc0_c00318{color:rgb(0,0,0);}
.fs2_c00318{font-size:37.809600px;}
.fs1_c00318{font-size:46.562400px;}
.fs3_c00318{font-size:58.466400px;}
.fs0_c00318{font-size:70.020000px;}
.y0_c00318{bottom:0.000000px;}
.y2_c00318{bottom:109.740968px;}
.y1_c00318{bottom:129.810450px;}
.y3c_c00318{bottom:149.429891px;}
.y3b_c00318{bottom:170.940450px;}
.y3a_c00318{bottom:188.940450px;}
.y39_c00318{bottom:206.760450px;}
.y38_c00318{bottom:221.430450px;}
.y1e_c00318{bottom:274.075397px;}
.y37_c00318{bottom:283.890450px;}
.y1d_c00318{bottom:304.226009px;}
.y36_c00318{bottom:314.040450px;}
.y1c_c00318{bottom:334.465896px;}
.y35_c00318{bottom:344.280450px;}
.y1b_c00318{bottom:364.616508px;}
.y34_c00318{bottom:374.430450px;}
.y1a_c00318{bottom:394.856396px;}
.y33_c00318{bottom:404.670450px;}
.y19_c00318{bottom:425.007008px;}
.y32_c00318{bottom:434.820450px;}
.y18_c00318{bottom:455.246895px;}
.y31_c00318{bottom:465.060450px;}
.y17_c00318{bottom:485.397507px;}
.y30_c00318{bottom:495.210600px;}
.y16_c00318{bottom:515.637395px;}
.y2f_c00318{bottom:525.450600px;}
.y15_c00318{bottom:545.788007px;}
.y2e_c00318{bottom:555.600450px;}
.y14_c00318{bottom:576.027894px;}
.y2d_c00318{bottom:585.840450px;}
.y13_c00318{bottom:606.178506px;}
.y2c_c00318{bottom:615.990450px;}
.y12_c00318{bottom:636.418393px;}
.y2b_c00318{bottom:646.230450px;}
.y11_c00318{bottom:666.658281px;}
.y2a_c00318{bottom:676.290450px;}
.y10_c00318{bottom:696.808893px;}
.yf_c00318{bottom:727.048781px;}
.y29_c00318{bottom:727.050450px;}
.ye_c00318{bottom:757.199393px;}
.y28_c00318{bottom:757.200450px;}
.yd_c00318{bottom:787.439280px;}
.y27_c00318{bottom:787.440450px;}
.yc_c00318{bottom:817.589892px;}
.y26_c00318{bottom:817.590450px;}
.yb_c00318{bottom:847.829779px;}
.y25_c00318{bottom:847.830450px;}
.ya_c00318{bottom:877.980391px;}
.y24_c00318{bottom:877.980450px;}
.y9_c00318{bottom:908.220279px;}
.y23_c00318{bottom:908.220450px;}
.y22_c00318{bottom:938.370450px;}
.y8_c00318{bottom:938.370891px;}
.y21_c00318{bottom:968.610450px;}
.y7_c00318{bottom:968.610779px;}
.y20_c00318{bottom:998.760450px;}
.y6_c00318{bottom:1019.100450px;}
.y1f_c00318{bottom:1049.250450px;}
.y5_c00318{bottom:1049.340450px;}
.y4_c00318{bottom:1079.580450px;}
.y3_c00318{bottom:1109.730450px;}
.h5_c00318{height:39.338549px;}
.h6_c00318{height:54.098549px;}
.h2_c00318{height:62.600889px;}
.h1_c00318{height:62.771836px;}
.h3_c00318{height:63.216299px;}
.h4_c00318{height:73.668786px;}
.h0_c00318{height:1263.000000px;}
.w0_c00318{width:892.500000px;}
.x0_c00318{left:0.000000px;}
.x2_c00318{left:82.710059px;}
.x3_c00318{left:138.960000px;}
.x1_c00318{left:431.730000px;}
.x4_c00318{left:454.230000px;}
@media print{
.v2_c00318{vertical-align:-13.120000pt;}
.v0_c00318{vertical-align:0.000000pt;}
.v1_c00318{vertical-align:28.480000pt;}
.ls1b_c00318{letter-spacing:-0.945856pt;}
.ls1c_c00318{letter-spacing:-0.343003pt;}
.ls1d_c00318{letter-spacing:-0.332609pt;}
.ls1e_c00318{letter-spacing:-0.306624pt;}
.ls15_c00318{letter-spacing:-0.249457pt;}
.ls1a_c00318{letter-spacing:-0.145516pt;}
.ls17_c00318{letter-spacing:-0.088349pt;}
.ls14_c00318{letter-spacing:-0.067217pt;}
.lsa_c00318{letter-spacing:-0.056016pt;}
.lsf_c00318{letter-spacing:-0.049792pt;}
.ls16_c00318{letter-spacing:-0.046773pt;}
.lse_c00318{letter-spacing:-0.043568pt;}
.ls12_c00318{letter-spacing:-0.037344pt;}
.ls11_c00318{letter-spacing:-0.031120pt;}
.ls13_c00318{letter-spacing:-0.024896pt;}
.lsc_c00318{letter-spacing:-0.018672pt;}
.ls10_c00318{letter-spacing:-0.012448pt;}
.lsd_c00318{letter-spacing:-0.006224pt;}
.lsb_c00318{letter-spacing:0.000000pt;}
.ls0_c00318{letter-spacing:0.006224pt;}
.ls9_c00318{letter-spacing:0.015591pt;}
.ls1_c00318{letter-spacing:0.018672pt;}
.ls7_c00318{letter-spacing:0.020694pt;}
.ls5_c00318{letter-spacing:0.031120pt;}
.ls2_c00318{letter-spacing:0.037344pt;}
.ls3_c00318{letter-spacing:0.056016pt;}
.ls4_c00318{letter-spacing:0.074688pt;}
.ls6_c00318{letter-spacing:0.093360pt;}
.ls19_c00318{letter-spacing:0.119531pt;}
.ls8_c00318{letter-spacing:0.322215pt;}
.ls18_c00318{letter-spacing:8.330812pt;}
.ws3_c00318{word-spacing:-51.970133pt;}
.ws0_c00318{word-spacing:-17.296496pt;}
.ws4_c00318{word-spacing:-14.250211pt;}
.ws5_c00318{word-spacing:-14.063118pt;}
.ws1_c00318{word-spacing:-11.526781pt;}
.ws2_c00318{word-spacing:-9.242347pt;}
.ws38_c00318{word-spacing:-0.423232pt;}
.ws39_c00318{word-spacing:-0.057167pt;}
.ws40_c00318{word-spacing:-0.005197pt;}
.ws6_c00318{word-spacing:0.000000pt;}
.wsb_c00318{word-spacing:0.024896pt;}
.wsa_c00318{word-spacing:0.031120pt;}
.ws3a_c00318{word-spacing:0.057167pt;}
.ws35_c00318{word-spacing:0.273856pt;}
.ws12_c00318{word-spacing:0.311200pt;}
.ws3f_c00318{word-spacing:0.317018pt;}
.ws18_c00318{word-spacing:0.348544pt;}
.ws27_c00318{word-spacing:1.935664pt;}
.ws14_c00318{word-spacing:1.941888pt;}
.ws21_c00318{word-spacing:2.228192pt;}
.ws28_c00318{word-spacing:2.582960pt;}
.ws7_c00318{word-spacing:3.205360pt;}
.wsf_c00318{word-spacing:3.217808pt;}
.ws2e_c00318{word-spacing:3.840208pt;}
.ws34_c00318{word-spacing:4.462608pt;}
.ws1b_c00318{word-spacing:4.829824pt;}
.ws1e_c00318{word-spacing:5.757200pt;}
.ws17_c00318{word-spacing:6.690800pt;}
.ws19_c00318{word-spacing:6.709472pt;}
.ws32_c00318{word-spacing:6.728144pt;}
.ws13_c00318{word-spacing:7.362992pt;}
.ws24_c00318{word-spacing:7.692864pt;}
.ws22_c00318{word-spacing:7.991616pt;}
.ws3c_c00318{word-spacing:8.211281pt;}
.ws3b_c00318{word-spacing:8.419162pt;}
.ws3e_c00318{word-spacing:8.673815pt;}
.ws3d_c00318{word-spacing:9.598884pt;}
.ws36_c00318{word-spacing:11.159632pt;}
.ws33_c00318{word-spacing:11.831824pt;}
.ws2a_c00318{word-spacing:11.862944pt;}
.ws10_c00318{word-spacing:12.192816pt;}
.ws16_c00318{word-spacing:12.784096pt;}
.ws9_c00318{word-spacing:14.396112pt;}
.ws2d_c00318{word-spacing:14.408560pt;}
.ws25_c00318{word-spacing:15.398176pt;}
.ws30_c00318{word-spacing:16.325552pt;}
.ws37_c00318{word-spacing:16.630528pt;}
.ws31_c00318{word-spacing:17.277824pt;}
.ws1a_c00318{word-spacing:19.549584pt;}
.ws1f_c00318{word-spacing:21.690640pt;}
.ws15_c00318{word-spacing:22.400176pt;}
.ws29_c00318{word-spacing:24.018416pt;}
.ws11_c00318{word-spacing:26.240384pt;}
.wsd_c00318{word-spacing:26.918800pt;}
.ws26_c00318{word-spacing:29.763168pt;}
.ws2f_c00318{word-spacing:31.698832pt;}
.ws1d_c00318{word-spacing:34.219552pt;}
.ws1c_c00318{word-spacing:34.512080pt;}
.wsc_c00318{word-spacing:35.545264pt;}
.ws23_c00318{word-spacing:38.389632pt;}
.ws2c_c00318{word-spacing:50.794064pt;}
.ws2b_c00318{word-spacing:50.881200pt;}
.ws20_c00318{word-spacing:68.818768pt;}
.wse_c00318{word-spacing:95.357904pt;}
.ws8_c00318{word-spacing:101.426304pt;}
._5_c00318{margin-left:-9.193659pt;}
._4_c00318{margin-left:-7.987762pt;}
._3_c00318{margin-left:-6.548229pt;}
._1_c00318{margin-left:-1.132768pt;}
._0_c00318{width:0.952272pt;}
._6_c00318{width:1.960746pt;}
._2_c00318{width:5.271728pt;}
.fs2_c00318{font-size:33.608533pt;}
.fs1_c00318{font-size:41.388800pt;}
.fs3_c00318{font-size:51.970133pt;}
.fs0_c00318{font-size:62.240000pt;}
.y0_c00318{bottom:0.000000pt;}
.y2_c00318{bottom:97.547527pt;}
.y1_c00318{bottom:115.387067pt;}
.y3c_c00318{bottom:132.826570pt;}
.y3b_c00318{bottom:151.947067pt;}
.y3a_c00318{bottom:167.947067pt;}
.y39_c00318{bottom:183.787067pt;}
.y38_c00318{bottom:196.827067pt;}
.y1e_c00318{bottom:243.622575pt;}
.y37_c00318{bottom:252.347067pt;}
.y1d_c00318{bottom:270.423119pt;}
.y36_c00318{bottom:279.147067pt;}
.y1c_c00318{bottom:297.303019pt;}
.y35_c00318{bottom:306.027067pt;}
.y1b_c00318{bottom:324.103563pt;}
.y34_c00318{bottom:332.827067pt;}
.y1a_c00318{bottom:350.983463pt;}
.y33_c00318{bottom:359.707067pt;}
.y19_c00318{bottom:377.784007pt;}
.y32_c00318{bottom:386.507067pt;}
.y18_c00318{bottom:404.663907pt;}
.y31_c00318{bottom:413.387067pt;}
.y17_c00318{bottom:431.464451pt;}
.y30_c00318{bottom:440.187200pt;}
.y16_c00318{bottom:458.344351pt;}
.y2f_c00318{bottom:467.067200pt;}
.y15_c00318{bottom:485.144895pt;}
.y2e_c00318{bottom:493.867067pt;}
.y14_c00318{bottom:512.024795pt;}
.y2d_c00318{bottom:520.747067pt;}
.y13_c00318{bottom:538.825339pt;}
.y2c_c00318{bottom:547.547067pt;}
.y12_c00318{bottom:565.705239pt;}
.y2b_c00318{bottom:574.427067pt;}
.y11_c00318{bottom:592.585139pt;}
.y2a_c00318{bottom:601.147067pt;}
.y10_c00318{bottom:619.385683pt;}
.yf_c00318{bottom:646.265583pt;}
.y29_c00318{bottom:646.267067pt;}
.ye_c00318{bottom:673.066127pt;}
.y28_c00318{bottom:673.067067pt;}
.yd_c00318{bottom:699.946027pt;}
.y27_c00318{bottom:699.947067pt;}
.yc_c00318{bottom:726.746571pt;}
.y26_c00318{bottom:726.747067pt;}
.yb_c00318{bottom:753.626471pt;}
.y25_c00318{bottom:753.627067pt;}
.ya_c00318{bottom:780.427015pt;}
.y24_c00318{bottom:780.427067pt;}
.y9_c00318{bottom:807.306915pt;}
.y23_c00318{bottom:807.307067pt;}
.y22_c00318{bottom:834.107067pt;}
.y8_c00318{bottom:834.107459pt;}
.y21_c00318{bottom:860.987067pt;}
.y7_c00318{bottom:860.987359pt;}
.y20_c00318{bottom:887.787067pt;}
.y6_c00318{bottom:905.867067pt;}
.y1f_c00318{bottom:932.667067pt;}
.y5_c00318{bottom:932.747067pt;}
.y4_c00318{bottom:959.627067pt;}
.y3_c00318{bottom:986.427067pt;}
.h5_c00318{height:34.967599pt;}
.h6_c00318{height:48.087599pt;}
.h2_c00318{height:55.645234pt;}
.h1_c00318{height:55.797187pt;}
.h3_c00318{height:56.192266pt;}
.h4_c00318{height:65.483366pt;}
.h0_c00318{height:1122.666667pt;}
.w0_c00318{width:793.333333pt;}
.x0_c00318{left:0.000000pt;}
.x2_c00318{left:73.520052pt;}
.x3_c00318{left:123.520000pt;}
.x1_c00318{left:383.760000pt;}
.x4_c00318{left:403.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_55f61d87521a341654a8e354.woff2')format("woff");}.ff1_c00319{font-family:ff1_c00319;line-height:1.106934;font-style:normal;font-weight:normal;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_1557fe3ab63be5498dc909f6.woff2')format("woff");}.ff2_c00319{font-family:ff2_c00319;line-height:1.104492;font-style:normal;font-weight:normal;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_10f1e8495d5da5a37e41e5a8.woff2')format("woff");}.ff3_c00319{font-family:ff3_c00319;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00319{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00319{vertical-align:0.000000px;}
.v1_c00319{vertical-align:32.041854px;}
.lsc_c00319{letter-spacing:-0.077022px;}
.ls4_c00319{letter-spacing:-0.063018px;}
.ls7_c00319{letter-spacing:-0.056016px;}
.ls9_c00319{letter-spacing:-0.042012px;}
.ls6_c00319{letter-spacing:-0.035010px;}
.lsb_c00319{letter-spacing:-0.028008px;}
.lsa_c00319{letter-spacing:-0.014004px;}
.ls8_c00319{letter-spacing:-0.007002px;}
.ls5_c00319{letter-spacing:0.000000px;}
.ls0_c00319{letter-spacing:0.014004px;}
.ls1_c00319{letter-spacing:0.021006px;}
.ls2_c00319{letter-spacing:0.023281px;}
.ls3_c00319{letter-spacing:0.028008px;}
.lsd_c00319{letter-spacing:0.231066px;}
.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:-12.967628px;}
.ws17_c00319{word-spacing:-0.245070px;}
.ws1_c00319{word-spacing:0.000000px;}
.ws11_c00319{word-spacing:0.357102px;}
.ws7_c00319{word-spacing:0.385110px;}
.ws3_c00319{word-spacing:1.050300px;}
.ws9_c00319{word-spacing:1.848528px;}
.ws5_c00319{word-spacing:2.562732px;}
.ws6_c00319{word-spacing:2.870820px;}
.wsa_c00319{word-spacing:3.599028px;}
.wse_c00319{word-spacing:4.320234px;}
.ws13_c00319{word-spacing:6.112746px;}
.ws2_c00319{word-spacing:9.739782px;}
.ws8_c00319{word-spacing:13.639896px;}
.wsc_c00319{word-spacing:17.652042px;}
.wsb_c00319{word-spacing:20.123748px;}
.ws10_c00319{word-spacing:21.251070px;}
.wsd_c00319{word-spacing:25.571304px;}
.ws14_c00319{word-spacing:29.163330px;}
.ws15_c00319{word-spacing:33.497568px;}
.ws12_c00319{word-spacing:37.453698px;}
.ws16_c00319{word-spacing:65.888820px;}
.ws4_c00319{word-spacing:69.802938px;}
.wsf_c00319{word-spacing:129.284928px;}
._1_c00319{margin-left:-1.218348px;}
._0_c00319{width:1.036296px;}
._2_c00319{width:8.283366px;}
.fc0_c00319{color:rgb(0,0,0);}
.fs1_c00319{font-size:46.562400px;}
.fs0_c00319{font-size:70.020000px;}
.y0_c00319{bottom:0.000000px;}
.y2_c00319{bottom:109.740968px;}
.y1_c00319{bottom:129.810450px;}
.y20_c00319{bottom:233.489977px;}
.y1f_c00319{bottom:263.549563px;}
.y1e_c00319{bottom:293.789451px;}
.y1d_c00319{bottom:323.940063px;}
.y1c_c00319{bottom:354.179950px;}
.y1b_c00319{bottom:384.330562px;}
.y1a_c00319{bottom:414.570450px;}
.y19_c00319{bottom:445.525842px;}
.y18_c00319{bottom:475.765730px;}
.y17_c00319{bottom:505.916342px;}
.y16_c00319{bottom:536.156229px;}
.y15_c00319{bottom:566.306841px;}
.y14_c00319{bottom:596.457453px;}
.y13_c00319{bottom:626.608065px;}
.y12_c00319{bottom:656.847953px;}
.y11_c00319{bottom:686.998565px;}
.y10_c00319{bottom:717.238452px;}
.yf_c00319{bottom:747.389064px;}
.ye_c00319{bottom:777.628952px;}
.yd_c00319{bottom:807.779563px;}
.yc_c00319{bottom:838.019451px;}
.yb_c00319{bottom:868.170063px;}
.ya_c00319{bottom:898.409951px;}
.y9_c00319{bottom:928.560563px;}
.y8_c00319{bottom:958.799987px;}
.y7_c00319{bottom:988.950599px;}
.y6_c00319{bottom:1019.190486px;}
.y5_c00319{bottom:1049.341098px;}
.y4_c00319{bottom:1079.580985px;}
.y3_c00319{bottom:1109.731597px;}
.h2_c00319{height:62.600889px;}
.h1_c00319{height:62.771836px;}
.h5_c00319{height:63.216299px;}
.h3_c00319{height:73.670640px;}
.h4_c00319{height:73.687818px;}
.h0_c00319{height:1263.000000px;}
.w0_c00319{width:892.500000px;}
.x0_c00319{left:0.000000px;}
.x2_c00319{left:82.710059px;}
.x3_c00319{left:138.960626px;}
.x6_c00319{left:165.240967px;}
.x5_c00319{left:288.180333px;}
.x1_c00319{left:431.730000px;}
.x4_c00319{left:446.310000px;}
@media print{
.v0_c00319{vertical-align:0.000000pt;}
.v1_c00319{vertical-align:28.481648pt;}
.lsc_c00319{letter-spacing:-0.068464pt;}
.ls4_c00319{letter-spacing:-0.056016pt;}
.ls7_c00319{letter-spacing:-0.049792pt;}
.ls9_c00319{letter-spacing:-0.037344pt;}
.ls6_c00319{letter-spacing:-0.031120pt;}
.lsb_c00319{letter-spacing:-0.024896pt;}
.lsa_c00319{letter-spacing:-0.012448pt;}
.ls8_c00319{letter-spacing:-0.006224pt;}
.ls5_c00319{letter-spacing:0.000000pt;}
.ls0_c00319{letter-spacing:0.012448pt;}
.ls1_c00319{letter-spacing:0.018672pt;}
.ls2_c00319{letter-spacing:0.020694pt;}
.ls3_c00319{letter-spacing:0.024896pt;}
.lsd_c00319{letter-spacing:0.205392pt;}
.ws0_c00319{word-spacing:-11.526781pt;}
.ws17_c00319{word-spacing:-0.217840pt;}
.ws1_c00319{word-spacing:0.000000pt;}
.ws11_c00319{word-spacing:0.317424pt;}
.ws7_c00319{word-spacing:0.342320pt;}
.ws3_c00319{word-spacing:0.933600pt;}
.ws9_c00319{word-spacing:1.643136pt;}
.ws5_c00319{word-spacing:2.277984pt;}
.ws6_c00319{word-spacing:2.551840pt;}
.wsa_c00319{word-spacing:3.199136pt;}
.wse_c00319{word-spacing:3.840208pt;}
.ws13_c00319{word-spacing:5.433552pt;}
.ws2_c00319{word-spacing:8.657584pt;}
.ws8_c00319{word-spacing:12.124352pt;}
.wsc_c00319{word-spacing:15.690704pt;}
.wsb_c00319{word-spacing:17.887776pt;}
.ws10_c00319{word-spacing:18.889840pt;}
.wsd_c00319{word-spacing:22.730048pt;}
.ws14_c00319{word-spacing:25.922960pt;}
.ws15_c00319{word-spacing:29.775616pt;}
.ws12_c00319{word-spacing:33.292176pt;}
.ws16_c00319{word-spacing:58.567840pt;}
.ws4_c00319{word-spacing:62.047056pt;}
.wsf_c00319{word-spacing:114.919936pt;}
._1_c00319{margin-left:-1.082976pt;}
._0_c00319{width:0.921152pt;}
._2_c00319{width:7.362992pt;}
.fs1_c00319{font-size:41.388800pt;}
.fs0_c00319{font-size:62.240000pt;}
.y0_c00319{bottom:0.000000pt;}
.y2_c00319{bottom:97.547527pt;}
.y1_c00319{bottom:115.387067pt;}
.y20_c00319{bottom:207.546647pt;}
.y1f_c00319{bottom:234.266279pt;}
.y1e_c00319{bottom:261.146179pt;}
.y1d_c00319{bottom:287.946723pt;}
.y1c_c00319{bottom:314.826623pt;}
.y1b_c00319{bottom:341.627167pt;}
.y1a_c00319{bottom:368.507067pt;}
.y19_c00319{bottom:396.022971pt;}
.y18_c00319{bottom:422.902871pt;}
.y17_c00319{bottom:449.703415pt;}
.y16_c00319{bottom:476.583315pt;}
.y15_c00319{bottom:503.383859pt;}
.y14_c00319{bottom:530.184403pt;}
.y13_c00319{bottom:556.984947pt;}
.y12_c00319{bottom:583.864847pt;}
.y11_c00319{bottom:610.665391pt;}
.y10_c00319{bottom:637.545291pt;}
.yf_c00319{bottom:664.345835pt;}
.ye_c00319{bottom:691.225735pt;}
.yd_c00319{bottom:718.026279pt;}
.yc_c00319{bottom:744.906179pt;}
.yb_c00319{bottom:771.706723pt;}
.ya_c00319{bottom:798.586623pt;}
.y9_c00319{bottom:825.387167pt;}
.y8_c00319{bottom:852.266655pt;}
.y7_c00319{bottom:879.067199pt;}
.y6_c00319{bottom:905.947099pt;}
.y5_c00319{bottom:932.747643pt;}
.y4_c00319{bottom:959.627543pt;}
.y3_c00319{bottom:986.428087pt;}
.h2_c00319{height:55.645234pt;}
.h1_c00319{height:55.797187pt;}
.h5_c00319{height:56.192266pt;}
.h3_c00319{height:65.485014pt;}
.h4_c00319{height:65.500283pt;}
.h0_c00319{height:1122.666667pt;}
.w0_c00319{width:793.333333pt;}
.x0_c00319{left:0.000000pt;}
.x2_c00319{left:73.520052pt;}
.x3_c00319{left:123.520556pt;}
.x6_c00319{left:146.880860pt;}
.x5_c00319{left:256.160296pt;}
.x1_c00319{left:383.760000pt;}
.x4_c00319{left:396.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_02e32dd48a5568d02b4c32ec.woff2')format("woff");}.ff1_c00320{font-family:ff1_c00320;line-height:1.106934;font-style:normal;font-weight:normal;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_fc12c63100ff5a9682ade04a.woff2')format("woff");}.ff2_c00320{font-family:ff2_c00320;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00320;src:url('chunks/assets/font_20a8e10c788ffc30d9e19385.woff2')format("woff");}.ff3_c00320{font-family:ff3_c00320;line-height:1.104492;font-style:normal;font-weight:normal;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_7a7c0739bd93124f4ea38a8e.woff2')format("woff");}.ff4_c00320{font-family:ff4_c00320;line-height:1.133301;font-style:normal;font-weight:normal;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_2c3259c954def1bb9db3c9b8.woff2')format("woff");}.ff5_c00320{font-family:ff5_c00320;line-height:1.133301;font-style:normal;font-weight:normal;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_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff6_c00320{font-family:ff6_c00320;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00320{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00320{vertical-align:-14.760000px;}
.v0_c00320{vertical-align:0.000000px;}
.v1_c00320{vertical-align:32.401674px;}
.ls13_c00320{letter-spacing:-0.707443px;}
.ls16_c00320{letter-spacing:-0.631437px;}
.ls14_c00320{letter-spacing:-0.415111px;}
.ls12_c00320{letter-spacing:-0.152013px;}
.ls15_c00320{letter-spacing:-0.128626px;}
.ls11_c00320{letter-spacing:-0.076006px;}
.lsf_c00320{letter-spacing:-0.075619px;}
.ls7_c00320{letter-spacing:-0.063018px;}
.ls9_c00320{letter-spacing:-0.035010px;}
.lsa_c00320{letter-spacing:-0.028008px;}
.lse_c00320{letter-spacing:-0.021006px;}
.lsb_c00320{letter-spacing:-0.014004px;}
.lsc_c00320{letter-spacing:-0.007002px;}
.ls8_c00320{letter-spacing:0.000000px;}
.ls3_c00320{letter-spacing:0.007002px;}
.ls1_c00320{letter-spacing:0.023281px;}
.ls4_c00320{letter-spacing:0.035010px;}
.ls2_c00320{letter-spacing:0.056016px;}
.ls0_c00320{letter-spacing:0.063018px;}
.ls5_c00320{letter-spacing:0.093546px;}
.lsd_c00320{letter-spacing:0.315090px;}
.ls17_c00320{letter-spacing:0.356645px;}
.ls6_c00320{letter-spacing:0.362492px;}
.ls10_c00320{letter-spacing:7.214754px;}
.sc__c00320{text-shadow:none;}
.sc0_c00320{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00320{-webkit-text-stroke:0px transparent;}
.sc0_c00320{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00320{word-spacing:-19.528578px;}
.ws1_c00320{word-spacing:-12.967628px;}
.ws2_c00320{word-spacing:-10.397640px;}
.ws21_c00320{word-spacing:-0.701597px;}
.ws1c_c00320{word-spacing:-0.192939px;}
.ws3_c00320{word-spacing:0.000000px;}
.ws9_c00320{word-spacing:0.021006px;}
.ws1b_c00320{word-spacing:0.087700px;}
.ws19_c00320{word-spacing:0.371106px;}
.ws4_c00320{word-spacing:0.378108px;}
.ws1d_c00320{word-spacing:0.719137px;}
.ws10_c00320{word-spacing:1.729494px;}
.ws11_c00320{word-spacing:1.848528px;}
.wsc_c00320{word-spacing:4.334238px;}
.ws17_c00320{word-spacing:5.762646px;}
.ws14_c00320{word-spacing:6.483852px;}
.ws7_c00320{word-spacing:6.490854px;}
.ws8_c00320{word-spacing:6.497856px;}
.ws1a_c00320{word-spacing:7.121208px;}
.ws5_c00320{word-spacing:10.460988px;}
.ws6_c00320{word-spacing:14.053014px;}
.ws1f_c00320{word-spacing:17.422987px;}
.wse_c00320{word-spacing:18.030150px;}
.ws1e_c00320{word-spacing:18.066118px;}
.ws20_c00320{word-spacing:18.282443px;}
.wsf_c00320{word-spacing:18.359244px;}
.ws18_c00320{word-spacing:18.674334px;}
.ws15_c00320{word-spacing:23.015574px;}
.wsa_c00320{word-spacing:23.043582px;}
.wsb_c00320{word-spacing:23.414688px;}
.wsd_c00320{word-spacing:25.193196px;}
.ws13_c00320{word-spacing:30.962844px;}
.ws12_c00320{word-spacing:30.976848px;}
.ws16_c00320{word-spacing:42.845238px;}
._5_c00320{margin-left:-8.446636px;}
._4_c00320{margin-left:-7.024505px;}
._6_c00320{margin-left:-5.896104px;}
._3_c00320{margin-left:-2.709774px;}
._1_c00320{margin-left:-1.078308px;}
._0_c00320{width:1.162332px;}
._2_c00320{width:5.930694px;}
.fc0_c00320{color:rgb(0,0,0);}
.fs2_c00320{font-size:37.809600px;}
.fs1_c00320{font-size:46.562400px;}
.fs3_c00320{font-size:58.466400px;}
.fs0_c00320{font-size:70.020000px;}
.y0_c00320{bottom:0.000000px;}
.y2_c00320{bottom:109.740968px;}
.y1_c00320{bottom:129.810450px;}
.y1d_c00320{bottom:149.429891px;}
.y1c_c00320{bottom:170.940450px;}
.y1b_c00320{bottom:185.249891px;}
.y1a_c00320{bottom:206.760450px;}
.y19_c00320{bottom:221.430450px;}
.y18_c00320{bottom:271.736341px;}
.y17_c00320{bottom:301.886953px;}
.y16_c00320{bottom:332.126841px;}
.y15_c00320{bottom:362.277453px;}
.y14_c00320{bottom:392.517340px;}
.y13_c00320{bottom:422.667952px;}
.y12_c00320{bottom:452.907840px;}
.y11_c00320{bottom:483.058452px;}
.y10_c00320{bottom:513.298339px;}
.yf_c00320{bottom:543.448951px;}
.ye_c00320{bottom:573.688839px;}
.yd_c00320{bottom:603.839451px;}
.yc_c00320{bottom:634.079338px;}
.yb_c00320{bottom:664.229950px;}
.ya_c00320{bottom:694.469838px;}
.y9_c00320{bottom:724.620031px;}
.y8_c00320{bottom:754.859919px;}
.y7_c00320{bottom:785.010531px;}
.y6_c00320{bottom:815.250419px;}
.y5_c00320{bottom:845.401030px;}
.y4_c00320{bottom:875.640918px;}
.y3_c00320{bottom:902.010450px;}
.h6_c00320{height:39.338549px;}
.h7_c00320{height:54.098549px;}
.h4_c00320{height:62.600889px;}
.h1_c00320{height:62.771836px;}
.h2_c00320{height:63.216299px;}
.h5_c00320{height:73.685220px;}
.h3_c00320{height:74.030460px;}
.h0_c00320{height:1263.000000px;}
.w0_c00320{width:892.500000px;}
.x0_c00320{left:0.000000px;}
.x2_c00320{left:82.710059px;}
.x4_c00320{left:138.959635px;}
.x1_c00320{left:431.730000px;}
.x3_c00320{left:732.780000px;}
@media print{
.v2_c00320{vertical-align:-13.120000pt;}
.v0_c00320{vertical-align:0.000000pt;}
.v1_c00320{vertical-align:28.801488pt;}
.ls13_c00320{letter-spacing:-0.628839pt;}
.ls16_c00320{letter-spacing:-0.561277pt;}
.ls14_c00320{letter-spacing:-0.368988pt;}
.ls12_c00320{letter-spacing:-0.135122pt;}
.ls15_c00320{letter-spacing:-0.114334pt;}
.ls11_c00320{letter-spacing:-0.067561pt;}
.lsf_c00320{letter-spacing:-0.067217pt;}
.ls7_c00320{letter-spacing:-0.056016pt;}
.ls9_c00320{letter-spacing:-0.031120pt;}
.lsa_c00320{letter-spacing:-0.024896pt;}
.lse_c00320{letter-spacing:-0.018672pt;}
.lsb_c00320{letter-spacing:-0.012448pt;}
.lsc_c00320{letter-spacing:-0.006224pt;}
.ls8_c00320{letter-spacing:0.000000pt;}
.ls3_c00320{letter-spacing:0.006224pt;}
.ls1_c00320{letter-spacing:0.020694pt;}
.ls4_c00320{letter-spacing:0.031120pt;}
.ls2_c00320{letter-spacing:0.049792pt;}
.ls0_c00320{letter-spacing:0.056016pt;}
.ls5_c00320{letter-spacing:0.083152pt;}
.lsd_c00320{letter-spacing:0.280080pt;}
.ls17_c00320{letter-spacing:0.317018pt;}
.ls6_c00320{letter-spacing:0.322215pt;}
.ls10_c00320{letter-spacing:6.413114pt;}
.ws0_c00320{word-spacing:-17.358736pt;}
.ws1_c00320{word-spacing:-11.526781pt;}
.ws2_c00320{word-spacing:-9.242347pt;}
.ws21_c00320{word-spacing:-0.623642pt;}
.ws1c_c00320{word-spacing:-0.171501pt;}
.ws3_c00320{word-spacing:0.000000pt;}
.ws9_c00320{word-spacing:0.018672pt;}
.ws1b_c00320{word-spacing:0.077955pt;}
.ws19_c00320{word-spacing:0.329872pt;}
.ws4_c00320{word-spacing:0.336096pt;}
.ws1d_c00320{word-spacing:0.639233pt;}
.ws10_c00320{word-spacing:1.537328pt;}
.ws11_c00320{word-spacing:1.643136pt;}
.wsc_c00320{word-spacing:3.852656pt;}
.ws17_c00320{word-spacing:5.122352pt;}
.ws14_c00320{word-spacing:5.763424pt;}
.ws7_c00320{word-spacing:5.769648pt;}
.ws8_c00320{word-spacing:5.775872pt;}
.ws1a_c00320{word-spacing:6.329962pt;}
.ws5_c00320{word-spacing:9.298656pt;}
.ws6_c00320{word-spacing:12.491568pt;}
.ws1f_c00320{word-spacing:15.487100pt;}
.wse_c00320{word-spacing:16.026800pt;}
.ws1e_c00320{word-spacing:16.058771pt;}
.ws20_c00320{word-spacing:16.251061pt;}
.wsf_c00320{word-spacing:16.319328pt;}
.ws18_c00320{word-spacing:16.599408pt;}
.ws15_c00320{word-spacing:20.458288pt;}
.wsa_c00320{word-spacing:20.483184pt;}
.wsb_c00320{word-spacing:20.813056pt;}
.wsd_c00320{word-spacing:22.393952pt;}
.ws13_c00320{word-spacing:27.522528pt;}
.ws12_c00320{word-spacing:27.534976pt;}
.ws16_c00320{word-spacing:38.084656pt;}
._5_c00320{margin-left:-7.508121pt;}
._4_c00320{margin-left:-6.244004pt;}
._6_c00320{margin-left:-5.240981pt;}
._3_c00320{margin-left:-2.408688pt;}
._1_c00320{margin-left:-0.958496pt;}
._0_c00320{width:1.033184pt;}
._2_c00320{width:5.271728pt;}
.fs2_c00320{font-size:33.608533pt;}
.fs1_c00320{font-size:41.388800pt;}
.fs3_c00320{font-size:51.970133pt;}
.fs0_c00320{font-size:62.240000pt;}
.y0_c00320{bottom:0.000000pt;}
.y2_c00320{bottom:97.547527pt;}
.y1_c00320{bottom:115.387067pt;}
.y1d_c00320{bottom:132.826570pt;}
.y1c_c00320{bottom:151.947067pt;}
.y1b_c00320{bottom:164.666570pt;}
.y1a_c00320{bottom:183.787067pt;}
.y19_c00320{bottom:196.827067pt;}
.y18_c00320{bottom:241.543415pt;}
.y17_c00320{bottom:268.343959pt;}
.y16_c00320{bottom:295.223859pt;}
.y15_c00320{bottom:322.024403pt;}
.y14_c00320{bottom:348.904303pt;}
.y13_c00320{bottom:375.704847pt;}
.y12_c00320{bottom:402.584747pt;}
.y11_c00320{bottom:429.385291pt;}
.y10_c00320{bottom:456.265191pt;}
.yf_c00320{bottom:483.065735pt;}
.ye_c00320{bottom:509.945635pt;}
.yd_c00320{bottom:536.746179pt;}
.yc_c00320{bottom:563.626079pt;}
.yb_c00320{bottom:590.426623pt;}
.ya_c00320{bottom:617.306523pt;}
.y9_c00320{bottom:644.106695pt;}
.y8_c00320{bottom:670.986595pt;}
.y7_c00320{bottom:697.787139pt;}
.y6_c00320{bottom:724.667039pt;}
.y5_c00320{bottom:751.467583pt;}
.y4_c00320{bottom:778.347483pt;}
.y3_c00320{bottom:801.787067pt;}
.h6_c00320{height:34.967599pt;}
.h7_c00320{height:48.087599pt;}
.h4_c00320{height:55.645234pt;}
.h1_c00320{height:55.797187pt;}
.h2_c00320{height:56.192266pt;}
.h5_c00320{height:65.497974pt;}
.h3_c00320{height:65.804854pt;}
.h0_c00320{height:1122.666667pt;}
.w0_c00320{width:793.333333pt;}
.x0_c00320{left:0.000000pt;}
.x2_c00320{left:73.520052pt;}
.x4_c00320{left:123.519676pt;}
.x1_c00320{left:383.760000pt;}
.x3_c00320{left:651.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3223d101b5b579123c87b9c8.woff2')format("woff");}.ff1_c00321{font-family:ff1_c00321;line-height:1.106934;font-style:normal;font-weight:normal;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_75ceff4ec7b832aa965885e6.woff2')format("woff");}.ff2_c00321{font-family:ff2_c00321;line-height:1.104492;font-style:normal;font-weight:normal;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_f713c3c2aabce74cb980e252.woff2')format("woff");}.ff3_c00321{font-family:ff3_c00321;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00321;src:url('chunks/assets/font_09f5696aee932fdd63cf17ec.woff2')format("woff");}.ff4_c00321{font-family:ff4_c00321;line-height:1.133301;font-style:normal;font-weight:normal;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_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff5_c00321{font-family:ff5_c00321;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00321;src:url('chunks/assets/font_5a5fd979780fac5e890a5b59.woff2')format("woff");}.ff6_c00321{font-family:ff6_c00321;line-height:1.133301;font-style:normal;font-weight: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_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff7_c00321{font-family:ff7_c00321;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00321{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00321{vertical-align:-14.400000px;}
.v0_c00321{vertical-align:0.000000px;}
.v1_c00321{vertical-align:32.044122px;}
.ls1f_c00321{letter-spacing:-0.707443px;}
.ls1c_c00321{letter-spacing:-0.245559px;}
.ls12_c00321{letter-spacing:-0.134473px;}
.ls20_c00321{letter-spacing:-0.087700px;}
.ls17_c00321{letter-spacing:-0.081853px;}
.ls11_c00321{letter-spacing:-0.075619px;}
.ls1a_c00321{letter-spacing:-0.070160px;}
.ls9_c00321{letter-spacing:-0.063018px;}
.ls14_c00321{letter-spacing:-0.052620px;}
.lsc_c00321{letter-spacing:-0.049014px;}
.ls13_c00321{letter-spacing:-0.046773px;}
.lse_c00321{letter-spacing:-0.035010px;}
.lsf_c00321{letter-spacing:-0.028008px;}
.lsb_c00321{letter-spacing:-0.021006px;}
.lsd_c00321{letter-spacing:-0.014004px;}
.ls10_c00321{letter-spacing:-0.007002px;}
.lsa_c00321{letter-spacing:0.000000px;}
.ls5_c00321{letter-spacing:0.007002px;}
.ls6_c00321{letter-spacing:0.017540px;}
.ls4_c00321{letter-spacing:0.023281px;}
.ls1e_c00321{letter-spacing:0.023387px;}
.ls19_c00321{letter-spacing:0.029233px;}
.ls0_c00321{letter-spacing:0.035010px;}
.ls16_c00321{letter-spacing:0.040926px;}
.ls8_c00321{letter-spacing:0.052620px;}
.ls1_c00321{letter-spacing:0.063018px;}
.ls15_c00321{letter-spacing:0.087700px;}
.ls3_c00321{letter-spacing:0.119034px;}
.ls1b_c00321{letter-spacing:0.228019px;}
.ls1d_c00321{letter-spacing:0.245559px;}
.ls18_c00321{letter-spacing:0.292332px;}
.ls7_c00321{letter-spacing:0.362492px;}
.ls2_c00321{letter-spacing:1.771506px;}
.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;}
}
.ws3_c00321{word-spacing:-58.466400px;}
.ws0_c00321{word-spacing:-19.528578px;}
.ws4_c00321{word-spacing:-16.282892px;}
.ws5_c00321{word-spacing:-16.218579px;}
.ws6_c00321{word-spacing:-16.107493px;}
.ws1_c00321{word-spacing:-12.967628px;}
.ws2_c00321{word-spacing:-10.397640px;}
.wsc_c00321{word-spacing:-0.049014px;}
.ws7_c00321{word-spacing:0.000000px;}
.ws15_c00321{word-spacing:0.007002px;}
.ws29_c00321{word-spacing:0.011693px;}
.wsb_c00321{word-spacing:0.014004px;}
.ws16_c00321{word-spacing:0.343098px;}
.wsd_c00321{word-spacing:1.435410px;}
.ws1b_c00321{word-spacing:1.456416px;}
.ws13_c00321{word-spacing:1.666476px;}
.ws12_c00321{word-spacing:1.785510px;}
.ws14_c00321{word-spacing:1.813518px;}
.ws9_c00321{word-spacing:2.555730px;}
.ws8_c00321{word-spacing:2.884824px;}
.ws18_c00321{word-spacing:3.942126px;}
.ws17_c00321{word-spacing:3.963132px;}
.wsf_c00321{word-spacing:9.718776px;}
.ws26_c00321{word-spacing:10.401173px;}
.ws27_c00321{word-spacing:10.564878px;}
.ws24_c00321{word-spacing:10.582418px;}
.ws23_c00321{word-spacing:10.880597px;}
.ws25_c00321{word-spacing:11.055996px;}
.wse_c00321{word-spacing:11.154186px;}
.ws28_c00321{word-spacing:11.161236px;}
.ws11_c00321{word-spacing:12.253500px;}
.ws10_c00321{word-spacing:12.624606px;}
.ws19_c00321{word-spacing:13.989996px;}
.ws1a_c00321{word-spacing:14.025006px;}
.ws22_c00321{word-spacing:23.842598px;}
.ws20_c00321{word-spacing:24.094003px;}
.ws21_c00321{word-spacing:24.216783px;}
.ws1c_c00321{word-spacing:30.238822px;}
.ws1f_c00321{word-spacing:30.303135px;}
.ws1d_c00321{word-spacing:30.384988px;}
.ws1e_c00321{word-spacing:30.659780px;}
.wsa_c00321{word-spacing:50.757498px;}
._4_c00321{margin-left:-7.604826px;}
._5_c00321{margin-left:-2.062734px;}
._1_c00321{margin-left:-1.036296px;}
._0_c00321{width:1.330380px;}
._3_c00321{width:5.930694px;}
._2_c00321{width:8.283366px;}
.fc0_c00321{color:rgb(0,0,0);}
.fs2_c00321{font-size:37.809600px;}
.fs1_c00321{font-size:46.562400px;}
.fs3_c00321{font-size:58.466400px;}
.fs0_c00321{font-size:70.020000px;}
.y0_c00321{bottom:0.000000px;}
.y2_c00321{bottom:109.740968px;}
.y1_c00321{bottom:129.810450px;}
.y1e_c00321{bottom:149.429891px;}
.y1d_c00321{bottom:170.940450px;}
.y1c_c00321{bottom:185.249548px;}
.y1b_c00321{bottom:203.070107px;}
.y1a_c00321{bottom:224.670450px;}
.y19_c00321{bottom:239.430450px;}
.y18_c00321{bottom:283.080090px;}
.y17_c00321{bottom:313.319977px;}
.y16_c00321{bottom:343.470589px;}
.y15_c00321{bottom:373.710477px;}
.y14_c00321{bottom:403.770063px;}
.y13_c00321{bottom:434.009951px;}
.y12_c00321{bottom:464.160563px;}
.y11_c00321{bottom:494.399419px;}
.y10_c00321{bottom:524.550031px;}
.yf_c00321{bottom:554.789919px;}
.ye_c00321{bottom:584.940531px;}
.yd_c00321{bottom:615.180418px;}
.yc_c00321{bottom:645.331030px;}
.yb_c00321{bottom:675.570918px;}
.ya_c00321{bottom:701.940450px;}
.y9_c00321{bottom:928.560099px;}
.y8_c00321{bottom:958.799987px;}
.y7_c00321{bottom:988.950599px;}
.y6_c00321{bottom:1019.190486px;}
.y5_c00321{bottom:1049.341098px;}
.y4_c00321{bottom:1079.580985px;}
.y3_c00321{bottom:1109.731597px;}
.h7_c00321{height:39.338549px;}
.h5_c00321{height:39.698549px;}
.h6_c00321{height:54.098549px;}
.h2_c00321{height:62.600889px;}
.h1_c00321{height:62.771836px;}
.h3_c00321{height:63.216299px;}
.h4_c00321{height:73.672908px;}
.h0_c00321{height:1263.000000px;}
.w0_c00321{width:892.500000px;}
.x0_c00321{left:0.000000px;}
.x2_c00321{left:82.710059px;}
.x3_c00321{left:138.960626px;}
.x4_c00321{left:165.240882px;}
.x5_c00321{left:191.521139px;}
.x1_c00321{left:431.730000px;}
.x6_c00321{left:730.800000px;}
@media print{
.v2_c00321{vertical-align:-12.800000pt;}
.v0_c00321{vertical-align:0.000000pt;}
.v1_c00321{vertical-align:28.483664pt;}
.ls1f_c00321{letter-spacing:-0.628839pt;}
.ls1c_c00321{letter-spacing:-0.218275pt;}
.ls12_c00321{letter-spacing:-0.119531pt;}
.ls20_c00321{letter-spacing:-0.077955pt;}
.ls17_c00321{letter-spacing:-0.072758pt;}
.ls11_c00321{letter-spacing:-0.067217pt;}
.ls1a_c00321{letter-spacing:-0.062364pt;}
.ls9_c00321{letter-spacing:-0.056016pt;}
.ls14_c00321{letter-spacing:-0.046773pt;}
.lsc_c00321{letter-spacing:-0.043568pt;}
.ls13_c00321{letter-spacing:-0.041576pt;}
.lse_c00321{letter-spacing:-0.031120pt;}
.lsf_c00321{letter-spacing:-0.024896pt;}
.lsb_c00321{letter-spacing:-0.018672pt;}
.lsd_c00321{letter-spacing:-0.012448pt;}
.ls10_c00321{letter-spacing:-0.006224pt;}
.lsa_c00321{letter-spacing:0.000000pt;}
.ls5_c00321{letter-spacing:0.006224pt;}
.ls6_c00321{letter-spacing:0.015591pt;}
.ls4_c00321{letter-spacing:0.020694pt;}
.ls1e_c00321{letter-spacing:0.020788pt;}
.ls19_c00321{letter-spacing:0.025985pt;}
.ls0_c00321{letter-spacing:0.031120pt;}
.ls16_c00321{letter-spacing:0.036379pt;}
.ls8_c00321{letter-spacing:0.046773pt;}
.ls1_c00321{letter-spacing:0.056016pt;}
.ls15_c00321{letter-spacing:0.077955pt;}
.ls3_c00321{letter-spacing:0.105808pt;}
.ls1b_c00321{letter-spacing:0.202684pt;}
.ls1d_c00321{letter-spacing:0.218275pt;}
.ls18_c00321{letter-spacing:0.259851pt;}
.ls7_c00321{letter-spacing:0.322215pt;}
.ls2_c00321{letter-spacing:1.574672pt;}
.ws3_c00321{word-spacing:-51.970133pt;}
.ws0_c00321{word-spacing:-17.358736pt;}
.ws4_c00321{word-spacing:-14.473682pt;}
.ws5_c00321{word-spacing:-14.416515pt;}
.ws6_c00321{word-spacing:-14.317772pt;}
.ws1_c00321{word-spacing:-11.526781pt;}
.ws2_c00321{word-spacing:-9.242347pt;}
.wsc_c00321{word-spacing:-0.043568pt;}
.ws7_c00321{word-spacing:0.000000pt;}
.ws15_c00321{word-spacing:0.006224pt;}
.ws29_c00321{word-spacing:0.010394pt;}
.wsb_c00321{word-spacing:0.012448pt;}
.ws16_c00321{word-spacing:0.304976pt;}
.wsd_c00321{word-spacing:1.275920pt;}
.ws1b_c00321{word-spacing:1.294592pt;}
.ws13_c00321{word-spacing:1.481312pt;}
.ws12_c00321{word-spacing:1.587120pt;}
.ws14_c00321{word-spacing:1.612016pt;}
.ws9_c00321{word-spacing:2.271760pt;}
.ws8_c00321{word-spacing:2.564288pt;}
.ws18_c00321{word-spacing:3.504112pt;}
.ws17_c00321{word-spacing:3.522784pt;}
.wsf_c00321{word-spacing:8.638912pt;}
.ws26_c00321{word-spacing:9.245487pt;}
.ws27_c00321{word-spacing:9.391003pt;}
.ws24_c00321{word-spacing:9.406594pt;}
.ws23_c00321{word-spacing:9.671642pt;}
.ws25_c00321{word-spacing:9.827552pt;}
.wse_c00321{word-spacing:9.914832pt;}
.ws28_c00321{word-spacing:9.921098pt;}
.ws11_c00321{word-spacing:10.892000pt;}
.ws10_c00321{word-spacing:11.221872pt;}
.ws19_c00321{word-spacing:12.435552pt;}
.ws1a_c00321{word-spacing:12.466672pt;}
.ws22_c00321{word-spacing:21.193420pt;}
.ws20_c00321{word-spacing:21.416892pt;}
.ws21_c00321{word-spacing:21.526029pt;}
.ws1c_c00321{word-spacing:26.878953pt;}
.ws1f_c00321{word-spacing:26.936120pt;}
.ws1d_c00321{word-spacing:27.008878pt;}
.ws1e_c00321{word-spacing:27.253138pt;}
.wsa_c00321{word-spacing:45.117776pt;}
._4_c00321{margin-left:-6.759845pt;}
._5_c00321{margin-left:-1.833542pt;}
._1_c00321{margin-left:-0.921152pt;}
._0_c00321{width:1.182560pt;}
._3_c00321{width:5.271728pt;}
._2_c00321{width:7.362992pt;}
.fs2_c00321{font-size:33.608533pt;}
.fs1_c00321{font-size:41.388800pt;}
.fs3_c00321{font-size:51.970133pt;}
.fs0_c00321{font-size:62.240000pt;}
.y0_c00321{bottom:0.000000pt;}
.y2_c00321{bottom:97.547527pt;}
.y1_c00321{bottom:115.387067pt;}
.y1e_c00321{bottom:132.826570pt;}
.y1d_c00321{bottom:151.947067pt;}
.y1c_c00321{bottom:164.666265pt;}
.y1b_c00321{bottom:180.506762pt;}
.y1a_c00321{bottom:199.707067pt;}
.y19_c00321{bottom:212.827067pt;}
.y18_c00321{bottom:251.626747pt;}
.y17_c00321{bottom:278.506647pt;}
.y16_c00321{bottom:305.307191pt;}
.y15_c00321{bottom:332.187091pt;}
.y14_c00321{bottom:358.906723pt;}
.y13_c00321{bottom:385.786623pt;}
.y12_c00321{bottom:412.587167pt;}
.y11_c00321{bottom:439.466151pt;}
.y10_c00321{bottom:466.266695pt;}
.yf_c00321{bottom:493.146595pt;}
.ye_c00321{bottom:519.947139pt;}
.yd_c00321{bottom:546.827039pt;}
.yc_c00321{bottom:573.627583pt;}
.yb_c00321{bottom:600.507483pt;}
.ya_c00321{bottom:623.947067pt;}
.y9_c00321{bottom:825.386755pt;}
.y8_c00321{bottom:852.266655pt;}
.y7_c00321{bottom:879.067199pt;}
.y6_c00321{bottom:905.947099pt;}
.y5_c00321{bottom:932.747643pt;}
.y4_c00321{bottom:959.627543pt;}
.y3_c00321{bottom:986.428087pt;}
.h7_c00321{height:34.967599pt;}
.h5_c00321{height:35.287599pt;}
.h6_c00321{height:48.087599pt;}
.h2_c00321{height:55.645234pt;}
.h1_c00321{height:55.797187pt;}
.h3_c00321{height:56.192266pt;}
.h4_c00321{height:65.487030pt;}
.h0_c00321{height:1122.666667pt;}
.w0_c00321{width:793.333333pt;}
.x0_c00321{left:0.000000pt;}
.x2_c00321{left:73.520052pt;}
.x3_c00321{left:123.520556pt;}
.x4_c00321{left:146.880784pt;}
.x5_c00321{left:170.241012pt;}
.x1_c00321{left:383.760000pt;}
.x6_c00321{left:649.600000pt;}
}





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

.ir_c00322:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00322{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00322;src:url('chunks/assets/font_45f750603eab638d8edad603.woff2')format("woff");}.ff1_c00322{font-family:ff1_c00322;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00322;src:url('chunks/assets/font_7cc980776d1289ef29565d55.woff2')format("woff");}.ff2_c00322{font-family:ff2_c00322;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00322;src:url('chunks/assets/font_e0de0ac784b6c2c23490adc1.woff2')format("woff");}.ff3_c00322{font-family:ff3_c00322;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00322{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00322{vertical-align:0.000000px;}
.v1_c00322{vertical-align:32.039856px;}
.ls6_c00322{letter-spacing:-0.063018px;}
.lsc_c00322{letter-spacing:-0.056016px;}
.lsf_c00322{letter-spacing:-0.042012px;}
.lsb_c00322{letter-spacing:-0.035010px;}
.lsa_c00322{letter-spacing:-0.028008px;}
.ls9_c00322{letter-spacing:-0.021006px;}
.lsd_c00322{letter-spacing:-0.014004px;}
.ls8_c00322{letter-spacing:-0.007002px;}
.ls7_c00322{letter-spacing:0.000000px;}
.ls0_c00322{letter-spacing:0.007002px;}
.ls5_c00322{letter-spacing:0.021006px;}
.ls2_c00322{letter-spacing:0.023281px;}
.ls3_c00322{letter-spacing:0.035010px;}
.ls1_c00322{letter-spacing:0.049014px;}
.ls4_c00322{letter-spacing:0.063018px;}
.lse_c00322{letter-spacing:0.343098px;}
.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;}
}
.ws1_c00322{word-spacing:-19.528578px;}
.ws0_c00322{word-spacing:-12.967628px;}
.wsa_c00322{word-spacing:-0.049014px;}
.ws2_c00322{word-spacing:0.000000px;}
.ws12_c00322{word-spacing:0.028008px;}
.ws9_c00322{word-spacing:0.042012px;}
.ws10_c00322{word-spacing:0.371106px;}
.ws8_c00322{word-spacing:0.378108px;}
.ws14_c00322{word-spacing:0.721206px;}
.ws13_c00322{word-spacing:3.227922px;}
.wsf_c00322{word-spacing:3.606030px;}
.wsd_c00322{word-spacing:11.147184px;}
.ws15_c00322{word-spacing:11.175192px;}
.wsc_c00322{word-spacing:11.483280px;}
.ws11_c00322{word-spacing:12.617604px;}
.ws7_c00322{word-spacing:16.930836px;}
.wsb_c00322{word-spacing:21.944268px;}
.ws3_c00322{word-spacing:24.471990px;}
.ws4_c00322{word-spacing:24.485994px;}
.ws6_c00322{word-spacing:34.855956px;}
.ws5_c00322{word-spacing:34.897968px;}
.wse_c00322{word-spacing:37.082592px;}
._0_c00322{margin-left:-1.351386px;}
._1_c00322{width:1.036296px;}
._2_c00322{width:8.283366px;}
.fc0_c00322{color:rgb(0,0,0);}
.fs1_c00322{font-size:46.562400px;}
.fs0_c00322{font-size:70.020000px;}
.y0_c00322{bottom:0.000000px;}
.y2_c00322{bottom:109.740968px;}
.y1_c00322{bottom:129.810450px;}
.y17_c00322{bottom:203.970450px;}
.y16_c00322{bottom:234.120600px;}
.y15_c00322{bottom:264.360450px;}
.y14_c00322{bottom:314.850450px;}
.y13_c00322{bottom:345.180450px;}
.y12_c00322{bottom:395.760450px;}
.y11_c00322{bottom:426.000600px;}
.y10_c00322{bottom:456.150450px;}
.yf_c00322{bottom:486.300450px;}
.ye_c00322{bottom:516.540600px;}
.yd_c00322{bottom:546.690450px;}
.yc_c00322{bottom:593.490450px;}
.yb_c00322{bottom:877.530450px;}
.ya_c00322{bottom:907.770450px;}
.y9_c00322{bottom:937.920450px;}
.y8_c00322{bottom:968.160450px;}
.y7_c00322{bottom:988.950562px;}
.y6_c00322{bottom:1019.190486px;}
.y5_c00322{bottom:1049.341098px;}
.y4_c00322{bottom:1079.580985px;}
.y3_c00322{bottom:1109.731597px;}
.h2_c00322{height:62.600889px;}
.h1_c00322{height:62.771836px;}
.h4_c00322{height:63.216299px;}
.h3_c00322{height:73.668642px;}
.h0_c00322{height:1263.000000px;}
.w0_c00322{width:892.500000px;}
.x0_c00322{left:0.000000px;}
.x2_c00322{left:82.710059px;}
.x3_c00322{left:138.960626px;}
.x6_c00322{left:165.240000px;}
.x7_c00322{left:191.520000px;}
.x5_c00322{left:343.170000px;}
.x1_c00322{left:431.730000px;}
.x4_c00322{left:446.310000px;}
.x8_c00322{left:723.690000px;}
@media print{
.v0_c00322{vertical-align:0.000000pt;}
.v1_c00322{vertical-align:28.479872pt;}
.ls6_c00322{letter-spacing:-0.056016pt;}
.lsc_c00322{letter-spacing:-0.049792pt;}
.lsf_c00322{letter-spacing:-0.037344pt;}
.lsb_c00322{letter-spacing:-0.031120pt;}
.lsa_c00322{letter-spacing:-0.024896pt;}
.ls9_c00322{letter-spacing:-0.018672pt;}
.lsd_c00322{letter-spacing:-0.012448pt;}
.ls8_c00322{letter-spacing:-0.006224pt;}
.ls7_c00322{letter-spacing:0.000000pt;}
.ls0_c00322{letter-spacing:0.006224pt;}
.ls5_c00322{letter-spacing:0.018672pt;}
.ls2_c00322{letter-spacing:0.020694pt;}
.ls3_c00322{letter-spacing:0.031120pt;}
.ls1_c00322{letter-spacing:0.043568pt;}
.ls4_c00322{letter-spacing:0.056016pt;}
.lse_c00322{letter-spacing:0.304976pt;}
.ws1_c00322{word-spacing:-17.358736pt;}
.ws0_c00322{word-spacing:-11.526781pt;}
.wsa_c00322{word-spacing:-0.043568pt;}
.ws2_c00322{word-spacing:0.000000pt;}
.ws12_c00322{word-spacing:0.024896pt;}
.ws9_c00322{word-spacing:0.037344pt;}
.ws10_c00322{word-spacing:0.329872pt;}
.ws8_c00322{word-spacing:0.336096pt;}
.ws14_c00322{word-spacing:0.641072pt;}
.ws13_c00322{word-spacing:2.869264pt;}
.wsf_c00322{word-spacing:3.205360pt;}
.wsd_c00322{word-spacing:9.908608pt;}
.ws15_c00322{word-spacing:9.933504pt;}
.wsc_c00322{word-spacing:10.207360pt;}
.ws11_c00322{word-spacing:11.215648pt;}
.ws7_c00322{word-spacing:15.049632pt;}
.wsb_c00322{word-spacing:19.506016pt;}
.ws3_c00322{word-spacing:21.752880pt;}
.ws4_c00322{word-spacing:21.765328pt;}
.ws6_c00322{word-spacing:30.983072pt;}
.ws5_c00322{word-spacing:31.020416pt;}
.wse_c00322{word-spacing:32.962304pt;}
._0_c00322{margin-left:-1.201232pt;}
._1_c00322{width:0.921152pt;}
._2_c00322{width:7.362992pt;}
.fs1_c00322{font-size:41.388800pt;}
.fs0_c00322{font-size:62.240000pt;}
.y0_c00322{bottom:0.000000pt;}
.y2_c00322{bottom:97.547527pt;}
.y1_c00322{bottom:115.387067pt;}
.y17_c00322{bottom:181.307067pt;}
.y16_c00322{bottom:208.107200pt;}
.y15_c00322{bottom:234.987067pt;}
.y14_c00322{bottom:279.867067pt;}
.y13_c00322{bottom:306.827067pt;}
.y12_c00322{bottom:351.787067pt;}
.y11_c00322{bottom:378.667200pt;}
.y10_c00322{bottom:405.467067pt;}
.yf_c00322{bottom:432.267067pt;}
.ye_c00322{bottom:459.147200pt;}
.yd_c00322{bottom:485.947067pt;}
.yc_c00322{bottom:527.547067pt;}
.yb_c00322{bottom:780.027067pt;}
.ya_c00322{bottom:806.907067pt;}
.y9_c00322{bottom:833.707067pt;}
.y8_c00322{bottom:860.587067pt;}
.y7_c00322{bottom:879.067167pt;}
.y6_c00322{bottom:905.947099pt;}
.y5_c00322{bottom:932.747643pt;}
.y4_c00322{bottom:959.627543pt;}
.y3_c00322{bottom:986.428087pt;}
.h2_c00322{height:55.645234pt;}
.h1_c00322{height:55.797187pt;}
.h4_c00322{height:56.192266pt;}
.h3_c00322{height:65.483238pt;}
.h0_c00322{height:1122.666667pt;}
.w0_c00322{width:793.333333pt;}
.x0_c00322{left:0.000000pt;}
.x2_c00322{left:73.520052pt;}
.x3_c00322{left:123.520556pt;}
.x6_c00322{left:146.880000pt;}
.x7_c00322{left:170.240000pt;}
.x5_c00322{left:305.040000pt;}
.x1_c00322{left:383.760000pt;}
.x4_c00322{left:396.720000pt;}
.x8_c00322{left:643.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f10169f7a1c3c79c80c2eeb7.woff2')format("woff");}.ff1_c00323{font-family:ff1_c00323;line-height:1.106934;font-style:normal;font-weight:normal;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_048b1d48379a449368251834.woff2')format("woff");}.ff2_c00323{font-family:ff2_c00323;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00323{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00323{vertical-align:0.000000px;}
.ls1_c00323{letter-spacing:-0.063018px;}
.ls7_c00323{letter-spacing:-0.049014px;}
.ls5_c00323{letter-spacing:-0.042012px;}
.ls4_c00323{letter-spacing:-0.035010px;}
.ls3_c00323{letter-spacing:-0.021006px;}
.ls6_c00323{letter-spacing:-0.014004px;}
.ls8_c00323{letter-spacing:-0.007002px;}
.ls2_c00323{letter-spacing:0.000000px;}
.ls0_c00323{letter-spacing:0.014004px;}
.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;}
}
.wse_c00323{word-spacing:-0.336096px;}
.wsb_c00323{word-spacing:-0.329094px;}
.wsf_c00323{word-spacing:-0.028008px;}
.ws0_c00323{word-spacing:0.000000px;}
.ws6_c00323{word-spacing:0.007002px;}
.ws7_c00323{word-spacing:0.014004px;}
.ws5_c00323{word-spacing:0.028008px;}
.wsa_c00323{word-spacing:0.350100px;}
.ws1_c00323{word-spacing:0.364104px;}
.ws9_c00323{word-spacing:0.385110px;}
.ws4_c00323{word-spacing:0.406116px;}
.ws3_c00323{word-spacing:6.483852px;}
.ws2_c00323{word-spacing:6.497856px;}
.ws8_c00323{word-spacing:26.677620px;}
.wsc_c00323{word-spacing:46.052154px;}
.wsd_c00323{word-spacing:46.101168px;}
._0_c00323{margin-left:-1.106316px;}
._1_c00323{width:1.043298px;}
.fc0_c00323{color:rgb(0,0,0);}
.fs0_c00323{font-size:70.020000px;}
.y0_c00323{bottom:0.000000px;}
.y2_c00323{bottom:109.740968px;}
.y1_c00323{bottom:129.810450px;}
.y16_c00323{bottom:209.190450px;}
.y15_c00323{bottom:259.860450px;}
.y14_c00323{bottom:310.440450px;}
.y13_c00323{bottom:361.110450px;}
.y12_c00323{bottom:411.690450px;}
.y11_c00323{bottom:462.360600px;}
.y10_c00323{bottom:492.600450px;}
.yf_c00323{bottom:543.090450px;}
.ye_c00323{bottom:593.670450px;}
.yd_c00323{bottom:644.430450px;}
.yc_c00323{bottom:695.010450px;}
.yb_c00323{bottom:725.250450px;}
.ya_c00323{bottom:775.740450px;}
.y9_c00323{bottom:826.410450px;}
.y8_c00323{bottom:876.990450px;}
.y7_c00323{bottom:927.660450px;}
.y6_c00323{bottom:978.240450px;}
.y5_c00323{bottom:1028.910450px;}
.y4_c00323{bottom:1059.150450px;}
.y3_c00323{bottom:1109.640450px;}
.h2_c00323{height:62.600889px;}
.h1_c00323{height:62.771836px;}
.h0_c00323{height:1263.000000px;}
.w0_c00323{width:892.500000px;}
.x0_c00323{left:0.000000px;}
.x2_c00323{left:82.710059px;}
.x3_c00323{left:138.960000px;}
.x4_c00323{left:405.000000px;}
.x1_c00323{left:431.730000px;}
@media print{
.v0_c00323{vertical-align:0.000000pt;}
.ls1_c00323{letter-spacing:-0.056016pt;}
.ls7_c00323{letter-spacing:-0.043568pt;}
.ls5_c00323{letter-spacing:-0.037344pt;}
.ls4_c00323{letter-spacing:-0.031120pt;}
.ls3_c00323{letter-spacing:-0.018672pt;}
.ls6_c00323{letter-spacing:-0.012448pt;}
.ls8_c00323{letter-spacing:-0.006224pt;}
.ls2_c00323{letter-spacing:0.000000pt;}
.ls0_c00323{letter-spacing:0.012448pt;}
.wse_c00323{word-spacing:-0.298752pt;}
.wsb_c00323{word-spacing:-0.292528pt;}
.wsf_c00323{word-spacing:-0.024896pt;}
.ws0_c00323{word-spacing:0.000000pt;}
.ws6_c00323{word-spacing:0.006224pt;}
.ws7_c00323{word-spacing:0.012448pt;}
.ws5_c00323{word-spacing:0.024896pt;}
.wsa_c00323{word-spacing:0.311200pt;}
.ws1_c00323{word-spacing:0.323648pt;}
.ws9_c00323{word-spacing:0.342320pt;}
.ws4_c00323{word-spacing:0.360992pt;}
.ws3_c00323{word-spacing:5.763424pt;}
.ws2_c00323{word-spacing:5.775872pt;}
.ws8_c00323{word-spacing:23.713440pt;}
.wsc_c00323{word-spacing:40.935248pt;}
.wsd_c00323{word-spacing:40.978816pt;}
._0_c00323{margin-left:-0.983392pt;}
._1_c00323{width:0.927376pt;}
.fs0_c00323{font-size:62.240000pt;}
.y0_c00323{bottom:0.000000pt;}
.y2_c00323{bottom:97.547527pt;}
.y1_c00323{bottom:115.387067pt;}
.y16_c00323{bottom:185.947067pt;}
.y15_c00323{bottom:230.987067pt;}
.y14_c00323{bottom:275.947067pt;}
.y13_c00323{bottom:320.987067pt;}
.y12_c00323{bottom:365.947067pt;}
.y11_c00323{bottom:410.987200pt;}
.y10_c00323{bottom:437.867067pt;}
.yf_c00323{bottom:482.747067pt;}
.ye_c00323{bottom:527.707067pt;}
.yd_c00323{bottom:572.827067pt;}
.yc_c00323{bottom:617.787067pt;}
.yb_c00323{bottom:644.667067pt;}
.ya_c00323{bottom:689.547067pt;}
.y9_c00323{bottom:734.587067pt;}
.y8_c00323{bottom:779.547067pt;}
.y7_c00323{bottom:824.587067pt;}
.y6_c00323{bottom:869.547067pt;}
.y5_c00323{bottom:914.587067pt;}
.y4_c00323{bottom:941.467067pt;}
.y3_c00323{bottom:986.347067pt;}
.h2_c00323{height:55.645234pt;}
.h1_c00323{height:55.797187pt;}
.h0_c00323{height:1122.666667pt;}
.w0_c00323{width:793.333333pt;}
.x0_c00323{left:0.000000pt;}
.x2_c00323{left:73.520052pt;}
.x3_c00323{left:123.520000pt;}
.x4_c00323{left:360.000000pt;}
.x1_c00323{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7e37d9afd319aa8b0d2b25ce.woff2')format("woff");}.ff1_c00324{font-family:ff1_c00324;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00324;src:url('chunks/assets/font_e613028f3a21101e7ed3cc4e.woff2')format("woff");}.ff2_c00324{font-family:ff2_c00324;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00324;src:url('chunks/assets/font_df428901853b02b7d01297ef.woff2')format("woff");}.ff3_c00324{font-family:ff3_c00324;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00324;src:url('chunks/assets/font_f6722c2e32754f9277ed74f8.woff2')format("woff");}.ff4_c00324{font-family:ff4_c00324;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00324;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff5_c00324{font-family:ff5_c00324;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00324;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff6_c00324{font-family:ff6_c00324;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00324{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00324{vertical-align:-14.760000px;}
.v0_c00324{vertical-align:0.000000px;}
.v1_c00324{vertical-align:32.040000px;}
.ls1e_c00324{letter-spacing:-0.707443px;}
.ls11_c00324{letter-spacing:-0.335249px;}
.ls12_c00324{letter-spacing:-0.280080px;}
.ls17_c00324{letter-spacing:-0.228019px;}
.ls16_c00324{letter-spacing:-0.198786px;}
.ls1d_c00324{letter-spacing:-0.128626px;}
.ls15_c00324{letter-spacing:-0.087700px;}
.ls13_c00324{letter-spacing:-0.075619px;}
.ls8_c00324{letter-spacing:-0.063018px;}
.lsf_c00324{letter-spacing:-0.049014px;}
.lsd_c00324{letter-spacing:-0.042012px;}
.ls10_c00324{letter-spacing:-0.035010px;}
.lsb_c00324{letter-spacing:-0.028008px;}
.ls1c_c00324{letter-spacing:-0.023387px;}
.lsc_c00324{letter-spacing:-0.021006px;}
.ls1a_c00324{letter-spacing:-0.017540px;}
.lsa_c00324{letter-spacing:-0.014004px;}
.ls19_c00324{letter-spacing:-0.011693px;}
.lse_c00324{letter-spacing:-0.007002px;}
.ls9_c00324{letter-spacing:0.000000px;}
.ls0_c00324{letter-spacing:0.007002px;}
.ls1_c00324{letter-spacing:0.023281px;}
.ls3_c00324{letter-spacing:0.028008px;}
.ls4_c00324{letter-spacing:0.046773px;}
.ls5_c00324{letter-spacing:0.081853px;}
.ls6_c00324{letter-spacing:0.093546px;}
.ls7_c00324{letter-spacing:0.362492px;}
.ls1b_c00324{letter-spacing:0.391725px;}
.ls2_c00324{letter-spacing:0.539154px;}
.ls18_c00324{letter-spacing:7.214754px;}
.ls14_c00324{letter-spacing:22.334165px;}
.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;}
}
.ws5_c00324{word-spacing:-58.466400px;}
.ws2_c00324{word-spacing:-19.465560px;}
.ws4_c00324{word-spacing:-16.277046px;}
.ws0_c00324{word-spacing:-12.967628px;}
.ws1_c00324{word-spacing:-12.609098px;}
.ws3_c00324{word-spacing:-10.397640px;}
.ws24_c00324{word-spacing:-0.380032px;}
.ws7_c00324{word-spacing:-0.343098px;}
.ws26_c00324{word-spacing:-0.216326px;}
.ws1b_c00324{word-spacing:-0.007002px;}
.ws6_c00324{word-spacing:0.000000px;}
.wse_c00324{word-spacing:0.035010px;}
.ws25_c00324{word-spacing:0.035080px;}
.ws19_c00324{word-spacing:0.266076px;}
.wsb_c00324{word-spacing:0.343098px;}
.wsf_c00324{word-spacing:0.371106px;}
.ws27_c00324{word-spacing:0.719137px;}
.ws20_c00324{word-spacing:2.040477px;}
.ws17_c00324{word-spacing:3.255930px;}
.ws8_c00324{word-spacing:4.663332px;}
.ws13_c00324{word-spacing:4.670334px;}
.wsc_c00324{word-spacing:5.020434px;}
.ws18_c00324{word-spacing:5.041440px;}
.ws15_c00324{word-spacing:5.398542px;}
.ws14_c00324{word-spacing:5.433552px;}
.ws16_c00324{word-spacing:5.447556px;}
.ws21_c00324{word-spacing:7.121208px;}
.ws22_c00324{word-spacing:7.226447px;}
.ws23_c00324{word-spacing:7.588939px;}
.ws1c_c00324{word-spacing:8.598456px;}
.ws1e_c00324{word-spacing:8.740727px;}
.ws1f_c00324{word-spacing:8.851813px;}
.ws9_c00324{word-spacing:9.725778px;}
.ws11_c00324{word-spacing:15.138324px;}
.ws10_c00324{word-spacing:16.202628px;}
.wsd_c00324{word-spacing:20.872962px;}
.ws1a_c00324{word-spacing:21.965274px;}
.ws1d_c00324{word-spacing:22.287392px;}
.wsa_c00324{word-spacing:26.670618px;}
.ws12_c00324{word-spacing:50.029290px;}
._4_c00324{margin-left:-23.066419px;}
._3_c00324{margin-left:-21.894243px;}
._5_c00324{margin-left:-7.570661px;}
._6_c00324{margin-left:-6.071026px;}
._1_c00324{margin-left:-1.344384px;}
._0_c00324{width:1.400400px;}
._2_c00324{width:5.489568px;}
.fc0_c00324{color:rgb(0,0,0);}
.fs2_c00324{font-size:37.809600px;}
.fs1_c00324{font-size:46.562400px;}
.fs3_c00324{font-size:58.466400px;}
.fs0_c00324{font-size:70.020000px;}
.y0_c00324{bottom:0.000000px;}
.y2_c00324{bottom:109.740968px;}
.y1_c00324{bottom:129.810450px;}
.y20_c00324{bottom:149.429891px;}
.y1f_c00324{bottom:170.940450px;}
.y1e_c00324{bottom:185.250451px;}
.y1d_c00324{bottom:203.071010px;}
.y1c_c00324{bottom:220.980730px;}
.y1b_c00324{bottom:242.580450px;}
.y1a_c00324{bottom:257.250450px;}
.y19_c00324{bottom:302.520450px;}
.y18_c00324{bottom:332.670450px;}
.y17_c00324{bottom:362.910450px;}
.y16_c00324{bottom:413.490450px;}
.y15_c00324{bottom:464.070450px;}
.y14_c00324{bottom:514.650450px;}
.y13_c00324{bottom:544.980450px;}
.y12_c00324{bottom:575.130450px;}
.y11_c00324{bottom:605.370450px;}
.y10_c00324{bottom:635.520450px;}
.yf_c00324{bottom:665.760450px;}
.ye_c00324{bottom:695.910450px;}
.yd_c00324{bottom:726.150450px;}
.yc_c00324{bottom:776.640450px;}
.yb_c00324{bottom:827.310450px;}
.ya_c00324{bottom:857.640450px;}
.y9_c00324{bottom:887.790600px;}
.y8_c00324{bottom:917.940450px;}
.y7_c00324{bottom:948.090450px;}
.y6_c00324{bottom:978.330450px;}
.y5_c00324{bottom:1008.480450px;}
.y4_c00324{bottom:1059.060450px;}
.y3_c00324{bottom:1109.640450px;}
.h4_c00324{height:39.338549px;}
.h5_c00324{height:54.098549px;}
.h2_c00324{height:62.600889px;}
.h1_c00324{height:62.771836px;}
.h3_c00324{height:73.668786px;}
.h0_c00324{height:1263.000000px;}
.w0_c00324{width:892.500000px;}
.x0_c00324{left:0.000000px;}
.x2_c00324{left:82.710059px;}
.x3_c00324{left:138.960000px;}
.x1_c00324{left:431.730000px;}
@media print{
.v2_c00324{vertical-align:-13.120000pt;}
.v0_c00324{vertical-align:0.000000pt;}
.v1_c00324{vertical-align:28.480000pt;}
.ls1e_c00324{letter-spacing:-0.628839pt;}
.ls11_c00324{letter-spacing:-0.297999pt;}
.ls12_c00324{letter-spacing:-0.248960pt;}
.ls17_c00324{letter-spacing:-0.202684pt;}
.ls16_c00324{letter-spacing:-0.176698pt;}
.ls1d_c00324{letter-spacing:-0.114334pt;}
.ls15_c00324{letter-spacing:-0.077955pt;}
.ls13_c00324{letter-spacing:-0.067217pt;}
.ls8_c00324{letter-spacing:-0.056016pt;}
.lsf_c00324{letter-spacing:-0.043568pt;}
.lsd_c00324{letter-spacing:-0.037344pt;}
.ls10_c00324{letter-spacing:-0.031120pt;}
.lsb_c00324{letter-spacing:-0.024896pt;}
.ls1c_c00324{letter-spacing:-0.020788pt;}
.lsc_c00324{letter-spacing:-0.018672pt;}
.ls1a_c00324{letter-spacing:-0.015591pt;}
.lsa_c00324{letter-spacing:-0.012448pt;}
.ls19_c00324{letter-spacing:-0.010394pt;}
.lse_c00324{letter-spacing:-0.006224pt;}
.ls9_c00324{letter-spacing:0.000000pt;}
.ls0_c00324{letter-spacing:0.006224pt;}
.ls1_c00324{letter-spacing:0.020694pt;}
.ls3_c00324{letter-spacing:0.024896pt;}
.ls4_c00324{letter-spacing:0.041576pt;}
.ls5_c00324{letter-spacing:0.072758pt;}
.ls6_c00324{letter-spacing:0.083152pt;}
.ls7_c00324{letter-spacing:0.322215pt;}
.ls1b_c00324{letter-spacing:0.348200pt;}
.ls2_c00324{letter-spacing:0.479248pt;}
.ls18_c00324{letter-spacing:6.413114pt;}
.ls14_c00324{letter-spacing:19.852591pt;}
.ws5_c00324{word-spacing:-51.970133pt;}
.ws2_c00324{word-spacing:-17.302720pt;}
.ws4_c00324{word-spacing:-14.468485pt;}
.ws0_c00324{word-spacing:-11.526781pt;}
.ws1_c00324{word-spacing:-11.208087pt;}
.ws3_c00324{word-spacing:-9.242347pt;}
.ws24_c00324{word-spacing:-0.337806pt;}
.ws7_c00324{word-spacing:-0.304976pt;}
.ws26_c00324{word-spacing:-0.192289pt;}
.ws1b_c00324{word-spacing:-0.006224pt;}
.ws6_c00324{word-spacing:0.000000pt;}
.wse_c00324{word-spacing:0.031120pt;}
.ws25_c00324{word-spacing:0.031182pt;}
.ws19_c00324{word-spacing:0.236512pt;}
.wsb_c00324{word-spacing:0.304976pt;}
.wsf_c00324{word-spacing:0.329872pt;}
.ws27_c00324{word-spacing:0.639233pt;}
.ws20_c00324{word-spacing:1.813758pt;}
.ws17_c00324{word-spacing:2.894160pt;}
.ws8_c00324{word-spacing:4.145184pt;}
.ws13_c00324{word-spacing:4.151408pt;}
.wsc_c00324{word-spacing:4.462608pt;}
.ws18_c00324{word-spacing:4.481280pt;}
.ws15_c00324{word-spacing:4.798704pt;}
.ws14_c00324{word-spacing:4.829824pt;}
.ws16_c00324{word-spacing:4.842272pt;}
.ws21_c00324{word-spacing:6.329962pt;}
.ws22_c00324{word-spacing:6.423508pt;}
.ws23_c00324{word-spacing:6.745723pt;}
.ws1c_c00324{word-spacing:7.643072pt;}
.ws1e_c00324{word-spacing:7.769535pt;}
.ws1f_c00324{word-spacing:7.868278pt;}
.ws9_c00324{word-spacing:8.645136pt;}
.ws11_c00324{word-spacing:13.456288pt;}
.ws10_c00324{word-spacing:14.402336pt;}
.wsd_c00324{word-spacing:18.553744pt;}
.ws1a_c00324{word-spacing:19.524688pt;}
.ws1d_c00324{word-spacing:19.811015pt;}
.wsa_c00324{word-spacing:23.707216pt;}
.ws12_c00324{word-spacing:44.470480pt;}
._4_c00324{margin-left:-20.503484pt;}
._3_c00324{margin-left:-19.461549pt;}
._5_c00324{margin-left:-6.729476pt;}
._6_c00324{margin-left:-5.396467pt;}
._1_c00324{margin-left:-1.195008pt;}
._0_c00324{width:1.244800pt;}
._2_c00324{width:4.879616pt;}
.fs2_c00324{font-size:33.608533pt;}
.fs1_c00324{font-size:41.388800pt;}
.fs3_c00324{font-size:51.970133pt;}
.fs0_c00324{font-size:62.240000pt;}
.y0_c00324{bottom:0.000000pt;}
.y2_c00324{bottom:97.547527pt;}
.y1_c00324{bottom:115.387067pt;}
.y20_c00324{bottom:132.826570pt;}
.y1f_c00324{bottom:151.947067pt;}
.y1e_c00324{bottom:164.667068pt;}
.y1d_c00324{bottom:180.507564pt;}
.y1c_c00324{bottom:196.427316pt;}
.y1b_c00324{bottom:215.627067pt;}
.y1a_c00324{bottom:228.667067pt;}
.y19_c00324{bottom:268.907067pt;}
.y18_c00324{bottom:295.707067pt;}
.y17_c00324{bottom:322.587067pt;}
.y16_c00324{bottom:367.547067pt;}
.y15_c00324{bottom:412.507067pt;}
.y14_c00324{bottom:457.467067pt;}
.y13_c00324{bottom:484.427067pt;}
.y12_c00324{bottom:511.227067pt;}
.y11_c00324{bottom:538.107067pt;}
.y10_c00324{bottom:564.907067pt;}
.yf_c00324{bottom:591.787067pt;}
.ye_c00324{bottom:618.587067pt;}
.yd_c00324{bottom:645.467067pt;}
.yc_c00324{bottom:690.347067pt;}
.yb_c00324{bottom:735.387067pt;}
.ya_c00324{bottom:762.347067pt;}
.y9_c00324{bottom:789.147200pt;}
.y8_c00324{bottom:815.947067pt;}
.y7_c00324{bottom:842.747067pt;}
.y6_c00324{bottom:869.627067pt;}
.y5_c00324{bottom:896.427067pt;}
.y4_c00324{bottom:941.387067pt;}
.y3_c00324{bottom:986.347067pt;}
.h4_c00324{height:34.967599pt;}
.h5_c00324{height:48.087599pt;}
.h2_c00324{height:55.645234pt;}
.h1_c00324{height:55.797187pt;}
.h3_c00324{height:65.483366pt;}
.h0_c00324{height:1122.666667pt;}
.w0_c00324{width:793.333333pt;}
.x0_c00324{left:0.000000pt;}
.x2_c00324{left:73.520052pt;}
.x3_c00324{left:123.520000pt;}
.x1_c00324{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f72f07a672294df70cde1d8d.woff2')format("woff");}.ff1_c00325{font-family:ff1_c00325;line-height:1.106934;font-style:normal;font-weight:normal;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_13e1cfd735fe2743359b2d43.woff2')format("woff");}.ff2_c00325{font-family:ff2_c00325;line-height:1.104492;font-style:normal;font-weight:normal;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_b98b425a2ff19b5a10afec12.woff2')format("woff");}.ff3_c00325{font-family:ff3_c00325;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00325;src:url('chunks/assets/font_cecfdddbcee7f98c78c9401c.woff2')format("woff");}.ff4_c00325{font-family:ff4_c00325;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00325;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff5_c00325{font-family:ff5_c00325;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00325;src:url('chunks/assets/font_6cff23c0c2a23714763b2502.woff2')format("woff");}.ff6_c00325{font-family:ff6_c00325;line-height:1.133301;font-style:normal;font-weight: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_c00325;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff7_c00325{font-family:ff7_c00325;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00325{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00325{vertical-align:-14.400000px;}
.v0_c00325{vertical-align:0.000000px;}
.v1_c00325{vertical-align:32.040000px;}
.ls15_c00325{letter-spacing:-0.344952px;}
.ls19_c00325{letter-spacing:-0.152013px;}
.ls16_c00325{letter-spacing:-0.134473px;}
.ls11_c00325{letter-spacing:-0.116933px;}
.ls10_c00325{letter-spacing:-0.075619px;}
.lsa_c00325{letter-spacing:-0.070020px;}
.ls7_c00325{letter-spacing:-0.063018px;}
.ls13_c00325{letter-spacing:-0.052620px;}
.lsf_c00325{letter-spacing:-0.042012px;}
.ls1a_c00325{letter-spacing:-0.040926px;}
.ls14_c00325{letter-spacing:-0.035080px;}
.lse_c00325{letter-spacing:-0.035010px;}
.lsd_c00325{letter-spacing:-0.028008px;}
.ls9_c00325{letter-spacing:-0.021006px;}
.ls17_c00325{letter-spacing:-0.017540px;}
.lsc_c00325{letter-spacing:-0.014004px;}
.lsb_c00325{letter-spacing:-0.007002px;}
.ls8_c00325{letter-spacing:0.000000px;}
.ls3_c00325{letter-spacing:0.007002px;}
.ls2_c00325{letter-spacing:0.021006px;}
.ls0_c00325{letter-spacing:0.023281px;}
.ls1_c00325{letter-spacing:0.070020px;}
.ls4_c00325{letter-spacing:0.081853px;}
.ls6_c00325{letter-spacing:0.169553px;}
.ls18_c00325{letter-spacing:0.292332px;}
.ls12_c00325{letter-spacing:0.321565px;}
.ls5_c00325{letter-spacing:0.362492px;}
.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;}
}
.ws3_c00325{word-spacing:-58.466400px;}
.ws0_c00325{word-spacing:-19.395540px;}
.ws4_c00325{word-spacing:-16.516758px;}
.ws1_c00325{word-spacing:-12.967628px;}
.ws2_c00325{word-spacing:-10.397640px;}
.ws19_c00325{word-spacing:-0.327412px;}
.ws1e_c00325{word-spacing:-0.157859px;}
.ws12_c00325{word-spacing:-0.021006px;}
.ws8_c00325{word-spacing:-0.007002px;}
.ws5_c00325{word-spacing:0.000000px;}
.ws9_c00325{word-spacing:0.007002px;}
.ws1d_c00325{word-spacing:0.046773px;}
.ws1c_c00325{word-spacing:0.052620px;}
.ws18_c00325{word-spacing:0.146166px;}
.ws14_c00325{word-spacing:1.373960px;}
.ws16_c00325{word-spacing:1.490893px;}
.ws15_c00325{word-spacing:1.508433px;}
.ws13_c00325{word-spacing:1.572746px;}
.ws17_c00325{word-spacing:1.800765px;}
.ws10_c00325{word-spacing:2.541726px;}
.wse_c00325{word-spacing:2.898828px;}
.wsf_c00325{word-spacing:3.991140px;}
.ws11_c00325{word-spacing:6.805944px;}
.wsa_c00325{word-spacing:12.960702px;}
.wsb_c00325{word-spacing:12.967704px;}
.wsd_c00325{word-spacing:13.331808px;}
.wsc_c00325{word-spacing:14.025006px;}
.ws1a_c00325{word-spacing:19.159439px;}
.ws1b_c00325{word-spacing:19.603784px;}
.ws6_c00325{word-spacing:40.688622px;}
.ws7_c00325{word-spacing:43.195338px;}
._4_c00325{margin-left:-7.394766px;}
._0_c00325{margin-left:-1.246356px;}
._1_c00325{width:1.113318px;}
._3_c00325{width:5.930694px;}
._2_c00325{width:8.283366px;}
.fc0_c00325{color:rgb(0,0,0);}
.fs2_c00325{font-size:37.809600px;}
.fs1_c00325{font-size:46.562400px;}
.fs3_c00325{font-size:58.466400px;}
.fs0_c00325{font-size:70.020000px;}
.y0_c00325{bottom:0.000000px;}
.y2_c00325{bottom:109.740968px;}
.y1_c00325{bottom:129.810450px;}
.y1b_c00325{bottom:153.120600px;}
.y1a_c00325{bottom:167.250107px;}
.y19_c00325{bottom:188.940450px;}
.y18_c00325{bottom:203.070107px;}
.y17_c00325{bottom:224.670450px;}
.y16_c00325{bottom:239.430450px;}
.y15_c00325{bottom:272.460450px;}
.y14_c00325{bottom:302.700450px;}
.y13_c00325{bottom:332.850450px;}
.y12_c00325{bottom:363.090450px;}
.y11_c00325{bottom:393.240450px;}
.y10_c00325{bottom:423.480450px;}
.yf_c00325{bottom:453.630450px;}
.ye_c00325{bottom:483.870600px;}
.yd_c00325{bottom:514.020600px;}
.yc_c00325{bottom:544.260450px;}
.yb_c00325{bottom:574.410450px;}
.ya_c00325{bottom:604.650450px;}
.y9_c00325{bottom:631.020450px;}
.y8_c00325{bottom:897.510450px;}
.y7_c00325{bottom:948.000450px;}
.y6_c00325{bottom:998.670450px;}
.y5_c00325{bottom:1029.000450px;}
.y4_c00325{bottom:1079.490450px;}
.y3_c00325{bottom:1109.730450px;}
.h8_c00325{height:39.337949px;}
.h7_c00325{height:39.338549px;}
.h5_c00325{height:39.698549px;}
.h6_c00325{height:54.098549px;}
.h2_c00325{height:62.600889px;}
.h1_c00325{height:62.771836px;}
.h4_c00325{height:63.216299px;}
.h3_c00325{height:73.668786px;}
.h0_c00325{height:1263.000000px;}
.w0_c00325{width:892.500000px;}
.x0_c00325{left:0.000000px;}
.x2_c00325{left:82.710059px;}
.x3_c00325{left:138.960000px;}
.x4_c00325{left:165.240000px;}
.x6_c00325{left:191.520000px;}
.x1_c00325{left:431.730000px;}
.x5_c00325{left:737.729850px;}
@media print{
.v2_c00325{vertical-align:-12.800000pt;}
.v0_c00325{vertical-align:0.000000pt;}
.v1_c00325{vertical-align:28.480000pt;}
.ls15_c00325{letter-spacing:-0.306624pt;}
.ls19_c00325{letter-spacing:-0.135122pt;}
.ls16_c00325{letter-spacing:-0.119531pt;}
.ls11_c00325{letter-spacing:-0.103940pt;}
.ls10_c00325{letter-spacing:-0.067217pt;}
.lsa_c00325{letter-spacing:-0.062240pt;}
.ls7_c00325{letter-spacing:-0.056016pt;}
.ls13_c00325{letter-spacing:-0.046773pt;}
.lsf_c00325{letter-spacing:-0.037344pt;}
.ls1a_c00325{letter-spacing:-0.036379pt;}
.ls14_c00325{letter-spacing:-0.031182pt;}
.lse_c00325{letter-spacing:-0.031120pt;}
.lsd_c00325{letter-spacing:-0.024896pt;}
.ls9_c00325{letter-spacing:-0.018672pt;}
.ls17_c00325{letter-spacing:-0.015591pt;}
.lsc_c00325{letter-spacing:-0.012448pt;}
.lsb_c00325{letter-spacing:-0.006224pt;}
.ls8_c00325{letter-spacing:0.000000pt;}
.ls3_c00325{letter-spacing:0.006224pt;}
.ls2_c00325{letter-spacing:0.018672pt;}
.ls0_c00325{letter-spacing:0.020694pt;}
.ls1_c00325{letter-spacing:0.062240pt;}
.ls4_c00325{letter-spacing:0.072758pt;}
.ls6_c00325{letter-spacing:0.150713pt;}
.ls18_c00325{letter-spacing:0.259851pt;}
.ls12_c00325{letter-spacing:0.285836pt;}
.ls5_c00325{letter-spacing:0.322215pt;}
.ws3_c00325{word-spacing:-51.970133pt;}
.ws0_c00325{word-spacing:-17.240480pt;}
.ws4_c00325{word-spacing:-14.681563pt;}
.ws1_c00325{word-spacing:-11.526781pt;}
.ws2_c00325{word-spacing:-9.242347pt;}
.ws19_c00325{word-spacing:-0.291033pt;}
.ws1e_c00325{word-spacing:-0.140319pt;}
.ws12_c00325{word-spacing:-0.018672pt;}
.ws8_c00325{word-spacing:-0.006224pt;}
.ws5_c00325{word-spacing:0.000000pt;}
.ws9_c00325{word-spacing:0.006224pt;}
.ws1d_c00325{word-spacing:0.041576pt;}
.ws1c_c00325{word-spacing:0.046773pt;}
.ws18_c00325{word-spacing:0.129925pt;}
.ws14_c00325{word-spacing:1.221298pt;}
.ws16_c00325{word-spacing:1.325238pt;}
.ws15_c00325{word-spacing:1.340829pt;}
.ws13_c00325{word-spacing:1.397997pt;}
.ws17_c00325{word-spacing:1.600680pt;}
.ws10_c00325{word-spacing:2.259312pt;}
.wse_c00325{word-spacing:2.576736pt;}
.wsf_c00325{word-spacing:3.547680pt;}
.ws11_c00325{word-spacing:6.049728pt;}
.wsa_c00325{word-spacing:11.520624pt;}
.wsb_c00325{word-spacing:11.526848pt;}
.wsd_c00325{word-spacing:11.850496pt;}
.wsc_c00325{word-spacing:12.466672pt;}
.ws1a_c00325{word-spacing:17.030613pt;}
.ws1b_c00325{word-spacing:17.425586pt;}
.ws6_c00325{word-spacing:36.167664pt;}
.ws7_c00325{word-spacing:38.395856pt;}
._4_c00325{margin-left:-6.573125pt;}
._0_c00325{margin-left:-1.107872pt;}
._1_c00325{width:0.989616pt;}
._3_c00325{width:5.271728pt;}
._2_c00325{width:7.362992pt;}
.fs2_c00325{font-size:33.608533pt;}
.fs1_c00325{font-size:41.388800pt;}
.fs3_c00325{font-size:51.970133pt;}
.fs0_c00325{font-size:62.240000pt;}
.y0_c00325{bottom:0.000000pt;}
.y2_c00325{bottom:97.547527pt;}
.y1_c00325{bottom:115.387067pt;}
.y1b_c00325{bottom:136.107200pt;}
.y1a_c00325{bottom:148.666762pt;}
.y19_c00325{bottom:167.947067pt;}
.y18_c00325{bottom:180.506762pt;}
.y17_c00325{bottom:199.707067pt;}
.y16_c00325{bottom:212.827067pt;}
.y15_c00325{bottom:242.187067pt;}
.y14_c00325{bottom:269.067067pt;}
.y13_c00325{bottom:295.867067pt;}
.y12_c00325{bottom:322.747067pt;}
.y11_c00325{bottom:349.547067pt;}
.y10_c00325{bottom:376.427067pt;}
.yf_c00325{bottom:403.227067pt;}
.ye_c00325{bottom:430.107200pt;}
.yd_c00325{bottom:456.907200pt;}
.yc_c00325{bottom:483.787067pt;}
.yb_c00325{bottom:510.587067pt;}
.ya_c00325{bottom:537.467067pt;}
.y9_c00325{bottom:560.907067pt;}
.y8_c00325{bottom:797.787067pt;}
.y7_c00325{bottom:842.667067pt;}
.y6_c00325{bottom:887.707067pt;}
.y5_c00325{bottom:914.667067pt;}
.y4_c00325{bottom:959.547067pt;}
.y3_c00325{bottom:986.427067pt;}
.h8_c00325{height:34.967066pt;}
.h7_c00325{height:34.967599pt;}
.h5_c00325{height:35.287599pt;}
.h6_c00325{height:48.087599pt;}
.h2_c00325{height:55.645234pt;}
.h1_c00325{height:55.797187pt;}
.h4_c00325{height:56.192266pt;}
.h3_c00325{height:65.483366pt;}
.h0_c00325{height:1122.666667pt;}
.w0_c00325{width:793.333333pt;}
.x0_c00325{left:0.000000pt;}
.x2_c00325{left:73.520052pt;}
.x3_c00325{left:123.520000pt;}
.x4_c00325{left:146.880000pt;}
.x6_c00325{left:170.240000pt;}
.x1_c00325{left:383.760000pt;}
.x5_c00325{left:655.759867pt;}
}





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

.ir_c00326:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00326{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00326;src:url('chunks/assets/font_04ec4ffc01aaf1230890684f.woff2')format("woff");}.ff1_c00326{font-family:ff1_c00326;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00326;src:url('chunks/assets/font_33c449ca42b1851ab728cf65.woff2')format("woff");}.ff2_c00326{font-family:ff2_c00326;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00326;src:url('chunks/assets/font_eba1e33590e4053ff216252b.woff2')format("woff");}.ff3_c00326{font-family:ff3_c00326;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00326;src:url('chunks/assets/font_a12926c207225281a226b5d2.woff2')format("woff");}.ff4_c00326{font-family:ff4_c00326;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00326{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00326{vertical-align:0.000000px;}
.v1_c00326{vertical-align:32.040000px;}
.ls5_c00326{letter-spacing:-0.063018px;}
.lsa_c00326{letter-spacing:-0.056016px;}
.ls9_c00326{letter-spacing:-0.035010px;}
.ls7_c00326{letter-spacing:-0.028008px;}
.lsc_c00326{letter-spacing:-0.021006px;}
.lsb_c00326{letter-spacing:-0.014004px;}
.ls8_c00326{letter-spacing:-0.007002px;}
.ls6_c00326{letter-spacing:0.000000px;}
.ls1_c00326{letter-spacing:0.021006px;}
.ls2_c00326{letter-spacing:0.023281px;}
.ls0_c00326{letter-spacing:0.035010px;}
.ls3_c00326{letter-spacing:0.042012px;}
.ls4_c00326{letter-spacing:0.063018px;}
.sc__c00326{text-shadow:none;}
.sc0_c00326{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00326{-webkit-text-stroke:0px transparent;}
.sc0_c00326{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00326{word-spacing:-19.528578px;}
.ws0_c00326{word-spacing:-12.967628px;}
.ws12_c00326{word-spacing:-0.056016px;}
.ws2_c00326{word-spacing:0.000000px;}
.ws8_c00326{word-spacing:0.343098px;}
.ws15_c00326{word-spacing:0.357102px;}
.ws11_c00326{word-spacing:0.364104px;}
.wsa_c00326{word-spacing:2.513718px;}
.ws9_c00326{word-spacing:2.534724px;}
.ws3_c00326{word-spacing:4.992426px;}
.ws14_c00326{word-spacing:5.048442px;}
.ws4_c00326{word-spacing:5.055444px;}
.ws6_c00326{word-spacing:5.391540px;}
.wsc_c00326{word-spacing:7.583166px;}
.ws5_c00326{word-spacing:7.912260px;}
.wsb_c00326{word-spacing:11.154186px;}
.ws16_c00326{word-spacing:11.518290px;}
.ws7_c00326{word-spacing:16.573734px;}
.wsf_c00326{word-spacing:19.423548px;}
.ws10_c00326{word-spacing:19.437552px;}
.wse_c00326{word-spacing:20.844954px;}
.wsd_c00326{word-spacing:20.921976px;}
.ws13_c00326{word-spacing:28.092024px;}
._1_c00326{margin-left:-1.015290px;}
._0_c00326{width:1.225350px;}
._2_c00326{width:8.283366px;}
.fc0_c00326{color:rgb(0,0,0);}
.fs1_c00326{font-size:46.562400px;}
.fs0_c00326{font-size:70.020000px;}
.y0_c00326{bottom:0.000000px;}
.y2_c00326{bottom:109.740968px;}
.y1_c00326{bottom:129.810450px;}
.y1a_c00326{bottom:184.980450px;}
.y19_c00326{bottom:215.130450px;}
.y18_c00326{bottom:245.370600px;}
.y17_c00326{bottom:275.520450px;}
.y16_c00326{bottom:305.760450px;}
.y15_c00326{bottom:335.910450px;}
.y14_c00326{bottom:366.060450px;}
.y13_c00326{bottom:396.210600px;}
.y12_c00326{bottom:422.670450px;}
.y11_c00326{bottom:686.910450px;}
.y10_c00326{bottom:717.240450px;}
.yf_c00326{bottom:747.390450px;}
.ye_c00326{bottom:777.630450px;}
.yd_c00326{bottom:807.780450px;}
.yc_c00326{bottom:838.020450px;}
.yb_c00326{bottom:868.170450px;}
.ya_c00326{bottom:898.410450px;}
.y9_c00326{bottom:928.560450px;}
.y8_c00326{bottom:958.800450px;}
.y7_c00326{bottom:988.950450px;}
.y6_c00326{bottom:1019.190450px;}
.y5_c00326{bottom:1049.340450px;}
.y4_c00326{bottom:1079.580450px;}
.y3_c00326{bottom:1109.730450px;}
.h2_c00326{height:62.600889px;}
.h1_c00326{height:62.771836px;}
.h4_c00326{height:63.216299px;}
.h5_c00326{height:73.028672px;}
.h3_c00326{height:73.668786px;}
.h0_c00326{height:1263.000000px;}
.w0_c00326{width:892.500000px;}
.x0_c00326{left:0.000000px;}
.x2_c00326{left:82.710059px;}
.x3_c00326{left:138.960000px;}
.x4_c00326{left:165.240000px;}
.x5_c00326{left:191.520000px;}
.x1_c00326{left:431.730000px;}
.x6_c00326{left:720.360000px;}
@media print{
.v0_c00326{vertical-align:0.000000pt;}
.v1_c00326{vertical-align:28.480000pt;}
.ls5_c00326{letter-spacing:-0.056016pt;}
.lsa_c00326{letter-spacing:-0.049792pt;}
.ls9_c00326{letter-spacing:-0.031120pt;}
.ls7_c00326{letter-spacing:-0.024896pt;}
.lsc_c00326{letter-spacing:-0.018672pt;}
.lsb_c00326{letter-spacing:-0.012448pt;}
.ls8_c00326{letter-spacing:-0.006224pt;}
.ls6_c00326{letter-spacing:0.000000pt;}
.ls1_c00326{letter-spacing:0.018672pt;}
.ls2_c00326{letter-spacing:0.020694pt;}
.ls0_c00326{letter-spacing:0.031120pt;}
.ls3_c00326{letter-spacing:0.037344pt;}
.ls4_c00326{letter-spacing:0.056016pt;}
.ws1_c00326{word-spacing:-17.358736pt;}
.ws0_c00326{word-spacing:-11.526781pt;}
.ws12_c00326{word-spacing:-0.049792pt;}
.ws2_c00326{word-spacing:0.000000pt;}
.ws8_c00326{word-spacing:0.304976pt;}
.ws15_c00326{word-spacing:0.317424pt;}
.ws11_c00326{word-spacing:0.323648pt;}
.wsa_c00326{word-spacing:2.234416pt;}
.ws9_c00326{word-spacing:2.253088pt;}
.ws3_c00326{word-spacing:4.437712pt;}
.ws14_c00326{word-spacing:4.487504pt;}
.ws4_c00326{word-spacing:4.493728pt;}
.ws6_c00326{word-spacing:4.792480pt;}
.wsc_c00326{word-spacing:6.740592pt;}
.ws5_c00326{word-spacing:7.033120pt;}
.wsb_c00326{word-spacing:9.914832pt;}
.ws16_c00326{word-spacing:10.238480pt;}
.ws7_c00326{word-spacing:14.732208pt;}
.wsf_c00326{word-spacing:17.265376pt;}
.ws10_c00326{word-spacing:17.277824pt;}
.wse_c00326{word-spacing:18.528848pt;}
.wsd_c00326{word-spacing:18.597312pt;}
.ws13_c00326{word-spacing:24.970688pt;}
._1_c00326{margin-left:-0.902480pt;}
._0_c00326{width:1.089200pt;}
._2_c00326{width:7.362992pt;}
.fs1_c00326{font-size:41.388800pt;}
.fs0_c00326{font-size:62.240000pt;}
.y0_c00326{bottom:0.000000pt;}
.y2_c00326{bottom:97.547527pt;}
.y1_c00326{bottom:115.387067pt;}
.y1a_c00326{bottom:164.427067pt;}
.y19_c00326{bottom:191.227067pt;}
.y18_c00326{bottom:218.107200pt;}
.y17_c00326{bottom:244.907067pt;}
.y16_c00326{bottom:271.787067pt;}
.y15_c00326{bottom:298.587067pt;}
.y14_c00326{bottom:325.387067pt;}
.y13_c00326{bottom:352.187200pt;}
.y12_c00326{bottom:375.707067pt;}
.y11_c00326{bottom:610.587067pt;}
.y10_c00326{bottom:637.547067pt;}
.yf_c00326{bottom:664.347067pt;}
.ye_c00326{bottom:691.227067pt;}
.yd_c00326{bottom:718.027067pt;}
.yc_c00326{bottom:744.907067pt;}
.yb_c00326{bottom:771.707067pt;}
.ya_c00326{bottom:798.587067pt;}
.y9_c00326{bottom:825.387067pt;}
.y8_c00326{bottom:852.267067pt;}
.y7_c00326{bottom:879.067067pt;}
.y6_c00326{bottom:905.947067pt;}
.y5_c00326{bottom:932.747067pt;}
.y4_c00326{bottom:959.627067pt;}
.y3_c00326{bottom:986.427067pt;}
.h2_c00326{height:55.645234pt;}
.h1_c00326{height:55.797187pt;}
.h4_c00326{height:56.192266pt;}
.h5_c00326{height:64.914375pt;}
.h3_c00326{height:65.483366pt;}
.h0_c00326{height:1122.666667pt;}
.w0_c00326{width:793.333333pt;}
.x0_c00326{left:0.000000pt;}
.x2_c00326{left:73.520052pt;}
.x3_c00326{left:123.520000pt;}
.x4_c00326{left:146.880000pt;}
.x5_c00326{left:170.240000pt;}
.x1_c00326{left:383.760000pt;}
.x6_c00326{left:640.320000pt;}
}





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

.ir_c00327:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00327{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00327;src:url('chunks/assets/font_bf799b9259167c561c69ecce.woff2')format("woff");}.ff1_c00327{font-family:ff1_c00327;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00327;src:url('chunks/assets/font_d7be1d32ea2a3515ad03dee9.woff2')format("woff");}.ff2_c00327{font-family:ff2_c00327;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00327;src:url('chunks/assets/font_81d713c0716a2b357e1555b0.woff2')format("woff");}.ff3_c00327{font-family:ff3_c00327;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00327{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00327{vertical-align:0.000000px;}
.v1_c00327{vertical-align:32.040000px;}
.lsc_c00327{letter-spacing:-0.335249px;}
.ls2_c00327{letter-spacing:-0.063018px;}
.ls5_c00327{letter-spacing:-0.056016px;}
.ls8_c00327{letter-spacing:-0.042012px;}
.ls4_c00327{letter-spacing:-0.035010px;}
.ls9_c00327{letter-spacing:-0.028008px;}
.lsb_c00327{letter-spacing:-0.021006px;}
.ls7_c00327{letter-spacing:-0.014004px;}
.lsa_c00327{letter-spacing:-0.007002px;}
.ls3_c00327{letter-spacing:0.000000px;}
.ls1_c00327{letter-spacing:0.007002px;}
.ls0_c00327{letter-spacing:0.042012px;}
.ls6_c00327{letter-spacing:0.210060px;}
.sc__c00327{text-shadow:none;}
.sc0_c00327{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00327{-webkit-text-stroke:0px transparent;}
.sc0_c00327{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00327{word-spacing:-19.675620px;}
.ws1_c00327{word-spacing:-12.609098px;}
.ws4_c00327{word-spacing:-0.056016px;}
.ws2_c00327{word-spacing:0.000000px;}
.ws7_c00327{word-spacing:0.028008px;}
.ws11_c00327{word-spacing:0.035010px;}
.ws8_c00327{word-spacing:0.371106px;}
.wsd_c00327{word-spacing:2.534724px;}
.ws10_c00327{word-spacing:3.269934px;}
.wsb_c00327{word-spacing:7.555158px;}
.wsa_c00327{word-spacing:7.562160px;}
.wsc_c00327{word-spacing:8.311374px;}
.ws6_c00327{word-spacing:8.997570px;}
.ws9_c00327{word-spacing:10.460988px;}
.wsf_c00327{word-spacing:11.525292px;}
.ws5_c00327{word-spacing:20.858958px;}
.ws3_c00327{word-spacing:23.421690px;}
.wse_c00327{word-spacing:24.822090px;}
._3_c00327{margin-left:-20.382822px;}
._1_c00327{margin-left:-1.106316px;}
._2_c00327{width:1.498428px;}
._0_c00327{width:8.283366px;}
.fc0_c00327{color:rgb(0,0,0);}
.fs1_c00327{font-size:46.562400px;}
.fs0_c00327{font-size:70.020000px;}
.y0_c00327{bottom:0.000000px;}
.y2_c00327{bottom:109.740968px;}
.y1_c00327{bottom:129.810450px;}
.y1a_c00327{bottom:187.140450px;}
.y19_c00327{bottom:217.380450px;}
.y18_c00327{bottom:247.530450px;}
.y17_c00327{bottom:277.770450px;}
.y16_c00327{bottom:307.920450px;}
.y15_c00327{bottom:338.160450px;}
.y14_c00327{bottom:368.310450px;}
.y13_c00327{bottom:398.550450px;}
.y12_c00327{bottom:428.700600px;}
.y11_c00327{bottom:458.940600px;}
.y10_c00327{bottom:489.090600px;}
.yf_c00327{bottom:519.330450px;}
.ye_c00327{bottom:549.390450px;}
.yd_c00327{bottom:579.630450px;}
.yc_c00327{bottom:609.780450px;}
.yb_c00327{bottom:640.020450px;}
.ya_c00327{bottom:670.170450px;}
.y9_c00327{bottom:700.410450px;}
.y8_c00327{bottom:726.870450px;}
.y7_c00327{bottom:988.950450px;}
.y6_c00327{bottom:1019.190450px;}
.y5_c00327{bottom:1049.340450px;}
.y4_c00327{bottom:1079.580450px;}
.y3_c00327{bottom:1109.730450px;}
.h3_c00327{height:62.600889px;}
.h1_c00327{height:62.771836px;}
.h2_c00327{height:63.216299px;}
.h4_c00327{height:73.668786px;}
.h0_c00327{height:1263.000000px;}
.w0_c00327{width:892.500000px;}
.x0_c00327{left:0.000000px;}
.x2_c00327{left:82.710059px;}
.x3_c00327{left:138.960000px;}
.x5_c00327{left:165.240000px;}
.x4_c00327{left:191.520000px;}
.x1_c00327{left:431.730000px;}
.x6_c00327{left:735.570000px;}
@media print{
.v0_c00327{vertical-align:0.000000pt;}
.v1_c00327{vertical-align:28.480000pt;}
.lsc_c00327{letter-spacing:-0.297999pt;}
.ls2_c00327{letter-spacing:-0.056016pt;}
.ls5_c00327{letter-spacing:-0.049792pt;}
.ls8_c00327{letter-spacing:-0.037344pt;}
.ls4_c00327{letter-spacing:-0.031120pt;}
.ls9_c00327{letter-spacing:-0.024896pt;}
.lsb_c00327{letter-spacing:-0.018672pt;}
.ls7_c00327{letter-spacing:-0.012448pt;}
.lsa_c00327{letter-spacing:-0.006224pt;}
.ls3_c00327{letter-spacing:0.000000pt;}
.ls1_c00327{letter-spacing:0.006224pt;}
.ls0_c00327{letter-spacing:0.037344pt;}
.ls6_c00327{letter-spacing:0.186720pt;}
.ws0_c00327{word-spacing:-17.489440pt;}
.ws1_c00327{word-spacing:-11.208087pt;}
.ws4_c00327{word-spacing:-0.049792pt;}
.ws2_c00327{word-spacing:0.000000pt;}
.ws7_c00327{word-spacing:0.024896pt;}
.ws11_c00327{word-spacing:0.031120pt;}
.ws8_c00327{word-spacing:0.329872pt;}
.wsd_c00327{word-spacing:2.253088pt;}
.ws10_c00327{word-spacing:2.906608pt;}
.wsb_c00327{word-spacing:6.715696pt;}
.wsa_c00327{word-spacing:6.721920pt;}
.wsc_c00327{word-spacing:7.387888pt;}
.ws6_c00327{word-spacing:7.997840pt;}
.ws9_c00327{word-spacing:9.298656pt;}
.wsf_c00327{word-spacing:10.244704pt;}
.ws5_c00327{word-spacing:18.541296pt;}
.ws3_c00327{word-spacing:20.819280pt;}
.wse_c00327{word-spacing:22.064080pt;}
._3_c00327{margin-left:-18.118064pt;}
._1_c00327{margin-left:-0.983392pt;}
._2_c00327{width:1.331936pt;}
._0_c00327{width:7.362992pt;}
.fs1_c00327{font-size:41.388800pt;}
.fs0_c00327{font-size:62.240000pt;}
.y0_c00327{bottom:0.000000pt;}
.y2_c00327{bottom:97.547527pt;}
.y1_c00327{bottom:115.387067pt;}
.y1a_c00327{bottom:166.347067pt;}
.y19_c00327{bottom:193.227067pt;}
.y18_c00327{bottom:220.027067pt;}
.y17_c00327{bottom:246.907067pt;}
.y16_c00327{bottom:273.707067pt;}
.y15_c00327{bottom:300.587067pt;}
.y14_c00327{bottom:327.387067pt;}
.y13_c00327{bottom:354.267067pt;}
.y12_c00327{bottom:381.067200pt;}
.y11_c00327{bottom:407.947200pt;}
.y10_c00327{bottom:434.747200pt;}
.yf_c00327{bottom:461.627067pt;}
.ye_c00327{bottom:488.347067pt;}
.yd_c00327{bottom:515.227067pt;}
.yc_c00327{bottom:542.027067pt;}
.yb_c00327{bottom:568.907067pt;}
.ya_c00327{bottom:595.707067pt;}
.y9_c00327{bottom:622.587067pt;}
.y8_c00327{bottom:646.107067pt;}
.y7_c00327{bottom:879.067067pt;}
.y6_c00327{bottom:905.947067pt;}
.y5_c00327{bottom:932.747067pt;}
.y4_c00327{bottom:959.627067pt;}
.y3_c00327{bottom:986.427067pt;}
.h3_c00327{height:55.645234pt;}
.h1_c00327{height:55.797187pt;}
.h2_c00327{height:56.192266pt;}
.h4_c00327{height:65.483366pt;}
.h0_c00327{height:1122.666667pt;}
.w0_c00327{width:793.333333pt;}
.x0_c00327{left:0.000000pt;}
.x2_c00327{left:73.520052pt;}
.x3_c00327{left:123.520000pt;}
.x5_c00327{left:146.880000pt;}
.x4_c00327{left:170.240000pt;}
.x1_c00327{left:383.760000pt;}
.x6_c00327{left:653.840000pt;}
}





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

.ir_c00328:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00328{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00328;src:url('chunks/assets/font_b344ee5a27ebab4eebb3646e.woff2')format("woff");}.ff1_c00328{font-family:ff1_c00328;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00328;src:url('chunks/assets/font_45a55127408c96f3ec0d4d75.woff2')format("woff");}.ff2_c00328{font-family:ff2_c00328;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00328;src:url('chunks/assets/font_78cf8510a43a9c416470fd62.woff2')format("woff");}.ff3_c00328{font-family:ff3_c00328;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00328;src:url('chunks/assets/font_a12926c207225281a226b5d2.woff2')format("woff");}.ff4_c00328{font-family:ff4_c00328;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00328{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00328{vertical-align:0.000000px;}
.ls2_c00328{letter-spacing:-0.063018px;}
.lsc_c00328{letter-spacing:-0.056016px;}
.ls5_c00328{letter-spacing:-0.049014px;}
.lsa_c00328{letter-spacing:-0.042012px;}
.ls7_c00328{letter-spacing:-0.035010px;}
.ls4_c00328{letter-spacing:-0.028008px;}
.lsb_c00328{letter-spacing:-0.021006px;}
.ls9_c00328{letter-spacing:-0.014004px;}
.ls6_c00328{letter-spacing:-0.007002px;}
.ls3_c00328{letter-spacing:0.000000px;}
.ls1_c00328{letter-spacing:0.035010px;}
.ls0_c00328{letter-spacing:0.070020px;}
.ls8_c00328{letter-spacing:0.315090px;}
.lsd_c00328{letter-spacing:0.343098px;}
.sc__c00328{text-shadow:none;}
.sc0_c00328{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00328{-webkit-text-stroke:0px transparent;}
.sc0_c00328{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00328{word-spacing:0.000000px;}
.wsc_c00328{word-spacing:0.007002px;}
.ws1_c00328{word-spacing:0.014004px;}
.wsd_c00328{word-spacing:0.035010px;}
.ws7_c00328{word-spacing:0.308088px;}
.wsb_c00328{word-spacing:3.606030px;}
.ws5_c00328{word-spacing:3.620034px;}
.wsa_c00328{word-spacing:3.641040px;}
.ws9_c00328{word-spacing:14.767218px;}
.ws8_c00328{word-spacing:16.230636px;}
.ws2_c00328{word-spacing:17.266932px;}
.ws6_c00328{word-spacing:23.036580px;}
.ws4_c00328{word-spacing:47.515572px;}
.ws3_c00328{word-spacing:47.914686px;}
._4_c00328{margin-left:-1.449414px;}
._2_c00328{width:1.309374px;}
._3_c00328{width:3.900114px;}
._0_c00328{width:11.882394px;}
._1_c00328{width:16.244640px;}
.fc0_c00328{color:rgb(0,0,0);}
.fs0_c00328{font-size:70.020000px;}
.y0_c00328{bottom:0.000000px;}
.y2_c00328{bottom:109.740968px;}
.y1_c00328{bottom:129.810450px;}
.y1f_c00328{bottom:161.488443px;}
.y1e_c00328{bottom:181.648952px;}
.y1d_c00328{bottom:201.809460px;}
.y1c_c00328{bottom:221.878943px;}
.y1b_c00328{bottom:242.039451px;}
.y1a_c00328{bottom:262.199960px;}
.y19_c00328{bottom:282.269442px;}
.y18_c00328{bottom:302.429951px;}
.y17_c00328{bottom:322.590459px;}
.y16_c00328{bottom:342.659942px;}
.y15_c00328{bottom:362.820450px;}
.y14_c00328{bottom:383.700450px;}
.y13_c00328{bottom:413.940450px;}
.y12_c00328{bottom:444.090600px;}
.y11_c00328{bottom:474.330450px;}
.y10_c00328{bottom:504.480450px;}
.yf_c00328{bottom:534.720450px;}
.ye_c00328{bottom:564.870450px;}
.yd_c00328{bottom:595.110450px;}
.yc_c00328{bottom:625.260450px;}
.yb_c00328{bottom:655.500450px;}
.ya_c00328{bottom:685.740450px;}
.y9_c00328{bottom:715.890450px;}
.y8_c00328{bottom:746.130450px;}
.y7_c00328{bottom:776.280450px;}
.y6_c00328{bottom:802.650450px;}
.y5_c00328{bottom:1049.340450px;}
.y4_c00328{bottom:1079.580450px;}
.y3_c00328{bottom:1109.730450px;}
.h1_c00328{height:62.771836px;}
.h2_c00328{height:63.216299px;}
.h3_c00328{height:73.028672px;}
.h0_c00328{height:1263.000000px;}
.w0_c00328{width:892.500000px;}
.x0_c00328{left:0.000000px;}
.x2_c00328{left:82.710059px;}
.x3_c00328{left:138.960000px;}
.x4_c00328{left:165.240000px;}
.x6_c00328{left:191.520000px;}
.x7_c00328{left:342.270000px;}
.x1_c00328{left:431.730000px;}
.x5_c00328{left:739.440000px;}
@media print{
.v0_c00328{vertical-align:0.000000pt;}
.ls2_c00328{letter-spacing:-0.056016pt;}
.lsc_c00328{letter-spacing:-0.049792pt;}
.ls5_c00328{letter-spacing:-0.043568pt;}
.lsa_c00328{letter-spacing:-0.037344pt;}
.ls7_c00328{letter-spacing:-0.031120pt;}
.ls4_c00328{letter-spacing:-0.024896pt;}
.lsb_c00328{letter-spacing:-0.018672pt;}
.ls9_c00328{letter-spacing:-0.012448pt;}
.ls6_c00328{letter-spacing:-0.006224pt;}
.ls3_c00328{letter-spacing:0.000000pt;}
.ls1_c00328{letter-spacing:0.031120pt;}
.ls0_c00328{letter-spacing:0.062240pt;}
.ls8_c00328{letter-spacing:0.280080pt;}
.lsd_c00328{letter-spacing:0.304976pt;}
.ws0_c00328{word-spacing:0.000000pt;}
.wsc_c00328{word-spacing:0.006224pt;}
.ws1_c00328{word-spacing:0.012448pt;}
.wsd_c00328{word-spacing:0.031120pt;}
.ws7_c00328{word-spacing:0.273856pt;}
.wsb_c00328{word-spacing:3.205360pt;}
.ws5_c00328{word-spacing:3.217808pt;}
.wsa_c00328{word-spacing:3.236480pt;}
.ws9_c00328{word-spacing:13.126416pt;}
.ws8_c00328{word-spacing:14.427232pt;}
.ws2_c00328{word-spacing:15.348384pt;}
.ws6_c00328{word-spacing:20.476960pt;}
.ws4_c00328{word-spacing:42.236064pt;}
.ws3_c00328{word-spacing:42.590832pt;}
._4_c00328{margin-left:-1.288368pt;}
._2_c00328{width:1.163888pt;}
._3_c00328{width:3.466768pt;}
._0_c00328{width:10.562128pt;}
._1_c00328{width:14.439680pt;}
.fs0_c00328{font-size:62.240000pt;}
.y0_c00328{bottom:0.000000pt;}
.y2_c00328{bottom:97.547527pt;}
.y1_c00328{bottom:115.387067pt;}
.y1f_c00328{bottom:143.545283pt;}
.y1e_c00328{bottom:161.465735pt;}
.y1d_c00328{bottom:179.386187pt;}
.y1c_c00328{bottom:197.225727pt;}
.y1b_c00328{bottom:215.146179pt;}
.y1a_c00328{bottom:233.066631pt;}
.y19_c00328{bottom:250.906171pt;}
.y18_c00328{bottom:268.826623pt;}
.y17_c00328{bottom:286.747075pt;}
.y16_c00328{bottom:304.586615pt;}
.y15_c00328{bottom:322.507067pt;}
.y14_c00328{bottom:341.067067pt;}
.y13_c00328{bottom:367.947067pt;}
.y12_c00328{bottom:394.747200pt;}
.y11_c00328{bottom:421.627067pt;}
.y10_c00328{bottom:448.427067pt;}
.yf_c00328{bottom:475.307067pt;}
.ye_c00328{bottom:502.107067pt;}
.yd_c00328{bottom:528.987067pt;}
.yc_c00328{bottom:555.787067pt;}
.yb_c00328{bottom:582.667067pt;}
.ya_c00328{bottom:609.547067pt;}
.y9_c00328{bottom:636.347067pt;}
.y8_c00328{bottom:663.227067pt;}
.y7_c00328{bottom:690.027067pt;}
.y6_c00328{bottom:713.467067pt;}
.y5_c00328{bottom:932.747067pt;}
.y4_c00328{bottom:959.627067pt;}
.y3_c00328{bottom:986.427067pt;}
.h1_c00328{height:55.797187pt;}
.h2_c00328{height:56.192266pt;}
.h3_c00328{height:64.914375pt;}
.h0_c00328{height:1122.666667pt;}
.w0_c00328{width:793.333333pt;}
.x0_c00328{left:0.000000pt;}
.x2_c00328{left:73.520052pt;}
.x3_c00328{left:123.520000pt;}
.x4_c00328{left:146.880000pt;}
.x6_c00328{left:170.240000pt;}
.x7_c00328{left:304.240000pt;}
.x1_c00328{left:383.760000pt;}
.x5_c00328{left:657.280000pt;}
}





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

.ir_c00329:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00329{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00329;src:url('chunks/assets/font_d3371e0cb8983f1638bc701e.woff2')format("woff");}.ff1_c00329{font-family:ff1_c00329;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00329;src:url('chunks/assets/font_d78701d1ddffdb486b07bd2d.woff2')format("woff");}.ff2_c00329{font-family:ff2_c00329;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00329;src:url('chunks/assets/font_c4a588cb26b9665dcdb8399e.woff2')format("woff");}.ff3_c00329{font-family:ff3_c00329;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00329;src:url('chunks/assets/font_450e5cd619b6eb3370cef5e4.woff2')format("woff");}.ff4_c00329{font-family:ff4_c00329;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00329;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff5_c00329{font-family:ff5_c00329;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00329;src:url('chunks/assets/font_10a1d77191354ee81734ddce.woff2')format("woff");}.ff6_c00329{font-family:ff6_c00329;line-height:1.133301;font-style:normal;font-weight: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_c00329;src:url('chunks/assets/font_2f2d138ff74aef5136b3b86e.woff2')format("woff");}.ff7_c00329{font-family:ff7_c00329;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00329{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00329{vertical-align:-32.040000px;}
.v3_c00329{vertical-align:-14.760000px;}
.v0_c00329{vertical-align:0.000000px;}
.v1_c00329{vertical-align:32.040000px;}
.ls16_c00329{letter-spacing:-0.427122px;}
.ls17_c00329{letter-spacing:-0.075619px;}
.lsc_c00329{letter-spacing:-0.063018px;}
.ls1a_c00329{letter-spacing:-0.058466px;}
.ls14_c00329{letter-spacing:-0.056016px;}
.ls15_c00329{letter-spacing:-0.049014px;}
.ls18_c00329{letter-spacing:-0.046773px;}
.ls10_c00329{letter-spacing:-0.042012px;}
.ls13_c00329{letter-spacing:-0.035010px;}
.ls1c_c00329{letter-spacing:-0.029233px;}
.lsf_c00329{letter-spacing:-0.028008px;}
.ls12_c00329{letter-spacing:-0.021006px;}
.ls11_c00329{letter-spacing:-0.014004px;}
.lse_c00329{letter-spacing:-0.007002px;}
.lsd_c00329{letter-spacing:0.000000px;}
.ls4_c00329{letter-spacing:0.007002px;}
.ls1f_c00329{letter-spacing:0.011693px;}
.ls2_c00329{letter-spacing:0.014004px;}
.ls6_c00329{letter-spacing:0.021006px;}
.ls9_c00329{letter-spacing:0.023281px;}
.ls20_c00329{letter-spacing:0.023387px;}
.ls7_c00329{letter-spacing:0.028008px;}
.ls3_c00329{letter-spacing:0.035010px;}
.ls1_c00329{letter-spacing:0.056016px;}
.ls5_c00329{letter-spacing:0.063018px;}
.lsa_c00329{letter-spacing:0.064313px;}
.ls8_c00329{letter-spacing:0.091026px;}
.ls1d_c00329{letter-spacing:0.245559px;}
.ls1b_c00329{letter-spacing:0.263099px;}
.ls19_c00329{letter-spacing:0.344952px;}
.lsb_c00329{letter-spacing:0.362492px;}
.ls1e_c00329{letter-spacing:0.485271px;}
.ls0_c00329{letter-spacing:80.614026px;}
.sc__c00329{text-shadow:none;}
.sc0_c00329{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00329{-webkit-text-stroke:0px transparent;}
.sc0_c00329{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00329{word-spacing:-58.466400px;}
.ws3_c00329{word-spacing:-16.195193px;}
.ws0_c00329{word-spacing:-12.967628px;}
.ws1_c00329{word-spacing:-10.397640px;}
.ws32_c00329{word-spacing:-0.399114px;}
.ws34_c00329{word-spacing:-0.105030px;}
.ws9_c00329{word-spacing:-0.028008px;}
.ws1b_c00329{word-spacing:-0.021006px;}
.ws22_c00329{word-spacing:-0.014004px;}
.ws40_c00329{word-spacing:-0.011693px;}
.ws4_c00329{word-spacing:0.000000px;}
.ws3f_c00329{word-spacing:0.011693px;}
.ws23_c00329{word-spacing:0.021006px;}
.wsa_c00329{word-spacing:0.028008px;}
.ws35_c00329{word-spacing:0.058466px;}
.wse_c00329{word-spacing:0.364104px;}
.ws2d_c00329{word-spacing:0.413118px;}
.ws16_c00329{word-spacing:3.248928px;}
.wsc_c00329{word-spacing:4.271220px;}
.ws27_c00329{word-spacing:4.362246px;}
.ws39_c00329{word-spacing:5.507535px;}
.ws3c_c00329{word-spacing:5.776480px;}
.ws1a_c00329{word-spacing:5.783652px;}
.ws37_c00329{word-spacing:5.788174px;}
.ws36_c00329{word-spacing:6.068812px;}
.ws3a_c00329{word-spacing:6.162359px;}
.ws28_c00329{word-spacing:6.497856px;}
.ws3b_c00329{word-spacing:6.524850px;}
.ws38_c00329{word-spacing:6.910728px;}
.wsd_c00329{word-spacing:7.548156px;}
.ws30_c00329{word-spacing:7.912260px;}
.ws2b_c00329{word-spacing:10.425978px;}
.ws3e_c00329{word-spacing:11.406795px;}
.ws3d_c00329{word-spacing:11.646507px;}
.ws14_c00329{word-spacing:12.253500px;}
.ws8_c00329{word-spacing:14.774220px;}
.ws10_c00329{word-spacing:19.087452px;}
.ws13_c00329{word-spacing:20.186766px;}
.ws2c_c00329{word-spacing:20.886966px;}
.ws7_c00329{word-spacing:23.750784px;}
.wsb_c00329{word-spacing:24.121890px;}
.ws20_c00329{word-spacing:24.436980px;}
.ws2e_c00329{word-spacing:30.633750px;}
.ws18_c00329{word-spacing:30.948840px;}
.ws17_c00329{word-spacing:32.027148px;}
.ws1d_c00329{word-spacing:36.641466px;}
.ws1e_c00329{word-spacing:37.047582px;}
.ws12_c00329{word-spacing:37.446696px;}
.ws19_c00329{word-spacing:45.702054px;}
.ws2f_c00329{word-spacing:46.052154px;}
.ws2a_c00329{word-spacing:52.592022px;}
.ws21_c00329{word-spacing:52.949124px;}
.ws11_c00329{word-spacing:53.642322px;}
.ws31_c00329{word-spacing:58.634748px;}
.ws24_c00329{word-spacing:63.003996px;}
.ws15_c00329{word-spacing:68.745636px;}
.ws33_c00329{word-spacing:74.116170px;}
.ws29_c00329{word-spacing:75.607596px;}
.wsf_c00329{word-spacing:78.849522px;}
.ws6_c00329{word-spacing:80.572014px;}
.ws5_c00329{word-spacing:80.635032px;}
.ws1c_c00329{word-spacing:89.268498px;}
.ws25_c00329{word-spacing:89.625600px;}
.ws26_c00329{word-spacing:98.609166px;}
.ws1f_c00329{word-spacing:127.107306px;}
._3_c00329{margin-left:-2.709774px;}
._1_c00329{margin-left:-1.036296px;}
._0_c00329{width:1.134324px;}
._2_c00329{width:5.930694px;}
.fc0_c00329{color:rgb(0,0,0);}
.fs2_c00329{font-size:37.809600px;}
.fs1_c00329{font-size:46.562400px;}
.fs3_c00329{font-size:58.466400px;}
.fs0_c00329{font-size:70.020000px;}
.y0_c00329{bottom:0.000000px;}
.y2_c00329{bottom:109.740968px;}
.y1_c00329{bottom:129.810450px;}
.y39_c00329{bottom:149.429548px;}
.y38_c00329{bottom:167.250107px;}
.y37_c00329{bottom:188.940450px;}
.y36_c00329{bottom:206.760450px;}
.y35_c00329{bottom:221.430450px;}
.y1e_c00329{bottom:273.805784px;}
.y34_c00329{bottom:273.810450px;}
.y1d_c00329{bottom:303.956396px;}
.y33_c00329{bottom:303.960600px;}
.y1c_c00329{bottom:334.196283px;}
.y32_c00329{bottom:334.200450px;}
.y1b_c00329{bottom:364.346895px;}
.y31_c00329{bottom:364.350450px;}
.y1a_c00329{bottom:394.586783px;}
.y30_c00329{bottom:394.590600px;}
.y19_c00329{bottom:424.826670px;}
.y2f_c00329{bottom:424.830450px;}
.y18_c00329{bottom:454.977282px;}
.y2e_c00329{bottom:454.980450px;}
.y17_c00329{bottom:485.217170px;}
.y2d_c00329{bottom:485.220450px;}
.y16_c00329{bottom:515.367782px;}
.y2c_c00329{bottom:515.370600px;}
.y15_c00329{bottom:545.607669px;}
.y2b_c00329{bottom:545.610450px;}
.y14_c00329{bottom:575.758281px;}
.y2a_c00329{bottom:575.760450px;}
.y13_c00329{bottom:605.998169px;}
.y29_c00329{bottom:606.000450px;}
.y12_c00329{bottom:636.148781px;}
.y28_c00329{bottom:636.150450px;}
.y11_c00329{bottom:666.388668px;}
.y27_c00329{bottom:666.390450px;}
.y10_c00329{bottom:696.539280px;}
.y26_c00329{bottom:696.540450px;}
.yf_c00329{bottom:726.779168px;}
.y25_c00329{bottom:726.780450px;}
.ye_c00329{bottom:756.929779px;}
.y24_c00329{bottom:756.930450px;}
.yd_c00329{bottom:787.169667px;}
.y23_c00329{bottom:787.170450px;}
.yc_c00329{bottom:817.320279px;}
.y22_c00329{bottom:817.320450px;}
.yb_c00329{bottom:847.560167px;}
.y21_c00329{bottom:847.560450px;}
.ya_c00329{bottom:877.710779px;}
.y20_c00329{bottom:898.050450px;}
.y9_c00329{bottom:928.200450px;}
.y1f_c00329{bottom:928.290600px;}
.y8_c00329{bottom:958.530450px;}
.y7_c00329{bottom:988.680450px;}
.y6_c00329{bottom:1018.920450px;}
.y5_c00329{bottom:1069.410450px;}
.y4_c00329{bottom:1090.290545px;}
.y3_c00329{bottom:1110.451053px;}
.h5_c00329{height:39.338549px;}
.h6_c00329{height:54.098549px;}
.h3_c00329{height:62.600889px;}
.h1_c00329{height:62.771836px;}
.h2_c00329{height:63.216299px;}
.h4_c00329{height:73.668786px;}
.h0_c00329{height:1263.000000px;}
.w0_c00329{width:892.500000px;}
.x0_c00329{left:0.000000px;}
.x2_c00329{left:82.710059px;}
.x3_c00329{left:138.330000px;}
.x1_c00329{left:431.730000px;}
.x4_c00329{left:453.600000px;}
@media print{
.v2_c00329{vertical-align:-28.480000pt;}
.v3_c00329{vertical-align:-13.120000pt;}
.v0_c00329{vertical-align:0.000000pt;}
.v1_c00329{vertical-align:28.480000pt;}
.ls16_c00329{letter-spacing:-0.379664pt;}
.ls17_c00329{letter-spacing:-0.067217pt;}
.lsc_c00329{letter-spacing:-0.056016pt;}
.ls1a_c00329{letter-spacing:-0.051970pt;}
.ls14_c00329{letter-spacing:-0.049792pt;}
.ls15_c00329{letter-spacing:-0.043568pt;}
.ls18_c00329{letter-spacing:-0.041576pt;}
.ls10_c00329{letter-spacing:-0.037344pt;}
.ls13_c00329{letter-spacing:-0.031120pt;}
.ls1c_c00329{letter-spacing:-0.025985pt;}
.lsf_c00329{letter-spacing:-0.024896pt;}
.ls12_c00329{letter-spacing:-0.018672pt;}
.ls11_c00329{letter-spacing:-0.012448pt;}
.lse_c00329{letter-spacing:-0.006224pt;}
.lsd_c00329{letter-spacing:0.000000pt;}
.ls4_c00329{letter-spacing:0.006224pt;}
.ls1f_c00329{letter-spacing:0.010394pt;}
.ls2_c00329{letter-spacing:0.012448pt;}
.ls6_c00329{letter-spacing:0.018672pt;}
.ls9_c00329{letter-spacing:0.020694pt;}
.ls20_c00329{letter-spacing:0.020788pt;}
.ls7_c00329{letter-spacing:0.024896pt;}
.ls3_c00329{letter-spacing:0.031120pt;}
.ls1_c00329{letter-spacing:0.049792pt;}
.ls5_c00329{letter-spacing:0.056016pt;}
.lsa_c00329{letter-spacing:0.057167pt;}
.ls8_c00329{letter-spacing:0.080912pt;}
.ls1d_c00329{letter-spacing:0.218275pt;}
.ls1b_c00329{letter-spacing:0.233866pt;}
.ls19_c00329{letter-spacing:0.306624pt;}
.lsb_c00329{letter-spacing:0.322215pt;}
.ls1e_c00329{letter-spacing:0.431352pt;}
.ls0_c00329{letter-spacing:71.656912pt;}
.ws2_c00329{word-spacing:-51.970133pt;}
.ws3_c00329{word-spacing:-14.395727pt;}
.ws0_c00329{word-spacing:-11.526781pt;}
.ws1_c00329{word-spacing:-9.242347pt;}
.ws32_c00329{word-spacing:-0.354768pt;}
.ws34_c00329{word-spacing:-0.093360pt;}
.ws9_c00329{word-spacing:-0.024896pt;}
.ws1b_c00329{word-spacing:-0.018672pt;}
.ws22_c00329{word-spacing:-0.012448pt;}
.ws40_c00329{word-spacing:-0.010394pt;}
.ws4_c00329{word-spacing:0.000000pt;}
.ws3f_c00329{word-spacing:0.010394pt;}
.ws23_c00329{word-spacing:0.018672pt;}
.wsa_c00329{word-spacing:0.024896pt;}
.ws35_c00329{word-spacing:0.051970pt;}
.wse_c00329{word-spacing:0.323648pt;}
.ws2d_c00329{word-spacing:0.367216pt;}
.ws16_c00329{word-spacing:2.887936pt;}
.wsc_c00329{word-spacing:3.796640pt;}
.ws27_c00329{word-spacing:3.877552pt;}
.ws39_c00329{word-spacing:4.895587pt;}
.ws3c_c00329{word-spacing:5.134649pt;}
.ws1a_c00329{word-spacing:5.141024pt;}
.ws37_c00329{word-spacing:5.145043pt;}
.ws36_c00329{word-spacing:5.394500pt;}
.ws3a_c00329{word-spacing:5.477652pt;}
.ws28_c00329{word-spacing:5.775872pt;}
.ws3b_c00329{word-spacing:5.799867pt;}
.ws38_c00329{word-spacing:6.142870pt;}
.wsd_c00329{word-spacing:6.709472pt;}
.ws30_c00329{word-spacing:7.033120pt;}
.ws2b_c00329{word-spacing:9.267536pt;}
.ws3e_c00329{word-spacing:10.139373pt;}
.ws3d_c00329{word-spacing:10.352451pt;}
.ws14_c00329{word-spacing:10.892000pt;}
.ws8_c00329{word-spacing:13.132640pt;}
.ws10_c00329{word-spacing:16.966624pt;}
.ws13_c00329{word-spacing:17.943792pt;}
.ws2c_c00329{word-spacing:18.566192pt;}
.ws7_c00329{word-spacing:21.111808pt;}
.wsb_c00329{word-spacing:21.441680pt;}
.ws20_c00329{word-spacing:21.721760pt;}
.ws2e_c00329{word-spacing:27.230000pt;}
.ws18_c00329{word-spacing:27.510080pt;}
.ws17_c00329{word-spacing:28.468576pt;}
.ws1d_c00329{word-spacing:32.570192pt;}
.ws1e_c00329{word-spacing:32.931184pt;}
.ws12_c00329{word-spacing:33.285952pt;}
.ws19_c00329{word-spacing:40.624048pt;}
.ws2f_c00329{word-spacing:40.935248pt;}
.ws2a_c00329{word-spacing:46.748464pt;}
.ws21_c00329{word-spacing:47.065888pt;}
.ws11_c00329{word-spacing:47.682064pt;}
.ws31_c00329{word-spacing:52.119776pt;}
.ws24_c00329{word-spacing:56.003552pt;}
.ws15_c00329{word-spacing:61.107232pt;}
.ws33_c00329{word-spacing:65.881040pt;}
.ws29_c00329{word-spacing:67.206752pt;}
.wsf_c00329{word-spacing:70.088464pt;}
.ws6_c00329{word-spacing:71.619568pt;}
.ws5_c00329{word-spacing:71.675584pt;}
.ws1c_c00329{word-spacing:79.349776pt;}
.ws25_c00329{word-spacing:79.667200pt;}
.ws26_c00329{word-spacing:87.652592pt;}
.ws1f_c00329{word-spacing:112.984272pt;}
._3_c00329{margin-left:-2.408688pt;}
._1_c00329{margin-left:-0.921152pt;}
._0_c00329{width:1.008288pt;}
._2_c00329{width:5.271728pt;}
.fs2_c00329{font-size:33.608533pt;}
.fs1_c00329{font-size:41.388800pt;}
.fs3_c00329{font-size:51.970133pt;}
.fs0_c00329{font-size:62.240000pt;}
.y0_c00329{bottom:0.000000pt;}
.y2_c00329{bottom:97.547527pt;}
.y1_c00329{bottom:115.387067pt;}
.y39_c00329{bottom:132.826265pt;}
.y38_c00329{bottom:148.666762pt;}
.y37_c00329{bottom:167.947067pt;}
.y36_c00329{bottom:183.787067pt;}
.y35_c00329{bottom:196.827067pt;}
.y1e_c00329{bottom:243.382919pt;}
.y34_c00329{bottom:243.387067pt;}
.y1d_c00329{bottom:270.183463pt;}
.y33_c00329{bottom:270.187200pt;}
.y1c_c00329{bottom:297.063363pt;}
.y32_c00329{bottom:297.067067pt;}
.y1b_c00329{bottom:323.863907pt;}
.y31_c00329{bottom:323.867067pt;}
.y1a_c00329{bottom:350.743807pt;}
.y30_c00329{bottom:350.747200pt;}
.y19_c00329{bottom:377.623707pt;}
.y2f_c00329{bottom:377.627067pt;}
.y18_c00329{bottom:404.424251pt;}
.y2e_c00329{bottom:404.427067pt;}
.y17_c00329{bottom:431.304151pt;}
.y2d_c00329{bottom:431.307067pt;}
.y16_c00329{bottom:458.104695pt;}
.y2c_c00329{bottom:458.107200pt;}
.y15_c00329{bottom:484.984595pt;}
.y2b_c00329{bottom:484.987067pt;}
.y14_c00329{bottom:511.785139pt;}
.y2a_c00329{bottom:511.787067pt;}
.y13_c00329{bottom:538.665039pt;}
.y29_c00329{bottom:538.667067pt;}
.y12_c00329{bottom:565.465583pt;}
.y28_c00329{bottom:565.467067pt;}
.y11_c00329{bottom:592.345483pt;}
.y27_c00329{bottom:592.347067pt;}
.y10_c00329{bottom:619.146027pt;}
.y26_c00329{bottom:619.147067pt;}
.yf_c00329{bottom:646.025927pt;}
.y25_c00329{bottom:646.027067pt;}
.ye_c00329{bottom:672.826471pt;}
.y24_c00329{bottom:672.827067pt;}
.yd_c00329{bottom:699.706371pt;}
.y23_c00329{bottom:699.707067pt;}
.yc_c00329{bottom:726.506915pt;}
.y22_c00329{bottom:726.507067pt;}
.yb_c00329{bottom:753.386815pt;}
.y21_c00329{bottom:753.387067pt;}
.ya_c00329{bottom:780.187359pt;}
.y20_c00329{bottom:798.267067pt;}
.y9_c00329{bottom:825.067067pt;}
.y1f_c00329{bottom:825.147200pt;}
.y8_c00329{bottom:852.027067pt;}
.y7_c00329{bottom:878.827067pt;}
.y6_c00329{bottom:905.707067pt;}
.y5_c00329{bottom:950.587067pt;}
.y4_c00329{bottom:969.147151pt;}
.y3_c00329{bottom:987.067603pt;}
.h5_c00329{height:34.967599pt;}
.h6_c00329{height:48.087599pt;}
.h3_c00329{height:55.645234pt;}
.h1_c00329{height:55.797187pt;}
.h2_c00329{height:56.192266pt;}
.h4_c00329{height:65.483366pt;}
.h0_c00329{height:1122.666667pt;}
.w0_c00329{width:793.333333pt;}
.x0_c00329{left:0.000000pt;}
.x2_c00329{left:73.520052pt;}
.x3_c00329{left:122.960000pt;}
.x1_c00329{left:383.760000pt;}
.x4_c00329{left:403.200000pt;}
}





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

.ir_c00330:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00330{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00330;src:url('chunks/assets/font_509d6c9d84de57f3c58129b9.woff2')format("woff");}.ff1_c00330{font-family:ff1_c00330;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00330;src:url('chunks/assets/font_814e8292817b030a326f4772.woff2')format("woff");}.ff2_c00330{font-family:ff2_c00330;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00330{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00330{vertical-align:0.000000px;}
.v1_c00330{vertical-align:32.060886px;}
.ls6_c00330{letter-spacing:-0.063018px;}
.lsa_c00330{letter-spacing:-0.056016px;}
.lse_c00330{letter-spacing:-0.049014px;}
.ls9_c00330{letter-spacing:-0.042012px;}
.lsb_c00330{letter-spacing:-0.035010px;}
.ls10_c00330{letter-spacing:-0.028008px;}
.ls8_c00330{letter-spacing:-0.021006px;}
.lsf_c00330{letter-spacing:-0.014004px;}
.lsd_c00330{letter-spacing:-0.007002px;}
.ls7_c00330{letter-spacing:0.000000px;}
.ls5_c00330{letter-spacing:0.007002px;}
.ls0_c00330{letter-spacing:0.014004px;}
.ls2_c00330{letter-spacing:0.021006px;}
.ls4_c00330{letter-spacing:0.023281px;}
.ls1_c00330{letter-spacing:0.028008px;}
.lsc_c00330{letter-spacing:0.035010px;}
.ls3_c00330{letter-spacing:0.042012px;}
.sc__c00330{text-shadow:none;}
.sc0_c00330{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00330{-webkit-text-stroke:0px transparent;}
.sc0_c00330{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00330{word-spacing:-12.967628px;}
.ws16_c00330{word-spacing:-0.056016px;}
.ws10_c00330{word-spacing:-0.007002px;}
.ws1_c00330{word-spacing:0.000000px;}
.ws1a_c00330{word-spacing:0.014004px;}
.ws18_c00330{word-spacing:4.656330px;}
.wsf_c00330{word-spacing:9.683766px;}
.ws17_c00330{word-spacing:11.483280px;}
.ws15_c00330{word-spacing:14.053014px;}
.wsb_c00330{word-spacing:19.458558px;}
.ws8_c00330{word-spacing:21.916260px;}
.ws4_c00330{word-spacing:22.651470px;}
.ws19_c00330{word-spacing:23.414688px;}
.ws13_c00330{word-spacing:24.135894px;}
.ws1c_c00330{word-spacing:25.221204px;}
.ws3_c00330{word-spacing:25.564302px;}
.ws1d_c00330{word-spacing:27.384822px;}
.wsa_c00330{word-spacing:28.064016px;}
.wse_c00330{word-spacing:33.476562px;}
.ws1b_c00330{word-spacing:37.061586px;}
.ws5_c00330{word-spacing:42.509142px;}
.ws6_c00330{word-spacing:44.623746px;}
.ws12_c00330{word-spacing:48.957984px;}
.ws9_c00330{word-spacing:59.769072px;}
.ws2_c00330{word-spacing:70.909254px;}
.ws11_c00330{word-spacing:71.315370px;}
.ws7_c00330{word-spacing:92.923542px;}
.wsd_c00330{word-spacing:98.266068px;}
.ws14_c00330{word-spacing:101.178900px;}
.wsc_c00330{word-spacing:102.194190px;}
._0_c00330{margin-left:-70.923258px;}
._1_c00330{margin-left:-1.057302px;}
._2_c00330{width:1.064304px;}
.fc0_c00330{color:rgb(0,0,0);}
.fs1_c00330{font-size:46.562400px;}
.fs0_c00330{font-size:70.020000px;}
.y0_c00330{bottom:0.000000px;}
.y2_c00330{bottom:109.740968px;}
.y1_c00330{bottom:129.810450px;}
.y22_c00330{bottom:173.728714px;}
.y21_c00330{bottom:203.968602px;}
.y20_c00330{bottom:234.119214px;}
.y1f_c00330{bottom:264.359101px;}
.y1e_c00330{bottom:294.509713px;}
.y1d_c00330{bottom:324.749601px;}
.y1c_c00330{bottom:354.900213px;}
.y1b_c00330{bottom:385.140101px;}
.y1a_c00330{bottom:415.290713px;}
.y19_c00330{bottom:445.525379px;}
.y18_c00330{bottom:475.765266px;}
.y17_c00330{bottom:505.915878px;}
.y16_c00330{bottom:536.155766px;}
.y15_c00330{bottom:566.306378px;}
.y14_c00330{bottom:596.456990px;}
.y13_c00330{bottom:626.607602px;}
.y12_c00330{bottom:656.847489px;}
.y11_c00330{bottom:686.998101px;}
.y10_c00330{bottom:717.237989px;}
.yf_c00330{bottom:747.388601px;}
.ye_c00330{bottom:777.628488px;}
.yd_c00330{bottom:807.779100px;}
.yc_c00330{bottom:838.018988px;}
.yb_c00330{bottom:868.169600px;}
.ya_c00330{bottom:898.409487px;}
.y9_c00330{bottom:928.560099px;}
.y29_c00330{bottom:928.560450px;}
.y8_c00330{bottom:958.799987px;}
.y28_c00330{bottom:958.800450px;}
.y27_c00330{bottom:988.950450px;}
.y7_c00330{bottom:988.950599px;}
.y26_c00330{bottom:1019.190450px;}
.y6_c00330{bottom:1019.190486px;}
.y25_c00330{bottom:1049.340450px;}
.y5_c00330{bottom:1049.341098px;}
.y24_c00330{bottom:1079.580450px;}
.y4_c00330{bottom:1079.580985px;}
.y23_c00330{bottom:1109.730450px;}
.y3_c00330{bottom:1109.731597px;}
.h2_c00330{height:62.600889px;}
.h1_c00330{height:62.771836px;}
.h3_c00330{height:73.689672px;}
.h0_c00330{height:1263.000000px;}
.w0_c00330{width:892.500000px;}
.x0_c00330{left:0.000000px;}
.x2_c00330{left:82.710059px;}
.x3_c00330{left:138.330445px;}
.x1_c00330{left:431.730000px;}
.x4_c00330{left:453.600000px;}
@media print{
.v0_c00330{vertical-align:0.000000pt;}
.v1_c00330{vertical-align:28.498565pt;}
.ls6_c00330{letter-spacing:-0.056016pt;}
.lsa_c00330{letter-spacing:-0.049792pt;}
.lse_c00330{letter-spacing:-0.043568pt;}
.ls9_c00330{letter-spacing:-0.037344pt;}
.lsb_c00330{letter-spacing:-0.031120pt;}
.ls10_c00330{letter-spacing:-0.024896pt;}
.ls8_c00330{letter-spacing:-0.018672pt;}
.lsf_c00330{letter-spacing:-0.012448pt;}
.lsd_c00330{letter-spacing:-0.006224pt;}
.ls7_c00330{letter-spacing:0.000000pt;}
.ls5_c00330{letter-spacing:0.006224pt;}
.ls0_c00330{letter-spacing:0.012448pt;}
.ls2_c00330{letter-spacing:0.018672pt;}
.ls4_c00330{letter-spacing:0.020694pt;}
.ls1_c00330{letter-spacing:0.024896pt;}
.lsc_c00330{letter-spacing:0.031120pt;}
.ls3_c00330{letter-spacing:0.037344pt;}
.ws0_c00330{word-spacing:-11.526781pt;}
.ws16_c00330{word-spacing:-0.049792pt;}
.ws10_c00330{word-spacing:-0.006224pt;}
.ws1_c00330{word-spacing:0.000000pt;}
.ws1a_c00330{word-spacing:0.012448pt;}
.ws18_c00330{word-spacing:4.138960pt;}
.wsf_c00330{word-spacing:8.607792pt;}
.ws17_c00330{word-spacing:10.207360pt;}
.ws15_c00330{word-spacing:12.491568pt;}
.wsb_c00330{word-spacing:17.296496pt;}
.ws8_c00330{word-spacing:19.481120pt;}
.ws4_c00330{word-spacing:20.134640pt;}
.ws19_c00330{word-spacing:20.813056pt;}
.ws13_c00330{word-spacing:21.454128pt;}
.ws1c_c00330{word-spacing:22.418848pt;}
.ws3_c00330{word-spacing:22.723824pt;}
.ws1d_c00330{word-spacing:24.342064pt;}
.wsa_c00330{word-spacing:24.945792pt;}
.wse_c00330{word-spacing:29.756944pt;}
.ws1b_c00330{word-spacing:32.943632pt;}
.ws5_c00330{word-spacing:37.785904pt;}
.ws6_c00330{word-spacing:39.665552pt;}
.ws12_c00330{word-spacing:43.518208pt;}
.ws9_c00330{word-spacing:53.128064pt;}
.ws2_c00330{word-spacing:63.030448pt;}
.ws11_c00330{word-spacing:63.391440pt;}
.ws7_c00330{word-spacing:82.598704pt;}
.wsd_c00330{word-spacing:87.347616pt;}
.ws14_c00330{word-spacing:89.936800pt;}
.wsc_c00330{word-spacing:90.839280pt;}
._0_c00330{margin-left:-63.042896pt;}
._1_c00330{margin-left:-0.939824pt;}
._2_c00330{width:0.946048pt;}
.fs1_c00330{font-size:41.388800pt;}
.fs0_c00330{font-size:62.240000pt;}
.y0_c00330{bottom:0.000000pt;}
.y2_c00330{bottom:97.547527pt;}
.y1_c00330{bottom:115.387067pt;}
.y22_c00330{bottom:154.425524pt;}
.y21_c00330{bottom:181.305424pt;}
.y20_c00330{bottom:208.105968pt;}
.y1f_c00330{bottom:234.985868pt;}
.y1e_c00330{bottom:261.786412pt;}
.y1d_c00330{bottom:288.666312pt;}
.y1c_c00330{bottom:315.466856pt;}
.y1b_c00330{bottom:342.346756pt;}
.y1a_c00330{bottom:369.147300pt;}
.y19_c00330{bottom:396.022559pt;}
.y18_c00330{bottom:422.902459pt;}
.y17_c00330{bottom:449.703003pt;}
.y16_c00330{bottom:476.582903pt;}
.y15_c00330{bottom:503.383447pt;}
.y14_c00330{bottom:530.183991pt;}
.y13_c00330{bottom:556.984535pt;}
.y12_c00330{bottom:583.864435pt;}
.y11_c00330{bottom:610.664979pt;}
.y10_c00330{bottom:637.544879pt;}
.yf_c00330{bottom:664.345423pt;}
.ye_c00330{bottom:691.225323pt;}
.yd_c00330{bottom:718.025867pt;}
.yc_c00330{bottom:744.905767pt;}
.yb_c00330{bottom:771.706311pt;}
.ya_c00330{bottom:798.586211pt;}
.y9_c00330{bottom:825.386755pt;}
.y29_c00330{bottom:825.387067pt;}
.y8_c00330{bottom:852.266655pt;}
.y28_c00330{bottom:852.267067pt;}
.y27_c00330{bottom:879.067067pt;}
.y7_c00330{bottom:879.067199pt;}
.y26_c00330{bottom:905.947067pt;}
.y6_c00330{bottom:905.947099pt;}
.y25_c00330{bottom:932.747067pt;}
.y5_c00330{bottom:932.747643pt;}
.y24_c00330{bottom:959.627067pt;}
.y4_c00330{bottom:959.627543pt;}
.y23_c00330{bottom:986.427067pt;}
.y3_c00330{bottom:986.428087pt;}
.h2_c00330{height:55.645234pt;}
.h1_c00330{height:55.797187pt;}
.h3_c00330{height:65.501931pt;}
.h0_c00330{height:1122.666667pt;}
.w0_c00330{width:793.333333pt;}
.x0_c00330{left:0.000000pt;}
.x2_c00330{left:73.520052pt;}
.x3_c00330{left:122.960396pt;}
.x1_c00330{left:383.760000pt;}
.x4_c00330{left:403.200000pt;}
}





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

.ir_c00331:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00331{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00331;src:url('chunks/assets/font_168fca746f5f61a8d25e1856.woff2')format("woff");}.ff1_c00331{font-family:ff1_c00331;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00331;src:url('chunks/assets/font_eca987a53c2c20029b5bdd81.woff2')format("woff");}.ff2_c00331{font-family:ff2_c00331;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00331{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00331{vertical-align:0.000000px;}
.ls5_c00331{letter-spacing:-0.063018px;}
.lsd_c00331{letter-spacing:-0.042012px;}
.ls9_c00331{letter-spacing:-0.035010px;}
.lsc_c00331{letter-spacing:-0.028008px;}
.ls8_c00331{letter-spacing:-0.021006px;}
.lsb_c00331{letter-spacing:-0.014004px;}
.lsa_c00331{letter-spacing:-0.007002px;}
.ls6_c00331{letter-spacing:0.000000px;}
.ls2_c00331{letter-spacing:0.007002px;}
.ls3_c00331{letter-spacing:0.014004px;}
.ls4_c00331{letter-spacing:0.021006px;}
.ls0_c00331{letter-spacing:0.049014px;}
.ls1_c00331{letter-spacing:0.070020px;}
.ls7_c00331{letter-spacing:0.231066px;}
.sc__c00331{text-shadow:none;}
.sc0_c00331{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00331{-webkit-text-stroke:0px transparent;}
.sc0_c00331{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00331{word-spacing:-19.535580px;}
.ws2_c00331{word-spacing:-0.245070px;}
.ws3_c00331{word-spacing:-0.063018px;}
.ws8_c00331{word-spacing:-0.021006px;}
.ws9_c00331{word-spacing:-0.014004px;}
.ws1_c00331{word-spacing:0.000000px;}
.wsf_c00331{word-spacing:0.014004px;}
.wsa_c00331{word-spacing:0.357102px;}
.ws15_c00331{word-spacing:0.371106px;}
.wse_c00331{word-spacing:0.385110px;}
.ws6_c00331{word-spacing:3.248928px;}
.wsc_c00331{word-spacing:5.734638px;}
.wsb_c00331{word-spacing:5.776650px;}
.wsd_c00331{word-spacing:6.826950px;}
.ws4_c00331{word-spacing:8.290368px;}
.ws7_c00331{word-spacing:9.354672px;}
.ws10_c00331{word-spacing:9.375678px;}
.ws12_c00331{word-spacing:10.797084px;}
.ws13_c00331{word-spacing:11.483280px;}
.ws14_c00331{word-spacing:11.875392px;}
.ws5_c00331{word-spacing:11.903400px;}
.ws11_c00331{word-spacing:19.801656px;}
._0_c00331{margin-left:-1.421406px;}
._2_c00331{width:1.085310px;}
._1_c00331{width:7.919262px;}
.fc0_c00331{color:rgb(0,0,0);}
.fs0_c00331{font-size:70.020000px;}
.y0_c00331{bottom:0.000000px;}
.y2_c00331{bottom:109.740968px;}
.y1_c00331{bottom:129.810450px;}
.y1b_c00331{bottom:163.555086px;}
.y1a_c00331{bottom:193.705698px;}
.y19_c00331{bottom:223.945585px;}
.y18_c00331{bottom:254.096197px;}
.y17_c00331{bottom:284.246809px;}
.y16_c00331{bottom:314.397421px;}
.y15_c00331{bottom:344.637309px;}
.y14_c00331{bottom:374.787921px;}
.y13_c00331{bottom:405.027808px;}
.y12_c00331{bottom:435.178421px;}
.y11_c00331{bottom:465.418308px;}
.y10_c00331{bottom:495.568920px;}
.yf_c00331{bottom:525.808807px;}
.ye_c00331{bottom:555.959419px;}
.yd_c00331{bottom:586.199307px;}
.yc_c00331{bottom:616.349919px;}
.yb_c00331{bottom:646.589807px;}
.ya_c00331{bottom:676.740418px;}
.y9_c00331{bottom:706.980306px;}
.y8_c00331{bottom:737.130918px;}
.y7_c00331{bottom:763.500450px;}
.y6_c00331{bottom:1019.190486px;}
.y5_c00331{bottom:1049.341098px;}
.y4_c00331{bottom:1079.580985px;}
.y3_c00331{bottom:1109.731597px;}
.h1_c00331{height:62.771836px;}
.h2_c00331{height:63.216299px;}
.h0_c00331{height:1263.000000px;}
.w0_c00331{width:892.500000px;}
.x0_c00331{left:0.000000px;}
.x2_c00331{left:82.710059px;}
.x4_c00331{left:138.330445px;}
.x6_c00331{left:164.521426px;}
.x8_c00331{left:190.799405px;}
.x5_c00331{left:288.271274px;}
.x1_c00331{left:431.730000px;}
.x3_c00331{left:446.400940px;}
.x7_c00331{left:737.639850px;}
@media print{
.v0_c00331{vertical-align:0.000000pt;}
.ls5_c00331{letter-spacing:-0.056016pt;}
.lsd_c00331{letter-spacing:-0.037344pt;}
.ls9_c00331{letter-spacing:-0.031120pt;}
.lsc_c00331{letter-spacing:-0.024896pt;}
.ls8_c00331{letter-spacing:-0.018672pt;}
.lsb_c00331{letter-spacing:-0.012448pt;}
.lsa_c00331{letter-spacing:-0.006224pt;}
.ls6_c00331{letter-spacing:0.000000pt;}
.ls2_c00331{letter-spacing:0.006224pt;}
.ls3_c00331{letter-spacing:0.012448pt;}
.ls4_c00331{letter-spacing:0.018672pt;}
.ls0_c00331{letter-spacing:0.043568pt;}
.ls1_c00331{letter-spacing:0.062240pt;}
.ls7_c00331{letter-spacing:0.205392pt;}
.ws0_c00331{word-spacing:-17.364960pt;}
.ws2_c00331{word-spacing:-0.217840pt;}
.ws3_c00331{word-spacing:-0.056016pt;}
.ws8_c00331{word-spacing:-0.018672pt;}
.ws9_c00331{word-spacing:-0.012448pt;}
.ws1_c00331{word-spacing:0.000000pt;}
.wsf_c00331{word-spacing:0.012448pt;}
.wsa_c00331{word-spacing:0.317424pt;}
.ws15_c00331{word-spacing:0.329872pt;}
.wse_c00331{word-spacing:0.342320pt;}
.ws6_c00331{word-spacing:2.887936pt;}
.wsc_c00331{word-spacing:5.097456pt;}
.wsb_c00331{word-spacing:5.134800pt;}
.wsd_c00331{word-spacing:6.068400pt;}
.ws4_c00331{word-spacing:7.369216pt;}
.ws7_c00331{word-spacing:8.315264pt;}
.ws10_c00331{word-spacing:8.333936pt;}
.ws12_c00331{word-spacing:9.597408pt;}
.ws13_c00331{word-spacing:10.207360pt;}
.ws14_c00331{word-spacing:10.555904pt;}
.ws5_c00331{word-spacing:10.580800pt;}
.ws11_c00331{word-spacing:17.601472pt;}
._0_c00331{margin-left:-1.263472pt;}
._2_c00331{width:0.964720pt;}
._1_c00331{width:7.039344pt;}
.fs0_c00331{font-size:62.240000pt;}
.y0_c00331{bottom:0.000000pt;}
.y2_c00331{bottom:97.547527pt;}
.y1_c00331{bottom:115.387067pt;}
.y1b_c00331{bottom:145.382299pt;}
.y1a_c00331{bottom:172.182843pt;}
.y19_c00331{bottom:199.062743pt;}
.y18_c00331{bottom:225.863287pt;}
.y17_c00331{bottom:252.663831pt;}
.y16_c00331{bottom:279.464375pt;}
.y15_c00331{bottom:306.344275pt;}
.y14_c00331{bottom:333.144819pt;}
.y13_c00331{bottom:360.024719pt;}
.y12_c00331{bottom:386.825263pt;}
.y11_c00331{bottom:413.705163pt;}
.y10_c00331{bottom:440.505707pt;}
.yf_c00331{bottom:467.385607pt;}
.ye_c00331{bottom:494.186151pt;}
.yd_c00331{bottom:521.066051pt;}
.yc_c00331{bottom:547.866595pt;}
.yb_c00331{bottom:574.746495pt;}
.ya_c00331{bottom:601.547039pt;}
.y9_c00331{bottom:628.426939pt;}
.y8_c00331{bottom:655.227483pt;}
.y7_c00331{bottom:678.667067pt;}
.y6_c00331{bottom:905.947099pt;}
.y5_c00331{bottom:932.747643pt;}
.y4_c00331{bottom:959.627543pt;}
.y3_c00331{bottom:986.428087pt;}
.h1_c00331{height:55.797187pt;}
.h2_c00331{height:56.192266pt;}
.h0_c00331{height:1122.666667pt;}
.w0_c00331{width:793.333333pt;}
.x0_c00331{left:0.000000pt;}
.x2_c00331{left:73.520052pt;}
.x4_c00331{left:122.960396pt;}
.x6_c00331{left:146.241268pt;}
.x8_c00331{left:169.599471pt;}
.x5_c00331{left:256.241132pt;}
.x1_c00331{left:383.760000pt;}
.x3_c00331{left:396.800836pt;}
.x7_c00331{left:655.679867pt;}
}





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

.ir_c00332:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00332{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00332;src:url('chunks/assets/font_eb9e1928e1a03fbfff13c88e.woff2')format("woff");}.ff1_c00332{font-family:ff1_c00332;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00332;src:url('chunks/assets/font_7acfdc935bc2b967741522a4.woff2')format("woff");}.ff2_c00332{font-family:ff2_c00332;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00332;src:url('chunks/assets/font_dcf561e757dc8481b57519a0.woff2')format("woff");}.ff3_c00332{font-family:ff3_c00332;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00332;src:url('chunks/assets/font_c1a27f20e5ff3a604ad5b343.woff2')format("woff");}.ff4_c00332{font-family:ff4_c00332;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00332;src:url('chunks/assets/font_49a405263a2d94b35452789e.woff2')format("woff");}.ff5_c00332{font-family:ff5_c00332;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00332;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff6_c00332{font-family:ff6_c00332;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00332;src:url('chunks/assets/font_d9bc4885d73757b7bb3af518.woff2')format("woff");}.ff7_c00332{font-family:ff7_c00332;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00332{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00332{vertical-align:-14.760000px;}
.v0_c00332{vertical-align:0.000000px;}
.v1_c00332{vertical-align:32.399406px;}
.lsf_c00332{letter-spacing:-0.584664px;}
.lse_c00332{letter-spacing:-0.093546px;}
.ls10_c00332{letter-spacing:-0.087700px;}
.lsc_c00332{letter-spacing:-0.075619px;}
.ls3_c00332{letter-spacing:-0.063018px;}
.ls7_c00332{letter-spacing:-0.056016px;}
.lsa_c00332{letter-spacing:-0.049014px;}
.ls9_c00332{letter-spacing:-0.042012px;}
.ls8_c00332{letter-spacing:-0.035010px;}
.lsb_c00332{letter-spacing:-0.028008px;}
.ls6_c00332{letter-spacing:-0.021006px;}
.ls11_c00332{letter-spacing:-0.011693px;}
.ls5_c00332{letter-spacing:-0.007002px;}
.ls4_c00332{letter-spacing:0.000000px;}
.ls2_c00332{letter-spacing:0.007002px;}
.ls0_c00332{letter-spacing:0.023281px;}
.ls1_c00332{letter-spacing:0.070020px;}
.lsd_c00332{letter-spacing:0.087700px;}
.sc__c00332{text-shadow:none;}
.sc0_c00332{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00332{-webkit-text-stroke:0px transparent;}
.sc0_c00332{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00332{word-spacing:-58.466400px;}
.ws1_c00332{word-spacing:-19.535580px;}
.ws4_c00332{word-spacing:-16.107493px;}
.ws0_c00332{word-spacing:-12.967628px;}
.ws2_c00332{word-spacing:-10.397640px;}
.ws5_c00332{word-spacing:0.000000px;}
.wsb_c00332{word-spacing:0.007002px;}
.ws9_c00332{word-spacing:0.014004px;}
.wsf_c00332{word-spacing:0.021006px;}
.wsa_c00332{word-spacing:0.042012px;}
.ws12_c00332{word-spacing:0.336096px;}
.ws13_c00332{word-spacing:0.350100px;}
.ws17_c00332{word-spacing:3.578022px;}
.ws15_c00332{word-spacing:3.592026px;}
.ws16_c00332{word-spacing:3.627036px;}
.ws14_c00332{word-spacing:3.984138px;}
.ws10_c00332{word-spacing:4.355244px;}
.ws19_c00332{word-spacing:6.039579px;}
.ws18_c00332{word-spacing:6.407917px;}
.ws1a_c00332{word-spacing:6.589163px;}
.ws1b_c00332{word-spacing:7.080281px;}
.ws11_c00332{word-spacing:8.654472px;}
.ws8_c00332{word-spacing:10.804086px;}
.ws6_c00332{word-spacing:12.589596px;}
.wsc_c00332{word-spacing:14.424120px;}
.ws7_c00332{word-spacing:20.886966px;}
.wsd_c00332{word-spacing:24.471990px;}
.wse_c00332{word-spacing:24.507000px;}
._4_c00332{margin-left:-2.709774px;}
._0_c00332{margin-left:-1.022292px;}
._1_c00332{width:1.120320px;}
._3_c00332{width:5.930694px;}
._2_c00332{width:7.919262px;}
.fc0_c00332{color:rgb(0,0,0);}
.fs2_c00332{font-size:37.809600px;}
.fs1_c00332{font-size:46.562400px;}
.fs3_c00332{font-size:58.466400px;}
.fs0_c00332{font-size:70.020000px;}
.y0_c00332{bottom:0.000000px;}
.y2_c00332{bottom:109.740968px;}
.y1_c00332{bottom:129.810450px;}
.y1c_c00332{bottom:149.429891px;}
.y1b_c00332{bottom:170.940450px;}
.y1a_c00332{bottom:185.700600px;}
.y19_c00332{bottom:224.760450px;}
.y18_c00332{bottom:255.000450px;}
.y17_c00332{bottom:285.150450px;}
.y16_c00332{bottom:315.300450px;}
.y15_c00332{bottom:345.450450px;}
.y14_c00332{bottom:375.690450px;}
.y13_c00332{bottom:405.840600px;}
.y12_c00332{bottom:436.080450px;}
.y11_c00332{bottom:466.230450px;}
.y10_c00332{bottom:496.470450px;}
.yf_c00332{bottom:526.620450px;}
.ye_c00332{bottom:556.860450px;}
.yd_c00332{bottom:583.320450px;}
.yc_c00332{bottom:847.380450px;}
.yb_c00332{bottom:877.530450px;}
.ya_c00332{bottom:907.770450px;}
.y9_c00332{bottom:928.559950px;}
.y8_c00332{bottom:958.799838px;}
.y7_c00332{bottom:988.950599px;}
.y6_c00332{bottom:1019.190486px;}
.y5_c00332{bottom:1049.341098px;}
.y4_c00332{bottom:1079.580985px;}
.y3_c00332{bottom:1109.731597px;}
.h5_c00332{height:39.338549px;}
.h6_c00332{height:54.098549px;}
.h2_c00332{height:62.600889px;}
.h1_c00332{height:62.771836px;}
.h4_c00332{height:63.216299px;}
.h3_c00332{height:74.028192px;}
.h0_c00332{height:1263.000000px;}
.w0_c00332{width:892.500000px;}
.x0_c00332{left:0.000000px;}
.x2_c00332{left:82.710059px;}
.x4_c00332{left:138.330445px;}
.x6_c00332{left:164.520000px;}
.x3_c00332{left:190.799933px;}
.x5_c00332{left:343.170000px;}
.x1_c00332{left:431.730000px;}
.x7_c00332{left:736.020000px;}
@media print{
.v2_c00332{vertical-align:-13.120000pt;}
.v0_c00332{vertical-align:0.000000pt;}
.v1_c00332{vertical-align:28.799472pt;}
.lsf_c00332{letter-spacing:-0.519701pt;}
.lse_c00332{letter-spacing:-0.083152pt;}
.ls10_c00332{letter-spacing:-0.077955pt;}
.lsc_c00332{letter-spacing:-0.067217pt;}
.ls3_c00332{letter-spacing:-0.056016pt;}
.ls7_c00332{letter-spacing:-0.049792pt;}
.lsa_c00332{letter-spacing:-0.043568pt;}
.ls9_c00332{letter-spacing:-0.037344pt;}
.ls8_c00332{letter-spacing:-0.031120pt;}
.lsb_c00332{letter-spacing:-0.024896pt;}
.ls6_c00332{letter-spacing:-0.018672pt;}
.ls11_c00332{letter-spacing:-0.010394pt;}
.ls5_c00332{letter-spacing:-0.006224pt;}
.ls4_c00332{letter-spacing:0.000000pt;}
.ls2_c00332{letter-spacing:0.006224pt;}
.ls0_c00332{letter-spacing:0.020694pt;}
.ls1_c00332{letter-spacing:0.062240pt;}
.lsd_c00332{letter-spacing:0.077955pt;}
.ws3_c00332{word-spacing:-51.970133pt;}
.ws1_c00332{word-spacing:-17.364960pt;}
.ws4_c00332{word-spacing:-14.317772pt;}
.ws0_c00332{word-spacing:-11.526781pt;}
.ws2_c00332{word-spacing:-9.242347pt;}
.ws5_c00332{word-spacing:0.000000pt;}
.wsb_c00332{word-spacing:0.006224pt;}
.ws9_c00332{word-spacing:0.012448pt;}
.wsf_c00332{word-spacing:0.018672pt;}
.wsa_c00332{word-spacing:0.037344pt;}
.ws12_c00332{word-spacing:0.298752pt;}
.ws13_c00332{word-spacing:0.311200pt;}
.ws17_c00332{word-spacing:3.180464pt;}
.ws15_c00332{word-spacing:3.192912pt;}
.ws16_c00332{word-spacing:3.224032pt;}
.ws14_c00332{word-spacing:3.541456pt;}
.ws10_c00332{word-spacing:3.871328pt;}
.ws19_c00332{word-spacing:5.368515pt;}
.ws18_c00332{word-spacing:5.695927pt;}
.ws1a_c00332{word-spacing:5.857034pt;}
.ws1b_c00332{word-spacing:6.293583pt;}
.ws11_c00332{word-spacing:7.692864pt;}
.ws8_c00332{word-spacing:9.603632pt;}
.ws6_c00332{word-spacing:11.190752pt;}
.wsc_c00332{word-spacing:12.821440pt;}
.ws7_c00332{word-spacing:18.566192pt;}
.wsd_c00332{word-spacing:21.752880pt;}
.wse_c00332{word-spacing:21.784000pt;}
._4_c00332{margin-left:-2.408688pt;}
._0_c00332{margin-left:-0.908704pt;}
._1_c00332{width:0.995840pt;}
._3_c00332{width:5.271728pt;}
._2_c00332{width:7.039344pt;}
.fs2_c00332{font-size:33.608533pt;}
.fs1_c00332{font-size:41.388800pt;}
.fs3_c00332{font-size:51.970133pt;}
.fs0_c00332{font-size:62.240000pt;}
.y0_c00332{bottom:0.000000pt;}
.y2_c00332{bottom:97.547527pt;}
.y1_c00332{bottom:115.387067pt;}
.y1c_c00332{bottom:132.826570pt;}
.y1b_c00332{bottom:151.947067pt;}
.y1a_c00332{bottom:165.067200pt;}
.y19_c00332{bottom:199.787067pt;}
.y18_c00332{bottom:226.667067pt;}
.y17_c00332{bottom:253.467067pt;}
.y16_c00332{bottom:280.267067pt;}
.y15_c00332{bottom:307.067067pt;}
.y14_c00332{bottom:333.947067pt;}
.y13_c00332{bottom:360.747200pt;}
.y12_c00332{bottom:387.627067pt;}
.y11_c00332{bottom:414.427067pt;}
.y10_c00332{bottom:441.307067pt;}
.yf_c00332{bottom:468.107067pt;}
.ye_c00332{bottom:494.987067pt;}
.yd_c00332{bottom:518.507067pt;}
.yc_c00332{bottom:753.227067pt;}
.yb_c00332{bottom:780.027067pt;}
.ya_c00332{bottom:806.907067pt;}
.y9_c00332{bottom:825.386623pt;}
.y8_c00332{bottom:852.266523pt;}
.y7_c00332{bottom:879.067199pt;}
.y6_c00332{bottom:905.947099pt;}
.y5_c00332{bottom:932.747643pt;}
.y4_c00332{bottom:959.627543pt;}
.y3_c00332{bottom:986.428087pt;}
.h5_c00332{height:34.967599pt;}
.h6_c00332{height:48.087599pt;}
.h2_c00332{height:55.645234pt;}
.h1_c00332{height:55.797187pt;}
.h4_c00332{height:56.192266pt;}
.h3_c00332{height:65.802838pt;}
.h0_c00332{height:1122.666667pt;}
.w0_c00332{width:793.333333pt;}
.x0_c00332{left:0.000000pt;}
.x2_c00332{left:73.520052pt;}
.x4_c00332{left:122.960396pt;}
.x6_c00332{left:146.240000pt;}
.x3_c00332{left:169.599940pt;}
.x5_c00332{left:305.040000pt;}
.x1_c00332{left:383.760000pt;}
.x7_c00332{left:654.240000pt;}
}





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

.ir_c00333:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00333{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00333;src:url('chunks/assets/font_7801b8b0d6a8852076d15d94.woff2')format("woff");}.ff1_c00333{font-family:ff1_c00333;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00333;src:url('chunks/assets/font_0b8c9a98d99b052108e45fc9.woff2')format("woff");}.ff2_c00333{font-family:ff2_c00333;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00333;src:url('chunks/assets/font_66c4c7ad69bed4802fca0b99.woff2')format("woff");}.ff3_c00333{font-family:ff3_c00333;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00333;src:url('chunks/assets/font_b5abfc694a1d76677b5737b8.woff2')format("woff");}.ff4_c00333{font-family:ff4_c00333;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00333;src:url('chunks/assets/font_5651799665b613ecde275e56.woff2')format("woff");}.ff5_c00333{font-family:ff5_c00333;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00333;src:url('chunks/assets/font_d2ef0493caf4dc7a3c7550a1.woff2')format("woff");}.ff6_c00333{font-family:ff6_c00333;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00333;src:url('chunks/assets/font_b7e42bb031fc4c1453afc453.woff2')format("woff");}.ff7_c00333{font-family:ff7_c00333;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00333{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00333{vertical-align:-14.760000px;}
.v0_c00333{vertical-align:0.000000px;}
.v1_c00333{vertical-align:32.040000px;}
.ls17_c00333{letter-spacing:-0.263099px;}
.lsf_c00333{letter-spacing:-0.146166px;}
.ls16_c00333{letter-spacing:-0.099393px;}
.ls13_c00333{letter-spacing:-0.093546px;}
.lse_c00333{letter-spacing:-0.075619px;}
.ls15_c00333{letter-spacing:-0.070160px;}
.ls6_c00333{letter-spacing:-0.063018px;}
.ls9_c00333{letter-spacing:-0.049014px;}
.lsc_c00333{letter-spacing:-0.035010px;}
.ls10_c00333{letter-spacing:-0.029233px;}
.lsd_c00333{letter-spacing:-0.028008px;}
.ls19_c00333{letter-spacing:-0.023387px;}
.ls8_c00333{letter-spacing:-0.021006px;}
.ls14_c00333{letter-spacing:-0.017540px;}
.lsb_c00333{letter-spacing:-0.014004px;}
.ls11_c00333{letter-spacing:-0.011693px;}
.lsa_c00333{letter-spacing:-0.007002px;}
.ls7_c00333{letter-spacing:0.000000px;}
.ls0_c00333{letter-spacing:0.007002px;}
.ls1_c00333{letter-spacing:0.014004px;}
.ls2_c00333{letter-spacing:0.023281px;}
.ls18_c00333{letter-spacing:0.058466px;}
.ls5_c00333{letter-spacing:0.076006px;}
.ls3_c00333{letter-spacing:0.146166px;}
.ls4_c00333{letter-spacing:0.362492px;}
.ls12_c00333{letter-spacing:0.409265px;}
.sc__c00333{text-shadow:none;}
.sc0_c00333{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00333{-webkit-text-stroke:0px transparent;}
.sc0_c00333{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00333{word-spacing:-58.466400px;}
.ws0_c00333{word-spacing:-12.967628px;}
.ws1_c00333{word-spacing:-10.397640px;}
.ws1f_c00333{word-spacing:-0.403418px;}
.ws18_c00333{word-spacing:-0.397572px;}
.ws16_c00333{word-spacing:-0.350798px;}
.ws3_c00333{word-spacing:0.000000px;}
.ws17_c00333{word-spacing:0.011693px;}
.ws5_c00333{word-spacing:0.014004px;}
.ws15_c00333{word-spacing:0.023387px;}
.ws21_c00333{word-spacing:0.029233px;}
.ws11_c00333{word-spacing:0.035010px;}
.ws20_c00333{word-spacing:0.035080px;}
.ws19_c00333{word-spacing:0.105240px;}
.wsa_c00333{word-spacing:0.357102px;}
.wsf_c00333{word-spacing:0.364104px;}
.ws10_c00333{word-spacing:0.371106px;}
.ws1a_c00333{word-spacing:0.391725px;}
.ws7_c00333{word-spacing:1.435410px;}
.ws8_c00333{word-spacing:1.792512px;}
.ws6_c00333{word-spacing:3.998142px;}
.ws13_c00333{word-spacing:4.361593px;}
.ws12_c00333{word-spacing:4.478526px;}
.ws14_c00333{word-spacing:4.548686px;}
.wsd_c00333{word-spacing:5.405544px;}
.ws4_c00333{word-spacing:6.126750px;}
.ws1b_c00333{word-spacing:6.565777px;}
.ws1c_c00333{word-spacing:6.589163px;}
.ws1d_c00333{word-spacing:6.595010px;}
.ws1e_c00333{word-spacing:6.758716px;}
.ws9_c00333{word-spacing:12.218490px;}
.wse_c00333{word-spacing:18.380250px;}
.wsb_c00333{word-spacing:25.529292px;}
.wsc_c00333{word-spacing:39.239208px;}
._4_c00333{margin-left:-7.254726px;}
._1_c00333{margin-left:-1.386396px;}
._0_c00333{width:1.274364px;}
._3_c00333{width:5.930694px;}
._2_c00333{width:7.919262px;}
.fc0_c00333{color:rgb(0,0,0);}
.fs2_c00333{font-size:37.809600px;}
.fs1_c00333{font-size:46.562400px;}
.fs3_c00333{font-size:58.466400px;}
.fs0_c00333{font-size:70.020000px;}
.y0_c00333{bottom:0.000000px;}
.y2_c00333{bottom:109.740968px;}
.y1_c00333{bottom:129.810450px;}
.y25_c00333{bottom:149.429891px;}
.y24_c00333{bottom:170.940450px;}
.y23_c00333{bottom:188.940450px;}
.y22_c00333{bottom:206.760450px;}
.y21_c00333{bottom:221.069891px;}
.y20_c00333{bottom:242.580450px;}
.y1f_c00333{bottom:257.250450px;}
.y1e_c00333{bottom:294.510450px;}
.y1d_c00333{bottom:324.750600px;}
.y1c_c00333{bottom:354.900450px;}
.y1b_c00333{bottom:385.140450px;}
.y1a_c00333{bottom:415.290600px;}
.y19_c00333{bottom:445.530600px;}
.y18_c00333{bottom:475.770600px;}
.y17_c00333{bottom:505.920450px;}
.y16_c00333{bottom:536.160450px;}
.y15_c00333{bottom:566.310450px;}
.y14_c00333{bottom:596.460450px;}
.y13_c00333{bottom:626.610450px;}
.y12_c00333{bottom:656.850450px;}
.y11_c00333{bottom:687.000450px;}
.y10_c00333{bottom:717.240450px;}
.yf_c00333{bottom:747.390450px;}
.ye_c00333{bottom:777.630450px;}
.yd_c00333{bottom:807.780450px;}
.yc_c00333{bottom:838.020450px;}
.yb_c00333{bottom:868.170450px;}
.ya_c00333{bottom:898.410450px;}
.y9_c00333{bottom:928.560450px;}
.y8_c00333{bottom:958.800450px;}
.y7_c00333{bottom:988.950450px;}
.y6_c00333{bottom:1019.190450px;}
.y5_c00333{bottom:1049.340450px;}
.y4_c00333{bottom:1079.580450px;}
.y3_c00333{bottom:1109.730450px;}
.h5_c00333{height:39.338549px;}
.h6_c00333{height:54.098549px;}
.h2_c00333{height:62.600889px;}
.h1_c00333{height:62.771836px;}
.h4_c00333{height:63.216299px;}
.h3_c00333{height:73.668786px;}
.h0_c00333{height:1263.000000px;}
.w0_c00333{width:892.500000px;}
.x0_c00333{left:0.000000px;}
.x2_c00333{left:82.710059px;}
.x3_c00333{left:138.330000px;}
.x4_c00333{left:164.520000px;}
.x7_c00333{left:190.800000px;}
.x1_c00333{left:431.730000px;}
.x5_c00333{left:724.860000px;}
.x6_c00333{left:739.710000px;}
@media print{
.v2_c00333{vertical-align:-13.120000pt;}
.v0_c00333{vertical-align:0.000000pt;}
.v1_c00333{vertical-align:28.480000pt;}
.ls17_c00333{letter-spacing:-0.233866pt;}
.lsf_c00333{letter-spacing:-0.129925pt;}
.ls16_c00333{letter-spacing:-0.088349pt;}
.ls13_c00333{letter-spacing:-0.083152pt;}
.lse_c00333{letter-spacing:-0.067217pt;}
.ls15_c00333{letter-spacing:-0.062364pt;}
.ls6_c00333{letter-spacing:-0.056016pt;}
.ls9_c00333{letter-spacing:-0.043568pt;}
.lsc_c00333{letter-spacing:-0.031120pt;}
.ls10_c00333{letter-spacing:-0.025985pt;}
.lsd_c00333{letter-spacing:-0.024896pt;}
.ls19_c00333{letter-spacing:-0.020788pt;}
.ls8_c00333{letter-spacing:-0.018672pt;}
.ls14_c00333{letter-spacing:-0.015591pt;}
.lsb_c00333{letter-spacing:-0.012448pt;}
.ls11_c00333{letter-spacing:-0.010394pt;}
.lsa_c00333{letter-spacing:-0.006224pt;}
.ls7_c00333{letter-spacing:0.000000pt;}
.ls0_c00333{letter-spacing:0.006224pt;}
.ls1_c00333{letter-spacing:0.012448pt;}
.ls2_c00333{letter-spacing:0.020694pt;}
.ls18_c00333{letter-spacing:0.051970pt;}
.ls5_c00333{letter-spacing:0.067561pt;}
.ls3_c00333{letter-spacing:0.129925pt;}
.ls4_c00333{letter-spacing:0.322215pt;}
.ls12_c00333{letter-spacing:0.363791pt;}
.ws2_c00333{word-spacing:-51.970133pt;}
.ws0_c00333{word-spacing:-11.526781pt;}
.ws1_c00333{word-spacing:-9.242347pt;}
.ws1f_c00333{word-spacing:-0.358594pt;}
.ws18_c00333{word-spacing:-0.353397pt;}
.ws16_c00333{word-spacing:-0.311821pt;}
.ws3_c00333{word-spacing:0.000000pt;}
.ws17_c00333{word-spacing:0.010394pt;}
.ws5_c00333{word-spacing:0.012448pt;}
.ws15_c00333{word-spacing:0.020788pt;}
.ws21_c00333{word-spacing:0.025985pt;}
.ws11_c00333{word-spacing:0.031120pt;}
.ws20_c00333{word-spacing:0.031182pt;}
.ws19_c00333{word-spacing:0.093546pt;}
.wsa_c00333{word-spacing:0.317424pt;}
.wsf_c00333{word-spacing:0.323648pt;}
.ws10_c00333{word-spacing:0.329872pt;}
.ws1a_c00333{word-spacing:0.348200pt;}
.ws7_c00333{word-spacing:1.275920pt;}
.ws8_c00333{word-spacing:1.593344pt;}
.ws6_c00333{word-spacing:3.553904pt;}
.ws13_c00333{word-spacing:3.876972pt;}
.ws12_c00333{word-spacing:3.980912pt;}
.ws14_c00333{word-spacing:4.043276pt;}
.wsd_c00333{word-spacing:4.804928pt;}
.ws4_c00333{word-spacing:5.446000pt;}
.ws1b_c00333{word-spacing:5.836246pt;}
.ws1c_c00333{word-spacing:5.857034pt;}
.ws1d_c00333{word-spacing:5.862231pt;}
.ws1e_c00333{word-spacing:6.007747pt;}
.ws9_c00333{word-spacing:10.860880pt;}
.wse_c00333{word-spacing:16.338000pt;}
.wsb_c00333{word-spacing:22.692704pt;}
.wsc_c00333{word-spacing:34.879296pt;}
._4_c00333{margin-left:-6.448645pt;}
._1_c00333{margin-left:-1.232352pt;}
._0_c00333{width:1.132768pt;}
._3_c00333{width:5.271728pt;}
._2_c00333{width:7.039344pt;}
.fs2_c00333{font-size:33.608533pt;}
.fs1_c00333{font-size:41.388800pt;}
.fs3_c00333{font-size:51.970133pt;}
.fs0_c00333{font-size:62.240000pt;}
.y0_c00333{bottom:0.000000pt;}
.y2_c00333{bottom:97.547527pt;}
.y1_c00333{bottom:115.387067pt;}
.y25_c00333{bottom:132.826570pt;}
.y24_c00333{bottom:151.947067pt;}
.y23_c00333{bottom:167.947067pt;}
.y22_c00333{bottom:183.787067pt;}
.y21_c00333{bottom:196.506570pt;}
.y20_c00333{bottom:215.627067pt;}
.y1f_c00333{bottom:228.667067pt;}
.y1e_c00333{bottom:261.787067pt;}
.y1d_c00333{bottom:288.667200pt;}
.y1c_c00333{bottom:315.467067pt;}
.y1b_c00333{bottom:342.347067pt;}
.y1a_c00333{bottom:369.147200pt;}
.y19_c00333{bottom:396.027200pt;}
.y18_c00333{bottom:422.907200pt;}
.y17_c00333{bottom:449.707067pt;}
.y16_c00333{bottom:476.587067pt;}
.y15_c00333{bottom:503.387067pt;}
.y14_c00333{bottom:530.187067pt;}
.y13_c00333{bottom:556.987067pt;}
.y12_c00333{bottom:583.867067pt;}
.y11_c00333{bottom:610.667067pt;}
.y10_c00333{bottom:637.547067pt;}
.yf_c00333{bottom:664.347067pt;}
.ye_c00333{bottom:691.227067pt;}
.yd_c00333{bottom:718.027067pt;}
.yc_c00333{bottom:744.907067pt;}
.yb_c00333{bottom:771.707067pt;}
.ya_c00333{bottom:798.587067pt;}
.y9_c00333{bottom:825.387067pt;}
.y8_c00333{bottom:852.267067pt;}
.y7_c00333{bottom:879.067067pt;}
.y6_c00333{bottom:905.947067pt;}
.y5_c00333{bottom:932.747067pt;}
.y4_c00333{bottom:959.627067pt;}
.y3_c00333{bottom:986.427067pt;}
.h5_c00333{height:34.967599pt;}
.h6_c00333{height:48.087599pt;}
.h2_c00333{height:55.645234pt;}
.h1_c00333{height:55.797187pt;}
.h4_c00333{height:56.192266pt;}
.h3_c00333{height:65.483366pt;}
.h0_c00333{height:1122.666667pt;}
.w0_c00333{width:793.333333pt;}
.x0_c00333{left:0.000000pt;}
.x2_c00333{left:73.520052pt;}
.x3_c00333{left:122.960000pt;}
.x4_c00333{left:146.240000pt;}
.x7_c00333{left:169.600000pt;}
.x1_c00333{left:383.760000pt;}
.x5_c00333{left:644.320000pt;}
.x6_c00333{left:657.520000pt;}
}





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

.ir_c00334:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00334{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00334;src:url('chunks/assets/font_c63e18c9249adbfbd7933289.woff2')format("woff");}.ff1_c00334{font-family:ff1_c00334;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00334;src:url('chunks/assets/font_fc12c63100ff5a9682ade04a.woff2')format("woff");}.ff2_c00334{font-family:ff2_c00334;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00334;src:url('chunks/assets/font_30f199ecc22421e378c4f53e.woff2')format("woff");}.ff3_c00334{font-family:ff3_c00334;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00334{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00334{vertical-align:0.000000px;}
.v1_c00334{vertical-align:32.040000px;}
.ls8_c00334{letter-spacing:-0.063018px;}
.lse_c00334{letter-spacing:-0.049014px;}
.lsb_c00334{letter-spacing:-0.035010px;}
.lsf_c00334{letter-spacing:-0.028008px;}
.lsa_c00334{letter-spacing:-0.021006px;}
.ls10_c00334{letter-spacing:-0.014004px;}
.lsd_c00334{letter-spacing:-0.007002px;}
.ls9_c00334{letter-spacing:0.000000px;}
.ls1_c00334{letter-spacing:0.007002px;}
.ls3_c00334{letter-spacing:0.021006px;}
.ls2_c00334{letter-spacing:0.023281px;}
.ls6_c00334{letter-spacing:0.035010px;}
.ls0_c00334{letter-spacing:0.070020px;}
.ls5_c00334{letter-spacing:0.182052px;}
.lsc_c00334{letter-spacing:0.315090px;}
.ls11_c00334{letter-spacing:0.343098px;}
.ls4_c00334{letter-spacing:0.441126px;}
.ls7_c00334{letter-spacing:8.976564px;}
.sc__c00334{text-shadow:none;}
.sc0_c00334{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00334{-webkit-text-stroke:0px transparent;}
.sc0_c00334{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00334{word-spacing:-19.535580px;}
.ws1_c00334{word-spacing:-12.967628px;}
.wsa_c00334{word-spacing:-0.329094px;}
.ws1f_c00334{word-spacing:-0.035010px;}
.ws17_c00334{word-spacing:-0.014004px;}
.ws2_c00334{word-spacing:0.000000px;}
.ws14_c00334{word-spacing:0.007002px;}
.ws24_c00334{word-spacing:0.014004px;}
.wse_c00334{word-spacing:0.035010px;}
.ws1b_c00334{word-spacing:0.371106px;}
.ws19_c00334{word-spacing:1.806516px;}
.ws10_c00334{word-spacing:2.149614px;}
.ws3_c00334{word-spacing:2.863818px;}
.ws20_c00334{word-spacing:8.633466px;}
.ws21_c00334{word-spacing:8.990568px;}
.ws1c_c00334{word-spacing:9.368676px;}
.wsf_c00334{word-spacing:9.375678px;}
.wsb_c00334{word-spacing:9.711774px;}
.ws6_c00334{word-spacing:11.140182px;}
.ws7_c00334{word-spacing:11.539296px;}
.ws13_c00334{word-spacing:14.739210px;}
.ws15_c00334{word-spacing:15.481422px;}
.ws12_c00334{word-spacing:16.573734px;}
.ws11_c00334{word-spacing:16.580736px;}
.ws1d_c00334{word-spacing:17.280936px;}
.ws1e_c00334{word-spacing:17.287938px;}
.ws1a_c00334{word-spacing:18.023148px;}
.ws16_c00334{word-spacing:18.674334px;}
.ws23_c00334{word-spacing:19.059444px;}
.ws22_c00334{word-spacing:19.087452px;}
.wsd_c00334{word-spacing:20.144754px;}
.wsc_c00334{word-spacing:20.151756px;}
.ws4_c00334{word-spacing:20.529864px;}
.ws5_c00334{word-spacing:20.543868px;}
.ws18_c00334{word-spacing:20.865960px;}
.ws9_c00334{word-spacing:27.321804px;}
.ws8_c00334{word-spacing:27.405828px;}
._0_c00334{margin-left:-1.218348px;}
._1_c00334{width:1.211346px;}
.fc0_c00334{color:rgb(0,0,0);}
.fs1_c00334{font-size:46.562400px;}
.fs0_c00334{font-size:70.020000px;}
.y0_c00334{bottom:0.000000px;}
.y2_c00334{bottom:109.740968px;}
.y1_c00334{bottom:129.810450px;}
.y22_c00334{bottom:173.730450px;}
.y21_c00334{bottom:203.970450px;}
.y20_c00334{bottom:234.120600px;}
.y1f_c00334{bottom:264.360450px;}
.y1e_c00334{bottom:294.510450px;}
.y1d_c00334{bottom:324.750600px;}
.y1c_c00334{bottom:354.900450px;}
.y1b_c00334{bottom:385.140450px;}
.y1a_c00334{bottom:415.290600px;}
.y19_c00334{bottom:445.530600px;}
.y18_c00334{bottom:475.770600px;}
.y17_c00334{bottom:505.920450px;}
.y16_c00334{bottom:536.160450px;}
.y15_c00334{bottom:566.310450px;}
.y14_c00334{bottom:596.460450px;}
.y13_c00334{bottom:626.610450px;}
.y12_c00334{bottom:656.850450px;}
.y11_c00334{bottom:687.000450px;}
.y10_c00334{bottom:717.240450px;}
.yf_c00334{bottom:747.390450px;}
.ye_c00334{bottom:777.630450px;}
.yd_c00334{bottom:807.780450px;}
.yc_c00334{bottom:838.020450px;}
.yb_c00334{bottom:868.170450px;}
.ya_c00334{bottom:898.410450px;}
.y9_c00334{bottom:928.560450px;}
.y8_c00334{bottom:958.800450px;}
.y7_c00334{bottom:988.950450px;}
.y6_c00334{bottom:1019.190450px;}
.y5_c00334{bottom:1049.340450px;}
.y4_c00334{bottom:1079.580450px;}
.y3_c00334{bottom:1109.730450px;}
.h4_c00334{height:62.600889px;}
.h1_c00334{height:62.771836px;}
.h2_c00334{height:63.216299px;}
.h5_c00334{height:73.668786px;}
.h3_c00334{height:73.782464px;}
.h0_c00334{height:1263.000000px;}
.w0_c00334{width:892.500000px;}
.x0_c00334{left:0.000000px;}
.x2_c00334{left:82.710059px;}
.x3_c00334{left:138.330000px;}
.x4_c00334{left:190.800000px;}
.x1_c00334{left:431.730000px;}
@media print{
.v0_c00334{vertical-align:0.000000pt;}
.v1_c00334{vertical-align:28.480000pt;}
.ls8_c00334{letter-spacing:-0.056016pt;}
.lse_c00334{letter-spacing:-0.043568pt;}
.lsb_c00334{letter-spacing:-0.031120pt;}
.lsf_c00334{letter-spacing:-0.024896pt;}
.lsa_c00334{letter-spacing:-0.018672pt;}
.ls10_c00334{letter-spacing:-0.012448pt;}
.lsd_c00334{letter-spacing:-0.006224pt;}
.ls9_c00334{letter-spacing:0.000000pt;}
.ls1_c00334{letter-spacing:0.006224pt;}
.ls3_c00334{letter-spacing:0.018672pt;}
.ls2_c00334{letter-spacing:0.020694pt;}
.ls6_c00334{letter-spacing:0.031120pt;}
.ls0_c00334{letter-spacing:0.062240pt;}
.ls5_c00334{letter-spacing:0.161824pt;}
.lsc_c00334{letter-spacing:0.280080pt;}
.ls11_c00334{letter-spacing:0.304976pt;}
.ls4_c00334{letter-spacing:0.392112pt;}
.ls7_c00334{letter-spacing:7.979168pt;}
.ws0_c00334{word-spacing:-17.364960pt;}
.ws1_c00334{word-spacing:-11.526781pt;}
.wsa_c00334{word-spacing:-0.292528pt;}
.ws1f_c00334{word-spacing:-0.031120pt;}
.ws17_c00334{word-spacing:-0.012448pt;}
.ws2_c00334{word-spacing:0.000000pt;}
.ws14_c00334{word-spacing:0.006224pt;}
.ws24_c00334{word-spacing:0.012448pt;}
.wse_c00334{word-spacing:0.031120pt;}
.ws1b_c00334{word-spacing:0.329872pt;}
.ws19_c00334{word-spacing:1.605792pt;}
.ws10_c00334{word-spacing:1.910768pt;}
.ws3_c00334{word-spacing:2.545616pt;}
.ws20_c00334{word-spacing:7.674192pt;}
.ws21_c00334{word-spacing:7.991616pt;}
.ws1c_c00334{word-spacing:8.327712pt;}
.wsf_c00334{word-spacing:8.333936pt;}
.wsb_c00334{word-spacing:8.632688pt;}
.ws6_c00334{word-spacing:9.902384pt;}
.ws7_c00334{word-spacing:10.257152pt;}
.ws13_c00334{word-spacing:13.101520pt;}
.ws15_c00334{word-spacing:13.761264pt;}
.ws12_c00334{word-spacing:14.732208pt;}
.ws11_c00334{word-spacing:14.738432pt;}
.ws1d_c00334{word-spacing:15.360832pt;}
.ws1e_c00334{word-spacing:15.367056pt;}
.ws1a_c00334{word-spacing:16.020576pt;}
.ws16_c00334{word-spacing:16.599408pt;}
.ws23_c00334{word-spacing:16.941728pt;}
.ws22_c00334{word-spacing:16.966624pt;}
.wsd_c00334{word-spacing:17.906448pt;}
.wsc_c00334{word-spacing:17.912672pt;}
.ws4_c00334{word-spacing:18.248768pt;}
.ws5_c00334{word-spacing:18.261216pt;}
.ws18_c00334{word-spacing:18.547520pt;}
.ws9_c00334{word-spacing:24.286048pt;}
.ws8_c00334{word-spacing:24.360736pt;}
._0_c00334{margin-left:-1.082976pt;}
._1_c00334{width:1.076752pt;}
.fs1_c00334{font-size:41.388800pt;}
.fs0_c00334{font-size:62.240000pt;}
.y0_c00334{bottom:0.000000pt;}
.y2_c00334{bottom:97.547527pt;}
.y1_c00334{bottom:115.387067pt;}
.y22_c00334{bottom:154.427067pt;}
.y21_c00334{bottom:181.307067pt;}
.y20_c00334{bottom:208.107200pt;}
.y1f_c00334{bottom:234.987067pt;}
.y1e_c00334{bottom:261.787067pt;}
.y1d_c00334{bottom:288.667200pt;}
.y1c_c00334{bottom:315.467067pt;}
.y1b_c00334{bottom:342.347067pt;}
.y1a_c00334{bottom:369.147200pt;}
.y19_c00334{bottom:396.027200pt;}
.y18_c00334{bottom:422.907200pt;}
.y17_c00334{bottom:449.707067pt;}
.y16_c00334{bottom:476.587067pt;}
.y15_c00334{bottom:503.387067pt;}
.y14_c00334{bottom:530.187067pt;}
.y13_c00334{bottom:556.987067pt;}
.y12_c00334{bottom:583.867067pt;}
.y11_c00334{bottom:610.667067pt;}
.y10_c00334{bottom:637.547067pt;}
.yf_c00334{bottom:664.347067pt;}
.ye_c00334{bottom:691.227067pt;}
.yd_c00334{bottom:718.027067pt;}
.yc_c00334{bottom:744.907067pt;}
.yb_c00334{bottom:771.707067pt;}
.ya_c00334{bottom:798.587067pt;}
.y9_c00334{bottom:825.387067pt;}
.y8_c00334{bottom:852.267067pt;}
.y7_c00334{bottom:879.067067pt;}
.y6_c00334{bottom:905.947067pt;}
.y5_c00334{bottom:932.747067pt;}
.y4_c00334{bottom:959.627067pt;}
.y3_c00334{bottom:986.427067pt;}
.h4_c00334{height:55.645234pt;}
.h1_c00334{height:55.797187pt;}
.h2_c00334{height:56.192266pt;}
.h5_c00334{height:65.483366pt;}
.h3_c00334{height:65.584413pt;}
.h0_c00334{height:1122.666667pt;}
.w0_c00334{width:793.333333pt;}
.x0_c00334{left:0.000000pt;}
.x2_c00334{left:73.520052pt;}
.x3_c00334{left:122.960000pt;}
.x4_c00334{left:169.600000pt;}
.x1_c00334{left:383.760000pt;}
}





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

.ir_c00335:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00335{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00335;src:url('chunks/assets/font_cb9bbfb10173f059606049e5.woff2')format("woff");}.ff1_c00335{font-family:ff1_c00335;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00335;src:url('chunks/assets/font_81c80725cb090d4a3beb0df7.woff2')format("woff");}.ff2_c00335{font-family:ff2_c00335;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00335;src:url('chunks/assets/font_20550fce19adc28743a8af69.woff2')format("woff");}.ff3_c00335{font-family:ff3_c00335;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00335{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00335{vertical-align:0.000000px;}
.v1_c00335{vertical-align:32.040000px;}
.ls4_c00335{letter-spacing:-0.063018px;}
.lsb_c00335{letter-spacing:-0.042012px;}
.ls9_c00335{letter-spacing:-0.035010px;}
.ls6_c00335{letter-spacing:-0.028008px;}
.ls8_c00335{letter-spacing:-0.021006px;}
.ls7_c00335{letter-spacing:-0.014004px;}
.lsa_c00335{letter-spacing:-0.007002px;}
.ls5_c00335{letter-spacing:0.000000px;}
.ls2_c00335{letter-spacing:0.014004px;}
.ls3_c00335{letter-spacing:0.023281px;}
.ls0_c00335{letter-spacing:0.042012px;}
.ls1_c00335{letter-spacing:0.070020px;}
.sc__c00335{text-shadow:none;}
.sc0_c00335{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00335{-webkit-text-stroke:0px transparent;}
.sc0_c00335{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00335{word-spacing:-19.535580px;}
.ws1_c00335{word-spacing:-12.967628px;}
.ws3_c00335{word-spacing:-0.056016px;}
.ws2_c00335{word-spacing:0.000000px;}
.ws15_c00335{word-spacing:0.014004px;}
.wsd_c00335{word-spacing:0.350100px;}
.ws14_c00335{word-spacing:0.385110px;}
.ws11_c00335{word-spacing:0.735210px;}
.ws4_c00335{word-spacing:1.785510px;}
.wsb_c00335{word-spacing:5.370534px;}
.wsc_c00335{word-spacing:5.412546px;}
.ws5_c00335{word-spacing:5.776650px;}
.ws6_c00335{word-spacing:6.476850px;}
.ws9_c00335{word-spacing:7.548156px;}
.ws13_c00335{word-spacing:7.562160px;}
.wse_c00335{word-spacing:8.983566px;}
.ws7_c00335{word-spacing:11.525292px;}
.ws8_c00335{word-spacing:11.539296px;}
.ws12_c00335{word-spacing:12.253500px;}
.wsa_c00335{word-spacing:20.130750px;}
.ws10_c00335{word-spacing:58.697766px;}
.wsf_c00335{word-spacing:67.674330px;}
._1_c00335{margin-left:-1.057302px;}
._2_c00335{width:1.148328px;}
._0_c00335{width:7.919262px;}
.fc0_c00335{color:rgb(0,0,0);}
.fs1_c00335{font-size:46.562400px;}
.fs0_c00335{font-size:70.020000px;}
.y0_c00335{bottom:0.000000px;}
.y2_c00335{bottom:109.740968px;}
.y1_c00335{bottom:129.810450px;}
.y1a_c00335{bottom:151.051118px;}
.y19_c00335{bottom:171.120600px;}
.y18_c00335{bottom:202.080450px;}
.y17_c00335{bottom:232.320450px;}
.y16_c00335{bottom:262.470450px;}
.y15_c00335{bottom:292.710450px;}
.y14_c00335{bottom:322.950450px;}
.y13_c00335{bottom:353.100450px;}
.y12_c00335{bottom:383.340450px;}
.y11_c00335{bottom:413.490450px;}
.y10_c00335{bottom:443.730450px;}
.yf_c00335{bottom:473.880450px;}
.ye_c00335{bottom:504.030600px;}
.yd_c00335{bottom:534.180450px;}
.yc_c00335{bottom:564.420450px;}
.yb_c00335{bottom:594.570450px;}
.ya_c00335{bottom:624.810450px;}
.y9_c00335{bottom:654.960450px;}
.y8_c00335{bottom:685.200450px;}
.y7_c00335{bottom:715.350450px;}
.y6_c00335{bottom:745.590450px;}
.y5_c00335{bottom:775.740450px;}
.y4_c00335{bottom:805.980450px;}
.y3_c00335{bottom:836.130450px;}
.h3_c00335{height:62.600889px;}
.h1_c00335{height:62.771836px;}
.h2_c00335{height:63.216299px;}
.h4_c00335{height:73.668786px;}
.h0_c00335{height:1263.000000px;}
.w0_c00335{width:892.500000px;}
.x0_c00335{left:0.000000px;}
.x2_c00335{left:82.710059px;}
.x3_c00335{left:138.330000px;}
.x4_c00335{left:164.520000px;}
.x5_c00335{left:190.800000px;}
.x6_c00335{left:339.750000px;}
.x1_c00335{left:431.730000px;}
.x7_c00335{left:446.399212px;}
@media print{
.v0_c00335{vertical-align:0.000000pt;}
.v1_c00335{vertical-align:28.480000pt;}
.ls4_c00335{letter-spacing:-0.056016pt;}
.lsb_c00335{letter-spacing:-0.037344pt;}
.ls9_c00335{letter-spacing:-0.031120pt;}
.ls6_c00335{letter-spacing:-0.024896pt;}
.ls8_c00335{letter-spacing:-0.018672pt;}
.ls7_c00335{letter-spacing:-0.012448pt;}
.lsa_c00335{letter-spacing:-0.006224pt;}
.ls5_c00335{letter-spacing:0.000000pt;}
.ls2_c00335{letter-spacing:0.012448pt;}
.ls3_c00335{letter-spacing:0.020694pt;}
.ls0_c00335{letter-spacing:0.037344pt;}
.ls1_c00335{letter-spacing:0.062240pt;}
.ws0_c00335{word-spacing:-17.364960pt;}
.ws1_c00335{word-spacing:-11.526781pt;}
.ws3_c00335{word-spacing:-0.049792pt;}
.ws2_c00335{word-spacing:0.000000pt;}
.ws15_c00335{word-spacing:0.012448pt;}
.wsd_c00335{word-spacing:0.311200pt;}
.ws14_c00335{word-spacing:0.342320pt;}
.ws11_c00335{word-spacing:0.653520pt;}
.ws4_c00335{word-spacing:1.587120pt;}
.wsb_c00335{word-spacing:4.773808pt;}
.wsc_c00335{word-spacing:4.811152pt;}
.ws5_c00335{word-spacing:5.134800pt;}
.ws6_c00335{word-spacing:5.757200pt;}
.ws9_c00335{word-spacing:6.709472pt;}
.ws13_c00335{word-spacing:6.721920pt;}
.wse_c00335{word-spacing:7.985392pt;}
.ws7_c00335{word-spacing:10.244704pt;}
.ws8_c00335{word-spacing:10.257152pt;}
.ws12_c00335{word-spacing:10.892000pt;}
.wsa_c00335{word-spacing:17.894000pt;}
.ws10_c00335{word-spacing:52.175792pt;}
.wsf_c00335{word-spacing:60.154960pt;}
._1_c00335{margin-left:-0.939824pt;}
._2_c00335{width:1.020736pt;}
._0_c00335{width:7.039344pt;}
.fs1_c00335{font-size:41.388800pt;}
.fs0_c00335{font-size:62.240000pt;}
.y0_c00335{bottom:0.000000pt;}
.y2_c00335{bottom:97.547527pt;}
.y1_c00335{bottom:115.387067pt;}
.y1a_c00335{bottom:134.267660pt;}
.y19_c00335{bottom:152.107200pt;}
.y18_c00335{bottom:179.627067pt;}
.y17_c00335{bottom:206.507067pt;}
.y16_c00335{bottom:233.307067pt;}
.y15_c00335{bottom:260.187067pt;}
.y14_c00335{bottom:287.067067pt;}
.y13_c00335{bottom:313.867067pt;}
.y12_c00335{bottom:340.747067pt;}
.y11_c00335{bottom:367.547067pt;}
.y10_c00335{bottom:394.427067pt;}
.yf_c00335{bottom:421.227067pt;}
.ye_c00335{bottom:448.027200pt;}
.yd_c00335{bottom:474.827067pt;}
.yc_c00335{bottom:501.707067pt;}
.yb_c00335{bottom:528.507067pt;}
.ya_c00335{bottom:555.387067pt;}
.y9_c00335{bottom:582.187067pt;}
.y8_c00335{bottom:609.067067pt;}
.y7_c00335{bottom:635.867067pt;}
.y6_c00335{bottom:662.747067pt;}
.y5_c00335{bottom:689.547067pt;}
.y4_c00335{bottom:716.427067pt;}
.y3_c00335{bottom:743.227067pt;}
.h3_c00335{height:55.645234pt;}
.h1_c00335{height:55.797187pt;}
.h2_c00335{height:56.192266pt;}
.h4_c00335{height:65.483366pt;}
.h0_c00335{height:1122.666667pt;}
.w0_c00335{width:793.333333pt;}
.x0_c00335{left:0.000000pt;}
.x2_c00335{left:73.520052pt;}
.x3_c00335{left:122.960000pt;}
.x4_c00335{left:146.240000pt;}
.x5_c00335{left:169.600000pt;}
.x6_c00335{left:302.000000pt;}
.x1_c00335{left:383.760000pt;}
.x7_c00335{left:396.799300pt;}
}





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

.ir_c00336:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00336{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00336;src:url('chunks/assets/font_cbea763e1db00149050c4e1a.woff2')format("woff");}.ff1_c00336{font-family:ff1_c00336;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00336;src:url('chunks/assets/font_6e010a587b0e29cb8036e72c.woff2')format("woff");}.ff2_c00336{font-family:ff2_c00336;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00336;src:url('chunks/assets/font_d5cf825de74f9debc3a3c636.woff2')format("woff");}.ff3_c00336{font-family:ff3_c00336;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00336{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00336{vertical-align:0.000000px;}
.ls6_c00336{letter-spacing:-0.091026px;}
.ls4_c00336{letter-spacing:-0.063018px;}
.lse_c00336{letter-spacing:-0.056016px;}
.lsd_c00336{letter-spacing:-0.049014px;}
.ls9_c00336{letter-spacing:-0.042012px;}
.ls8_c00336{letter-spacing:-0.035010px;}
.ls7_c00336{letter-spacing:-0.028008px;}
.lsf_c00336{letter-spacing:-0.021006px;}
.lsa_c00336{letter-spacing:-0.014004px;}
.lsc_c00336{letter-spacing:-0.007002px;}
.ls5_c00336{letter-spacing:0.000000px;}
.ls1_c00336{letter-spacing:0.007002px;}
.ls2_c00336{letter-spacing:0.014004px;}
.ls3_c00336{letter-spacing:0.021006px;}
.ls10_c00336{letter-spacing:0.343098px;}
.ls0_c00336{letter-spacing:25.172190px;}
.lsb_c00336{letter-spacing:35.983278px;}
.sc__c00336{text-shadow:none;}
.sc0_c00336{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00336{-webkit-text-stroke:0px transparent;}
.sc0_c00336{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00336{word-spacing:-0.021006px;}
.ws0_c00336{word-spacing:0.000000px;}
.ws17_c00336{word-spacing:0.014004px;}
.ws6_c00336{word-spacing:0.028008px;}
.ws1b_c00336{word-spacing:0.378108px;}
.wsc_c00336{word-spacing:0.385110px;}
.ws13_c00336{word-spacing:2.191626px;}
.wsf_c00336{word-spacing:2.555730px;}
.wsb_c00336{word-spacing:6.448842px;}
.ws11_c00336{word-spacing:7.590168px;}
.ws10_c00336{word-spacing:7.604172px;}
.ws1f_c00336{word-spacing:8.262360px;}
.ws28_c00336{word-spacing:9.389682px;}
.ws23_c00336{word-spacing:12.204486px;}
.ws21_c00336{word-spacing:13.303800px;}
.ws27_c00336{word-spacing:13.695912px;}
.ws1a_c00336{word-spacing:14.067018px;}
.ws12_c00336{word-spacing:14.753214px;}
.ws20_c00336{word-spacing:16.223634px;}
.ws22_c00336{word-spacing:16.559730px;}
.ws4_c00336{word-spacing:19.458558px;}
.ws9_c00336{word-spacing:20.137752px;}
.ws8_c00336{word-spacing:20.158758px;}
.ws14_c00336{word-spacing:20.900970px;}
.ws16_c00336{word-spacing:23.764788px;}
.ws2_c00336{word-spacing:24.857100px;}
.ws1_c00336{word-spacing:24.920118px;}
.ws26_c00336{word-spacing:31.670046px;}
.wse_c00336{word-spacing:35.990280px;}
.wsd_c00336{word-spacing:36.074304px;}
.ws1c_c00336{word-spacing:37.103598px;}
.wsa_c00336{word-spacing:37.817802px;}
.ws25_c00336{word-spacing:37.824804px;}
.ws1e_c00336{word-spacing:39.239208px;}
.ws7_c00336{word-spacing:47.522574px;}
.ws24_c00336{word-spacing:52.550010px;}
.ws1d_c00336{word-spacing:60.098166px;}
.ws15_c00336{word-spacing:65.874816px;}
.ws19_c00336{word-spacing:78.450408px;}
.ws3_c00336{word-spacing:90.346806px;}
.ws18_c00336{word-spacing:98.672184px;}
._2_c00336{margin-left:-12.449556px;}
._1_c00336{margin-left:-1.050300px;}
._0_c00336{width:1.029294px;}
.fc0_c00336{color:rgb(0,0,0);}
.fs0_c00336{font-size:70.020000px;}
.y0_c00336{bottom:0.000000px;}
.y2_c00336{bottom:109.740968px;}
.y1_c00336{bottom:129.810450px;}
.y2c_c00336{bottom:173.730450px;}
.y2b_c00336{bottom:203.970450px;}
.y2a_c00336{bottom:234.120600px;}
.y29_c00336{bottom:264.360450px;}
.y28_c00336{bottom:294.510450px;}
.y27_c00336{bottom:324.750600px;}
.y26_c00336{bottom:354.900450px;}
.y25_c00336{bottom:385.140450px;}
.y24_c00336{bottom:415.290600px;}
.y23_c00336{bottom:445.530600px;}
.y22_c00336{bottom:475.770600px;}
.y21_c00336{bottom:505.920450px;}
.y20_c00336{bottom:536.160450px;}
.y1f_c00336{bottom:566.310450px;}
.y1e_c00336{bottom:596.460450px;}
.y1d_c00336{bottom:626.610450px;}
.y1c_c00336{bottom:656.850450px;}
.yf_c00336{bottom:686.099753px;}
.y1b_c00336{bottom:687.000450px;}
.y1a_c00336{bottom:717.240450px;}
.ye_c00336{bottom:736.680450px;}
.y19_c00336{bottom:747.390450px;}
.y18_c00336{bottom:777.630450px;}
.yd_c00336{bottom:787.439280px;}
.y17_c00336{bottom:807.780450px;}
.yc_c00336{bottom:817.589892px;}
.y16_c00336{bottom:838.020450px;}
.yb_c00336{bottom:847.829779px;}
.y15_c00336{bottom:868.170450px;}
.ya_c00336{bottom:877.980391px;}
.y14_c00336{bottom:898.410450px;}
.y9_c00336{bottom:908.220279px;}
.y13_c00336{bottom:928.560450px;}
.y8_c00336{bottom:938.370891px;}
.y12_c00336{bottom:958.800450px;}
.y7_c00336{bottom:968.610779px;}
.y11_c00336{bottom:988.950450px;}
.y6_c00336{bottom:1019.100450px;}
.y10_c00336{bottom:1019.190450px;}
.y5_c00336{bottom:1049.340450px;}
.y4_c00336{bottom:1079.580450px;}
.y3_c00336{bottom:1109.730450px;}
.h3_c00336{height:62.600889px;}
.h1_c00336{height:62.771836px;}
.h2_c00336{height:63.216299px;}
.h0_c00336{height:1263.000000px;}
.w0_c00336{width:892.500000px;}
.x0_c00336{left:0.000000px;}
.x2_c00336{left:82.710059px;}
.x3_c00336{left:138.960000px;}
.x1_c00336{left:431.730000px;}
.x4_c00336{left:454.230000px;}
@media print{
.v0_c00336{vertical-align:0.000000pt;}
.ls6_c00336{letter-spacing:-0.080912pt;}
.ls4_c00336{letter-spacing:-0.056016pt;}
.lse_c00336{letter-spacing:-0.049792pt;}
.lsd_c00336{letter-spacing:-0.043568pt;}
.ls9_c00336{letter-spacing:-0.037344pt;}
.ls8_c00336{letter-spacing:-0.031120pt;}
.ls7_c00336{letter-spacing:-0.024896pt;}
.lsf_c00336{letter-spacing:-0.018672pt;}
.lsa_c00336{letter-spacing:-0.012448pt;}
.lsc_c00336{letter-spacing:-0.006224pt;}
.ls5_c00336{letter-spacing:0.000000pt;}
.ls1_c00336{letter-spacing:0.006224pt;}
.ls2_c00336{letter-spacing:0.012448pt;}
.ls3_c00336{letter-spacing:0.018672pt;}
.ls10_c00336{letter-spacing:0.304976pt;}
.ls0_c00336{letter-spacing:22.375280pt;}
.lsb_c00336{letter-spacing:31.985136pt;}
.ws5_c00336{word-spacing:-0.018672pt;}
.ws0_c00336{word-spacing:0.000000pt;}
.ws17_c00336{word-spacing:0.012448pt;}
.ws6_c00336{word-spacing:0.024896pt;}
.ws1b_c00336{word-spacing:0.336096pt;}
.wsc_c00336{word-spacing:0.342320pt;}
.ws13_c00336{word-spacing:1.948112pt;}
.wsf_c00336{word-spacing:2.271760pt;}
.wsb_c00336{word-spacing:5.732304pt;}
.ws11_c00336{word-spacing:6.746816pt;}
.ws10_c00336{word-spacing:6.759264pt;}
.ws1f_c00336{word-spacing:7.344320pt;}
.ws28_c00336{word-spacing:8.346384pt;}
.ws23_c00336{word-spacing:10.848432pt;}
.ws21_c00336{word-spacing:11.825600pt;}
.ws27_c00336{word-spacing:12.174144pt;}
.ws1a_c00336{word-spacing:12.504016pt;}
.ws12_c00336{word-spacing:13.113968pt;}
.ws20_c00336{word-spacing:14.421008pt;}
.ws22_c00336{word-spacing:14.719760pt;}
.ws4_c00336{word-spacing:17.296496pt;}
.ws9_c00336{word-spacing:17.900224pt;}
.ws8_c00336{word-spacing:17.918896pt;}
.ws14_c00336{word-spacing:18.578640pt;}
.ws16_c00336{word-spacing:21.124256pt;}
.ws2_c00336{word-spacing:22.095200pt;}
.ws1_c00336{word-spacing:22.151216pt;}
.ws26_c00336{word-spacing:28.151152pt;}
.wse_c00336{word-spacing:31.991360pt;}
.wsd_c00336{word-spacing:32.066048pt;}
.ws1c_c00336{word-spacing:32.980976pt;}
.wsa_c00336{word-spacing:33.615824pt;}
.ws25_c00336{word-spacing:33.622048pt;}
.ws1e_c00336{word-spacing:34.879296pt;}
.ws7_c00336{word-spacing:42.242288pt;}
.ws24_c00336{word-spacing:46.711120pt;}
.ws1d_c00336{word-spacing:53.420592pt;}
.ws15_c00336{word-spacing:58.555392pt;}
.ws19_c00336{word-spacing:69.733696pt;}
.ws3_c00336{word-spacing:80.308272pt;}
.ws18_c00336{word-spacing:87.708608pt;}
._2_c00336{margin-left:-11.066272pt;}
._1_c00336{margin-left:-0.933600pt;}
._0_c00336{width:0.914928pt;}
.fs0_c00336{font-size:62.240000pt;}
.y0_c00336{bottom:0.000000pt;}
.y2_c00336{bottom:97.547527pt;}
.y1_c00336{bottom:115.387067pt;}
.y2c_c00336{bottom:154.427067pt;}
.y2b_c00336{bottom:181.307067pt;}
.y2a_c00336{bottom:208.107200pt;}
.y29_c00336{bottom:234.987067pt;}
.y28_c00336{bottom:261.787067pt;}
.y27_c00336{bottom:288.667200pt;}
.y26_c00336{bottom:315.467067pt;}
.y25_c00336{bottom:342.347067pt;}
.y24_c00336{bottom:369.147200pt;}
.y23_c00336{bottom:396.027200pt;}
.y22_c00336{bottom:422.907200pt;}
.y21_c00336{bottom:449.707067pt;}
.y20_c00336{bottom:476.587067pt;}
.y1f_c00336{bottom:503.387067pt;}
.y1e_c00336{bottom:530.187067pt;}
.y1d_c00336{bottom:556.987067pt;}
.y1c_c00336{bottom:583.867067pt;}
.yf_c00336{bottom:609.866447pt;}
.y1b_c00336{bottom:610.667067pt;}
.y1a_c00336{bottom:637.547067pt;}
.ye_c00336{bottom:654.827067pt;}
.y19_c00336{bottom:664.347067pt;}
.y18_c00336{bottom:691.227067pt;}
.yd_c00336{bottom:699.946027pt;}
.y17_c00336{bottom:718.027067pt;}
.yc_c00336{bottom:726.746571pt;}
.y16_c00336{bottom:744.907067pt;}
.yb_c00336{bottom:753.626471pt;}
.y15_c00336{bottom:771.707067pt;}
.ya_c00336{bottom:780.427015pt;}
.y14_c00336{bottom:798.587067pt;}
.y9_c00336{bottom:807.306915pt;}
.y13_c00336{bottom:825.387067pt;}
.y8_c00336{bottom:834.107459pt;}
.y12_c00336{bottom:852.267067pt;}
.y7_c00336{bottom:860.987359pt;}
.y11_c00336{bottom:879.067067pt;}
.y6_c00336{bottom:905.867067pt;}
.y10_c00336{bottom:905.947067pt;}
.y5_c00336{bottom:932.747067pt;}
.y4_c00336{bottom:959.627067pt;}
.y3_c00336{bottom:986.427067pt;}
.h3_c00336{height:55.645234pt;}
.h1_c00336{height:55.797187pt;}
.h2_c00336{height:56.192266pt;}
.h0_c00336{height:1122.666667pt;}
.w0_c00336{width:793.333333pt;}
.x0_c00336{left:0.000000pt;}
.x2_c00336{left:73.520052pt;}
.x3_c00336{left:123.520000pt;}
.x1_c00336{left:383.760000pt;}
.x4_c00336{left:403.760000pt;}
}





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

.ir_c00337:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00337{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00337;src:url('chunks/assets/font_30b02241548f83de569144bc.woff2')format("woff");}.ff1_c00337{font-family:ff1_c00337;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00337;src:url('chunks/assets/font_7a06f3590229af3f081fcb5b.woff2')format("woff");}.ff2_c00337{font-family:ff2_c00337;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00337;src:url('chunks/assets/font_85f8746d0300547e05900bd3.woff2')format("woff");}.ff3_c00337{font-family:ff3_c00337;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00337;src:url('chunks/assets/font_da8db6f026be86aba663d796.woff2')format("woff");}.ff4_c00337{font-family:ff4_c00337;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00337{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00337{vertical-align:-14.760600px;}
.v0_c00337{vertical-align:0.000000px;}
.v1_c00337{vertical-align:32.400000px;}
.lse_c00337{letter-spacing:-0.116933px;}
.lsd_c00337{letter-spacing:-0.075619px;}
.ls5_c00337{letter-spacing:-0.063018px;}
.ls9_c00337{letter-spacing:-0.056016px;}
.lsb_c00337{letter-spacing:-0.049014px;}
.lsa_c00337{letter-spacing:-0.042012px;}
.ls7_c00337{letter-spacing:-0.028008px;}
.ls8_c00337{letter-spacing:-0.014004px;}
.ls6_c00337{letter-spacing:0.000000px;}
.ls2_c00337{letter-spacing:0.007002px;}
.ls1_c00337{letter-spacing:0.021006px;}
.ls4_c00337{letter-spacing:0.023281px;}
.ls3_c00337{letter-spacing:0.028008px;}
.ls0_c00337{letter-spacing:0.056016px;}
.lsc_c00337{letter-spacing:0.231066px;}
.sc__c00337{text-shadow:none;}
.sc0_c00337{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00337{-webkit-text-stroke:0px transparent;}
.sc0_c00337{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00337{word-spacing:-12.967628px;}
.ws1_c00337{word-spacing:-10.397640px;}
.ws15_c00337{word-spacing:-0.245070px;}
.ws2_c00337{word-spacing:0.000000px;}
.ws14_c00337{word-spacing:0.014004px;}
.ws16_c00337{word-spacing:0.134473px;}
.ws4_c00337{word-spacing:0.357102px;}
.ws8_c00337{word-spacing:3.963132px;}
.ws12_c00337{word-spacing:4.656330px;}
.ws9_c00337{word-spacing:4.691340px;}
.ws7_c00337{word-spacing:4.705344px;}
.wsf_c00337{word-spacing:8.269362px;}
.wse_c00337{word-spacing:8.297370px;}
.wsa_c00337{word-spacing:11.196198px;}
.ws11_c00337{word-spacing:13.681908px;}
.ws13_c00337{word-spacing:17.960130px;}
.wsc_c00337{word-spacing:18.324234px;}
.ws5_c00337{word-spacing:21.279078px;}
.ws10_c00337{word-spacing:32.069160px;}
.wsd_c00337{word-spacing:40.009428px;}
.wsb_c00337{word-spacing:57.171330px;}
.ws3_c00337{word-spacing:71.294364px;}
.ws6_c00337{word-spacing:101.171898px;}
._4_c00337{margin-left:-2.709774px;}
._1_c00337{margin-left:-1.120320px;}
._0_c00337{width:1.204344px;}
._3_c00337{width:5.930694px;}
._2_c00337{width:8.283366px;}
.fc0_c00337{color:rgb(0,0,0);}
.fs2_c00337{font-size:37.809600px;}
.fs1_c00337{font-size:46.562400px;}
.fs3_c00337{font-size:58.466400px;}
.fs0_c00337{font-size:70.020000px;}
.y0_c00337{bottom:0.000000px;}
.y2_c00337{bottom:109.740968px;}
.y1_c00337{bottom:129.810450px;}
.y22_c00337{bottom:153.120600px;}
.y21_c00337{bottom:167.790600px;}
.y20_c00337{bottom:243.477990px;}
.y1f_c00337{bottom:273.628602px;}
.y1e_c00337{bottom:303.868489px;}
.y1d_c00337{bottom:334.019101px;}
.y1c_c00337{bottom:364.258989px;}
.y1b_c00337{bottom:394.409601px;}
.y1a_c00337{bottom:424.649488px;}
.y19_c00337{bottom:454.800100px;}
.y18_c00337{bottom:485.039988px;}
.y17_c00337{bottom:515.190600px;}
.y16_c00337{bottom:536.160450px;}
.y15_c00337{bottom:566.310450px;}
.y14_c00337{bottom:596.460450px;}
.y13_c00337{bottom:626.610450px;}
.y12_c00337{bottom:656.850450px;}
.y11_c00337{bottom:687.000450px;}
.y10_c00337{bottom:717.240450px;}
.yf_c00337{bottom:747.390450px;}
.ye_c00337{bottom:777.630450px;}
.yd_c00337{bottom:807.780450px;}
.yc_c00337{bottom:838.020450px;}
.yb_c00337{bottom:868.170450px;}
.ya_c00337{bottom:898.410450px;}
.y9_c00337{bottom:928.560450px;}
.y8_c00337{bottom:958.800450px;}
.y7_c00337{bottom:988.950450px;}
.y6_c00337{bottom:1019.190450px;}
.y5_c00337{bottom:1049.340450px;}
.y4_c00337{bottom:1079.580450px;}
.y3_c00337{bottom:1109.730450px;}
.h5_c00337{height:39.337949px;}
.h2_c00337{height:62.600889px;}
.h1_c00337{height:62.771836px;}
.h4_c00337{height:63.216299px;}
.h3_c00337{height:74.028786px;}
.h0_c00337{height:1263.000000px;}
.w0_c00337{width:892.500000px;}
.x0_c00337{left:0.000000px;}
.x2_c00337{left:82.710059px;}
.x5_c00337{left:138.960711px;}
.x7_c00337{left:165.240967px;}
.x6_c00337{left:288.180333px;}
.x1_c00337{left:431.730000px;}
.x4_c00337{left:446.310000px;}
.x3_c00337{left:454.230000px;}
@media print{
.v2_c00337{vertical-align:-13.120533pt;}
.v0_c00337{vertical-align:0.000000pt;}
.v1_c00337{vertical-align:28.800000pt;}
.lse_c00337{letter-spacing:-0.103940pt;}
.lsd_c00337{letter-spacing:-0.067217pt;}
.ls5_c00337{letter-spacing:-0.056016pt;}
.ls9_c00337{letter-spacing:-0.049792pt;}
.lsb_c00337{letter-spacing:-0.043568pt;}
.lsa_c00337{letter-spacing:-0.037344pt;}
.ls7_c00337{letter-spacing:-0.024896pt;}
.ls8_c00337{letter-spacing:-0.012448pt;}
.ls6_c00337{letter-spacing:0.000000pt;}
.ls2_c00337{letter-spacing:0.006224pt;}
.ls1_c00337{letter-spacing:0.018672pt;}
.ls4_c00337{letter-spacing:0.020694pt;}
.ls3_c00337{letter-spacing:0.024896pt;}
.ls0_c00337{letter-spacing:0.049792pt;}
.lsc_c00337{letter-spacing:0.205392pt;}
.ws0_c00337{word-spacing:-11.526781pt;}
.ws1_c00337{word-spacing:-9.242347pt;}
.ws15_c00337{word-spacing:-0.217840pt;}
.ws2_c00337{word-spacing:0.000000pt;}
.ws14_c00337{word-spacing:0.012448pt;}
.ws16_c00337{word-spacing:0.119531pt;}
.ws4_c00337{word-spacing:0.317424pt;}
.ws8_c00337{word-spacing:3.522784pt;}
.ws12_c00337{word-spacing:4.138960pt;}
.ws9_c00337{word-spacing:4.170080pt;}
.ws7_c00337{word-spacing:4.182528pt;}
.wsf_c00337{word-spacing:7.350544pt;}
.wse_c00337{word-spacing:7.375440pt;}
.wsa_c00337{word-spacing:9.952176pt;}
.ws11_c00337{word-spacing:12.161696pt;}
.ws13_c00337{word-spacing:15.964560pt;}
.wsc_c00337{word-spacing:16.288208pt;}
.ws5_c00337{word-spacing:18.914736pt;}
.ws10_c00337{word-spacing:28.505920pt;}
.wsd_c00337{word-spacing:35.563936pt;}
.wsb_c00337{word-spacing:50.818960pt;}
.ws3_c00337{word-spacing:63.372768pt;}
.ws6_c00337{word-spacing:89.930576pt;}
._4_c00337{margin-left:-2.408688pt;}
._1_c00337{margin-left:-0.995840pt;}
._0_c00337{width:1.070528pt;}
._3_c00337{width:5.271728pt;}
._2_c00337{width:7.362992pt;}
.fs2_c00337{font-size:33.608533pt;}
.fs1_c00337{font-size:41.388800pt;}
.fs3_c00337{font-size:51.970133pt;}
.fs0_c00337{font-size:62.240000pt;}
.y0_c00337{bottom:0.000000pt;}
.y2_c00337{bottom:97.547527pt;}
.y1_c00337{bottom:115.387067pt;}
.y22_c00337{bottom:136.107200pt;}
.y21_c00337{bottom:149.147200pt;}
.y20_c00337{bottom:216.424880pt;}
.y1f_c00337{bottom:243.225424pt;}
.y1e_c00337{bottom:270.105324pt;}
.y1d_c00337{bottom:296.905868pt;}
.y1c_c00337{bottom:323.785768pt;}
.y1b_c00337{bottom:350.586312pt;}
.y1a_c00337{bottom:377.466212pt;}
.y19_c00337{bottom:404.266756pt;}
.y18_c00337{bottom:431.146656pt;}
.y17_c00337{bottom:457.947200pt;}
.y16_c00337{bottom:476.587067pt;}
.y15_c00337{bottom:503.387067pt;}
.y14_c00337{bottom:530.187067pt;}
.y13_c00337{bottom:556.987067pt;}
.y12_c00337{bottom:583.867067pt;}
.y11_c00337{bottom:610.667067pt;}
.y10_c00337{bottom:637.547067pt;}
.yf_c00337{bottom:664.347067pt;}
.ye_c00337{bottom:691.227067pt;}
.yd_c00337{bottom:718.027067pt;}
.yc_c00337{bottom:744.907067pt;}
.yb_c00337{bottom:771.707067pt;}
.ya_c00337{bottom:798.587067pt;}
.y9_c00337{bottom:825.387067pt;}
.y8_c00337{bottom:852.267067pt;}
.y7_c00337{bottom:879.067067pt;}
.y6_c00337{bottom:905.947067pt;}
.y5_c00337{bottom:932.747067pt;}
.y4_c00337{bottom:959.627067pt;}
.y3_c00337{bottom:986.427067pt;}
.h5_c00337{height:34.967066pt;}
.h2_c00337{height:55.645234pt;}
.h1_c00337{height:55.797187pt;}
.h4_c00337{height:56.192266pt;}
.h3_c00337{height:65.803366pt;}
.h0_c00337{height:1122.666667pt;}
.w0_c00337{width:793.333333pt;}
.x0_c00337{left:0.000000pt;}
.x2_c00337{left:73.520052pt;}
.x5_c00337{left:123.520632pt;}
.x7_c00337{left:146.880860pt;}
.x6_c00337{left:256.160296pt;}
.x1_c00337{left:383.760000pt;}
.x4_c00337{left:396.720000pt;}
.x3_c00337{left:403.760000pt;}
}





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

.ir_c00338:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00338{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00338;src:url('chunks/assets/font_e6abc3bd23d06c5fe8ef9787.woff2')format("woff");}.ff1_c00338{font-family:ff1_c00338;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00338;src:url('chunks/assets/font_fc12c63100ff5a9682ade04a.woff2')format("woff");}.ff2_c00338{font-family:ff2_c00338;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00338;src:url('chunks/assets/font_e0e2616b63c2082d3eca8d88.woff2')format("woff");}.ff3_c00338{font-family:ff3_c00338;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00338;src:url('chunks/assets/font_9850f34f7b991d148c448c4a.woff2')format("woff");}.ff4_c00338{font-family:ff4_c00338;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00338;src:url('chunks/assets/font_7cfd96428a0d35aa3e7dd5f6.woff2')format("woff");}.ff5_c00338{font-family:ff5_c00338;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00338{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00338{vertical-align:-14.760000px;}
.v0_c00338{vertical-align:0.000000px;}
.ls10_c00338{letter-spacing:-0.075619px;}
.ls6_c00338{letter-spacing:-0.063018px;}
.ls8_c00338{letter-spacing:-0.056016px;}
.ls13_c00338{letter-spacing:-0.046773px;}
.lsf_c00338{letter-spacing:-0.042012px;}
.ls11_c00338{letter-spacing:-0.040926px;}
.ls9_c00338{letter-spacing:-0.035010px;}
.lsc_c00338{letter-spacing:-0.021006px;}
.lse_c00338{letter-spacing:-0.014004px;}
.lsa_c00338{letter-spacing:-0.007002px;}
.ls7_c00338{letter-spacing:0.000000px;}
.ls2_c00338{letter-spacing:0.007002px;}
.ls1_c00338{letter-spacing:0.014004px;}
.ls4_c00338{letter-spacing:0.028008px;}
.ls3_c00338{letter-spacing:0.035010px;}
.ls0_c00338{letter-spacing:0.063018px;}
.lsd_c00338{letter-spacing:0.343098px;}
.ls15_c00338{letter-spacing:0.572971px;}
.lsb_c00338{letter-spacing:0.630180px;}
.ls14_c00338{letter-spacing:9.734656px;}
.ls5_c00338{letter-spacing:10.085454px;}
.ls12_c00338{letter-spacing:22.334165px;}
.sc__c00338{text-shadow:none;}
.sc0_c00338{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00338{-webkit-text-stroke:0px transparent;}
.sc0_c00338{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00338{word-spacing:-19.528578px;}
.ws1_c00338{word-spacing:-10.397640px;}
.ws8_c00338{word-spacing:-0.287082px;}
.ws2_c00338{word-spacing:0.000000px;}
.wsc_c00338{word-spacing:0.021006px;}
.ws1a_c00338{word-spacing:0.052620px;}
.wsb_c00338{word-spacing:0.364104px;}
.ws7_c00338{word-spacing:1.414404px;}
.ws5_c00338{word-spacing:2.177622px;}
.ws4_c00338{word-spacing:2.205630px;}
.ws14_c00338{word-spacing:6.427836px;}
.ws19_c00338{word-spacing:9.161685px;}
.ws18_c00338{word-spacing:9.781429px;}
.ws10_c00338{word-spacing:10.075878px;}
.wsd_c00338{word-spacing:11.518290px;}
.ws12_c00338{word-spacing:11.525292px;}
.ws13_c00338{word-spacing:12.225492px;}
.ws9_c00338{word-spacing:12.967704px;}
.ws6_c00338{word-spacing:14.032008px;}
.wsa_c00338{word-spacing:17.624034px;}
.ws11_c00338{word-spacing:18.359244px;}
.ws17_c00338{word-spacing:22.375091px;}
.ws15_c00338{word-spacing:25.879392px;}
.ws16_c00338{word-spacing:25.928406px;}
.wse_c00338{word-spacing:29.856528px;}
.wsf_c00338{word-spacing:29.905542px;}
.ws3_c00338{word-spacing:32.384250px;}
._6_c00338{margin-left:-23.425874px;}
._5_c00338{margin-left:-22.358502px;}
._7_c00338{margin-left:-21.096289px;}
._8_c00338{margin-left:-9.746349px;}
._4_c00338{margin-left:-7.450782px;}
._1_c00338{margin-left:-1.190340px;}
._0_c00338{width:1.218348px;}
._3_c00338{width:5.930694px;}
._2_c00338{width:30.892824px;}
.fc0_c00338{color:rgb(0,0,0);}
.fs1_c00338{font-size:37.809600px;}
.fs2_c00338{font-size:58.466400px;}
.fs0_c00338{font-size:70.020000px;}
.y0_c00338{bottom:0.000000px;}
.y2_c00338{bottom:109.740968px;}
.y1_c00338{bottom:129.810450px;}
.y1b_c00338{bottom:149.429548px;}
.y1a_c00338{bottom:167.250107px;}
.y19_c00338{bottom:188.940450px;}
.y18_c00338{bottom:203.610450px;}
.y17_c00338{bottom:240.238065px;}
.y16_c00338{bottom:270.477952px;}
.y15_c00338{bottom:300.717840px;}
.y14_c00338{bottom:330.868452px;}
.y13_c00338{bottom:361.108339px;}
.y12_c00338{bottom:391.258951px;}
.y11_c00338{bottom:421.498839px;}
.y10_c00338{bottom:451.649451px;}
.yf_c00338{bottom:481.889338px;}
.ye_c00338{bottom:512.039951px;}
.yd_c00338{bottom:542.279838px;}
.yc_c00338{bottom:572.429627px;}
.yb_c00338{bottom:602.669514px;}
.ya_c00338{bottom:632.820126px;}
.y9_c00338{bottom:663.060013px;}
.y8_c00338{bottom:693.210625px;}
.y7_c00338{bottom:723.450513px;}
.y6_c00338{bottom:753.601125px;}
.y5_c00338{bottom:783.841012px;}
.y4_c00338{bottom:813.991624px;}
.y3_c00338{bottom:844.231512px;}
.h5_c00338{height:39.338549px;}
.h6_c00338{height:54.098549px;}
.h4_c00338{height:62.600889px;}
.h1_c00338{height:62.771836px;}
.h3_c00338{height:62.775130px;}
.h2_c00338{height:63.216299px;}
.h0_c00338{height:1263.000000px;}
.w0_c00338{width:892.500000px;}
.x0_c00338{left:0.000000px;}
.x2_c00338{left:82.710059px;}
.x4_c00338{left:138.958875px;}
.x3_c00338{left:191.519388px;}
.x1_c00338{left:431.730000px;}
@media print{
.v1_c00338{vertical-align:-13.120000pt;}
.v0_c00338{vertical-align:0.000000pt;}
.ls10_c00338{letter-spacing:-0.067217pt;}
.ls6_c00338{letter-spacing:-0.056016pt;}
.ls8_c00338{letter-spacing:-0.049792pt;}
.ls13_c00338{letter-spacing:-0.041576pt;}
.lsf_c00338{letter-spacing:-0.037344pt;}
.ls11_c00338{letter-spacing:-0.036379pt;}
.ls9_c00338{letter-spacing:-0.031120pt;}
.lsc_c00338{letter-spacing:-0.018672pt;}
.lse_c00338{letter-spacing:-0.012448pt;}
.lsa_c00338{letter-spacing:-0.006224pt;}
.ls7_c00338{letter-spacing:0.000000pt;}
.ls2_c00338{letter-spacing:0.006224pt;}
.ls1_c00338{letter-spacing:0.012448pt;}
.ls4_c00338{letter-spacing:0.024896pt;}
.ls3_c00338{letter-spacing:0.031120pt;}
.ls0_c00338{letter-spacing:0.056016pt;}
.lsd_c00338{letter-spacing:0.304976pt;}
.ls15_c00338{letter-spacing:0.509307pt;}
.lsb_c00338{letter-spacing:0.560160pt;}
.ls14_c00338{letter-spacing:8.653027pt;}
.ls5_c00338{letter-spacing:8.964848pt;}
.ls12_c00338{letter-spacing:19.852591pt;}
.ws0_c00338{word-spacing:-17.358736pt;}
.ws1_c00338{word-spacing:-9.242347pt;}
.ws8_c00338{word-spacing:-0.255184pt;}
.ws2_c00338{word-spacing:0.000000pt;}
.wsc_c00338{word-spacing:0.018672pt;}
.ws1a_c00338{word-spacing:0.046773pt;}
.wsb_c00338{word-spacing:0.323648pt;}
.ws7_c00338{word-spacing:1.257248pt;}
.ws5_c00338{word-spacing:1.935664pt;}
.ws4_c00338{word-spacing:1.960560pt;}
.ws14_c00338{word-spacing:5.713632pt;}
.ws19_c00338{word-spacing:8.143720pt;}
.ws18_c00338{word-spacing:8.694603pt;}
.ws10_c00338{word-spacing:8.956336pt;}
.wsd_c00338{word-spacing:10.238480pt;}
.ws12_c00338{word-spacing:10.244704pt;}
.ws13_c00338{word-spacing:10.867104pt;}
.ws9_c00338{word-spacing:11.526848pt;}
.ws6_c00338{word-spacing:12.472896pt;}
.wsa_c00338{word-spacing:15.665808pt;}
.ws11_c00338{word-spacing:16.319328pt;}
.ws17_c00338{word-spacing:19.888970pt;}
.ws15_c00338{word-spacing:23.003904pt;}
.ws16_c00338{word-spacing:23.047472pt;}
.wse_c00338{word-spacing:26.539136pt;}
.wsf_c00338{word-spacing:26.582704pt;}
.ws3_c00338{word-spacing:28.786000pt;}
._6_c00338{margin-left:-20.822999pt;}
._5_c00338{margin-left:-19.874224pt;}
._7_c00338{margin-left:-18.752257pt;}
._8_c00338{margin-left:-8.663421pt;}
._4_c00338{margin-left:-6.622917pt;}
._1_c00338{margin-left:-1.058080pt;}
._0_c00338{width:1.082976pt;}
._3_c00338{width:5.271728pt;}
._2_c00338{width:27.460288pt;}
.fs1_c00338{font-size:33.608533pt;}
.fs2_c00338{font-size:51.970133pt;}
.fs0_c00338{font-size:62.240000pt;}
.y0_c00338{bottom:0.000000pt;}
.y2_c00338{bottom:97.547527pt;}
.y1_c00338{bottom:115.387067pt;}
.y1b_c00338{bottom:132.826265pt;}
.y1a_c00338{bottom:148.666762pt;}
.y19_c00338{bottom:167.947067pt;}
.y18_c00338{bottom:180.987067pt;}
.y17_c00338{bottom:213.544947pt;}
.y16_c00338{bottom:240.424847pt;}
.y15_c00338{bottom:267.304747pt;}
.y14_c00338{bottom:294.105291pt;}
.y13_c00338{bottom:320.985191pt;}
.y12_c00338{bottom:347.785735pt;}
.y11_c00338{bottom:374.665635pt;}
.y10_c00338{bottom:401.466179pt;}
.yf_c00338{bottom:428.346079pt;}
.ye_c00338{bottom:455.146623pt;}
.yd_c00338{bottom:482.026523pt;}
.yc_c00338{bottom:508.826335pt;}
.yb_c00338{bottom:535.706235pt;}
.ya_c00338{bottom:562.506779pt;}
.y9_c00338{bottom:589.386679pt;}
.y8_c00338{bottom:616.187223pt;}
.y7_c00338{bottom:643.067123pt;}
.y6_c00338{bottom:669.867667pt;}
.y5_c00338{bottom:696.747567pt;}
.y4_c00338{bottom:723.548111pt;}
.y3_c00338{bottom:750.428011pt;}
.h5_c00338{height:34.967599pt;}
.h6_c00338{height:48.087599pt;}
.h4_c00338{height:55.645234pt;}
.h1_c00338{height:55.797187pt;}
.h3_c00338{height:55.800115pt;}
.h2_c00338{height:56.192266pt;}
.h0_c00338{height:1122.666667pt;}
.w0_c00338{width:793.333333pt;}
.x0_c00338{left:0.000000pt;}
.x2_c00338{left:73.520052pt;}
.x4_c00338{left:123.519000pt;}
.x3_c00338{left:170.239456pt;}
.x1_c00338{left:383.760000pt;}
}





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

.ir_c00339:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00339{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00339;src:url('chunks/assets/font_4b408bf6560631695af3dcca.woff2')format("woff");}.ff1_c00339{font-family:ff1_c00339;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00339;src:url('chunks/assets/font_6cfe7a1e02c3ca56b481a23e.woff2')format("woff");}.ff2_c00339{font-family:ff2_c00339;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00339;src:url('chunks/assets/font_94ffa9f262d8935cc783742d.woff2')format("woff");}.ff3_c00339{font-family:ff3_c00339;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00339{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00339{vertical-align:0.000000px;}
.v1_c00339{vertical-align:32.423832px;}
.ls5_c00339{letter-spacing:-0.063018px;}
.ls9_c00339{letter-spacing:-0.056016px;}
.lsc_c00339{letter-spacing:-0.042012px;}
.lsa_c00339{letter-spacing:-0.035010px;}
.lsb_c00339{letter-spacing:-0.028008px;}
.ls8_c00339{letter-spacing:-0.021006px;}
.ls7_c00339{letter-spacing:-0.014004px;}
.lsd_c00339{letter-spacing:-0.007002px;}
.ls6_c00339{letter-spacing:0.000000px;}
.ls2_c00339{letter-spacing:0.007002px;}
.ls0_c00339{letter-spacing:0.014004px;}
.ls3_c00339{letter-spacing:0.021006px;}
.ls4_c00339{letter-spacing:0.023281px;}
.ls1_c00339{letter-spacing:0.035010px;}
.sc__c00339{text-shadow:none;}
.sc0_c00339{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00339{-webkit-text-stroke:0px transparent;}
.sc0_c00339{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00339{word-spacing:-12.967628px;}
.ws7_c00339{word-spacing:-0.350100px;}
.ws1_c00339{word-spacing:0.000000px;}
.ws1c_c00339{word-spacing:0.042012px;}
.wsa_c00339{word-spacing:0.308088px;}
.ws1b_c00339{word-spacing:0.350100px;}
.ws3_c00339{word-spacing:0.399114px;}
.ws18_c00339{word-spacing:1.792512px;}
.ws2_c00339{word-spacing:1.806516px;}
.ws16_c00339{word-spacing:1.841526px;}
.ws17_c00339{word-spacing:2.184624px;}
.ws1a_c00339{word-spacing:2.506716px;}
.ws19_c00339{word-spacing:2.891826px;}
.ws12_c00339{word-spacing:3.928122px;}
.ws13_c00339{word-spacing:3.991140px;}
.ws9_c00339{word-spacing:4.306230px;}
.ws6_c00339{word-spacing:4.691340px;}
.ws4_c00339{word-spacing:5.370534px;}
.ws5_c00339{word-spacing:5.419548px;}
.wse_c00339{word-spacing:6.448842px;}
.ws14_c00339{word-spacing:6.483852px;}
.ws10_c00339{word-spacing:9.361674px;}
.ws15_c00339{word-spacing:11.497284px;}
.wsd_c00339{word-spacing:11.910402px;}
.ws8_c00339{word-spacing:12.617604px;}
.wsf_c00339{word-spacing:16.937838px;}
.ws11_c00339{word-spacing:17.617032px;}
.wsb_c00339{word-spacing:17.981136px;}
.wsc_c00339{word-spacing:18.002142px;}
._1_c00339{margin-left:-4.922406px;}
._2_c00339{margin-left:-1.127322px;}
._0_c00339{width:1.099314px;}
.fc0_c00339{color:rgb(0,0,0);}
.fs1_c00339{font-size:46.562400px;}
.fs0_c00339{font-size:70.020000px;}
.y0_c00339{bottom:0.000000px;}
.y2_c00339{bottom:109.740968px;}
.y1_c00339{bottom:129.810450px;}
.y22_c00339{bottom:173.100450px;}
.y21_c00339{bottom:203.250450px;}
.y20_c00339{bottom:233.490450px;}
.y1f_c00339{bottom:264.359838px;}
.y1e_c00339{bottom:294.504492px;}
.y1d_c00339{bottom:324.744380px;}
.y1c_c00339{bottom:354.894992px;}
.y1b_c00339{bottom:385.134879px;}
.y1a_c00339{bottom:415.285491px;}
.y19_c00339{bottom:445.525379px;}
.y18_c00339{bottom:475.765266px;}
.y17_c00339{bottom:505.915878px;}
.y16_c00339{bottom:536.155766px;}
.y15_c00339{bottom:566.306378px;}
.y14_c00339{bottom:596.456990px;}
.y13_c00339{bottom:626.607602px;}
.y12_c00339{bottom:656.847489px;}
.y11_c00339{bottom:686.998101px;}
.y10_c00339{bottom:717.237989px;}
.yf_c00339{bottom:747.388601px;}
.ye_c00339{bottom:777.628488px;}
.yd_c00339{bottom:807.779100px;}
.yc_c00339{bottom:838.018988px;}
.yb_c00339{bottom:868.169600px;}
.ya_c00339{bottom:898.409487px;}
.y9_c00339{bottom:928.560099px;}
.y8_c00339{bottom:958.799987px;}
.y7_c00339{bottom:988.950599px;}
.y6_c00339{bottom:1019.190486px;}
.y5_c00339{bottom:1049.341098px;}
.y4_c00339{bottom:1079.580985px;}
.y3_c00339{bottom:1109.731597px;}
.h2_c00339{height:62.600889px;}
.h1_c00339{height:62.771836px;}
.h4_c00339{height:63.216299px;}
.h3_c00339{height:74.052618px;}
.h0_c00339{height:1263.000000px;}
.w0_c00339{width:892.500000px;}
.x0_c00339{left:0.000000px;}
.x2_c00339{left:82.710059px;}
.x3_c00339{left:138.960626px;}
.x4_c00339{left:191.521139px;}
.x6_c00339{left:343.170000px;}
.x1_c00339{left:431.730000px;}
.x5_c00339{left:446.310000px;}
@media print{
.v0_c00339{vertical-align:0.000000pt;}
.v1_c00339{vertical-align:28.821184pt;}
.ls5_c00339{letter-spacing:-0.056016pt;}
.ls9_c00339{letter-spacing:-0.049792pt;}
.lsc_c00339{letter-spacing:-0.037344pt;}
.lsa_c00339{letter-spacing:-0.031120pt;}
.lsb_c00339{letter-spacing:-0.024896pt;}
.ls8_c00339{letter-spacing:-0.018672pt;}
.ls7_c00339{letter-spacing:-0.012448pt;}
.lsd_c00339{letter-spacing:-0.006224pt;}
.ls6_c00339{letter-spacing:0.000000pt;}
.ls2_c00339{letter-spacing:0.006224pt;}
.ls0_c00339{letter-spacing:0.012448pt;}
.ls3_c00339{letter-spacing:0.018672pt;}
.ls4_c00339{letter-spacing:0.020694pt;}
.ls1_c00339{letter-spacing:0.031120pt;}
.ws0_c00339{word-spacing:-11.526781pt;}
.ws7_c00339{word-spacing:-0.311200pt;}
.ws1_c00339{word-spacing:0.000000pt;}
.ws1c_c00339{word-spacing:0.037344pt;}
.wsa_c00339{word-spacing:0.273856pt;}
.ws1b_c00339{word-spacing:0.311200pt;}
.ws3_c00339{word-spacing:0.354768pt;}
.ws18_c00339{word-spacing:1.593344pt;}
.ws2_c00339{word-spacing:1.605792pt;}
.ws16_c00339{word-spacing:1.636912pt;}
.ws17_c00339{word-spacing:1.941888pt;}
.ws1a_c00339{word-spacing:2.228192pt;}
.ws19_c00339{word-spacing:2.570512pt;}
.ws12_c00339{word-spacing:3.491664pt;}
.ws13_c00339{word-spacing:3.547680pt;}
.ws9_c00339{word-spacing:3.827760pt;}
.ws6_c00339{word-spacing:4.170080pt;}
.ws4_c00339{word-spacing:4.773808pt;}
.ws5_c00339{word-spacing:4.817376pt;}
.wse_c00339{word-spacing:5.732304pt;}
.ws14_c00339{word-spacing:5.763424pt;}
.ws10_c00339{word-spacing:8.321488pt;}
.ws15_c00339{word-spacing:10.219808pt;}
.wsd_c00339{word-spacing:10.587024pt;}
.ws8_c00339{word-spacing:11.215648pt;}
.wsf_c00339{word-spacing:15.055856pt;}
.ws11_c00339{word-spacing:15.659584pt;}
.wsb_c00339{word-spacing:15.983232pt;}
.wsc_c00339{word-spacing:16.001904pt;}
._1_c00339{margin-left:-4.375472pt;}
._2_c00339{margin-left:-1.002064pt;}
._0_c00339{width:0.977168pt;}
.fs1_c00339{font-size:41.388800pt;}
.fs0_c00339{font-size:62.240000pt;}
.y0_c00339{bottom:0.000000pt;}
.y2_c00339{bottom:97.547527pt;}
.y1_c00339{bottom:115.387067pt;}
.y22_c00339{bottom:153.867067pt;}
.y21_c00339{bottom:180.667067pt;}
.y20_c00339{bottom:207.547067pt;}
.y1f_c00339{bottom:234.986523pt;}
.y1e_c00339{bottom:261.781771pt;}
.y1d_c00339{bottom:288.661671pt;}
.y1c_c00339{bottom:315.462215pt;}
.y1b_c00339{bottom:342.342115pt;}
.y1a_c00339{bottom:369.142659pt;}
.y19_c00339{bottom:396.022559pt;}
.y18_c00339{bottom:422.902459pt;}
.y17_c00339{bottom:449.703003pt;}
.y16_c00339{bottom:476.582903pt;}
.y15_c00339{bottom:503.383447pt;}
.y14_c00339{bottom:530.183991pt;}
.y13_c00339{bottom:556.984535pt;}
.y12_c00339{bottom:583.864435pt;}
.y11_c00339{bottom:610.664979pt;}
.y10_c00339{bottom:637.544879pt;}
.yf_c00339{bottom:664.345423pt;}
.ye_c00339{bottom:691.225323pt;}
.yd_c00339{bottom:718.025867pt;}
.yc_c00339{bottom:744.905767pt;}
.yb_c00339{bottom:771.706311pt;}
.ya_c00339{bottom:798.586211pt;}
.y9_c00339{bottom:825.386755pt;}
.y8_c00339{bottom:852.266655pt;}
.y7_c00339{bottom:879.067199pt;}
.y6_c00339{bottom:905.947099pt;}
.y5_c00339{bottom:932.747643pt;}
.y4_c00339{bottom:959.627543pt;}
.y3_c00339{bottom:986.428087pt;}
.h2_c00339{height:55.645234pt;}
.h1_c00339{height:55.797187pt;}
.h4_c00339{height:56.192266pt;}
.h3_c00339{height:65.824550pt;}
.h0_c00339{height:1122.666667pt;}
.w0_c00339{width:793.333333pt;}
.x0_c00339{left:0.000000pt;}
.x2_c00339{left:73.520052pt;}
.x3_c00339{left:123.520556pt;}
.x4_c00339{left:170.241012pt;}
.x6_c00339{left:305.040000pt;}
.x1_c00339{left:383.760000pt;}
.x5_c00339{left:396.720000pt;}
}





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

.ir_c00340:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00340{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00340;src:url('chunks/assets/font_35bdbe29a361eaebdbc98afd.woff2')format("woff");}.ff1_c00340{font-family:ff1_c00340;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00340;src:url('chunks/assets/font_11d90667e7a61b0887aedcdd.woff2')format("woff");}.ff2_c00340{font-family:ff2_c00340;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00340;src:url('chunks/assets/font_165e45f18d43b1ce63153aaf.woff2')format("woff");}.ff3_c00340{font-family:ff3_c00340;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00340{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00340{vertical-align:0.000000px;}
.v1_c00340{vertical-align:32.400000px;}
.ls8_c00340{letter-spacing:-0.084024px;}
.ls5_c00340{letter-spacing:-0.063018px;}
.lsb_c00340{letter-spacing:-0.035010px;}
.ls9_c00340{letter-spacing:-0.028008px;}
.ls7_c00340{letter-spacing:-0.021006px;}
.lsc_c00340{letter-spacing:-0.014004px;}
.lsa_c00340{letter-spacing:-0.007002px;}
.ls6_c00340{letter-spacing:0.000000px;}
.ls3_c00340{letter-spacing:0.014004px;}
.ls2_c00340{letter-spacing:0.021006px;}
.ls4_c00340{letter-spacing:0.023281px;}
.ls1_c00340{letter-spacing:0.042012px;}
.ls0_c00340{letter-spacing:0.070020px;}
.sc__c00340{text-shadow:none;}
.sc0_c00340{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00340{-webkit-text-stroke:0px transparent;}
.sc0_c00340{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00340{word-spacing:-12.967628px;}
.ws2_c00340{word-spacing:-0.014004px;}
.ws1_c00340{word-spacing:0.000000px;}
.wsb_c00340{word-spacing:0.014004px;}
.wsc_c00340{word-spacing:0.021006px;}
.ws4_c00340{word-spacing:0.427122px;}
.wsa_c00340{word-spacing:1.085310px;}
.ws3_c00340{word-spacing:1.449414px;}
.wsd_c00340{word-spacing:2.163618px;}
.wsf_c00340{word-spacing:4.642326px;}
.ws10_c00340{word-spacing:4.649328px;}
.wse_c00340{word-spacing:5.041440px;}
.ws5_c00340{word-spacing:5.776650px;}
.ws11_c00340{word-spacing:6.476850px;}
.ws12_c00340{word-spacing:7.905258px;}
.ws9_c00340{word-spacing:8.941554px;}
.ws8_c00340{word-spacing:8.983566px;}
.ws7_c00340{word-spacing:14.774220px;}
.ws6_c00340{word-spacing:15.110316px;}
._2_c00340{margin-left:-1.337382px;}
._1_c00340{width:1.050300px;}
._0_c00340{width:8.283366px;}
.fc0_c00340{color:rgb(0,0,0);}
.fs1_c00340{font-size:46.562400px;}
.fs0_c00340{font-size:70.020000px;}
.y0_c00340{bottom:0.000000px;}
.y2_c00340{bottom:109.740968px;}
.y1_c00340{bottom:129.810450px;}
.y19_c00340{bottom:175.260450px;}
.y18_c00340{bottom:205.410450px;}
.y17_c00340{bottom:235.650450px;}
.y16_c00340{bottom:265.800450px;}
.y15_c00340{bottom:296.040450px;}
.y14_c00340{bottom:326.190450px;}
.y13_c00340{bottom:356.430450px;}
.y12_c00340{bottom:386.580450px;}
.y11_c00340{bottom:416.820450px;}
.y10_c00340{bottom:447.060450px;}
.yf_c00340{bottom:477.210600px;}
.ye_c00340{bottom:507.450600px;}
.yd_c00340{bottom:537.600450px;}
.yc_c00340{bottom:567.840450px;}
.yb_c00340{bottom:597.990450px;}
.ya_c00340{bottom:628.230450px;}
.y9_c00340{bottom:658.380450px;}
.y8_c00340{bottom:688.620450px;}
.y7_c00340{bottom:718.770450px;}
.y6_c00340{bottom:749.010450px;}
.y5_c00340{bottom:779.160450px;}
.y4_c00340{bottom:809.400450px;}
.y3_c00340{bottom:1109.730450px;}
.h3_c00340{height:62.600889px;}
.h1_c00340{height:62.771836px;}
.h2_c00340{height:63.216299px;}
.h4_c00340{height:74.028786px;}
.h0_c00340{height:1263.000000px;}
.w0_c00340{width:892.500000px;}
.x0_c00340{left:0.000000px;}
.x2_c00340{left:82.710059px;}
.x5_c00340{left:138.960000px;}
.x3_c00340{left:165.240000px;}
.x4_c00340{left:191.520000px;}
.x1_c00340{left:431.730000px;}
@media print{
.v0_c00340{vertical-align:0.000000pt;}
.v1_c00340{vertical-align:28.800000pt;}
.ls8_c00340{letter-spacing:-0.074688pt;}
.ls5_c00340{letter-spacing:-0.056016pt;}
.lsb_c00340{letter-spacing:-0.031120pt;}
.ls9_c00340{letter-spacing:-0.024896pt;}
.ls7_c00340{letter-spacing:-0.018672pt;}
.lsc_c00340{letter-spacing:-0.012448pt;}
.lsa_c00340{letter-spacing:-0.006224pt;}
.ls6_c00340{letter-spacing:0.000000pt;}
.ls3_c00340{letter-spacing:0.012448pt;}
.ls2_c00340{letter-spacing:0.018672pt;}
.ls4_c00340{letter-spacing:0.020694pt;}
.ls1_c00340{letter-spacing:0.037344pt;}
.ls0_c00340{letter-spacing:0.062240pt;}
.ws0_c00340{word-spacing:-11.526781pt;}
.ws2_c00340{word-spacing:-0.012448pt;}
.ws1_c00340{word-spacing:0.000000pt;}
.wsb_c00340{word-spacing:0.012448pt;}
.wsc_c00340{word-spacing:0.018672pt;}
.ws4_c00340{word-spacing:0.379664pt;}
.wsa_c00340{word-spacing:0.964720pt;}
.ws3_c00340{word-spacing:1.288368pt;}
.wsd_c00340{word-spacing:1.923216pt;}
.wsf_c00340{word-spacing:4.126512pt;}
.ws10_c00340{word-spacing:4.132736pt;}
.wse_c00340{word-spacing:4.481280pt;}
.ws5_c00340{word-spacing:5.134800pt;}
.ws11_c00340{word-spacing:5.757200pt;}
.ws12_c00340{word-spacing:7.026896pt;}
.ws9_c00340{word-spacing:7.948048pt;}
.ws8_c00340{word-spacing:7.985392pt;}
.ws7_c00340{word-spacing:13.132640pt;}
.ws6_c00340{word-spacing:13.431392pt;}
._2_c00340{margin-left:-1.188784pt;}
._1_c00340{width:0.933600pt;}
._0_c00340{width:7.362992pt;}
.fs1_c00340{font-size:41.388800pt;}
.fs0_c00340{font-size:62.240000pt;}
.y0_c00340{bottom:0.000000pt;}
.y2_c00340{bottom:97.547527pt;}
.y1_c00340{bottom:115.387067pt;}
.y19_c00340{bottom:155.787067pt;}
.y18_c00340{bottom:182.587067pt;}
.y17_c00340{bottom:209.467067pt;}
.y16_c00340{bottom:236.267067pt;}
.y15_c00340{bottom:263.147067pt;}
.y14_c00340{bottom:289.947067pt;}
.y13_c00340{bottom:316.827067pt;}
.y12_c00340{bottom:343.627067pt;}
.y11_c00340{bottom:370.507067pt;}
.y10_c00340{bottom:397.387067pt;}
.yf_c00340{bottom:424.187200pt;}
.ye_c00340{bottom:451.067200pt;}
.yd_c00340{bottom:477.867067pt;}
.yc_c00340{bottom:504.747067pt;}
.yb_c00340{bottom:531.547067pt;}
.ya_c00340{bottom:558.427067pt;}
.y9_c00340{bottom:585.227067pt;}
.y8_c00340{bottom:612.107067pt;}
.y7_c00340{bottom:638.907067pt;}
.y6_c00340{bottom:665.787067pt;}
.y5_c00340{bottom:692.587067pt;}
.y4_c00340{bottom:719.467067pt;}
.y3_c00340{bottom:986.427067pt;}
.h3_c00340{height:55.645234pt;}
.h1_c00340{height:55.797187pt;}
.h2_c00340{height:56.192266pt;}
.h4_c00340{height:65.803366pt;}
.h0_c00340{height:1122.666667pt;}
.w0_c00340{width:793.333333pt;}
.x0_c00340{left:0.000000pt;}
.x2_c00340{left:73.520052pt;}
.x5_c00340{left:123.520000pt;}
.x3_c00340{left:146.880000pt;}
.x4_c00340{left:170.240000pt;}
.x1_c00340{left:383.760000pt;}
}





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

.ir_c00341:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00341{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00341;src:url('chunks/assets/font_14a352e13585c3deaeda03b0.woff2')format("woff");}.ff1_c00341{font-family:ff1_c00341;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00341;src:url('chunks/assets/font_adc7ee092d24b5ff1ddf29cf.woff2')format("woff");}.ff2_c00341{font-family:ff2_c00341;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00341;src:url('chunks/assets/font_4f39af75de7a3fe8ab6989c4.woff2')format("woff");}.ff3_c00341{font-family:ff3_c00341;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00341{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00341{vertical-align:0.000000px;}
.v1_c00341{vertical-align:32.040000px;}
.ls10_c00341{letter-spacing:-0.335249px;}
.lsf_c00341{letter-spacing:-0.070020px;}
.ls4_c00341{letter-spacing:-0.063018px;}
.lsc_c00341{letter-spacing:-0.056016px;}
.lse_c00341{letter-spacing:-0.049014px;}
.lsa_c00341{letter-spacing:-0.042012px;}
.ls8_c00341{letter-spacing:-0.035010px;}
.lsb_c00341{letter-spacing:-0.028008px;}
.ls7_c00341{letter-spacing:-0.021006px;}
.ls9_c00341{letter-spacing:-0.014004px;}
.ls6_c00341{letter-spacing:-0.007002px;}
.ls5_c00341{letter-spacing:0.000000px;}
.ls0_c00341{letter-spacing:0.007002px;}
.ls1_c00341{letter-spacing:0.023281px;}
.ls3_c00341{letter-spacing:0.084024px;}
.lsd_c00341{letter-spacing:0.266076px;}
.ls2_c00341{letter-spacing:0.539154px;}
.sc__c00341{text-shadow:none;}
.sc0_c00341{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00341{-webkit-text-stroke:0px transparent;}
.sc0_c00341{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00341{word-spacing:-12.967628px;}
.ws1_c00341{word-spacing:-12.609098px;}
.ws2_c00341{word-spacing:0.000000px;}
.wsa_c00341{word-spacing:0.028008px;}
.ws17_c00341{word-spacing:0.035010px;}
.ws1d_c00341{word-spacing:0.364104px;}
.ws8_c00341{word-spacing:1.428408px;}
.ws9_c00341{word-spacing:1.463418px;}
.wsc_c00341{word-spacing:2.506716px;}
.ws19_c00341{word-spacing:3.241926px;}
.wsd_c00341{word-spacing:3.613032px;}
.ws10_c00341{word-spacing:3.942126px;}
.ws11_c00341{word-spacing:3.956130px;}
.wsf_c00341{word-spacing:3.963132px;}
.ws1c_c00341{word-spacing:4.670334px;}
.ws1b_c00341{word-spacing:4.691340px;}
.ws3_c00341{word-spacing:5.391540px;}
.ws4_c00341{word-spacing:5.405544px;}
.ws16_c00341{word-spacing:6.483852px;}
.ws12_c00341{word-spacing:7.240068px;}
.ws18_c00341{word-spacing:10.453986px;}
.ws13_c00341{word-spacing:10.797084px;}
.wse_c00341{word-spacing:13.324806px;}
.ws14_c00341{word-spacing:15.845526px;}
.ws15_c00341{word-spacing:15.852528px;}
.ws1a_c00341{word-spacing:17.694054px;}
.wsb_c00341{word-spacing:18.751356px;}
.ws5_c00341{word-spacing:21.258072px;}
.ws6_c00341{word-spacing:25.200198px;}
.ws7_c00341{word-spacing:32.769360px;}
._2_c00341{margin-left:-1.043298px;}
._0_c00341{width:1.120320px;}
._3_c00341{width:5.972706px;}
._4_c00341{width:8.283366px;}
._1_c00341{width:15.541729px;}
.fc0_c00341{color:rgb(0,0,0);}
.fs1_c00341{font-size:46.562400px;}
.fs0_c00341{font-size:70.020000px;}
.y0_c00341{bottom:0.000000px;}
.y2_c00341{bottom:109.740968px;}
.y1_c00341{bottom:129.810450px;}
.y21_c00341{bottom:203.970450px;}
.y20_c00341{bottom:234.120600px;}
.y1f_c00341{bottom:264.360450px;}
.y1e_c00341{bottom:294.510450px;}
.y1d_c00341{bottom:324.750600px;}
.y1c_c00341{bottom:354.900450px;}
.y1b_c00341{bottom:385.140450px;}
.y1a_c00341{bottom:415.290600px;}
.y19_c00341{bottom:445.530600px;}
.y18_c00341{bottom:475.770600px;}
.y17_c00341{bottom:505.920450px;}
.y16_c00341{bottom:536.160450px;}
.y15_c00341{bottom:566.310450px;}
.y14_c00341{bottom:596.460450px;}
.y13_c00341{bottom:626.610450px;}
.y12_c00341{bottom:656.850450px;}
.y11_c00341{bottom:687.000450px;}
.y10_c00341{bottom:717.240450px;}
.yf_c00341{bottom:747.390450px;}
.ye_c00341{bottom:777.630450px;}
.yd_c00341{bottom:807.780450px;}
.yc_c00341{bottom:838.020450px;}
.yb_c00341{bottom:868.170450px;}
.ya_c00341{bottom:898.410450px;}
.y9_c00341{bottom:928.560450px;}
.y8_c00341{bottom:958.800450px;}
.y7_c00341{bottom:988.950450px;}
.y6_c00341{bottom:1019.190450px;}
.y5_c00341{bottom:1049.340450px;}
.y4_c00341{bottom:1079.580450px;}
.y3_c00341{bottom:1109.730450px;}
.h2_c00341{height:62.600889px;}
.h1_c00341{height:62.771836px;}
.h6_c00341{height:63.216299px;}
.h3_c00341{height:73.668786px;}
.h4_c00341{height:74.028786px;}
.h5_c00341{height:74.029386px;}
.h0_c00341{height:1263.000000px;}
.w0_c00341{width:892.500000px;}
.x0_c00341{left:0.000000px;}
.x2_c00341{left:82.710059px;}
.x3_c00341{left:138.960000px;}
.x4_c00341{left:165.240000px;}
.x1_c00341{left:431.730000px;}
@media print{
.v0_c00341{vertical-align:0.000000pt;}
.v1_c00341{vertical-align:28.480000pt;}
.ls10_c00341{letter-spacing:-0.297999pt;}
.lsf_c00341{letter-spacing:-0.062240pt;}
.ls4_c00341{letter-spacing:-0.056016pt;}
.lsc_c00341{letter-spacing:-0.049792pt;}
.lse_c00341{letter-spacing:-0.043568pt;}
.lsa_c00341{letter-spacing:-0.037344pt;}
.ls8_c00341{letter-spacing:-0.031120pt;}
.lsb_c00341{letter-spacing:-0.024896pt;}
.ls7_c00341{letter-spacing:-0.018672pt;}
.ls9_c00341{letter-spacing:-0.012448pt;}
.ls6_c00341{letter-spacing:-0.006224pt;}
.ls5_c00341{letter-spacing:0.000000pt;}
.ls0_c00341{letter-spacing:0.006224pt;}
.ls1_c00341{letter-spacing:0.020694pt;}
.ls3_c00341{letter-spacing:0.074688pt;}
.lsd_c00341{letter-spacing:0.236512pt;}
.ls2_c00341{letter-spacing:0.479248pt;}
.ws0_c00341{word-spacing:-11.526781pt;}
.ws1_c00341{word-spacing:-11.208087pt;}
.ws2_c00341{word-spacing:0.000000pt;}
.wsa_c00341{word-spacing:0.024896pt;}
.ws17_c00341{word-spacing:0.031120pt;}
.ws1d_c00341{word-spacing:0.323648pt;}
.ws8_c00341{word-spacing:1.269696pt;}
.ws9_c00341{word-spacing:1.300816pt;}
.wsc_c00341{word-spacing:2.228192pt;}
.ws19_c00341{word-spacing:2.881712pt;}
.wsd_c00341{word-spacing:3.211584pt;}
.ws10_c00341{word-spacing:3.504112pt;}
.ws11_c00341{word-spacing:3.516560pt;}
.wsf_c00341{word-spacing:3.522784pt;}
.ws1c_c00341{word-spacing:4.151408pt;}
.ws1b_c00341{word-spacing:4.170080pt;}
.ws3_c00341{word-spacing:4.792480pt;}
.ws4_c00341{word-spacing:4.804928pt;}
.ws16_c00341{word-spacing:5.763424pt;}
.ws12_c00341{word-spacing:6.435616pt;}
.ws18_c00341{word-spacing:9.292432pt;}
.ws13_c00341{word-spacing:9.597408pt;}
.wse_c00341{word-spacing:11.844272pt;}
.ws14_c00341{word-spacing:14.084912pt;}
.ws15_c00341{word-spacing:14.091136pt;}
.ws1a_c00341{word-spacing:15.728048pt;}
.wsb_c00341{word-spacing:16.667872pt;}
.ws5_c00341{word-spacing:18.896064pt;}
.ws6_c00341{word-spacing:22.400176pt;}
.ws7_c00341{word-spacing:29.128320pt;}
._2_c00341{margin-left:-0.927376pt;}
._0_c00341{width:0.995840pt;}
._3_c00341{width:5.309072pt;}
._4_c00341{width:7.362992pt;}
._1_c00341{width:13.814870pt;}
.fs1_c00341{font-size:41.388800pt;}
.fs0_c00341{font-size:62.240000pt;}
.y0_c00341{bottom:0.000000pt;}
.y2_c00341{bottom:97.547527pt;}
.y1_c00341{bottom:115.387067pt;}
.y21_c00341{bottom:181.307067pt;}
.y20_c00341{bottom:208.107200pt;}
.y1f_c00341{bottom:234.987067pt;}
.y1e_c00341{bottom:261.787067pt;}
.y1d_c00341{bottom:288.667200pt;}
.y1c_c00341{bottom:315.467067pt;}
.y1b_c00341{bottom:342.347067pt;}
.y1a_c00341{bottom:369.147200pt;}
.y19_c00341{bottom:396.027200pt;}
.y18_c00341{bottom:422.907200pt;}
.y17_c00341{bottom:449.707067pt;}
.y16_c00341{bottom:476.587067pt;}
.y15_c00341{bottom:503.387067pt;}
.y14_c00341{bottom:530.187067pt;}
.y13_c00341{bottom:556.987067pt;}
.y12_c00341{bottom:583.867067pt;}
.y11_c00341{bottom:610.667067pt;}
.y10_c00341{bottom:637.547067pt;}
.yf_c00341{bottom:664.347067pt;}
.ye_c00341{bottom:691.227067pt;}
.yd_c00341{bottom:718.027067pt;}
.yc_c00341{bottom:744.907067pt;}
.yb_c00341{bottom:771.707067pt;}
.ya_c00341{bottom:798.587067pt;}
.y9_c00341{bottom:825.387067pt;}
.y8_c00341{bottom:852.267067pt;}
.y7_c00341{bottom:879.067067pt;}
.y6_c00341{bottom:905.947067pt;}
.y5_c00341{bottom:932.747067pt;}
.y4_c00341{bottom:959.627067pt;}
.y3_c00341{bottom:986.427067pt;}
.h2_c00341{height:55.645234pt;}
.h1_c00341{height:55.797187pt;}
.h6_c00341{height:56.192266pt;}
.h3_c00341{height:65.483366pt;}
.h4_c00341{height:65.803366pt;}
.h5_c00341{height:65.803899pt;}
.h0_c00341{height:1122.666667pt;}
.w0_c00341{width:793.333333pt;}
.x0_c00341{left:0.000000pt;}
.x2_c00341{left:73.520052pt;}
.x3_c00341{left:123.520000pt;}
.x4_c00341{left:146.880000pt;}
.x1_c00341{left:383.760000pt;}
}





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

.ir_c00342:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00342{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00342;src:url('chunks/assets/font_77e7a3a772f098a557dada5c.woff2')format("woff");}.ff1_c00342{font-family:ff1_c00342;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00342;src:url('chunks/assets/font_54475ab63f03de6d54773c3f.woff2')format("woff");}.ff2_c00342{font-family:ff2_c00342;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00342;src:url('chunks/assets/font_1879d4b720b211aaba64757f.woff2')format("woff");}.ff3_c00342{font-family:ff3_c00342;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00342{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00342{vertical-align:0.000000px;}
.v1_c00342{vertical-align:32.040000px;}
.lse_c00342{letter-spacing:-0.084024px;}
.ls6_c00342{letter-spacing:-0.063018px;}
.ls9_c00342{letter-spacing:-0.042012px;}
.ls8_c00342{letter-spacing:-0.035010px;}
.lsb_c00342{letter-spacing:-0.028008px;}
.lsa_c00342{letter-spacing:-0.021006px;}
.lsd_c00342{letter-spacing:-0.014004px;}
.lsc_c00342{letter-spacing:-0.007002px;}
.ls7_c00342{letter-spacing:0.000000px;}
.ls4_c00342{letter-spacing:0.007002px;}
.ls1_c00342{letter-spacing:0.014004px;}
.ls2_c00342{letter-spacing:0.021006px;}
.ls3_c00342{letter-spacing:0.023281px;}
.ls5_c00342{letter-spacing:0.035010px;}
.ls0_c00342{letter-spacing:0.063018px;}
.sc__c00342{text-shadow:none;}
.sc0_c00342{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00342{-webkit-text-stroke:0px transparent;}
.sc0_c00342{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00342{word-spacing:-19.528578px;}
.ws2_c00342{word-spacing:-19.381536px;}
.ws1_c00342{word-spacing:-12.967628px;}
.ws13_c00342{word-spacing:-0.049014px;}
.ws3_c00342{word-spacing:0.000000px;}
.wsf_c00342{word-spacing:0.014004px;}
.wsd_c00342{word-spacing:0.350100px;}
.wse_c00342{word-spacing:3.592026px;}
.ws10_c00342{word-spacing:4.327236px;}
.ws4_c00342{word-spacing:4.698342px;}
.ws12_c00342{word-spacing:5.020434px;}
.ws8_c00342{word-spacing:5.405544px;}
.ws5_c00342{word-spacing:8.612460px;}
.wsb_c00342{word-spacing:8.633466px;}
.wsa_c00342{word-spacing:8.654472px;}
.ws11_c00342{word-spacing:11.882394px;}
.wsc_c00342{word-spacing:16.559730px;}
.ws7_c00342{word-spacing:25.165188px;}
.ws6_c00342{word-spacing:25.585308px;}
.ws9_c00342{word-spacing:27.734922px;}
._0_c00342{margin-left:-1.190340px;}
._1_c00342{width:1.190340px;}
._2_c00342{width:8.283366px;}
.fc0_c00342{color:rgb(0,0,0);}
.fs1_c00342{font-size:46.562400px;}
.fs0_c00342{font-size:70.020000px;}
.y0_c00342{bottom:0.000000px;}
.y2_c00342{bottom:109.740968px;}
.y1_c00342{bottom:129.810450px;}
.y18_c00342{bottom:174.540600px;}
.y17_c00342{bottom:204.780600px;}
.y16_c00342{bottom:234.930450px;}
.y15_c00342{bottom:265.170450px;}
.y14_c00342{bottom:295.320450px;}
.y13_c00342{bottom:325.560450px;}
.y12_c00342{bottom:355.710600px;}
.y11_c00342{bottom:385.950600px;}
.y10_c00342{bottom:416.100450px;}
.yf_c00342{bottom:446.340600px;}
.ye_c00342{bottom:476.400450px;}
.yd_c00342{bottom:506.640450px;}
.yc_c00342{bottom:536.790450px;}
.yb_c00342{bottom:567.030450px;}
.ya_c00342{bottom:597.180450px;}
.y9_c00342{bottom:627.420450px;}
.y8_c00342{bottom:657.570450px;}
.y7_c00342{bottom:687.810450px;}
.y6_c00342{bottom:717.960450px;}
.y5_c00342{bottom:748.200450px;}
.y4_c00342{bottom:778.350450px;}
.y3_c00342{bottom:808.590450px;}
.h3_c00342{height:62.600889px;}
.h1_c00342{height:62.771836px;}
.h2_c00342{height:63.216299px;}
.h4_c00342{height:73.668786px;}
.h5_c00342{height:73.782464px;}
.h0_c00342{height:1263.000000px;}
.w0_c00342{width:892.500000px;}
.x0_c00342{left:0.000000px;}
.x2_c00342{left:82.710059px;}
.x4_c00342{left:138.960000px;}
.x5_c00342{left:165.240000px;}
.x3_c00342{left:191.520000px;}
.x1_c00342{left:431.730000px;}
@media print{
.v0_c00342{vertical-align:0.000000pt;}
.v1_c00342{vertical-align:28.480000pt;}
.lse_c00342{letter-spacing:-0.074688pt;}
.ls6_c00342{letter-spacing:-0.056016pt;}
.ls9_c00342{letter-spacing:-0.037344pt;}
.ls8_c00342{letter-spacing:-0.031120pt;}
.lsb_c00342{letter-spacing:-0.024896pt;}
.lsa_c00342{letter-spacing:-0.018672pt;}
.lsd_c00342{letter-spacing:-0.012448pt;}
.lsc_c00342{letter-spacing:-0.006224pt;}
.ls7_c00342{letter-spacing:0.000000pt;}
.ls4_c00342{letter-spacing:0.006224pt;}
.ls1_c00342{letter-spacing:0.012448pt;}
.ls2_c00342{letter-spacing:0.018672pt;}
.ls3_c00342{letter-spacing:0.020694pt;}
.ls5_c00342{letter-spacing:0.031120pt;}
.ls0_c00342{letter-spacing:0.056016pt;}
.ws0_c00342{word-spacing:-17.358736pt;}
.ws2_c00342{word-spacing:-17.228032pt;}
.ws1_c00342{word-spacing:-11.526781pt;}
.ws13_c00342{word-spacing:-0.043568pt;}
.ws3_c00342{word-spacing:0.000000pt;}
.wsf_c00342{word-spacing:0.012448pt;}
.wsd_c00342{word-spacing:0.311200pt;}
.wse_c00342{word-spacing:3.192912pt;}
.ws10_c00342{word-spacing:3.846432pt;}
.ws4_c00342{word-spacing:4.176304pt;}
.ws12_c00342{word-spacing:4.462608pt;}
.ws8_c00342{word-spacing:4.804928pt;}
.ws5_c00342{word-spacing:7.655520pt;}
.wsb_c00342{word-spacing:7.674192pt;}
.wsa_c00342{word-spacing:7.692864pt;}
.ws11_c00342{word-spacing:10.562128pt;}
.wsc_c00342{word-spacing:14.719760pt;}
.ws7_c00342{word-spacing:22.369056pt;}
.ws6_c00342{word-spacing:22.742496pt;}
.ws9_c00342{word-spacing:24.653264pt;}
._0_c00342{margin-left:-1.058080pt;}
._1_c00342{width:1.058080pt;}
._2_c00342{width:7.362992pt;}
.fs1_c00342{font-size:41.388800pt;}
.fs0_c00342{font-size:62.240000pt;}
.y0_c00342{bottom:0.000000pt;}
.y2_c00342{bottom:97.547527pt;}
.y1_c00342{bottom:115.387067pt;}
.y18_c00342{bottom:155.147200pt;}
.y17_c00342{bottom:182.027200pt;}
.y16_c00342{bottom:208.827067pt;}
.y15_c00342{bottom:235.707067pt;}
.y14_c00342{bottom:262.507067pt;}
.y13_c00342{bottom:289.387067pt;}
.y12_c00342{bottom:316.187200pt;}
.y11_c00342{bottom:343.067200pt;}
.y10_c00342{bottom:369.867067pt;}
.yf_c00342{bottom:396.747200pt;}
.ye_c00342{bottom:423.467067pt;}
.yd_c00342{bottom:450.347067pt;}
.yc_c00342{bottom:477.147067pt;}
.yb_c00342{bottom:504.027067pt;}
.ya_c00342{bottom:530.827067pt;}
.y9_c00342{bottom:557.707067pt;}
.y8_c00342{bottom:584.507067pt;}
.y7_c00342{bottom:611.387067pt;}
.y6_c00342{bottom:638.187067pt;}
.y5_c00342{bottom:665.067067pt;}
.y4_c00342{bottom:691.867067pt;}
.y3_c00342{bottom:718.747067pt;}
.h3_c00342{height:55.645234pt;}
.h1_c00342{height:55.797187pt;}
.h2_c00342{height:56.192266pt;}
.h4_c00342{height:65.483366pt;}
.h5_c00342{height:65.584412pt;}
.h0_c00342{height:1122.666667pt;}
.w0_c00342{width:793.333333pt;}
.x0_c00342{left:0.000000pt;}
.x2_c00342{left:73.520052pt;}
.x4_c00342{left:123.520000pt;}
.x5_c00342{left:146.880000pt;}
.x3_c00342{left:170.240000pt;}
.x1_c00342{left:383.760000pt;}
}





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

.ir_c00343:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00343{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00343;src:url('chunks/assets/font_cfa439402a332d53e277fffd.woff2')format("woff");}.ff1_c00343{font-family:ff1_c00343;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00343;src:url('chunks/assets/font_fc12c63100ff5a9682ade04a.woff2')format("woff");}.ff2_c00343{font-family:ff2_c00343;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00343;src:url('chunks/assets/font_dda38c9b83d45575dbe37b56.woff2')format("woff");}.ff3_c00343{font-family:ff3_c00343;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00343{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00343{vertical-align:0.000000px;}
.v1_c00343{vertical-align:32.400000px;}
.ls4_c00343{letter-spacing:-0.063018px;}
.lsc_c00343{letter-spacing:-0.049014px;}
.lsb_c00343{letter-spacing:-0.042012px;}
.ls9_c00343{letter-spacing:-0.035010px;}
.ls8_c00343{letter-spacing:-0.028008px;}
.ls6_c00343{letter-spacing:-0.021006px;}
.lsa_c00343{letter-spacing:-0.014004px;}
.ls7_c00343{letter-spacing:-0.007002px;}
.ls5_c00343{letter-spacing:0.000000px;}
.ls2_c00343{letter-spacing:0.021006px;}
.ls1_c00343{letter-spacing:0.023281px;}
.ls3_c00343{letter-spacing:0.049014px;}
.ls0_c00343{letter-spacing:0.063018px;}
.sc__c00343{text-shadow:none;}
.sc0_c00343{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00343{-webkit-text-stroke:0px transparent;}
.sc0_c00343{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00343{word-spacing:-19.528578px;}
.ws1_c00343{word-spacing:-12.967628px;}
.ws2_c00343{word-spacing:0.000000px;}
.ws8_c00343{word-spacing:0.007002px;}
.ws18_c00343{word-spacing:0.014004px;}
.wsd_c00343{word-spacing:0.343098px;}
.ws17_c00343{word-spacing:0.357102px;}
.ws6_c00343{word-spacing:0.378108px;}
.ws13_c00343{word-spacing:0.385110px;}
.wse_c00343{word-spacing:0.721206px;}
.ws9_c00343{word-spacing:1.827522px;}
.ws7_c00343{word-spacing:2.156616px;}
.ws15_c00343{word-spacing:3.900114px;}
.ws14_c00343{word-spacing:3.970134px;}
.ws16_c00343{word-spacing:3.991140px;}
.ws3_c00343{word-spacing:5.405544px;}
.ws12_c00343{word-spacing:5.762646px;}
.wsb_c00343{word-spacing:6.441840px;}
.wsa_c00343{word-spacing:6.847956px;}
.wsf_c00343{word-spacing:6.861960px;}
.ws11_c00343{word-spacing:7.597170px;}
.wsc_c00343{word-spacing:16.566732px;}
.ws10_c00343{word-spacing:20.508858px;}
.ws4_c00343{word-spacing:22.315374px;}
.ws5_c00343{word-spacing:22.336380px;}
._0_c00343{margin-left:-1.190340px;}
._1_c00343{width:1.330380px;}
.fc0_c00343{color:rgb(0,0,0);}
.fs1_c00343{font-size:46.562400px;}
.fs0_c00343{font-size:70.020000px;}
.y0_c00343{bottom:0.000000px;}
.y2_c00343{bottom:109.740968px;}
.y1_c00343{bottom:129.810450px;}
.y23_c00343{bottom:173.010459px;}
.y22_c00343{bottom:193.079942px;}
.y21_c00343{bottom:213.240450px;}
.y20_c00343{bottom:244.200600px;}
.y1f_c00343{bottom:274.440450px;}
.y1e_c00343{bottom:304.590450px;}
.y1d_c00343{bottom:334.830450px;}
.y1c_c00343{bottom:364.980450px;}
.y1b_c00343{bottom:395.220450px;}
.y1a_c00343{bottom:425.370600px;}
.y19_c00343{bottom:455.610600px;}
.y18_c00343{bottom:485.760450px;}
.y17_c00343{bottom:516.000600px;}
.y16_c00343{bottom:546.150450px;}
.y15_c00343{bottom:576.390450px;}
.y14_c00343{bottom:606.450450px;}
.y13_c00343{bottom:636.690450px;}
.y12_c00343{bottom:666.840450px;}
.y11_c00343{bottom:697.080450px;}
.y10_c00343{bottom:727.230450px;}
.yf_c00343{bottom:757.470450px;}
.ye_c00343{bottom:787.620450px;}
.yd_c00343{bottom:817.860600px;}
.yc_c00343{bottom:848.100450px;}
.yb_c00343{bottom:878.250600px;}
.ya_c00343{bottom:908.490450px;}
.y9_c00343{bottom:938.640450px;}
.y8_c00343{bottom:958.800450px;}
.y7_c00343{bottom:988.950450px;}
.y6_c00343{bottom:1019.190450px;}
.y5_c00343{bottom:1049.340450px;}
.y4_c00343{bottom:1079.580450px;}
.y3_c00343{bottom:1109.730450px;}
.h3_c00343{height:62.600889px;}
.h1_c00343{height:62.771836px;}
.h2_c00343{height:63.216299px;}
.h5_c00343{height:74.028186px;}
.h4_c00343{height:74.028786px;}
.h0_c00343{height:1263.000000px;}
.w0_c00343{width:892.500000px;}
.x0_c00343{left:0.000000px;}
.x2_c00343{left:82.710059px;}
.x4_c00343{left:138.960000px;}
.x3_c00343{left:191.520000px;}
.x5_c00343{left:339.750000px;}
.x1_c00343{left:431.730000px;}
.x6_c00343{left:446.399212px;}
@media print{
.v0_c00343{vertical-align:0.000000pt;}
.v1_c00343{vertical-align:28.800000pt;}
.ls4_c00343{letter-spacing:-0.056016pt;}
.lsc_c00343{letter-spacing:-0.043568pt;}
.lsb_c00343{letter-spacing:-0.037344pt;}
.ls9_c00343{letter-spacing:-0.031120pt;}
.ls8_c00343{letter-spacing:-0.024896pt;}
.ls6_c00343{letter-spacing:-0.018672pt;}
.lsa_c00343{letter-spacing:-0.012448pt;}
.ls7_c00343{letter-spacing:-0.006224pt;}
.ls5_c00343{letter-spacing:0.000000pt;}
.ls2_c00343{letter-spacing:0.018672pt;}
.ls1_c00343{letter-spacing:0.020694pt;}
.ls3_c00343{letter-spacing:0.043568pt;}
.ls0_c00343{letter-spacing:0.056016pt;}
.ws0_c00343{word-spacing:-17.358736pt;}
.ws1_c00343{word-spacing:-11.526781pt;}
.ws2_c00343{word-spacing:0.000000pt;}
.ws8_c00343{word-spacing:0.006224pt;}
.ws18_c00343{word-spacing:0.012448pt;}
.wsd_c00343{word-spacing:0.304976pt;}
.ws17_c00343{word-spacing:0.317424pt;}
.ws6_c00343{word-spacing:0.336096pt;}
.ws13_c00343{word-spacing:0.342320pt;}
.wse_c00343{word-spacing:0.641072pt;}
.ws9_c00343{word-spacing:1.624464pt;}
.ws7_c00343{word-spacing:1.916992pt;}
.ws15_c00343{word-spacing:3.466768pt;}
.ws14_c00343{word-spacing:3.529008pt;}
.ws16_c00343{word-spacing:3.547680pt;}
.ws3_c00343{word-spacing:4.804928pt;}
.ws12_c00343{word-spacing:5.122352pt;}
.wsb_c00343{word-spacing:5.726080pt;}
.wsa_c00343{word-spacing:6.087072pt;}
.wsf_c00343{word-spacing:6.099520pt;}
.ws11_c00343{word-spacing:6.753040pt;}
.wsc_c00343{word-spacing:14.725984pt;}
.ws10_c00343{word-spacing:18.230096pt;}
.ws4_c00343{word-spacing:19.835888pt;}
.ws5_c00343{word-spacing:19.854560pt;}
._0_c00343{margin-left:-1.058080pt;}
._1_c00343{width:1.182560pt;}
.fs1_c00343{font-size:41.388800pt;}
.fs0_c00343{font-size:62.240000pt;}
.y0_c00343{bottom:0.000000pt;}
.y2_c00343{bottom:97.547527pt;}
.y1_c00343{bottom:115.387067pt;}
.y23_c00343{bottom:153.787075pt;}
.y22_c00343{bottom:171.626615pt;}
.y21_c00343{bottom:189.547067pt;}
.y20_c00343{bottom:217.067200pt;}
.y1f_c00343{bottom:243.947067pt;}
.y1e_c00343{bottom:270.747067pt;}
.y1d_c00343{bottom:297.627067pt;}
.y1c_c00343{bottom:324.427067pt;}
.y1b_c00343{bottom:351.307067pt;}
.y1a_c00343{bottom:378.107200pt;}
.y19_c00343{bottom:404.987200pt;}
.y18_c00343{bottom:431.787067pt;}
.y17_c00343{bottom:458.667200pt;}
.y16_c00343{bottom:485.467067pt;}
.y15_c00343{bottom:512.347067pt;}
.y14_c00343{bottom:539.067067pt;}
.y13_c00343{bottom:565.947067pt;}
.y12_c00343{bottom:592.747067pt;}
.y11_c00343{bottom:619.627067pt;}
.y10_c00343{bottom:646.427067pt;}
.yf_c00343{bottom:673.307067pt;}
.ye_c00343{bottom:700.107067pt;}
.yd_c00343{bottom:726.987200pt;}
.yc_c00343{bottom:753.867067pt;}
.yb_c00343{bottom:780.667200pt;}
.ya_c00343{bottom:807.547067pt;}
.y9_c00343{bottom:834.347067pt;}
.y8_c00343{bottom:852.267067pt;}
.y7_c00343{bottom:879.067067pt;}
.y6_c00343{bottom:905.947067pt;}
.y5_c00343{bottom:932.747067pt;}
.y4_c00343{bottom:959.627067pt;}
.y3_c00343{bottom:986.427067pt;}
.h3_c00343{height:55.645234pt;}
.h1_c00343{height:55.797187pt;}
.h2_c00343{height:56.192266pt;}
.h5_c00343{height:65.802832pt;}
.h4_c00343{height:65.803366pt;}
.h0_c00343{height:1122.666667pt;}
.w0_c00343{width:793.333333pt;}
.x0_c00343{left:0.000000pt;}
.x2_c00343{left:73.520052pt;}
.x4_c00343{left:123.520000pt;}
.x3_c00343{left:170.240000pt;}
.x5_c00343{left:302.000000pt;}
.x1_c00343{left:383.760000pt;}
.x6_c00343{left:396.799300pt;}
}





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

.ir_c00344:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00344{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00344;src:url('chunks/assets/font_c6bdb7a0e22534b695e7ca68.woff2')format("woff");}.ff1_c00344{font-family:ff1_c00344;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00344;src:url('chunks/assets/font_eb3d17ff342c471c45847832.woff2')format("woff");}.ff2_c00344{font-family:ff2_c00344;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00344;src:url('chunks/assets/font_9d2eb5cf1e3a22164d17e83d.woff2')format("woff");}.ff3_c00344{font-family:ff3_c00344;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00344;src:url('chunks/assets/font_d835d3dfe7c7a955ab38def5.woff2')format("woff");}.ff4_c00344{font-family:ff4_c00344;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00344{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00344{vertical-align:0.000000px;}
.v1_c00344{vertical-align:32.398236px;}
.ls11_c00344{letter-spacing:-0.098028px;}
.ls14_c00344{letter-spacing:-0.091026px;}
.lsa_c00344{letter-spacing:-0.063018px;}
.ls13_c00344{letter-spacing:-0.056016px;}
.ls12_c00344{letter-spacing:-0.049014px;}
.ls10_c00344{letter-spacing:-0.042012px;}
.lse_c00344{letter-spacing:-0.035010px;}
.lsd_c00344{letter-spacing:-0.028008px;}
.ls15_c00344{letter-spacing:-0.021006px;}
.lsf_c00344{letter-spacing:-0.014004px;}
.lsc_c00344{letter-spacing:-0.007002px;}
.lsb_c00344{letter-spacing:0.000000px;}
.ls8_c00344{letter-spacing:0.007002px;}
.ls1_c00344{letter-spacing:0.014004px;}
.ls3_c00344{letter-spacing:0.021006px;}
.ls2_c00344{letter-spacing:0.023281px;}
.ls6_c00344{letter-spacing:0.028008px;}
.ls4_c00344{letter-spacing:0.042012px;}
.ls5_c00344{letter-spacing:0.105030px;}
.ls9_c00344{letter-spacing:0.203058px;}
.ls7_c00344{letter-spacing:45.330948px;}
.ls0_c00344{letter-spacing:54.692622px;}
.sc__c00344{text-shadow:none;}
.sc0_c00344{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00344{-webkit-text-stroke:0px transparent;}
.sc0_c00344{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00344{word-spacing:-19.458558px;}
.ws0_c00344{word-spacing:-12.967628px;}
.ws2_c00344{word-spacing:0.000000px;}
.ws2a_c00344{word-spacing:0.007002px;}
.ws25_c00344{word-spacing:0.021006px;}
.ws9_c00344{word-spacing:0.028008px;}
.ws26_c00344{word-spacing:0.035010px;}
.ws8_c00344{word-spacing:0.357102px;}
.wsf_c00344{word-spacing:1.820520px;}
.ws6_c00344{word-spacing:2.135610px;}
.ws18_c00344{word-spacing:2.184624px;}
.ws24_c00344{word-spacing:4.691340px;}
.ws15_c00344{word-spacing:7.905258px;}
.ws14_c00344{word-spacing:8.255358px;}
.ws28_c00344{word-spacing:8.640468px;}
.ws20_c00344{word-spacing:8.654472px;}
.ws1f_c00344{word-spacing:8.717490px;}
.ws2d_c00344{word-spacing:9.340668px;}
.ws11_c00344{word-spacing:10.762074px;}
.ws22_c00344{word-spacing:11.910402px;}
.ws23_c00344{word-spacing:11.931408px;}
.ws33_c00344{word-spacing:12.246498px;}
.ws10_c00344{word-spacing:12.946698px;}
.ws1e_c00344{word-spacing:13.639896px;}
.ws36_c00344{word-spacing:14.410116px;}
.ws7_c00344{word-spacing:15.502428px;}
.ws27_c00344{word-spacing:16.937838px;}
.ws2b_c00344{word-spacing:18.009144px;}
.ws19_c00344{word-spacing:18.716346px;}
.wse_c00344{word-spacing:20.144754px;}
.ws34_c00344{word-spacing:23.764788px;}
.ws1b_c00344{word-spacing:26.880678px;}
.ws21_c00344{word-spacing:30.227634px;}
.ws35_c00344{word-spacing:30.577734px;}
.ws1a_c00344{word-spacing:33.532578px;}
.wsc_c00344{word-spacing:34.547868px;}
.ws2f_c00344{word-spacing:34.582878px;}
.ws17_c00344{word-spacing:34.883964px;}
.wsa_c00344{word-spacing:36.732492px;}
.wsb_c00344{word-spacing:36.802512px;}
.ws13_c00344{word-spacing:38.104884px;}
.ws30_c00344{word-spacing:40.331520px;}
.ws29_c00344{word-spacing:43.230348px;}
.ws32_c00344{word-spacing:43.902540px;}
.ws1d_c00344{word-spacing:45.015858px;}
.wsd_c00344{word-spacing:50.792508px;}
.ws3_c00344{word-spacing:53.992422px;}
.ws5_c00344{word-spacing:54.321516px;}
.ws4_c00344{word-spacing:54.377532px;}
.ws16_c00344{word-spacing:55.070730px;}
.ws31_c00344{word-spacing:58.326660px;}
.ws2c_c00344{word-spacing:64.488420px;}
.ws37_c00344{word-spacing:72.323658px;}
.ws2e_c00344{word-spacing:73.107882px;}
.ws12_c00344{word-spacing:79.962840px;}
.ws1c_c00344{word-spacing:87.475986px;}
._0_c00344{margin-left:-1.169334px;}
._1_c00344{width:1.078308px;}
._2_c00344{width:44.747982px;}
.fc0_c00344{color:rgb(0,0,0);}
.fs1_c00344{font-size:46.562400px;}
.fs0_c00344{font-size:70.020000px;}
.y0_c00344{bottom:0.000000px;}
.y2_c00344{bottom:109.740968px;}
.y1_c00344{bottom:129.810450px;}
.y21_c00344{bottom:183.540713px;}
.y20_c00344{bottom:213.777480px;}
.y3c_c00344{bottom:213.780600px;}
.y1f_c00344{bottom:243.837066px;}
.y3b_c00344{bottom:243.840450px;}
.y1e_c00344{bottom:274.076953px;}
.y3a_c00344{bottom:274.080450px;}
.y1d_c00344{bottom:304.227565px;}
.y39_c00344{bottom:304.230450px;}
.y1c_c00344{bottom:334.467453px;}
.y38_c00344{bottom:334.470450px;}
.y1b_c00344{bottom:364.618065px;}
.y37_c00344{bottom:364.620450px;}
.y1a_c00344{bottom:394.857953px;}
.y36_c00344{bottom:394.860600px;}
.y19_c00344{bottom:425.008565px;}
.y35_c00344{bottom:425.010450px;}
.y18_c00344{bottom:455.248452px;}
.y34_c00344{bottom:455.250450px;}
.y17_c00344{bottom:485.399064px;}
.y33_c00344{bottom:485.400450px;}
.y16_c00344{bottom:515.638951px;}
.y32_c00344{bottom:515.640450px;}
.y15_c00344{bottom:545.789563px;}
.y31_c00344{bottom:545.790450px;}
.y14_c00344{bottom:576.029451px;}
.y30_c00344{bottom:576.030450px;}
.y13_c00344{bottom:606.180063px;}
.y2f_c00344{bottom:606.180450px;}
.y12_c00344{bottom:636.419951px;}
.y2e_c00344{bottom:636.420450px;}
.y11_c00344{bottom:666.659838px;}
.y2d_c00344{bottom:666.660450px;}
.y10_c00344{bottom:696.808452px;}
.y2c_c00344{bottom:696.810450px;}
.yf_c00344{bottom:727.048340px;}
.y2b_c00344{bottom:727.050450px;}
.ye_c00344{bottom:757.198952px;}
.y2a_c00344{bottom:757.200450px;}
.yd_c00344{bottom:787.438839px;}
.y29_c00344{bottom:787.440450px;}
.yc_c00344{bottom:817.589451px;}
.y28_c00344{bottom:817.590450px;}
.yb_c00344{bottom:847.829339px;}
.y27_c00344{bottom:847.830450px;}
.ya_c00344{bottom:877.979951px;}
.y26_c00344{bottom:877.980450px;}
.y9_c00344{bottom:908.219838px;}
.y25_c00344{bottom:908.220450px;}
.y24_c00344{bottom:938.370450px;}
.y8_c00344{bottom:938.370891px;}
.y7_c00344{bottom:968.610779px;}
.y23_c00344{bottom:988.860450px;}
.y6_c00344{bottom:1019.100450px;}
.y22_c00344{bottom:1019.190450px;}
.y5_c00344{bottom:1049.340450px;}
.y4_c00344{bottom:1079.580450px;}
.y3_c00344{bottom:1109.730450px;}
.h3_c00344{height:62.600889px;}
.h1_c00344{height:62.771836px;}
.h2_c00344{height:63.216299px;}
.h7_c00344{height:73.028672px;}
.h6_c00344{height:73.681266px;}
.h8_c00344{height:73.782464px;}
.h5_c00344{height:74.036778px;}
.h4_c00344{height:74.140700px;}
.h0_c00344{height:1263.000000px;}
.w0_c00344{width:892.500000px;}
.x0_c00344{left:0.000000px;}
.x2_c00344{left:82.710059px;}
.x3_c00344{left:138.240000px;}
.x1_c00344{left:431.730000px;}
.x4_c00344{left:454.500000px;}
@media print{
.v0_c00344{vertical-align:0.000000pt;}
.v1_c00344{vertical-align:28.798432pt;}
.ls11_c00344{letter-spacing:-0.087136pt;}
.ls14_c00344{letter-spacing:-0.080912pt;}
.lsa_c00344{letter-spacing:-0.056016pt;}
.ls13_c00344{letter-spacing:-0.049792pt;}
.ls12_c00344{letter-spacing:-0.043568pt;}
.ls10_c00344{letter-spacing:-0.037344pt;}
.lse_c00344{letter-spacing:-0.031120pt;}
.lsd_c00344{letter-spacing:-0.024896pt;}
.ls15_c00344{letter-spacing:-0.018672pt;}
.lsf_c00344{letter-spacing:-0.012448pt;}
.lsc_c00344{letter-spacing:-0.006224pt;}
.lsb_c00344{letter-spacing:0.000000pt;}
.ls8_c00344{letter-spacing:0.006224pt;}
.ls1_c00344{letter-spacing:0.012448pt;}
.ls3_c00344{letter-spacing:0.018672pt;}
.ls2_c00344{letter-spacing:0.020694pt;}
.ls6_c00344{letter-spacing:0.024896pt;}
.ls4_c00344{letter-spacing:0.037344pt;}
.ls5_c00344{letter-spacing:0.093360pt;}
.ls9_c00344{letter-spacing:0.180496pt;}
.ls7_c00344{letter-spacing:40.294176pt;}
.ls0_c00344{letter-spacing:48.615664pt;}
.ws1_c00344{word-spacing:-17.296496pt;}
.ws0_c00344{word-spacing:-11.526781pt;}
.ws2_c00344{word-spacing:0.000000pt;}
.ws2a_c00344{word-spacing:0.006224pt;}
.ws25_c00344{word-spacing:0.018672pt;}
.ws9_c00344{word-spacing:0.024896pt;}
.ws26_c00344{word-spacing:0.031120pt;}
.ws8_c00344{word-spacing:0.317424pt;}
.wsf_c00344{word-spacing:1.618240pt;}
.ws6_c00344{word-spacing:1.898320pt;}
.ws18_c00344{word-spacing:1.941888pt;}
.ws24_c00344{word-spacing:4.170080pt;}
.ws15_c00344{word-spacing:7.026896pt;}
.ws14_c00344{word-spacing:7.338096pt;}
.ws28_c00344{word-spacing:7.680416pt;}
.ws20_c00344{word-spacing:7.692864pt;}
.ws1f_c00344{word-spacing:7.748880pt;}
.ws2d_c00344{word-spacing:8.302816pt;}
.ws11_c00344{word-spacing:9.566288pt;}
.ws22_c00344{word-spacing:10.587024pt;}
.ws23_c00344{word-spacing:10.605696pt;}
.ws33_c00344{word-spacing:10.885776pt;}
.ws10_c00344{word-spacing:11.508176pt;}
.ws1e_c00344{word-spacing:12.124352pt;}
.ws36_c00344{word-spacing:12.808992pt;}
.ws7_c00344{word-spacing:13.779936pt;}
.ws27_c00344{word-spacing:15.055856pt;}
.ws2b_c00344{word-spacing:16.008128pt;}
.ws19_c00344{word-spacing:16.636752pt;}
.wse_c00344{word-spacing:17.906448pt;}
.ws34_c00344{word-spacing:21.124256pt;}
.ws1b_c00344{word-spacing:23.893936pt;}
.ws21_c00344{word-spacing:26.869008pt;}
.ws35_c00344{word-spacing:27.180208pt;}
.ws1a_c00344{word-spacing:29.806736pt;}
.wsc_c00344{word-spacing:30.709216pt;}
.ws2f_c00344{word-spacing:30.740336pt;}
.ws17_c00344{word-spacing:31.007968pt;}
.wsa_c00344{word-spacing:32.651104pt;}
.wsb_c00344{word-spacing:32.713344pt;}
.ws13_c00344{word-spacing:33.871008pt;}
.ws30_c00344{word-spacing:35.850240pt;}
.ws29_c00344{word-spacing:38.426976pt;}
.ws32_c00344{word-spacing:39.024480pt;}
.ws1d_c00344{word-spacing:40.014096pt;}
.wsd_c00344{word-spacing:45.148896pt;}
.ws3_c00344{word-spacing:47.993264pt;}
.ws5_c00344{word-spacing:48.285792pt;}
.ws4_c00344{word-spacing:48.335584pt;}
.ws16_c00344{word-spacing:48.951760pt;}
.ws31_c00344{word-spacing:51.845920pt;}
.ws2c_c00344{word-spacing:57.323040pt;}
.ws37_c00344{word-spacing:64.287696pt;}
.ws2e_c00344{word-spacing:64.984784pt;}
.ws12_c00344{word-spacing:71.078080pt;}
.ws1c_c00344{word-spacing:77.756432pt;}
._0_c00344{margin-left:-1.039408pt;}
._1_c00344{width:0.958496pt;}
._2_c00344{width:39.775984pt;}
.fs1_c00344{font-size:41.388800pt;}
.fs0_c00344{font-size:62.240000pt;}
.y0_c00344{bottom:0.000000pt;}
.y2_c00344{bottom:97.547527pt;}
.y1_c00344{bottom:115.387067pt;}
.y21_c00344{bottom:163.147300pt;}
.y20_c00344{bottom:190.024427pt;}
.y3c_c00344{bottom:190.027200pt;}
.y1f_c00344{bottom:216.744059pt;}
.y3b_c00344{bottom:216.747067pt;}
.y1e_c00344{bottom:243.623959pt;}
.y3a_c00344{bottom:243.627067pt;}
.y1d_c00344{bottom:270.424503pt;}
.y39_c00344{bottom:270.427067pt;}
.y1c_c00344{bottom:297.304403pt;}
.y38_c00344{bottom:297.307067pt;}
.y1b_c00344{bottom:324.104947pt;}
.y37_c00344{bottom:324.107067pt;}
.y1a_c00344{bottom:350.984847pt;}
.y36_c00344{bottom:350.987200pt;}
.y19_c00344{bottom:377.785391pt;}
.y35_c00344{bottom:377.787067pt;}
.y18_c00344{bottom:404.665291pt;}
.y34_c00344{bottom:404.667067pt;}
.y17_c00344{bottom:431.465835pt;}
.y33_c00344{bottom:431.467067pt;}
.y16_c00344{bottom:458.345735pt;}
.y32_c00344{bottom:458.347067pt;}
.y15_c00344{bottom:485.146279pt;}
.y31_c00344{bottom:485.147067pt;}
.y14_c00344{bottom:512.026179pt;}
.y30_c00344{bottom:512.027067pt;}
.y13_c00344{bottom:538.826723pt;}
.y2f_c00344{bottom:538.827067pt;}
.y12_c00344{bottom:565.706623pt;}
.y2e_c00344{bottom:565.707067pt;}
.y11_c00344{bottom:592.586523pt;}
.y2d_c00344{bottom:592.587067pt;}
.y10_c00344{bottom:619.385291pt;}
.y2c_c00344{bottom:619.387067pt;}
.yf_c00344{bottom:646.265191pt;}
.y2b_c00344{bottom:646.267067pt;}
.ye_c00344{bottom:673.065735pt;}
.y2a_c00344{bottom:673.067067pt;}
.yd_c00344{bottom:699.945635pt;}
.y29_c00344{bottom:699.947067pt;}
.yc_c00344{bottom:726.746179pt;}
.y28_c00344{bottom:726.747067pt;}
.yb_c00344{bottom:753.626079pt;}
.y27_c00344{bottom:753.627067pt;}
.ya_c00344{bottom:780.426623pt;}
.y26_c00344{bottom:780.427067pt;}
.y9_c00344{bottom:807.306523pt;}
.y25_c00344{bottom:807.307067pt;}
.y24_c00344{bottom:834.107067pt;}
.y8_c00344{bottom:834.107459pt;}
.y7_c00344{bottom:860.987359pt;}
.y23_c00344{bottom:878.987067pt;}
.y6_c00344{bottom:905.867067pt;}
.y22_c00344{bottom:905.947067pt;}
.y5_c00344{bottom:932.747067pt;}
.y4_c00344{bottom:959.627067pt;}
.y3_c00344{bottom:986.427067pt;}
.h3_c00344{height:55.645234pt;}
.h1_c00344{height:55.797187pt;}
.h2_c00344{height:56.192266pt;}
.h7_c00344{height:64.914375pt;}
.h6_c00344{height:65.494459pt;}
.h8_c00344{height:65.584412pt;}
.h5_c00344{height:65.810470pt;}
.h4_c00344{height:65.902845pt;}
.h0_c00344{height:1122.666667pt;}
.w0_c00344{width:793.333333pt;}
.x0_c00344{left:0.000000pt;}
.x2_c00344{left:73.520052pt;}
.x3_c00344{left:122.880000pt;}
.x1_c00344{left:383.760000pt;}
.x4_c00344{left:404.000000pt;}
}





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

.ir_c00345:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00345{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00345;src:url('chunks/assets/font_56c94ab3d5703d047f549626.woff2')format("woff");}.ff1_c00345{font-family:ff1_c00345;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00345;src:url('chunks/assets/font_4aa6429287620f05ff24758b.woff2')format("woff");}.ff2_c00345{font-family:ff2_c00345;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00345;src:url('chunks/assets/font_71f4419739fd18aeb8508b0e.woff2')format("woff");}.ff3_c00345{font-family:ff3_c00345;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00345{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00345{vertical-align:0.000000px;}
.v1_c00345{vertical-align:32.422434px;}
.ls5_c00345{letter-spacing:-0.063018px;}
.lsb_c00345{letter-spacing:-0.049014px;}
.lsd_c00345{letter-spacing:-0.042012px;}
.lsa_c00345{letter-spacing:-0.035010px;}
.ls9_c00345{letter-spacing:-0.028008px;}
.lsc_c00345{letter-spacing:-0.021006px;}
.ls8_c00345{letter-spacing:-0.014004px;}
.ls7_c00345{letter-spacing:-0.007002px;}
.ls6_c00345{letter-spacing:0.000000px;}
.ls3_c00345{letter-spacing:0.014004px;}
.ls2_c00345{letter-spacing:0.021006px;}
.ls4_c00345{letter-spacing:0.023281px;}
.ls1_c00345{letter-spacing:0.028008px;}
.ls0_c00345{letter-spacing:0.035010px;}
.sc__c00345{text-shadow:none;}
.sc0_c00345{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00345{-webkit-text-stroke:0px transparent;}
.sc0_c00345{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00345{word-spacing:-19.479564px;}
.ws1_c00345{word-spacing:-12.967628px;}
.ws2_c00345{word-spacing:0.000000px;}
.wsf_c00345{word-spacing:0.364104px;}
.ws10_c00345{word-spacing:0.385110px;}
.ws4_c00345{word-spacing:3.599028px;}
.ws15_c00345{word-spacing:3.991140px;}
.ws14_c00345{word-spacing:11.161188px;}
.ws17_c00345{word-spacing:12.561588px;}
.wsd_c00345{word-spacing:16.216632px;}
.ws8_c00345{word-spacing:18.723348px;}
.ws9_c00345{word-spacing:18.744354px;}
.wse_c00345{word-spacing:19.451556px;}
.wsc_c00345{word-spacing:20.165760px;}
.ws3_c00345{word-spacing:24.471990px;}
.ws19_c00345{word-spacing:25.522290px;}
.ws5_c00345{word-spacing:25.571304px;}
.ws16_c00345{word-spacing:29.191338px;}
.ws11_c00345{word-spacing:38.146896px;}
.ws12_c00345{word-spacing:38.868102px;}
.ws18_c00345{word-spacing:39.617316px;}
.wsa_c00345{word-spacing:44.315658px;}
.ws6_c00345{word-spacing:52.220916px;}
.wsb_c00345{word-spacing:56.912256px;}
.ws7_c00345{word-spacing:62.947980px;}
.ws13_c00345{word-spacing:119.181042px;}
._1_c00345{margin-left:-1.218348px;}
._0_c00345{width:1.449414px;}
.fc0_c00345{color:rgb(0,0,0);}
.fs1_c00345{font-size:46.562400px;}
.fs0_c00345{font-size:70.020000px;}
.y0_c00345{bottom:0.000000px;}
.y2_c00345{bottom:109.740968px;}
.y1_c00345{bottom:129.810450px;}
.y24_c00345{bottom:173.100477px;}
.y23_c00345{bottom:203.251089px;}
.y22_c00345{bottom:233.490977px;}
.y21_c00345{bottom:263.550563px;}
.y20_c00345{bottom:293.790450px;}
.y1d_c00345{bottom:324.749838px;}
.y1c_c00345{bottom:354.894992px;}
.y1b_c00345{bottom:385.134879px;}
.y1a_c00345{bottom:415.285491px;}
.y19_c00345{bottom:445.525379px;}
.y18_c00345{bottom:475.765266px;}
.y17_c00345{bottom:505.915878px;}
.y16_c00345{bottom:536.155766px;}
.y15_c00345{bottom:566.306378px;}
.y14_c00345{bottom:596.456990px;}
.y13_c00345{bottom:626.607602px;}
.y12_c00345{bottom:656.847489px;}
.y11_c00345{bottom:686.998101px;}
.y10_c00345{bottom:717.237989px;}
.yf_c00345{bottom:747.388601px;}
.ye_c00345{bottom:777.628488px;}
.yd_c00345{bottom:807.779100px;}
.yc_c00345{bottom:838.018988px;}
.yb_c00345{bottom:868.169600px;}
.ya_c00345{bottom:898.409487px;}
.y9_c00345{bottom:928.560099px;}
.y8_c00345{bottom:958.799987px;}
.y7_c00345{bottom:988.950599px;}
.y6_c00345{bottom:1019.190486px;}
.y1f_c00345{bottom:1038.720450px;}
.y5_c00345{bottom:1049.341098px;}
.y4_c00345{bottom:1079.580985px;}
.y1e_c00345{bottom:1089.300450px;}
.y3_c00345{bottom:1109.731597px;}
.h2_c00345{height:62.600889px;}
.h1_c00345{height:62.771836px;}
.h4_c00345{height:63.216299px;}
.h3_c00345{height:74.051220px;}
.h0_c00345{height:1263.000000px;}
.w0_c00345{width:892.500000px;}
.x0_c00345{left:0.000000px;}
.x2_c00345{left:82.710059px;}
.x3_c00345{left:138.239419px;}
.x1_c00345{left:431.730000px;}
.x5_c00345{left:446.310495px;}
.x4_c00345{left:454.500000px;}
@media print{
.v0_c00345{vertical-align:0.000000pt;}
.v1_c00345{vertical-align:28.819941pt;}
.ls5_c00345{letter-spacing:-0.056016pt;}
.lsb_c00345{letter-spacing:-0.043568pt;}
.lsd_c00345{letter-spacing:-0.037344pt;}
.lsa_c00345{letter-spacing:-0.031120pt;}
.ls9_c00345{letter-spacing:-0.024896pt;}
.lsc_c00345{letter-spacing:-0.018672pt;}
.ls8_c00345{letter-spacing:-0.012448pt;}
.ls7_c00345{letter-spacing:-0.006224pt;}
.ls6_c00345{letter-spacing:0.000000pt;}
.ls3_c00345{letter-spacing:0.012448pt;}
.ls2_c00345{letter-spacing:0.018672pt;}
.ls4_c00345{letter-spacing:0.020694pt;}
.ls1_c00345{letter-spacing:0.024896pt;}
.ls0_c00345{letter-spacing:0.031120pt;}
.ws0_c00345{word-spacing:-17.315168pt;}
.ws1_c00345{word-spacing:-11.526781pt;}
.ws2_c00345{word-spacing:0.000000pt;}
.wsf_c00345{word-spacing:0.323648pt;}
.ws10_c00345{word-spacing:0.342320pt;}
.ws4_c00345{word-spacing:3.199136pt;}
.ws15_c00345{word-spacing:3.547680pt;}
.ws14_c00345{word-spacing:9.921056pt;}
.ws17_c00345{word-spacing:11.165856pt;}
.wsd_c00345{word-spacing:14.414784pt;}
.ws8_c00345{word-spacing:16.642976pt;}
.ws9_c00345{word-spacing:16.661648pt;}
.wse_c00345{word-spacing:17.290272pt;}
.wsc_c00345{word-spacing:17.925120pt;}
.ws3_c00345{word-spacing:21.752880pt;}
.ws19_c00345{word-spacing:22.686480pt;}
.ws5_c00345{word-spacing:22.730048pt;}
.ws16_c00345{word-spacing:25.947856pt;}
.ws11_c00345{word-spacing:33.908352pt;}
.ws12_c00345{word-spacing:34.549424pt;}
.ws18_c00345{word-spacing:35.215392pt;}
.wsa_c00345{word-spacing:39.391696pt;}
.ws6_c00345{word-spacing:46.418592pt;}
.wsb_c00345{word-spacing:50.588672pt;}
.ws7_c00345{word-spacing:55.953760pt;}
.ws13_c00345{word-spacing:105.938704pt;}
._1_c00345{margin-left:-1.082976pt;}
._0_c00345{width:1.288368pt;}
.fs1_c00345{font-size:41.388800pt;}
.fs0_c00345{font-size:62.240000pt;}
.y0_c00345{bottom:0.000000pt;}
.y2_c00345{bottom:97.547527pt;}
.y1_c00345{bottom:115.387067pt;}
.y24_c00345{bottom:153.867091pt;}
.y23_c00345{bottom:180.667635pt;}
.y22_c00345{bottom:207.547535pt;}
.y21_c00345{bottom:234.267167pt;}
.y20_c00345{bottom:261.147067pt;}
.y1d_c00345{bottom:288.666523pt;}
.y1c_c00345{bottom:315.462215pt;}
.y1b_c00345{bottom:342.342115pt;}
.y1a_c00345{bottom:369.142659pt;}
.y19_c00345{bottom:396.022559pt;}
.y18_c00345{bottom:422.902459pt;}
.y17_c00345{bottom:449.703003pt;}
.y16_c00345{bottom:476.582903pt;}
.y15_c00345{bottom:503.383447pt;}
.y14_c00345{bottom:530.183991pt;}
.y13_c00345{bottom:556.984535pt;}
.y12_c00345{bottom:583.864435pt;}
.y11_c00345{bottom:610.664979pt;}
.y10_c00345{bottom:637.544879pt;}
.yf_c00345{bottom:664.345423pt;}
.ye_c00345{bottom:691.225323pt;}
.yd_c00345{bottom:718.025867pt;}
.yc_c00345{bottom:744.905767pt;}
.yb_c00345{bottom:771.706311pt;}
.ya_c00345{bottom:798.586211pt;}
.y9_c00345{bottom:825.386755pt;}
.y8_c00345{bottom:852.266655pt;}
.y7_c00345{bottom:879.067199pt;}
.y6_c00345{bottom:905.947099pt;}
.y1f_c00345{bottom:923.307067pt;}
.y5_c00345{bottom:932.747643pt;}
.y4_c00345{bottom:959.627543pt;}
.y1e_c00345{bottom:968.267067pt;}
.y3_c00345{bottom:986.428087pt;}
.h2_c00345{height:55.645234pt;}
.h1_c00345{height:55.797187pt;}
.h4_c00345{height:56.192266pt;}
.h3_c00345{height:65.823307pt;}
.h0_c00345{height:1122.666667pt;}
.w0_c00345{width:793.333333pt;}
.x0_c00345{left:0.000000pt;}
.x2_c00345{left:73.520052pt;}
.x3_c00345{left:122.879484pt;}
.x1_c00345{left:383.760000pt;}
.x5_c00345{left:396.720440pt;}
.x4_c00345{left:404.000000pt;}
}





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

.ir_c00346:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00346{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00346;src:url('chunks/assets/font_29fe38aefae36d2c12471622.woff2')format("woff");}.ff1_c00346{font-family:ff1_c00346;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00346;src:url('chunks/assets/font_d835a0873b5dd74207b1cdce.woff2')format("woff");}.ff2_c00346{font-family:ff2_c00346;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00346{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00346{vertical-align:0.000000px;}
.ls2_c00346{letter-spacing:-0.063018px;}
.ls5_c00346{letter-spacing:-0.035010px;}
.ls6_c00346{letter-spacing:-0.021006px;}
.ls3_c00346{letter-spacing:0.000000px;}
.ls1_c00346{letter-spacing:0.007002px;}
.ls0_c00346{letter-spacing:0.070020px;}
.ls4_c00346{letter-spacing:0.231066px;}
.sc__c00346{text-shadow:none;}
.sc0_c00346{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00346{-webkit-text-stroke:0px transparent;}
.sc0_c00346{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00346{word-spacing:-0.245070px;}
.ws5_c00346{word-spacing:-0.021006px;}
.ws0_c00346{word-spacing:0.000000px;}
.ws2_c00346{word-spacing:0.021006px;}
.ws3_c00346{word-spacing:20.529864px;}
.ws4_c00346{word-spacing:20.886966px;}
._0_c00346{margin-left:-1.421406px;}
._2_c00346{width:1.358388px;}
._1_c00346{width:7.919262px;}
._3_c00346{width:20.543868px;}
.fc0_c00346{color:rgb(0,0,0);}
.fs0_c00346{font-size:70.020000px;}
.y0_c00346{bottom:0.000000px;}
.y2_c00346{bottom:109.740968px;}
.y1_c00346{bottom:129.810450px;}
.y18_c00346{bottom:180.657224px;}
.y17_c00346{bottom:210.897111px;}
.y16_c00346{bottom:241.047723px;}
.y15_c00346{bottom:271.287611px;}
.y14_c00346{bottom:301.438223px;}
.y13_c00346{bottom:331.678110px;}
.y12_c00346{bottom:361.828722px;}
.y11_c00346{bottom:392.068610px;}
.y10_c00346{bottom:422.219222px;}
.yf_c00346{bottom:452.459109px;}
.ye_c00346{bottom:482.609721px;}
.yd_c00346{bottom:512.849609px;}
.yc_c00346{bottom:543.000221px;}
.yb_c00346{bottom:573.240108px;}
.ya_c00346{bottom:603.390720px;}
.y9_c00346{bottom:633.630607px;}
.y8_c00346{bottom:663.781220px;}
.y7_c00346{bottom:988.950599px;}
.y6_c00346{bottom:1019.190486px;}
.y5_c00346{bottom:1049.341098px;}
.y4_c00346{bottom:1079.580985px;}
.y3_c00346{bottom:1109.731597px;}
.h1_c00346{height:62.771836px;}
.h2_c00346{height:63.216299px;}
.h0_c00346{height:1263.000000px;}
.w0_c00346{width:892.500000px;}
.x0_c00346{left:0.000000px;}
.x2_c00346{left:82.710059px;}
.x6_c00346{left:138.241170px;}
.x5_c00346{left:164.430400px;}
.x4_c00346{left:288.180248px;}
.x1_c00346{left:431.730000px;}
.x3_c00346{left:446.309914px;}
@media print{
.v0_c00346{vertical-align:0.000000pt;}
.ls2_c00346{letter-spacing:-0.056016pt;}
.ls5_c00346{letter-spacing:-0.031120pt;}
.ls6_c00346{letter-spacing:-0.018672pt;}
.ls3_c00346{letter-spacing:0.000000pt;}
.ls1_c00346{letter-spacing:0.006224pt;}
.ls0_c00346{letter-spacing:0.062240pt;}
.ls4_c00346{letter-spacing:0.205392pt;}
.ws1_c00346{word-spacing:-0.217840pt;}
.ws5_c00346{word-spacing:-0.018672pt;}
.ws0_c00346{word-spacing:0.000000pt;}
.ws2_c00346{word-spacing:0.018672pt;}
.ws3_c00346{word-spacing:18.248768pt;}
.ws4_c00346{word-spacing:18.566192pt;}
._0_c00346{margin-left:-1.263472pt;}
._2_c00346{width:1.207456pt;}
._1_c00346{width:7.039344pt;}
._3_c00346{width:18.261216pt;}
.fs0_c00346{font-size:62.240000pt;}
.y0_c00346{bottom:0.000000pt;}
.y2_c00346{bottom:97.547527pt;}
.y1_c00346{bottom:115.387067pt;}
.y18_c00346{bottom:160.584199pt;}
.y17_c00346{bottom:187.464099pt;}
.y16_c00346{bottom:214.264643pt;}
.y15_c00346{bottom:241.144543pt;}
.y14_c00346{bottom:267.945087pt;}
.y13_c00346{bottom:294.824987pt;}
.y12_c00346{bottom:321.625531pt;}
.y11_c00346{bottom:348.505431pt;}
.y10_c00346{bottom:375.305975pt;}
.yf_c00346{bottom:402.185875pt;}
.ye_c00346{bottom:428.986419pt;}
.yd_c00346{bottom:455.866319pt;}
.yc_c00346{bottom:482.666863pt;}
.yb_c00346{bottom:509.546763pt;}
.ya_c00346{bottom:536.347307pt;}
.y9_c00346{bottom:563.227207pt;}
.y8_c00346{bottom:590.027751pt;}
.y7_c00346{bottom:879.067199pt;}
.y6_c00346{bottom:905.947099pt;}
.y5_c00346{bottom:932.747643pt;}
.y4_c00346{bottom:959.627543pt;}
.y3_c00346{bottom:986.428087pt;}
.h1_c00346{height:55.797187pt;}
.h2_c00346{height:56.192266pt;}
.h0_c00346{height:1122.666667pt;}
.w0_c00346{width:793.333333pt;}
.x0_c00346{left:0.000000pt;}
.x2_c00346{left:73.520052pt;}
.x6_c00346{left:122.881040pt;}
.x5_c00346{left:146.160356pt;}
.x4_c00346{left:256.160220pt;}
.x1_c00346{left:383.760000pt;}
.x3_c00346{left:396.719924pt;}
}





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

.ir_c00347:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00347{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00347;src:url('chunks/assets/font_7a30ebc948c41d37e93b816d.woff2')format("woff");}.ff1_c00347{font-family:ff1_c00347;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00347;src:url('chunks/assets/font_50a8a13800f0f3e12b0c8651.woff2')format("woff");}.ff2_c00347{font-family:ff2_c00347;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00347;src:url('chunks/assets/font_f59994aaf473725e4d4d3e53.woff2')format("woff");}.ff3_c00347{font-family:ff3_c00347;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00347{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00347{vertical-align:0.000000px;}
.ls6_c00347{letter-spacing:-0.161046px;}
.ls3_c00347{letter-spacing:-0.063018px;}
.ls5_c00347{letter-spacing:-0.056016px;}
.ls7_c00347{letter-spacing:-0.042012px;}
.lsa_c00347{letter-spacing:-0.035010px;}
.ls9_c00347{letter-spacing:-0.028008px;}
.ls8_c00347{letter-spacing:-0.021006px;}
.lsb_c00347{letter-spacing:-0.007002px;}
.ls4_c00347{letter-spacing:0.000000px;}
.ls1_c00347{letter-spacing:0.007002px;}
.ls2_c00347{letter-spacing:0.021006px;}
.ls0_c00347{letter-spacing:0.070020px;}
.sc__c00347{text-shadow:none;}
.sc0_c00347{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00347{-webkit-text-stroke:0px transparent;}
.sc0_c00347{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00347{word-spacing:0.000000px;}
.ws4_c00347{word-spacing:0.007002px;}
.ws1_c00347{word-spacing:0.042012px;}
.ws2_c00347{word-spacing:0.147042px;}
.ws9_c00347{word-spacing:0.364104px;}
.ws5_c00347{word-spacing:0.371106px;}
.wsa_c00347{word-spacing:0.707202px;}
.wse_c00347{word-spacing:0.728208px;}
.ws6_c00347{word-spacing:1.463418px;}
.ws11_c00347{word-spacing:2.548728px;}
.ws10_c00347{word-spacing:6.112746px;}
.ws3_c00347{word-spacing:6.504858px;}
.wsb_c00347{word-spacing:8.976564px;}
.ws8_c00347{word-spacing:9.354672px;}
.wsf_c00347{word-spacing:16.167618px;}
.ws12_c00347{word-spacing:16.895826px;}
.wsd_c00347{word-spacing:18.716346px;}
.wsc_c00347{word-spacing:18.751356px;}
.ws7_c00347{word-spacing:28.057014px;}
._4_c00347{margin-left:-9.144612px;}
._2_c00347{margin-left:-1.218348px;}
._0_c00347{width:1.211346px;}
._3_c00347{width:6.301800px;}
._1_c00347{width:8.521434px;}
.fc0_c00347{color:rgb(0,0,0);}
.fs0_c00347{font-size:70.020000px;}
.y0_c00347{bottom:0.000000px;}
.y2_c00347{bottom:109.740968px;}
.y1_c00347{bottom:129.810450px;}
.y19_c00347{bottom:152.310450px;}
.y18_c00347{bottom:182.460600px;}
.y17_c00347{bottom:212.610450px;}
.y16_c00347{bottom:242.850450px;}
.y15_c00347{bottom:273.000450px;}
.y14_c00347{bottom:303.240450px;}
.y13_c00347{bottom:333.390450px;}
.y12_c00347{bottom:363.630450px;}
.y11_c00347{bottom:393.780450px;}
.y10_c00347{bottom:424.020600px;}
.yf_c00347{bottom:454.170450px;}
.ye_c00347{bottom:484.410450px;}
.yd_c00347{bottom:514.560450px;}
.yc_c00347{bottom:544.800450px;}
.yb_c00347{bottom:574.950450px;}
.ya_c00347{bottom:605.190450px;}
.y9_c00347{bottom:635.340450px;}
.y8_c00347{bottom:665.580450px;}
.y7_c00347{bottom:695.730450px;}
.y6_c00347{bottom:1019.190450px;}
.y5_c00347{bottom:1049.340450px;}
.y4_c00347{bottom:1079.580450px;}
.y3_c00347{bottom:1109.730450px;}
.h3_c00347{height:62.600889px;}
.h1_c00347{height:62.771836px;}
.h2_c00347{height:63.216299px;}
.h0_c00347{height:1263.000000px;}
.w0_c00347{width:892.500000px;}
.x0_c00347{left:0.000000px;}
.x2_c00347{left:82.710059px;}
.x5_c00347{left:138.240000px;}
.x6_c00347{left:164.430000px;}
.x4_c00347{left:343.170000px;}
.x1_c00347{left:431.730000px;}
.x3_c00347{left:446.310000px;}
@media print{
.v0_c00347{vertical-align:0.000000pt;}
.ls6_c00347{letter-spacing:-0.143152pt;}
.ls3_c00347{letter-spacing:-0.056016pt;}
.ls5_c00347{letter-spacing:-0.049792pt;}
.ls7_c00347{letter-spacing:-0.037344pt;}
.lsa_c00347{letter-spacing:-0.031120pt;}
.ls9_c00347{letter-spacing:-0.024896pt;}
.ls8_c00347{letter-spacing:-0.018672pt;}
.lsb_c00347{letter-spacing:-0.006224pt;}
.ls4_c00347{letter-spacing:0.000000pt;}
.ls1_c00347{letter-spacing:0.006224pt;}
.ls2_c00347{letter-spacing:0.018672pt;}
.ls0_c00347{letter-spacing:0.062240pt;}
.ws0_c00347{word-spacing:0.000000pt;}
.ws4_c00347{word-spacing:0.006224pt;}
.ws1_c00347{word-spacing:0.037344pt;}
.ws2_c00347{word-spacing:0.130704pt;}
.ws9_c00347{word-spacing:0.323648pt;}
.ws5_c00347{word-spacing:0.329872pt;}
.wsa_c00347{word-spacing:0.628624pt;}
.wse_c00347{word-spacing:0.647296pt;}
.ws6_c00347{word-spacing:1.300816pt;}
.ws11_c00347{word-spacing:2.265536pt;}
.ws10_c00347{word-spacing:5.433552pt;}
.ws3_c00347{word-spacing:5.782096pt;}
.wsb_c00347{word-spacing:7.979168pt;}
.ws8_c00347{word-spacing:8.315264pt;}
.wsf_c00347{word-spacing:14.371216pt;}
.ws12_c00347{word-spacing:15.018512pt;}
.wsd_c00347{word-spacing:16.636752pt;}
.wsc_c00347{word-spacing:16.667872pt;}
.ws7_c00347{word-spacing:24.939568pt;}
._4_c00347{margin-left:-8.128544pt;}
._2_c00347{margin-left:-1.082976pt;}
._0_c00347{width:1.076752pt;}
._3_c00347{width:5.601600pt;}
._1_c00347{width:7.574608pt;}
.fs0_c00347{font-size:62.240000pt;}
.y0_c00347{bottom:0.000000pt;}
.y2_c00347{bottom:97.547527pt;}
.y1_c00347{bottom:115.387067pt;}
.y19_c00347{bottom:135.387067pt;}
.y18_c00347{bottom:162.187200pt;}
.y17_c00347{bottom:188.987067pt;}
.y16_c00347{bottom:215.867067pt;}
.y15_c00347{bottom:242.667067pt;}
.y14_c00347{bottom:269.547067pt;}
.y13_c00347{bottom:296.347067pt;}
.y12_c00347{bottom:323.227067pt;}
.y11_c00347{bottom:350.027067pt;}
.y10_c00347{bottom:376.907200pt;}
.yf_c00347{bottom:403.707067pt;}
.ye_c00347{bottom:430.587067pt;}
.yd_c00347{bottom:457.387067pt;}
.yc_c00347{bottom:484.267067pt;}
.yb_c00347{bottom:511.067067pt;}
.ya_c00347{bottom:537.947067pt;}
.y9_c00347{bottom:564.747067pt;}
.y8_c00347{bottom:591.627067pt;}
.y7_c00347{bottom:618.427067pt;}
.y6_c00347{bottom:905.947067pt;}
.y5_c00347{bottom:932.747067pt;}
.y4_c00347{bottom:959.627067pt;}
.y3_c00347{bottom:986.427067pt;}
.h3_c00347{height:55.645234pt;}
.h1_c00347{height:55.797187pt;}
.h2_c00347{height:56.192266pt;}
.h0_c00347{height:1122.666667pt;}
.w0_c00347{width:793.333333pt;}
.x0_c00347{left:0.000000pt;}
.x2_c00347{left:73.520052pt;}
.x5_c00347{left:122.880000pt;}
.x6_c00347{left:146.160000pt;}
.x4_c00347{left:305.040000pt;}
.x1_c00347{left:383.760000pt;}
.x3_c00347{left:396.720000pt;}
}





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

.ir_c00348:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00348{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00348;src:url('chunks/assets/font_b52429a44089db65b39c5d9c.woff2')format("woff");}.ff1_c00348{font-family:ff1_c00348;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00348;src:url('chunks/assets/font_26ed137a1d3b902e29db4a67.woff2')format("woff");}.ff2_c00348{font-family:ff2_c00348;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00348{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00348{vertical-align:0.000000px;}
.v1_c00348{vertical-align:32.400000px;}
.lsf_c00348{letter-spacing:-0.084024px;}
.ls6_c00348{letter-spacing:-0.063018px;}
.lsc_c00348{letter-spacing:-0.049014px;}
.lsd_c00348{letter-spacing:-0.042012px;}
.ls9_c00348{letter-spacing:-0.035010px;}
.lsb_c00348{letter-spacing:-0.028008px;}
.lse_c00348{letter-spacing:-0.021006px;}
.lsa_c00348{letter-spacing:-0.014004px;}
.ls8_c00348{letter-spacing:-0.007002px;}
.ls7_c00348{letter-spacing:0.000000px;}
.ls1_c00348{letter-spacing:0.007002px;}
.ls2_c00348{letter-spacing:0.014004px;}
.ls0_c00348{letter-spacing:0.021006px;}
.ls5_c00348{letter-spacing:0.023281px;}
.ls3_c00348{letter-spacing:0.028008px;}
.ls4_c00348{letter-spacing:0.035010px;}
.sc__c00348{text-shadow:none;}
.sc0_c00348{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00348{-webkit-text-stroke:0px transparent;}
.sc0_c00348{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00348{word-spacing:-12.967628px;}
.ws1_c00348{word-spacing:0.000000px;}
.ws1a_c00348{word-spacing:0.357102px;}
.ws13_c00348{word-spacing:0.371106px;}
.ws23_c00348{word-spacing:0.385110px;}
.ws24_c00348{word-spacing:0.427122px;}
.ws16_c00348{word-spacing:1.421406px;}
.ws2_c00348{word-spacing:1.435410px;}
.wsd_c00348{word-spacing:2.877822px;}
.ws11_c00348{word-spacing:3.213918px;}
.ws12_c00348{word-spacing:3.557016px;}
.ws1c_c00348{word-spacing:3.606030px;}
.ws1b_c00348{word-spacing:3.613032px;}
.ws7_c00348{word-spacing:5.020434px;}
.ws14_c00348{word-spacing:5.734638px;}
.ws5_c00348{word-spacing:6.497856px;}
.ws1f_c00348{word-spacing:6.833952px;}
.ws1e_c00348{word-spacing:7.149042px;}
.ws4_c00348{word-spacing:7.527150px;}
.ws3_c00348{word-spacing:7.583166px;}
.ws18_c00348{word-spacing:8.255358px;}
.ws17_c00348{word-spacing:8.262360px;}
.ws20_c00348{word-spacing:8.290368px;}
.wsb_c00348{word-spacing:9.704772px;}
.ws9_c00348{word-spacing:11.154186px;}
.wsa_c00348{word-spacing:11.175192px;}
.ws15_c00348{word-spacing:12.589596px;}
.ws10_c00348{word-spacing:13.331808px;}
.ws6_c00348{word-spacing:22.315374px;}
.ws1d_c00348{word-spacing:23.407686px;}
.ws21_c00348{word-spacing:23.778792px;}
.wse_c00348{word-spacing:24.142896px;}
.ws8_c00348{word-spacing:26.278506px;}
.ws22_c00348{word-spacing:27.370818px;}
.wsc_c00348{word-spacing:30.276648px;}
.ws19_c00348{word-spacing:31.326948px;}
.wsf_c00348{word-spacing:41.430834px;}
._1_c00348{margin-left:-1.442412px;}
._0_c00348{width:1.274364px;}
.fc0_c00348{color:rgb(0,0,0);}
.fs1_c00348{font-size:46.562400px;}
.fs0_c00348{font-size:70.020000px;}
.y0_c00348{bottom:0.000000px;}
.y2_c00348{bottom:109.740968px;}
.y1_c00348{bottom:129.810450px;}
.y22_c00348{bottom:173.730450px;}
.y21_c00348{bottom:203.970450px;}
.y20_c00348{bottom:234.120600px;}
.y1f_c00348{bottom:264.360450px;}
.y1e_c00348{bottom:294.510450px;}
.y1d_c00348{bottom:324.750600px;}
.y1c_c00348{bottom:354.900450px;}
.y1b_c00348{bottom:385.140450px;}
.y1a_c00348{bottom:415.290600px;}
.y19_c00348{bottom:445.530600px;}
.y18_c00348{bottom:475.770600px;}
.y17_c00348{bottom:505.920450px;}
.y16_c00348{bottom:536.160450px;}
.y15_c00348{bottom:566.310450px;}
.y14_c00348{bottom:596.460450px;}
.y13_c00348{bottom:626.610450px;}
.y12_c00348{bottom:656.850450px;}
.y11_c00348{bottom:687.000450px;}
.y10_c00348{bottom:717.240450px;}
.yf_c00348{bottom:747.390450px;}
.ye_c00348{bottom:777.630450px;}
.yd_c00348{bottom:807.780450px;}
.yc_c00348{bottom:838.020450px;}
.yb_c00348{bottom:868.170450px;}
.ya_c00348{bottom:898.410450px;}
.y9_c00348{bottom:928.560450px;}
.y8_c00348{bottom:958.800450px;}
.y7_c00348{bottom:988.950450px;}
.y6_c00348{bottom:1019.190450px;}
.y5_c00348{bottom:1049.340450px;}
.y4_c00348{bottom:1079.580450px;}
.y3_c00348{bottom:1109.730450px;}
.h2_c00348{height:62.600889px;}
.h1_c00348{height:62.771836px;}
.h3_c00348{height:74.028786px;}
.h0_c00348{height:1263.000000px;}
.w0_c00348{width:892.500000px;}
.x0_c00348{left:0.000000px;}
.x2_c00348{left:82.710059px;}
.x3_c00348{left:138.240000px;}
.x4_c00348{left:164.430000px;}
.x1_c00348{left:431.730000px;}
@media print{
.v0_c00348{vertical-align:0.000000pt;}
.v1_c00348{vertical-align:28.800000pt;}
.lsf_c00348{letter-spacing:-0.074688pt;}
.ls6_c00348{letter-spacing:-0.056016pt;}
.lsc_c00348{letter-spacing:-0.043568pt;}
.lsd_c00348{letter-spacing:-0.037344pt;}
.ls9_c00348{letter-spacing:-0.031120pt;}
.lsb_c00348{letter-spacing:-0.024896pt;}
.lse_c00348{letter-spacing:-0.018672pt;}
.lsa_c00348{letter-spacing:-0.012448pt;}
.ls8_c00348{letter-spacing:-0.006224pt;}
.ls7_c00348{letter-spacing:0.000000pt;}
.ls1_c00348{letter-spacing:0.006224pt;}
.ls2_c00348{letter-spacing:0.012448pt;}
.ls0_c00348{letter-spacing:0.018672pt;}
.ls5_c00348{letter-spacing:0.020694pt;}
.ls3_c00348{letter-spacing:0.024896pt;}
.ls4_c00348{letter-spacing:0.031120pt;}
.ws0_c00348{word-spacing:-11.526781pt;}
.ws1_c00348{word-spacing:0.000000pt;}
.ws1a_c00348{word-spacing:0.317424pt;}
.ws13_c00348{word-spacing:0.329872pt;}
.ws23_c00348{word-spacing:0.342320pt;}
.ws24_c00348{word-spacing:0.379664pt;}
.ws16_c00348{word-spacing:1.263472pt;}
.ws2_c00348{word-spacing:1.275920pt;}
.wsd_c00348{word-spacing:2.558064pt;}
.ws11_c00348{word-spacing:2.856816pt;}
.ws12_c00348{word-spacing:3.161792pt;}
.ws1c_c00348{word-spacing:3.205360pt;}
.ws1b_c00348{word-spacing:3.211584pt;}
.ws7_c00348{word-spacing:4.462608pt;}
.ws14_c00348{word-spacing:5.097456pt;}
.ws5_c00348{word-spacing:5.775872pt;}
.ws1f_c00348{word-spacing:6.074624pt;}
.ws1e_c00348{word-spacing:6.354704pt;}
.ws4_c00348{word-spacing:6.690800pt;}
.ws3_c00348{word-spacing:6.740592pt;}
.ws18_c00348{word-spacing:7.338096pt;}
.ws17_c00348{word-spacing:7.344320pt;}
.ws20_c00348{word-spacing:7.369216pt;}
.wsb_c00348{word-spacing:8.626464pt;}
.ws9_c00348{word-spacing:9.914832pt;}
.wsa_c00348{word-spacing:9.933504pt;}
.ws15_c00348{word-spacing:11.190752pt;}
.ws10_c00348{word-spacing:11.850496pt;}
.ws6_c00348{word-spacing:19.835888pt;}
.ws1d_c00348{word-spacing:20.806832pt;}
.ws21_c00348{word-spacing:21.136704pt;}
.wse_c00348{word-spacing:21.460352pt;}
.ws8_c00348{word-spacing:23.358672pt;}
.ws22_c00348{word-spacing:24.329616pt;}
.wsc_c00348{word-spacing:26.912576pt;}
.ws19_c00348{word-spacing:27.846176pt;}
.wsf_c00348{word-spacing:36.827408pt;}
._1_c00348{margin-left:-1.282144pt;}
._0_c00348{width:1.132768pt;}
.fs1_c00348{font-size:41.388800pt;}
.fs0_c00348{font-size:62.240000pt;}
.y0_c00348{bottom:0.000000pt;}
.y2_c00348{bottom:97.547527pt;}
.y1_c00348{bottom:115.387067pt;}
.y22_c00348{bottom:154.427067pt;}
.y21_c00348{bottom:181.307067pt;}
.y20_c00348{bottom:208.107200pt;}
.y1f_c00348{bottom:234.987067pt;}
.y1e_c00348{bottom:261.787067pt;}
.y1d_c00348{bottom:288.667200pt;}
.y1c_c00348{bottom:315.467067pt;}
.y1b_c00348{bottom:342.347067pt;}
.y1a_c00348{bottom:369.147200pt;}
.y19_c00348{bottom:396.027200pt;}
.y18_c00348{bottom:422.907200pt;}
.y17_c00348{bottom:449.707067pt;}
.y16_c00348{bottom:476.587067pt;}
.y15_c00348{bottom:503.387067pt;}
.y14_c00348{bottom:530.187067pt;}
.y13_c00348{bottom:556.987067pt;}
.y12_c00348{bottom:583.867067pt;}
.y11_c00348{bottom:610.667067pt;}
.y10_c00348{bottom:637.547067pt;}
.yf_c00348{bottom:664.347067pt;}
.ye_c00348{bottom:691.227067pt;}
.yd_c00348{bottom:718.027067pt;}
.yc_c00348{bottom:744.907067pt;}
.yb_c00348{bottom:771.707067pt;}
.ya_c00348{bottom:798.587067pt;}
.y9_c00348{bottom:825.387067pt;}
.y8_c00348{bottom:852.267067pt;}
.y7_c00348{bottom:879.067067pt;}
.y6_c00348{bottom:905.947067pt;}
.y5_c00348{bottom:932.747067pt;}
.y4_c00348{bottom:959.627067pt;}
.y3_c00348{bottom:986.427067pt;}
.h2_c00348{height:55.645234pt;}
.h1_c00348{height:55.797187pt;}
.h3_c00348{height:65.803366pt;}
.h0_c00348{height:1122.666667pt;}
.w0_c00348{width:793.333333pt;}
.x0_c00348{left:0.000000pt;}
.x2_c00348{left:73.520052pt;}
.x3_c00348{left:122.880000pt;}
.x4_c00348{left:146.160000pt;}
.x1_c00348{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e82830c9c06ca116b8984b14.woff2')format("woff");}.ff1_c00349{font-family:ff1_c00349;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00349;src:url('chunks/assets/font_856aa4b1ab31ee7727c75cc9.woff2')format("woff");}.ff2_c00349{font-family:ff2_c00349;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00349;src:url('chunks/assets/font_932e3410c5e4cca6e13eae91.woff2')format("woff");}.ff3_c00349{font-family:ff3_c00349;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00349{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00349{vertical-align:0.000000px;}
.v1_c00349{vertical-align:32.040000px;}
.ls5_c00349{letter-spacing:-0.063018px;}
.lsd_c00349{letter-spacing:-0.049014px;}
.lsc_c00349{letter-spacing:-0.042012px;}
.lsa_c00349{letter-spacing:-0.035010px;}
.ls8_c00349{letter-spacing:-0.021006px;}
.ls7_c00349{letter-spacing:-0.014004px;}
.lsb_c00349{letter-spacing:-0.007002px;}
.ls6_c00349{letter-spacing:0.000000px;}
.ls3_c00349{letter-spacing:0.007002px;}
.ls4_c00349{letter-spacing:0.023281px;}
.ls2_c00349{letter-spacing:0.028008px;}
.ls9_c00349{letter-spacing:0.056016px;}
.ls1_c00349{letter-spacing:0.070020px;}
.ls0_c00349{letter-spacing:0.091026px;}
.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:-12.967628px;}
.ws3_c00349{word-spacing:-0.105030px;}
.ws1_c00349{word-spacing:0.000000px;}
.wsf_c00349{word-spacing:0.035010px;}
.wsa_c00349{word-spacing:0.350100px;}
.ws2_c00349{word-spacing:0.357102px;}
.ws9_c00349{word-spacing:3.248928px;}
.ws8_c00349{word-spacing:5.783652px;}
.wsd_c00349{word-spacing:10.776078px;}
.wse_c00349{word-spacing:10.818090px;}
.ws4_c00349{word-spacing:12.246498px;}
.ws6_c00349{word-spacing:17.568018px;}
.ws5_c00349{word-spacing:17.960130px;}
.wsc_c00349{word-spacing:18.772362px;}
.ws7_c00349{word-spacing:21.244068px;}
.wsb_c00349{word-spacing:30.269646px;}
._0_c00349{margin-left:-1.071306px;}
._3_c00349{width:1.113318px;}
._1_c00349{width:7.919262px;}
._2_c00349{width:12.274506px;}
.fc0_c00349{color:rgb(0,0,0);}
.fs1_c00349{font-size:46.562400px;}
.fs0_c00349{font-size:70.020000px;}
.y0_c00349{bottom:0.000000px;}
.y2_c00349{bottom:109.740968px;}
.y1_c00349{bottom:129.810450px;}
.y1a_c00349{bottom:158.520450px;}
.y19_c00349{bottom:188.760450px;}
.y18_c00349{bottom:218.910450px;}
.y17_c00349{bottom:249.150450px;}
.y16_c00349{bottom:279.300450px;}
.y15_c00349{bottom:309.540450px;}
.y14_c00349{bottom:339.690450px;}
.y13_c00349{bottom:369.930450px;}
.y12_c00349{bottom:400.080450px;}
.y11_c00349{bottom:430.320450px;}
.y10_c00349{bottom:460.470450px;}
.yf_c00349{bottom:490.710600px;}
.ye_c00349{bottom:520.860600px;}
.yd_c00349{bottom:551.100450px;}
.yc_c00349{bottom:581.250450px;}
.yb_c00349{bottom:611.400450px;}
.ya_c00349{bottom:641.550450px;}
.y9_c00349{bottom:671.790450px;}
.y8_c00349{bottom:701.940450px;}
.y7_c00349{bottom:728.400450px;}
.y6_c00349{bottom:1019.190450px;}
.y5_c00349{bottom:1049.340450px;}
.y4_c00349{bottom:1079.580450px;}
.y3_c00349{bottom:1109.730450px;}
.h3_c00349{height:62.600889px;}
.h1_c00349{height:62.771836px;}
.h2_c00349{height:63.216299px;}
.h4_c00349{height:73.668786px;}
.h0_c00349{height:1263.000000px;}
.w0_c00349{width:892.500000px;}
.x0_c00349{left:0.000000px;}
.x2_c00349{left:82.710059px;}
.x5_c00349{left:138.240000px;}
.x3_c00349{left:164.430000px;}
.x1_c00349{left:431.730000px;}
.x4_c00349{left:734.580000px;}
@media print{
.v0_c00349{vertical-align:0.000000pt;}
.v1_c00349{vertical-align:28.480000pt;}
.ls5_c00349{letter-spacing:-0.056016pt;}
.lsd_c00349{letter-spacing:-0.043568pt;}
.lsc_c00349{letter-spacing:-0.037344pt;}
.lsa_c00349{letter-spacing:-0.031120pt;}
.ls8_c00349{letter-spacing:-0.018672pt;}
.ls7_c00349{letter-spacing:-0.012448pt;}
.lsb_c00349{letter-spacing:-0.006224pt;}
.ls6_c00349{letter-spacing:0.000000pt;}
.ls3_c00349{letter-spacing:0.006224pt;}
.ls4_c00349{letter-spacing:0.020694pt;}
.ls2_c00349{letter-spacing:0.024896pt;}
.ls9_c00349{letter-spacing:0.049792pt;}
.ls1_c00349{letter-spacing:0.062240pt;}
.ls0_c00349{letter-spacing:0.080912pt;}
.ws0_c00349{word-spacing:-11.526781pt;}
.ws3_c00349{word-spacing:-0.093360pt;}
.ws1_c00349{word-spacing:0.000000pt;}
.wsf_c00349{word-spacing:0.031120pt;}
.wsa_c00349{word-spacing:0.311200pt;}
.ws2_c00349{word-spacing:0.317424pt;}
.ws9_c00349{word-spacing:2.887936pt;}
.ws8_c00349{word-spacing:5.141024pt;}
.wsd_c00349{word-spacing:9.578736pt;}
.wse_c00349{word-spacing:9.616080pt;}
.ws4_c00349{word-spacing:10.885776pt;}
.ws6_c00349{word-spacing:15.616016pt;}
.ws5_c00349{word-spacing:15.964560pt;}
.wsc_c00349{word-spacing:16.686544pt;}
.ws7_c00349{word-spacing:18.883616pt;}
.wsb_c00349{word-spacing:26.906352pt;}
._0_c00349{margin-left:-0.952272pt;}
._3_c00349{width:0.989616pt;}
._1_c00349{width:7.039344pt;}
._2_c00349{width:10.910672pt;}
.fs1_c00349{font-size:41.388800pt;}
.fs0_c00349{font-size:62.240000pt;}
.y0_c00349{bottom:0.000000pt;}
.y2_c00349{bottom:97.547527pt;}
.y1_c00349{bottom:115.387067pt;}
.y1a_c00349{bottom:140.907067pt;}
.y19_c00349{bottom:167.787067pt;}
.y18_c00349{bottom:194.587067pt;}
.y17_c00349{bottom:221.467067pt;}
.y16_c00349{bottom:248.267067pt;}
.y15_c00349{bottom:275.147067pt;}
.y14_c00349{bottom:301.947067pt;}
.y13_c00349{bottom:328.827067pt;}
.y12_c00349{bottom:355.627067pt;}
.y11_c00349{bottom:382.507067pt;}
.y10_c00349{bottom:409.307067pt;}
.yf_c00349{bottom:436.187200pt;}
.ye_c00349{bottom:462.987200pt;}
.yd_c00349{bottom:489.867067pt;}
.yc_c00349{bottom:516.667067pt;}
.yb_c00349{bottom:543.467067pt;}
.ya_c00349{bottom:570.267067pt;}
.y9_c00349{bottom:597.147067pt;}
.y8_c00349{bottom:623.947067pt;}
.y7_c00349{bottom:647.467067pt;}
.y6_c00349{bottom:905.947067pt;}
.y5_c00349{bottom:932.747067pt;}
.y4_c00349{bottom:959.627067pt;}
.y3_c00349{bottom:986.427067pt;}
.h3_c00349{height:55.645234pt;}
.h1_c00349{height:55.797187pt;}
.h2_c00349{height:56.192266pt;}
.h4_c00349{height:65.483366pt;}
.h0_c00349{height:1122.666667pt;}
.w0_c00349{width:793.333333pt;}
.x0_c00349{left:0.000000pt;}
.x2_c00349{left:73.520052pt;}
.x5_c00349{left:122.880000pt;}
.x3_c00349{left:146.160000pt;}
.x1_c00349{left:383.760000pt;}
.x4_c00349{left:652.960000pt;}
}





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

.ir_c00350:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00350{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00350;src:url('chunks/assets/font_4757ead04d2c0381a3262153.woff2')format("woff");}.ff1_c00350{font-family:ff1_c00350;line-height:1.106934;font-style:normal;font-weight:normal;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_951a3ebcabe2dfffe0ab3d34.woff2')format("woff");}.ff2_c00350{font-family:ff2_c00350;line-height:1.104492;font-style:normal;font-weight:normal;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_ca3f3f71f6bef8c82fdf42dc.woff2')format("woff");}.ff3_c00350{font-family:ff3_c00350;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00350{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00350{vertical-align:0.000000px;}
.ls3_c00350{letter-spacing:-0.063018px;}
.ls9_c00350{letter-spacing:-0.042012px;}
.ls5_c00350{letter-spacing:-0.035010px;}
.ls7_c00350{letter-spacing:-0.021006px;}
.ls6_c00350{letter-spacing:-0.014004px;}
.ls8_c00350{letter-spacing:-0.007002px;}
.ls4_c00350{letter-spacing:0.000000px;}
.ls2_c00350{letter-spacing:0.014004px;}
.ls1_c00350{letter-spacing:0.028008px;}
.ls0_c00350{letter-spacing:0.070020px;}
.sc__c00350{text-shadow:none;}
.sc0_c00350{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00350{-webkit-text-stroke:0px transparent;}
.sc0_c00350{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00350{word-spacing:0.000000px;}
.ws3_c00350{word-spacing:0.007002px;}
.ws1_c00350{word-spacing:0.021006px;}
.wse_c00350{word-spacing:0.357102px;}
.ws11_c00350{word-spacing:0.385110px;}
.wsf_c00350{word-spacing:2.170620px;}
.wsb_c00350{word-spacing:4.670334px;}
.ws5_c00350{word-spacing:4.677336px;}
.wsc_c00350{word-spacing:5.748642px;}
.wsd_c00350{word-spacing:5.790654px;}
.ws6_c00350{word-spacing:6.469848px;}
.wsa_c00350{word-spacing:6.847956px;}
.ws10_c00350{word-spacing:10.411974px;}
.ws4_c00350{word-spacing:11.518290px;}
.ws7_c00350{word-spacing:15.509430px;}
.ws2_c00350{word-spacing:18.723348px;}
.ws9_c00350{word-spacing:20.480850px;}
.ws8_c00350{word-spacing:20.543868px;}
._2_c00350{margin-left:-1.218348px;}
._1_c00350{width:1.358388px;}
._0_c00350{width:7.919262px;}
.fc0_c00350{color:rgb(0,0,0);}
.fs0_c00350{font-size:70.020000px;}
.y0_c00350{bottom:0.000000px;}
.y2_c00350{bottom:109.740968px;}
.y1_c00350{bottom:129.810450px;}
.y19_c00350{bottom:176.250450px;}
.y18_c00350{bottom:206.400450px;}
.y17_c00350{bottom:236.640450px;}
.y16_c00350{bottom:266.790450px;}
.y15_c00350{bottom:297.030450px;}
.y14_c00350{bottom:327.180450px;}
.y13_c00350{bottom:357.420450px;}
.y12_c00350{bottom:387.570450px;}
.y11_c00350{bottom:417.810450px;}
.y10_c00350{bottom:447.960600px;}
.yf_c00350{bottom:478.200600px;}
.ye_c00350{bottom:508.350450px;}
.yd_c00350{bottom:538.590450px;}
.yc_c00350{bottom:568.740450px;}
.yb_c00350{bottom:598.980450px;}
.ya_c00350{bottom:629.130450px;}
.y9_c00350{bottom:659.370450px;}
.y8_c00350{bottom:689.520450px;}
.y7_c00350{bottom:719.760450px;}
.y6_c00350{bottom:749.910450px;}
.y5_c00350{bottom:776.280450px;}
.y4_c00350{bottom:1079.580450px;}
.y3_c00350{bottom:1109.730450px;}
.h2_c00350{height:62.600889px;}
.h1_c00350{height:62.771836px;}
.h3_c00350{height:63.216299px;}
.h0_c00350{height:1263.000000px;}
.w0_c00350{width:892.500000px;}
.x0_c00350{left:0.000000px;}
.x2_c00350{left:82.710059px;}
.x6_c00350{left:138.240000px;}
.x3_c00350{left:164.430000px;}
.x5_c00350{left:190.710000px;}
.x1_c00350{left:431.730000px;}
.x4_c00350{left:725.130000px;}
@media print{
.v0_c00350{vertical-align:0.000000pt;}
.ls3_c00350{letter-spacing:-0.056016pt;}
.ls9_c00350{letter-spacing:-0.037344pt;}
.ls5_c00350{letter-spacing:-0.031120pt;}
.ls7_c00350{letter-spacing:-0.018672pt;}
.ls6_c00350{letter-spacing:-0.012448pt;}
.ls8_c00350{letter-spacing:-0.006224pt;}
.ls4_c00350{letter-spacing:0.000000pt;}
.ls2_c00350{letter-spacing:0.012448pt;}
.ls1_c00350{letter-spacing:0.024896pt;}
.ls0_c00350{letter-spacing:0.062240pt;}
.ws0_c00350{word-spacing:0.000000pt;}
.ws3_c00350{word-spacing:0.006224pt;}
.ws1_c00350{word-spacing:0.018672pt;}
.wse_c00350{word-spacing:0.317424pt;}
.ws11_c00350{word-spacing:0.342320pt;}
.wsf_c00350{word-spacing:1.929440pt;}
.wsb_c00350{word-spacing:4.151408pt;}
.ws5_c00350{word-spacing:4.157632pt;}
.wsc_c00350{word-spacing:5.109904pt;}
.wsd_c00350{word-spacing:5.147248pt;}
.ws6_c00350{word-spacing:5.750976pt;}
.wsa_c00350{word-spacing:6.087072pt;}
.ws10_c00350{word-spacing:9.255088pt;}
.ws4_c00350{word-spacing:10.238480pt;}
.ws7_c00350{word-spacing:13.786160pt;}
.ws2_c00350{word-spacing:16.642976pt;}
.ws9_c00350{word-spacing:18.205200pt;}
.ws8_c00350{word-spacing:18.261216pt;}
._2_c00350{margin-left:-1.082976pt;}
._1_c00350{width:1.207456pt;}
._0_c00350{width:7.039344pt;}
.fs0_c00350{font-size:62.240000pt;}
.y0_c00350{bottom:0.000000pt;}
.y2_c00350{bottom:97.547527pt;}
.y1_c00350{bottom:115.387067pt;}
.y19_c00350{bottom:156.667067pt;}
.y18_c00350{bottom:183.467067pt;}
.y17_c00350{bottom:210.347067pt;}
.y16_c00350{bottom:237.147067pt;}
.y15_c00350{bottom:264.027067pt;}
.y14_c00350{bottom:290.827067pt;}
.y13_c00350{bottom:317.707067pt;}
.y12_c00350{bottom:344.507067pt;}
.y11_c00350{bottom:371.387067pt;}
.y10_c00350{bottom:398.187200pt;}
.yf_c00350{bottom:425.067200pt;}
.ye_c00350{bottom:451.867067pt;}
.yd_c00350{bottom:478.747067pt;}
.yc_c00350{bottom:505.547067pt;}
.yb_c00350{bottom:532.427067pt;}
.ya_c00350{bottom:559.227067pt;}
.y9_c00350{bottom:586.107067pt;}
.y8_c00350{bottom:612.907067pt;}
.y7_c00350{bottom:639.787067pt;}
.y6_c00350{bottom:666.587067pt;}
.y5_c00350{bottom:690.027067pt;}
.y4_c00350{bottom:959.627067pt;}
.y3_c00350{bottom:986.427067pt;}
.h2_c00350{height:55.645234pt;}
.h1_c00350{height:55.797187pt;}
.h3_c00350{height:56.192266pt;}
.h0_c00350{height:1122.666667pt;}
.w0_c00350{width:793.333333pt;}
.x0_c00350{left:0.000000pt;}
.x2_c00350{left:73.520052pt;}
.x6_c00350{left:122.880000pt;}
.x3_c00350{left:146.160000pt;}
.x5_c00350{left:169.520000pt;}
.x1_c00350{left:383.760000pt;}
.x4_c00350{left:644.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7aa7f79046af8812170416ce.woff2')format("woff");}.ff1_c00351{font-family:ff1_c00351;line-height:1.106934;font-style:normal;font-weight:normal;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_ccf1d8bc139a12e5e89c19a3.woff2')format("woff");}.ff2_c00351{font-family:ff2_c00351;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00351{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00351{vertical-align:0.000000px;}
.ls3_c00351{letter-spacing:-0.063018px;}
.ls7_c00351{letter-spacing:-0.056016px;}
.lsc_c00351{letter-spacing:-0.049014px;}
.ls6_c00351{letter-spacing:-0.042012px;}
.lsa_c00351{letter-spacing:-0.035010px;}
.ls8_c00351{letter-spacing:-0.028008px;}
.ls9_c00351{letter-spacing:-0.021006px;}
.ls5_c00351{letter-spacing:-0.014004px;}
.lsb_c00351{letter-spacing:-0.007002px;}
.ls4_c00351{letter-spacing:0.000000px;}
.ls1_c00351{letter-spacing:0.007002px;}
.ls0_c00351{letter-spacing:0.014004px;}
.ls2_c00351{letter-spacing:0.028008px;}
.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;}
}
.ws7_c00351{word-spacing:-0.014004px;}
.wse_c00351{word-spacing:-0.007002px;}
.ws0_c00351{word-spacing:0.000000px;}
.ws18_c00351{word-spacing:0.007002px;}
.wsb_c00351{word-spacing:0.021006px;}
.wsf_c00351{word-spacing:0.035010px;}
.ws4_c00351{word-spacing:0.042012px;}
.ws1_c00351{word-spacing:0.721206px;}
.ws2_c00351{word-spacing:2.149614px;}
.ws5_c00351{word-spacing:3.255930px;}
.ws10_c00351{word-spacing:5.027436px;}
.wsa_c00351{word-spacing:8.311374px;}
.ws11_c00351{word-spacing:10.075878px;}
.ws12_c00351{word-spacing:10.460988px;}
.ws3_c00351{word-spacing:11.546298px;}
.ws17_c00351{word-spacing:13.324806px;}
.ws8_c00351{word-spacing:13.660902px;}
.wsd_c00351{word-spacing:15.509430px;}
.ws6_c00351{word-spacing:16.888824px;}
.ws13_c00351{word-spacing:17.273934px;}
.ws16_c00351{word-spacing:19.080450px;}
.ws15_c00351{word-spacing:26.236494px;}
.ws14_c00351{word-spacing:27.762930px;}
.ws9_c00351{word-spacing:40.324518px;}
.wsc_c00351{word-spacing:50.778504px;}
._0_c00351{margin-left:-1.092312px;}
._1_c00351{width:1.120320px;}
.fc0_c00351{color:rgb(0,0,0);}
.fs0_c00351{font-size:70.020000px;}
.y0_c00351{bottom:0.000000px;}
.y2_c00351{bottom:109.740968px;}
.y1_c00351{bottom:129.810450px;}
.y22_c00351{bottom:173.730450px;}
.y21_c00351{bottom:203.970450px;}
.y20_c00351{bottom:234.120600px;}
.y1f_c00351{bottom:264.360450px;}
.y1e_c00351{bottom:294.510450px;}
.y1d_c00351{bottom:324.750600px;}
.y1c_c00351{bottom:354.900450px;}
.y1b_c00351{bottom:385.140450px;}
.y1a_c00351{bottom:415.290600px;}
.y19_c00351{bottom:445.530600px;}
.y18_c00351{bottom:475.770600px;}
.y17_c00351{bottom:505.920450px;}
.y16_c00351{bottom:536.160450px;}
.y15_c00351{bottom:566.310450px;}
.y14_c00351{bottom:596.460450px;}
.y13_c00351{bottom:626.610450px;}
.y12_c00351{bottom:656.850450px;}
.y11_c00351{bottom:687.000450px;}
.y10_c00351{bottom:717.240450px;}
.yf_c00351{bottom:747.390450px;}
.ye_c00351{bottom:777.630450px;}
.yd_c00351{bottom:807.780450px;}
.yc_c00351{bottom:838.020450px;}
.yb_c00351{bottom:868.170450px;}
.ya_c00351{bottom:898.410450px;}
.y9_c00351{bottom:928.560450px;}
.y8_c00351{bottom:958.800450px;}
.y7_c00351{bottom:988.950450px;}
.y6_c00351{bottom:1019.190450px;}
.y5_c00351{bottom:1049.340450px;}
.y4_c00351{bottom:1079.580450px;}
.y3_c00351{bottom:1109.730450px;}
.h2_c00351{height:62.600889px;}
.h1_c00351{height:62.771836px;}
.h0_c00351{height:1263.000000px;}
.w0_c00351{width:892.500000px;}
.x0_c00351{left:0.000000px;}
.x2_c00351{left:82.710059px;}
.x3_c00351{left:138.240000px;}
.x1_c00351{left:431.730000px;}
@media print{
.v0_c00351{vertical-align:0.000000pt;}
.ls3_c00351{letter-spacing:-0.056016pt;}
.ls7_c00351{letter-spacing:-0.049792pt;}
.lsc_c00351{letter-spacing:-0.043568pt;}
.ls6_c00351{letter-spacing:-0.037344pt;}
.lsa_c00351{letter-spacing:-0.031120pt;}
.ls8_c00351{letter-spacing:-0.024896pt;}
.ls9_c00351{letter-spacing:-0.018672pt;}
.ls5_c00351{letter-spacing:-0.012448pt;}
.lsb_c00351{letter-spacing:-0.006224pt;}
.ls4_c00351{letter-spacing:0.000000pt;}
.ls1_c00351{letter-spacing:0.006224pt;}
.ls0_c00351{letter-spacing:0.012448pt;}
.ls2_c00351{letter-spacing:0.024896pt;}
.ws7_c00351{word-spacing:-0.012448pt;}
.wse_c00351{word-spacing:-0.006224pt;}
.ws0_c00351{word-spacing:0.000000pt;}
.ws18_c00351{word-spacing:0.006224pt;}
.wsb_c00351{word-spacing:0.018672pt;}
.wsf_c00351{word-spacing:0.031120pt;}
.ws4_c00351{word-spacing:0.037344pt;}
.ws1_c00351{word-spacing:0.641072pt;}
.ws2_c00351{word-spacing:1.910768pt;}
.ws5_c00351{word-spacing:2.894160pt;}
.ws10_c00351{word-spacing:4.468832pt;}
.wsa_c00351{word-spacing:7.387888pt;}
.ws11_c00351{word-spacing:8.956336pt;}
.ws12_c00351{word-spacing:9.298656pt;}
.ws3_c00351{word-spacing:10.263376pt;}
.ws17_c00351{word-spacing:11.844272pt;}
.ws8_c00351{word-spacing:12.143024pt;}
.wsd_c00351{word-spacing:13.786160pt;}
.ws6_c00351{word-spacing:15.012288pt;}
.ws13_c00351{word-spacing:15.354608pt;}
.ws16_c00351{word-spacing:16.960400pt;}
.ws15_c00351{word-spacing:23.321328pt;}
.ws14_c00351{word-spacing:24.678160pt;}
.ws9_c00351{word-spacing:35.844016pt;}
.wsc_c00351{word-spacing:45.136448pt;}
._0_c00351{margin-left:-0.970944pt;}
._1_c00351{width:0.995840pt;}
.fs0_c00351{font-size:62.240000pt;}
.y0_c00351{bottom:0.000000pt;}
.y2_c00351{bottom:97.547527pt;}
.y1_c00351{bottom:115.387067pt;}
.y22_c00351{bottom:154.427067pt;}
.y21_c00351{bottom:181.307067pt;}
.y20_c00351{bottom:208.107200pt;}
.y1f_c00351{bottom:234.987067pt;}
.y1e_c00351{bottom:261.787067pt;}
.y1d_c00351{bottom:288.667200pt;}
.y1c_c00351{bottom:315.467067pt;}
.y1b_c00351{bottom:342.347067pt;}
.y1a_c00351{bottom:369.147200pt;}
.y19_c00351{bottom:396.027200pt;}
.y18_c00351{bottom:422.907200pt;}
.y17_c00351{bottom:449.707067pt;}
.y16_c00351{bottom:476.587067pt;}
.y15_c00351{bottom:503.387067pt;}
.y14_c00351{bottom:530.187067pt;}
.y13_c00351{bottom:556.987067pt;}
.y12_c00351{bottom:583.867067pt;}
.y11_c00351{bottom:610.667067pt;}
.y10_c00351{bottom:637.547067pt;}
.yf_c00351{bottom:664.347067pt;}
.ye_c00351{bottom:691.227067pt;}
.yd_c00351{bottom:718.027067pt;}
.yc_c00351{bottom:744.907067pt;}
.yb_c00351{bottom:771.707067pt;}
.ya_c00351{bottom:798.587067pt;}
.y9_c00351{bottom:825.387067pt;}
.y8_c00351{bottom:852.267067pt;}
.y7_c00351{bottom:879.067067pt;}
.y6_c00351{bottom:905.947067pt;}
.y5_c00351{bottom:932.747067pt;}
.y4_c00351{bottom:959.627067pt;}
.y3_c00351{bottom:986.427067pt;}
.h2_c00351{height:55.645234pt;}
.h1_c00351{height:55.797187pt;}
.h0_c00351{height:1122.666667pt;}
.w0_c00351{width:793.333333pt;}
.x0_c00351{left:0.000000pt;}
.x2_c00351{left:73.520052pt;}
.x3_c00351{left:122.880000pt;}
.x1_c00351{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d74e9f3a52b41e5e1f99334c.woff2')format("woff");}.ff1_c00352{font-family:ff1_c00352;line-height:1.106934;font-style:normal;font-weight:normal;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_98e01966f88a731efb776619.woff2')format("woff");}.ff2_c00352{font-family:ff2_c00352;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00352{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00352{vertical-align:0.000000px;}
.lsc_c00352{letter-spacing:-0.427122px;}
.ls4_c00352{letter-spacing:-0.063018px;}
.ls9_c00352{letter-spacing:-0.049014px;}
.ls7_c00352{letter-spacing:-0.035010px;}
.ls6_c00352{letter-spacing:-0.028008px;}
.lsa_c00352{letter-spacing:-0.021006px;}
.ls8_c00352{letter-spacing:-0.014004px;}
.lsb_c00352{letter-spacing:-0.007002px;}
.ls5_c00352{letter-spacing:0.000000px;}
.ls0_c00352{letter-spacing:0.007002px;}
.ls2_c00352{letter-spacing:0.014004px;}
.ls1_c00352{letter-spacing:0.028008px;}
.ls3_c00352{letter-spacing:0.056016px;}
.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;}
}
.wsb_c00352{word-spacing:-0.007002px;}
.ws0_c00352{word-spacing:0.000000px;}
.ws13_c00352{word-spacing:0.364104px;}
.ws15_c00352{word-spacing:0.770220px;}
.ws12_c00352{word-spacing:2.835810px;}
.ws11_c00352{word-spacing:2.877822px;}
.wse_c00352{word-spacing:3.220920px;}
.wsc_c00352{word-spacing:3.970134px;}
.ws5_c00352{word-spacing:4.320234px;}
.ws19_c00352{word-spacing:5.041440px;}
.ws14_c00352{word-spacing:5.370534px;}
.ws3_c00352{word-spacing:6.861960px;}
.ws4_c00352{word-spacing:7.184052px;}
.ws9_c00352{word-spacing:7.569162px;}
.ws10_c00352{word-spacing:8.997570px;}
.wsf_c00352{word-spacing:9.368676px;}
.ws6_c00352{word-spacing:12.218490px;}
.ws16_c00352{word-spacing:13.667904px;}
.ws7_c00352{word-spacing:14.774220px;}
.ws8_c00352{word-spacing:15.460416px;}
.wsa_c00352{word-spacing:20.522862px;}
.ws2_c00352{word-spacing:28.064016px;}
.ws1_c00352{word-spacing:28.092024px;}
.wsd_c00352{word-spacing:29.891538px;}
.ws18_c00352{word-spacing:32.328234px;}
.ws17_c00352{word-spacing:32.391252px;}
._1_c00352{margin-left:-1.351386px;}
._0_c00352{width:1.106316px;}
.fc0_c00352{color:rgb(0,0,0);}
.fs0_c00352{font-size:70.020000px;}
.y0_c00352{bottom:0.000000px;}
.y2_c00352{bottom:109.740968px;}
.y1_c00352{bottom:129.810450px;}
.y22_c00352{bottom:173.730450px;}
.y21_c00352{bottom:203.970450px;}
.y20_c00352{bottom:234.120600px;}
.y1f_c00352{bottom:264.360450px;}
.y1e_c00352{bottom:294.510450px;}
.y1d_c00352{bottom:324.750600px;}
.y1c_c00352{bottom:354.900450px;}
.y1b_c00352{bottom:385.140450px;}
.y1a_c00352{bottom:415.290600px;}
.y19_c00352{bottom:445.530600px;}
.y18_c00352{bottom:475.770600px;}
.y17_c00352{bottom:505.920450px;}
.y16_c00352{bottom:536.160450px;}
.y15_c00352{bottom:566.310450px;}
.y14_c00352{bottom:596.460450px;}
.y13_c00352{bottom:626.610450px;}
.y12_c00352{bottom:656.850450px;}
.y11_c00352{bottom:687.000450px;}
.y10_c00352{bottom:717.240450px;}
.yf_c00352{bottom:747.390450px;}
.ye_c00352{bottom:777.630450px;}
.yd_c00352{bottom:807.780450px;}
.yc_c00352{bottom:838.020450px;}
.yb_c00352{bottom:868.170450px;}
.ya_c00352{bottom:898.410450px;}
.y9_c00352{bottom:928.560450px;}
.y8_c00352{bottom:958.800450px;}
.y7_c00352{bottom:988.950450px;}
.y6_c00352{bottom:1019.190450px;}
.y5_c00352{bottom:1049.340450px;}
.y4_c00352{bottom:1079.580450px;}
.y3_c00352{bottom:1109.730450px;}
.h2_c00352{height:62.600889px;}
.h1_c00352{height:62.771836px;}
.h0_c00352{height:1263.000000px;}
.w0_c00352{width:892.500000px;}
.x0_c00352{left:0.000000px;}
.x2_c00352{left:82.710059px;}
.x3_c00352{left:138.240000px;}
.x1_c00352{left:431.730000px;}
@media print{
.v0_c00352{vertical-align:0.000000pt;}
.lsc_c00352{letter-spacing:-0.379664pt;}
.ls4_c00352{letter-spacing:-0.056016pt;}
.ls9_c00352{letter-spacing:-0.043568pt;}
.ls7_c00352{letter-spacing:-0.031120pt;}
.ls6_c00352{letter-spacing:-0.024896pt;}
.lsa_c00352{letter-spacing:-0.018672pt;}
.ls8_c00352{letter-spacing:-0.012448pt;}
.lsb_c00352{letter-spacing:-0.006224pt;}
.ls5_c00352{letter-spacing:0.000000pt;}
.ls0_c00352{letter-spacing:0.006224pt;}
.ls2_c00352{letter-spacing:0.012448pt;}
.ls1_c00352{letter-spacing:0.024896pt;}
.ls3_c00352{letter-spacing:0.049792pt;}
.wsb_c00352{word-spacing:-0.006224pt;}
.ws0_c00352{word-spacing:0.000000pt;}
.ws13_c00352{word-spacing:0.323648pt;}
.ws15_c00352{word-spacing:0.684640pt;}
.ws12_c00352{word-spacing:2.520720pt;}
.ws11_c00352{word-spacing:2.558064pt;}
.wse_c00352{word-spacing:2.863040pt;}
.wsc_c00352{word-spacing:3.529008pt;}
.ws5_c00352{word-spacing:3.840208pt;}
.ws19_c00352{word-spacing:4.481280pt;}
.ws14_c00352{word-spacing:4.773808pt;}
.ws3_c00352{word-spacing:6.099520pt;}
.ws4_c00352{word-spacing:6.385824pt;}
.ws9_c00352{word-spacing:6.728144pt;}
.ws10_c00352{word-spacing:7.997840pt;}
.wsf_c00352{word-spacing:8.327712pt;}
.ws6_c00352{word-spacing:10.860880pt;}
.ws16_c00352{word-spacing:12.149248pt;}
.ws7_c00352{word-spacing:13.132640pt;}
.ws8_c00352{word-spacing:13.742592pt;}
.wsa_c00352{word-spacing:18.242544pt;}
.ws2_c00352{word-spacing:24.945792pt;}
.ws1_c00352{word-spacing:24.970688pt;}
.wsd_c00352{word-spacing:26.570256pt;}
.ws18_c00352{word-spacing:28.736208pt;}
.ws17_c00352{word-spacing:28.792224pt;}
._1_c00352{margin-left:-1.201232pt;}
._0_c00352{width:0.983392pt;}
.fs0_c00352{font-size:62.240000pt;}
.y0_c00352{bottom:0.000000pt;}
.y2_c00352{bottom:97.547527pt;}
.y1_c00352{bottom:115.387067pt;}
.y22_c00352{bottom:154.427067pt;}
.y21_c00352{bottom:181.307067pt;}
.y20_c00352{bottom:208.107200pt;}
.y1f_c00352{bottom:234.987067pt;}
.y1e_c00352{bottom:261.787067pt;}
.y1d_c00352{bottom:288.667200pt;}
.y1c_c00352{bottom:315.467067pt;}
.y1b_c00352{bottom:342.347067pt;}
.y1a_c00352{bottom:369.147200pt;}
.y19_c00352{bottom:396.027200pt;}
.y18_c00352{bottom:422.907200pt;}
.y17_c00352{bottom:449.707067pt;}
.y16_c00352{bottom:476.587067pt;}
.y15_c00352{bottom:503.387067pt;}
.y14_c00352{bottom:530.187067pt;}
.y13_c00352{bottom:556.987067pt;}
.y12_c00352{bottom:583.867067pt;}
.y11_c00352{bottom:610.667067pt;}
.y10_c00352{bottom:637.547067pt;}
.yf_c00352{bottom:664.347067pt;}
.ye_c00352{bottom:691.227067pt;}
.yd_c00352{bottom:718.027067pt;}
.yc_c00352{bottom:744.907067pt;}
.yb_c00352{bottom:771.707067pt;}
.ya_c00352{bottom:798.587067pt;}
.y9_c00352{bottom:825.387067pt;}
.y8_c00352{bottom:852.267067pt;}
.y7_c00352{bottom:879.067067pt;}
.y6_c00352{bottom:905.947067pt;}
.y5_c00352{bottom:932.747067pt;}
.y4_c00352{bottom:959.627067pt;}
.y3_c00352{bottom:986.427067pt;}
.h2_c00352{height:55.645234pt;}
.h1_c00352{height:55.797187pt;}
.h0_c00352{height:1122.666667pt;}
.w0_c00352{width:793.333333pt;}
.x0_c00352{left:0.000000pt;}
.x2_c00352{left:73.520052pt;}
.x3_c00352{left:122.880000pt;}
.x1_c00352{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1fa6b73f10b0cb948a08d984.woff2')format("woff");}.ff1_c00353{font-family:ff1_c00353;line-height:1.106934;font-style:normal;font-weight:normal;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_11158cb2e82fc09a483b1791.woff2')format("woff");}.ff2_c00353{font-family:ff2_c00353;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00353{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00353{vertical-align:0.000000px;}
.v1_c00353{vertical-align:32.040000px;}
.lsb_c00353{letter-spacing:-0.280080px;}
.ls4_c00353{letter-spacing:-0.063018px;}
.ls9_c00353{letter-spacing:-0.056016px;}
.lsc_c00353{letter-spacing:-0.049014px;}
.lsa_c00353{letter-spacing:-0.042012px;}
.ls8_c00353{letter-spacing:-0.035010px;}
.ls6_c00353{letter-spacing:-0.028008px;}
.ls7_c00353{letter-spacing:-0.007002px;}
.ls5_c00353{letter-spacing:0.000000px;}
.ls0_c00353{letter-spacing:0.007002px;}
.ls2_c00353{letter-spacing:0.014004px;}
.ls3_c00353{letter-spacing:0.021006px;}
.ls1_c00353{letter-spacing:0.023281px;}
.sc__c00353{text-shadow:none;}
.sc0_c00353{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00353{-webkit-text-stroke:0px transparent;}
.sc0_c00353{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00353{word-spacing:-12.967628px;}
.ws1_c00353{word-spacing:0.000000px;}
.ws19_c00353{word-spacing:0.014004px;}
.ws18_c00353{word-spacing:0.021006px;}
.ws10_c00353{word-spacing:0.028008px;}
.ws15_c00353{word-spacing:0.266076px;}
.ws2_c00353{word-spacing:0.336096px;}
.ws3_c00353{word-spacing:0.371106px;}
.wsc_c00353{word-spacing:0.385110px;}
.wsb_c00353{word-spacing:0.399114px;}
.wsd_c00353{word-spacing:1.813518px;}
.ws13_c00353{word-spacing:2.177622px;}
.ws14_c00353{word-spacing:2.506716px;}
.ws16_c00353{word-spacing:3.571020px;}
.ws8_c00353{word-spacing:3.592026px;}
.ws9_c00353{word-spacing:3.620034px;}
.ws11_c00353{word-spacing:4.306230px;}
.ws1d_c00353{word-spacing:4.355244px;}
.ws6_c00353{word-spacing:4.670334px;}
.ws5_c00353{word-spacing:4.698342px;}
.wsf_c00353{word-spacing:6.490854px;}
.ws12_c00353{word-spacing:6.826950px;}
.ws7_c00353{word-spacing:7.548156px;}
.ws4_c00353{word-spacing:11.511288px;}
.wsa_c00353{word-spacing:16.216632px;}
.wse_c00353{word-spacing:17.308944px;}
.ws1e_c00353{word-spacing:17.981136px;}
.ws17_c00353{word-spacing:19.108458px;}
.ws1a_c00353{word-spacing:21.972276px;}
.ws1b_c00353{word-spacing:25.165188px;}
.ws1c_c00353{word-spacing:25.186194px;}
._0_c00353{margin-left:-1.001286px;}
._1_c00353{width:1.162332px;}
.fc0_c00353{color:rgb(0,0,0);}
.fs1_c00353{font-size:46.562400px;}
.fs0_c00353{font-size:70.020000px;}
.y0_c00353{bottom:0.000000px;}
.y2_c00353{bottom:109.740968px;}
.y1_c00353{bottom:129.810450px;}
.y22_c00353{bottom:173.730450px;}
.y21_c00353{bottom:203.970450px;}
.y20_c00353{bottom:234.120600px;}
.y1f_c00353{bottom:264.360450px;}
.y1e_c00353{bottom:294.510450px;}
.y1d_c00353{bottom:324.750600px;}
.y1c_c00353{bottom:354.900450px;}
.y1b_c00353{bottom:385.140450px;}
.y1a_c00353{bottom:415.290600px;}
.y19_c00353{bottom:445.530600px;}
.y18_c00353{bottom:475.770600px;}
.y17_c00353{bottom:505.920450px;}
.y16_c00353{bottom:536.160450px;}
.y15_c00353{bottom:566.310450px;}
.y14_c00353{bottom:596.460450px;}
.y13_c00353{bottom:626.610450px;}
.y12_c00353{bottom:656.850450px;}
.y11_c00353{bottom:687.000450px;}
.y10_c00353{bottom:717.240450px;}
.yf_c00353{bottom:747.390450px;}
.ye_c00353{bottom:777.630450px;}
.yd_c00353{bottom:807.780450px;}
.yc_c00353{bottom:838.020450px;}
.yb_c00353{bottom:868.170450px;}
.ya_c00353{bottom:898.410450px;}
.y9_c00353{bottom:928.560450px;}
.y8_c00353{bottom:958.800450px;}
.y7_c00353{bottom:988.950450px;}
.y6_c00353{bottom:1019.190450px;}
.y5_c00353{bottom:1049.340450px;}
.y4_c00353{bottom:1079.580450px;}
.y3_c00353{bottom:1109.730450px;}
.h2_c00353{height:62.600889px;}
.h1_c00353{height:62.771836px;}
.h3_c00353{height:73.668786px;}
.h0_c00353{height:1263.000000px;}
.w0_c00353{width:892.500000px;}
.x0_c00353{left:0.000000px;}
.x2_c00353{left:82.710059px;}
.x3_c00353{left:138.240000px;}
.x1_c00353{left:431.730000px;}
@media print{
.v0_c00353{vertical-align:0.000000pt;}
.v1_c00353{vertical-align:28.480000pt;}
.lsb_c00353{letter-spacing:-0.248960pt;}
.ls4_c00353{letter-spacing:-0.056016pt;}
.ls9_c00353{letter-spacing:-0.049792pt;}
.lsc_c00353{letter-spacing:-0.043568pt;}
.lsa_c00353{letter-spacing:-0.037344pt;}
.ls8_c00353{letter-spacing:-0.031120pt;}
.ls6_c00353{letter-spacing:-0.024896pt;}
.ls7_c00353{letter-spacing:-0.006224pt;}
.ls5_c00353{letter-spacing:0.000000pt;}
.ls0_c00353{letter-spacing:0.006224pt;}
.ls2_c00353{letter-spacing:0.012448pt;}
.ls3_c00353{letter-spacing:0.018672pt;}
.ls1_c00353{letter-spacing:0.020694pt;}
.ws0_c00353{word-spacing:-11.526781pt;}
.ws1_c00353{word-spacing:0.000000pt;}
.ws19_c00353{word-spacing:0.012448pt;}
.ws18_c00353{word-spacing:0.018672pt;}
.ws10_c00353{word-spacing:0.024896pt;}
.ws15_c00353{word-spacing:0.236512pt;}
.ws2_c00353{word-spacing:0.298752pt;}
.ws3_c00353{word-spacing:0.329872pt;}
.wsc_c00353{word-spacing:0.342320pt;}
.wsb_c00353{word-spacing:0.354768pt;}
.wsd_c00353{word-spacing:1.612016pt;}
.ws13_c00353{word-spacing:1.935664pt;}
.ws14_c00353{word-spacing:2.228192pt;}
.ws16_c00353{word-spacing:3.174240pt;}
.ws8_c00353{word-spacing:3.192912pt;}
.ws9_c00353{word-spacing:3.217808pt;}
.ws11_c00353{word-spacing:3.827760pt;}
.ws1d_c00353{word-spacing:3.871328pt;}
.ws6_c00353{word-spacing:4.151408pt;}
.ws5_c00353{word-spacing:4.176304pt;}
.wsf_c00353{word-spacing:5.769648pt;}
.ws12_c00353{word-spacing:6.068400pt;}
.ws7_c00353{word-spacing:6.709472pt;}
.ws4_c00353{word-spacing:10.232256pt;}
.wsa_c00353{word-spacing:14.414784pt;}
.wse_c00353{word-spacing:15.385728pt;}
.ws1e_c00353{word-spacing:15.983232pt;}
.ws17_c00353{word-spacing:16.985296pt;}
.ws1a_c00353{word-spacing:19.530912pt;}
.ws1b_c00353{word-spacing:22.369056pt;}
.ws1c_c00353{word-spacing:22.387728pt;}
._0_c00353{margin-left:-0.890032pt;}
._1_c00353{width:1.033184pt;}
.fs1_c00353{font-size:41.388800pt;}
.fs0_c00353{font-size:62.240000pt;}
.y0_c00353{bottom:0.000000pt;}
.y2_c00353{bottom:97.547527pt;}
.y1_c00353{bottom:115.387067pt;}
.y22_c00353{bottom:154.427067pt;}
.y21_c00353{bottom:181.307067pt;}
.y20_c00353{bottom:208.107200pt;}
.y1f_c00353{bottom:234.987067pt;}
.y1e_c00353{bottom:261.787067pt;}
.y1d_c00353{bottom:288.667200pt;}
.y1c_c00353{bottom:315.467067pt;}
.y1b_c00353{bottom:342.347067pt;}
.y1a_c00353{bottom:369.147200pt;}
.y19_c00353{bottom:396.027200pt;}
.y18_c00353{bottom:422.907200pt;}
.y17_c00353{bottom:449.707067pt;}
.y16_c00353{bottom:476.587067pt;}
.y15_c00353{bottom:503.387067pt;}
.y14_c00353{bottom:530.187067pt;}
.y13_c00353{bottom:556.987067pt;}
.y12_c00353{bottom:583.867067pt;}
.y11_c00353{bottom:610.667067pt;}
.y10_c00353{bottom:637.547067pt;}
.yf_c00353{bottom:664.347067pt;}
.ye_c00353{bottom:691.227067pt;}
.yd_c00353{bottom:718.027067pt;}
.yc_c00353{bottom:744.907067pt;}
.yb_c00353{bottom:771.707067pt;}
.ya_c00353{bottom:798.587067pt;}
.y9_c00353{bottom:825.387067pt;}
.y8_c00353{bottom:852.267067pt;}
.y7_c00353{bottom:879.067067pt;}
.y6_c00353{bottom:905.947067pt;}
.y5_c00353{bottom:932.747067pt;}
.y4_c00353{bottom:959.627067pt;}
.y3_c00353{bottom:986.427067pt;}
.h2_c00353{height:55.645234pt;}
.h1_c00353{height:55.797187pt;}
.h3_c00353{height:65.483366pt;}
.h0_c00353{height:1122.666667pt;}
.w0_c00353{width:793.333333pt;}
.x0_c00353{left:0.000000pt;}
.x2_c00353{left:73.520052pt;}
.x3_c00353{left:122.880000pt;}
.x1_c00353{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_50fe15970db1746228d0d0ae.woff2')format("woff");}.ff1_c00354{font-family:ff1_c00354;line-height:1.106934;font-style:normal;font-weight:normal;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_da76d01b7238550e367a8981.woff2')format("woff");}.ff2_c00354{font-family:ff2_c00354;line-height:1.104492;font-style:normal;font-weight:normal;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_ea1548acf98782fbef8436ae.woff2')format("woff");}.ff3_c00354{font-family:ff3_c00354;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00354{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00354{vertical-align:0.000000px;}
.v1_c00354{vertical-align:32.400000px;}
.ls4_c00354{letter-spacing:-0.063018px;}
.lsb_c00354{letter-spacing:-0.056016px;}
.lsa_c00354{letter-spacing:-0.049014px;}
.ls9_c00354{letter-spacing:-0.035010px;}
.lsd_c00354{letter-spacing:-0.028008px;}
.ls7_c00354{letter-spacing:-0.021006px;}
.ls6_c00354{letter-spacing:-0.014004px;}
.ls8_c00354{letter-spacing:-0.007002px;}
.ls5_c00354{letter-spacing:0.000000px;}
.ls0_c00354{letter-spacing:0.007002px;}
.ls1_c00354{letter-spacing:0.014004px;}
.ls2_c00354{letter-spacing:0.023281px;}
.ls3_c00354{letter-spacing:0.070020px;}
.lsc_c00354{letter-spacing:0.154044px;}
.sc__c00354{text-shadow:none;}
.sc0_c00354{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00354{-webkit-text-stroke:0px transparent;}
.sc0_c00354{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00354{word-spacing:-12.967628px;}
.wsc_c00354{word-spacing:-0.168048px;}
.ws1_c00354{word-spacing:0.000000px;}
.ws3_c00354{word-spacing:0.007002px;}
.ws12_c00354{word-spacing:0.014004px;}
.wsb_c00354{word-spacing:0.042012px;}
.ws11_c00354{word-spacing:0.350100px;}
.ws5_c00354{word-spacing:0.371106px;}
.wsf_c00354{word-spacing:1.085310px;}
.wsa_c00354{word-spacing:3.634038px;}
.ws8_c00354{word-spacing:3.942126px;}
.ws7_c00354{word-spacing:3.984138px;}
.ws9_c00354{word-spacing:4.649328px;}
.ws2_c00354{word-spacing:5.762646px;}
.ws6_c00354{word-spacing:10.790082px;}
.wse_c00354{word-spacing:20.179764px;}
.wsd_c00354{word-spacing:23.407686px;}
.ws4_c00354{word-spacing:28.806228px;}
.ws10_c00354{word-spacing:37.775790px;}
._2_c00354{margin-left:-1.050300px;}
._0_c00354{width:1.288368px;}
._1_c00354{width:7.919262px;}
._3_c00354{width:23.057586px;}
.fc0_c00354{color:rgb(0,0,0);}
.fs1_c00354{font-size:46.562400px;}
.fs0_c00354{font-size:70.020000px;}
.y0_c00354{bottom:0.000000px;}
.y2_c00354{bottom:109.740968px;}
.y1_c00354{bottom:129.810450px;}
.y1d_c00354{bottom:160.140486px;}
.y1c_c00354{bottom:180.209969px;}
.y1b_c00354{bottom:200.370477px;}
.y1a_c00354{bottom:220.439960px;}
.y19_c00354{bottom:240.509442px;}
.y18_c00354{bottom:260.669951px;}
.y17_c00354{bottom:280.830459px;}
.y16_c00354{bottom:300.899942px;}
.y15_c00354{bottom:321.060450px;}
.y14_c00354{bottom:352.020450px;}
.y13_c00354{bottom:382.260450px;}
.y12_c00354{bottom:412.410450px;}
.y11_c00354{bottom:442.650450px;}
.y10_c00354{bottom:472.800450px;}
.yf_c00354{bottom:503.040600px;}
.ye_c00354{bottom:529.410450px;}
.yd_c00354{bottom:807.780450px;}
.yc_c00354{bottom:838.020450px;}
.yb_c00354{bottom:868.170450px;}
.ya_c00354{bottom:898.410450px;}
.y9_c00354{bottom:928.560450px;}
.y8_c00354{bottom:958.800450px;}
.y7_c00354{bottom:988.950450px;}
.y6_c00354{bottom:1019.190450px;}
.y5_c00354{bottom:1049.340450px;}
.y4_c00354{bottom:1079.580450px;}
.y3_c00354{bottom:1109.730450px;}
.h2_c00354{height:62.600889px;}
.h1_c00354{height:62.771836px;}
.h4_c00354{height:63.216299px;}
.h3_c00354{height:74.028786px;}
.h0_c00354{height:1263.000000px;}
.w0_c00354{width:892.500000px;}
.x0_c00354{left:0.000000px;}
.x2_c00354{left:82.710059px;}
.x3_c00354{left:138.240000px;}
.x4_c00354{left:164.430000px;}
.x6_c00354{left:339.750000px;}
.x1_c00354{left:431.730000px;}
.x5_c00354{left:726.480000px;}
@media print{
.v0_c00354{vertical-align:0.000000pt;}
.v1_c00354{vertical-align:28.800000pt;}
.ls4_c00354{letter-spacing:-0.056016pt;}
.lsb_c00354{letter-spacing:-0.049792pt;}
.lsa_c00354{letter-spacing:-0.043568pt;}
.ls9_c00354{letter-spacing:-0.031120pt;}
.lsd_c00354{letter-spacing:-0.024896pt;}
.ls7_c00354{letter-spacing:-0.018672pt;}
.ls6_c00354{letter-spacing:-0.012448pt;}
.ls8_c00354{letter-spacing:-0.006224pt;}
.ls5_c00354{letter-spacing:0.000000pt;}
.ls0_c00354{letter-spacing:0.006224pt;}
.ls1_c00354{letter-spacing:0.012448pt;}
.ls2_c00354{letter-spacing:0.020694pt;}
.ls3_c00354{letter-spacing:0.062240pt;}
.lsc_c00354{letter-spacing:0.136928pt;}
.ws0_c00354{word-spacing:-11.526781pt;}
.wsc_c00354{word-spacing:-0.149376pt;}
.ws1_c00354{word-spacing:0.000000pt;}
.ws3_c00354{word-spacing:0.006224pt;}
.ws12_c00354{word-spacing:0.012448pt;}
.wsb_c00354{word-spacing:0.037344pt;}
.ws11_c00354{word-spacing:0.311200pt;}
.ws5_c00354{word-spacing:0.329872pt;}
.wsf_c00354{word-spacing:0.964720pt;}
.wsa_c00354{word-spacing:3.230256pt;}
.ws8_c00354{word-spacing:3.504112pt;}
.ws7_c00354{word-spacing:3.541456pt;}
.ws9_c00354{word-spacing:4.132736pt;}
.ws2_c00354{word-spacing:5.122352pt;}
.ws6_c00354{word-spacing:9.591184pt;}
.wse_c00354{word-spacing:17.937568pt;}
.wsd_c00354{word-spacing:20.806832pt;}
.ws4_c00354{word-spacing:25.605536pt;}
.ws10_c00354{word-spacing:33.578480pt;}
._2_c00354{margin-left:-0.933600pt;}
._0_c00354{width:1.145216pt;}
._1_c00354{width:7.039344pt;}
._3_c00354{width:20.495632pt;}
.fs1_c00354{font-size:41.388800pt;}
.fs0_c00354{font-size:62.240000pt;}
.y0_c00354{bottom:0.000000pt;}
.y2_c00354{bottom:97.547527pt;}
.y1_c00354{bottom:115.387067pt;}
.y1d_c00354{bottom:142.347099pt;}
.y1c_c00354{bottom:160.186639pt;}
.y1b_c00354{bottom:178.107091pt;}
.y1a_c00354{bottom:195.946631pt;}
.y19_c00354{bottom:213.786171pt;}
.y18_c00354{bottom:231.706623pt;}
.y17_c00354{bottom:249.627075pt;}
.y16_c00354{bottom:267.466615pt;}
.y15_c00354{bottom:285.387067pt;}
.y14_c00354{bottom:312.907067pt;}
.y13_c00354{bottom:339.787067pt;}
.y12_c00354{bottom:366.587067pt;}
.y11_c00354{bottom:393.467067pt;}
.y10_c00354{bottom:420.267067pt;}
.yf_c00354{bottom:447.147200pt;}
.ye_c00354{bottom:470.587067pt;}
.yd_c00354{bottom:718.027067pt;}
.yc_c00354{bottom:744.907067pt;}
.yb_c00354{bottom:771.707067pt;}
.ya_c00354{bottom:798.587067pt;}
.y9_c00354{bottom:825.387067pt;}
.y8_c00354{bottom:852.267067pt;}
.y7_c00354{bottom:879.067067pt;}
.y6_c00354{bottom:905.947067pt;}
.y5_c00354{bottom:932.747067pt;}
.y4_c00354{bottom:959.627067pt;}
.y3_c00354{bottom:986.427067pt;}
.h2_c00354{height:55.645234pt;}
.h1_c00354{height:55.797187pt;}
.h4_c00354{height:56.192266pt;}
.h3_c00354{height:65.803366pt;}
.h0_c00354{height:1122.666667pt;}
.w0_c00354{width:793.333333pt;}
.x0_c00354{left:0.000000pt;}
.x2_c00354{left:73.520052pt;}
.x3_c00354{left:122.880000pt;}
.x4_c00354{left:146.160000pt;}
.x6_c00354{left:302.000000pt;}
.x1_c00354{left:383.760000pt;}
.x5_c00354{left:645.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_56545b83d540e721fbaf0d45.woff2')format("woff");}.ff1_c00355{font-family:ff1_c00355;line-height:1.106934;font-style:normal;font-weight:normal;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_2f9209168d2d267c30b9da7b.woff2')format("woff");}.ff2_c00355{font-family:ff2_c00355;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00355;src:url('chunks/assets/font_97c8005e2c2098840c67c9a8.woff2')format("woff");}.ff3_c00355{font-family:ff3_c00355;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00355{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00355{vertical-align:0.000000px;}
.ls12_c00355{letter-spacing:-0.091026px;}
.ls8_c00355{letter-spacing:-0.063018px;}
.ls11_c00355{letter-spacing:-0.056016px;}
.ls10_c00355{letter-spacing:-0.049014px;}
.lsf_c00355{letter-spacing:-0.042012px;}
.lsd_c00355{letter-spacing:-0.035010px;}
.lse_c00355{letter-spacing:-0.028008px;}
.lsc_c00355{letter-spacing:-0.021006px;}
.lsa_c00355{letter-spacing:-0.014004px;}
.lsb_c00355{letter-spacing:-0.007002px;}
.ls9_c00355{letter-spacing:0.000000px;}
.ls5_c00355{letter-spacing:0.007002px;}
.ls7_c00355{letter-spacing:0.014004px;}
.ls4_c00355{letter-spacing:0.021006px;}
.ls3_c00355{letter-spacing:0.042012px;}
.ls2_c00355{letter-spacing:0.084024px;}
.ls1_c00355{letter-spacing:0.105030px;}
.ls13_c00355{letter-spacing:0.210060px;}
.ls0_c00355{letter-spacing:10.411974px;}
.ls6_c00355{letter-spacing:64.054296px;}
.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;}
}
.ws23_c00355{word-spacing:-0.336096px;}
.ws32_c00355{word-spacing:-0.056016px;}
.ws0_c00355{word-spacing:0.000000px;}
.ws4_c00355{word-spacing:0.007002px;}
.ws13_c00355{word-spacing:0.014004px;}
.ws5_c00355{word-spacing:0.021006px;}
.ws24_c00355{word-spacing:0.028008px;}
.ws29_c00355{word-spacing:0.378108px;}
.wsc_c00355{word-spacing:0.385110px;}
.ws11_c00355{word-spacing:1.820520px;}
.ws17_c00355{word-spacing:2.205630px;}
.ws7_c00355{word-spacing:4.684338px;}
.ws36_c00355{word-spacing:5.013432px;}
.ws33_c00355{word-spacing:5.776650px;}
.ws18_c00355{word-spacing:6.112746px;}
.ws16_c00355{word-spacing:8.248356px;}
.ws35_c00355{word-spacing:8.983566px;}
.ws2_c00355{word-spacing:10.075878px;}
.ws31_c00355{word-spacing:10.096884px;}
.ws3_c00355{word-spacing:10.320948px;}
.ws1_c00355{word-spacing:10.439982px;}
.ws12_c00355{word-spacing:12.232494px;}
.wsa_c00355{word-spacing:12.610602px;}
.ws2a_c00355{word-spacing:13.716918px;}
.ws14_c00355{word-spacing:14.410116px;}
.ws22_c00355{word-spacing:16.559730px;}
.ws21_c00355{word-spacing:16.573734px;}
.ws2b_c00355{word-spacing:16.594740px;}
.ws34_c00355{word-spacing:17.680050px;}
.ws1d_c00355{word-spacing:19.451556px;}
.ws6_c00355{word-spacing:20.172762px;}
.ws10_c00355{word-spacing:21.951270px;}
.wse_c00355{word-spacing:22.322376px;}
.ws37_c00355{word-spacing:23.057586px;}
.ws8_c00355{word-spacing:23.764788px;}
.ws27_c00355{word-spacing:24.492996px;}
.wsd_c00355{word-spacing:24.878106px;}
.wsf_c00355{word-spacing:30.241638px;}
.ws9_c00355{word-spacing:32.055156px;}
.ws2e_c00355{word-spacing:32.727348px;}
.wsb_c00355{word-spacing:33.140466px;}
.ws28_c00355{word-spacing:36.746496px;}
.ws38_c00355{word-spacing:38.511000px;}
.ws25_c00355{word-spacing:39.246210px;}
.ws30_c00355{word-spacing:41.052726px;}
.ws15_c00355{word-spacing:44.945838px;}
.ws1c_c00355{word-spacing:48.264786px;}
.ws1b_c00355{word-spacing:50.736492px;}
.ws2c_c00355{word-spacing:50.897538px;}
.ws26_c00355{word-spacing:56.499138px;}
.ws1a_c00355{word-spacing:63.032004px;}
.ws20_c00355{word-spacing:63.739206px;}
.ws1f_c00355{word-spacing:64.159326px;}
.ws2f_c00355{word-spacing:66.953124px;}
.ws19_c00355{word-spacing:67.660326px;}
.ws3a_c00355{word-spacing:74.844378px;}
.ws2d_c00355{word-spacing:74.879388px;}
.ws39_c00355{word-spacing:77.750208px;}
.ws1e_c00355{word-spacing:91.075014px;}
._0_c00355{margin-left:-19.304514px;}
._2_c00355{margin-left:-1.085310px;}
._1_c00355{width:1.610460px;}
.fc0_c00355{color:rgb(0,0,0);}
.fs0_c00355{font-size:70.020000px;}
.y0_c00355{bottom:0.000000px;}
.y2_c00355{bottom:109.740968px;}
.y1_c00355{bottom:129.810450px;}
.y40_c00355{bottom:173.730450px;}
.y21_c00355{bottom:183.535536px;}
.y3f_c00355{bottom:203.970450px;}
.y20_c00355{bottom:213.775424px;}
.y3e_c00355{bottom:234.120600px;}
.y1f_c00355{bottom:243.835010px;}
.y3d_c00355{bottom:264.360450px;}
.y1e_c00355{bottom:274.074897px;}
.y3c_c00355{bottom:294.510450px;}
.y1d_c00355{bottom:304.225509px;}
.y3b_c00355{bottom:324.750600px;}
.y1c_c00355{bottom:334.465397px;}
.y3a_c00355{bottom:354.900450px;}
.y1b_c00355{bottom:364.616009px;}
.y39_c00355{bottom:385.140450px;}
.y1a_c00355{bottom:394.855896px;}
.y38_c00355{bottom:415.290600px;}
.y19_c00355{bottom:425.006508px;}
.y37_c00355{bottom:445.530600px;}
.y18_c00355{bottom:455.246396px;}
.y36_c00355{bottom:475.770600px;}
.y17_c00355{bottom:485.397008px;}
.y35_c00355{bottom:505.920450px;}
.y16_c00355{bottom:515.636895px;}
.y34_c00355{bottom:536.160450px;}
.y15_c00355{bottom:545.787507px;}
.y33_c00355{bottom:566.310450px;}
.y14_c00355{bottom:576.027395px;}
.y32_c00355{bottom:596.460450px;}
.y13_c00355{bottom:606.178007px;}
.y31_c00355{bottom:626.610450px;}
.y12_c00355{bottom:636.417894px;}
.y30_c00355{bottom:656.850450px;}
.y11_c00355{bottom:666.657781px;}
.y2f_c00355{bottom:687.000450px;}
.y10_c00355{bottom:696.808393px;}
.y2e_c00355{bottom:717.240450px;}
.yf_c00355{bottom:727.048281px;}
.y2d_c00355{bottom:747.390450px;}
.ye_c00355{bottom:757.198893px;}
.y2c_c00355{bottom:777.630450px;}
.yd_c00355{bottom:787.438780px;}
.y2b_c00355{bottom:807.780450px;}
.yc_c00355{bottom:817.589392px;}
.y2a_c00355{bottom:838.020450px;}
.yb_c00355{bottom:847.829280px;}
.y29_c00355{bottom:868.170450px;}
.ya_c00355{bottom:877.979892px;}
.y28_c00355{bottom:898.410450px;}
.y9_c00355{bottom:908.219779px;}
.y27_c00355{bottom:928.560450px;}
.y8_c00355{bottom:938.370391px;}
.y26_c00355{bottom:958.800450px;}
.y7_c00355{bottom:968.610279px;}
.y25_c00355{bottom:988.950450px;}
.y6_c00355{bottom:998.760891px;}
.y24_c00355{bottom:1019.190450px;}
.y5_c00355{bottom:1029.000779px;}
.y23_c00355{bottom:1049.340450px;}
.y4_c00355{bottom:1079.490450px;}
.y22_c00355{bottom:1079.580450px;}
.y3_c00355{bottom:1109.730450px;}
.h3_c00355{height:62.600889px;}
.h1_c00355{height:62.771836px;}
.h2_c00355{height:63.216299px;}
.h0_c00355{height:1263.000000px;}
.w0_c00355{width:892.500000px;}
.x0_c00355{left:0.000000px;}
.x2_c00355{left:82.710059px;}
.x3_c00355{left:137.160000px;}
.x1_c00355{left:431.730000px;}
.x4_c00355{left:454.320000px;}
@media print{
.v0_c00355{vertical-align:0.000000pt;}
.ls12_c00355{letter-spacing:-0.080912pt;}
.ls8_c00355{letter-spacing:-0.056016pt;}
.ls11_c00355{letter-spacing:-0.049792pt;}
.ls10_c00355{letter-spacing:-0.043568pt;}
.lsf_c00355{letter-spacing:-0.037344pt;}
.lsd_c00355{letter-spacing:-0.031120pt;}
.lse_c00355{letter-spacing:-0.024896pt;}
.lsc_c00355{letter-spacing:-0.018672pt;}
.lsa_c00355{letter-spacing:-0.012448pt;}
.lsb_c00355{letter-spacing:-0.006224pt;}
.ls9_c00355{letter-spacing:0.000000pt;}
.ls5_c00355{letter-spacing:0.006224pt;}
.ls7_c00355{letter-spacing:0.012448pt;}
.ls4_c00355{letter-spacing:0.018672pt;}
.ls3_c00355{letter-spacing:0.037344pt;}
.ls2_c00355{letter-spacing:0.074688pt;}
.ls1_c00355{letter-spacing:0.093360pt;}
.ls13_c00355{letter-spacing:0.186720pt;}
.ls0_c00355{letter-spacing:9.255088pt;}
.ls6_c00355{letter-spacing:56.937152pt;}
.ws23_c00355{word-spacing:-0.298752pt;}
.ws32_c00355{word-spacing:-0.049792pt;}
.ws0_c00355{word-spacing:0.000000pt;}
.ws4_c00355{word-spacing:0.006224pt;}
.ws13_c00355{word-spacing:0.012448pt;}
.ws5_c00355{word-spacing:0.018672pt;}
.ws24_c00355{word-spacing:0.024896pt;}
.ws29_c00355{word-spacing:0.336096pt;}
.wsc_c00355{word-spacing:0.342320pt;}
.ws11_c00355{word-spacing:1.618240pt;}
.ws17_c00355{word-spacing:1.960560pt;}
.ws7_c00355{word-spacing:4.163856pt;}
.ws36_c00355{word-spacing:4.456384pt;}
.ws33_c00355{word-spacing:5.134800pt;}
.ws18_c00355{word-spacing:5.433552pt;}
.ws16_c00355{word-spacing:7.331872pt;}
.ws35_c00355{word-spacing:7.985392pt;}
.ws2_c00355{word-spacing:8.956336pt;}
.ws31_c00355{word-spacing:8.975008pt;}
.ws3_c00355{word-spacing:9.174176pt;}
.ws1_c00355{word-spacing:9.279984pt;}
.ws12_c00355{word-spacing:10.873328pt;}
.wsa_c00355{word-spacing:11.209424pt;}
.ws2a_c00355{word-spacing:12.192816pt;}
.ws14_c00355{word-spacing:12.808992pt;}
.ws22_c00355{word-spacing:14.719760pt;}
.ws21_c00355{word-spacing:14.732208pt;}
.ws2b_c00355{word-spacing:14.750880pt;}
.ws34_c00355{word-spacing:15.715600pt;}
.ws1d_c00355{word-spacing:17.290272pt;}
.ws6_c00355{word-spacing:17.931344pt;}
.ws10_c00355{word-spacing:19.512240pt;}
.wse_c00355{word-spacing:19.842112pt;}
.ws37_c00355{word-spacing:20.495632pt;}
.ws8_c00355{word-spacing:21.124256pt;}
.ws27_c00355{word-spacing:21.771552pt;}
.wsd_c00355{word-spacing:22.113872pt;}
.wsf_c00355{word-spacing:26.881456pt;}
.ws9_c00355{word-spacing:28.493472pt;}
.ws2e_c00355{word-spacing:29.090976pt;}
.wsb_c00355{word-spacing:29.458192pt;}
.ws28_c00355{word-spacing:32.663552pt;}
.ws38_c00355{word-spacing:34.232000pt;}
.ws25_c00355{word-spacing:34.885520pt;}
.ws30_c00355{word-spacing:36.491312pt;}
.ws15_c00355{word-spacing:39.951856pt;}
.ws1c_c00355{word-spacing:42.902032pt;}
.ws1b_c00355{word-spacing:45.099104pt;}
.ws2c_c00355{word-spacing:45.242256pt;}
.ws26_c00355{word-spacing:50.221456pt;}
.ws1a_c00355{word-spacing:56.028448pt;}
.ws20_c00355{word-spacing:56.657072pt;}
.ws1f_c00355{word-spacing:57.030512pt;}
.ws2f_c00355{word-spacing:59.513888pt;}
.ws19_c00355{word-spacing:60.142512pt;}
.ws3a_c00355{word-spacing:66.528336pt;}
.ws2d_c00355{word-spacing:66.559456pt;}
.ws39_c00355{word-spacing:69.111296pt;}
.ws1e_c00355{word-spacing:80.955568pt;}
._0_c00355{margin-left:-17.159568pt;}
._2_c00355{margin-left:-0.964720pt;}
._1_c00355{width:1.431520pt;}
.fs0_c00355{font-size:62.240000pt;}
.y0_c00355{bottom:0.000000pt;}
.y2_c00355{bottom:97.547527pt;}
.y1_c00355{bottom:115.387067pt;}
.y40_c00355{bottom:154.427067pt;}
.y21_c00355{bottom:163.142699pt;}
.y3f_c00355{bottom:181.307067pt;}
.y20_c00355{bottom:190.022599pt;}
.y3e_c00355{bottom:208.107200pt;}
.y1f_c00355{bottom:216.742231pt;}
.y3d_c00355{bottom:234.987067pt;}
.y1e_c00355{bottom:243.622131pt;}
.y3c_c00355{bottom:261.787067pt;}
.y1d_c00355{bottom:270.422675pt;}
.y3b_c00355{bottom:288.667200pt;}
.y1c_c00355{bottom:297.302575pt;}
.y3a_c00355{bottom:315.467067pt;}
.y1b_c00355{bottom:324.103119pt;}
.y39_c00355{bottom:342.347067pt;}
.y1a_c00355{bottom:350.983019pt;}
.y38_c00355{bottom:369.147200pt;}
.y19_c00355{bottom:377.783563pt;}
.y37_c00355{bottom:396.027200pt;}
.y18_c00355{bottom:404.663463pt;}
.y36_c00355{bottom:422.907200pt;}
.y17_c00355{bottom:431.464007pt;}
.y35_c00355{bottom:449.707067pt;}
.y16_c00355{bottom:458.343907pt;}
.y34_c00355{bottom:476.587067pt;}
.y15_c00355{bottom:485.144451pt;}
.y33_c00355{bottom:503.387067pt;}
.y14_c00355{bottom:512.024351pt;}
.y32_c00355{bottom:530.187067pt;}
.y13_c00355{bottom:538.824895pt;}
.y31_c00355{bottom:556.987067pt;}
.y12_c00355{bottom:565.704795pt;}
.y30_c00355{bottom:583.867067pt;}
.y11_c00355{bottom:592.584695pt;}
.y2f_c00355{bottom:610.667067pt;}
.y10_c00355{bottom:619.385239pt;}
.y2e_c00355{bottom:637.547067pt;}
.yf_c00355{bottom:646.265139pt;}
.y2d_c00355{bottom:664.347067pt;}
.ye_c00355{bottom:673.065683pt;}
.y2c_c00355{bottom:691.227067pt;}
.yd_c00355{bottom:699.945583pt;}
.y2b_c00355{bottom:718.027067pt;}
.yc_c00355{bottom:726.746127pt;}
.y2a_c00355{bottom:744.907067pt;}
.yb_c00355{bottom:753.626027pt;}
.y29_c00355{bottom:771.707067pt;}
.ya_c00355{bottom:780.426571pt;}
.y28_c00355{bottom:798.587067pt;}
.y9_c00355{bottom:807.306471pt;}
.y27_c00355{bottom:825.387067pt;}
.y8_c00355{bottom:834.107015pt;}
.y26_c00355{bottom:852.267067pt;}
.y7_c00355{bottom:860.986915pt;}
.y25_c00355{bottom:879.067067pt;}
.y6_c00355{bottom:887.787459pt;}
.y24_c00355{bottom:905.947067pt;}
.y5_c00355{bottom:914.667359pt;}
.y23_c00355{bottom:932.747067pt;}
.y4_c00355{bottom:959.547067pt;}
.y22_c00355{bottom:959.627067pt;}
.y3_c00355{bottom:986.427067pt;}
.h3_c00355{height:55.645234pt;}
.h1_c00355{height:55.797187pt;}
.h2_c00355{height:56.192266pt;}
.h0_c00355{height:1122.666667pt;}
.w0_c00355{width:793.333333pt;}
.x0_c00355{left:0.000000pt;}
.x2_c00355{left:73.520052pt;}
.x3_c00355{left:121.920000pt;}
.x1_c00355{left:383.760000pt;}
.x4_c00355{left:403.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c2ebb7ea79e79486f5c8ddcb.woff2')format("woff");}.ff1_c00356{font-family:ff1_c00356;line-height:1.106934;font-style:normal;font-weight:normal;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_ebd7c3d6cf6a225600b515a1.woff2')format("woff");}.ff2_c00356{font-family:ff2_c00356;line-height:1.104492;font-style:normal;font-weight:normal;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_a62eb56c5c896995cefad868.woff2')format("woff");}.ff3_c00356{font-family:ff3_c00356;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00356{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00356{vertical-align:0.000000px;}
.v1_c00356{vertical-align:32.041854px;}
.lsc_c00356{letter-spacing:-0.161046px;}
.ls5_c00356{letter-spacing:-0.063018px;}
.ls8_c00356{letter-spacing:-0.056016px;}
.lsa_c00356{letter-spacing:-0.042012px;}
.ls9_c00356{letter-spacing:-0.035010px;}
.lsd_c00356{letter-spacing:-0.028008px;}
.lse_c00356{letter-spacing:-0.021006px;}
.ls7_c00356{letter-spacing:-0.014004px;}
.lsf_c00356{letter-spacing:-0.007002px;}
.ls6_c00356{letter-spacing:0.000000px;}
.ls2_c00356{letter-spacing:0.007002px;}
.ls4_c00356{letter-spacing:0.014004px;}
.ls0_c00356{letter-spacing:0.023281px;}
.ls1_c00356{letter-spacing:0.035010px;}
.ls3_c00356{letter-spacing:0.098028px;}
.lsb_c00356{letter-spacing:0.231066px;}
.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:-19.423548px;}
.ws0_c00356{word-spacing:-12.967628px;}
.wsb_c00356{word-spacing:-0.245070px;}
.ws16_c00356{word-spacing:-0.007002px;}
.ws2_c00356{word-spacing:0.000000px;}
.ws8_c00356{word-spacing:0.049014px;}
.wsd_c00356{word-spacing:0.336096px;}
.wsc_c00356{word-spacing:0.504144px;}
.ws7_c00356{word-spacing:1.078308px;}
.ws13_c00356{word-spacing:2.177622px;}
.ws12_c00356{word-spacing:5.370534px;}
.ws14_c00356{word-spacing:10.068876px;}
.wsf_c00356{word-spacing:10.089882px;}
.ws10_c00356{word-spacing:10.453986px;}
.wse_c00356{word-spacing:14.774220px;}
.wsa_c00356{word-spacing:15.145326px;}
.ws9_c00356{word-spacing:15.789510px;}
.ws15_c00356{word-spacing:21.244068px;}
.ws11_c00356{word-spacing:23.022576px;}
.ws4_c00356{word-spacing:35.682192px;}
.ws3_c00356{word-spacing:36.718488px;}
.ws6_c00356{word-spacing:53.264214px;}
.ws5_c00356{word-spacing:54.020430px;}
._0_c00356{margin-left:-1.134324px;}
._1_c00356{width:1.428408px;}
._2_c00356{width:8.164332px;}
._3_c00356{width:14.410116px;}
.fc0_c00356{color:rgb(0,0,0);}
.fs1_c00356{font-size:46.562400px;}
.fs0_c00356{font-size:70.020000px;}
.y0_c00356{bottom:0.000000px;}
.y2_c00356{bottom:109.740968px;}
.y1_c00356{bottom:129.810450px;}
.y1e_c00356{bottom:175.886170px;}
.y1d_c00356{bottom:206.036782px;}
.y1c_c00356{bottom:236.276670px;}
.y1b_c00356{bottom:266.427282px;}
.y1a_c00356{bottom:296.667169px;}
.y19_c00356{bottom:326.817781px;}
.y18_c00356{bottom:357.057669px;}
.y17_c00356{bottom:387.208281px;}
.y16_c00356{bottom:417.358893px;}
.y15_c00356{bottom:447.509505px;}
.y14_c00356{bottom:477.749392px;}
.y13_c00356{bottom:507.900004px;}
.y12_c00356{bottom:538.139892px;}
.y11_c00356{bottom:564.600450px;}
.y10_c00356{bottom:847.379838px;}
.yf_c00356{bottom:877.530450px;}
.ya_c00356{bottom:898.409951px;}
.y9_c00356{bottom:928.560563px;}
.y8_c00356{bottom:958.799987px;}
.y7_c00356{bottom:988.950599px;}
.ye_c00356{bottom:1019.190450px;}
.y6_c00356{bottom:1019.190486px;}
.yd_c00356{bottom:1049.340450px;}
.y5_c00356{bottom:1049.341098px;}
.yc_c00356{bottom:1079.580450px;}
.y4_c00356{bottom:1079.580985px;}
.yb_c00356{bottom:1109.730450px;}
.y3_c00356{bottom:1109.731597px;}
.h2_c00356{height:62.600889px;}
.h1_c00356{height:62.771836px;}
.h5_c00356{height:63.216299px;}
.h3_c00356{height:73.784318px;}
.h4_c00356{height:74.028786px;}
.h0_c00356{height:1263.000000px;}
.w0_c00356{width:892.500000px;}
.x0_c00356{left:0.000000px;}
.x2_c00356{left:82.710059px;}
.x3_c00356{left:137.159361px;}
.x6_c00356{left:163.440094px;}
.x5_c00356{left:288.270000px;}
.x1_c00356{left:431.730000px;}
.x4_c00356{left:454.320000px;}
.x7_c00356{left:708.750000px;}
@media print{
.v0_c00356{vertical-align:0.000000pt;}
.v1_c00356{vertical-align:28.481648pt;}
.lsc_c00356{letter-spacing:-0.143152pt;}
.ls5_c00356{letter-spacing:-0.056016pt;}
.ls8_c00356{letter-spacing:-0.049792pt;}
.lsa_c00356{letter-spacing:-0.037344pt;}
.ls9_c00356{letter-spacing:-0.031120pt;}
.lsd_c00356{letter-spacing:-0.024896pt;}
.lse_c00356{letter-spacing:-0.018672pt;}
.ls7_c00356{letter-spacing:-0.012448pt;}
.lsf_c00356{letter-spacing:-0.006224pt;}
.ls6_c00356{letter-spacing:0.000000pt;}
.ls2_c00356{letter-spacing:0.006224pt;}
.ls4_c00356{letter-spacing:0.012448pt;}
.ls0_c00356{letter-spacing:0.020694pt;}
.ls1_c00356{letter-spacing:0.031120pt;}
.ls3_c00356{letter-spacing:0.087136pt;}
.lsb_c00356{letter-spacing:0.205392pt;}
.ws1_c00356{word-spacing:-17.265376pt;}
.ws0_c00356{word-spacing:-11.526781pt;}
.wsb_c00356{word-spacing:-0.217840pt;}
.ws16_c00356{word-spacing:-0.006224pt;}
.ws2_c00356{word-spacing:0.000000pt;}
.ws8_c00356{word-spacing:0.043568pt;}
.wsd_c00356{word-spacing:0.298752pt;}
.wsc_c00356{word-spacing:0.448128pt;}
.ws7_c00356{word-spacing:0.958496pt;}
.ws13_c00356{word-spacing:1.935664pt;}
.ws12_c00356{word-spacing:4.773808pt;}
.ws14_c00356{word-spacing:8.950112pt;}
.wsf_c00356{word-spacing:8.968784pt;}
.ws10_c00356{word-spacing:9.292432pt;}
.wse_c00356{word-spacing:13.132640pt;}
.wsa_c00356{word-spacing:13.462512pt;}
.ws9_c00356{word-spacing:14.035120pt;}
.ws15_c00356{word-spacing:18.883616pt;}
.ws11_c00356{word-spacing:20.464512pt;}
.ws4_c00356{word-spacing:31.717504pt;}
.ws3_c00356{word-spacing:32.638656pt;}
.ws6_c00356{word-spacing:47.345968pt;}
.ws5_c00356{word-spacing:48.018160pt;}
._0_c00356{margin-left:-1.008288pt;}
._1_c00356{width:1.269696pt;}
._2_c00356{width:7.257184pt;}
._3_c00356{width:12.808992pt;}
.fs1_c00356{font-size:41.388800pt;}
.fs0_c00356{font-size:62.240000pt;}
.y0_c00356{bottom:0.000000pt;}
.y2_c00356{bottom:97.547527pt;}
.y1_c00356{bottom:115.387067pt;}
.y1e_c00356{bottom:156.343263pt;}
.y1d_c00356{bottom:183.143807pt;}
.y1c_c00356{bottom:210.023707pt;}
.y1b_c00356{bottom:236.824251pt;}
.y1a_c00356{bottom:263.704151pt;}
.y19_c00356{bottom:290.504695pt;}
.y18_c00356{bottom:317.384595pt;}
.y17_c00356{bottom:344.185139pt;}
.y16_c00356{bottom:370.985683pt;}
.y15_c00356{bottom:397.786227pt;}
.y14_c00356{bottom:424.666127pt;}
.y13_c00356{bottom:451.466671pt;}
.y12_c00356{bottom:478.346571pt;}
.y11_c00356{bottom:501.867067pt;}
.y10_c00356{bottom:753.226523pt;}
.yf_c00356{bottom:780.027067pt;}
.ya_c00356{bottom:798.586623pt;}
.y9_c00356{bottom:825.387167pt;}
.y8_c00356{bottom:852.266655pt;}
.y7_c00356{bottom:879.067199pt;}
.ye_c00356{bottom:905.947067pt;}
.y6_c00356{bottom:905.947099pt;}
.yd_c00356{bottom:932.747067pt;}
.y5_c00356{bottom:932.747643pt;}
.yc_c00356{bottom:959.627067pt;}
.y4_c00356{bottom:959.627543pt;}
.yb_c00356{bottom:986.427067pt;}
.y3_c00356{bottom:986.428087pt;}
.h2_c00356{height:55.645234pt;}
.h1_c00356{height:55.797187pt;}
.h5_c00356{height:56.192266pt;}
.h3_c00356{height:65.586060pt;}
.h4_c00356{height:65.803366pt;}
.h0_c00356{height:1122.666667pt;}
.w0_c00356{width:793.333333pt;}
.x0_c00356{left:0.000000pt;}
.x2_c00356{left:73.520052pt;}
.x3_c00356{left:121.919432pt;}
.x6_c00356{left:145.280084pt;}
.x5_c00356{left:256.240000pt;}
.x1_c00356{left:383.760000pt;}
.x4_c00356{left:403.840000pt;}
.x7_c00356{left:630.000000pt;}
}





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

.ir_c00357:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00357{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00357;src:url('chunks/assets/font_8709b349947370beebef8e24.woff2')format("woff");}.ff1_c00357{font-family:ff1_c00357;line-height:1.106934;font-style:normal;font-weight:normal;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_9f27c3b2293508298487e38a.woff2')format("woff");}.ff2_c00357{font-family:ff2_c00357;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00357;src:url('chunks/assets/font_d827560adcdfc915cc244457.woff2')format("woff");}.ff3_c00357{font-family:ff3_c00357;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00357{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00357{vertical-align:0.000000px;}
.v1_c00357{vertical-align:32.414112px;}
.ls6_c00357{letter-spacing:-0.063018px;}
.ls8_c00357{letter-spacing:-0.049014px;}
.ls9_c00357{letter-spacing:-0.028008px;}
.lsb_c00357{letter-spacing:-0.021006px;}
.lsc_c00357{letter-spacing:-0.014004px;}
.lsa_c00357{letter-spacing:-0.007002px;}
.ls7_c00357{letter-spacing:0.000000px;}
.ls2_c00357{letter-spacing:0.007002px;}
.ls4_c00357{letter-spacing:0.014004px;}
.ls5_c00357{letter-spacing:0.023281px;}
.ls3_c00357{letter-spacing:0.028008px;}
.ls1_c00357{letter-spacing:0.042012px;}
.ls0_c00357{letter-spacing:0.105030px;}
.sc__c00357{text-shadow:none;}
.sc0_c00357{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00357{-webkit-text-stroke:0px transparent;}
.sc0_c00357{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00357{word-spacing:-19.570590px;}
.ws1_c00357{word-spacing:-12.967628px;}
.ws15_c00357{word-spacing:-0.042012px;}
.ws2_c00357{word-spacing:0.000000px;}
.ws7_c00357{word-spacing:0.343098px;}
.ws3_c00357{word-spacing:0.392112px;}
.ws6_c00357{word-spacing:1.071306px;}
.ws14_c00357{word-spacing:2.149614px;}
.ws13_c00357{word-spacing:2.520720px;}
.ws10_c00357{word-spacing:9.676764px;}
.ws11_c00357{word-spacing:10.082880px;}
.ws9_c00357{word-spacing:11.175192px;}
.wsb_c00357{word-spacing:12.183480px;}
.wsa_c00357{word-spacing:17.645040px;}
.ws12_c00357{word-spacing:20.494854px;}
.wse_c00357{word-spacing:21.951270px;}
.wsf_c00357{word-spacing:22.280364px;}
.wsd_c00357{word-spacing:22.301370px;}
.wsc_c00357{word-spacing:22.315374px;}
.ws8_c00357{word-spacing:23.407686px;}
.ws4_c00357{word-spacing:30.612744px;}
.ws5_c00357{word-spacing:34.911972px;}
._2_c00357{margin-left:-1.316376px;}
._1_c00357{width:1.176336px;}
._0_c00357{width:7.926264px;}
.fc0_c00357{color:rgb(0,0,0);}
.fs1_c00357{font-size:46.562400px;}
.fs0_c00357{font-size:70.020000px;}
.y0_c00357{bottom:0.000000px;}
.y2_c00357{bottom:109.740968px;}
.y1_c00357{bottom:129.810450px;}
.y19_c00357{bottom:178.589338px;}
.y18_c00357{bottom:208.739951px;}
.y17_c00357{bottom:238.979838px;}
.y16_c00357{bottom:269.126922px;}
.y15_c00357{bottom:299.366810px;}
.y14_c00357{bottom:329.517422px;}
.y13_c00357{bottom:359.757309px;}
.y12_c00357{bottom:389.907921px;}
.y11_c00357{bottom:420.058533px;}
.y10_c00357{bottom:450.298421px;}
.yf_c00357{bottom:480.449033px;}
.ye_c00357{bottom:510.688920px;}
.yd_c00357{bottom:540.839532px;}
.yc_c00357{bottom:571.079420px;}
.yb_c00357{bottom:601.230032px;}
.ya_c00357{bottom:631.469919px;}
.y9_c00357{bottom:661.620531px;}
.y8_c00357{bottom:691.860419px;}
.y7_c00357{bottom:722.011031px;}
.y6_c00357{bottom:752.250918px;}
.y5_c00357{bottom:778.620450px;}
.y4_c00357{bottom:1079.580985px;}
.y3_c00357{bottom:1109.731597px;}
.h3_c00357{height:62.600889px;}
.h1_c00357{height:62.771836px;}
.h2_c00357{height:63.216299px;}
.h4_c00357{height:74.042898px;}
.h0_c00357{height:1263.000000px;}
.w0_c00357{width:892.500000px;}
.x0_c00357{left:0.000000px;}
.x2_c00357{left:82.710059px;}
.x3_c00357{left:137.159361px;}
.x4_c00357{left:163.439618px;}
.x1_c00357{left:431.730000px;}
.x5_c00357{left:717.120000px;}
@media print{
.v0_c00357{vertical-align:0.000000pt;}
.v1_c00357{vertical-align:28.812544pt;}
.ls6_c00357{letter-spacing:-0.056016pt;}
.ls8_c00357{letter-spacing:-0.043568pt;}
.ls9_c00357{letter-spacing:-0.024896pt;}
.lsb_c00357{letter-spacing:-0.018672pt;}
.lsc_c00357{letter-spacing:-0.012448pt;}
.lsa_c00357{letter-spacing:-0.006224pt;}
.ls7_c00357{letter-spacing:0.000000pt;}
.ls2_c00357{letter-spacing:0.006224pt;}
.ls4_c00357{letter-spacing:0.012448pt;}
.ls5_c00357{letter-spacing:0.020694pt;}
.ls3_c00357{letter-spacing:0.024896pt;}
.ls1_c00357{letter-spacing:0.037344pt;}
.ls0_c00357{letter-spacing:0.093360pt;}
.ws0_c00357{word-spacing:-17.396080pt;}
.ws1_c00357{word-spacing:-11.526781pt;}
.ws15_c00357{word-spacing:-0.037344pt;}
.ws2_c00357{word-spacing:0.000000pt;}
.ws7_c00357{word-spacing:0.304976pt;}
.ws3_c00357{word-spacing:0.348544pt;}
.ws6_c00357{word-spacing:0.952272pt;}
.ws14_c00357{word-spacing:1.910768pt;}
.ws13_c00357{word-spacing:2.240640pt;}
.ws10_c00357{word-spacing:8.601568pt;}
.ws11_c00357{word-spacing:8.962560pt;}
.ws9_c00357{word-spacing:9.933504pt;}
.wsb_c00357{word-spacing:10.829760pt;}
.wsa_c00357{word-spacing:15.684480pt;}
.ws12_c00357{word-spacing:18.217648pt;}
.wse_c00357{word-spacing:19.512240pt;}
.wsf_c00357{word-spacing:19.804768pt;}
.wsd_c00357{word-spacing:19.823440pt;}
.wsc_c00357{word-spacing:19.835888pt;}
.ws8_c00357{word-spacing:20.806832pt;}
.ws4_c00357{word-spacing:27.211328pt;}
.ws5_c00357{word-spacing:31.032864pt;}
._2_c00357{margin-left:-1.170112pt;}
._1_c00357{width:1.045632pt;}
._0_c00357{width:7.045568pt;}
.fs1_c00357{font-size:41.388800pt;}
.fs0_c00357{font-size:62.240000pt;}
.y0_c00357{bottom:0.000000pt;}
.y2_c00357{bottom:97.547527pt;}
.y1_c00357{bottom:115.387067pt;}
.y19_c00357{bottom:158.746079pt;}
.y18_c00357{bottom:185.546623pt;}
.y17_c00357{bottom:212.426523pt;}
.y16_c00357{bottom:239.223931pt;}
.y15_c00357{bottom:266.103831pt;}
.y14_c00357{bottom:292.904375pt;}
.y13_c00357{bottom:319.784275pt;}
.y12_c00357{bottom:346.584819pt;}
.y11_c00357{bottom:373.385363pt;}
.y10_c00357{bottom:400.265263pt;}
.yf_c00357{bottom:427.065807pt;}
.ye_c00357{bottom:453.945707pt;}
.yd_c00357{bottom:480.746251pt;}
.yc_c00357{bottom:507.626151pt;}
.yb_c00357{bottom:534.426695pt;}
.ya_c00357{bottom:561.306595pt;}
.y9_c00357{bottom:588.107139pt;}
.y8_c00357{bottom:614.987039pt;}
.y7_c00357{bottom:641.787583pt;}
.y6_c00357{bottom:668.667483pt;}
.y5_c00357{bottom:692.107067pt;}
.y4_c00357{bottom:959.627543pt;}
.y3_c00357{bottom:986.428087pt;}
.h3_c00357{height:55.645234pt;}
.h1_c00357{height:55.797187pt;}
.h2_c00357{height:56.192266pt;}
.h4_c00357{height:65.815910pt;}
.h0_c00357{height:1122.666667pt;}
.w0_c00357{width:793.333333pt;}
.x0_c00357{left:0.000000pt;}
.x2_c00357{left:73.520052pt;}
.x3_c00357{left:121.919432pt;}
.x4_c00357{left:145.279660pt;}
.x1_c00357{left:383.760000pt;}
.x5_c00357{left:637.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e49a8aa4988d327b4d570f4c.woff2')format("woff");}.ff1_c00358{font-family:ff1_c00358;line-height:1.106934;font-style:normal;font-weight:normal;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_2d6bba8ec91c5bc78108610d.woff2')format("woff");}.ff2_c00358{font-family:ff2_c00358;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00358{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00358{vertical-align:0.000000px;}
.v1_c00358{vertical-align:32.041854px;}
.lsb_c00358{letter-spacing:-0.077022px;}
.ls6_c00358{letter-spacing:-0.063018px;}
.ls9_c00358{letter-spacing:-0.028008px;}
.lsa_c00358{letter-spacing:-0.021006px;}
.ls8_c00358{letter-spacing:-0.014004px;}
.lsc_c00358{letter-spacing:-0.007002px;}
.ls7_c00358{letter-spacing:0.000000px;}
.ls3_c00358{letter-spacing:0.007002px;}
.ls0_c00358{letter-spacing:0.014004px;}
.ls1_c00358{letter-spacing:0.021006px;}
.ls2_c00358{letter-spacing:0.023281px;}
.ls4_c00358{letter-spacing:0.035010px;}
.ls5_c00358{letter-spacing:0.042012px;}
.sc__c00358{text-shadow:none;}
.sc0_c00358{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00358{-webkit-text-stroke:0px transparent;}
.sc0_c00358{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00358{word-spacing:-12.967628px;}
.ws3_c00358{word-spacing:-0.028008px;}
.ws20_c00358{word-spacing:-0.014004px;}
.ws1_c00358{word-spacing:0.000000px;}
.ws11_c00358{word-spacing:0.014004px;}
.ws8_c00358{word-spacing:0.322092px;}
.ws2_c00358{word-spacing:0.721206px;}
.wsb_c00358{word-spacing:1.449414px;}
.ws7_c00358{word-spacing:2.163618px;}
.ws14_c00358{word-spacing:3.220920px;}
.ws1e_c00358{word-spacing:3.543012px;}
.ws1c_c00358{word-spacing:5.748642px;}
.ws1d_c00358{word-spacing:5.811660px;}
.wsc_c00358{word-spacing:6.847956px;}
.ws19_c00358{word-spacing:8.990568px;}
.ws6_c00358{word-spacing:8.997570px;}
.ws18_c00358{word-spacing:9.333666px;}
.wsf_c00358{word-spacing:11.945412px;}
.wsa_c00358{word-spacing:12.246498px;}
.ws10_c00358{word-spacing:14.039010px;}
.ws16_c00358{word-spacing:18.310230px;}
.ws1f_c00358{word-spacing:19.801656px;}
.ws1a_c00358{word-spacing:20.886966px;}
.ws1b_c00358{word-spacing:20.893968px;}
.wsd_c00358{word-spacing:21.216060px;}
.wse_c00358{word-spacing:23.771790px;}
.ws12_c00358{word-spacing:24.836094px;}
.ws13_c00358{word-spacing:25.207200px;}
.ws17_c00358{word-spacing:25.543296px;}
.ws9_c00358{word-spacing:28.806228px;}
.ws5_c00358{word-spacing:30.227634px;}
.ws4_c00358{word-spacing:30.255642px;}
.ws15_c00358{word-spacing:49.686192px;}
._0_c00358{margin-left:-1.218348px;}
._1_c00358{width:1.260360px;}
.fc0_c00358{color:rgb(0,0,0);}
.fs1_c00358{font-size:46.562400px;}
.fs0_c00358{font-size:70.020000px;}
.y0_c00358{bottom:0.000000px;}
.y2_c00358{bottom:109.740968px;}
.y1_c00358{bottom:129.810450px;}
.y23_c00358{bottom:163.739451px;}
.y22_c00358{bottom:193.890063px;}
.y21_c00358{bottom:224.129951px;}
.y20_c00358{bottom:254.280563px;}
.y1f_c00358{bottom:284.516603px;}
.y1e_c00358{bottom:314.667215px;}
.y1d_c00358{bottom:344.907102px;}
.y1c_c00358{bottom:375.057714px;}
.y1b_c00358{bottom:405.297602px;}
.y1a_c00358{bottom:435.448214px;}
.y19_c00358{bottom:465.688101px;}
.y18_c00358{bottom:495.838713px;}
.y17_c00358{bottom:526.078601px;}
.y16_c00358{bottom:556.229213px;}
.y15_c00358{bottom:586.469100px;}
.y14_c00358{bottom:616.528686px;}
.y13_c00358{bottom:646.768574px;}
.y12_c00358{bottom:676.919186px;}
.y11_c00358{bottom:707.159073px;}
.y10_c00358{bottom:737.309685px;}
.yf_c00358{bottom:767.549573px;}
.ye_c00358{bottom:797.700185px;}
.yd_c00358{bottom:827.940072px;}
.yc_c00358{bottom:858.090684px;}
.yb_c00358{bottom:888.330572px;}
.ya_c00358{bottom:908.491080px;}
.y9_c00358{bottom:928.560563px;}
.y8_c00358{bottom:958.799987px;}
.y7_c00358{bottom:988.950599px;}
.y6_c00358{bottom:1019.190486px;}
.y5_c00358{bottom:1049.341098px;}
.y4_c00358{bottom:1079.580985px;}
.y3_c00358{bottom:1109.731597px;}
.h2_c00358{height:62.600889px;}
.h1_c00358{height:62.771836px;}
.h3_c00358{height:73.670640px;}
.h4_c00358{height:73.684176px;}
.h0_c00358{height:1263.000000px;}
.w0_c00358{width:892.500000px;}
.x0_c00358{left:0.000000px;}
.x2_c00358{left:82.710059px;}
.x3_c00358{left:137.159361px;}
.x1_c00358{left:431.730000px;}
@media print{
.v0_c00358{vertical-align:0.000000pt;}
.v1_c00358{vertical-align:28.481648pt;}
.lsb_c00358{letter-spacing:-0.068464pt;}
.ls6_c00358{letter-spacing:-0.056016pt;}
.ls9_c00358{letter-spacing:-0.024896pt;}
.lsa_c00358{letter-spacing:-0.018672pt;}
.ls8_c00358{letter-spacing:-0.012448pt;}
.lsc_c00358{letter-spacing:-0.006224pt;}
.ls7_c00358{letter-spacing:0.000000pt;}
.ls3_c00358{letter-spacing:0.006224pt;}
.ls0_c00358{letter-spacing:0.012448pt;}
.ls1_c00358{letter-spacing:0.018672pt;}
.ls2_c00358{letter-spacing:0.020694pt;}
.ls4_c00358{letter-spacing:0.031120pt;}
.ls5_c00358{letter-spacing:0.037344pt;}
.ws0_c00358{word-spacing:-11.526781pt;}
.ws3_c00358{word-spacing:-0.024896pt;}
.ws20_c00358{word-spacing:-0.012448pt;}
.ws1_c00358{word-spacing:0.000000pt;}
.ws11_c00358{word-spacing:0.012448pt;}
.ws8_c00358{word-spacing:0.286304pt;}
.ws2_c00358{word-spacing:0.641072pt;}
.wsb_c00358{word-spacing:1.288368pt;}
.ws7_c00358{word-spacing:1.923216pt;}
.ws14_c00358{word-spacing:2.863040pt;}
.ws1e_c00358{word-spacing:3.149344pt;}
.ws1c_c00358{word-spacing:5.109904pt;}
.ws1d_c00358{word-spacing:5.165920pt;}
.wsc_c00358{word-spacing:6.087072pt;}
.ws19_c00358{word-spacing:7.991616pt;}
.ws6_c00358{word-spacing:7.997840pt;}
.ws18_c00358{word-spacing:8.296592pt;}
.wsf_c00358{word-spacing:10.618144pt;}
.wsa_c00358{word-spacing:10.885776pt;}
.ws10_c00358{word-spacing:12.479120pt;}
.ws16_c00358{word-spacing:16.275760pt;}
.ws1f_c00358{word-spacing:17.601472pt;}
.ws1a_c00358{word-spacing:18.566192pt;}
.ws1b_c00358{word-spacing:18.572416pt;}
.wsd_c00358{word-spacing:18.858720pt;}
.wse_c00358{word-spacing:21.130480pt;}
.ws12_c00358{word-spacing:22.076528pt;}
.ws13_c00358{word-spacing:22.406400pt;}
.ws17_c00358{word-spacing:22.705152pt;}
.ws9_c00358{word-spacing:25.605536pt;}
.ws5_c00358{word-spacing:26.869008pt;}
.ws4_c00358{word-spacing:26.893904pt;}
.ws15_c00358{word-spacing:44.165504pt;}
._0_c00358{margin-left:-1.082976pt;}
._1_c00358{width:1.120320pt;}
.fs1_c00358{font-size:41.388800pt;}
.fs0_c00358{font-size:62.240000pt;}
.y0_c00358{bottom:0.000000pt;}
.y2_c00358{bottom:97.547527pt;}
.y1_c00358{bottom:115.387067pt;}
.y23_c00358{bottom:145.546179pt;}
.y22_c00358{bottom:172.346723pt;}
.y21_c00358{bottom:199.226623pt;}
.y20_c00358{bottom:226.027167pt;}
.y1f_c00358{bottom:252.903647pt;}
.y1e_c00358{bottom:279.704191pt;}
.y1d_c00358{bottom:306.584091pt;}
.y1c_c00358{bottom:333.384635pt;}
.y1b_c00358{bottom:360.264535pt;}
.y1a_c00358{bottom:387.065079pt;}
.y19_c00358{bottom:413.944979pt;}
.y18_c00358{bottom:440.745523pt;}
.y17_c00358{bottom:467.625423pt;}
.y16_c00358{bottom:494.425967pt;}
.y15_c00358{bottom:521.305867pt;}
.y14_c00358{bottom:548.025499pt;}
.y13_c00358{bottom:574.905399pt;}
.y12_c00358{bottom:601.705943pt;}
.y11_c00358{bottom:628.585843pt;}
.y10_c00358{bottom:655.386387pt;}
.yf_c00358{bottom:682.266287pt;}
.ye_c00358{bottom:709.066831pt;}
.yd_c00358{bottom:735.946731pt;}
.yc_c00358{bottom:762.747275pt;}
.yb_c00358{bottom:789.627175pt;}
.ya_c00358{bottom:807.547627pt;}
.y9_c00358{bottom:825.387167pt;}
.y8_c00358{bottom:852.266655pt;}
.y7_c00358{bottom:879.067199pt;}
.y6_c00358{bottom:905.947099pt;}
.y5_c00358{bottom:932.747643pt;}
.y4_c00358{bottom:959.627543pt;}
.y3_c00358{bottom:986.428087pt;}
.h2_c00358{height:55.645234pt;}
.h1_c00358{height:55.797187pt;}
.h3_c00358{height:65.485014pt;}
.h4_c00358{height:65.497046pt;}
.h0_c00358{height:1122.666667pt;}
.w0_c00358{width:793.333333pt;}
.x0_c00358{left:0.000000pt;}
.x2_c00358{left:73.520052pt;}
.x3_c00358{left:121.919432pt;}
.x1_c00358{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ca5f2ec1ff007b91b12e6e96.woff2')format("woff");}.ff1_c00359{font-family:ff1_c00359;line-height:1.106934;font-style:normal;font-weight:normal;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_60d263acb3a06cb1cdef2e5c.woff2')format("woff");}.ff2_c00359{font-family:ff2_c00359;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00359{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00359{vertical-align:0.000000px;}
.ls2_c00359{letter-spacing:-0.063018px;}
.ls4_c00359{letter-spacing:-0.042012px;}
.ls8_c00359{letter-spacing:-0.028008px;}
.ls5_c00359{letter-spacing:-0.021006px;}
.ls6_c00359{letter-spacing:-0.014004px;}
.ls7_c00359{letter-spacing:-0.007002px;}
.ls3_c00359{letter-spacing:0.000000px;}
.ls1_c00359{letter-spacing:0.007002px;}
.ls0_c00359{letter-spacing:0.098028px;}
.sc__c00359{text-shadow:none;}
.sc0_c00359{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00359{-webkit-text-stroke:0px transparent;}
.sc0_c00359{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00359{word-spacing:0.000000px;}
.ws1_c00359{word-spacing:0.028008px;}
.ws10_c00359{word-spacing:0.364104px;}
.ws2_c00359{word-spacing:0.385110px;}
.ws7_c00359{word-spacing:1.064304px;}
.wsc_c00359{word-spacing:2.534724px;}
.wsb_c00359{word-spacing:2.884824px;}
.wse_c00359{word-spacing:4.684338px;}
.ws6_c00359{word-spacing:5.755644px;}
.ws5_c00359{word-spacing:6.476850px;}
.ws4_c00359{word-spacing:6.483852px;}
.wsd_c00359{word-spacing:8.276364px;}
.wsf_c00359{word-spacing:8.983566px;}
.ws8_c00359{word-spacing:9.375678px;}
.wsa_c00359{word-spacing:11.896398px;}
.ws9_c00359{word-spacing:21.251070px;}
.ws3_c00359{word-spacing:36.340380px;}
._2_c00359{margin-left:-1.169334px;}
._0_c00359{width:1.001286px;}
._1_c00359{width:7.926264px;}
._3_c00359{width:35.682192px;}
.fc0_c00359{color:rgb(0,0,0);}
.fs0_c00359{font-size:70.020000px;}
.y0_c00359{bottom:0.000000px;}
.y2_c00359{bottom:109.740968px;}
.y1_c00359{bottom:129.810450px;}
.y16_c00359{bottom:228.180450px;}
.y15_c00359{bottom:278.850450px;}
.y14_c00359{bottom:309.180450px;}
.y13_c00359{bottom:339.330450px;}
.y12_c00359{bottom:369.570450px;}
.y11_c00359{bottom:399.720450px;}
.y10_c00359{bottom:429.960600px;}
.yf_c00359{bottom:460.110600px;}
.ye_c00359{bottom:490.260450px;}
.yd_c00359{bottom:520.410450px;}
.yc_c00359{bottom:550.650450px;}
.yb_c00359{bottom:580.800450px;}
.ya_c00359{bottom:611.040450px;}
.y9_c00359{bottom:641.190450px;}
.y8_c00359{bottom:671.430450px;}
.y7_c00359{bottom:718.230450px;}
.y6_c00359{bottom:1019.190450px;}
.y5_c00359{bottom:1049.340450px;}
.y4_c00359{bottom:1079.580450px;}
.y3_c00359{bottom:1109.730450px;}
.h1_c00359{height:62.771836px;}
.h2_c00359{height:63.216299px;}
.h0_c00359{height:1263.000000px;}
.w0_c00359{width:892.500000px;}
.x0_c00359{left:0.000000px;}
.x2_c00359{left:82.710059px;}
.x5_c00359{left:137.160000px;}
.x6_c00359{left:163.440000px;}
.x4_c00359{left:343.260000px;}
.x1_c00359{left:431.730000px;}
.x3_c00359{left:446.400000px;}
.x7_c00359{left:734.040000px;}
@media print{
.v0_c00359{vertical-align:0.000000pt;}
.ls2_c00359{letter-spacing:-0.056016pt;}
.ls4_c00359{letter-spacing:-0.037344pt;}
.ls8_c00359{letter-spacing:-0.024896pt;}
.ls5_c00359{letter-spacing:-0.018672pt;}
.ls6_c00359{letter-spacing:-0.012448pt;}
.ls7_c00359{letter-spacing:-0.006224pt;}
.ls3_c00359{letter-spacing:0.000000pt;}
.ls1_c00359{letter-spacing:0.006224pt;}
.ls0_c00359{letter-spacing:0.087136pt;}
.ws0_c00359{word-spacing:0.000000pt;}
.ws1_c00359{word-spacing:0.024896pt;}
.ws10_c00359{word-spacing:0.323648pt;}
.ws2_c00359{word-spacing:0.342320pt;}
.ws7_c00359{word-spacing:0.946048pt;}
.wsc_c00359{word-spacing:2.253088pt;}
.wsb_c00359{word-spacing:2.564288pt;}
.wse_c00359{word-spacing:4.163856pt;}
.ws6_c00359{word-spacing:5.116128pt;}
.ws5_c00359{word-spacing:5.757200pt;}
.ws4_c00359{word-spacing:5.763424pt;}
.wsd_c00359{word-spacing:7.356768pt;}
.wsf_c00359{word-spacing:7.985392pt;}
.ws8_c00359{word-spacing:8.333936pt;}
.wsa_c00359{word-spacing:10.574576pt;}
.ws9_c00359{word-spacing:18.889840pt;}
.ws3_c00359{word-spacing:32.302560pt;}
._2_c00359{margin-left:-1.039408pt;}
._0_c00359{width:0.890032pt;}
._1_c00359{width:7.045568pt;}
._3_c00359{width:31.717504pt;}
.fs0_c00359{font-size:62.240000pt;}
.y0_c00359{bottom:0.000000pt;}
.y2_c00359{bottom:97.547527pt;}
.y1_c00359{bottom:115.387067pt;}
.y16_c00359{bottom:202.827067pt;}
.y15_c00359{bottom:247.867067pt;}
.y14_c00359{bottom:274.827067pt;}
.y13_c00359{bottom:301.627067pt;}
.y12_c00359{bottom:328.507067pt;}
.y11_c00359{bottom:355.307067pt;}
.y10_c00359{bottom:382.187200pt;}
.yf_c00359{bottom:408.987200pt;}
.ye_c00359{bottom:435.787067pt;}
.yd_c00359{bottom:462.587067pt;}
.yc_c00359{bottom:489.467067pt;}
.yb_c00359{bottom:516.267067pt;}
.ya_c00359{bottom:543.147067pt;}
.y9_c00359{bottom:569.947067pt;}
.y8_c00359{bottom:596.827067pt;}
.y7_c00359{bottom:638.427067pt;}
.y6_c00359{bottom:905.947067pt;}
.y5_c00359{bottom:932.747067pt;}
.y4_c00359{bottom:959.627067pt;}
.y3_c00359{bottom:986.427067pt;}
.h1_c00359{height:55.797187pt;}
.h2_c00359{height:56.192266pt;}
.h0_c00359{height:1122.666667pt;}
.w0_c00359{width:793.333333pt;}
.x0_c00359{left:0.000000pt;}
.x2_c00359{left:73.520052pt;}
.x5_c00359{left:121.920000pt;}
.x6_c00359{left:145.280000pt;}
.x4_c00359{left:305.120000pt;}
.x1_c00359{left:383.760000pt;}
.x3_c00359{left:396.800000pt;}
.x7_c00359{left:652.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8e99ef09aed955d37204c392.woff2')format("woff");}.ff1_c00360{font-family:ff1_c00360;line-height:1.106934;font-style:normal;font-weight:normal;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_d4a14fed43d01ba019b98eab.woff2')format("woff");}.ff2_c00360{font-family:ff2_c00360;line-height:1.104492;font-style:normal;font-weight:normal;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_e096f08cf767ceff095c5da5.woff2')format("woff");}.ff3_c00360{font-family:ff3_c00360;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00360{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00360{vertical-align:0.000000px;}
.v1_c00360{vertical-align:32.400000px;}
.lsb_c00360{letter-spacing:-0.335249px;}
.lsc_c00360{letter-spacing:-0.280080px;}
.ls3_c00360{letter-spacing:-0.063018px;}
.ls9_c00360{letter-spacing:-0.056016px;}
.ls7_c00360{letter-spacing:-0.042012px;}
.lsa_c00360{letter-spacing:-0.035010px;}
.ls5_c00360{letter-spacing:-0.028008px;}
.ls8_c00360{letter-spacing:-0.021006px;}
.ls6_c00360{letter-spacing:-0.007002px;}
.ls4_c00360{letter-spacing:0.000000px;}
.ls2_c00360{letter-spacing:0.014004px;}
.ls0_c00360{letter-spacing:0.021006px;}
.ls1_c00360{letter-spacing:0.023281px;}
.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:-12.967628px;}
.ws0_c00360{word-spacing:-12.609098px;}
.ws8_c00360{word-spacing:-0.035010px;}
.ws10_c00360{word-spacing:-0.028008px;}
.wsc_c00360{word-spacing:-0.014004px;}
.ws5_c00360{word-spacing:-0.007002px;}
.ws2_c00360{word-spacing:0.000000px;}
.wsd_c00360{word-spacing:0.007002px;}
.wsa_c00360{word-spacing:0.021006px;}
.ws11_c00360{word-spacing:0.028008px;}
.ws9_c00360{word-spacing:0.042012px;}
.ws4_c00360{word-spacing:0.343098px;}
.wsb_c00360{word-spacing:0.350100px;}
.ws7_c00360{word-spacing:0.364104px;}
.wsf_c00360{word-spacing:0.371106px;}
.wse_c00360{word-spacing:0.378108px;}
.ws6_c00360{word-spacing:0.385110px;}
.ws12_c00360{word-spacing:0.406116px;}
.ws3_c00360{word-spacing:27.370818px;}
._1_c00360{margin-left:-1.351386px;}
._0_c00360{width:1.036296px;}
._2_c00360{width:7.926264px;}
.fc0_c00360{color:rgb(0,0,0);}
.fs1_c00360{font-size:46.562400px;}
.fs0_c00360{font-size:70.020000px;}
.y0_c00360{bottom:0.000000px;}
.y2_c00360{bottom:109.740968px;}
.y1_c00360{bottom:129.810450px;}
.y17_c00360{bottom:465.060450px;}
.y16_c00360{bottom:495.210600px;}
.y15_c00360{bottom:525.450600px;}
.y14_c00360{bottom:555.600450px;}
.y13_c00360{bottom:585.840450px;}
.y12_c00360{bottom:615.990450px;}
.y11_c00360{bottom:646.230450px;}
.y10_c00360{bottom:676.380450px;}
.yf_c00360{bottom:706.620450px;}
.ye_c00360{bottom:736.770450px;}
.yd_c00360{bottom:767.010450px;}
.yc_c00360{bottom:797.160450px;}
.yb_c00360{bottom:827.400450px;}
.ya_c00360{bottom:857.640450px;}
.y9_c00360{bottom:887.790600px;}
.y8_c00360{bottom:917.940450px;}
.y7_c00360{bottom:948.090450px;}
.y6_c00360{bottom:998.670450px;}
.y5_c00360{bottom:1029.000450px;}
.y4_c00360{bottom:1059.150450px;}
.y3_c00360{bottom:1109.640450px;}
.h2_c00360{height:62.600889px;}
.h1_c00360{height:62.771836px;}
.h4_c00360{height:63.216299px;}
.h5_c00360{height:74.028186px;}
.h3_c00360{height:74.028786px;}
.h0_c00360{height:1263.000000px;}
.w0_c00360{width:892.500000px;}
.x0_c00360{left:0.000000px;}
.x2_c00360{left:82.710059px;}
.x3_c00360{left:137.160000px;}
.x5_c00360{left:163.440000px;}
.x4_c00360{left:189.630000px;}
.x1_c00360{left:431.730000px;}
@media print{
.v0_c00360{vertical-align:0.000000pt;}
.v1_c00360{vertical-align:28.800000pt;}
.lsb_c00360{letter-spacing:-0.297999pt;}
.lsc_c00360{letter-spacing:-0.248960pt;}
.ls3_c00360{letter-spacing:-0.056016pt;}
.ls9_c00360{letter-spacing:-0.049792pt;}
.ls7_c00360{letter-spacing:-0.037344pt;}
.lsa_c00360{letter-spacing:-0.031120pt;}
.ls5_c00360{letter-spacing:-0.024896pt;}
.ls8_c00360{letter-spacing:-0.018672pt;}
.ls6_c00360{letter-spacing:-0.006224pt;}
.ls4_c00360{letter-spacing:0.000000pt;}
.ls2_c00360{letter-spacing:0.012448pt;}
.ls0_c00360{letter-spacing:0.018672pt;}
.ls1_c00360{letter-spacing:0.020694pt;}
.ws1_c00360{word-spacing:-11.526781pt;}
.ws0_c00360{word-spacing:-11.208087pt;}
.ws8_c00360{word-spacing:-0.031120pt;}
.ws10_c00360{word-spacing:-0.024896pt;}
.wsc_c00360{word-spacing:-0.012448pt;}
.ws5_c00360{word-spacing:-0.006224pt;}
.ws2_c00360{word-spacing:0.000000pt;}
.wsd_c00360{word-spacing:0.006224pt;}
.wsa_c00360{word-spacing:0.018672pt;}
.ws11_c00360{word-spacing:0.024896pt;}
.ws9_c00360{word-spacing:0.037344pt;}
.ws4_c00360{word-spacing:0.304976pt;}
.wsb_c00360{word-spacing:0.311200pt;}
.ws7_c00360{word-spacing:0.323648pt;}
.wsf_c00360{word-spacing:0.329872pt;}
.wse_c00360{word-spacing:0.336096pt;}
.ws6_c00360{word-spacing:0.342320pt;}
.ws12_c00360{word-spacing:0.360992pt;}
.ws3_c00360{word-spacing:24.329616pt;}
._1_c00360{margin-left:-1.201232pt;}
._0_c00360{width:0.921152pt;}
._2_c00360{width:7.045568pt;}
.fs1_c00360{font-size:41.388800pt;}
.fs0_c00360{font-size:62.240000pt;}
.y0_c00360{bottom:0.000000pt;}
.y2_c00360{bottom:97.547527pt;}
.y1_c00360{bottom:115.387067pt;}
.y17_c00360{bottom:413.387067pt;}
.y16_c00360{bottom:440.187200pt;}
.y15_c00360{bottom:467.067200pt;}
.y14_c00360{bottom:493.867067pt;}
.y13_c00360{bottom:520.747067pt;}
.y12_c00360{bottom:547.547067pt;}
.y11_c00360{bottom:574.427067pt;}
.y10_c00360{bottom:601.227067pt;}
.yf_c00360{bottom:628.107067pt;}
.ye_c00360{bottom:654.907067pt;}
.yd_c00360{bottom:681.787067pt;}
.yc_c00360{bottom:708.587067pt;}
.yb_c00360{bottom:735.467067pt;}
.ya_c00360{bottom:762.347067pt;}
.y9_c00360{bottom:789.147200pt;}
.y8_c00360{bottom:815.947067pt;}
.y7_c00360{bottom:842.747067pt;}
.y6_c00360{bottom:887.707067pt;}
.y5_c00360{bottom:914.667067pt;}
.y4_c00360{bottom:941.467067pt;}
.y3_c00360{bottom:986.347067pt;}
.h2_c00360{height:55.645234pt;}
.h1_c00360{height:55.797187pt;}
.h4_c00360{height:56.192266pt;}
.h5_c00360{height:65.802832pt;}
.h3_c00360{height:65.803366pt;}
.h0_c00360{height:1122.666667pt;}
.w0_c00360{width:793.333333pt;}
.x0_c00360{left:0.000000pt;}
.x2_c00360{left:73.520052pt;}
.x3_c00360{left:121.920000pt;}
.x5_c00360{left:145.280000pt;}
.x4_c00360{left:168.560000pt;}
.x1_c00360{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d430765ef25698cc1a237e66.woff2')format("woff");}.ff1_c00361{font-family:ff1_c00361;line-height:1.106934;font-style:normal;font-weight:normal;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_fc12c63100ff5a9682ade04a.woff2')format("woff");}.ff2_c00361{font-family:ff2_c00361;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00361;src:url('chunks/assets/font_b51ba7fb75101032e4cd8368.woff2')format("woff");}.ff3_c00361{font-family:ff3_c00361;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00361{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00361{vertical-align:0.000000px;}
.v1_c00361{vertical-align:32.040000px;}
.ls6_c00361{letter-spacing:-0.063018px;}
.lsc_c00361{letter-spacing:-0.049014px;}
.lse_c00361{letter-spacing:-0.042012px;}
.lsb_c00361{letter-spacing:-0.035010px;}
.lsa_c00361{letter-spacing:-0.028008px;}
.ls8_c00361{letter-spacing:-0.021006px;}
.lsd_c00361{letter-spacing:-0.014004px;}
.ls9_c00361{letter-spacing:-0.007002px;}
.ls7_c00361{letter-spacing:0.000000px;}
.ls2_c00361{letter-spacing:0.007002px;}
.ls4_c00361{letter-spacing:0.014004px;}
.ls5_c00361{letter-spacing:0.023281px;}
.ls1_c00361{letter-spacing:0.028008px;}
.ls3_c00361{letter-spacing:0.049014px;}
.ls0_c00361{letter-spacing:0.098028px;}
.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:-12.967628px;}
.ws15_c00361{word-spacing:-0.042012px;}
.wsf_c00361{word-spacing:-0.021006px;}
.ws1_c00361{word-spacing:0.000000px;}
.ws1e_c00361{word-spacing:0.014004px;}
.wsb_c00361{word-spacing:0.364104px;}
.ws14_c00361{word-spacing:0.371106px;}
.ws16_c00361{word-spacing:0.728208px;}
.ws1b_c00361{word-spacing:4.257216px;}
.ws19_c00361{word-spacing:4.313232px;}
.ws13_c00361{word-spacing:4.656330px;}
.ws18_c00361{word-spacing:5.398542px;}
.ws17_c00361{word-spacing:5.783652px;}
.ws5_c00361{word-spacing:7.576164px;}
.wsc_c00361{word-spacing:8.654472px;}
.ws7_c00361{word-spacing:8.661474px;}
.ws6_c00361{word-spacing:9.739782px;}
.ws12_c00361{word-spacing:10.474992px;}
.ws9_c00361{word-spacing:12.953700px;}
.wsa_c00361{word-spacing:13.303800px;}
.ws4_c00361{word-spacing:14.032008px;}
.ws1d_c00361{word-spacing:14.739210px;}
.ws3_c00361{word-spacing:16.552728px;}
.wse_c00361{word-spacing:18.716346px;}
.ws11_c00361{word-spacing:19.759644px;}
.ws10_c00361{word-spacing:19.808658px;}
.ws2_c00361{word-spacing:20.529864px;}
.wsd_c00361{word-spacing:20.900970px;}
.ws1f_c00361{word-spacing:23.785794px;}
.ws1a_c00361{word-spacing:25.928406px;}
.ws1c_c00361{word-spacing:29.135322px;}
.ws8_c00361{word-spacing:32.412258px;}
._0_c00361{margin-left:-1.036296px;}
._1_c00361{width:1.225350px;}
.fc0_c00361{color:rgb(0,0,0);}
.fs1_c00361{font-size:46.562400px;}
.fs0_c00361{font-size:70.020000px;}
.y0_c00361{bottom:0.000000px;}
.y2_c00361{bottom:109.740968px;}
.y1_c00361{bottom:129.810450px;}
.y22_c00361{bottom:183.810450px;}
.y21_c00361{bottom:214.050450px;}
.y20_c00361{bottom:244.200600px;}
.y1f_c00361{bottom:274.440450px;}
.y1e_c00361{bottom:304.590450px;}
.y1d_c00361{bottom:334.830450px;}
.y1c_c00361{bottom:364.980450px;}
.y1b_c00361{bottom:395.220450px;}
.y1a_c00361{bottom:425.370600px;}
.y19_c00361{bottom:455.610600px;}
.y18_c00361{bottom:485.760450px;}
.y17_c00361{bottom:516.000600px;}
.y16_c00361{bottom:546.150450px;}
.y15_c00361{bottom:576.390450px;}
.y14_c00361{bottom:606.450450px;}
.y13_c00361{bottom:636.690450px;}
.y12_c00361{bottom:666.840450px;}
.y11_c00361{bottom:697.080450px;}
.y10_c00361{bottom:727.230450px;}
.yf_c00361{bottom:757.470450px;}
.ye_c00361{bottom:787.620450px;}
.yd_c00361{bottom:817.860600px;}
.yc_c00361{bottom:848.100450px;}
.yb_c00361{bottom:878.250600px;}
.ya_c00361{bottom:908.490450px;}
.y9_c00361{bottom:938.640450px;}
.y8_c00361{bottom:968.880450px;}
.y7_c00361{bottom:999.030450px;}
.y6_c00361{bottom:1029.270450px;}
.y5_c00361{bottom:1059.420450px;}
.y4_c00361{bottom:1089.660450px;}
.y3_c00361{bottom:1109.730450px;}
.h3_c00361{height:62.600889px;}
.h1_c00361{height:62.771836px;}
.h2_c00361{height:63.216299px;}
.h4_c00361{height:73.668786px;}
.h0_c00361{height:1263.000000px;}
.w0_c00361{width:892.500000px;}
.x0_c00361{left:0.000000px;}
.x2_c00361{left:82.710059px;}
.x3_c00361{left:137.160000px;}
.x1_c00361{left:431.730000px;}
@media print{
.v0_c00361{vertical-align:0.000000pt;}
.v1_c00361{vertical-align:28.480000pt;}
.ls6_c00361{letter-spacing:-0.056016pt;}
.lsc_c00361{letter-spacing:-0.043568pt;}
.lse_c00361{letter-spacing:-0.037344pt;}
.lsb_c00361{letter-spacing:-0.031120pt;}
.lsa_c00361{letter-spacing:-0.024896pt;}
.ls8_c00361{letter-spacing:-0.018672pt;}
.lsd_c00361{letter-spacing:-0.012448pt;}
.ls9_c00361{letter-spacing:-0.006224pt;}
.ls7_c00361{letter-spacing:0.000000pt;}
.ls2_c00361{letter-spacing:0.006224pt;}
.ls4_c00361{letter-spacing:0.012448pt;}
.ls5_c00361{letter-spacing:0.020694pt;}
.ls1_c00361{letter-spacing:0.024896pt;}
.ls3_c00361{letter-spacing:0.043568pt;}
.ls0_c00361{letter-spacing:0.087136pt;}
.ws0_c00361{word-spacing:-11.526781pt;}
.ws15_c00361{word-spacing:-0.037344pt;}
.wsf_c00361{word-spacing:-0.018672pt;}
.ws1_c00361{word-spacing:0.000000pt;}
.ws1e_c00361{word-spacing:0.012448pt;}
.wsb_c00361{word-spacing:0.323648pt;}
.ws14_c00361{word-spacing:0.329872pt;}
.ws16_c00361{word-spacing:0.647296pt;}
.ws1b_c00361{word-spacing:3.784192pt;}
.ws19_c00361{word-spacing:3.833984pt;}
.ws13_c00361{word-spacing:4.138960pt;}
.ws18_c00361{word-spacing:4.798704pt;}
.ws17_c00361{word-spacing:5.141024pt;}
.ws5_c00361{word-spacing:6.734368pt;}
.wsc_c00361{word-spacing:7.692864pt;}
.ws7_c00361{word-spacing:7.699088pt;}
.ws6_c00361{word-spacing:8.657584pt;}
.ws12_c00361{word-spacing:9.311104pt;}
.ws9_c00361{word-spacing:11.514400pt;}
.wsa_c00361{word-spacing:11.825600pt;}
.ws4_c00361{word-spacing:12.472896pt;}
.ws1d_c00361{word-spacing:13.101520pt;}
.ws3_c00361{word-spacing:14.713536pt;}
.wse_c00361{word-spacing:16.636752pt;}
.ws11_c00361{word-spacing:17.564128pt;}
.ws10_c00361{word-spacing:17.607696pt;}
.ws2_c00361{word-spacing:18.248768pt;}
.wsd_c00361{word-spacing:18.578640pt;}
.ws1f_c00361{word-spacing:21.142928pt;}
.ws1a_c00361{word-spacing:23.047472pt;}
.ws1c_c00361{word-spacing:25.898064pt;}
.ws8_c00361{word-spacing:28.810896pt;}
._0_c00361{margin-left:-0.921152pt;}
._1_c00361{width:1.089200pt;}
.fs1_c00361{font-size:41.388800pt;}
.fs0_c00361{font-size:62.240000pt;}
.y0_c00361{bottom:0.000000pt;}
.y2_c00361{bottom:97.547527pt;}
.y1_c00361{bottom:115.387067pt;}
.y22_c00361{bottom:163.387067pt;}
.y21_c00361{bottom:190.267067pt;}
.y20_c00361{bottom:217.067200pt;}
.y1f_c00361{bottom:243.947067pt;}
.y1e_c00361{bottom:270.747067pt;}
.y1d_c00361{bottom:297.627067pt;}
.y1c_c00361{bottom:324.427067pt;}
.y1b_c00361{bottom:351.307067pt;}
.y1a_c00361{bottom:378.107200pt;}
.y19_c00361{bottom:404.987200pt;}
.y18_c00361{bottom:431.787067pt;}
.y17_c00361{bottom:458.667200pt;}
.y16_c00361{bottom:485.467067pt;}
.y15_c00361{bottom:512.347067pt;}
.y14_c00361{bottom:539.067067pt;}
.y13_c00361{bottom:565.947067pt;}
.y12_c00361{bottom:592.747067pt;}
.y11_c00361{bottom:619.627067pt;}
.y10_c00361{bottom:646.427067pt;}
.yf_c00361{bottom:673.307067pt;}
.ye_c00361{bottom:700.107067pt;}
.yd_c00361{bottom:726.987200pt;}
.yc_c00361{bottom:753.867067pt;}
.yb_c00361{bottom:780.667200pt;}
.ya_c00361{bottom:807.547067pt;}
.y9_c00361{bottom:834.347067pt;}
.y8_c00361{bottom:861.227067pt;}
.y7_c00361{bottom:888.027067pt;}
.y6_c00361{bottom:914.907067pt;}
.y5_c00361{bottom:941.707067pt;}
.y4_c00361{bottom:968.587067pt;}
.y3_c00361{bottom:986.427067pt;}
.h3_c00361{height:55.645234pt;}
.h1_c00361{height:55.797187pt;}
.h2_c00361{height:56.192266pt;}
.h4_c00361{height:65.483366pt;}
.h0_c00361{height:1122.666667pt;}
.w0_c00361{width:793.333333pt;}
.x0_c00361{left:0.000000pt;}
.x2_c00361{left:73.520052pt;}
.x3_c00361{left:121.920000pt;}
.x1_c00361{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_39342c88adea515c4efcf1b2.woff2')format("woff");}.ff1_c00362{font-family:ff1_c00362;line-height:1.106934;font-style:normal;font-weight:normal;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_413b0856493a3141bbe46450.woff2')format("woff");}.ff2_c00362{font-family:ff2_c00362;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00362{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00362{vertical-align:0.000000px;}
.v1_c00362{vertical-align:32.400000px;}
.lsb_c00362{letter-spacing:-0.091026px;}
.lsc_c00362{letter-spacing:-0.084024px;}
.ls3_c00362{letter-spacing:-0.063018px;}
.lsa_c00362{letter-spacing:-0.049014px;}
.ls6_c00362{letter-spacing:-0.042012px;}
.ls8_c00362{letter-spacing:-0.035010px;}
.ls5_c00362{letter-spacing:-0.028008px;}
.ls7_c00362{letter-spacing:-0.021006px;}
.ls9_c00362{letter-spacing:-0.007002px;}
.ls4_c00362{letter-spacing:0.000000px;}
.ls1_c00362{letter-spacing:0.014004px;}
.ls2_c00362{letter-spacing:0.023281px;}
.ls0_c00362{letter-spacing:0.042012px;}
.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:-12.967628px;}
.ws1_c00362{word-spacing:0.000000px;}
.wsf_c00362{word-spacing:0.028008px;}
.ws16_c00362{word-spacing:0.035010px;}
.ws18_c00362{word-spacing:0.070020px;}
.ws10_c00362{word-spacing:0.329094px;}
.ws3_c00362{word-spacing:0.385110px;}
.ws13_c00362{word-spacing:2.541726px;}
.ws14_c00362{word-spacing:2.555730px;}
.wsa_c00362{word-spacing:2.884824px;}
.wsb_c00362{word-spacing:3.248928px;}
.ws17_c00362{word-spacing:3.613032px;}
.ws12_c00362{word-spacing:3.970134px;}
.ws11_c00362{word-spacing:5.384538px;}
.ws15_c00362{word-spacing:6.112746px;}
.ws4_c00362{word-spacing:7.205058px;}
.ws5_c00362{word-spacing:10.460988px;}
.wse_c00362{word-spacing:15.495426px;}
.ws2_c00362{word-spacing:15.852528px;}
.wsc_c00362{word-spacing:16.909830px;}
.ws6_c00362{word-spacing:23.750784px;}
.ws7_c00362{word-spacing:23.792796px;}
.ws8_c00362{word-spacing:23.834808px;}
.wsd_c00362{word-spacing:28.386108px;}
.ws9_c00362{word-spacing:71.623458px;}
._2_c00362{margin-left:-6.119748px;}
._1_c00362{margin-left:-1.036296px;}
._0_c00362{width:1.463418px;}
.fc0_c00362{color:rgb(0,0,0);}
.fs1_c00362{font-size:46.562400px;}
.fs0_c00362{font-size:70.020000px;}
.y0_c00362{bottom:0.000000px;}
.y2_c00362{bottom:109.740968px;}
.y1_c00362{bottom:129.810450px;}
.y27_c00362{bottom:173.008103px;}
.y26_c00362{bottom:193.077585px;}
.y25_c00362{bottom:213.238094px;}
.y24_c00362{bottom:233.398602px;}
.y23_c00362{bottom:253.468085px;}
.y22_c00362{bottom:273.628593px;}
.y21_c00362{bottom:293.789102px;}
.y20_c00362{bottom:313.858584px;}
.y1f_c00362{bottom:334.019093px;}
.y1e_c00362{bottom:354.179601px;}
.y1d_c00362{bottom:374.249084px;}
.y1c_c00362{bottom:394.409592px;}
.y1b_c00362{bottom:414.570101px;}
.y1a_c00362{bottom:434.639583px;}
.y19_c00362{bottom:454.800092px;}
.y18_c00362{bottom:474.960600px;}
.y17_c00362{bottom:505.920450px;}
.y16_c00362{bottom:536.160450px;}
.y15_c00362{bottom:566.310450px;}
.y14_c00362{bottom:596.460450px;}
.y13_c00362{bottom:626.610450px;}
.y12_c00362{bottom:656.850450px;}
.y11_c00362{bottom:687.000450px;}
.y10_c00362{bottom:717.240450px;}
.yf_c00362{bottom:747.390450px;}
.ye_c00362{bottom:777.630450px;}
.yd_c00362{bottom:807.780450px;}
.yc_c00362{bottom:838.020450px;}
.yb_c00362{bottom:868.170450px;}
.ya_c00362{bottom:898.410450px;}
.y9_c00362{bottom:928.560450px;}
.y8_c00362{bottom:958.800450px;}
.y7_c00362{bottom:988.950450px;}
.y6_c00362{bottom:1019.190450px;}
.y5_c00362{bottom:1049.340450px;}
.y4_c00362{bottom:1079.580450px;}
.y3_c00362{bottom:1109.730450px;}
.h2_c00362{height:62.600889px;}
.h1_c00362{height:62.771836px;}
.h4_c00362{height:73.668786px;}
.h3_c00362{height:74.028786px;}
.h0_c00362{height:1263.000000px;}
.w0_c00362{width:892.500000px;}
.x0_c00362{left:0.000000px;}
.x2_c00362{left:82.710059px;}
.x3_c00362{left:137.160000px;}
.x4_c00362{left:342.270000px;}
.x1_c00362{left:431.730000px;}
@media print{
.v0_c00362{vertical-align:0.000000pt;}
.v1_c00362{vertical-align:28.800000pt;}
.lsb_c00362{letter-spacing:-0.080912pt;}
.lsc_c00362{letter-spacing:-0.074688pt;}
.ls3_c00362{letter-spacing:-0.056016pt;}
.lsa_c00362{letter-spacing:-0.043568pt;}
.ls6_c00362{letter-spacing:-0.037344pt;}
.ls8_c00362{letter-spacing:-0.031120pt;}
.ls5_c00362{letter-spacing:-0.024896pt;}
.ls7_c00362{letter-spacing:-0.018672pt;}
.ls9_c00362{letter-spacing:-0.006224pt;}
.ls4_c00362{letter-spacing:0.000000pt;}
.ls1_c00362{letter-spacing:0.012448pt;}
.ls2_c00362{letter-spacing:0.020694pt;}
.ls0_c00362{letter-spacing:0.037344pt;}
.ws0_c00362{word-spacing:-11.526781pt;}
.ws1_c00362{word-spacing:0.000000pt;}
.wsf_c00362{word-spacing:0.024896pt;}
.ws16_c00362{word-spacing:0.031120pt;}
.ws18_c00362{word-spacing:0.062240pt;}
.ws10_c00362{word-spacing:0.292528pt;}
.ws3_c00362{word-spacing:0.342320pt;}
.ws13_c00362{word-spacing:2.259312pt;}
.ws14_c00362{word-spacing:2.271760pt;}
.wsa_c00362{word-spacing:2.564288pt;}
.wsb_c00362{word-spacing:2.887936pt;}
.ws17_c00362{word-spacing:3.211584pt;}
.ws12_c00362{word-spacing:3.529008pt;}
.ws11_c00362{word-spacing:4.786256pt;}
.ws15_c00362{word-spacing:5.433552pt;}
.ws4_c00362{word-spacing:6.404496pt;}
.ws5_c00362{word-spacing:9.298656pt;}
.wse_c00362{word-spacing:13.773712pt;}
.ws2_c00362{word-spacing:14.091136pt;}
.wsc_c00362{word-spacing:15.030960pt;}
.ws6_c00362{word-spacing:21.111808pt;}
.ws7_c00362{word-spacing:21.149152pt;}
.ws8_c00362{word-spacing:21.186496pt;}
.wsd_c00362{word-spacing:25.232096pt;}
.ws9_c00362{word-spacing:63.665296pt;}
._2_c00362{margin-left:-5.439776pt;}
._1_c00362{margin-left:-0.921152pt;}
._0_c00362{width:1.300816pt;}
.fs1_c00362{font-size:41.388800pt;}
.fs0_c00362{font-size:62.240000pt;}
.y0_c00362{bottom:0.000000pt;}
.y2_c00362{bottom:97.547527pt;}
.y1_c00362{bottom:115.387067pt;}
.y27_c00362{bottom:153.784980pt;}
.y26_c00362{bottom:171.624520pt;}
.y25_c00362{bottom:189.544972pt;}
.y24_c00362{bottom:207.465424pt;}
.y23_c00362{bottom:225.304964pt;}
.y22_c00362{bottom:243.225416pt;}
.y21_c00362{bottom:261.145868pt;}
.y20_c00362{bottom:278.985408pt;}
.y1f_c00362{bottom:296.905860pt;}
.y1e_c00362{bottom:314.826312pt;}
.y1d_c00362{bottom:332.665852pt;}
.y1c_c00362{bottom:350.586304pt;}
.y1b_c00362{bottom:368.506756pt;}
.y1a_c00362{bottom:386.346296pt;}
.y19_c00362{bottom:404.266748pt;}
.y18_c00362{bottom:422.187200pt;}
.y17_c00362{bottom:449.707067pt;}
.y16_c00362{bottom:476.587067pt;}
.y15_c00362{bottom:503.387067pt;}
.y14_c00362{bottom:530.187067pt;}
.y13_c00362{bottom:556.987067pt;}
.y12_c00362{bottom:583.867067pt;}
.y11_c00362{bottom:610.667067pt;}
.y10_c00362{bottom:637.547067pt;}
.yf_c00362{bottom:664.347067pt;}
.ye_c00362{bottom:691.227067pt;}
.yd_c00362{bottom:718.027067pt;}
.yc_c00362{bottom:744.907067pt;}
.yb_c00362{bottom:771.707067pt;}
.ya_c00362{bottom:798.587067pt;}
.y9_c00362{bottom:825.387067pt;}
.y8_c00362{bottom:852.267067pt;}
.y7_c00362{bottom:879.067067pt;}
.y6_c00362{bottom:905.947067pt;}
.y5_c00362{bottom:932.747067pt;}
.y4_c00362{bottom:959.627067pt;}
.y3_c00362{bottom:986.427067pt;}
.h2_c00362{height:55.645234pt;}
.h1_c00362{height:55.797187pt;}
.h4_c00362{height:65.483366pt;}
.h3_c00362{height:65.803366pt;}
.h0_c00362{height:1122.666667pt;}
.w0_c00362{width:793.333333pt;}
.x0_c00362{left:0.000000pt;}
.x2_c00362{left:73.520052pt;}
.x3_c00362{left:121.920000pt;}
.x4_c00362{left:304.240000pt;}
.x1_c00362{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_35c06e7f0e1275e7e3392996.woff2')format("woff");}.ff1_c00363{font-family:ff1_c00363;line-height:1.106934;font-style:normal;font-weight:normal;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_8cefc4467a69599e5aaaaf01.woff2')format("woff");}.ff2_c00363{font-family:ff2_c00363;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00363;src:url('chunks/assets/font_9eb8135e9557b972fc4deabf.woff2')format("woff");}.ff3_c00363{font-family:ff3_c00363;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00363{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00363{vertical-align:0.000000px;}
.v1_c00363{vertical-align:32.070420px;}
.lsa_c00363{letter-spacing:-0.091026px;}
.ls8_c00363{letter-spacing:-0.063018px;}
.ls13_c00363{letter-spacing:-0.056016px;}
.ls12_c00363{letter-spacing:-0.049014px;}
.ls11_c00363{letter-spacing:-0.042012px;}
.lsd_c00363{letter-spacing:-0.035010px;}
.lsc_c00363{letter-spacing:-0.028008px;}
.lsf_c00363{letter-spacing:-0.021006px;}
.ls10_c00363{letter-spacing:-0.014004px;}
.lse_c00363{letter-spacing:-0.007002px;}
.ls9_c00363{letter-spacing:0.000000px;}
.ls3_c00363{letter-spacing:0.007002px;}
.ls5_c00363{letter-spacing:0.014004px;}
.ls0_c00363{letter-spacing:0.021006px;}
.ls6_c00363{letter-spacing:0.023281px;}
.ls2_c00363{letter-spacing:0.028008px;}
.ls7_c00363{letter-spacing:0.035010px;}
.ls1_c00363{letter-spacing:0.042012px;}
.ls4_c00363{letter-spacing:0.063018px;}
.lsb_c00363{letter-spacing:0.343098px;}
.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:-19.465560px;}
.ws2_c00363{word-spacing:-19.402542px;}
.ws1_c00363{word-spacing:-12.967628px;}
.ws3_c00363{word-spacing:0.000000px;}
.ws24_c00363{word-spacing:0.028008px;}
.ws29_c00363{word-spacing:0.357102px;}
.ws8_c00363{word-spacing:0.378108px;}
.ws18_c00363{word-spacing:0.686196px;}
.wsf_c00363{word-spacing:0.728208px;}
.ws37_c00363{word-spacing:0.735210px;}
.ws15_c00363{word-spacing:2.135610px;}
.ws23_c00363{word-spacing:2.562732px;}
.ws1a_c00363{word-spacing:2.884824px;}
.ws19_c00363{word-spacing:5.076450px;}
.ws2b_c00363{word-spacing:5.426550px;}
.ws12_c00363{word-spacing:5.748642px;}
.ws2e_c00363{word-spacing:6.098742px;}
.ws25_c00363{word-spacing:6.504858px;}
.ws1e_c00363{word-spacing:7.940268px;}
.ws26_c00363{word-spacing:7.947270px;}
.ws21_c00363{word-spacing:9.340668px;}
.ws20_c00363{word-spacing:9.795798px;}
.ws30_c00363{word-spacing:10.432980px;}
.ws2a_c00363{word-spacing:11.861388px;}
.ws36_c00363{word-spacing:12.624606px;}
.ws16_c00363{word-spacing:14.431122px;}
.ws2d_c00363{word-spacing:15.852528px;}
.ws34_c00363{word-spacing:16.937838px;}
.ws3b_c00363{word-spacing:18.023148px;}
.ws2f_c00363{word-spacing:18.317232px;}
.wsb_c00363{word-spacing:18.681336px;}
.ws1c_c00363{word-spacing:19.129464px;}
.ws14_c00363{word-spacing:19.402542px;}
.ws35_c00363{word-spacing:20.109744px;}
.ws1b_c00363{word-spacing:20.130750px;}
.wse_c00363{word-spacing:20.536866px;}
.ws7_c00363{word-spacing:20.844954px;}
.ws1f_c00363{word-spacing:20.858958px;}
.ws39_c00363{word-spacing:26.278506px;}
.ws27_c00363{word-spacing:26.306514px;}
.ws22_c00363{word-spacing:27.748926px;}
.ws3c_c00363{word-spacing:28.078020px;}
.wsd_c00363{word-spacing:29.170332px;}
.ws38_c00363{word-spacing:31.305942px;}
.ws11_c00363{word-spacing:38.518002px;}
.ws4_c00363{word-spacing:42.915258px;}
.ws5_c00363{word-spacing:43.573446px;}
.ws13_c00363{word-spacing:44.980848px;}
.wsa_c00363{word-spacing:46.794366px;}
.ws1d_c00363{word-spacing:53.257212px;}
.ws6_c00363{word-spacing:53.656326px;}
.ws10_c00363{word-spacing:58.669758px;}
.ws3a_c00363{word-spacing:58.690764px;}
.ws33_c00363{word-spacing:58.704768px;}
.ws9_c00363{word-spacing:76.664898px;}
.ws28_c00363{word-spacing:91.439118px;}
.ws2c_c00363{word-spacing:92.531430px;}
.ws17_c00363{word-spacing:107.921826px;}
.ws31_c00363{word-spacing:129.950118px;}
.ws32_c00363{word-spacing:173.565576px;}
.wsc_c00363{word-spacing:175.687182px;}
._1_c00363{margin-left:-1.176336px;}
._2_c00363{width:1.071306px;}
._0_c00363{width:43.321374px;}
.fc0_c00363{color:rgb(0,0,0);}
.fs1_c00363{font-size:46.562400px;}
.fs0_c00363{font-size:70.020000px;}
.y0_c00363{bottom:0.000000px;}
.y2_c00363{bottom:109.740968px;}
.y1_c00363{bottom:129.810450px;}
.y22_c00363{bottom:173.730563px;}
.y41_c00363{bottom:183.540600px;}
.y21_c00363{bottom:203.962845px;}
.y40_c00363{bottom:213.780600px;}
.y20_c00363{bottom:234.113457px;}
.y3f_c00363{bottom:243.840450px;}
.y1f_c00363{bottom:264.353345px;}
.y3e_c00363{bottom:274.080450px;}
.y1e_c00363{bottom:294.503957px;}
.y3d_c00363{bottom:304.230450px;}
.y1d_c00363{bottom:324.743844px;}
.y3c_c00363{bottom:334.470450px;}
.y1c_c00363{bottom:354.894456px;}
.y3b_c00363{bottom:364.620450px;}
.y1b_c00363{bottom:385.134343px;}
.y3a_c00363{bottom:394.860600px;}
.y1a_c00363{bottom:415.284956px;}
.y39_c00363{bottom:425.010450px;}
.y19_c00363{bottom:445.524843px;}
.y38_c00363{bottom:455.250450px;}
.y18_c00363{bottom:475.764731px;}
.y37_c00363{bottom:485.400450px;}
.y17_c00363{bottom:505.915343px;}
.y36_c00363{bottom:515.640450px;}
.y16_c00363{bottom:536.155230px;}
.y35_c00363{bottom:545.790450px;}
.y15_c00363{bottom:566.305842px;}
.y34_c00363{bottom:576.030450px;}
.y14_c00363{bottom:596.456454px;}
.y33_c00363{bottom:606.180450px;}
.y13_c00363{bottom:626.607066px;}
.y32_c00363{bottom:636.420450px;}
.y12_c00363{bottom:656.846954px;}
.y31_c00363{bottom:666.660450px;}
.y11_c00363{bottom:686.997566px;}
.y30_c00363{bottom:696.810450px;}
.y10_c00363{bottom:717.237453px;}
.y2f_c00363{bottom:727.050450px;}
.yf_c00363{bottom:747.388065px;}
.y2e_c00363{bottom:757.200450px;}
.ye_c00363{bottom:777.627952px;}
.y2d_c00363{bottom:787.440450px;}
.yd_c00363{bottom:807.778565px;}
.y2c_c00363{bottom:817.590450px;}
.yc_c00363{bottom:838.018452px;}
.y2b_c00363{bottom:847.830450px;}
.yb_c00363{bottom:868.169064px;}
.y2a_c00363{bottom:877.980450px;}
.ya_c00363{bottom:898.408952px;}
.y29_c00363{bottom:908.220450px;}
.y9_c00363{bottom:928.559563px;}
.y28_c00363{bottom:938.370450px;}
.y8_c00363{bottom:958.799451px;}
.y27_c00363{bottom:968.610450px;}
.y7_c00363{bottom:988.950063px;}
.y26_c00363{bottom:1019.100450px;}
.y6_c00363{bottom:1019.189951px;}
.y25_c00363{bottom:1049.340450px;}
.y5_c00363{bottom:1049.340563px;}
.y24_c00363{bottom:1079.580450px;}
.y4_c00363{bottom:1079.580985px;}
.y23_c00363{bottom:1109.730450px;}
.y3_c00363{bottom:1109.731597px;}
.h3_c00363{height:62.600889px;}
.h1_c00363{height:62.771836px;}
.h2_c00363{height:63.216299px;}
.h4_c00363{height:73.699206px;}
.h0_c00363{height:1263.000000px;}
.w0_c00363{width:892.500000px;}
.x0_c00363{left:0.000000px;}
.x2_c00363{left:82.710059px;}
.x3_c00363{left:136.709483px;}
.x1_c00363{left:431.730000px;}
.x4_c00363{left:454.230000px;}
@media print{
.v0_c00363{vertical-align:0.000000pt;}
.v1_c00363{vertical-align:28.507040pt;}
.lsa_c00363{letter-spacing:-0.080912pt;}
.ls8_c00363{letter-spacing:-0.056016pt;}
.ls13_c00363{letter-spacing:-0.049792pt;}
.ls12_c00363{letter-spacing:-0.043568pt;}
.ls11_c00363{letter-spacing:-0.037344pt;}
.lsd_c00363{letter-spacing:-0.031120pt;}
.lsc_c00363{letter-spacing:-0.024896pt;}
.lsf_c00363{letter-spacing:-0.018672pt;}
.ls10_c00363{letter-spacing:-0.012448pt;}
.lse_c00363{letter-spacing:-0.006224pt;}
.ls9_c00363{letter-spacing:0.000000pt;}
.ls3_c00363{letter-spacing:0.006224pt;}
.ls5_c00363{letter-spacing:0.012448pt;}
.ls0_c00363{letter-spacing:0.018672pt;}
.ls6_c00363{letter-spacing:0.020694pt;}
.ls2_c00363{letter-spacing:0.024896pt;}
.ls7_c00363{letter-spacing:0.031120pt;}
.ls1_c00363{letter-spacing:0.037344pt;}
.ls4_c00363{letter-spacing:0.056016pt;}
.lsb_c00363{letter-spacing:0.304976pt;}
.ws0_c00363{word-spacing:-17.302720pt;}
.ws2_c00363{word-spacing:-17.246704pt;}
.ws1_c00363{word-spacing:-11.526781pt;}
.ws3_c00363{word-spacing:0.000000pt;}
.ws24_c00363{word-spacing:0.024896pt;}
.ws29_c00363{word-spacing:0.317424pt;}
.ws8_c00363{word-spacing:0.336096pt;}
.ws18_c00363{word-spacing:0.609952pt;}
.wsf_c00363{word-spacing:0.647296pt;}
.ws37_c00363{word-spacing:0.653520pt;}
.ws15_c00363{word-spacing:1.898320pt;}
.ws23_c00363{word-spacing:2.277984pt;}
.ws1a_c00363{word-spacing:2.564288pt;}
.ws19_c00363{word-spacing:4.512400pt;}
.ws2b_c00363{word-spacing:4.823600pt;}
.ws12_c00363{word-spacing:5.109904pt;}
.ws2e_c00363{word-spacing:5.421104pt;}
.ws25_c00363{word-spacing:5.782096pt;}
.ws1e_c00363{word-spacing:7.058016pt;}
.ws26_c00363{word-spacing:7.064240pt;}
.ws21_c00363{word-spacing:8.302816pt;}
.ws20_c00363{word-spacing:8.707376pt;}
.ws30_c00363{word-spacing:9.273760pt;}
.ws2a_c00363{word-spacing:10.543456pt;}
.ws36_c00363{word-spacing:11.221872pt;}
.ws16_c00363{word-spacing:12.827664pt;}
.ws2d_c00363{word-spacing:14.091136pt;}
.ws34_c00363{word-spacing:15.055856pt;}
.ws3b_c00363{word-spacing:16.020576pt;}
.ws2f_c00363{word-spacing:16.281984pt;}
.wsb_c00363{word-spacing:16.605632pt;}
.ws1c_c00363{word-spacing:17.003968pt;}
.ws14_c00363{word-spacing:17.246704pt;}
.ws35_c00363{word-spacing:17.875328pt;}
.ws1b_c00363{word-spacing:17.894000pt;}
.wse_c00363{word-spacing:18.254992pt;}
.ws7_c00363{word-spacing:18.528848pt;}
.ws1f_c00363{word-spacing:18.541296pt;}
.ws39_c00363{word-spacing:23.358672pt;}
.ws27_c00363{word-spacing:23.383568pt;}
.ws22_c00363{word-spacing:24.665712pt;}
.ws3c_c00363{word-spacing:24.958240pt;}
.wsd_c00363{word-spacing:25.929184pt;}
.ws38_c00363{word-spacing:27.827504pt;}
.ws11_c00363{word-spacing:34.238224pt;}
.ws4_c00363{word-spacing:38.146896pt;}
.ws5_c00363{word-spacing:38.731952pt;}
.ws13_c00363{word-spacing:39.982976pt;}
.wsa_c00363{word-spacing:41.594992pt;}
.ws1d_c00363{word-spacing:47.339744pt;}
.ws6_c00363{word-spacing:47.694512pt;}
.ws10_c00363{word-spacing:52.150896pt;}
.ws3a_c00363{word-spacing:52.169568pt;}
.ws33_c00363{word-spacing:52.182016pt;}
.ws9_c00363{word-spacing:68.146576pt;}
.ws28_c00363{word-spacing:81.279216pt;}
.ws2c_c00363{word-spacing:82.250160pt;}
.ws17_c00363{word-spacing:95.930512pt;}
.ws31_c00363{word-spacing:115.511216pt;}
.ws32_c00363{word-spacing:154.280512pt;}
.wsc_c00363{word-spacing:156.166384pt;}
._1_c00363{margin-left:-1.045632pt;}
._2_c00363{width:0.952272pt;}
._0_c00363{width:38.507888pt;}
.fs1_c00363{font-size:41.388800pt;}
.fs0_c00363{font-size:62.240000pt;}
.y0_c00363{bottom:0.000000pt;}
.y2_c00363{bottom:97.547527pt;}
.y1_c00363{bottom:115.387067pt;}
.y22_c00363{bottom:154.427167pt;}
.y41_c00363{bottom:163.147200pt;}
.y21_c00363{bottom:181.300307pt;}
.y40_c00363{bottom:190.027200pt;}
.y20_c00363{bottom:208.100851pt;}
.y3f_c00363{bottom:216.747067pt;}
.y1f_c00363{bottom:234.980751pt;}
.y3e_c00363{bottom:243.627067pt;}
.y1e_c00363{bottom:261.781295pt;}
.y3d_c00363{bottom:270.427067pt;}
.y1d_c00363{bottom:288.661195pt;}
.y3c_c00363{bottom:297.307067pt;}
.y1c_c00363{bottom:315.461739pt;}
.y3b_c00363{bottom:324.107067pt;}
.y1b_c00363{bottom:342.341639pt;}
.y3a_c00363{bottom:350.987200pt;}
.y1a_c00363{bottom:369.142183pt;}
.y39_c00363{bottom:377.787067pt;}
.y19_c00363{bottom:396.022083pt;}
.y38_c00363{bottom:404.667067pt;}
.y18_c00363{bottom:422.901983pt;}
.y37_c00363{bottom:431.467067pt;}
.y17_c00363{bottom:449.702527pt;}
.y36_c00363{bottom:458.347067pt;}
.y16_c00363{bottom:476.582427pt;}
.y35_c00363{bottom:485.147067pt;}
.y15_c00363{bottom:503.382971pt;}
.y34_c00363{bottom:512.027067pt;}
.y14_c00363{bottom:530.183515pt;}
.y33_c00363{bottom:538.827067pt;}
.y13_c00363{bottom:556.984059pt;}
.y32_c00363{bottom:565.707067pt;}
.y12_c00363{bottom:583.863959pt;}
.y31_c00363{bottom:592.587067pt;}
.y11_c00363{bottom:610.664503pt;}
.y30_c00363{bottom:619.387067pt;}
.y10_c00363{bottom:637.544403pt;}
.y2f_c00363{bottom:646.267067pt;}
.yf_c00363{bottom:664.344947pt;}
.y2e_c00363{bottom:673.067067pt;}
.ye_c00363{bottom:691.224847pt;}
.y2d_c00363{bottom:699.947067pt;}
.yd_c00363{bottom:718.025391pt;}
.y2c_c00363{bottom:726.747067pt;}
.yc_c00363{bottom:744.905291pt;}
.y2b_c00363{bottom:753.627067pt;}
.yb_c00363{bottom:771.705835pt;}
.y2a_c00363{bottom:780.427067pt;}
.ya_c00363{bottom:798.585735pt;}
.y29_c00363{bottom:807.307067pt;}
.y9_c00363{bottom:825.386279pt;}
.y28_c00363{bottom:834.107067pt;}
.y8_c00363{bottom:852.266179pt;}
.y27_c00363{bottom:860.987067pt;}
.y7_c00363{bottom:879.066723pt;}
.y26_c00363{bottom:905.867067pt;}
.y6_c00363{bottom:905.946623pt;}
.y25_c00363{bottom:932.747067pt;}
.y5_c00363{bottom:932.747167pt;}
.y24_c00363{bottom:959.627067pt;}
.y4_c00363{bottom:959.627543pt;}
.y23_c00363{bottom:986.427067pt;}
.y3_c00363{bottom:986.428087pt;}
.h3_c00363{height:55.645234pt;}
.h1_c00363{height:55.797187pt;}
.h2_c00363{height:56.192266pt;}
.h4_c00363{height:65.510406pt;}
.h0_c00363{height:1122.666667pt;}
.w0_c00363{width:793.333333pt;}
.x0_c00363{left:0.000000pt;}
.x2_c00363{left:73.520052pt;}
.x3_c00363{left:121.519540pt;}
.x1_c00363{left:383.760000pt;}
.x4_c00363{left:403.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c060a17cb0cedfd65144ab4a.woff2')format("woff");}.ff1_c00364{font-family:ff1_c00364;line-height:1.106934;font-style:normal;font-weight:normal;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_c3b3573f2dc0f5174260c1df.woff2')format("woff");}.ff2_c00364{font-family:ff2_c00364;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00364{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00364{vertical-align:0.000000px;}
.v1_c00364{vertical-align:32.060886px;}
.lsf_c00364{letter-spacing:-0.105030px;}
.ls6_c00364{letter-spacing:-0.063018px;}
.ls11_c00364{letter-spacing:-0.056016px;}
.lsb_c00364{letter-spacing:-0.049014px;}
.lse_c00364{letter-spacing:-0.042012px;}
.lsd_c00364{letter-spacing:-0.035010px;}
.lsc_c00364{letter-spacing:-0.028008px;}
.lsa_c00364{letter-spacing:-0.021006px;}
.ls9_c00364{letter-spacing:-0.014004px;}
.ls8_c00364{letter-spacing:-0.007002px;}
.ls7_c00364{letter-spacing:0.000000px;}
.ls2_c00364{letter-spacing:0.007002px;}
.ls0_c00364{letter-spacing:0.014004px;}
.ls3_c00364{letter-spacing:0.023281px;}
.ls1_c00364{letter-spacing:0.028008px;}
.ls5_c00364{letter-spacing:0.035010px;}
.ls4_c00364{letter-spacing:0.049014px;}
.ls10_c00364{letter-spacing:0.084024px;}
.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;}
}
.ws1_c00364{word-spacing:-19.360530px;}
.ws0_c00364{word-spacing:-12.967628px;}
.ws32_c00364{word-spacing:-0.014004px;}
.ws1b_c00364{word-spacing:-0.007002px;}
.ws2_c00364{word-spacing:0.000000px;}
.ws8_c00364{word-spacing:0.049014px;}
.ws19_c00364{word-spacing:0.371106px;}
.ws24_c00364{word-spacing:1.806516px;}
.ws5_c00364{word-spacing:2.156616px;}
.ws10_c00364{word-spacing:3.970134px;}
.ws1c_c00364{word-spacing:3.977136px;}
.ws2a_c00364{word-spacing:5.398542px;}
.ws34_c00364{word-spacing:5.405544px;}
.ws1a_c00364{word-spacing:5.426550px;}
.ws1d_c00364{word-spacing:5.433552px;}
.ws2f_c00364{word-spacing:6.140754px;}
.ws2b_c00364{word-spacing:8.668476px;}
.wsc_c00364{word-spacing:9.032580px;}
.ws22_c00364{word-spacing:9.333666px;}
.ws17_c00364{word-spacing:9.753786px;}
.wsa_c00364{word-spacing:10.082880px;}
.ws2c_c00364{word-spacing:11.861388px;}
.ws23_c00364{word-spacing:11.875392px;}
.ws11_c00364{word-spacing:11.917404px;}
.ws26_c00364{word-spacing:14.396112px;}
.ws30_c00364{word-spacing:14.424120px;}
.ws12_c00364{word-spacing:17.294940px;}
.ws6_c00364{word-spacing:20.522862px;}
.ws2d_c00364{word-spacing:20.536866px;}
.ws28_c00364{word-spacing:20.900970px;}
.ws4_c00364{word-spacing:22.308372px;}
.ws7_c00364{word-spacing:22.651470px;}
.ws14_c00364{word-spacing:23.778792px;}
.ws31_c00364{word-spacing:28.092024px;}
.ws2e_c00364{word-spacing:29.191338px;}
.ws3_c00364{word-spacing:32.034150px;}
.ws18_c00364{word-spacing:32.048154px;}
.wsd_c00364{word-spacing:32.356242px;}
.ws21_c00364{word-spacing:33.112458px;}
.ws9_c00364{word-spacing:35.955270px;}
.ws15_c00364{word-spacing:37.075590px;}
.ws16_c00364{word-spacing:38.546010px;}
.ws13_c00364{word-spacing:41.017716px;}
.ws1f_c00364{word-spacing:44.987850px;}
.ws20_c00364{word-spacing:53.579304px;}
.ws1e_c00364{word-spacing:53.663328px;}
.ws25_c00364{word-spacing:66.252924px;}
.ws29_c00364{word-spacing:71.623458px;}
.wsb_c00364{word-spacing:87.847092px;}
.ws33_c00364{word-spacing:91.033002px;}
.ws27_c00364{word-spacing:114.524712px;}
.wsf_c00364{word-spacing:134.634456px;}
.wse_c00364{word-spacing:141.811506px;}
._1_c00364{margin-left:-1.113318px;}
._0_c00364{width:1.008288px;}
.fc0_c00364{color:rgb(0,0,0);}
.fs1_c00364{font-size:46.562400px;}
.fs0_c00364{font-size:70.020000px;}
.y0_c00364{bottom:0.000000px;}
.y2_c00364{bottom:109.740968px;}
.y1_c00364{bottom:129.810450px;}
.y3a_c00364{bottom:173.730450px;}
.y39_c00364{bottom:203.970450px;}
.y38_c00364{bottom:234.120600px;}
.y37_c00364{bottom:264.360450px;}
.y36_c00364{bottom:294.510450px;}
.y35_c00364{bottom:324.750600px;}
.y34_c00364{bottom:354.900450px;}
.y33_c00364{bottom:385.140450px;}
.y32_c00364{bottom:415.290600px;}
.y1a_c00364{bottom:415.290713px;}
.y19_c00364{bottom:445.525379px;}
.y31_c00364{bottom:445.530600px;}
.y18_c00364{bottom:475.765266px;}
.y30_c00364{bottom:475.770600px;}
.y17_c00364{bottom:505.915878px;}
.y2f_c00364{bottom:505.920450px;}
.y16_c00364{bottom:536.155766px;}
.y2e_c00364{bottom:536.160450px;}
.y15_c00364{bottom:566.306378px;}
.y2d_c00364{bottom:566.310450px;}
.y14_c00364{bottom:596.456990px;}
.y2c_c00364{bottom:596.460450px;}
.y13_c00364{bottom:626.607602px;}
.y2b_c00364{bottom:626.610450px;}
.y12_c00364{bottom:656.847489px;}
.y2a_c00364{bottom:656.850450px;}
.y11_c00364{bottom:686.998101px;}
.y29_c00364{bottom:687.000450px;}
.y10_c00364{bottom:717.237989px;}
.y28_c00364{bottom:717.240450px;}
.yf_c00364{bottom:747.388601px;}
.y27_c00364{bottom:747.390450px;}
.ye_c00364{bottom:777.628488px;}
.y26_c00364{bottom:777.630450px;}
.yd_c00364{bottom:807.779100px;}
.y25_c00364{bottom:807.780450px;}
.yc_c00364{bottom:838.018988px;}
.y24_c00364{bottom:838.020450px;}
.yb_c00364{bottom:868.169600px;}
.y23_c00364{bottom:868.170450px;}
.ya_c00364{bottom:898.409487px;}
.y22_c00364{bottom:898.410450px;}
.y9_c00364{bottom:928.560099px;}
.y21_c00364{bottom:928.560450px;}
.y8_c00364{bottom:958.799987px;}
.y20_c00364{bottom:958.800450px;}
.y1f_c00364{bottom:988.950450px;}
.y7_c00364{bottom:988.950599px;}
.y1e_c00364{bottom:1019.190450px;}
.y6_c00364{bottom:1019.190486px;}
.y1d_c00364{bottom:1049.340450px;}
.y5_c00364{bottom:1049.341098px;}
.y1c_c00364{bottom:1079.580450px;}
.y4_c00364{bottom:1079.580985px;}
.y1b_c00364{bottom:1109.730450px;}
.y3_c00364{bottom:1109.731597px;}
.h2_c00364{height:62.600889px;}
.h1_c00364{height:62.771836px;}
.h3_c00364{height:73.689672px;}
.h4_c00364{height:73.782464px;}
.h0_c00364{height:1263.000000px;}
.w0_c00364{width:892.500000px;}
.x0_c00364{left:0.000000px;}
.x2_c00364{left:82.710059px;}
.x3_c00364{left:136.709483px;}
.x1_c00364{left:431.730000px;}
.x4_c00364{left:454.230000px;}
@media print{
.v0_c00364{vertical-align:0.000000pt;}
.v1_c00364{vertical-align:28.498565pt;}
.lsf_c00364{letter-spacing:-0.093360pt;}
.ls6_c00364{letter-spacing:-0.056016pt;}
.ls11_c00364{letter-spacing:-0.049792pt;}
.lsb_c00364{letter-spacing:-0.043568pt;}
.lse_c00364{letter-spacing:-0.037344pt;}
.lsd_c00364{letter-spacing:-0.031120pt;}
.lsc_c00364{letter-spacing:-0.024896pt;}
.lsa_c00364{letter-spacing:-0.018672pt;}
.ls9_c00364{letter-spacing:-0.012448pt;}
.ls8_c00364{letter-spacing:-0.006224pt;}
.ls7_c00364{letter-spacing:0.000000pt;}
.ls2_c00364{letter-spacing:0.006224pt;}
.ls0_c00364{letter-spacing:0.012448pt;}
.ls3_c00364{letter-spacing:0.020694pt;}
.ls1_c00364{letter-spacing:0.024896pt;}
.ls5_c00364{letter-spacing:0.031120pt;}
.ls4_c00364{letter-spacing:0.043568pt;}
.ls10_c00364{letter-spacing:0.074688pt;}
.ws1_c00364{word-spacing:-17.209360pt;}
.ws0_c00364{word-spacing:-11.526781pt;}
.ws32_c00364{word-spacing:-0.012448pt;}
.ws1b_c00364{word-spacing:-0.006224pt;}
.ws2_c00364{word-spacing:0.000000pt;}
.ws8_c00364{word-spacing:0.043568pt;}
.ws19_c00364{word-spacing:0.329872pt;}
.ws24_c00364{word-spacing:1.605792pt;}
.ws5_c00364{word-spacing:1.916992pt;}
.ws10_c00364{word-spacing:3.529008pt;}
.ws1c_c00364{word-spacing:3.535232pt;}
.ws2a_c00364{word-spacing:4.798704pt;}
.ws34_c00364{word-spacing:4.804928pt;}
.ws1a_c00364{word-spacing:4.823600pt;}
.ws1d_c00364{word-spacing:4.829824pt;}
.ws2f_c00364{word-spacing:5.458448pt;}
.ws2b_c00364{word-spacing:7.705312pt;}
.wsc_c00364{word-spacing:8.028960pt;}
.ws22_c00364{word-spacing:8.296592pt;}
.ws17_c00364{word-spacing:8.670032pt;}
.wsa_c00364{word-spacing:8.962560pt;}
.ws2c_c00364{word-spacing:10.543456pt;}
.ws23_c00364{word-spacing:10.555904pt;}
.ws11_c00364{word-spacing:10.593248pt;}
.ws26_c00364{word-spacing:12.796544pt;}
.ws30_c00364{word-spacing:12.821440pt;}
.ws12_c00364{word-spacing:15.373280pt;}
.ws6_c00364{word-spacing:18.242544pt;}
.ws2d_c00364{word-spacing:18.254992pt;}
.ws28_c00364{word-spacing:18.578640pt;}
.ws4_c00364{word-spacing:19.829664pt;}
.ws7_c00364{word-spacing:20.134640pt;}
.ws14_c00364{word-spacing:21.136704pt;}
.ws31_c00364{word-spacing:24.970688pt;}
.ws2e_c00364{word-spacing:25.947856pt;}
.ws3_c00364{word-spacing:28.474800pt;}
.ws18_c00364{word-spacing:28.487248pt;}
.wsd_c00364{word-spacing:28.761104pt;}
.ws21_c00364{word-spacing:29.433296pt;}
.ws9_c00364{word-spacing:31.960240pt;}
.ws15_c00364{word-spacing:32.956080pt;}
.ws16_c00364{word-spacing:34.263120pt;}
.ws13_c00364{word-spacing:36.460192pt;}
.ws1f_c00364{word-spacing:39.989200pt;}
.ws20_c00364{word-spacing:47.626048pt;}
.ws1e_c00364{word-spacing:47.700736pt;}
.ws25_c00364{word-spacing:58.891488pt;}
.ws29_c00364{word-spacing:63.665296pt;}
.wsb_c00364{word-spacing:78.086304pt;}
.ws33_c00364{word-spacing:80.918224pt;}
.ws27_c00364{word-spacing:101.799744pt;}
.wsf_c00364{word-spacing:119.675072pt;}
.wse_c00364{word-spacing:126.054672pt;}
._1_c00364{margin-left:-0.989616pt;}
._0_c00364{width:0.896256pt;}
.fs1_c00364{font-size:41.388800pt;}
.fs0_c00364{font-size:62.240000pt;}
.y0_c00364{bottom:0.000000pt;}
.y2_c00364{bottom:97.547527pt;}
.y1_c00364{bottom:115.387067pt;}
.y3a_c00364{bottom:154.427067pt;}
.y39_c00364{bottom:181.307067pt;}
.y38_c00364{bottom:208.107200pt;}
.y37_c00364{bottom:234.987067pt;}
.y36_c00364{bottom:261.787067pt;}
.y35_c00364{bottom:288.667200pt;}
.y34_c00364{bottom:315.467067pt;}
.y33_c00364{bottom:342.347067pt;}
.y32_c00364{bottom:369.147200pt;}
.y1a_c00364{bottom:369.147300pt;}
.y19_c00364{bottom:396.022559pt;}
.y31_c00364{bottom:396.027200pt;}
.y18_c00364{bottom:422.902459pt;}
.y30_c00364{bottom:422.907200pt;}
.y17_c00364{bottom:449.703003pt;}
.y2f_c00364{bottom:449.707067pt;}
.y16_c00364{bottom:476.582903pt;}
.y2e_c00364{bottom:476.587067pt;}
.y15_c00364{bottom:503.383447pt;}
.y2d_c00364{bottom:503.387067pt;}
.y14_c00364{bottom:530.183991pt;}
.y2c_c00364{bottom:530.187067pt;}
.y13_c00364{bottom:556.984535pt;}
.y2b_c00364{bottom:556.987067pt;}
.y12_c00364{bottom:583.864435pt;}
.y2a_c00364{bottom:583.867067pt;}
.y11_c00364{bottom:610.664979pt;}
.y29_c00364{bottom:610.667067pt;}
.y10_c00364{bottom:637.544879pt;}
.y28_c00364{bottom:637.547067pt;}
.yf_c00364{bottom:664.345423pt;}
.y27_c00364{bottom:664.347067pt;}
.ye_c00364{bottom:691.225323pt;}
.y26_c00364{bottom:691.227067pt;}
.yd_c00364{bottom:718.025867pt;}
.y25_c00364{bottom:718.027067pt;}
.yc_c00364{bottom:744.905767pt;}
.y24_c00364{bottom:744.907067pt;}
.yb_c00364{bottom:771.706311pt;}
.y23_c00364{bottom:771.707067pt;}
.ya_c00364{bottom:798.586211pt;}
.y22_c00364{bottom:798.587067pt;}
.y9_c00364{bottom:825.386755pt;}
.y21_c00364{bottom:825.387067pt;}
.y8_c00364{bottom:852.266655pt;}
.y20_c00364{bottom:852.267067pt;}
.y1f_c00364{bottom:879.067067pt;}
.y7_c00364{bottom:879.067199pt;}
.y1e_c00364{bottom:905.947067pt;}
.y6_c00364{bottom:905.947099pt;}
.y1d_c00364{bottom:932.747067pt;}
.y5_c00364{bottom:932.747643pt;}
.y1c_c00364{bottom:959.627067pt;}
.y4_c00364{bottom:959.627543pt;}
.y1b_c00364{bottom:986.427067pt;}
.y3_c00364{bottom:986.428087pt;}
.h2_c00364{height:55.645234pt;}
.h1_c00364{height:55.797187pt;}
.h3_c00364{height:65.501931pt;}
.h4_c00364{height:65.584412pt;}
.h0_c00364{height:1122.666667pt;}
.w0_c00364{width:793.333333pt;}
.x0_c00364{left:0.000000pt;}
.x2_c00364{left:73.520052pt;}
.x3_c00364{left:121.519540pt;}
.x1_c00364{left:383.760000pt;}
.x4_c00364{left:403.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f1069cb3961bb5a4c00540df.woff2')format("woff");}.ff1_c00365{font-family:ff1_c00365;line-height:1.106934;font-style:normal;font-weight:normal;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_5f084e236e7389ee971412dd.woff2')format("woff");}.ff2_c00365{font-family:ff2_c00365;line-height:1.104492;font-style:normal;font-weight:normal;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_71f4419739fd18aeb8508b0e.woff2')format("woff");}.ff3_c00365{font-family:ff3_c00365;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00365{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00365{vertical-align:0.000000px;}
.v1_c00365{vertical-align:32.040000px;}
.lsa_c00365{letter-spacing:-0.335249px;}
.ls3_c00365{letter-spacing:-0.063018px;}
.ls7_c00365{letter-spacing:-0.056016px;}
.ls8_c00365{letter-spacing:-0.035010px;}
.ls5_c00365{letter-spacing:-0.021006px;}
.ls6_c00365{letter-spacing:-0.014004px;}
.ls9_c00365{letter-spacing:-0.007002px;}
.ls4_c00365{letter-spacing:0.000000px;}
.ls2_c00365{letter-spacing:0.007002px;}
.ls1_c00365{letter-spacing:0.035010px;}
.ls0_c00365{letter-spacing:0.042012px;}
.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:-19.430550px;}
.ws1_c00365{word-spacing:-12.609098px;}
.ws2_c00365{word-spacing:0.000000px;}
.wsa_c00365{word-spacing:1.820520px;}
.ws7_c00365{word-spacing:3.241926px;}
.ws6_c00365{word-spacing:15.432408px;}
.ws4_c00365{word-spacing:29.107314px;}
.wsb_c00365{word-spacing:37.432692px;}
.ws3_c00365{word-spacing:38.889108px;}
.ws9_c00365{word-spacing:47.200482px;}
.ws8_c00365{word-spacing:48.579876px;}
.ws5_c00365{word-spacing:146.929968px;}
._1_c00365{margin-left:-1.169334px;}
._0_c00365{width:1.155330px;}
.fc0_c00365{color:rgb(0,0,0);}
.fs1_c00365{font-size:46.562400px;}
.fs0_c00365{font-size:70.020000px;}
.y0_c00365{bottom:0.000000px;}
.y2_c00365{bottom:109.740968px;}
.y1_c00365{bottom:129.810450px;}
.y22_c00365{bottom:173.097979px;}
.y21_c00365{bottom:203.248591px;}
.y20_c00365{bottom:233.488479px;}
.y1f_c00365{bottom:263.548065px;}
.y1e_c00365{bottom:293.787952px;}
.y1d_c00365{bottom:323.938564px;}
.y1c_c00365{bottom:354.178452px;}
.y1b_c00365{bottom:384.329064px;}
.y1a_c00365{bottom:414.568952px;}
.y19_c00365{bottom:444.719563px;}
.y18_c00365{bottom:474.959451px;}
.y17_c00365{bottom:505.110063px;}
.y16_c00365{bottom:535.349950px;}
.y15_c00365{bottom:565.500563px;}
.y14_c00365{bottom:595.740450px;}
.y13_c00365{bottom:626.610450px;}
.y12_c00365{bottom:656.850450px;}
.y11_c00365{bottom:687.000450px;}
.y10_c00365{bottom:717.240450px;}
.yf_c00365{bottom:747.390450px;}
.ye_c00365{bottom:777.630450px;}
.yd_c00365{bottom:807.780450px;}
.yc_c00365{bottom:838.020450px;}
.yb_c00365{bottom:868.170450px;}
.ya_c00365{bottom:898.410450px;}
.y9_c00365{bottom:928.560450px;}
.y8_c00365{bottom:958.800450px;}
.y7_c00365{bottom:988.950450px;}
.y6_c00365{bottom:1019.190450px;}
.y5_c00365{bottom:1049.340450px;}
.y4_c00365{bottom:1079.580450px;}
.y3_c00365{bottom:1109.730450px;}
.h2_c00365{height:62.600889px;}
.h1_c00365{height:62.771836px;}
.h4_c00365{height:63.216299px;}
.h3_c00365{height:73.668786px;}
.h0_c00365{height:1263.000000px;}
.w0_c00365{width:892.500000px;}
.x0_c00365{left:0.000000px;}
.x2_c00365{left:82.710059px;}
.x4_c00365{left:136.710000px;}
.x1_c00365{left:431.730000px;}
.x5_c00365{left:446.399707px;}
.x3_c00365{left:454.230000px;}
@media print{
.v0_c00365{vertical-align:0.000000pt;}
.v1_c00365{vertical-align:28.480000pt;}
.lsa_c00365{letter-spacing:-0.297999pt;}
.ls3_c00365{letter-spacing:-0.056016pt;}
.ls7_c00365{letter-spacing:-0.049792pt;}
.ls8_c00365{letter-spacing:-0.031120pt;}
.ls5_c00365{letter-spacing:-0.018672pt;}
.ls6_c00365{letter-spacing:-0.012448pt;}
.ls9_c00365{letter-spacing:-0.006224pt;}
.ls4_c00365{letter-spacing:0.000000pt;}
.ls2_c00365{letter-spacing:0.006224pt;}
.ls1_c00365{letter-spacing:0.031120pt;}
.ls0_c00365{letter-spacing:0.037344pt;}
.ws0_c00365{word-spacing:-17.271600pt;}
.ws1_c00365{word-spacing:-11.208087pt;}
.ws2_c00365{word-spacing:0.000000pt;}
.wsa_c00365{word-spacing:1.618240pt;}
.ws7_c00365{word-spacing:2.881712pt;}
.ws6_c00365{word-spacing:13.717696pt;}
.ws4_c00365{word-spacing:25.873168pt;}
.wsb_c00365{word-spacing:33.273504pt;}
.ws3_c00365{word-spacing:34.568096pt;}
.ws9_c00365{word-spacing:41.955984pt;}
.ws8_c00365{word-spacing:43.182112pt;}
.ws5_c00365{word-spacing:130.604416pt;}
._1_c00365{margin-left:-1.039408pt;}
._0_c00365{width:1.026960pt;}
.fs1_c00365{font-size:41.388800pt;}
.fs0_c00365{font-size:62.240000pt;}
.y0_c00365{bottom:0.000000pt;}
.y2_c00365{bottom:97.547527pt;}
.y1_c00365{bottom:115.387067pt;}
.y22_c00365{bottom:153.864871pt;}
.y21_c00365{bottom:180.665415pt;}
.y20_c00365{bottom:207.545315pt;}
.y1f_c00365{bottom:234.264947pt;}
.y1e_c00365{bottom:261.144847pt;}
.y1d_c00365{bottom:287.945391pt;}
.y1c_c00365{bottom:314.825291pt;}
.y1b_c00365{bottom:341.625835pt;}
.y1a_c00365{bottom:368.505735pt;}
.y19_c00365{bottom:395.306279pt;}
.y18_c00365{bottom:422.186179pt;}
.y17_c00365{bottom:448.986723pt;}
.y16_c00365{bottom:475.866623pt;}
.y15_c00365{bottom:502.667167pt;}
.y14_c00365{bottom:529.547067pt;}
.y13_c00365{bottom:556.987067pt;}
.y12_c00365{bottom:583.867067pt;}
.y11_c00365{bottom:610.667067pt;}
.y10_c00365{bottom:637.547067pt;}
.yf_c00365{bottom:664.347067pt;}
.ye_c00365{bottom:691.227067pt;}
.yd_c00365{bottom:718.027067pt;}
.yc_c00365{bottom:744.907067pt;}
.yb_c00365{bottom:771.707067pt;}
.ya_c00365{bottom:798.587067pt;}
.y9_c00365{bottom:825.387067pt;}
.y8_c00365{bottom:852.267067pt;}
.y7_c00365{bottom:879.067067pt;}
.y6_c00365{bottom:905.947067pt;}
.y5_c00365{bottom:932.747067pt;}
.y4_c00365{bottom:959.627067pt;}
.y3_c00365{bottom:986.427067pt;}
.h2_c00365{height:55.645234pt;}
.h1_c00365{height:55.797187pt;}
.h4_c00365{height:56.192266pt;}
.h3_c00365{height:65.483366pt;}
.h0_c00365{height:1122.666667pt;}
.w0_c00365{width:793.333333pt;}
.x0_c00365{left:0.000000pt;}
.x2_c00365{left:73.520052pt;}
.x4_c00365{left:121.520000pt;}
.x1_c00365{left:383.760000pt;}
.x5_c00365{left:396.799740pt;}
.x3_c00365{left:403.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_24b384605333e96f73e75e3c.woff2')format("woff");}.ff1_c00366{font-family:ff1_c00366;line-height:1.106934;font-style:normal;font-weight:normal;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_16fe420755ada9af70471a4d.woff2')format("woff");}.ff2_c00366{font-family:ff2_c00366;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00366{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00366{vertical-align:0.000000px;}
.ls9_c00366{letter-spacing:-0.119034px;}
.ls3_c00366{letter-spacing:-0.063018px;}
.ls7_c00366{letter-spacing:-0.042012px;}
.lsa_c00366{letter-spacing:-0.035010px;}
.ls5_c00366{letter-spacing:-0.028008px;}
.ls8_c00366{letter-spacing:-0.021006px;}
.ls6_c00366{letter-spacing:-0.014004px;}
.lsb_c00366{letter-spacing:-0.007002px;}
.ls4_c00366{letter-spacing:0.000000px;}
.ls2_c00366{letter-spacing:0.021006px;}
.ls0_c00366{letter-spacing:0.042012px;}
.ls1_c00366{letter-spacing:0.126036px;}
.sc__c00366{text-shadow:none;}
.sc0_c00366{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00366{-webkit-text-stroke:0px transparent;}
.sc0_c00366{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00366{word-spacing:0.000000px;}
.ws1_c00366{word-spacing:0.014004px;}
.ws2_c00366{word-spacing:0.301086px;}
.ws4_c00366{word-spacing:0.385110px;}
.wsd_c00366{word-spacing:0.462132px;}
.ws10_c00366{word-spacing:2.513718px;}
.ws5_c00366{word-spacing:2.520720px;}
.ws3_c00366{word-spacing:3.599028px;}
.wsb_c00366{word-spacing:6.805944px;}
.wse_c00366{word-spacing:7.583166px;}
.ws9_c00366{word-spacing:9.718776px;}
.ws7_c00366{word-spacing:11.910402px;}
.ws8_c00366{word-spacing:16.545726px;}
.ws6_c00366{word-spacing:20.508858px;}
.wsc_c00366{word-spacing:21.958272px;}
.wsf_c00366{word-spacing:22.679478px;}
.wsa_c00366{word-spacing:23.407686px;}
._2_c00366{margin-left:-1.008288px;}
._0_c00366{width:1.036296px;}
._3_c00366{width:2.674764px;}
._1_c00366{width:7.926264px;}
.fc0_c00366{color:rgb(0,0,0);}
.fs0_c00366{font-size:70.020000px;}
.y0_c00366{bottom:0.000000px;}
.y2_c00366{bottom:109.740968px;}
.y1_c00366{bottom:129.810450px;}
.y19_c00366{bottom:183.627035px;}
.y18_c00366{bottom:213.866922px;}
.y17_c00366{bottom:244.017534px;}
.y16_c00366{bottom:274.257421px;}
.y15_c00366{bottom:304.408033px;}
.y14_c00366{bottom:334.647921px;}
.y13_c00366{bottom:364.798533px;}
.y12_c00366{bottom:395.038421px;}
.y11_c00366{bottom:425.189032px;}
.y10_c00366{bottom:455.428920px;}
.yf_c00366{bottom:485.579532px;}
.ye_c00366{bottom:515.819419px;}
.yd_c00366{bottom:545.970032px;}
.yc_c00366{bottom:576.209919px;}
.yb_c00366{bottom:606.269505px;}
.ya_c00366{bottom:636.509392px;}
.y9_c00366{bottom:666.660005px;}
.y8_c00366{bottom:696.899892px;}
.y7_c00366{bottom:723.360450px;}
.y6_c00366{bottom:1019.190486px;}
.y5_c00366{bottom:1049.341098px;}
.y4_c00366{bottom:1079.580985px;}
.y3_c00366{bottom:1109.731597px;}
.h1_c00366{height:62.771836px;}
.h2_c00366{height:63.216299px;}
.h0_c00366{height:1263.000000px;}
.w0_c00366{width:892.500000px;}
.x0_c00366{left:0.000000px;}
.x2_c00366{left:82.710059px;}
.x7_c00366{left:136.709244px;}
.x5_c00366{left:162.991490px;}
.x4_c00366{left:283.501161px;}
.x1_c00366{left:431.730000px;}
.x3_c00366{left:446.400940px;}
.x6_c00366{left:713.520000px;}
@media print{
.v0_c00366{vertical-align:0.000000pt;}
.ls9_c00366{letter-spacing:-0.105808pt;}
.ls3_c00366{letter-spacing:-0.056016pt;}
.ls7_c00366{letter-spacing:-0.037344pt;}
.lsa_c00366{letter-spacing:-0.031120pt;}
.ls5_c00366{letter-spacing:-0.024896pt;}
.ls8_c00366{letter-spacing:-0.018672pt;}
.ls6_c00366{letter-spacing:-0.012448pt;}
.lsb_c00366{letter-spacing:-0.006224pt;}
.ls4_c00366{letter-spacing:0.000000pt;}
.ls2_c00366{letter-spacing:0.018672pt;}
.ls0_c00366{letter-spacing:0.037344pt;}
.ls1_c00366{letter-spacing:0.112032pt;}
.ws0_c00366{word-spacing:0.000000pt;}
.ws1_c00366{word-spacing:0.012448pt;}
.ws2_c00366{word-spacing:0.267632pt;}
.ws4_c00366{word-spacing:0.342320pt;}
.wsd_c00366{word-spacing:0.410784pt;}
.ws10_c00366{word-spacing:2.234416pt;}
.ws5_c00366{word-spacing:2.240640pt;}
.ws3_c00366{word-spacing:3.199136pt;}
.wsb_c00366{word-spacing:6.049728pt;}
.wse_c00366{word-spacing:6.740592pt;}
.ws9_c00366{word-spacing:8.638912pt;}
.ws7_c00366{word-spacing:10.587024pt;}
.ws8_c00366{word-spacing:14.707312pt;}
.ws6_c00366{word-spacing:18.230096pt;}
.wsc_c00366{word-spacing:19.518464pt;}
.wsf_c00366{word-spacing:20.159536pt;}
.wsa_c00366{word-spacing:20.806832pt;}
._2_c00366{margin-left:-0.896256pt;}
._0_c00366{width:0.921152pt;}
._3_c00366{width:2.377568pt;}
._1_c00366{width:7.045568pt;}
.fs0_c00366{font-size:62.240000pt;}
.y0_c00366{bottom:0.000000pt;}
.y2_c00366{bottom:97.547527pt;}
.y1_c00366{bottom:115.387067pt;}
.y19_c00366{bottom:163.224031pt;}
.y18_c00366{bottom:190.103931pt;}
.y17_c00366{bottom:216.904475pt;}
.y16_c00366{bottom:243.784375pt;}
.y15_c00366{bottom:270.584919pt;}
.y14_c00366{bottom:297.464819pt;}
.y13_c00366{bottom:324.265363pt;}
.y12_c00366{bottom:351.145263pt;}
.y11_c00366{bottom:377.945807pt;}
.y10_c00366{bottom:404.825707pt;}
.yf_c00366{bottom:431.626251pt;}
.ye_c00366{bottom:458.506151pt;}
.yd_c00366{bottom:485.306695pt;}
.yc_c00366{bottom:512.186595pt;}
.yb_c00366{bottom:538.906227pt;}
.ya_c00366{bottom:565.786127pt;}
.y9_c00366{bottom:592.586671pt;}
.y8_c00366{bottom:619.466571pt;}
.y7_c00366{bottom:642.987067pt;}
.y6_c00366{bottom:905.947099pt;}
.y5_c00366{bottom:932.747643pt;}
.y4_c00366{bottom:959.627543pt;}
.y3_c00366{bottom:986.428087pt;}
.h1_c00366{height:55.797187pt;}
.h2_c00366{height:56.192266pt;}
.h0_c00366{height:1122.666667pt;}
.w0_c00366{width:793.333333pt;}
.x0_c00366{left:0.000000pt;}
.x2_c00366{left:73.520052pt;}
.x7_c00366{left:121.519328pt;}
.x5_c00366{left:144.881324pt;}
.x4_c00366{left:252.001032pt;}
.x1_c00366{left:383.760000pt;}
.x3_c00366{left:396.800836pt;}
.x6_c00366{left:634.240000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_355aa922db7bcb7f8895d8a7.woff2')format("woff");}.ff1_c00367{font-family:ff1_c00367;line-height:1.106934;font-style:normal;font-weight:normal;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_75e811ca99db79d6de1b4b90.woff2')format("woff");}.ff2_c00367{font-family:ff2_c00367;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00367{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00367{vertical-align:0.000000px;}
.v1_c00367{vertical-align:32.058738px;}
.ls6_c00367{letter-spacing:-0.063018px;}
.lsa_c00367{letter-spacing:-0.056016px;}
.lsd_c00367{letter-spacing:-0.035010px;}
.lsc_c00367{letter-spacing:-0.028008px;}
.lsb_c00367{letter-spacing:-0.021006px;}
.ls9_c00367{letter-spacing:-0.014004px;}
.ls8_c00367{letter-spacing:-0.007002px;}
.ls7_c00367{letter-spacing:0.000000px;}
.ls4_c00367{letter-spacing:0.007002px;}
.ls2_c00367{letter-spacing:0.014004px;}
.ls3_c00367{letter-spacing:0.021006px;}
.ls5_c00367{letter-spacing:0.023281px;}
.ls1_c00367{letter-spacing:0.028008px;}
.ls0_c00367{letter-spacing:0.035010px;}
.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:-12.967628px;}
.ws17_c00367{word-spacing:-0.028008px;}
.ws1_c00367{word-spacing:0.000000px;}
.ws8_c00367{word-spacing:1.393398px;}
.ws12_c00367{word-spacing:1.820520px;}
.ws5_c00367{word-spacing:2.156616px;}
.ws6_c00367{word-spacing:2.562732px;}
.wsf_c00367{word-spacing:2.835810px;}
.wse_c00367{word-spacing:2.863818px;}
.wsa_c00367{word-spacing:3.213918px;}
.ws13_c00367{word-spacing:3.241926px;}
.ws4_c00367{word-spacing:3.963132px;}
.ws10_c00367{word-spacing:4.285224px;}
.ws11_c00367{word-spacing:4.299228px;}
.ws3_c00367{word-spacing:4.313232px;}
.ws16_c00367{word-spacing:5.804658px;}
.ws7_c00367{word-spacing:6.483852px;}
.wsb_c00367{word-spacing:7.548156px;}
.ws9_c00367{word-spacing:8.241354px;}
.wsd_c00367{word-spacing:10.439982px;}
.ws14_c00367{word-spacing:11.161188px;}
.ws2_c00367{word-spacing:16.188624px;}
.wsc_c00367{word-spacing:16.881822px;}
.ws15_c00367{word-spacing:25.928406px;}
._1_c00367{margin-left:-1.218348px;}
._0_c00367{width:1.162332px;}
.fc0_c00367{color:rgb(0,0,0);}
.fs1_c00367{font-size:46.562400px;}
.fs0_c00367{font-size:70.020000px;}
.y0_c00367{bottom:0.000000px;}
.y2_c00367{bottom:109.740968px;}
.y1_c00367{bottom:129.810450px;}
.y22_c00367{bottom:173.728177px;}
.y21_c00367{bottom:203.968065px;}
.y20_c00367{bottom:234.118677px;}
.y1f_c00367{bottom:264.358564px;}
.y1e_c00367{bottom:294.509176px;}
.y1d_c00367{bottom:324.749064px;}
.y1c_c00367{bottom:354.899676px;}
.y1b_c00367{bottom:385.139564px;}
.y1a_c00367{bottom:415.290175px;}
.y19_c00367{bottom:445.530063px;}
.y18_c00367{bottom:475.769950px;}
.y17_c00367{bottom:505.920562px;}
.y16_c00367{bottom:536.155766px;}
.y15_c00367{bottom:566.306378px;}
.y14_c00367{bottom:596.456990px;}
.y13_c00367{bottom:626.607602px;}
.y12_c00367{bottom:656.847489px;}
.y11_c00367{bottom:686.998101px;}
.y10_c00367{bottom:717.237989px;}
.yf_c00367{bottom:747.388601px;}
.ye_c00367{bottom:777.628488px;}
.yd_c00367{bottom:807.779100px;}
.yc_c00367{bottom:838.018988px;}
.yb_c00367{bottom:868.169600px;}
.ya_c00367{bottom:898.409487px;}
.y9_c00367{bottom:928.560099px;}
.y8_c00367{bottom:958.799987px;}
.y7_c00367{bottom:988.950599px;}
.y6_c00367{bottom:1019.190486px;}
.y5_c00367{bottom:1049.341098px;}
.y4_c00367{bottom:1079.580985px;}
.y3_c00367{bottom:1109.731597px;}
.h2_c00367{height:62.600889px;}
.h1_c00367{height:62.771836px;}
.h3_c00367{height:73.687524px;}
.h0_c00367{height:1263.000000px;}
.w0_c00367{width:892.500000px;}
.x0_c00367{left:0.000000px;}
.x2_c00367{left:82.710059px;}
.x3_c00367{left:136.709483px;}
.x1_c00367{left:431.730000px;}
@media print{
.v0_c00367{vertical-align:0.000000pt;}
.v1_c00367{vertical-align:28.496656pt;}
.ls6_c00367{letter-spacing:-0.056016pt;}
.lsa_c00367{letter-spacing:-0.049792pt;}
.lsd_c00367{letter-spacing:-0.031120pt;}
.lsc_c00367{letter-spacing:-0.024896pt;}
.lsb_c00367{letter-spacing:-0.018672pt;}
.ls9_c00367{letter-spacing:-0.012448pt;}
.ls8_c00367{letter-spacing:-0.006224pt;}
.ls7_c00367{letter-spacing:0.000000pt;}
.ls4_c00367{letter-spacing:0.006224pt;}
.ls2_c00367{letter-spacing:0.012448pt;}
.ls3_c00367{letter-spacing:0.018672pt;}
.ls5_c00367{letter-spacing:0.020694pt;}
.ls1_c00367{letter-spacing:0.024896pt;}
.ls0_c00367{letter-spacing:0.031120pt;}
.ws0_c00367{word-spacing:-11.526781pt;}
.ws17_c00367{word-spacing:-0.024896pt;}
.ws1_c00367{word-spacing:0.000000pt;}
.ws8_c00367{word-spacing:1.238576pt;}
.ws12_c00367{word-spacing:1.618240pt;}
.ws5_c00367{word-spacing:1.916992pt;}
.ws6_c00367{word-spacing:2.277984pt;}
.wsf_c00367{word-spacing:2.520720pt;}
.wse_c00367{word-spacing:2.545616pt;}
.wsa_c00367{word-spacing:2.856816pt;}
.ws13_c00367{word-spacing:2.881712pt;}
.ws4_c00367{word-spacing:3.522784pt;}
.ws10_c00367{word-spacing:3.809088pt;}
.ws11_c00367{word-spacing:3.821536pt;}
.ws3_c00367{word-spacing:3.833984pt;}
.ws16_c00367{word-spacing:5.159696pt;}
.ws7_c00367{word-spacing:5.763424pt;}
.wsb_c00367{word-spacing:6.709472pt;}
.ws9_c00367{word-spacing:7.325648pt;}
.wsd_c00367{word-spacing:9.279984pt;}
.ws14_c00367{word-spacing:9.921056pt;}
.ws2_c00367{word-spacing:14.389888pt;}
.wsc_c00367{word-spacing:15.006064pt;}
.ws15_c00367{word-spacing:23.047472pt;}
._1_c00367{margin-left:-1.082976pt;}
._0_c00367{width:1.033184pt;}
.fs1_c00367{font-size:41.388800pt;}
.fs0_c00367{font-size:62.240000pt;}
.y0_c00367{bottom:0.000000pt;}
.y2_c00367{bottom:97.547527pt;}
.y1_c00367{bottom:115.387067pt;}
.y22_c00367{bottom:154.425047pt;}
.y21_c00367{bottom:181.304947pt;}
.y20_c00367{bottom:208.105491pt;}
.y1f_c00367{bottom:234.985391pt;}
.y1e_c00367{bottom:261.785935pt;}
.y1d_c00367{bottom:288.665835pt;}
.y1c_c00367{bottom:315.466379pt;}
.y1b_c00367{bottom:342.346279pt;}
.y1a_c00367{bottom:369.146823pt;}
.y19_c00367{bottom:396.026723pt;}
.y18_c00367{bottom:422.906623pt;}
.y17_c00367{bottom:449.707167pt;}
.y16_c00367{bottom:476.582903pt;}
.y15_c00367{bottom:503.383447pt;}
.y14_c00367{bottom:530.183991pt;}
.y13_c00367{bottom:556.984535pt;}
.y12_c00367{bottom:583.864435pt;}
.y11_c00367{bottom:610.664979pt;}
.y10_c00367{bottom:637.544879pt;}
.yf_c00367{bottom:664.345423pt;}
.ye_c00367{bottom:691.225323pt;}
.yd_c00367{bottom:718.025867pt;}
.yc_c00367{bottom:744.905767pt;}
.yb_c00367{bottom:771.706311pt;}
.ya_c00367{bottom:798.586211pt;}
.y9_c00367{bottom:825.386755pt;}
.y8_c00367{bottom:852.266655pt;}
.y7_c00367{bottom:879.067199pt;}
.y6_c00367{bottom:905.947099pt;}
.y5_c00367{bottom:932.747643pt;}
.y4_c00367{bottom:959.627543pt;}
.y3_c00367{bottom:986.428087pt;}
.h2_c00367{height:55.645234pt;}
.h1_c00367{height:55.797187pt;}
.h3_c00367{height:65.500022pt;}
.h0_c00367{height:1122.666667pt;}
.w0_c00367{width:793.333333pt;}
.x0_c00367{left:0.000000pt;}
.x2_c00367{left:73.520052pt;}
.x3_c00367{left:121.519540pt;}
.x1_c00367{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0c799deb033a3a1512064ae1.woff2')format("woff");}.ff1_c00368{font-family:ff1_c00368;line-height:1.106934;font-style:normal;font-weight:normal;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_bd2f386a81b8b131dbc1cba4.woff2')format("woff");}.ff2_c00368{font-family:ff2_c00368;line-height:1.104492;font-style:normal;font-weight:normal;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_8b94615692165c5d472397dc.woff2')format("woff");}.ff3_c00368{font-family:ff3_c00368;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00368{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00368{vertical-align:0.000000px;}
.v1_c00368{vertical-align:32.048568px;}
.ls5_c00368{letter-spacing:-0.063018px;}
.lsb_c00368{letter-spacing:-0.042012px;}
.lsa_c00368{letter-spacing:-0.035010px;}
.ls7_c00368{letter-spacing:-0.028008px;}
.ls9_c00368{letter-spacing:-0.021006px;}
.lsc_c00368{letter-spacing:-0.014004px;}
.ls8_c00368{letter-spacing:-0.007002px;}
.ls6_c00368{letter-spacing:0.000000px;}
.ls2_c00368{letter-spacing:0.007002px;}
.ls1_c00368{letter-spacing:0.014004px;}
.ls3_c00368{letter-spacing:0.021006px;}
.ls4_c00368{letter-spacing:0.023281px;}
.ls0_c00368{letter-spacing:0.126036px;}
.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:-12.967628px;}
.ws1_c00368{word-spacing:0.000000px;}
.wsd_c00368{word-spacing:0.007002px;}
.ws2_c00368{word-spacing:0.014004px;}
.ws10_c00368{word-spacing:0.021006px;}
.wsf_c00368{word-spacing:0.322092px;}
.wse_c00368{word-spacing:0.336096px;}
.wsa_c00368{word-spacing:4.320234px;}
.ws9_c00368{word-spacing:4.691340px;}
.ws6_c00368{word-spacing:4.698342px;}
.ws8_c00368{word-spacing:6.826950px;}
.ws7_c00368{word-spacing:6.868962px;}
.wsb_c00368{word-spacing:16.888824px;}
.wsc_c00368{word-spacing:16.923834px;}
.ws3_c00368{word-spacing:25.193196px;}
.ws4_c00368{word-spacing:33.490566px;}
.ws5_c00368{word-spacing:33.504570px;}
._1_c00368{margin-left:-1.386396px;}
._3_c00368{width:1.218348px;}
._0_c00368{width:8.283366px;}
._2_c00368{width:24.654042px;}
.fc0_c00368{color:rgb(0,0,0);}
.fs1_c00368{font-size:46.562400px;}
.fs0_c00368{font-size:70.020000px;}
.y0_c00368{bottom:0.000000px;}
.y2_c00368{bottom:109.740968px;}
.y1_c00368{bottom:129.810450px;}
.y18_c00368{bottom:190.918564px;}
.y17_c00368{bottom:221.069176px;}
.y16_c00368{bottom:251.309064px;}
.y15_c00368{bottom:281.548951px;}
.y14_c00368{bottom:311.699563px;}
.y13_c00368{bottom:341.939451px;}
.y12_c00368{bottom:372.090063px;}
.y11_c00368{bottom:402.329950px;}
.y10_c00368{bottom:432.480562px;}
.yf_c00368{bottom:462.718308px;}
.ye_c00368{bottom:492.868920px;}
.yd_c00368{bottom:523.108808px;}
.yc_c00368{bottom:553.259419px;}
.yb_c00368{bottom:583.499307px;}
.ya_c00368{bottom:613.649919px;}
.y9_c00368{bottom:643.889806px;}
.y8_c00368{bottom:674.040418px;}
.y7_c00368{bottom:704.280306px;}
.y6_c00368{bottom:734.430918px;}
.y5_c00368{bottom:760.800450px;}
.y4_c00368{bottom:1079.580985px;}
.y3_c00368{bottom:1109.731597px;}
.h2_c00368{height:62.600889px;}
.h1_c00368{height:62.771836px;}
.h3_c00368{height:63.216299px;}
.h4_c00368{height:73.677354px;}
.h0_c00368{height:1263.000000px;}
.w0_c00368{width:892.500000px;}
.x0_c00368{left:0.000000px;}
.x2_c00368{left:82.710059px;}
.x3_c00368{left:136.709483px;}
.x4_c00368{left:162.989739px;}
.x1_c00368{left:431.730000px;}
.x5_c00368{left:751.680000px;}
@media print{
.v0_c00368{vertical-align:0.000000pt;}
.v1_c00368{vertical-align:28.487616pt;}
.ls5_c00368{letter-spacing:-0.056016pt;}
.lsb_c00368{letter-spacing:-0.037344pt;}
.lsa_c00368{letter-spacing:-0.031120pt;}
.ls7_c00368{letter-spacing:-0.024896pt;}
.ls9_c00368{letter-spacing:-0.018672pt;}
.lsc_c00368{letter-spacing:-0.012448pt;}
.ls8_c00368{letter-spacing:-0.006224pt;}
.ls6_c00368{letter-spacing:0.000000pt;}
.ls2_c00368{letter-spacing:0.006224pt;}
.ls1_c00368{letter-spacing:0.012448pt;}
.ls3_c00368{letter-spacing:0.018672pt;}
.ls4_c00368{letter-spacing:0.020694pt;}
.ls0_c00368{letter-spacing:0.112032pt;}
.ws0_c00368{word-spacing:-11.526781pt;}
.ws1_c00368{word-spacing:0.000000pt;}
.wsd_c00368{word-spacing:0.006224pt;}
.ws2_c00368{word-spacing:0.012448pt;}
.ws10_c00368{word-spacing:0.018672pt;}
.wsf_c00368{word-spacing:0.286304pt;}
.wse_c00368{word-spacing:0.298752pt;}
.wsa_c00368{word-spacing:3.840208pt;}
.ws9_c00368{word-spacing:4.170080pt;}
.ws6_c00368{word-spacing:4.176304pt;}
.ws8_c00368{word-spacing:6.068400pt;}
.ws7_c00368{word-spacing:6.105744pt;}
.wsb_c00368{word-spacing:15.012288pt;}
.wsc_c00368{word-spacing:15.043408pt;}
.ws3_c00368{word-spacing:22.393952pt;}
.ws4_c00368{word-spacing:29.769392pt;}
.ws5_c00368{word-spacing:29.781840pt;}
._1_c00368{margin-left:-1.232352pt;}
._3_c00368{width:1.082976pt;}
._0_c00368{width:7.362992pt;}
._2_c00368{width:21.914704pt;}
.fs1_c00368{font-size:41.388800pt;}
.fs0_c00368{font-size:62.240000pt;}
.y0_c00368{bottom:0.000000pt;}
.y2_c00368{bottom:97.547527pt;}
.y1_c00368{bottom:115.387067pt;}
.y18_c00368{bottom:169.705391pt;}
.y17_c00368{bottom:196.505935pt;}
.y16_c00368{bottom:223.385835pt;}
.y15_c00368{bottom:250.265735pt;}
.y14_c00368{bottom:277.066279pt;}
.y13_c00368{bottom:303.946179pt;}
.y12_c00368{bottom:330.746723pt;}
.y11_c00368{bottom:357.626623pt;}
.y10_c00368{bottom:384.427167pt;}
.yf_c00368{bottom:411.305163pt;}
.ye_c00368{bottom:438.105707pt;}
.yd_c00368{bottom:464.985607pt;}
.yc_c00368{bottom:491.786151pt;}
.yb_c00368{bottom:518.666051pt;}
.ya_c00368{bottom:545.466595pt;}
.y9_c00368{bottom:572.346495pt;}
.y8_c00368{bottom:599.147039pt;}
.y7_c00368{bottom:626.026939pt;}
.y6_c00368{bottom:652.827483pt;}
.y5_c00368{bottom:676.267067pt;}
.y4_c00368{bottom:959.627543pt;}
.y3_c00368{bottom:986.428087pt;}
.h2_c00368{height:55.645234pt;}
.h1_c00368{height:55.797187pt;}
.h3_c00368{height:56.192266pt;}
.h4_c00368{height:65.490982pt;}
.h0_c00368{height:1122.666667pt;}
.w0_c00368{width:793.333333pt;}
.x0_c00368{left:0.000000pt;}
.x2_c00368{left:73.520052pt;}
.x3_c00368{left:121.519540pt;}
.x4_c00368{left:144.879768pt;}
.x1_c00368{left:383.760000pt;}
.x5_c00368{left:668.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3bccc144ec8be10e73b4d3e4.woff2')format("woff");}.ff1_c00369{font-family:ff1_c00369;line-height:1.106934;font-style:normal;font-weight:normal;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_f0d7a3f065d87a39fd238f2f.woff2')format("woff");}.ff2_c00369{font-family:ff2_c00369;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00369;src:url('chunks/assets/font_377ba1f854e2234d5de71b37.woff2')format("woff");}.ff3_c00369{font-family:ff3_c00369;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00369{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00369{vertical-align:0.000000px;}
.ls4_c00369{letter-spacing:-0.063018px;}
.ls9_c00369{letter-spacing:-0.056016px;}
.ls6_c00369{letter-spacing:-0.035010px;}
.ls8_c00369{letter-spacing:-0.028008px;}
.lsa_c00369{letter-spacing:-0.021006px;}
.lsb_c00369{letter-spacing:-0.014004px;}
.lsc_c00369{letter-spacing:-0.007002px;}
.ls5_c00369{letter-spacing:0.000000px;}
.ls3_c00369{letter-spacing:0.007002px;}
.ls2_c00369{letter-spacing:0.021006px;}
.ls7_c00369{letter-spacing:0.105030px;}
.ls0_c00369{letter-spacing:0.126036px;}
.ls1_c00369{letter-spacing:31.291938px;}
.sc__c00369{text-shadow:none;}
.sc0_c00369{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00369{-webkit-text-stroke:0px transparent;}
.sc0_c00369{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00369{word-spacing:-19.570590px;}
.ws1_c00369{word-spacing:0.000000px;}
.wsa_c00369{word-spacing:0.007002px;}
.ws5_c00369{word-spacing:0.014004px;}
.ws2_c00369{word-spacing:0.378108px;}
.wsd_c00369{word-spacing:1.407402px;}
.wse_c00369{word-spacing:1.428408px;}
.ws10_c00369{word-spacing:2.142612px;}
.ws15_c00369{word-spacing:2.156616px;}
.ws6_c00369{word-spacing:3.613032px;}
.ws7_c00369{word-spacing:3.641040px;}
.ws9_c00369{word-spacing:3.942126px;}
.wsc_c00369{word-spacing:3.949128px;}
.ws12_c00369{word-spacing:8.262360px;}
.ws11_c00369{word-spacing:8.269362px;}
.wsb_c00369{word-spacing:9.718776px;}
.ws14_c00369{word-spacing:11.875392px;}
.ws4_c00369{word-spacing:12.225492px;}
.ws13_c00369{word-spacing:12.239496px;}
.wsf_c00369{word-spacing:13.702914px;}
.ws8_c00369{word-spacing:18.023148px;}
.ws16_c00369{word-spacing:22.693482px;}
.ws3_c00369{word-spacing:31.284936px;}
._1_c00369{margin-left:-1.330380px;}
._3_c00369{width:1.015290px;}
._4_c00369{width:2.443698px;}
._0_c00369{width:7.926264px;}
._2_c00369{width:30.717774px;}
.fc0_c00369{color:rgb(0,0,0);}
.fs0_c00369{font-size:70.020000px;}
.y0_c00369{bottom:0.000000px;}
.y2_c00369{bottom:109.740968px;}
.y1_c00369{bottom:129.810450px;}
.y19_c00369{bottom:184.076841px;}
.y18_c00369{bottom:214.316728px;}
.y17_c00369{bottom:244.467340px;}
.y16_c00369{bottom:274.707228px;}
.y15_c00369{bottom:304.857840px;}
.y14_c00369{bottom:335.097727px;}
.y13_c00369{bottom:365.248339px;}
.y12_c00369{bottom:395.398951px;}
.y11_c00369{bottom:425.549563px;}
.y10_c00369{bottom:455.789451px;}
.yf_c00369{bottom:485.940063px;}
.ye_c00369{bottom:516.179950px;}
.yd_c00369{bottom:546.330563px;}
.yc_c00369{bottom:576.568281px;}
.yb_c00369{bottom:606.718893px;}
.ya_c00369{bottom:636.958780px;}
.y9_c00369{bottom:667.109393px;}
.y8_c00369{bottom:697.349280px;}
.y7_c00369{bottom:727.499892px;}
.y6_c00369{bottom:753.960450px;}
.y5_c00369{bottom:1049.341098px;}
.y4_c00369{bottom:1079.580985px;}
.y3_c00369{bottom:1109.731597px;}
.h4_c00369{height:62.600889px;}
.h1_c00369{height:62.771836px;}
.h3_c00369{height:62.780512px;}
.h2_c00369{height:63.216299px;}
.h0_c00369{height:1263.000000px;}
.w0_c00369{width:892.500000px;}
.x0_c00369{left:0.000000px;}
.x2_c00369{left:82.710059px;}
.x3_c00369{left:136.709483px;}
.x4_c00369{left:162.989739px;}
.x5_c00369{left:189.269996px;}
.x1_c00369{left:431.730000px;}
.x6_c00369{left:726.390000px;}
@media print{
.v0_c00369{vertical-align:0.000000pt;}
.ls4_c00369{letter-spacing:-0.056016pt;}
.ls9_c00369{letter-spacing:-0.049792pt;}
.ls6_c00369{letter-spacing:-0.031120pt;}
.ls8_c00369{letter-spacing:-0.024896pt;}
.lsa_c00369{letter-spacing:-0.018672pt;}
.lsb_c00369{letter-spacing:-0.012448pt;}
.lsc_c00369{letter-spacing:-0.006224pt;}
.ls5_c00369{letter-spacing:0.000000pt;}
.ls3_c00369{letter-spacing:0.006224pt;}
.ls2_c00369{letter-spacing:0.018672pt;}
.ls7_c00369{letter-spacing:0.093360pt;}
.ls0_c00369{letter-spacing:0.112032pt;}
.ls1_c00369{letter-spacing:27.815056pt;}
.ws0_c00369{word-spacing:-17.396080pt;}
.ws1_c00369{word-spacing:0.000000pt;}
.wsa_c00369{word-spacing:0.006224pt;}
.ws5_c00369{word-spacing:0.012448pt;}
.ws2_c00369{word-spacing:0.336096pt;}
.wsd_c00369{word-spacing:1.251024pt;}
.wse_c00369{word-spacing:1.269696pt;}
.ws10_c00369{word-spacing:1.904544pt;}
.ws15_c00369{word-spacing:1.916992pt;}
.ws6_c00369{word-spacing:3.211584pt;}
.ws7_c00369{word-spacing:3.236480pt;}
.ws9_c00369{word-spacing:3.504112pt;}
.wsc_c00369{word-spacing:3.510336pt;}
.ws12_c00369{word-spacing:7.344320pt;}
.ws11_c00369{word-spacing:7.350544pt;}
.wsb_c00369{word-spacing:8.638912pt;}
.ws14_c00369{word-spacing:10.555904pt;}
.ws4_c00369{word-spacing:10.867104pt;}
.ws13_c00369{word-spacing:10.879552pt;}
.wsf_c00369{word-spacing:12.180368pt;}
.ws8_c00369{word-spacing:16.020576pt;}
.ws16_c00369{word-spacing:20.171984pt;}
.ws3_c00369{word-spacing:27.808832pt;}
._1_c00369{margin-left:-1.182560pt;}
._3_c00369{width:0.902480pt;}
._4_c00369{width:2.172176pt;}
._0_c00369{width:7.045568pt;}
._2_c00369{width:27.304688pt;}
.fs0_c00369{font-size:62.240000pt;}
.y0_c00369{bottom:0.000000pt;}
.y2_c00369{bottom:97.547527pt;}
.y1_c00369{bottom:115.387067pt;}
.y19_c00369{bottom:163.623859pt;}
.y18_c00369{bottom:190.503759pt;}
.y17_c00369{bottom:217.304303pt;}
.y16_c00369{bottom:244.184203pt;}
.y15_c00369{bottom:270.984747pt;}
.y14_c00369{bottom:297.864647pt;}
.y13_c00369{bottom:324.665191pt;}
.y12_c00369{bottom:351.465735pt;}
.y11_c00369{bottom:378.266279pt;}
.y10_c00369{bottom:405.146179pt;}
.yf_c00369{bottom:431.946723pt;}
.ye_c00369{bottom:458.826623pt;}
.yd_c00369{bottom:485.627167pt;}
.yc_c00369{bottom:512.505139pt;}
.yb_c00369{bottom:539.305683pt;}
.ya_c00369{bottom:566.185583pt;}
.y9_c00369{bottom:592.986127pt;}
.y8_c00369{bottom:619.866027pt;}
.y7_c00369{bottom:646.666571pt;}
.y6_c00369{bottom:670.187067pt;}
.y5_c00369{bottom:932.747643pt;}
.y4_c00369{bottom:959.627543pt;}
.y3_c00369{bottom:986.428087pt;}
.h4_c00369{height:55.645234pt;}
.h1_c00369{height:55.797187pt;}
.h3_c00369{height:55.804899pt;}
.h2_c00369{height:56.192266pt;}
.h0_c00369{height:1122.666667pt;}
.w0_c00369{width:793.333333pt;}
.x0_c00369{left:0.000000pt;}
.x2_c00369{left:73.520052pt;}
.x3_c00369{left:121.519540pt;}
.x4_c00369{left:144.879768pt;}
.x5_c00369{left:168.239996pt;}
.x1_c00369{left:383.760000pt;}
.x6_c00369{left:645.680000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_aae216f94bdc1ea6649bef38.woff2')format("woff");}.ff1_c00370{font-family:ff1_c00370;line-height:1.106934;font-style:normal;font-weight:normal;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_ce81e89fee5a1cb9020f25f2.woff2')format("woff");}.ff2_c00370{font-family:ff2_c00370;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00370{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00370{vertical-align:0.000000px;}
.v1_c00370{vertical-align:32.403402px;}
.lsc_c00370{letter-spacing:-0.335249px;}
.ls4_c00370{letter-spacing:-0.063018px;}
.ls7_c00370{letter-spacing:-0.035010px;}
.ls9_c00370{letter-spacing:-0.028008px;}
.lsb_c00370{letter-spacing:-0.021006px;}
.ls6_c00370{letter-spacing:-0.014004px;}
.ls8_c00370{letter-spacing:-0.007002px;}
.ls5_c00370{letter-spacing:0.000000px;}
.ls1_c00370{letter-spacing:0.007002px;}
.ls2_c00370{letter-spacing:0.014004px;}
.ls0_c00370{letter-spacing:0.021006px;}
.ls3_c00370{letter-spacing:0.023281px;}
.lsa_c00370{letter-spacing:0.539154px;}
.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:-12.967628px;}
.ws1_c00370{word-spacing:-12.609098px;}
.wsf_c00370{word-spacing:-0.028008px;}
.ws2_c00370{word-spacing:0.000000px;}
.ws12_c00370{word-spacing:0.350100px;}
.ws10_c00370{word-spacing:1.463418px;}
.wse_c00370{word-spacing:1.813518px;}
.wsa_c00370{word-spacing:2.513718px;}
.ws11_c00370{word-spacing:2.527722px;}
.wsb_c00370{word-spacing:2.569734px;}
.ws16_c00370{word-spacing:4.334238px;}
.ws6_c00370{word-spacing:4.656330px;}
.ws14_c00370{word-spacing:4.670334px;}
.ws4_c00370{word-spacing:5.727636px;}
.ws3_c00370{word-spacing:5.762646px;}
.ws5_c00370{word-spacing:5.811660px;}
.ws13_c00370{word-spacing:6.833952px;}
.ws7_c00370{word-spacing:8.304372px;}
.wsc_c00370{word-spacing:8.990568px;}
.ws9_c00370{word-spacing:9.354672px;}
.ws8_c00370{word-spacing:9.361674px;}
.wsd_c00370{word-spacing:13.296798px;}
.ws17_c00370{word-spacing:18.345240px;}
.ws18_c00370{word-spacing:41.752926px;}
.ws15_c00370{word-spacing:42.110028px;}
._1_c00370{margin-left:-1.050300px;}
._0_c00370{width:1.204344px;}
.fc0_c00370{color:rgb(0,0,0);}
.fs1_c00370{font-size:46.562400px;}
.fs0_c00370{font-size:70.020000px;}
.y0_c00370{bottom:0.000000px;}
.y2_c00370{bottom:109.740968px;}
.y1_c00370{bottom:129.810450px;}
.y27_c00370{bottom:173.726314px;}
.y26_c00370{bottom:193.886823px;}
.y25_c00370{bottom:214.047331px;}
.y24_c00370{bottom:234.116814px;}
.y23_c00370{bottom:254.277322px;}
.y22_c00370{bottom:274.437831px;}
.y21_c00370{bottom:294.507313px;}
.y20_c00370{bottom:314.667822px;}
.y1f_c00370{bottom:334.828330px;}
.y1e_c00370{bottom:354.897813px;}
.y1d_c00370{bottom:375.058321px;}
.y1c_c00370{bottom:395.218830px;}
.y1b_c00370{bottom:415.288312px;}
.y1a_c00370{bottom:435.448821px;}
.y19_c00370{bottom:455.609329px;}
.y18_c00370{bottom:475.769838px;}
.y17_c00370{bottom:505.916729px;}
.y16_c00370{bottom:536.156616px;}
.y15_c00370{bottom:566.307228px;}
.y14_c00370{bottom:596.457840px;}
.y13_c00370{bottom:626.608452px;}
.y12_c00370{bottom:656.848340px;}
.y11_c00370{bottom:686.998952px;}
.y10_c00370{bottom:717.238839px;}
.yf_c00370{bottom:747.389451px;}
.ye_c00370{bottom:777.629339px;}
.yd_c00370{bottom:807.779951px;}
.yc_c00370{bottom:838.019838px;}
.yb_c00370{bottom:868.169600px;}
.ya_c00370{bottom:898.409487px;}
.y9_c00370{bottom:928.560099px;}
.y8_c00370{bottom:958.799987px;}
.y7_c00370{bottom:988.950599px;}
.y6_c00370{bottom:1019.190486px;}
.y5_c00370{bottom:1049.341098px;}
.y4_c00370{bottom:1079.580985px;}
.y3_c00370{bottom:1109.731597px;}
.h2_c00370{height:62.600889px;}
.h1_c00370{height:62.771836px;}
.h4_c00370{height:73.684272px;}
.h3_c00370{height:74.032188px;}
.h0_c00370{height:1263.000000px;}
.w0_c00370{width:892.500000px;}
.x0_c00370{left:0.000000px;}
.x2_c00370{left:82.710059px;}
.x3_c00370{left:136.709483px;}
.x1_c00370{left:431.730000px;}
@media print{
.v0_c00370{vertical-align:0.000000pt;}
.v1_c00370{vertical-align:28.803024pt;}
.lsc_c00370{letter-spacing:-0.297999pt;}
.ls4_c00370{letter-spacing:-0.056016pt;}
.ls7_c00370{letter-spacing:-0.031120pt;}
.ls9_c00370{letter-spacing:-0.024896pt;}
.lsb_c00370{letter-spacing:-0.018672pt;}
.ls6_c00370{letter-spacing:-0.012448pt;}
.ls8_c00370{letter-spacing:-0.006224pt;}
.ls5_c00370{letter-spacing:0.000000pt;}
.ls1_c00370{letter-spacing:0.006224pt;}
.ls2_c00370{letter-spacing:0.012448pt;}
.ls0_c00370{letter-spacing:0.018672pt;}
.ls3_c00370{letter-spacing:0.020694pt;}
.lsa_c00370{letter-spacing:0.479248pt;}
.ws0_c00370{word-spacing:-11.526781pt;}
.ws1_c00370{word-spacing:-11.208087pt;}
.wsf_c00370{word-spacing:-0.024896pt;}
.ws2_c00370{word-spacing:0.000000pt;}
.ws12_c00370{word-spacing:0.311200pt;}
.ws10_c00370{word-spacing:1.300816pt;}
.wse_c00370{word-spacing:1.612016pt;}
.wsa_c00370{word-spacing:2.234416pt;}
.ws11_c00370{word-spacing:2.246864pt;}
.wsb_c00370{word-spacing:2.284208pt;}
.ws16_c00370{word-spacing:3.852656pt;}
.ws6_c00370{word-spacing:4.138960pt;}
.ws14_c00370{word-spacing:4.151408pt;}
.ws4_c00370{word-spacing:5.091232pt;}
.ws3_c00370{word-spacing:5.122352pt;}
.ws5_c00370{word-spacing:5.165920pt;}
.ws13_c00370{word-spacing:6.074624pt;}
.ws7_c00370{word-spacing:7.381664pt;}
.wsc_c00370{word-spacing:7.991616pt;}
.ws9_c00370{word-spacing:8.315264pt;}
.ws8_c00370{word-spacing:8.321488pt;}
.wsd_c00370{word-spacing:11.819376pt;}
.ws17_c00370{word-spacing:16.306880pt;}
.ws18_c00370{word-spacing:37.113712pt;}
.ws15_c00370{word-spacing:37.431136pt;}
._1_c00370{margin-left:-0.933600pt;}
._0_c00370{width:1.070528pt;}
.fs1_c00370{font-size:41.388800pt;}
.fs0_c00370{font-size:62.240000pt;}
.y0_c00370{bottom:0.000000pt;}
.y2_c00370{bottom:97.547527pt;}
.y1_c00370{bottom:115.387067pt;}
.y27_c00370{bottom:154.423391pt;}
.y26_c00370{bottom:172.343843pt;}
.y25_c00370{bottom:190.264295pt;}
.y24_c00370{bottom:208.103835pt;}
.y23_c00370{bottom:226.024287pt;}
.y22_c00370{bottom:243.944739pt;}
.y21_c00370{bottom:261.784279pt;}
.y20_c00370{bottom:279.704731pt;}
.y1f_c00370{bottom:297.625183pt;}
.y1e_c00370{bottom:315.464723pt;}
.y1d_c00370{bottom:333.385175pt;}
.y1c_c00370{bottom:351.305627pt;}
.y1b_c00370{bottom:369.145167pt;}
.y1a_c00370{bottom:387.065619pt;}
.y19_c00370{bottom:404.986071pt;}
.y18_c00370{bottom:422.906523pt;}
.y17_c00370{bottom:449.703759pt;}
.y16_c00370{bottom:476.583659pt;}
.y15_c00370{bottom:503.384203pt;}
.y14_c00370{bottom:530.184747pt;}
.y13_c00370{bottom:556.985291pt;}
.y12_c00370{bottom:583.865191pt;}
.y11_c00370{bottom:610.665735pt;}
.y10_c00370{bottom:637.545635pt;}
.yf_c00370{bottom:664.346179pt;}
.ye_c00370{bottom:691.226079pt;}
.yd_c00370{bottom:718.026623pt;}
.yc_c00370{bottom:744.906523pt;}
.yb_c00370{bottom:771.706311pt;}
.ya_c00370{bottom:798.586211pt;}
.y9_c00370{bottom:825.386755pt;}
.y8_c00370{bottom:852.266655pt;}
.y7_c00370{bottom:879.067199pt;}
.y6_c00370{bottom:905.947099pt;}
.y5_c00370{bottom:932.747643pt;}
.y4_c00370{bottom:959.627543pt;}
.y3_c00370{bottom:986.428087pt;}
.h2_c00370{height:55.645234pt;}
.h1_c00370{height:55.797187pt;}
.h4_c00370{height:65.497131pt;}
.h3_c00370{height:65.806390pt;}
.h0_c00370{height:1122.666667pt;}
.w0_c00370{width:793.333333pt;}
.x0_c00370{left:0.000000pt;}
.x2_c00370{left:73.520052pt;}
.x3_c00370{left:121.519540pt;}
.x1_c00370{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c6350c5aed58d59d8a74cef4.woff2')format("woff");}.ff1_c00371{font-family:ff1_c00371;line-height:1.106934;font-style:normal;font-weight:normal;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_b8ab68571a480cfa6e3bf7ee.woff2')format("woff");}.ff2_c00371{font-family:ff2_c00371;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00371;src:url('chunks/assets/font_4c37e8286db3b645cb12fb8e.woff2')format("woff");}.ff3_c00371{font-family:ff3_c00371;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00371{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00371{vertical-align:0.000000px;}
.v1_c00371{vertical-align:32.400000px;}
.ls3_c00371{letter-spacing:-0.063018px;}
.lsa_c00371{letter-spacing:-0.049014px;}
.ls6_c00371{letter-spacing:-0.042012px;}
.ls9_c00371{letter-spacing:-0.035010px;}
.ls5_c00371{letter-spacing:-0.028008px;}
.ls7_c00371{letter-spacing:-0.021006px;}
.ls8_c00371{letter-spacing:-0.014004px;}
.lsb_c00371{letter-spacing:-0.007002px;}
.ls4_c00371{letter-spacing:0.000000px;}
.ls1_c00371{letter-spacing:0.023281px;}
.ls2_c00371{letter-spacing:0.028008px;}
.ls0_c00371{letter-spacing:0.084024px;}
.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:-19.549584px;}
.ws1_c00371{word-spacing:-12.967628px;}
.wsc_c00371{word-spacing:-0.007002px;}
.ws2_c00371{word-spacing:0.000000px;}
.ws3_c00371{word-spacing:0.014004px;}
.ws4_c00371{word-spacing:0.028008px;}
.ws11_c00371{word-spacing:4.635324px;}
.ws10_c00371{word-spacing:4.663332px;}
.wse_c00371{word-spacing:6.126750px;}
.wsb_c00371{word-spacing:6.469848px;}
.ws6_c00371{word-spacing:6.840954px;}
.ws12_c00371{word-spacing:9.011574px;}
.ws5_c00371{word-spacing:16.209630px;}
.ws7_c00371{word-spacing:19.458558px;}
.wsa_c00371{word-spacing:20.172762px;}
.wsf_c00371{word-spacing:21.615174px;}
.wsd_c00371{word-spacing:27.713916px;}
.ws8_c00371{word-spacing:30.962844px;}
.ws9_c00371{word-spacing:30.997854px;}
._2_c00371{margin-left:-1.260360px;}
._0_c00371{width:1.064304px;}
._3_c00371{width:6.595884px;}
._1_c00371{width:8.283366px;}
.fc0_c00371{color:rgb(0,0,0);}
.fs1_c00371{font-size:46.562400px;}
.fs0_c00371{font-size:70.020000px;}
.y0_c00371{bottom:0.000000px;}
.y2_c00371{bottom:109.740968px;}
.y1_c00371{bottom:129.810450px;}
.y18_c00371{bottom:162.300450px;}
.y17_c00371{bottom:192.450600px;}
.y16_c00371{bottom:222.690450px;}
.y15_c00371{bottom:252.930450px;}
.y14_c00371{bottom:283.080450px;}
.y13_c00371{bottom:313.320450px;}
.y12_c00371{bottom:343.470450px;}
.y11_c00371{bottom:373.710600px;}
.y10_c00371{bottom:403.860600px;}
.yf_c00371{bottom:434.100450px;}
.ye_c00371{bottom:464.250450px;}
.yd_c00371{bottom:494.490450px;}
.yc_c00371{bottom:524.640450px;}
.yb_c00371{bottom:554.880450px;}
.ya_c00371{bottom:585.030450px;}
.y9_c00371{bottom:615.270450px;}
.y8_c00371{bottom:645.420450px;}
.y7_c00371{bottom:675.660450px;}
.y6_c00371{bottom:1019.190450px;}
.y5_c00371{bottom:1049.340450px;}
.y4_c00371{bottom:1079.580450px;}
.y3_c00371{bottom:1109.730450px;}
.h3_c00371{height:62.600889px;}
.h1_c00371{height:62.771836px;}
.h2_c00371{height:63.216299px;}
.h5_c00371{height:74.028186px;}
.h4_c00371{height:74.028786px;}
.h0_c00371{height:1263.000000px;}
.w0_c00371{width:892.500000px;}
.x0_c00371{left:0.000000px;}
.x2_c00371{left:82.710059px;}
.x5_c00371{left:136.710000px;}
.x6_c00371{left:162.990000px;}
.x4_c00371{left:338.400000px;}
.x1_c00371{left:431.730000px;}
.x3_c00371{left:446.400000px;}
@media print{
.v0_c00371{vertical-align:0.000000pt;}
.v1_c00371{vertical-align:28.800000pt;}
.ls3_c00371{letter-spacing:-0.056016pt;}
.lsa_c00371{letter-spacing:-0.043568pt;}
.ls6_c00371{letter-spacing:-0.037344pt;}
.ls9_c00371{letter-spacing:-0.031120pt;}
.ls5_c00371{letter-spacing:-0.024896pt;}
.ls7_c00371{letter-spacing:-0.018672pt;}
.ls8_c00371{letter-spacing:-0.012448pt;}
.lsb_c00371{letter-spacing:-0.006224pt;}
.ls4_c00371{letter-spacing:0.000000pt;}
.ls1_c00371{letter-spacing:0.020694pt;}
.ls2_c00371{letter-spacing:0.024896pt;}
.ls0_c00371{letter-spacing:0.074688pt;}
.ws0_c00371{word-spacing:-17.377408pt;}
.ws1_c00371{word-spacing:-11.526781pt;}
.wsc_c00371{word-spacing:-0.006224pt;}
.ws2_c00371{word-spacing:0.000000pt;}
.ws3_c00371{word-spacing:0.012448pt;}
.ws4_c00371{word-spacing:0.024896pt;}
.ws11_c00371{word-spacing:4.120288pt;}
.ws10_c00371{word-spacing:4.145184pt;}
.wse_c00371{word-spacing:5.446000pt;}
.wsb_c00371{word-spacing:5.750976pt;}
.ws6_c00371{word-spacing:6.080848pt;}
.ws12_c00371{word-spacing:8.010288pt;}
.ws5_c00371{word-spacing:14.408560pt;}
.ws7_c00371{word-spacing:17.296496pt;}
.wsa_c00371{word-spacing:17.931344pt;}
.wsf_c00371{word-spacing:19.213488pt;}
.wsd_c00371{word-spacing:24.634592pt;}
.ws8_c00371{word-spacing:27.522528pt;}
.ws9_c00371{word-spacing:27.553648pt;}
._2_c00371{margin-left:-1.120320pt;}
._0_c00371{width:0.946048pt;}
._3_c00371{width:5.863008pt;}
._1_c00371{width:7.362992pt;}
.fs1_c00371{font-size:41.388800pt;}
.fs0_c00371{font-size:62.240000pt;}
.y0_c00371{bottom:0.000000pt;}
.y2_c00371{bottom:97.547527pt;}
.y1_c00371{bottom:115.387067pt;}
.y18_c00371{bottom:144.267067pt;}
.y17_c00371{bottom:171.067200pt;}
.y16_c00371{bottom:197.947067pt;}
.y15_c00371{bottom:224.827067pt;}
.y14_c00371{bottom:251.627067pt;}
.y13_c00371{bottom:278.507067pt;}
.y12_c00371{bottom:305.307067pt;}
.y11_c00371{bottom:332.187200pt;}
.y10_c00371{bottom:358.987200pt;}
.yf_c00371{bottom:385.867067pt;}
.ye_c00371{bottom:412.667067pt;}
.yd_c00371{bottom:439.547067pt;}
.yc_c00371{bottom:466.347067pt;}
.yb_c00371{bottom:493.227067pt;}
.ya_c00371{bottom:520.027067pt;}
.y9_c00371{bottom:546.907067pt;}
.y8_c00371{bottom:573.707067pt;}
.y7_c00371{bottom:600.587067pt;}
.y6_c00371{bottom:905.947067pt;}
.y5_c00371{bottom:932.747067pt;}
.y4_c00371{bottom:959.627067pt;}
.y3_c00371{bottom:986.427067pt;}
.h3_c00371{height:55.645234pt;}
.h1_c00371{height:55.797187pt;}
.h2_c00371{height:56.192266pt;}
.h5_c00371{height:65.802832pt;}
.h4_c00371{height:65.803366pt;}
.h0_c00371{height:1122.666667pt;}
.w0_c00371{width:793.333333pt;}
.x0_c00371{left:0.000000pt;}
.x2_c00371{left:73.520052pt;}
.x5_c00371{left:121.520000pt;}
.x6_c00371{left:144.880000pt;}
.x4_c00371{left:300.800000pt;}
.x1_c00371{left:383.760000pt;}
.x3_c00371{left:396.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_dda8dabb476c5d1ca3094118.woff2')format("woff");}.ff1_c00372{font-family:ff1_c00372;line-height:1.106934;font-style:normal;font-weight:normal;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_ce05ee13ecd7fd0eafaf1a03.woff2')format("woff");}.ff2_c00372{font-family:ff2_c00372;line-height:1.104492;font-style:normal;font-weight:normal;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_2d33fa2c39bb9adafadf446f.woff2')format("woff");}.ff3_c00372{font-family:ff3_c00372;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00372{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00372{vertical-align:0.000000px;}
.v1_c00372{vertical-align:32.040000px;}
.ls4_c00372{letter-spacing:-0.063018px;}
.ls7_c00372{letter-spacing:-0.042012px;}
.ls9_c00372{letter-spacing:-0.035010px;}
.ls6_c00372{letter-spacing:-0.028008px;}
.lsa_c00372{letter-spacing:-0.021006px;}
.ls8_c00372{letter-spacing:-0.014004px;}
.ls5_c00372{letter-spacing:0.000000px;}
.ls3_c00372{letter-spacing:0.007002px;}
.ls0_c00372{letter-spacing:0.021006px;}
.ls1_c00372{letter-spacing:0.023281px;}
.ls2_c00372{letter-spacing:0.084024px;}
.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;}
}
.ws1_c00372{word-spacing:-19.549584px;}
.ws0_c00372{word-spacing:-12.967628px;}
.ws2_c00372{word-spacing:0.000000px;}
.ws7_c00372{word-spacing:0.021006px;}
.wse_c00372{word-spacing:0.336096px;}
.wsd_c00372{word-spacing:0.371106px;}
.ws4_c00372{word-spacing:0.385110px;}
.ws19_c00372{word-spacing:1.057302px;}
.ws18_c00372{word-spacing:1.099314px;}
.ws17_c00372{word-spacing:1.813518px;}
.wsc_c00372{word-spacing:2.506716px;}
.ws11_c00372{word-spacing:3.606030px;}
.ws12_c00372{word-spacing:3.627036px;}
.ws9_c00372{word-spacing:5.384538px;}
.ws8_c00372{word-spacing:5.412546px;}
.ws16_c00372{word-spacing:6.847956px;}
.ws15_c00372{word-spacing:6.861960px;}
.ws10_c00372{word-spacing:7.548156px;}
.ws14_c00372{word-spacing:8.248356px;}
.ws13_c00372{word-spacing:8.283366px;}
.ws3_c00372{word-spacing:9.011574px;}
.wsa_c00372{word-spacing:10.797084px;}
.ws6_c00372{word-spacing:14.725206px;}
.ws5_c00372{word-spacing:14.746212px;}
.wsf_c00372{word-spacing:15.481422px;}
.wsb_c00372{word-spacing:21.237066px;}
._1_c00372{margin-left:-1.162332px;}
._0_c00372{width:1.169334px;}
._2_c00372{width:8.283366px;}
.fc0_c00372{color:rgb(0,0,0);}
.fs1_c00372{font-size:46.562400px;}
.fs0_c00372{font-size:70.020000px;}
.y0_c00372{bottom:0.000000px;}
.y2_c00372{bottom:109.740968px;}
.y1_c00372{bottom:129.810450px;}
.y1a_c00372{bottom:167.340450px;}
.y19_c00372{bottom:197.580450px;}
.y18_c00372{bottom:227.730450px;}
.y17_c00372{bottom:257.970450px;}
.y16_c00372{bottom:288.120450px;}
.y15_c00372{bottom:318.360450px;}
.y14_c00372{bottom:348.510450px;}
.y13_c00372{bottom:378.750600px;}
.y12_c00372{bottom:408.900450px;}
.y11_c00372{bottom:439.140450px;}
.y10_c00372{bottom:469.380450px;}
.yf_c00372{bottom:499.530600px;}
.ye_c00372{bottom:529.770450px;}
.yd_c00372{bottom:559.920450px;}
.yc_c00372{bottom:586.290450px;}
.yb_c00372{bottom:868.170450px;}
.ya_c00372{bottom:898.410450px;}
.y9_c00372{bottom:928.560450px;}
.y8_c00372{bottom:958.800450px;}
.y7_c00372{bottom:988.950450px;}
.y6_c00372{bottom:1019.190450px;}
.y5_c00372{bottom:1049.340450px;}
.y4_c00372{bottom:1079.580450px;}
.y3_c00372{bottom:1109.730450px;}
.h2_c00372{height:62.600889px;}
.h1_c00372{height:62.771836px;}
.h4_c00372{height:63.216299px;}
.h3_c00372{height:73.668786px;}
.h0_c00372{height:1263.000000px;}
.w0_c00372{width:892.500000px;}
.x0_c00372{left:0.000000px;}
.x2_c00372{left:82.710059px;}
.x3_c00372{left:136.710000px;}
.x4_c00372{left:162.990000px;}
.x5_c00372{left:189.270000px;}
.x1_c00372{left:431.730000px;}
.x6_c00372{left:713.610000px;}
@media print{
.v0_c00372{vertical-align:0.000000pt;}
.v1_c00372{vertical-align:28.480000pt;}
.ls4_c00372{letter-spacing:-0.056016pt;}
.ls7_c00372{letter-spacing:-0.037344pt;}
.ls9_c00372{letter-spacing:-0.031120pt;}
.ls6_c00372{letter-spacing:-0.024896pt;}
.lsa_c00372{letter-spacing:-0.018672pt;}
.ls8_c00372{letter-spacing:-0.012448pt;}
.ls5_c00372{letter-spacing:0.000000pt;}
.ls3_c00372{letter-spacing:0.006224pt;}
.ls0_c00372{letter-spacing:0.018672pt;}
.ls1_c00372{letter-spacing:0.020694pt;}
.ls2_c00372{letter-spacing:0.074688pt;}
.ws1_c00372{word-spacing:-17.377408pt;}
.ws0_c00372{word-spacing:-11.526781pt;}
.ws2_c00372{word-spacing:0.000000pt;}
.ws7_c00372{word-spacing:0.018672pt;}
.wse_c00372{word-spacing:0.298752pt;}
.wsd_c00372{word-spacing:0.329872pt;}
.ws4_c00372{word-spacing:0.342320pt;}
.ws19_c00372{word-spacing:0.939824pt;}
.ws18_c00372{word-spacing:0.977168pt;}
.ws17_c00372{word-spacing:1.612016pt;}
.wsc_c00372{word-spacing:2.228192pt;}
.ws11_c00372{word-spacing:3.205360pt;}
.ws12_c00372{word-spacing:3.224032pt;}
.ws9_c00372{word-spacing:4.786256pt;}
.ws8_c00372{word-spacing:4.811152pt;}
.ws16_c00372{word-spacing:6.087072pt;}
.ws15_c00372{word-spacing:6.099520pt;}
.ws10_c00372{word-spacing:6.709472pt;}
.ws14_c00372{word-spacing:7.331872pt;}
.ws13_c00372{word-spacing:7.362992pt;}
.ws3_c00372{word-spacing:8.010288pt;}
.wsa_c00372{word-spacing:9.597408pt;}
.ws6_c00372{word-spacing:13.089072pt;}
.ws5_c00372{word-spacing:13.107744pt;}
.wsf_c00372{word-spacing:13.761264pt;}
.wsb_c00372{word-spacing:18.877392pt;}
._1_c00372{margin-left:-1.033184pt;}
._0_c00372{width:1.039408pt;}
._2_c00372{width:7.362992pt;}
.fs1_c00372{font-size:41.388800pt;}
.fs0_c00372{font-size:62.240000pt;}
.y0_c00372{bottom:0.000000pt;}
.y2_c00372{bottom:97.547527pt;}
.y1_c00372{bottom:115.387067pt;}
.y1a_c00372{bottom:148.747067pt;}
.y19_c00372{bottom:175.627067pt;}
.y18_c00372{bottom:202.427067pt;}
.y17_c00372{bottom:229.307067pt;}
.y16_c00372{bottom:256.107067pt;}
.y15_c00372{bottom:282.987067pt;}
.y14_c00372{bottom:309.787067pt;}
.y13_c00372{bottom:336.667200pt;}
.y12_c00372{bottom:363.467067pt;}
.y11_c00372{bottom:390.347067pt;}
.y10_c00372{bottom:417.227067pt;}
.yf_c00372{bottom:444.027200pt;}
.ye_c00372{bottom:470.907067pt;}
.yd_c00372{bottom:497.707067pt;}
.yc_c00372{bottom:521.147067pt;}
.yb_c00372{bottom:771.707067pt;}
.ya_c00372{bottom:798.587067pt;}
.y9_c00372{bottom:825.387067pt;}
.y8_c00372{bottom:852.267067pt;}
.y7_c00372{bottom:879.067067pt;}
.y6_c00372{bottom:905.947067pt;}
.y5_c00372{bottom:932.747067pt;}
.y4_c00372{bottom:959.627067pt;}
.y3_c00372{bottom:986.427067pt;}
.h2_c00372{height:55.645234pt;}
.h1_c00372{height:55.797187pt;}
.h4_c00372{height:56.192266pt;}
.h3_c00372{height:65.483366pt;}
.h0_c00372{height:1122.666667pt;}
.w0_c00372{width:793.333333pt;}
.x0_c00372{left:0.000000pt;}
.x2_c00372{left:73.520052pt;}
.x3_c00372{left:121.520000pt;}
.x4_c00372{left:144.880000pt;}
.x5_c00372{left:168.240000pt;}
.x1_c00372{left:383.760000pt;}
.x6_c00372{left:634.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a130e59c00dc4c8b33eab221.woff2')format("woff");}.ff1_c00373{font-family:ff1_c00373;line-height:1.106934;font-style:normal;font-weight:normal;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_2ba7601d84fa11b1028324f9.woff2')format("woff");}.ff2_c00373{font-family:ff2_c00373;line-height:1.104492;font-style:normal;font-weight:normal;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_71f4419739fd18aeb8508b0e.woff2')format("woff");}.ff3_c00373{font-family:ff3_c00373;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00373{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00373{vertical-align:0.000000px;}
.v1_c00373{vertical-align:32.040000px;}
.ls6_c00373{letter-spacing:-0.063018px;}
.lsb_c00373{letter-spacing:-0.042012px;}
.lsd_c00373{letter-spacing:-0.035010px;}
.ls9_c00373{letter-spacing:-0.028008px;}
.ls8_c00373{letter-spacing:-0.021006px;}
.lsc_c00373{letter-spacing:-0.014004px;}
.lsa_c00373{letter-spacing:-0.007002px;}
.ls7_c00373{letter-spacing:0.000000px;}
.ls3_c00373{letter-spacing:0.007002px;}
.ls1_c00373{letter-spacing:0.014004px;}
.ls5_c00373{letter-spacing:0.021006px;}
.ls2_c00373{letter-spacing:0.023281px;}
.ls0_c00373{letter-spacing:0.035010px;}
.ls4_c00373{letter-spacing:0.336096px;}
.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:-12.967628px;}
.ws1_c00373{word-spacing:0.000000px;}
.ws1b_c00373{word-spacing:0.007002px;}
.ws10_c00373{word-spacing:0.014004px;}
.ws16_c00373{word-spacing:0.343098px;}
.ws4_c00373{word-spacing:0.364104px;}
.ws11_c00373{word-spacing:1.050300px;}
.ws9_c00373{word-spacing:1.421406px;}
.ws1a_c00373{word-spacing:1.435410px;}
.ws8_c00373{word-spacing:1.470420px;}
.ws7_c00373{word-spacing:1.778508px;}
.ws18_c00373{word-spacing:2.520720px;}
.ws15_c00373{word-spacing:2.877822px;}
.wsa_c00373{word-spacing:3.227922px;}
.ws17_c00373{word-spacing:5.034438px;}
.wsc_c00373{word-spacing:7.590168px;}
.ws13_c00373{word-spacing:8.962560px;}
.ws14_c00373{word-spacing:9.018576px;}
.wsd_c00373{word-spacing:10.068876px;}
.wse_c00373{word-spacing:10.103886px;}
.ws12_c00373{word-spacing:10.769076px;}
.ws2_c00373{word-spacing:13.989996px;}
.ws3_c00373{word-spacing:14.011002px;}
.wsf_c00373{word-spacing:15.481422px;}
.wsb_c00373{word-spacing:16.552728px;}
.ws6_c00373{word-spacing:21.951270px;}
.ws5_c00373{word-spacing:22.336380px;}
.ws19_c00373{word-spacing:24.485994px;}
._2_c00373{margin-left:-21.965274px;}
._1_c00373{margin-left:-1.260360px;}
._0_c00373{width:1.309374px;}
.fc0_c00373{color:rgb(0,0,0);}
.fs1_c00373{font-size:46.562400px;}
.fs0_c00373{font-size:70.020000px;}
.y0_c00373{bottom:0.000000px;}
.y2_c00373{bottom:109.740968px;}
.y1_c00373{bottom:129.810450px;}
.y22_c00373{bottom:173.730450px;}
.y21_c00373{bottom:203.970450px;}
.y20_c00373{bottom:234.120600px;}
.y1f_c00373{bottom:264.360450px;}
.y1e_c00373{bottom:294.510450px;}
.y1d_c00373{bottom:324.750600px;}
.y1c_c00373{bottom:354.900450px;}
.y1b_c00373{bottom:385.140450px;}
.y1a_c00373{bottom:415.290600px;}
.y19_c00373{bottom:445.530600px;}
.y18_c00373{bottom:475.770600px;}
.y17_c00373{bottom:505.920450px;}
.y16_c00373{bottom:536.160450px;}
.y15_c00373{bottom:566.310450px;}
.y14_c00373{bottom:596.460450px;}
.y13_c00373{bottom:626.610450px;}
.y12_c00373{bottom:656.850450px;}
.y11_c00373{bottom:687.000450px;}
.y10_c00373{bottom:717.240450px;}
.yf_c00373{bottom:747.390450px;}
.ye_c00373{bottom:777.630450px;}
.yd_c00373{bottom:807.780450px;}
.yc_c00373{bottom:838.020450px;}
.yb_c00373{bottom:868.170450px;}
.ya_c00373{bottom:898.410450px;}
.y9_c00373{bottom:928.560450px;}
.y8_c00373{bottom:958.800450px;}
.y7_c00373{bottom:988.950450px;}
.y6_c00373{bottom:1019.190450px;}
.y5_c00373{bottom:1049.340450px;}
.y4_c00373{bottom:1079.580450px;}
.y3_c00373{bottom:1109.730450px;}
.h2_c00373{height:62.600889px;}
.h1_c00373{height:62.771836px;}
.h5_c00373{height:63.216299px;}
.h4_c00373{height:73.668186px;}
.h3_c00373{height:73.668786px;}
.h0_c00373{height:1263.000000px;}
.w0_c00373{width:892.500000px;}
.x0_c00373{left:0.000000px;}
.x2_c00373{left:82.710059px;}
.x3_c00373{left:136.710000px;}
.x1_c00373{left:431.730000px;}
@media print{
.v0_c00373{vertical-align:0.000000pt;}
.v1_c00373{vertical-align:28.480000pt;}
.ls6_c00373{letter-spacing:-0.056016pt;}
.lsb_c00373{letter-spacing:-0.037344pt;}
.lsd_c00373{letter-spacing:-0.031120pt;}
.ls9_c00373{letter-spacing:-0.024896pt;}
.ls8_c00373{letter-spacing:-0.018672pt;}
.lsc_c00373{letter-spacing:-0.012448pt;}
.lsa_c00373{letter-spacing:-0.006224pt;}
.ls7_c00373{letter-spacing:0.000000pt;}
.ls3_c00373{letter-spacing:0.006224pt;}
.ls1_c00373{letter-spacing:0.012448pt;}
.ls5_c00373{letter-spacing:0.018672pt;}
.ls2_c00373{letter-spacing:0.020694pt;}
.ls0_c00373{letter-spacing:0.031120pt;}
.ls4_c00373{letter-spacing:0.298752pt;}
.ws0_c00373{word-spacing:-11.526781pt;}
.ws1_c00373{word-spacing:0.000000pt;}
.ws1b_c00373{word-spacing:0.006224pt;}
.ws10_c00373{word-spacing:0.012448pt;}
.ws16_c00373{word-spacing:0.304976pt;}
.ws4_c00373{word-spacing:0.323648pt;}
.ws11_c00373{word-spacing:0.933600pt;}
.ws9_c00373{word-spacing:1.263472pt;}
.ws1a_c00373{word-spacing:1.275920pt;}
.ws8_c00373{word-spacing:1.307040pt;}
.ws7_c00373{word-spacing:1.580896pt;}
.ws18_c00373{word-spacing:2.240640pt;}
.ws15_c00373{word-spacing:2.558064pt;}
.wsa_c00373{word-spacing:2.869264pt;}
.ws17_c00373{word-spacing:4.475056pt;}
.wsc_c00373{word-spacing:6.746816pt;}
.ws13_c00373{word-spacing:7.966720pt;}
.ws14_c00373{word-spacing:8.016512pt;}
.wsd_c00373{word-spacing:8.950112pt;}
.wse_c00373{word-spacing:8.981232pt;}
.ws12_c00373{word-spacing:9.572512pt;}
.ws2_c00373{word-spacing:12.435552pt;}
.ws3_c00373{word-spacing:12.454224pt;}
.wsf_c00373{word-spacing:13.761264pt;}
.wsb_c00373{word-spacing:14.713536pt;}
.ws6_c00373{word-spacing:19.512240pt;}
.ws5_c00373{word-spacing:19.854560pt;}
.ws19_c00373{word-spacing:21.765328pt;}
._2_c00373{margin-left:-19.524688pt;}
._1_c00373{margin-left:-1.120320pt;}
._0_c00373{width:1.163888pt;}
.fs1_c00373{font-size:41.388800pt;}
.fs0_c00373{font-size:62.240000pt;}
.y0_c00373{bottom:0.000000pt;}
.y2_c00373{bottom:97.547527pt;}
.y1_c00373{bottom:115.387067pt;}
.y22_c00373{bottom:154.427067pt;}
.y21_c00373{bottom:181.307067pt;}
.y20_c00373{bottom:208.107200pt;}
.y1f_c00373{bottom:234.987067pt;}
.y1e_c00373{bottom:261.787067pt;}
.y1d_c00373{bottom:288.667200pt;}
.y1c_c00373{bottom:315.467067pt;}
.y1b_c00373{bottom:342.347067pt;}
.y1a_c00373{bottom:369.147200pt;}
.y19_c00373{bottom:396.027200pt;}
.y18_c00373{bottom:422.907200pt;}
.y17_c00373{bottom:449.707067pt;}
.y16_c00373{bottom:476.587067pt;}
.y15_c00373{bottom:503.387067pt;}
.y14_c00373{bottom:530.187067pt;}
.y13_c00373{bottom:556.987067pt;}
.y12_c00373{bottom:583.867067pt;}
.y11_c00373{bottom:610.667067pt;}
.y10_c00373{bottom:637.547067pt;}
.yf_c00373{bottom:664.347067pt;}
.ye_c00373{bottom:691.227067pt;}
.yd_c00373{bottom:718.027067pt;}
.yc_c00373{bottom:744.907067pt;}
.yb_c00373{bottom:771.707067pt;}
.ya_c00373{bottom:798.587067pt;}
.y9_c00373{bottom:825.387067pt;}
.y8_c00373{bottom:852.267067pt;}
.y7_c00373{bottom:879.067067pt;}
.y6_c00373{bottom:905.947067pt;}
.y5_c00373{bottom:932.747067pt;}
.y4_c00373{bottom:959.627067pt;}
.y3_c00373{bottom:986.427067pt;}
.h2_c00373{height:55.645234pt;}
.h1_c00373{height:55.797187pt;}
.h5_c00373{height:56.192266pt;}
.h4_c00373{height:65.482832pt;}
.h3_c00373{height:65.483366pt;}
.h0_c00373{height:1122.666667pt;}
.w0_c00373{width:793.333333pt;}
.x0_c00373{left:0.000000pt;}
.x2_c00373{left:73.520052pt;}
.x3_c00373{left:121.520000pt;}
.x1_c00373{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_88c71fdf073dfec0257195f4.woff2')format("woff");}.ff1_c00374{font-family:ff1_c00374;line-height:1.106934;font-style:normal;font-weight:normal;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_f7c83be182ea99621f7b3c24.woff2')format("woff");}.ff2_c00374{font-family:ff2_c00374;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00374{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00374{vertical-align:0.000000px;}
.ls2_c00374{letter-spacing:-0.063018px;}
.ls4_c00374{letter-spacing:-0.049014px;}
.ls9_c00374{letter-spacing:-0.035010px;}
.ls6_c00374{letter-spacing:-0.028008px;}
.ls8_c00374{letter-spacing:-0.021006px;}
.ls7_c00374{letter-spacing:-0.014004px;}
.ls5_c00374{letter-spacing:-0.007002px;}
.ls3_c00374{letter-spacing:0.000000px;}
.ls1_c00374{letter-spacing:0.007002px;}
.ls0_c00374{letter-spacing:0.126036px;}
.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:0.000000px;}
.wsb_c00374{word-spacing:0.014004px;}
.wsa_c00374{word-spacing:0.021006px;}
.ws1_c00374{word-spacing:0.392112px;}
.ws9_c00374{word-spacing:3.262932px;}
.ws5_c00374{word-spacing:6.819948px;}
.ws6_c00374{word-spacing:6.840954px;}
.ws8_c00374{word-spacing:11.532294px;}
.ws7_c00374{word-spacing:12.603600px;}
.ws4_c00374{word-spacing:15.131322px;}
.ws3_c00374{word-spacing:30.227634px;}
.ws2_c00374{word-spacing:32.034150px;}
._0_c00374{margin-left:-1.386396px;}
._2_c00374{width:1.001286px;}
._1_c00374{width:31.494996px;}
.fc0_c00374{color:rgb(0,0,0);}
.fs0_c00374{font-size:70.020000px;}
.y0_c00374{bottom:0.000000px;}
.y2_c00374{bottom:109.740968px;}
.y1_c00374{bottom:129.810450px;}
.y1f_c00374{bottom:153.657378px;}
.y1e_c00374{bottom:173.726861px;}
.y1d_c00374{bottom:193.887369px;}
.y1c_c00374{bottom:214.047878px;}
.y1b_c00374{bottom:234.117360px;}
.y1a_c00374{bottom:254.277869px;}
.y19_c00374{bottom:274.438377px;}
.y18_c00374{bottom:294.418584px;}
.y17_c00374{bottom:314.579093px;}
.y16_c00374{bottom:334.739601px;}
.y15_c00374{bottom:354.809084px;}
.y14_c00374{bottom:374.969592px;}
.y13_c00374{bottom:395.130101px;}
.y12_c00374{bottom:415.290609px;}
.y11_c00374{bottom:435.360092px;}
.y10_c00374{bottom:455.520600px;}
.yf_c00374{bottom:476.400450px;}
.ye_c00374{bottom:506.640450px;}
.yd_c00374{bottom:536.790450px;}
.yc_c00374{bottom:567.030450px;}
.yb_c00374{bottom:597.180450px;}
.ya_c00374{bottom:627.420450px;}
.y9_c00374{bottom:657.570450px;}
.y8_c00374{bottom:687.810450px;}
.y7_c00374{bottom:717.960450px;}
.y6_c00374{bottom:748.200450px;}
.y5_c00374{bottom:774.570450px;}
.y4_c00374{bottom:1079.580450px;}
.y3_c00374{bottom:1109.730450px;}
.h1_c00374{height:62.771836px;}
.h2_c00374{height:63.216299px;}
.h0_c00374{height:1263.000000px;}
.w0_c00374{width:892.500000px;}
.x0_c00374{left:0.000000px;}
.x2_c00374{left:82.710059px;}
.x3_c00374{left:136.710000px;}
.x5_c00374{left:189.270000px;}
.x6_c00374{left:339.750000px;}
.x1_c00374{left:431.730000px;}
.x4_c00374{left:726.300000px;}
@media print{
.v0_c00374{vertical-align:0.000000pt;}
.ls2_c00374{letter-spacing:-0.056016pt;}
.ls4_c00374{letter-spacing:-0.043568pt;}
.ls9_c00374{letter-spacing:-0.031120pt;}
.ls6_c00374{letter-spacing:-0.024896pt;}
.ls8_c00374{letter-spacing:-0.018672pt;}
.ls7_c00374{letter-spacing:-0.012448pt;}
.ls5_c00374{letter-spacing:-0.006224pt;}
.ls3_c00374{letter-spacing:0.000000pt;}
.ls1_c00374{letter-spacing:0.006224pt;}
.ls0_c00374{letter-spacing:0.112032pt;}
.ws0_c00374{word-spacing:0.000000pt;}
.wsb_c00374{word-spacing:0.012448pt;}
.wsa_c00374{word-spacing:0.018672pt;}
.ws1_c00374{word-spacing:0.348544pt;}
.ws9_c00374{word-spacing:2.900384pt;}
.ws5_c00374{word-spacing:6.062176pt;}
.ws6_c00374{word-spacing:6.080848pt;}
.ws8_c00374{word-spacing:10.250928pt;}
.ws7_c00374{word-spacing:11.203200pt;}
.ws4_c00374{word-spacing:13.450064pt;}
.ws3_c00374{word-spacing:26.869008pt;}
.ws2_c00374{word-spacing:28.474800pt;}
._0_c00374{margin-left:-1.232352pt;}
._2_c00374{width:0.890032pt;}
._1_c00374{width:27.995552pt;}
.fs0_c00374{font-size:62.240000pt;}
.y0_c00374{bottom:0.000000pt;}
.y2_c00374{bottom:97.547527pt;}
.y1_c00374{bottom:115.387067pt;}
.y1f_c00374{bottom:136.584336pt;}
.y1e_c00374{bottom:154.423876pt;}
.y1d_c00374{bottom:172.344328pt;}
.y1c_c00374{bottom:190.264780pt;}
.y1b_c00374{bottom:208.104320pt;}
.y1a_c00374{bottom:226.024772pt;}
.y19_c00374{bottom:243.945224pt;}
.y18_c00374{bottom:261.705408pt;}
.y17_c00374{bottom:279.625860pt;}
.y16_c00374{bottom:297.546312pt;}
.y15_c00374{bottom:315.385852pt;}
.y14_c00374{bottom:333.306304pt;}
.y13_c00374{bottom:351.226756pt;}
.y12_c00374{bottom:369.147208pt;}
.y11_c00374{bottom:386.986748pt;}
.y10_c00374{bottom:404.907200pt;}
.yf_c00374{bottom:423.467067pt;}
.ye_c00374{bottom:450.347067pt;}
.yd_c00374{bottom:477.147067pt;}
.yc_c00374{bottom:504.027067pt;}
.yb_c00374{bottom:530.827067pt;}
.ya_c00374{bottom:557.707067pt;}
.y9_c00374{bottom:584.507067pt;}
.y8_c00374{bottom:611.387067pt;}
.y7_c00374{bottom:638.187067pt;}
.y6_c00374{bottom:665.067067pt;}
.y5_c00374{bottom:688.507067pt;}
.y4_c00374{bottom:959.627067pt;}
.y3_c00374{bottom:986.427067pt;}
.h1_c00374{height:55.797187pt;}
.h2_c00374{height:56.192266pt;}
.h0_c00374{height:1122.666667pt;}
.w0_c00374{width:793.333333pt;}
.x0_c00374{left:0.000000pt;}
.x2_c00374{left:73.520052pt;}
.x3_c00374{left:121.520000pt;}
.x5_c00374{left:168.240000pt;}
.x6_c00374{left:302.000000pt;}
.x1_c00374{left:383.760000pt;}
.x4_c00374{left:645.600000pt;}
}





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

.ir_c00375:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00375{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00375;src:url('chunks/assets/font_ddafa5b2a7414f8053d28a52.woff2')format("woff");}.ff1_c00375{font-family:ff1_c00375;line-height:1.106934;font-style:normal;font-weight:normal;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_2d79b6d53492b2e9a0e260bf.woff2')format("woff");}.ff2_c00375{font-family:ff2_c00375;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00375;src:url('chunks/assets/font_ff9e26442498cef4b49bed97.woff2')format("woff");}.ff3_c00375{font-family:ff3_c00375;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00375{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00375{vertical-align:0.000000px;}
.v1_c00375{vertical-align:32.040000px;}
.ls7_c00375{letter-spacing:-0.091026px;}
.ls5_c00375{letter-spacing:-0.063018px;}
.lsa_c00375{letter-spacing:-0.056016px;}
.lsd_c00375{letter-spacing:-0.049014px;}
.lse_c00375{letter-spacing:-0.042012px;}
.lsc_c00375{letter-spacing:-0.035010px;}
.ls8_c00375{letter-spacing:-0.028008px;}
.lsf_c00375{letter-spacing:-0.021006px;}
.lsb_c00375{letter-spacing:-0.014004px;}
.ls9_c00375{letter-spacing:-0.007002px;}
.ls6_c00375{letter-spacing:0.000000px;}
.ls0_c00375{letter-spacing:0.007002px;}
.ls2_c00375{letter-spacing:0.021006px;}
.ls3_c00375{letter-spacing:0.023281px;}
.ls4_c00375{letter-spacing:0.028008px;}
.ls1_c00375{letter-spacing:0.035010px;}
.ls10_c00375{letter-spacing:0.105030px;}
.ls11_c00375{letter-spacing:0.147042px;}
.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:-19.570590px;}
.ws1_c00375{word-spacing:-12.967628px;}
.ws2_c00375{word-spacing:0.000000px;}
.wsd_c00375{word-spacing:0.035010px;}
.ws28_c00375{word-spacing:0.371106px;}
.wse_c00375{word-spacing:3.599028px;}
.ws1b_c00375{word-spacing:3.928122px;}
.ws11_c00375{word-spacing:4.628322px;}
.ws24_c00375{word-spacing:4.635324px;}
.ws22_c00375{word-spacing:4.670334px;}
.wsa_c00375{word-spacing:5.027436px;}
.wsb_c00375{word-spacing:5.041440px;}
.wsf_c00375{word-spacing:7.555158px;}
.ws10_c00375{word-spacing:7.590168px;}
.ws26_c00375{word-spacing:7.597170px;}
.ws1c_c00375{word-spacing:8.640468px;}
.ws9_c00375{word-spacing:9.039582px;}
.ws27_c00375{word-spacing:9.389682px;}
.ws6_c00375{word-spacing:11.511288px;}
.ws1f_c00375{word-spacing:12.610602px;}
.ws21_c00375{word-spacing:14.004000px;}
.ws23_c00375{word-spacing:14.081022px;}
.ws20_c00375{word-spacing:14.242068px;}
.ws12_c00375{word-spacing:15.096312px;}
.ws13_c00375{word-spacing:15.117318px;}
.wsc_c00375{word-spacing:19.073448px;}
.ws4_c00375{word-spacing:19.094454px;}
.ws3_c00375{word-spacing:19.157472px;}
.ws7_c00375{word-spacing:22.693482px;}
.ws8_c00375{word-spacing:25.900398px;}
.ws1a_c00375{word-spacing:27.713916px;}
.ws15_c00375{word-spacing:33.861672px;}
.ws19_c00375{word-spacing:37.782792px;}
.ws18_c00375{word-spacing:41.059728px;}
.ws5_c00375{word-spacing:43.181334px;}
.ws16_c00375{word-spacing:51.170616px;}
.ws17_c00375{word-spacing:51.828804px;}
.ws25_c00375{word-spacing:52.592022px;}
.ws1e_c00375{word-spacing:55.070730px;}
.ws14_c00375{word-spacing:64.446408px;}
.ws1d_c00375{word-spacing:77.043006px;}
._2_c00375{margin-left:-4.194198px;}
._1_c00375{margin-left:-1.239354px;}
._0_c00375{width:1.232352px;}
.fc0_c00375{color:rgb(0,0,0);}
.fs1_c00375{font-size:46.562400px;}
.fs0_c00375{font-size:70.020000px;}
.y0_c00375{bottom:0.000000px;}
.y2_c00375{bottom:109.740968px;}
.y1_c00375{bottom:129.810450px;}
.y1f_c00375{bottom:182.550450px;}
.y1e_c00375{bottom:233.220450px;}
.y1d_c00375{bottom:283.800450px;}
.y1c_c00375{bottom:314.040450px;}
.y1b_c00375{bottom:344.280450px;}
.y1a_c00375{bottom:374.430450px;}
.y19_c00375{bottom:404.670450px;}
.y18_c00375{bottom:434.820450px;}
.y17_c00375{bottom:465.060450px;}
.y16_c00375{bottom:495.210600px;}
.y15_c00375{bottom:525.450600px;}
.y14_c00375{bottom:555.600450px;}
.y13_c00375{bottom:585.840450px;}
.y12_c00375{bottom:615.990450px;}
.y11_c00375{bottom:646.230450px;}
.y10_c00375{bottom:676.380450px;}
.yf_c00375{bottom:706.620450px;}
.ye_c00375{bottom:736.770450px;}
.yd_c00375{bottom:766.920450px;}
.y23_c00375{bottom:777.630450px;}
.y22_c00375{bottom:807.780450px;}
.yc_c00375{bottom:817.590779px;}
.y21_c00375{bottom:838.020450px;}
.yb_c00375{bottom:868.080450px;}
.y20_c00375{bottom:868.170450px;}
.ya_c00375{bottom:898.410450px;}
.y9_c00375{bottom:928.560450px;}
.y8_c00375{bottom:958.800450px;}
.y7_c00375{bottom:988.950450px;}
.y6_c00375{bottom:1019.190450px;}
.y5_c00375{bottom:1049.340450px;}
.y4_c00375{bottom:1079.580450px;}
.y3_c00375{bottom:1109.730450px;}
.h3_c00375{height:62.600889px;}
.h1_c00375{height:62.771836px;}
.h2_c00375{height:63.216299px;}
.h4_c00375{height:73.668786px;}
.h0_c00375{height:1263.000000px;}
.w0_c00375{width:892.500000px;}
.x0_c00375{left:0.000000px;}
.x2_c00375{left:82.710059px;}
.x3_c00375{left:136.260000px;}
.x1_c00375{left:431.730000px;}
.x4_c00375{left:460.890000px;}
@media print{
.v0_c00375{vertical-align:0.000000pt;}
.v1_c00375{vertical-align:28.480000pt;}
.ls7_c00375{letter-spacing:-0.080912pt;}
.ls5_c00375{letter-spacing:-0.056016pt;}
.lsa_c00375{letter-spacing:-0.049792pt;}
.lsd_c00375{letter-spacing:-0.043568pt;}
.lse_c00375{letter-spacing:-0.037344pt;}
.lsc_c00375{letter-spacing:-0.031120pt;}
.ls8_c00375{letter-spacing:-0.024896pt;}
.lsf_c00375{letter-spacing:-0.018672pt;}
.lsb_c00375{letter-spacing:-0.012448pt;}
.ls9_c00375{letter-spacing:-0.006224pt;}
.ls6_c00375{letter-spacing:0.000000pt;}
.ls0_c00375{letter-spacing:0.006224pt;}
.ls2_c00375{letter-spacing:0.018672pt;}
.ls3_c00375{letter-spacing:0.020694pt;}
.ls4_c00375{letter-spacing:0.024896pt;}
.ls1_c00375{letter-spacing:0.031120pt;}
.ls10_c00375{letter-spacing:0.093360pt;}
.ls11_c00375{letter-spacing:0.130704pt;}
.ws0_c00375{word-spacing:-17.396080pt;}
.ws1_c00375{word-spacing:-11.526781pt;}
.ws2_c00375{word-spacing:0.000000pt;}
.wsd_c00375{word-spacing:0.031120pt;}
.ws28_c00375{word-spacing:0.329872pt;}
.wse_c00375{word-spacing:3.199136pt;}
.ws1b_c00375{word-spacing:3.491664pt;}
.ws11_c00375{word-spacing:4.114064pt;}
.ws24_c00375{word-spacing:4.120288pt;}
.ws22_c00375{word-spacing:4.151408pt;}
.wsa_c00375{word-spacing:4.468832pt;}
.wsb_c00375{word-spacing:4.481280pt;}
.wsf_c00375{word-spacing:6.715696pt;}
.ws10_c00375{word-spacing:6.746816pt;}
.ws26_c00375{word-spacing:6.753040pt;}
.ws1c_c00375{word-spacing:7.680416pt;}
.ws9_c00375{word-spacing:8.035184pt;}
.ws27_c00375{word-spacing:8.346384pt;}
.ws6_c00375{word-spacing:10.232256pt;}
.ws1f_c00375{word-spacing:11.209424pt;}
.ws21_c00375{word-spacing:12.448000pt;}
.ws23_c00375{word-spacing:12.516464pt;}
.ws20_c00375{word-spacing:12.659616pt;}
.ws12_c00375{word-spacing:13.418944pt;}
.ws13_c00375{word-spacing:13.437616pt;}
.wsc_c00375{word-spacing:16.954176pt;}
.ws4_c00375{word-spacing:16.972848pt;}
.ws3_c00375{word-spacing:17.028864pt;}
.ws7_c00375{word-spacing:20.171984pt;}
.ws8_c00375{word-spacing:23.022576pt;}
.ws1a_c00375{word-spacing:24.634592pt;}
.ws15_c00375{word-spacing:30.099264pt;}
.ws19_c00375{word-spacing:33.584704pt;}
.ws18_c00375{word-spacing:36.497536pt;}
.ws5_c00375{word-spacing:38.383408pt;}
.ws16_c00375{word-spacing:45.484992pt;}
.ws17_c00375{word-spacing:46.070048pt;}
.ws25_c00375{word-spacing:46.748464pt;}
.ws1e_c00375{word-spacing:48.951760pt;}
.ws14_c00375{word-spacing:57.285696pt;}
.ws1d_c00375{word-spacing:68.482672pt;}
._2_c00375{margin-left:-3.728176pt;}
._1_c00375{margin-left:-1.101648pt;}
._0_c00375{width:1.095424pt;}
.fs1_c00375{font-size:41.388800pt;}
.fs0_c00375{font-size:62.240000pt;}
.y0_c00375{bottom:0.000000pt;}
.y2_c00375{bottom:97.547527pt;}
.y1_c00375{bottom:115.387067pt;}
.y1f_c00375{bottom:162.267067pt;}
.y1e_c00375{bottom:207.307067pt;}
.y1d_c00375{bottom:252.267067pt;}
.y1c_c00375{bottom:279.147067pt;}
.y1b_c00375{bottom:306.027067pt;}
.y1a_c00375{bottom:332.827067pt;}
.y19_c00375{bottom:359.707067pt;}
.y18_c00375{bottom:386.507067pt;}
.y17_c00375{bottom:413.387067pt;}
.y16_c00375{bottom:440.187200pt;}
.y15_c00375{bottom:467.067200pt;}
.y14_c00375{bottom:493.867067pt;}
.y13_c00375{bottom:520.747067pt;}
.y12_c00375{bottom:547.547067pt;}
.y11_c00375{bottom:574.427067pt;}
.y10_c00375{bottom:601.227067pt;}
.yf_c00375{bottom:628.107067pt;}
.ye_c00375{bottom:654.907067pt;}
.yd_c00375{bottom:681.707067pt;}
.y23_c00375{bottom:691.227067pt;}
.y22_c00375{bottom:718.027067pt;}
.yc_c00375{bottom:726.747359pt;}
.y21_c00375{bottom:744.907067pt;}
.yb_c00375{bottom:771.627067pt;}
.y20_c00375{bottom:771.707067pt;}
.ya_c00375{bottom:798.587067pt;}
.y9_c00375{bottom:825.387067pt;}
.y8_c00375{bottom:852.267067pt;}
.y7_c00375{bottom:879.067067pt;}
.y6_c00375{bottom:905.947067pt;}
.y5_c00375{bottom:932.747067pt;}
.y4_c00375{bottom:959.627067pt;}
.y3_c00375{bottom:986.427067pt;}
.h3_c00375{height:55.645234pt;}
.h1_c00375{height:55.797187pt;}
.h2_c00375{height:56.192266pt;}
.h4_c00375{height:65.483366pt;}
.h0_c00375{height:1122.666667pt;}
.w0_c00375{width:793.333333pt;}
.x0_c00375{left:0.000000pt;}
.x2_c00375{left:73.520052pt;}
.x3_c00375{left:121.120000pt;}
.x1_c00375{left:383.760000pt;}
.x4_c00375{left:409.680000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e7fbbf3cc5cd1d9e9cd6a032.woff2')format("woff");}.ff1_c00376{font-family:ff1_c00376;line-height:1.106934;font-style:normal;font-weight:normal;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_aec5808fb134c57941024772.woff2')format("woff");}.ff2_c00376{font-family:ff2_c00376;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00376{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00376{vertical-align:0.000000px;}
.v1_c00376{vertical-align:32.400000px;}
.ls4_c00376{letter-spacing:-0.063018px;}
.lsa_c00376{letter-spacing:-0.056016px;}
.lsd_c00376{letter-spacing:-0.049014px;}
.ls8_c00376{letter-spacing:-0.042012px;}
.ls7_c00376{letter-spacing:-0.035010px;}
.ls6_c00376{letter-spacing:-0.028008px;}
.lsc_c00376{letter-spacing:-0.021006px;}
.lsb_c00376{letter-spacing:-0.014004px;}
.ls9_c00376{letter-spacing:-0.007002px;}
.ls5_c00376{letter-spacing:0.000000px;}
.ls0_c00376{letter-spacing:0.014004px;}
.ls3_c00376{letter-spacing:0.023281px;}
.ls2_c00376{letter-spacing:0.028008px;}
.ls1_c00376{letter-spacing:0.035010px;}
.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:-19.493568px;}
.ws1_c00376{word-spacing:-12.967628px;}
.ws5_c00376{word-spacing:-0.028008px;}
.ws11_c00376{word-spacing:-0.007002px;}
.ws2_c00376{word-spacing:0.000000px;}
.ws1b_c00376{word-spacing:0.035010px;}
.wsc_c00376{word-spacing:3.592026px;}
.ws7_c00376{word-spacing:5.370534px;}
.wsb_c00376{word-spacing:6.140754px;}
.ws16_c00376{word-spacing:8.997570px;}
.ws12_c00376{word-spacing:10.082880px;}
.ws1a_c00376{word-spacing:14.445126px;}
.ws1d_c00376{word-spacing:16.601742px;}
.ws10_c00376{word-spacing:22.336380px;}
.ws14_c00376{word-spacing:23.029578px;}
.ws19_c00376{word-spacing:26.677620px;}
.ws15_c00376{word-spacing:27.741924px;}
.ws8_c00376{word-spacing:28.820232px;}
.ws6_c00376{word-spacing:31.992138px;}
.wse_c00376{word-spacing:32.440266px;}
.ws4_c00376{word-spacing:34.533864px;}
.ws1e_c00376{word-spacing:35.283078px;}
.ws18_c00376{word-spacing:35.626176px;}
.ws13_c00376{word-spacing:36.368388px;}
.ws1c_c00376{word-spacing:36.403398px;}
.wsf_c00376{word-spacing:37.068588px;}
.wsd_c00376{word-spacing:45.772074px;}
.ws17_c00376{word-spacing:46.465272px;}
.ws3_c00376{word-spacing:55.455840px;}
.wsa_c00376{word-spacing:100.107594px;}
.ws9_c00376{word-spacing:193.304214px;}
._1_c00376{margin-left:-1.148328px;}
._0_c00376{width:1.309374px;}
.fc0_c00376{color:rgb(0,0,0);}
.fs1_c00376{font-size:46.562400px;}
.fs0_c00376{font-size:70.020000px;}
.y0_c00376{bottom:0.000000px;}
.y2_c00376{bottom:109.740968px;}
.y1_c00376{bottom:129.810450px;}
.y20_c00376{bottom:172.919451px;}
.y1f_c00376{bottom:203.070063px;}
.y1e_c00376{bottom:233.309951px;}
.y1d_c00376{bottom:263.460563px;}
.y1c_c00376{bottom:293.696418px;}
.y1b_c00376{bottom:323.847030px;}
.y1a_c00376{bottom:354.086917px;}
.y19_c00376{bottom:384.237529px;}
.y18_c00376{bottom:414.477417px;}
.y17_c00376{bottom:444.628029px;}
.y16_c00376{bottom:474.867917px;}
.y15_c00376{bottom:505.018529px;}
.y14_c00376{bottom:535.169141px;}
.y13_c00376{bottom:565.319753px;}
.y12_c00376{bottom:615.900450px;}
.y11_c00376{bottom:646.230450px;}
.y10_c00376{bottom:676.380450px;}
.yf_c00376{bottom:706.620450px;}
.ye_c00376{bottom:757.110450px;}
.yd_c00376{bottom:787.440450px;}
.yc_c00376{bottom:817.590450px;}
.yb_c00376{bottom:847.830450px;}
.ya_c00376{bottom:877.980450px;}
.y9_c00376{bottom:908.220450px;}
.y8_c00376{bottom:938.370450px;}
.y7_c00376{bottom:968.610450px;}
.y6_c00376{bottom:998.760450px;}
.y5_c00376{bottom:1049.250450px;}
.y4_c00376{bottom:1079.580450px;}
.y3_c00376{bottom:1109.730450px;}
.h2_c00376{height:62.600889px;}
.h1_c00376{height:62.771836px;}
.h4_c00376{height:73.799192px;}
.h3_c00376{height:74.028786px;}
.h0_c00376{height:1263.000000px;}
.w0_c00376{width:892.500000px;}
.x0_c00376{left:0.000000px;}
.x2_c00376{left:82.710059px;}
.x3_c00376{left:136.260000px;}
.x1_c00376{left:431.730000px;}
@media print{
.v0_c00376{vertical-align:0.000000pt;}
.v1_c00376{vertical-align:28.800000pt;}
.ls4_c00376{letter-spacing:-0.056016pt;}
.lsa_c00376{letter-spacing:-0.049792pt;}
.lsd_c00376{letter-spacing:-0.043568pt;}
.ls8_c00376{letter-spacing:-0.037344pt;}
.ls7_c00376{letter-spacing:-0.031120pt;}
.ls6_c00376{letter-spacing:-0.024896pt;}
.lsc_c00376{letter-spacing:-0.018672pt;}
.lsb_c00376{letter-spacing:-0.012448pt;}
.ls9_c00376{letter-spacing:-0.006224pt;}
.ls5_c00376{letter-spacing:0.000000pt;}
.ls0_c00376{letter-spacing:0.012448pt;}
.ls3_c00376{letter-spacing:0.020694pt;}
.ls2_c00376{letter-spacing:0.024896pt;}
.ls1_c00376{letter-spacing:0.031120pt;}
.ws0_c00376{word-spacing:-17.327616pt;}
.ws1_c00376{word-spacing:-11.526781pt;}
.ws5_c00376{word-spacing:-0.024896pt;}
.ws11_c00376{word-spacing:-0.006224pt;}
.ws2_c00376{word-spacing:0.000000pt;}
.ws1b_c00376{word-spacing:0.031120pt;}
.wsc_c00376{word-spacing:3.192912pt;}
.ws7_c00376{word-spacing:4.773808pt;}
.wsb_c00376{word-spacing:5.458448pt;}
.ws16_c00376{word-spacing:7.997840pt;}
.ws12_c00376{word-spacing:8.962560pt;}
.ws1a_c00376{word-spacing:12.840112pt;}
.ws1d_c00376{word-spacing:14.757104pt;}
.ws10_c00376{word-spacing:19.854560pt;}
.ws14_c00376{word-spacing:20.470736pt;}
.ws19_c00376{word-spacing:23.713440pt;}
.ws15_c00376{word-spacing:24.659488pt;}
.ws8_c00376{word-spacing:25.617984pt;}
.ws6_c00376{word-spacing:28.437456pt;}
.wse_c00376{word-spacing:28.835792pt;}
.ws4_c00376{word-spacing:30.696768pt;}
.ws1e_c00376{word-spacing:31.362736pt;}
.ws18_c00376{word-spacing:31.667712pt;}
.ws13_c00376{word-spacing:32.327456pt;}
.ws1c_c00376{word-spacing:32.358576pt;}
.wsf_c00376{word-spacing:32.949856pt;}
.wsd_c00376{word-spacing:40.686288pt;}
.ws17_c00376{word-spacing:41.302464pt;}
.ws3_c00376{word-spacing:49.294080pt;}
.wsa_c00376{word-spacing:88.984528pt;}
.ws9_c00376{word-spacing:171.825968pt;}
._1_c00376{margin-left:-1.020736pt;}
._0_c00376{width:1.163888pt;}
.fs1_c00376{font-size:41.388800pt;}
.fs0_c00376{font-size:62.240000pt;}
.y0_c00376{bottom:0.000000pt;}
.y2_c00376{bottom:97.547527pt;}
.y1_c00376{bottom:115.387067pt;}
.y20_c00376{bottom:153.706179pt;}
.y1f_c00376{bottom:180.506723pt;}
.y1e_c00376{bottom:207.386623pt;}
.y1d_c00376{bottom:234.187167pt;}
.y1c_c00376{bottom:261.063483pt;}
.y1b_c00376{bottom:287.864027pt;}
.y1a_c00376{bottom:314.743927pt;}
.y19_c00376{bottom:341.544471pt;}
.y18_c00376{bottom:368.424371pt;}
.y17_c00376{bottom:395.224915pt;}
.y16_c00376{bottom:422.104815pt;}
.y15_c00376{bottom:448.905359pt;}
.y14_c00376{bottom:475.705903pt;}
.y13_c00376{bottom:502.506447pt;}
.y12_c00376{bottom:547.467067pt;}
.y11_c00376{bottom:574.427067pt;}
.y10_c00376{bottom:601.227067pt;}
.yf_c00376{bottom:628.107067pt;}
.ye_c00376{bottom:672.987067pt;}
.yd_c00376{bottom:699.947067pt;}
.yc_c00376{bottom:726.747067pt;}
.yb_c00376{bottom:753.627067pt;}
.ya_c00376{bottom:780.427067pt;}
.y9_c00376{bottom:807.307067pt;}
.y8_c00376{bottom:834.107067pt;}
.y7_c00376{bottom:860.987067pt;}
.y6_c00376{bottom:887.787067pt;}
.y5_c00376{bottom:932.667067pt;}
.y4_c00376{bottom:959.627067pt;}
.y3_c00376{bottom:986.427067pt;}
.h2_c00376{height:55.645234pt;}
.h1_c00376{height:55.797187pt;}
.h4_c00376{height:65.599282pt;}
.h3_c00376{height:65.803366pt;}
.h0_c00376{height:1122.666667pt;}
.w0_c00376{width:793.333333pt;}
.x0_c00376{left:0.000000pt;}
.x2_c00376{left:73.520052pt;}
.x3_c00376{left:121.120000pt;}
.x1_c00376{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_59f010b3316e0d03d1b5b628.woff2')format("woff");}.ff1_c00377{font-family:ff1_c00377;line-height:1.106934;font-style:normal;font-weight:normal;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_243eb50fb283d6420088b112.woff2')format("woff");}.ff2_c00377{font-family:ff2_c00377;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00377;src:url('chunks/assets/font_a5ba9496205a47e83e719175.woff2')format("woff");}.ff3_c00377{font-family:ff3_c00377;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00377{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00377{vertical-align:0.000000px;}
.ls4_c00377{letter-spacing:-0.063018px;}
.ls6_c00377{letter-spacing:-0.049014px;}
.lsc_c00377{letter-spacing:-0.042012px;}
.lsa_c00377{letter-spacing:-0.035010px;}
.ls8_c00377{letter-spacing:-0.028008px;}
.ls9_c00377{letter-spacing:-0.021006px;}
.ls7_c00377{letter-spacing:-0.014004px;}
.lsb_c00377{letter-spacing:-0.007002px;}
.ls5_c00377{letter-spacing:0.000000px;}
.ls2_c00377{letter-spacing:0.007002px;}
.ls3_c00377{letter-spacing:0.021006px;}
.ls0_c00377{letter-spacing:0.049014px;}
.ls1_c00377{letter-spacing:0.084024px;}
.sc__c00377{text-shadow:none;}
.sc0_c00377{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00377{-webkit-text-stroke:0px transparent;}
.sc0_c00377{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00377{word-spacing:-19.549584px;}
.ws5_c00377{word-spacing:-0.063018px;}
.ws1_c00377{word-spacing:0.000000px;}
.ws4_c00377{word-spacing:0.014004px;}
.wsd_c00377{word-spacing:0.371106px;}
.ws7_c00377{word-spacing:1.778508px;}
.ws12_c00377{word-spacing:1.827522px;}
.wsb_c00377{word-spacing:2.163618px;}
.wsa_c00377{word-spacing:2.177622px;}
.ws9_c00377{word-spacing:2.541726px;}
.ws14_c00377{word-spacing:3.942126px;}
.ws8_c00377{word-spacing:4.327236px;}
.ws13_c00377{word-spacing:6.469848px;}
.ws6_c00377{word-spacing:7.212060px;}
.wsc_c00377{word-spacing:11.868390px;}
.wse_c00377{word-spacing:17.631036px;}
.wsf_c00377{word-spacing:26.271504px;}
.ws11_c00377{word-spacing:32.006142px;}
.ws10_c00377{word-spacing:32.041152px;}
.ws2_c00377{word-spacing:73.065870px;}
.ws3_c00377{word-spacing:209.555856px;}
._2_c00377{margin-left:-1.029294px;}
._0_c00377{width:1.043298px;}
._1_c00377{width:8.283366px;}
.fc0_c00377{color:rgb(0,0,0);}
.fs0_c00377{font-size:70.020000px;}
.y0_c00377{bottom:0.000000px;}
.y2_c00377{bottom:109.740968px;}
.y1_c00377{bottom:129.810450px;}
.y19_c00377{bottom:190.915671px;}
.y18_c00377{bottom:221.066283px;}
.y17_c00377{bottom:251.306170px;}
.y16_c00377{bottom:281.546058px;}
.y15_c00377{bottom:311.696670px;}
.y14_c00377{bottom:341.936557px;}
.y13_c00377{bottom:372.087169px;}
.y12_c00377{bottom:402.327057px;}
.y11_c00377{bottom:432.477669px;}
.y10_c00377{bottom:462.717557px;}
.yf_c00377{bottom:492.868168px;}
.ye_c00377{bottom:523.108056px;}
.yd_c00377{bottom:553.258668px;}
.yc_c00377{bottom:583.409280px;}
.yb_c00377{bottom:613.559892px;}
.ya_c00377{bottom:640.020450px;}
.y9_c00377{bottom:927.839950px;}
.y8_c00377{bottom:958.079838px;}
.y7_c00377{bottom:988.230450px;}
.y6_c00377{bottom:1019.190486px;}
.y5_c00377{bottom:1049.341098px;}
.y4_c00377{bottom:1079.580985px;}
.y3_c00377{bottom:1109.731597px;}
.h3_c00377{height:62.600889px;}
.h1_c00377{height:62.771836px;}
.h2_c00377{height:63.216299px;}
.h0_c00377{height:1263.000000px;}
.w0_c00377{width:892.500000px;}
.x0_c00377{left:0.000000px;}
.x2_c00377{left:82.710059px;}
.x3_c00377{left:136.259604px;}
.x6_c00377{left:162.540671px;}
.x5_c00377{left:283.500221px;}
.x1_c00377{left:431.730000px;}
.x4_c00377{left:446.400000px;}
.x7_c00377{left:726.930000px;}
@media print{
.v0_c00377{vertical-align:0.000000pt;}
.ls4_c00377{letter-spacing:-0.056016pt;}
.ls6_c00377{letter-spacing:-0.043568pt;}
.lsc_c00377{letter-spacing:-0.037344pt;}
.lsa_c00377{letter-spacing:-0.031120pt;}
.ls8_c00377{letter-spacing:-0.024896pt;}
.ls9_c00377{letter-spacing:-0.018672pt;}
.ls7_c00377{letter-spacing:-0.012448pt;}
.lsb_c00377{letter-spacing:-0.006224pt;}
.ls5_c00377{letter-spacing:0.000000pt;}
.ls2_c00377{letter-spacing:0.006224pt;}
.ls3_c00377{letter-spacing:0.018672pt;}
.ls0_c00377{letter-spacing:0.043568pt;}
.ls1_c00377{letter-spacing:0.074688pt;}
.ws0_c00377{word-spacing:-17.377408pt;}
.ws5_c00377{word-spacing:-0.056016pt;}
.ws1_c00377{word-spacing:0.000000pt;}
.ws4_c00377{word-spacing:0.012448pt;}
.wsd_c00377{word-spacing:0.329872pt;}
.ws7_c00377{word-spacing:1.580896pt;}
.ws12_c00377{word-spacing:1.624464pt;}
.wsb_c00377{word-spacing:1.923216pt;}
.wsa_c00377{word-spacing:1.935664pt;}
.ws9_c00377{word-spacing:2.259312pt;}
.ws14_c00377{word-spacing:3.504112pt;}
.ws8_c00377{word-spacing:3.846432pt;}
.ws13_c00377{word-spacing:5.750976pt;}
.ws6_c00377{word-spacing:6.410720pt;}
.wsc_c00377{word-spacing:10.549680pt;}
.wse_c00377{word-spacing:15.672032pt;}
.wsf_c00377{word-spacing:23.352448pt;}
.ws11_c00377{word-spacing:28.449904pt;}
.ws10_c00377{word-spacing:28.481024pt;}
.ws2_c00377{word-spacing:64.947440pt;}
.ws3_c00377{word-spacing:186.271872pt;}
._2_c00377{margin-left:-0.914928pt;}
._0_c00377{width:0.927376pt;}
._1_c00377{width:7.362992pt;}
.fs0_c00377{font-size:62.240000pt;}
.y0_c00377{bottom:0.000000pt;}
.y2_c00377{bottom:97.547527pt;}
.y1_c00377{bottom:115.387067pt;}
.y19_c00377{bottom:169.702819pt;}
.y18_c00377{bottom:196.503363pt;}
.y17_c00377{bottom:223.383263pt;}
.y16_c00377{bottom:250.263163pt;}
.y15_c00377{bottom:277.063707pt;}
.y14_c00377{bottom:303.943607pt;}
.y13_c00377{bottom:330.744151pt;}
.y12_c00377{bottom:357.624051pt;}
.y11_c00377{bottom:384.424595pt;}
.y10_c00377{bottom:411.304495pt;}
.yf_c00377{bottom:438.105039pt;}
.ye_c00377{bottom:464.984939pt;}
.yd_c00377{bottom:491.785483pt;}
.yc_c00377{bottom:518.586027pt;}
.yb_c00377{bottom:545.386571pt;}
.ya_c00377{bottom:568.907067pt;}
.y9_c00377{bottom:824.746623pt;}
.y8_c00377{bottom:851.626523pt;}
.y7_c00377{bottom:878.427067pt;}
.y6_c00377{bottom:905.947099pt;}
.y5_c00377{bottom:932.747643pt;}
.y4_c00377{bottom:959.627543pt;}
.y3_c00377{bottom:986.428087pt;}
.h3_c00377{height:55.645234pt;}
.h1_c00377{height:55.797187pt;}
.h2_c00377{height:56.192266pt;}
.h0_c00377{height:1122.666667pt;}
.w0_c00377{width:793.333333pt;}
.x0_c00377{left:0.000000pt;}
.x2_c00377{left:73.520052pt;}
.x3_c00377{left:121.119648pt;}
.x6_c00377{left:144.480596pt;}
.x5_c00377{left:252.000196pt;}
.x1_c00377{left:383.760000pt;}
.x4_c00377{left:396.800000pt;}
.x7_c00377{left:646.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0fe5dd87680896696016a6c8.woff2')format("woff");}.ff1_c00378{font-family:ff1_c00378;line-height:1.106934;font-style:normal;font-weight:normal;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_7ee9eabb8b81d985b8c61bfc.woff2')format("woff");}.ff2_c00378{font-family:ff2_c00378;line-height:1.104492;font-style:normal;font-weight:normal;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_17220c693236cad5de271058.woff2')format("woff");}.ff3_c00378{font-family:ff3_c00378;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00378{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00378{vertical-align:0.000000px;}
.v1_c00378{vertical-align:32.397408px;}
.ls6_c00378{letter-spacing:-0.335249px;}
.lsa_c00378{letter-spacing:-0.070020px;}
.ls2_c00378{letter-spacing:-0.063018px;}
.lsb_c00378{letter-spacing:-0.042012px;}
.ls8_c00378{letter-spacing:-0.035010px;}
.ls7_c00378{letter-spacing:-0.028008px;}
.ls5_c00378{letter-spacing:-0.021006px;}
.ls4_c00378{letter-spacing:-0.014004px;}
.ls9_c00378{letter-spacing:-0.007002px;}
.ls3_c00378{letter-spacing:0.000000px;}
.ls1_c00378{letter-spacing:0.023281px;}
.ls0_c00378{letter-spacing:0.084024px;}
.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;}
}
.ws1_c00378{word-spacing:-12.967628px;}
.ws0_c00378{word-spacing:-12.609098px;}
.ws2_c00378{word-spacing:0.000000px;}
.ws6_c00378{word-spacing:0.014004px;}
.ws5_c00378{word-spacing:0.364104px;}
.ws3_c00378{word-spacing:1.442412px;}
.ws11_c00378{word-spacing:2.863818px;}
.ws16_c00378{word-spacing:3.592026px;}
.ws18_c00378{word-spacing:4.670334px;}
.ws17_c00378{word-spacing:4.684338px;}
.ws10_c00378{word-spacing:5.062446px;}
.wsf_c00378{word-spacing:5.097456px;}
.ws13_c00378{word-spacing:7.212060px;}
.ws14_c00378{word-spacing:7.254072px;}
.ws4_c00378{word-spacing:9.704772px;}
.wsa_c00378{word-spacing:11.532294px;}
.ws9_c00378{word-spacing:11.539296px;}
.wse_c00378{word-spacing:12.246498px;}
.ws7_c00378{word-spacing:13.583880px;}
.ws8_c00378{word-spacing:13.667904px;}
.ws12_c00378{word-spacing:13.681908px;}
.ws15_c00378{word-spacing:14.067018px;}
.ws19_c00378{word-spacing:16.573734px;}
.wsc_c00378{word-spacing:40.310514px;}
.wsb_c00378{word-spacing:40.331520px;}
.wsd_c00378{word-spacing:41.766930px;}
._0_c00378{margin-left:-1.183338px;}
._2_c00378{width:1.477422px;}
._1_c00378{width:8.283366px;}
.fc0_c00378{color:rgb(0,0,0);}
.fs1_c00378{font-size:46.562400px;}
.fs0_c00378{font-size:70.020000px;}
.y0_c00378{bottom:0.000000px;}
.y2_c00378{bottom:109.740968px;}
.y1_c00378{bottom:129.810450px;}
.y1a_c00378{bottom:180.389451px;}
.y19_c00378{bottom:210.629338px;}
.y18_c00378{bottom:240.779951px;}
.y17_c00378{bottom:271.019838px;}
.y16_c00378{bottom:301.168033px;}
.y15_c00378{bottom:331.407921px;}
.y14_c00378{bottom:361.558533px;}
.y13_c00378{bottom:391.798420px;}
.y12_c00378{bottom:421.949032px;}
.y11_c00378{bottom:452.188920px;}
.y10_c00378{bottom:482.339532px;}
.yf_c00378{bottom:512.579419px;}
.ye_c00378{bottom:542.730031px;}
.yd_c00378{bottom:572.969919px;}
.yc_c00378{bottom:603.120531px;}
.yb_c00378{bottom:633.360418px;}
.ya_c00378{bottom:663.511030px;}
.y9_c00378{bottom:693.750918px;}
.y8_c00378{bottom:720.120450px;}
.y7_c00378{bottom:988.949950px;}
.y6_c00378{bottom:1019.189838px;}
.y5_c00378{bottom:1049.341098px;}
.y4_c00378{bottom:1079.580985px;}
.y3_c00378{bottom:1109.731597px;}
.h2_c00378{height:62.600889px;}
.h1_c00378{height:62.771836px;}
.h4_c00378{height:63.216299px;}
.h3_c00378{height:74.026194px;}
.h5_c00378{height:74.038452px;}
.h0_c00378{height:1263.000000px;}
.w0_c00378{width:892.500000px;}
.x0_c00378{left:0.000000px;}
.x2_c00378{left:82.710059px;}
.x3_c00378{left:136.259604px;}
.x4_c00378{left:162.540113px;}
.x1_c00378{left:431.730000px;}
.x5_c00378{left:725.130000px;}
@media print{
.v0_c00378{vertical-align:0.000000pt;}
.v1_c00378{vertical-align:28.797696pt;}
.ls6_c00378{letter-spacing:-0.297999pt;}
.lsa_c00378{letter-spacing:-0.062240pt;}
.ls2_c00378{letter-spacing:-0.056016pt;}
.lsb_c00378{letter-spacing:-0.037344pt;}
.ls8_c00378{letter-spacing:-0.031120pt;}
.ls7_c00378{letter-spacing:-0.024896pt;}
.ls5_c00378{letter-spacing:-0.018672pt;}
.ls4_c00378{letter-spacing:-0.012448pt;}
.ls9_c00378{letter-spacing:-0.006224pt;}
.ls3_c00378{letter-spacing:0.000000pt;}
.ls1_c00378{letter-spacing:0.020694pt;}
.ls0_c00378{letter-spacing:0.074688pt;}
.ws1_c00378{word-spacing:-11.526781pt;}
.ws0_c00378{word-spacing:-11.208087pt;}
.ws2_c00378{word-spacing:0.000000pt;}
.ws6_c00378{word-spacing:0.012448pt;}
.ws5_c00378{word-spacing:0.323648pt;}
.ws3_c00378{word-spacing:1.282144pt;}
.ws11_c00378{word-spacing:2.545616pt;}
.ws16_c00378{word-spacing:3.192912pt;}
.ws18_c00378{word-spacing:4.151408pt;}
.ws17_c00378{word-spacing:4.163856pt;}
.ws10_c00378{word-spacing:4.499952pt;}
.wsf_c00378{word-spacing:4.531072pt;}
.ws13_c00378{word-spacing:6.410720pt;}
.ws14_c00378{word-spacing:6.448064pt;}
.ws4_c00378{word-spacing:8.626464pt;}
.wsa_c00378{word-spacing:10.250928pt;}
.ws9_c00378{word-spacing:10.257152pt;}
.wse_c00378{word-spacing:10.885776pt;}
.ws7_c00378{word-spacing:12.074560pt;}
.ws8_c00378{word-spacing:12.149248pt;}
.ws12_c00378{word-spacing:12.161696pt;}
.ws15_c00378{word-spacing:12.504016pt;}
.ws19_c00378{word-spacing:14.732208pt;}
.wsc_c00378{word-spacing:35.831568pt;}
.wsb_c00378{word-spacing:35.850240pt;}
.wsd_c00378{word-spacing:37.126160pt;}
._0_c00378{margin-left:-1.051856pt;}
._2_c00378{width:1.313264pt;}
._1_c00378{width:7.362992pt;}
.fs1_c00378{font-size:41.388800pt;}
.fs0_c00378{font-size:62.240000pt;}
.y0_c00378{bottom:0.000000pt;}
.y2_c00378{bottom:97.547527pt;}
.y1_c00378{bottom:115.387067pt;}
.y1a_c00378{bottom:160.346179pt;}
.y19_c00378{bottom:187.226079pt;}
.y18_c00378{bottom:214.026623pt;}
.y17_c00378{bottom:240.906523pt;}
.y16_c00378{bottom:267.704919pt;}
.y15_c00378{bottom:294.584819pt;}
.y14_c00378{bottom:321.385363pt;}
.y13_c00378{bottom:348.265263pt;}
.y12_c00378{bottom:375.065807pt;}
.y11_c00378{bottom:401.945707pt;}
.y10_c00378{bottom:428.746251pt;}
.yf_c00378{bottom:455.626151pt;}
.ye_c00378{bottom:482.426695pt;}
.yd_c00378{bottom:509.306595pt;}
.yc_c00378{bottom:536.107139pt;}
.yb_c00378{bottom:562.987039pt;}
.ya_c00378{bottom:589.787583pt;}
.y9_c00378{bottom:616.667483pt;}
.y8_c00378{bottom:640.107067pt;}
.y7_c00378{bottom:879.066623pt;}
.y6_c00378{bottom:905.946523pt;}
.y5_c00378{bottom:932.747643pt;}
.y4_c00378{bottom:959.627543pt;}
.y3_c00378{bottom:986.428087pt;}
.h2_c00378{height:55.645234pt;}
.h1_c00378{height:55.797187pt;}
.h4_c00378{height:56.192266pt;}
.h3_c00378{height:65.801062pt;}
.h5_c00378{height:65.811958pt;}
.h0_c00378{height:1122.666667pt;}
.w0_c00378{width:793.333333pt;}
.x0_c00378{left:0.000000pt;}
.x2_c00378{left:73.520052pt;}
.x3_c00378{left:121.119648pt;}
.x4_c00378{left:144.480100pt;}
.x1_c00378{left:383.760000pt;}
.x5_c00378{left:644.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_615c1b1d2c6b167c5dc0fcc6.woff2')format("woff");}.ff1_c00379{font-family:ff1_c00379;line-height:1.106934;font-style:normal;font-weight:normal;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_71c4fe84016e9fb517f52103.woff2')format("woff");}.ff2_c00379{font-family:ff2_c00379;line-height:1.104492;font-style:normal;font-weight:normal;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_903dcad409ca6fcd6dd09db8.woff2')format("woff");}.ff3_c00379{font-family:ff3_c00379;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00379{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00379{vertical-align:0.000000px;}
.v1_c00379{vertical-align:32.407398px;}
.ls4_c00379{letter-spacing:-0.063018px;}
.ls8_c00379{letter-spacing:-0.042012px;}
.lsb_c00379{letter-spacing:-0.035010px;}
.lsa_c00379{letter-spacing:-0.028008px;}
.ls6_c00379{letter-spacing:-0.021006px;}
.ls7_c00379{letter-spacing:-0.014004px;}
.ls9_c00379{letter-spacing:-0.007002px;}
.ls5_c00379{letter-spacing:0.000000px;}
.ls0_c00379{letter-spacing:0.007002px;}
.ls2_c00379{letter-spacing:0.023281px;}
.ls1_c00379{letter-spacing:0.028008px;}
.ls3_c00379{letter-spacing:0.084024px;}
.sc__c00379{text-shadow:none;}
.sc0_c00379{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00379{-webkit-text-stroke:0px transparent;}
.sc0_c00379{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00379{word-spacing:-19.451556px;}
.ws1_c00379{word-spacing:-12.967628px;}
.ws11_c00379{word-spacing:-0.007002px;}
.ws2_c00379{word-spacing:0.000000px;}
.ws3_c00379{word-spacing:0.007002px;}
.ws12_c00379{word-spacing:0.021006px;}
.ws10_c00379{word-spacing:0.371106px;}
.wsb_c00379{word-spacing:3.234924px;}
.ws9_c00379{word-spacing:5.391540px;}
.wsc_c00379{word-spacing:6.077736px;}
.ws7_c00379{word-spacing:6.819948px;}
.wsa_c00379{word-spacing:9.697770px;}
.ws5_c00379{word-spacing:14.018004px;}
.ws6_c00379{word-spacing:14.431122px;}
.wsd_c00379{word-spacing:16.923834px;}
.ws8_c00379{word-spacing:20.872962px;}
.wsf_c00379{word-spacing:25.914402px;}
.ws4_c00379{word-spacing:27.720918px;}
.wse_c00379{word-spacing:38.896110px;}
._1_c00379{margin-left:-1.008288px;}
._0_c00379{width:1.162332px;}
._2_c00379{width:8.283366px;}
.fc0_c00379{color:rgb(0,0,0);}
.fs1_c00379{font-size:46.562400px;}
.fs0_c00379{font-size:70.020000px;}
.y0_c00379{bottom:0.000000px;}
.y2_c00379{bottom:109.740968px;}
.y1_c00379{bottom:129.810450px;}
.y1a_c00379{bottom:165.538807px;}
.y19_c00379{bottom:195.689419px;}
.y18_c00379{bottom:225.929307px;}
.y17_c00379{bottom:256.079919px;}
.y16_c00379{bottom:286.319806px;}
.y15_c00379{bottom:316.559694px;}
.y14_c00379{bottom:346.710306px;}
.y13_c00379{bottom:376.950193px;}
.y12_c00379{bottom:403.230450px;}
.y11_c00379{bottom:686.999950px;}
.y10_c00379{bottom:717.239838px;}
.yf_c00379{bottom:747.388601px;}
.ye_c00379{bottom:777.628488px;}
.yd_c00379{bottom:807.779100px;}
.yc_c00379{bottom:838.018988px;}
.yb_c00379{bottom:868.169600px;}
.ya_c00379{bottom:898.409487px;}
.y9_c00379{bottom:928.560099px;}
.y8_c00379{bottom:958.799987px;}
.y7_c00379{bottom:988.950599px;}
.y6_c00379{bottom:1019.190486px;}
.y5_c00379{bottom:1049.341098px;}
.y4_c00379{bottom:1079.580985px;}
.y3_c00379{bottom:1109.731597px;}
.h2_c00379{height:62.600889px;}
.h1_c00379{height:62.771836px;}
.h4_c00379{height:63.216299px;}
.h3_c00379{height:74.036184px;}
.h0_c00379{height:1263.000000px;}
.w0_c00379{width:892.500000px;}
.x0_c00379{left:0.000000px;}
.x2_c00379{left:82.710059px;}
.x3_c00379{left:136.259604px;}
.x4_c00379{left:162.541053px;}
.x1_c00379{left:431.730000px;}
.x5_c00379{left:734.760000px;}
@media print{
.v0_c00379{vertical-align:0.000000pt;}
.v1_c00379{vertical-align:28.806576pt;}
.ls4_c00379{letter-spacing:-0.056016pt;}
.ls8_c00379{letter-spacing:-0.037344pt;}
.lsb_c00379{letter-spacing:-0.031120pt;}
.lsa_c00379{letter-spacing:-0.024896pt;}
.ls6_c00379{letter-spacing:-0.018672pt;}
.ls7_c00379{letter-spacing:-0.012448pt;}
.ls9_c00379{letter-spacing:-0.006224pt;}
.ls5_c00379{letter-spacing:0.000000pt;}
.ls0_c00379{letter-spacing:0.006224pt;}
.ls2_c00379{letter-spacing:0.020694pt;}
.ls1_c00379{letter-spacing:0.024896pt;}
.ls3_c00379{letter-spacing:0.074688pt;}
.ws0_c00379{word-spacing:-17.290272pt;}
.ws1_c00379{word-spacing:-11.526781pt;}
.ws11_c00379{word-spacing:-0.006224pt;}
.ws2_c00379{word-spacing:0.000000pt;}
.ws3_c00379{word-spacing:0.006224pt;}
.ws12_c00379{word-spacing:0.018672pt;}
.ws10_c00379{word-spacing:0.329872pt;}
.wsb_c00379{word-spacing:2.875488pt;}
.ws9_c00379{word-spacing:4.792480pt;}
.wsc_c00379{word-spacing:5.402432pt;}
.ws7_c00379{word-spacing:6.062176pt;}
.wsa_c00379{word-spacing:8.620240pt;}
.ws5_c00379{word-spacing:12.460448pt;}
.ws6_c00379{word-spacing:12.827664pt;}
.wsd_c00379{word-spacing:15.043408pt;}
.ws8_c00379{word-spacing:18.553744pt;}
.wsf_c00379{word-spacing:23.035024pt;}
.ws4_c00379{word-spacing:24.640816pt;}
.wse_c00379{word-spacing:34.574320pt;}
._1_c00379{margin-left:-0.896256pt;}
._0_c00379{width:1.033184pt;}
._2_c00379{width:7.362992pt;}
.fs1_c00379{font-size:41.388800pt;}
.fs0_c00379{font-size:62.240000pt;}
.y0_c00379{bottom:0.000000pt;}
.y2_c00379{bottom:97.547527pt;}
.y1_c00379{bottom:115.387067pt;}
.y1a_c00379{bottom:147.145607pt;}
.y19_c00379{bottom:173.946151pt;}
.y18_c00379{bottom:200.826051pt;}
.y17_c00379{bottom:227.626595pt;}
.y16_c00379{bottom:254.506495pt;}
.y15_c00379{bottom:281.386395pt;}
.y14_c00379{bottom:308.186939pt;}
.y13_c00379{bottom:335.066839pt;}
.y12_c00379{bottom:358.427067pt;}
.y11_c00379{bottom:610.666623pt;}
.y10_c00379{bottom:637.546523pt;}
.yf_c00379{bottom:664.345423pt;}
.ye_c00379{bottom:691.225323pt;}
.yd_c00379{bottom:718.025867pt;}
.yc_c00379{bottom:744.905767pt;}
.yb_c00379{bottom:771.706311pt;}
.ya_c00379{bottom:798.586211pt;}
.y9_c00379{bottom:825.386755pt;}
.y8_c00379{bottom:852.266655pt;}
.y7_c00379{bottom:879.067199pt;}
.y6_c00379{bottom:905.947099pt;}
.y5_c00379{bottom:932.747643pt;}
.y4_c00379{bottom:959.627543pt;}
.y3_c00379{bottom:986.428087pt;}
.h2_c00379{height:55.645234pt;}
.h1_c00379{height:55.797187pt;}
.h4_c00379{height:56.192266pt;}
.h3_c00379{height:65.809942pt;}
.h0_c00379{height:1122.666667pt;}
.w0_c00379{width:793.333333pt;}
.x0_c00379{left:0.000000pt;}
.x2_c00379{left:73.520052pt;}
.x3_c00379{left:121.119648pt;}
.x4_c00379{left:144.480936pt;}
.x1_c00379{left:383.760000pt;}
.x5_c00379{left:653.120000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_18af6357d70873f0f54d9349.woff2')format("woff");}.ff1_c00380{font-family:ff1_c00380;line-height:1.106934;font-style:normal;font-weight:normal;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_f545560af92735517b32609a.woff2')format("woff");}.ff2_c00380{font-family:ff2_c00380;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00380{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00380{vertical-align:0.000000px;}
.ls2_c00380{letter-spacing:-0.063018px;}
.ls4_c00380{letter-spacing:-0.049014px;}
.ls7_c00380{letter-spacing:-0.021006px;}
.ls6_c00380{letter-spacing:-0.014004px;}
.ls5_c00380{letter-spacing:-0.007002px;}
.ls3_c00380{letter-spacing:0.000000px;}
.ls1_c00380{letter-spacing:0.035010px;}
.ls0_c00380{letter-spacing:0.084024px;}
.sc__c00380{text-shadow:none;}
.sc0_c00380{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00380{-webkit-text-stroke:0px transparent;}
.sc0_c00380{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00380{word-spacing:0.000000px;}
.ws1_c00380{word-spacing:0.035010px;}
.ws7_c00380{word-spacing:0.364104px;}
.ws5_c00380{word-spacing:1.435410px;}
.ws3_c00380{word-spacing:4.271220px;}
.ws2_c00380{word-spacing:5.027436px;}
.ws6_c00380{word-spacing:10.790082px;}
.ws4_c00380{word-spacing:15.831522px;}
._3_c00380{margin-left:-1.323378px;}
._1_c00380{width:1.246356px;}
._2_c00380{width:3.781080px;}
._0_c00380{width:8.283366px;}
.fc0_c00380{color:rgb(0,0,0);}
.fs0_c00380{font-size:70.020000px;}
.y0_c00380{bottom:0.000000px;}
.y2_c00380{bottom:109.740968px;}
.y1_c00380{bottom:129.810450px;}
.y1a_c00380{bottom:162.295923px;}
.y19_c00380{bottom:192.446535px;}
.y18_c00380{bottom:222.686423px;}
.y17_c00380{bottom:252.926310px;}
.y16_c00380{bottom:283.076922px;}
.y15_c00380{bottom:313.316810px;}
.y14_c00380{bottom:343.467422px;}
.y13_c00380{bottom:373.707309px;}
.y12_c00380{bottom:403.857921px;}
.y11_c00380{bottom:434.097809px;}
.y10_c00380{bottom:464.248421px;}
.yf_c00380{bottom:494.488308px;}
.ye_c00380{bottom:524.638920px;}
.yd_c00380{bottom:554.878807px;}
.yc_c00380{bottom:585.029420px;}
.yb_c00380{bottom:615.269307px;}
.ya_c00380{bottom:645.419919px;}
.y9_c00380{bottom:675.659807px;}
.y8_c00380{bottom:705.810419px;}
.y7_c00380{bottom:736.050306px;}
.y6_c00380{bottom:766.200918px;}
.y5_c00380{bottom:792.570450px;}
.y4_c00380{bottom:1079.580985px;}
.y3_c00380{bottom:1109.731597px;}
.h1_c00380{height:62.771836px;}
.h2_c00380{height:63.216299px;}
.h0_c00380{height:1263.000000px;}
.w0_c00380{width:892.500000px;}
.x0_c00380{left:0.000000px;}
.x2_c00380{left:82.710059px;}
.x3_c00380{left:136.259604px;}
.x4_c00380{left:162.539861px;}
.x1_c00380{left:431.730000px;}
.x5_c00380{left:725.580000px;}
@media print{
.v0_c00380{vertical-align:0.000000pt;}
.ls2_c00380{letter-spacing:-0.056016pt;}
.ls4_c00380{letter-spacing:-0.043568pt;}
.ls7_c00380{letter-spacing:-0.018672pt;}
.ls6_c00380{letter-spacing:-0.012448pt;}
.ls5_c00380{letter-spacing:-0.006224pt;}
.ls3_c00380{letter-spacing:0.000000pt;}
.ls1_c00380{letter-spacing:0.031120pt;}
.ls0_c00380{letter-spacing:0.074688pt;}
.ws0_c00380{word-spacing:0.000000pt;}
.ws1_c00380{word-spacing:0.031120pt;}
.ws7_c00380{word-spacing:0.323648pt;}
.ws5_c00380{word-spacing:1.275920pt;}
.ws3_c00380{word-spacing:3.796640pt;}
.ws2_c00380{word-spacing:4.468832pt;}
.ws6_c00380{word-spacing:9.591184pt;}
.ws4_c00380{word-spacing:14.072464pt;}
._3_c00380{margin-left:-1.176336pt;}
._1_c00380{width:1.107872pt;}
._2_c00380{width:3.360960pt;}
._0_c00380{width:7.362992pt;}
.fs0_c00380{font-size:62.240000pt;}
.y0_c00380{bottom:0.000000pt;}
.y2_c00380{bottom:97.547527pt;}
.y1_c00380{bottom:115.387067pt;}
.y1a_c00380{bottom:144.263043pt;}
.y19_c00380{bottom:171.063587pt;}
.y18_c00380{bottom:197.943487pt;}
.y17_c00380{bottom:224.823387pt;}
.y16_c00380{bottom:251.623931pt;}
.y15_c00380{bottom:278.503831pt;}
.y14_c00380{bottom:305.304375pt;}
.y13_c00380{bottom:332.184275pt;}
.y12_c00380{bottom:358.984819pt;}
.y11_c00380{bottom:385.864719pt;}
.y10_c00380{bottom:412.665263pt;}
.yf_c00380{bottom:439.545163pt;}
.ye_c00380{bottom:466.345707pt;}
.yd_c00380{bottom:493.225607pt;}
.yc_c00380{bottom:520.026151pt;}
.yb_c00380{bottom:546.906051pt;}
.ya_c00380{bottom:573.706595pt;}
.y9_c00380{bottom:600.586495pt;}
.y8_c00380{bottom:627.387039pt;}
.y7_c00380{bottom:654.266939pt;}
.y6_c00380{bottom:681.067483pt;}
.y5_c00380{bottom:704.507067pt;}
.y4_c00380{bottom:959.627543pt;}
.y3_c00380{bottom:986.428087pt;}
.h1_c00380{height:55.797187pt;}
.h2_c00380{height:56.192266pt;}
.h0_c00380{height:1122.666667pt;}
.w0_c00380{width:793.333333pt;}
.x0_c00380{left:0.000000pt;}
.x2_c00380{left:73.520052pt;}
.x3_c00380{left:121.119648pt;}
.x4_c00380{left:144.479876pt;}
.x1_c00380{left:383.760000pt;}
.x5_c00380{left:644.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2871b1341c153729b45fdc47.woff2')format("woff");}.ff1_c00381{font-family:ff1_c00381;line-height:1.106934;font-style:normal;font-weight:normal;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_6eab9be1dabfd627e66778ee.woff2')format("woff");}.ff2_c00381{font-family:ff2_c00381;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00381;src:url('chunks/assets/font_1edd10bf57fdf6ea72c485c8.woff2')format("woff");}.ff3_c00381{font-family:ff3_c00381;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00381{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00381{vertical-align:0.000000px;}
.v1_c00381{vertical-align:32.040000px;}
.ls3_c00381{letter-spacing:-0.063018px;}
.ls6_c00381{letter-spacing:-0.049014px;}
.ls5_c00381{letter-spacing:-0.042012px;}
.ls8_c00381{letter-spacing:-0.035010px;}
.lsa_c00381{letter-spacing:-0.028008px;}
.lsb_c00381{letter-spacing:-0.021006px;}
.ls7_c00381{letter-spacing:-0.014004px;}
.ls9_c00381{letter-spacing:-0.007002px;}
.ls4_c00381{letter-spacing:0.000000px;}
.ls2_c00381{letter-spacing:0.023281px;}
.ls0_c00381{letter-spacing:0.049014px;}
.ls1_c00381{letter-spacing:0.084024px;}
.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:-19.549584px;}
.ws1_c00381{word-spacing:-12.967628px;}
.ws4_c00381{word-spacing:-0.063018px;}
.ws2_c00381{word-spacing:0.000000px;}
.ws12_c00381{word-spacing:0.014004px;}
.ws11_c00381{word-spacing:0.021006px;}
.ws3_c00381{word-spacing:0.028008px;}
.ws14_c00381{word-spacing:0.035010px;}
.ws13_c00381{word-spacing:0.364104px;}
.wsb_c00381{word-spacing:2.891826px;}
.wsc_c00381{word-spacing:3.234924px;}
.ws8_c00381{word-spacing:3.991140px;}
.ws6_c00381{word-spacing:6.147756px;}
.ws10_c00381{word-spacing:12.225492px;}
.wsf_c00381{word-spacing:12.267504px;}
.wse_c00381{word-spacing:15.845526px;}
.ws7_c00381{word-spacing:17.638038px;}
.ws5_c00381{word-spacing:19.472562px;}
.wsd_c00381{word-spacing:20.151756px;}
.wsa_c00381{word-spacing:29.513430px;}
.ws9_c00381{word-spacing:34.582878px;}
._2_c00381{margin-left:-1.029294px;}
._0_c00381{width:1.127322px;}
._1_c00381{width:8.283366px;}
.fc0_c00381{color:rgb(0,0,0);}
.fs1_c00381{font-size:46.562400px;}
.fs0_c00381{font-size:70.020000px;}
.y0_c00381{bottom:0.000000px;}
.y2_c00381{bottom:109.740968px;}
.y1_c00381{bottom:129.810450px;}
.y1a_c00381{bottom:176.430450px;}
.y19_c00381{bottom:206.580450px;}
.y18_c00381{bottom:236.820450px;}
.y17_c00381{bottom:266.970450px;}
.y16_c00381{bottom:297.210450px;}
.y15_c00381{bottom:327.360450px;}
.y14_c00381{bottom:357.600450px;}
.y13_c00381{bottom:387.750600px;}
.y12_c00381{bottom:417.990450px;}
.y11_c00381{bottom:448.140450px;}
.y10_c00381{bottom:478.380450px;}
.yf_c00381{bottom:508.530600px;}
.ye_c00381{bottom:538.770450px;}
.yd_c00381{bottom:568.920450px;}
.yc_c00381{bottom:599.070450px;}
.yb_c00381{bottom:629.220450px;}
.ya_c00381{bottom:659.460450px;}
.y9_c00381{bottom:689.610450px;}
.y8_c00381{bottom:719.850450px;}
.y7_c00381{bottom:746.220450px;}
.y6_c00381{bottom:1019.190450px;}
.y5_c00381{bottom:1049.340450px;}
.y4_c00381{bottom:1079.580450px;}
.y3_c00381{bottom:1109.730450px;}
.h3_c00381{height:62.600889px;}
.h1_c00381{height:62.771836px;}
.h2_c00381{height:63.216299px;}
.h4_c00381{height:73.668786px;}
.h0_c00381{height:1263.000000px;}
.w0_c00381{width:892.500000px;}
.x0_c00381{left:0.000000px;}
.x2_c00381{left:82.710059px;}
.x5_c00381{left:136.260000px;}
.x6_c00381{left:162.540000px;}
.x8_c00381{left:188.820000px;}
.x4_c00381{left:341.370000px;}
.x1_c00381{left:431.730000px;}
.x3_c00381{left:446.400000px;}
.x7_c00381{left:727.380000px;}
@media print{
.v0_c00381{vertical-align:0.000000pt;}
.v1_c00381{vertical-align:28.480000pt;}
.ls3_c00381{letter-spacing:-0.056016pt;}
.ls6_c00381{letter-spacing:-0.043568pt;}
.ls5_c00381{letter-spacing:-0.037344pt;}
.ls8_c00381{letter-spacing:-0.031120pt;}
.lsa_c00381{letter-spacing:-0.024896pt;}
.lsb_c00381{letter-spacing:-0.018672pt;}
.ls7_c00381{letter-spacing:-0.012448pt;}
.ls9_c00381{letter-spacing:-0.006224pt;}
.ls4_c00381{letter-spacing:0.000000pt;}
.ls2_c00381{letter-spacing:0.020694pt;}
.ls0_c00381{letter-spacing:0.043568pt;}
.ls1_c00381{letter-spacing:0.074688pt;}
.ws0_c00381{word-spacing:-17.377408pt;}
.ws1_c00381{word-spacing:-11.526781pt;}
.ws4_c00381{word-spacing:-0.056016pt;}
.ws2_c00381{word-spacing:0.000000pt;}
.ws12_c00381{word-spacing:0.012448pt;}
.ws11_c00381{word-spacing:0.018672pt;}
.ws3_c00381{word-spacing:0.024896pt;}
.ws14_c00381{word-spacing:0.031120pt;}
.ws13_c00381{word-spacing:0.323648pt;}
.wsb_c00381{word-spacing:2.570512pt;}
.wsc_c00381{word-spacing:2.875488pt;}
.ws8_c00381{word-spacing:3.547680pt;}
.ws6_c00381{word-spacing:5.464672pt;}
.ws10_c00381{word-spacing:10.867104pt;}
.wsf_c00381{word-spacing:10.904448pt;}
.wse_c00381{word-spacing:14.084912pt;}
.ws7_c00381{word-spacing:15.678256pt;}
.ws5_c00381{word-spacing:17.308944pt;}
.wsd_c00381{word-spacing:17.912672pt;}
.wsa_c00381{word-spacing:26.234160pt;}
.ws9_c00381{word-spacing:30.740336pt;}
._2_c00381{margin-left:-0.914928pt;}
._0_c00381{width:1.002064pt;}
._1_c00381{width:7.362992pt;}
.fs1_c00381{font-size:41.388800pt;}
.fs0_c00381{font-size:62.240000pt;}
.y0_c00381{bottom:0.000000pt;}
.y2_c00381{bottom:97.547527pt;}
.y1_c00381{bottom:115.387067pt;}
.y1a_c00381{bottom:156.827067pt;}
.y19_c00381{bottom:183.627067pt;}
.y18_c00381{bottom:210.507067pt;}
.y17_c00381{bottom:237.307067pt;}
.y16_c00381{bottom:264.187067pt;}
.y15_c00381{bottom:290.987067pt;}
.y14_c00381{bottom:317.867067pt;}
.y13_c00381{bottom:344.667200pt;}
.y12_c00381{bottom:371.547067pt;}
.y11_c00381{bottom:398.347067pt;}
.y10_c00381{bottom:425.227067pt;}
.yf_c00381{bottom:452.027200pt;}
.ye_c00381{bottom:478.907067pt;}
.yd_c00381{bottom:505.707067pt;}
.yc_c00381{bottom:532.507067pt;}
.yb_c00381{bottom:559.307067pt;}
.ya_c00381{bottom:586.187067pt;}
.y9_c00381{bottom:612.987067pt;}
.y8_c00381{bottom:639.867067pt;}
.y7_c00381{bottom:663.307067pt;}
.y6_c00381{bottom:905.947067pt;}
.y5_c00381{bottom:932.747067pt;}
.y4_c00381{bottom:959.627067pt;}
.y3_c00381{bottom:986.427067pt;}
.h3_c00381{height:55.645234pt;}
.h1_c00381{height:55.797187pt;}
.h2_c00381{height:56.192266pt;}
.h4_c00381{height:65.483366pt;}
.h0_c00381{height:1122.666667pt;}
.w0_c00381{width:793.333333pt;}
.x0_c00381{left:0.000000pt;}
.x2_c00381{left:73.520052pt;}
.x5_c00381{left:121.120000pt;}
.x6_c00381{left:144.480000pt;}
.x8_c00381{left:167.840000pt;}
.x4_c00381{left:303.440000pt;}
.x1_c00381{left:383.760000pt;}
.x3_c00381{left:396.800000pt;}
.x7_c00381{left:646.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d13b772091c11f739c109f64.woff2')format("woff");}.ff1_c00382{font-family:ff1_c00382;line-height:1.106934;font-style:normal;font-weight:normal;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_d1b98736fa3a1115027051a9.woff2')format("woff");}.ff2_c00382{font-family:ff2_c00382;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00382;src:url('chunks/assets/font_9ee1588759b60d2bd98091f2.woff2')format("woff");}.ff3_c00382{font-family:ff3_c00382;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00382{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00382{vertical-align:0.000000px;}
.ls3_c00382{letter-spacing:-0.063018px;}
.ls9_c00382{letter-spacing:-0.049014px;}
.ls5_c00382{letter-spacing:-0.042012px;}
.lsa_c00382{letter-spacing:-0.035010px;}
.ls6_c00382{letter-spacing:-0.021006px;}
.ls8_c00382{letter-spacing:-0.014004px;}
.ls7_c00382{letter-spacing:-0.007002px;}
.ls4_c00382{letter-spacing:0.000000px;}
.ls0_c00382{letter-spacing:0.007002px;}
.ls2_c00382{letter-spacing:0.021006px;}
.ls1_c00382{letter-spacing:0.084024px;}
.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;}
}
.wsc_c00382{word-spacing:-0.014004px;}
.ws0_c00382{word-spacing:0.000000px;}
.ws13_c00382{word-spacing:0.028008px;}
.wsb_c00382{word-spacing:0.364104px;}
.ws14_c00382{word-spacing:0.385110px;}
.ws4_c00382{word-spacing:2.870820px;}
.ws5_c00382{word-spacing:3.241926px;}
.ws2_c00382{word-spacing:3.606030px;}
.wsd_c00382{word-spacing:7.919262px;}
.ws9_c00382{word-spacing:8.640468px;}
.ws8_c00382{word-spacing:8.675478px;}
.ws10_c00382{word-spacing:8.962560px;}
.ws11_c00382{word-spacing:9.004572px;}
.wsf_c00382{word-spacing:9.704772px;}
.ws1_c00382{word-spacing:10.467990px;}
.ws3_c00382{word-spacing:12.939696px;}
.ws6_c00382{word-spacing:15.117318px;}
.ws7_c00382{word-spacing:15.124320px;}
.wse_c00382{word-spacing:16.202628px;}
.ws12_c00382{word-spacing:21.965274px;}
.wsa_c00382{word-spacing:22.343382px;}
._0_c00382{margin-left:-1.197342px;}
._1_c00382{width:1.043298px;}
._3_c00382{width:6.658902px;}
._2_c00382{width:8.283366px;}
.fc0_c00382{color:rgb(0,0,0);}
.fs0_c00382{font-size:70.020000px;}
.y0_c00382{bottom:0.000000px;}
.y2_c00382{bottom:109.740968px;}
.y1_c00382{bottom:129.810450px;}
.y1a_c00382{bottom:177.150450px;}
.y19_c00382{bottom:207.390450px;}
.y18_c00382{bottom:237.540600px;}
.y17_c00382{bottom:267.780450px;}
.y16_c00382{bottom:297.930450px;}
.y15_c00382{bottom:328.170450px;}
.y14_c00382{bottom:358.320450px;}
.y13_c00382{bottom:388.560450px;}
.y12_c00382{bottom:418.710600px;}
.y11_c00382{bottom:448.950600px;}
.y10_c00382{bottom:475.320450px;}
.yf_c00382{bottom:747.390450px;}
.ye_c00382{bottom:777.630450px;}
.yd_c00382{bottom:807.780450px;}
.yc_c00382{bottom:838.020450px;}
.yb_c00382{bottom:868.170450px;}
.ya_c00382{bottom:898.410450px;}
.y9_c00382{bottom:928.560450px;}
.y8_c00382{bottom:958.800450px;}
.y7_c00382{bottom:988.950450px;}
.y6_c00382{bottom:1019.190450px;}
.y5_c00382{bottom:1049.340450px;}
.y4_c00382{bottom:1079.580450px;}
.y3_c00382{bottom:1109.730450px;}
.h3_c00382{height:62.600889px;}
.h1_c00382{height:62.771836px;}
.h2_c00382{height:63.216299px;}
.h0_c00382{height:1263.000000px;}
.w0_c00382{width:892.500000px;}
.x0_c00382{left:0.000000px;}
.x2_c00382{left:82.710059px;}
.x4_c00382{left:136.260000px;}
.x5_c00382{left:162.540000px;}
.x3_c00382{left:188.820000px;}
.x1_c00382{left:431.730000px;}
.x6_c00382{left:713.250000px;}
@media print{
.v0_c00382{vertical-align:0.000000pt;}
.ls3_c00382{letter-spacing:-0.056016pt;}
.ls9_c00382{letter-spacing:-0.043568pt;}
.ls5_c00382{letter-spacing:-0.037344pt;}
.lsa_c00382{letter-spacing:-0.031120pt;}
.ls6_c00382{letter-spacing:-0.018672pt;}
.ls8_c00382{letter-spacing:-0.012448pt;}
.ls7_c00382{letter-spacing:-0.006224pt;}
.ls4_c00382{letter-spacing:0.000000pt;}
.ls0_c00382{letter-spacing:0.006224pt;}
.ls2_c00382{letter-spacing:0.018672pt;}
.ls1_c00382{letter-spacing:0.074688pt;}
.wsc_c00382{word-spacing:-0.012448pt;}
.ws0_c00382{word-spacing:0.000000pt;}
.ws13_c00382{word-spacing:0.024896pt;}
.wsb_c00382{word-spacing:0.323648pt;}
.ws14_c00382{word-spacing:0.342320pt;}
.ws4_c00382{word-spacing:2.551840pt;}
.ws5_c00382{word-spacing:2.881712pt;}
.ws2_c00382{word-spacing:3.205360pt;}
.wsd_c00382{word-spacing:7.039344pt;}
.ws9_c00382{word-spacing:7.680416pt;}
.ws8_c00382{word-spacing:7.711536pt;}
.ws10_c00382{word-spacing:7.966720pt;}
.ws11_c00382{word-spacing:8.004064pt;}
.wsf_c00382{word-spacing:8.626464pt;}
.ws1_c00382{word-spacing:9.304880pt;}
.ws3_c00382{word-spacing:11.501952pt;}
.ws6_c00382{word-spacing:13.437616pt;}
.ws7_c00382{word-spacing:13.443840pt;}
.wse_c00382{word-spacing:14.402336pt;}
.ws12_c00382{word-spacing:19.524688pt;}
.wsa_c00382{word-spacing:19.860784pt;}
._0_c00382{margin-left:-1.064304pt;}
._1_c00382{width:0.927376pt;}
._3_c00382{width:5.919024pt;}
._2_c00382{width:7.362992pt;}
.fs0_c00382{font-size:62.240000pt;}
.y0_c00382{bottom:0.000000pt;}
.y2_c00382{bottom:97.547527pt;}
.y1_c00382{bottom:115.387067pt;}
.y1a_c00382{bottom:157.467067pt;}
.y19_c00382{bottom:184.347067pt;}
.y18_c00382{bottom:211.147200pt;}
.y17_c00382{bottom:238.027067pt;}
.y16_c00382{bottom:264.827067pt;}
.y15_c00382{bottom:291.707067pt;}
.y14_c00382{bottom:318.507067pt;}
.y13_c00382{bottom:345.387067pt;}
.y12_c00382{bottom:372.187200pt;}
.y11_c00382{bottom:399.067200pt;}
.y10_c00382{bottom:422.507067pt;}
.yf_c00382{bottom:664.347067pt;}
.ye_c00382{bottom:691.227067pt;}
.yd_c00382{bottom:718.027067pt;}
.yc_c00382{bottom:744.907067pt;}
.yb_c00382{bottom:771.707067pt;}
.ya_c00382{bottom:798.587067pt;}
.y9_c00382{bottom:825.387067pt;}
.y8_c00382{bottom:852.267067pt;}
.y7_c00382{bottom:879.067067pt;}
.y6_c00382{bottom:905.947067pt;}
.y5_c00382{bottom:932.747067pt;}
.y4_c00382{bottom:959.627067pt;}
.y3_c00382{bottom:986.427067pt;}
.h3_c00382{height:55.645234pt;}
.h1_c00382{height:55.797187pt;}
.h2_c00382{height:56.192266pt;}
.h0_c00382{height:1122.666667pt;}
.w0_c00382{width:793.333333pt;}
.x0_c00382{left:0.000000pt;}
.x2_c00382{left:73.520052pt;}
.x4_c00382{left:121.120000pt;}
.x5_c00382{left:144.480000pt;}
.x3_c00382{left:167.840000pt;}
.x1_c00382{left:383.760000pt;}
.x6_c00382{left:634.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_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_e5859e25cca6981409bc9061.woff2')format("woff");}.ff1_c00383{font-family:ff1_c00383;line-height:1.106934;font-style:normal;font-weight:normal;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_c5dba9f6ae21be9f52d970a2.woff2')format("woff");}.ff2_c00383{font-family:ff2_c00383;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00383{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00383{vertical-align:0.000000px;}
.v1_c00383{vertical-align:32.040000px;}
.ls5_c00383{letter-spacing:-0.063018px;}
.ls8_c00383{letter-spacing:-0.042012px;}
.lsd_c00383{letter-spacing:-0.035010px;}
.lsc_c00383{letter-spacing:-0.028008px;}
.ls9_c00383{letter-spacing:-0.021006px;}
.ls7_c00383{letter-spacing:-0.014004px;}
.lsa_c00383{letter-spacing:-0.007002px;}
.ls6_c00383{letter-spacing:0.000000px;}
.ls4_c00383{letter-spacing:0.007002px;}
.ls2_c00383{letter-spacing:0.021006px;}
.ls0_c00383{letter-spacing:0.023281px;}
.ls3_c00383{letter-spacing:0.035010px;}
.ls1_c00383{letter-spacing:0.084024px;}
.lsb_c00383{letter-spacing:0.343098px;}
.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:-12.967628px;}
.ws7_c00383{word-spacing:-0.357102px;}
.ws16_c00383{word-spacing:-0.014004px;}
.ws1_c00383{word-spacing:0.000000px;}
.ws1e_c00383{word-spacing:0.014004px;}
.wsd_c00383{word-spacing:0.049014px;}
.ws6_c00383{word-spacing:0.350100px;}
.ws18_c00383{word-spacing:0.364104px;}
.ws15_c00383{word-spacing:1.085310px;}
.ws17_c00383{word-spacing:1.827522px;}
.ws4_c00383{word-spacing:2.877822px;}
.ws5_c00383{word-spacing:2.884824px;}
.ws10_c00383{word-spacing:3.255930px;}
.ws19_c00383{word-spacing:3.949128px;}
.ws9_c00383{word-spacing:4.306230px;}
.wsa_c00383{word-spacing:4.327236px;}
.wsb_c00383{word-spacing:4.642326px;}
.ws11_c00383{word-spacing:4.691340px;}
.ws1a_c00383{word-spacing:5.062446px;}
.ws1b_c00383{word-spacing:5.377536px;}
.wsc_c00383{word-spacing:8.311374px;}
.ws12_c00383{word-spacing:9.725778px;}
.ws13_c00383{word-spacing:10.390968px;}
.ws14_c00383{word-spacing:10.453986px;}
.ws1c_c00383{word-spacing:11.511288px;}
.ws1d_c00383{word-spacing:11.875392px;}
.wsf_c00383{word-spacing:12.232494px;}
.wse_c00383{word-spacing:12.603600px;}
.ws3_c00383{word-spacing:13.345812px;}
.ws2_c00383{word-spacing:13.681908px;}
.ws8_c00383{word-spacing:17.287938px;}
._1_c00383{margin-left:-1.148328px;}
._0_c00383{width:1.120320px;}
.fc0_c00383{color:rgb(0,0,0);}
.fs1_c00383{font-size:46.562400px;}
.fs0_c00383{font-size:70.020000px;}
.y0_c00383{bottom:0.000000px;}
.y2_c00383{bottom:109.740968px;}
.y1_c00383{bottom:129.810450px;}
.y25_c00383{bottom:162.929460px;}
.y24_c00383{bottom:182.998943px;}
.y23_c00383{bottom:203.159451px;}
.y22_c00383{bottom:223.319960px;}
.y21_c00383{bottom:243.389442px;}
.y20_c00383{bottom:263.549951px;}
.y1f_c00383{bottom:283.710459px;}
.y1e_c00383{bottom:303.870968px;}
.y1d_c00383{bottom:323.940450px;}
.y1c_c00383{bottom:354.900450px;}
.y1b_c00383{bottom:385.140450px;}
.y1a_c00383{bottom:415.290600px;}
.y19_c00383{bottom:445.530600px;}
.y18_c00383{bottom:475.770600px;}
.y17_c00383{bottom:505.920450px;}
.y16_c00383{bottom:536.160450px;}
.y15_c00383{bottom:566.310450px;}
.y14_c00383{bottom:596.460450px;}
.y13_c00383{bottom:626.610450px;}
.y12_c00383{bottom:656.850450px;}
.y11_c00383{bottom:687.000450px;}
.y10_c00383{bottom:717.240450px;}
.yf_c00383{bottom:747.390450px;}
.ye_c00383{bottom:777.630450px;}
.yd_c00383{bottom:807.780450px;}
.yc_c00383{bottom:838.020450px;}
.yb_c00383{bottom:868.170450px;}
.ya_c00383{bottom:898.410450px;}
.y9_c00383{bottom:928.560450px;}
.y8_c00383{bottom:958.800450px;}
.y7_c00383{bottom:988.950450px;}
.y6_c00383{bottom:1019.190450px;}
.y5_c00383{bottom:1049.340450px;}
.y4_c00383{bottom:1079.580450px;}
.y3_c00383{bottom:1109.730450px;}
.h2_c00383{height:62.600889px;}
.h1_c00383{height:62.771836px;}
.h3_c00383{height:73.668786px;}
.h4_c00383{height:74.029386px;}
.h0_c00383{height:1263.000000px;}
.w0_c00383{width:892.500000px;}
.x0_c00383{left:0.000000px;}
.x2_c00383{left:82.710059px;}
.x3_c00383{left:136.260000px;}
.x4_c00383{left:339.750000px;}
.x1_c00383{left:431.730000px;}
@media print{
.v0_c00383{vertical-align:0.000000pt;}
.v1_c00383{vertical-align:28.480000pt;}
.ls5_c00383{letter-spacing:-0.056016pt;}
.ls8_c00383{letter-spacing:-0.037344pt;}
.lsd_c00383{letter-spacing:-0.031120pt;}
.lsc_c00383{letter-spacing:-0.024896pt;}
.ls9_c00383{letter-spacing:-0.018672pt;}
.ls7_c00383{letter-spacing:-0.012448pt;}
.lsa_c00383{letter-spacing:-0.006224pt;}
.ls6_c00383{letter-spacing:0.000000pt;}
.ls4_c00383{letter-spacing:0.006224pt;}
.ls2_c00383{letter-spacing:0.018672pt;}
.ls0_c00383{letter-spacing:0.020694pt;}
.ls3_c00383{letter-spacing:0.031120pt;}
.ls1_c00383{letter-spacing:0.074688pt;}
.lsb_c00383{letter-spacing:0.304976pt;}
.ws0_c00383{word-spacing:-11.526781pt;}
.ws7_c00383{word-spacing:-0.317424pt;}
.ws16_c00383{word-spacing:-0.012448pt;}
.ws1_c00383{word-spacing:0.000000pt;}
.ws1e_c00383{word-spacing:0.012448pt;}
.wsd_c00383{word-spacing:0.043568pt;}
.ws6_c00383{word-spacing:0.311200pt;}
.ws18_c00383{word-spacing:0.323648pt;}
.ws15_c00383{word-spacing:0.964720pt;}
.ws17_c00383{word-spacing:1.624464pt;}
.ws4_c00383{word-spacing:2.558064pt;}
.ws5_c00383{word-spacing:2.564288pt;}
.ws10_c00383{word-spacing:2.894160pt;}
.ws19_c00383{word-spacing:3.510336pt;}
.ws9_c00383{word-spacing:3.827760pt;}
.wsa_c00383{word-spacing:3.846432pt;}
.wsb_c00383{word-spacing:4.126512pt;}
.ws11_c00383{word-spacing:4.170080pt;}
.ws1a_c00383{word-spacing:4.499952pt;}
.ws1b_c00383{word-spacing:4.780032pt;}
.wsc_c00383{word-spacing:7.387888pt;}
.ws12_c00383{word-spacing:8.645136pt;}
.ws13_c00383{word-spacing:9.236416pt;}
.ws14_c00383{word-spacing:9.292432pt;}
.ws1c_c00383{word-spacing:10.232256pt;}
.ws1d_c00383{word-spacing:10.555904pt;}
.wsf_c00383{word-spacing:10.873328pt;}
.wse_c00383{word-spacing:11.203200pt;}
.ws3_c00383{word-spacing:11.862944pt;}
.ws2_c00383{word-spacing:12.161696pt;}
.ws8_c00383{word-spacing:15.367056pt;}
._1_c00383{margin-left:-1.020736pt;}
._0_c00383{width:0.995840pt;}
.fs1_c00383{font-size:41.388800pt;}
.fs0_c00383{font-size:62.240000pt;}
.y0_c00383{bottom:0.000000pt;}
.y2_c00383{bottom:97.547527pt;}
.y1_c00383{bottom:115.387067pt;}
.y25_c00383{bottom:144.826187pt;}
.y24_c00383{bottom:162.665727pt;}
.y23_c00383{bottom:180.586179pt;}
.y22_c00383{bottom:198.506631pt;}
.y21_c00383{bottom:216.346171pt;}
.y20_c00383{bottom:234.266623pt;}
.y1f_c00383{bottom:252.187075pt;}
.y1e_c00383{bottom:270.107527pt;}
.y1d_c00383{bottom:287.947067pt;}
.y1c_c00383{bottom:315.467067pt;}
.y1b_c00383{bottom:342.347067pt;}
.y1a_c00383{bottom:369.147200pt;}
.y19_c00383{bottom:396.027200pt;}
.y18_c00383{bottom:422.907200pt;}
.y17_c00383{bottom:449.707067pt;}
.y16_c00383{bottom:476.587067pt;}
.y15_c00383{bottom:503.387067pt;}
.y14_c00383{bottom:530.187067pt;}
.y13_c00383{bottom:556.987067pt;}
.y12_c00383{bottom:583.867067pt;}
.y11_c00383{bottom:610.667067pt;}
.y10_c00383{bottom:637.547067pt;}
.yf_c00383{bottom:664.347067pt;}
.ye_c00383{bottom:691.227067pt;}
.yd_c00383{bottom:718.027067pt;}
.yc_c00383{bottom:744.907067pt;}
.yb_c00383{bottom:771.707067pt;}
.ya_c00383{bottom:798.587067pt;}
.y9_c00383{bottom:825.387067pt;}
.y8_c00383{bottom:852.267067pt;}
.y7_c00383{bottom:879.067067pt;}
.y6_c00383{bottom:905.947067pt;}
.y5_c00383{bottom:932.747067pt;}
.y4_c00383{bottom:959.627067pt;}
.y3_c00383{bottom:986.427067pt;}
.h2_c00383{height:55.645234pt;}
.h1_c00383{height:55.797187pt;}
.h3_c00383{height:65.483366pt;}
.h4_c00383{height:65.803899pt;}
.h0_c00383{height:1122.666667pt;}
.w0_c00383{width:793.333333pt;}
.x0_c00383{left:0.000000pt;}
.x2_c00383{left:73.520052pt;}
.x3_c00383{left:121.120000pt;}
.x4_c00383{left:302.000000pt;}
.x1_c00383{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_64fdb7015bd171554a45b55e.woff2')format("woff");}.ff1_c00384{font-family:ff1_c00384;line-height:1.106934;font-style:normal;font-weight:normal;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_bbbd0680fa037ca313e68fac.woff2')format("woff");}.ff2_c00384{font-family:ff2_c00384;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00384;src:url('chunks/assets/font_87d900fb5ee77947b722cb65.woff2')format("woff");}.ff3_c00384{font-family:ff3_c00384;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00384{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00384{vertical-align:0.000000px;}
.v1_c00384{vertical-align:32.048676px;}
.ls9_c00384{letter-spacing:-0.420120px;}
.ls8_c00384{letter-spacing:-0.091026px;}
.ls11_c00384{letter-spacing:-0.084024px;}
.ls14_c00384{letter-spacing:-0.070020px;}
.ls6_c00384{letter-spacing:-0.063018px;}
.lsd_c00384{letter-spacing:-0.056016px;}
.lsc_c00384{letter-spacing:-0.049014px;}
.lsb_c00384{letter-spacing:-0.042012px;}
.lse_c00384{letter-spacing:-0.035010px;}
.ls13_c00384{letter-spacing:-0.028008px;}
.ls10_c00384{letter-spacing:-0.021006px;}
.lsf_c00384{letter-spacing:-0.014004px;}
.lsa_c00384{letter-spacing:-0.007002px;}
.ls7_c00384{letter-spacing:0.000000px;}
.ls3_c00384{letter-spacing:0.007002px;}
.ls5_c00384{letter-spacing:0.014004px;}
.ls4_c00384{letter-spacing:0.021006px;}
.ls2_c00384{letter-spacing:0.023281px;}
.ls0_c00384{letter-spacing:0.028008px;}
.ls1_c00384{letter-spacing:0.042012px;}
.ls12_c00384{letter-spacing:0.630180px;}
.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;}
}
.ws1_c00384{word-spacing:-19.507572px;}
.ws4_c00384{word-spacing:-19.451556px;}
.ws3_c00384{word-spacing:-19.402542px;}
.ws0_c00384{word-spacing:-19.374534px;}
.ws2_c00384{word-spacing:-12.967628px;}
.ws26_c00384{word-spacing:-0.378108px;}
.wsb_c00384{word-spacing:-0.322092px;}
.ws23_c00384{word-spacing:-0.315090px;}
.ws22_c00384{word-spacing:-0.028008px;}
.wsa_c00384{word-spacing:-0.014004px;}
.ws7_c00384{word-spacing:-0.007002px;}
.ws5_c00384{word-spacing:0.000000px;}
.ws24_c00384{word-spacing:0.007002px;}
.ws8_c00384{word-spacing:0.028008px;}
.ws9_c00384{word-spacing:0.343098px;}
.wsd_c00384{word-spacing:0.378108px;}
.wsc_c00384{word-spacing:0.399114px;}
.ws6_c00384{word-spacing:0.406116px;}
.ws25_c00384{word-spacing:0.413118px;}
.ws2b_c00384{word-spacing:2.527722px;}
.ws15_c00384{word-spacing:2.877822px;}
.ws1b_c00384{word-spacing:4.292226px;}
.ws1e_c00384{word-spacing:5.412546px;}
.ws1f_c00384{word-spacing:6.469848px;}
.wsf_c00384{word-spacing:6.483852px;}
.ws2e_c00384{word-spacing:8.976564px;}
.ws11_c00384{word-spacing:10.790082px;}
.ws18_c00384{word-spacing:12.946698px;}
.wse_c00384{word-spacing:16.202628px;}
.ws28_c00384{word-spacing:20.165760px;}
.ws1a_c00384{word-spacing:21.202056px;}
.ws1c_c00384{word-spacing:24.100884px;}
.ws14_c00384{word-spacing:24.114888px;}
.ws13_c00384{word-spacing:24.191910px;}
.ws12_c00384{word-spacing:24.478992px;}
.ws29_c00384{word-spacing:25.585308px;}
.ws10_c00384{word-spacing:26.271504px;}
.ws2d_c00384{word-spacing:26.621604px;}
.ws21_c00384{word-spacing:28.456128px;}
.ws16_c00384{word-spacing:29.170332px;}
.ws1d_c00384{word-spacing:33.798654px;}
.ws20_c00384{word-spacing:34.918974px;}
.ws2c_c00384{word-spacing:42.439122px;}
.ws2a_c00384{word-spacing:42.453126px;}
.ws19_c00384{word-spacing:51.821802px;}
.ws2f_c00384{word-spacing:71.616456px;}
.ws27_c00384{word-spacing:81.398250px;}
.ws17_c00384{word-spacing:90.318798px;}
._1_c00384{margin-left:-1.169334px;}
._0_c00384{width:1.029294px;}
._2_c00384{width:50.862528px;}
.fc0_c00384{color:rgb(0,0,0);}
.fs1_c00384{font-size:46.562400px;}
.fs0_c00384{font-size:70.020000px;}
.y0_c00384{bottom:0.000000px;}
.y2_c00384{bottom:109.740968px;}
.y1_c00384{bottom:129.810450px;}
.y21_c00384{bottom:183.539091px;}
.y20_c00384{bottom:213.778978px;}
.y1f_c00384{bottom:243.838564px;}
.y1e_c00384{bottom:274.078452px;}
.y1d_c00384{bottom:304.229064px;}
.y1c_c00384{bottom:334.468951px;}
.y1b_c00384{bottom:364.619563px;}
.y1a_c00384{bottom:394.859451px;}
.y19_c00384{bottom:425.010063px;}
.y18_c00384{bottom:455.249950px;}
.y17_c00384{bottom:485.400562px;}
.y16_c00384{bottom:515.638281px;}
.y15_c00384{bottom:545.788893px;}
.y14_c00384{bottom:576.028781px;}
.y13_c00384{bottom:606.179393px;}
.y2d_c00384{bottom:606.180450px;}
.y12_c00384{bottom:636.419280px;}
.y2c_c00384{bottom:636.420450px;}
.y11_c00384{bottom:666.659168px;}
.y2b_c00384{bottom:666.660450px;}
.y10_c00384{bottom:696.809780px;}
.y2a_c00384{bottom:696.810450px;}
.yf_c00384{bottom:727.049667px;}
.y29_c00384{bottom:727.050450px;}
.ye_c00384{bottom:757.200279px;}
.y28_c00384{bottom:757.200450px;}
.yd_c00384{bottom:787.440167px;}
.y27_c00384{bottom:787.440450px;}
.y26_c00384{bottom:817.590450px;}
.yc_c00384{bottom:817.590779px;}
.y25_c00384{bottom:847.830450px;}
.yb_c00384{bottom:868.080450px;}
.y24_c00384{bottom:877.980450px;}
.ya_c00384{bottom:898.410450px;}
.y23_c00384{bottom:908.220450px;}
.y9_c00384{bottom:928.560450px;}
.y22_c00384{bottom:958.710450px;}
.y8_c00384{bottom:958.800450px;}
.y7_c00384{bottom:988.950450px;}
.y6_c00384{bottom:1019.190450px;}
.y5_c00384{bottom:1049.340450px;}
.y4_c00384{bottom:1079.580450px;}
.y3_c00384{bottom:1109.730450px;}
.h3_c00384{height:62.600889px;}
.h1_c00384{height:62.771836px;}
.h2_c00384{height:63.216299px;}
.h4_c00384{height:73.677462px;}
.h5_c00384{height:74.028786px;}
.h0_c00384{height:1263.000000px;}
.w0_c00384{width:892.500000px;}
.x0_c00384{left:0.000000px;}
.x2_c00384{left:82.710059px;}
.x3_c00384{left:138.960000px;}
.x1_c00384{left:431.730000px;}
.x4_c00384{left:454.230000px;}
@media print{
.v0_c00384{vertical-align:0.000000pt;}
.v1_c00384{vertical-align:28.487712pt;}
.ls9_c00384{letter-spacing:-0.373440pt;}
.ls8_c00384{letter-spacing:-0.080912pt;}
.ls11_c00384{letter-spacing:-0.074688pt;}
.ls14_c00384{letter-spacing:-0.062240pt;}
.ls6_c00384{letter-spacing:-0.056016pt;}
.lsd_c00384{letter-spacing:-0.049792pt;}
.lsc_c00384{letter-spacing:-0.043568pt;}
.lsb_c00384{letter-spacing:-0.037344pt;}
.lse_c00384{letter-spacing:-0.031120pt;}
.ls13_c00384{letter-spacing:-0.024896pt;}
.ls10_c00384{letter-spacing:-0.018672pt;}
.lsf_c00384{letter-spacing:-0.012448pt;}
.lsa_c00384{letter-spacing:-0.006224pt;}
.ls7_c00384{letter-spacing:0.000000pt;}
.ls3_c00384{letter-spacing:0.006224pt;}
.ls5_c00384{letter-spacing:0.012448pt;}
.ls4_c00384{letter-spacing:0.018672pt;}
.ls2_c00384{letter-spacing:0.020694pt;}
.ls0_c00384{letter-spacing:0.024896pt;}
.ls1_c00384{letter-spacing:0.037344pt;}
.ls12_c00384{letter-spacing:0.560160pt;}
.ws1_c00384{word-spacing:-17.340064pt;}
.ws4_c00384{word-spacing:-17.290272pt;}
.ws3_c00384{word-spacing:-17.246704pt;}
.ws0_c00384{word-spacing:-17.221808pt;}
.ws2_c00384{word-spacing:-11.526781pt;}
.ws26_c00384{word-spacing:-0.336096pt;}
.wsb_c00384{word-spacing:-0.286304pt;}
.ws23_c00384{word-spacing:-0.280080pt;}
.ws22_c00384{word-spacing:-0.024896pt;}
.wsa_c00384{word-spacing:-0.012448pt;}
.ws7_c00384{word-spacing:-0.006224pt;}
.ws5_c00384{word-spacing:0.000000pt;}
.ws24_c00384{word-spacing:0.006224pt;}
.ws8_c00384{word-spacing:0.024896pt;}
.ws9_c00384{word-spacing:0.304976pt;}
.wsd_c00384{word-spacing:0.336096pt;}
.wsc_c00384{word-spacing:0.354768pt;}
.ws6_c00384{word-spacing:0.360992pt;}
.ws25_c00384{word-spacing:0.367216pt;}
.ws2b_c00384{word-spacing:2.246864pt;}
.ws15_c00384{word-spacing:2.558064pt;}
.ws1b_c00384{word-spacing:3.815312pt;}
.ws1e_c00384{word-spacing:4.811152pt;}
.ws1f_c00384{word-spacing:5.750976pt;}
.wsf_c00384{word-spacing:5.763424pt;}
.ws2e_c00384{word-spacing:7.979168pt;}
.ws11_c00384{word-spacing:9.591184pt;}
.ws18_c00384{word-spacing:11.508176pt;}
.wse_c00384{word-spacing:14.402336pt;}
.ws28_c00384{word-spacing:17.925120pt;}
.ws1a_c00384{word-spacing:18.846272pt;}
.ws1c_c00384{word-spacing:21.423008pt;}
.ws14_c00384{word-spacing:21.435456pt;}
.ws13_c00384{word-spacing:21.503920pt;}
.ws12_c00384{word-spacing:21.759104pt;}
.ws29_c00384{word-spacing:22.742496pt;}
.ws10_c00384{word-spacing:23.352448pt;}
.ws2d_c00384{word-spacing:23.663648pt;}
.ws21_c00384{word-spacing:25.294336pt;}
.ws16_c00384{word-spacing:25.929184pt;}
.ws1d_c00384{word-spacing:30.043248pt;}
.ws20_c00384{word-spacing:31.039088pt;}
.ws2c_c00384{word-spacing:37.723664pt;}
.ws2a_c00384{word-spacing:37.736112pt;}
.ws19_c00384{word-spacing:46.063824pt;}
.ws2f_c00384{word-spacing:63.659072pt;}
.ws27_c00384{word-spacing:72.354000pt;}
.ws17_c00384{word-spacing:80.283376pt;}
._1_c00384{margin-left:-1.039408pt;}
._0_c00384{width:0.914928pt;}
._2_c00384{width:45.211136pt;}
.fs1_c00384{font-size:41.388800pt;}
.fs0_c00384{font-size:62.240000pt;}
.y0_c00384{bottom:0.000000pt;}
.y2_c00384{bottom:97.547527pt;}
.y1_c00384{bottom:115.387067pt;}
.y21_c00384{bottom:163.145859pt;}
.y20_c00384{bottom:190.025759pt;}
.y1f_c00384{bottom:216.745391pt;}
.y1e_c00384{bottom:243.625291pt;}
.y1d_c00384{bottom:270.425835pt;}
.y1c_c00384{bottom:297.305735pt;}
.y1b_c00384{bottom:324.106279pt;}
.y1a_c00384{bottom:350.986179pt;}
.y19_c00384{bottom:377.786723pt;}
.y18_c00384{bottom:404.666623pt;}
.y17_c00384{bottom:431.467167pt;}
.y16_c00384{bottom:458.345139pt;}
.y15_c00384{bottom:485.145683pt;}
.y14_c00384{bottom:512.025583pt;}
.y13_c00384{bottom:538.826127pt;}
.y2d_c00384{bottom:538.827067pt;}
.y12_c00384{bottom:565.706027pt;}
.y2c_c00384{bottom:565.707067pt;}
.y11_c00384{bottom:592.585927pt;}
.y2b_c00384{bottom:592.587067pt;}
.y10_c00384{bottom:619.386471pt;}
.y2a_c00384{bottom:619.387067pt;}
.yf_c00384{bottom:646.266371pt;}
.y29_c00384{bottom:646.267067pt;}
.ye_c00384{bottom:673.066915pt;}
.y28_c00384{bottom:673.067067pt;}
.yd_c00384{bottom:699.946815pt;}
.y27_c00384{bottom:699.947067pt;}
.y26_c00384{bottom:726.747067pt;}
.yc_c00384{bottom:726.747359pt;}
.y25_c00384{bottom:753.627067pt;}
.yb_c00384{bottom:771.627067pt;}
.y24_c00384{bottom:780.427067pt;}
.ya_c00384{bottom:798.587067pt;}
.y23_c00384{bottom:807.307067pt;}
.y9_c00384{bottom:825.387067pt;}
.y22_c00384{bottom:852.187067pt;}
.y8_c00384{bottom:852.267067pt;}
.y7_c00384{bottom:879.067067pt;}
.y6_c00384{bottom:905.947067pt;}
.y5_c00384{bottom:932.747067pt;}
.y4_c00384{bottom:959.627067pt;}
.y3_c00384{bottom:986.427067pt;}
.h3_c00384{height:55.645234pt;}
.h1_c00384{height:55.797187pt;}
.h2_c00384{height:56.192266pt;}
.h4_c00384{height:65.491078pt;}
.h5_c00384{height:65.803366pt;}
.h0_c00384{height:1122.666667pt;}
.w0_c00384{width:793.333333pt;}
.x0_c00384{left:0.000000pt;}
.x2_c00384{left:73.520052pt;}
.x3_c00384{left:123.520000pt;}
.x1_c00384{left:383.760000pt;}
.x4_c00384{left:403.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0990c08db89f55a641347ddd.woff2')format("woff");}.ff1_c00385{font-family:ff1_c00385;line-height:1.106934;font-style:normal;font-weight:normal;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_e35d34a41da029244bf66646.woff2')format("woff");}.ff2_c00385{font-family:ff2_c00385;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00385{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00385{vertical-align:0.000000px;}
.ls5_c00385{letter-spacing:-0.063018px;}
.lsd_c00385{letter-spacing:-0.056016px;}
.ls7_c00385{letter-spacing:-0.049014px;}
.lsb_c00385{letter-spacing:-0.035010px;}
.lsc_c00385{letter-spacing:-0.028008px;}
.lsa_c00385{letter-spacing:-0.021006px;}
.ls9_c00385{letter-spacing:-0.014004px;}
.ls8_c00385{letter-spacing:-0.007002px;}
.ls6_c00385{letter-spacing:0.000000px;}
.ls0_c00385{letter-spacing:0.007002px;}
.ls3_c00385{letter-spacing:0.014004px;}
.ls2_c00385{letter-spacing:0.021006px;}
.ls1_c00385{letter-spacing:0.028008px;}
.ls4_c00385{letter-spacing:0.035010px;}
.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:0.000000px;}
.ws12_c00385{word-spacing:0.007002px;}
.wsb_c00385{word-spacing:0.392112px;}
.ws14_c00385{word-spacing:2.849814px;}
.wsd_c00385{word-spacing:4.670334px;}
.ws1a_c00385{word-spacing:5.797656px;}
.ws7_c00385{word-spacing:9.732780px;}
.wsf_c00385{word-spacing:14.445126px;}
.ws1c_c00385{word-spacing:15.096312px;}
.wsa_c00385{word-spacing:16.874820px;}
.ws5_c00385{word-spacing:17.280936px;}
.ws17_c00385{word-spacing:20.928978px;}
.ws6_c00385{word-spacing:25.235208px;}
.ws13_c00385{word-spacing:26.992710px;}
.ws4_c00385{word-spacing:28.820232px;}
.ws16_c00385{word-spacing:29.828520px;}
.ws8_c00385{word-spacing:34.904970px;}
.ws18_c00385{word-spacing:36.032292px;}
.ws2_c00385{word-spacing:38.511000px;}
.ws15_c00385{word-spacing:40.695624px;}
.ws9_c00385{word-spacing:43.538436px;}
.ws3_c00385{word-spacing:47.522574px;}
.ws19_c00385{word-spacing:49.357098px;}
.ws10_c00385{word-spacing:53.271216px;}
.ws11_c00385{word-spacing:59.005854px;}
.wsc_c00385{word-spacing:62.275788px;}
.ws1b_c00385{word-spacing:98.973270px;}
.ws1_c00385{word-spacing:111.275784px;}
.wse_c00385{word-spacing:178.579008px;}
._1_c00385{margin-left:-1.155330px;}
._0_c00385{width:1.015290px;}
.fc0_c00385{color:rgb(0,0,0);}
.fs0_c00385{font-size:70.020000px;}
.y0_c00385{bottom:0.000000px;}
.y2_c00385{bottom:109.740968px;}
.y1_c00385{bottom:129.810450px;}
.y22_c00385{bottom:173.723493px;}
.y21_c00385{bottom:203.963381px;}
.y20_c00385{bottom:234.113993px;}
.y1f_c00385{bottom:264.353880px;}
.y1e_c00385{bottom:294.504492px;}
.y1d_c00385{bottom:324.744380px;}
.y1c_c00385{bottom:354.894992px;}
.y1b_c00385{bottom:385.134879px;}
.y1a_c00385{bottom:415.285491px;}
.y19_c00385{bottom:445.525379px;}
.y18_c00385{bottom:475.765266px;}
.y17_c00385{bottom:505.915878px;}
.y16_c00385{bottom:536.155766px;}
.y15_c00385{bottom:566.306378px;}
.y14_c00385{bottom:596.456990px;}
.y13_c00385{bottom:626.607602px;}
.y12_c00385{bottom:656.847489px;}
.y11_c00385{bottom:686.998101px;}
.y10_c00385{bottom:717.237989px;}
.yf_c00385{bottom:747.388601px;}
.ye_c00385{bottom:777.628488px;}
.yd_c00385{bottom:807.779100px;}
.yc_c00385{bottom:838.018988px;}
.yb_c00385{bottom:868.169600px;}
.ya_c00385{bottom:898.409487px;}
.y9_c00385{bottom:928.560099px;}
.y8_c00385{bottom:958.799987px;}
.y7_c00385{bottom:988.950599px;}
.y6_c00385{bottom:1019.190486px;}
.y5_c00385{bottom:1049.341098px;}
.y4_c00385{bottom:1079.580985px;}
.y3_c00385{bottom:1109.731597px;}
.h2_c00385{height:62.600889px;}
.h1_c00385{height:62.771836px;}
.h0_c00385{height:1263.000000px;}
.w0_c00385{width:892.500000px;}
.x0_c00385{left:0.000000px;}
.x2_c00385{left:82.710059px;}
.x3_c00385{left:138.960626px;}
.x1_c00385{left:431.730000px;}
@media print{
.v0_c00385{vertical-align:0.000000pt;}
.ls5_c00385{letter-spacing:-0.056016pt;}
.lsd_c00385{letter-spacing:-0.049792pt;}
.ls7_c00385{letter-spacing:-0.043568pt;}
.lsb_c00385{letter-spacing:-0.031120pt;}
.lsc_c00385{letter-spacing:-0.024896pt;}
.lsa_c00385{letter-spacing:-0.018672pt;}
.ls9_c00385{letter-spacing:-0.012448pt;}
.ls8_c00385{letter-spacing:-0.006224pt;}
.ls6_c00385{letter-spacing:0.000000pt;}
.ls0_c00385{letter-spacing:0.006224pt;}
.ls3_c00385{letter-spacing:0.012448pt;}
.ls2_c00385{letter-spacing:0.018672pt;}
.ls1_c00385{letter-spacing:0.024896pt;}
.ls4_c00385{letter-spacing:0.031120pt;}
.ws0_c00385{word-spacing:0.000000pt;}
.ws12_c00385{word-spacing:0.006224pt;}
.wsb_c00385{word-spacing:0.348544pt;}
.ws14_c00385{word-spacing:2.533168pt;}
.wsd_c00385{word-spacing:4.151408pt;}
.ws1a_c00385{word-spacing:5.153472pt;}
.ws7_c00385{word-spacing:8.651360pt;}
.wsf_c00385{word-spacing:12.840112pt;}
.ws1c_c00385{word-spacing:13.418944pt;}
.wsa_c00385{word-spacing:14.999840pt;}
.ws5_c00385{word-spacing:15.360832pt;}
.ws17_c00385{word-spacing:18.603536pt;}
.ws6_c00385{word-spacing:22.431296pt;}
.ws13_c00385{word-spacing:23.993520pt;}
.ws4_c00385{word-spacing:25.617984pt;}
.ws16_c00385{word-spacing:26.514240pt;}
.ws8_c00385{word-spacing:31.026640pt;}
.ws18_c00385{word-spacing:32.028704pt;}
.ws2_c00385{word-spacing:34.232000pt;}
.ws15_c00385{word-spacing:36.173888pt;}
.ws9_c00385{word-spacing:38.700832pt;}
.ws3_c00385{word-spacing:42.242288pt;}
.ws19_c00385{word-spacing:43.872976pt;}
.ws10_c00385{word-spacing:47.352192pt;}
.ws11_c00385{word-spacing:52.449648pt;}
.wsc_c00385{word-spacing:55.356256pt;}
.ws1b_c00385{word-spacing:87.976240pt;}
.ws1_c00385{word-spacing:98.911808pt;}
.wse_c00385{word-spacing:158.736896pt;}
._1_c00385{margin-left:-1.026960pt;}
._0_c00385{width:0.902480pt;}
.fs0_c00385{font-size:62.240000pt;}
.y0_c00385{bottom:0.000000pt;}
.y2_c00385{bottom:97.547527pt;}
.y1_c00385{bottom:115.387067pt;}
.y22_c00385{bottom:154.420883pt;}
.y21_c00385{bottom:181.300783pt;}
.y20_c00385{bottom:208.101327pt;}
.y1f_c00385{bottom:234.981227pt;}
.y1e_c00385{bottom:261.781771pt;}
.y1d_c00385{bottom:288.661671pt;}
.y1c_c00385{bottom:315.462215pt;}
.y1b_c00385{bottom:342.342115pt;}
.y1a_c00385{bottom:369.142659pt;}
.y19_c00385{bottom:396.022559pt;}
.y18_c00385{bottom:422.902459pt;}
.y17_c00385{bottom:449.703003pt;}
.y16_c00385{bottom:476.582903pt;}
.y15_c00385{bottom:503.383447pt;}
.y14_c00385{bottom:530.183991pt;}
.y13_c00385{bottom:556.984535pt;}
.y12_c00385{bottom:583.864435pt;}
.y11_c00385{bottom:610.664979pt;}
.y10_c00385{bottom:637.544879pt;}
.yf_c00385{bottom:664.345423pt;}
.ye_c00385{bottom:691.225323pt;}
.yd_c00385{bottom:718.025867pt;}
.yc_c00385{bottom:744.905767pt;}
.yb_c00385{bottom:771.706311pt;}
.ya_c00385{bottom:798.586211pt;}
.y9_c00385{bottom:825.386755pt;}
.y8_c00385{bottom:852.266655pt;}
.y7_c00385{bottom:879.067199pt;}
.y6_c00385{bottom:905.947099pt;}
.y5_c00385{bottom:932.747643pt;}
.y4_c00385{bottom:959.627543pt;}
.y3_c00385{bottom:986.428087pt;}
.h2_c00385{height:55.645234pt;}
.h1_c00385{height:55.797187pt;}
.h0_c00385{height:1122.666667pt;}
.w0_c00385{width:793.333333pt;}
.x0_c00385{left:0.000000pt;}
.x2_c00385{left:73.520052pt;}
.x3_c00385{left:123.520556pt;}
.x1_c00385{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4a89f52e5210fd154b07b232.woff2')format("woff");}.ff1_c00386{font-family:ff1_c00386;line-height:1.106934;font-style:normal;font-weight:normal;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_0ad487d509a256add27d226f.woff2')format("woff");}.ff2_c00386{font-family:ff2_c00386;line-height:1.104492;font-style:normal;font-weight:normal;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_71f4419739fd18aeb8508b0e.woff2')format("woff");}.ff3_c00386{font-family:ff3_c00386;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00386{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00386{vertical-align:0.000000px;}
.ls6_c00386{letter-spacing:-0.077022px;}
.ls3_c00386{letter-spacing:-0.063018px;}
.lsb_c00386{letter-spacing:-0.056016px;}
.lsa_c00386{letter-spacing:-0.035010px;}
.ls8_c00386{letter-spacing:-0.028008px;}
.ls7_c00386{letter-spacing:-0.021006px;}
.ls9_c00386{letter-spacing:-0.014004px;}
.ls5_c00386{letter-spacing:-0.007002px;}
.ls4_c00386{letter-spacing:0.000000px;}
.ls0_c00386{letter-spacing:0.007002px;}
.ls1_c00386{letter-spacing:0.014004px;}
.ls2_c00386{letter-spacing:0.042012px;}
.sc__c00386{text-shadow:none;}
.sc0_c00386{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00386{-webkit-text-stroke:0px transparent;}
.sc0_c00386{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00386{word-spacing:0.000000px;}
.ws13_c00386{word-spacing:0.042012px;}
.ws4_c00386{word-spacing:0.350100px;}
.wsc_c00386{word-spacing:1.449414px;}
.wsd_c00386{word-spacing:3.255930px;}
.ws5_c00386{word-spacing:7.576164px;}
.wsf_c00386{word-spacing:11.147184px;}
.ws9_c00386{word-spacing:14.018004px;}
.ws1_c00386{word-spacing:16.909830px;}
.wsb_c00386{word-spacing:19.052442px;}
.ws6_c00386{word-spacing:21.580164px;}
.ws7_c00386{word-spacing:24.114888px;}
.ws11_c00386{word-spacing:29.464416px;}
.ws10_c00386{word-spacing:43.580448px;}
.ws8_c00386{word-spacing:49.315086px;}
.ws12_c00386{word-spacing:55.070730px;}
.ws3_c00386{word-spacing:68.409540px;}
.ws2_c00386{word-spacing:86.460696px;}
.wsa_c00386{word-spacing:91.803222px;}
.wse_c00386{word-spacing:112.340088px;}
._1_c00386{margin-left:-1.344384px;}
._0_c00386{width:1.127322px;}
.fc0_c00386{color:rgb(0,0,0);}
.fs0_c00386{font-size:70.020000px;}
.y0_c00386{bottom:0.000000px;}
.y2_c00386{bottom:109.740968px;}
.y1_c00386{bottom:129.810450px;}
.y22_c00386{bottom:173.098517px;}
.y21_c00386{bottom:203.249128px;}
.y20_c00386{bottom:233.489016px;}
.y1f_c00386{bottom:263.548602px;}
.y1e_c00386{bottom:293.788489px;}
.y1d_c00386{bottom:323.939101px;}
.y1c_c00386{bottom:354.178989px;}
.y1b_c00386{bottom:384.329601px;}
.y1a_c00386{bottom:414.569489px;}
.y19_c00386{bottom:444.720101px;}
.y18_c00386{bottom:474.959988px;}
.y17_c00386{bottom:505.110600px;}
.y16_c00386{bottom:536.155766px;}
.y15_c00386{bottom:566.306378px;}
.y14_c00386{bottom:596.456990px;}
.y13_c00386{bottom:626.607602px;}
.y12_c00386{bottom:656.847489px;}
.y11_c00386{bottom:686.998101px;}
.y10_c00386{bottom:717.237989px;}
.yf_c00386{bottom:747.388601px;}
.ye_c00386{bottom:777.628488px;}
.yd_c00386{bottom:807.779100px;}
.yc_c00386{bottom:838.018988px;}
.yb_c00386{bottom:868.169600px;}
.ya_c00386{bottom:898.409487px;}
.y9_c00386{bottom:928.560099px;}
.y8_c00386{bottom:958.799987px;}
.y7_c00386{bottom:988.950599px;}
.y6_c00386{bottom:1019.190486px;}
.y5_c00386{bottom:1049.341098px;}
.y4_c00386{bottom:1079.580985px;}
.y3_c00386{bottom:1109.731597px;}
.h2_c00386{height:62.600889px;}
.h1_c00386{height:62.771836px;}
.h3_c00386{height:63.216299px;}
.h0_c00386{height:1263.000000px;}
.w0_c00386{width:892.500000px;}
.x0_c00386{left:0.000000px;}
.x2_c00386{left:82.710059px;}
.x3_c00386{left:138.960626px;}
.x1_c00386{left:431.730000px;}
.x4_c00386{left:446.310000px;}
@media print{
.v0_c00386{vertical-align:0.000000pt;}
.ls6_c00386{letter-spacing:-0.068464pt;}
.ls3_c00386{letter-spacing:-0.056016pt;}
.lsb_c00386{letter-spacing:-0.049792pt;}
.lsa_c00386{letter-spacing:-0.031120pt;}
.ls8_c00386{letter-spacing:-0.024896pt;}
.ls7_c00386{letter-spacing:-0.018672pt;}
.ls9_c00386{letter-spacing:-0.012448pt;}
.ls5_c00386{letter-spacing:-0.006224pt;}
.ls4_c00386{letter-spacing:0.000000pt;}
.ls0_c00386{letter-spacing:0.006224pt;}
.ls1_c00386{letter-spacing:0.012448pt;}
.ls2_c00386{letter-spacing:0.037344pt;}
.ws0_c00386{word-spacing:0.000000pt;}
.ws13_c00386{word-spacing:0.037344pt;}
.ws4_c00386{word-spacing:0.311200pt;}
.wsc_c00386{word-spacing:1.288368pt;}
.wsd_c00386{word-spacing:2.894160pt;}
.ws5_c00386{word-spacing:6.734368pt;}
.wsf_c00386{word-spacing:9.908608pt;}
.ws9_c00386{word-spacing:12.460448pt;}
.ws1_c00386{word-spacing:15.030960pt;}
.wsb_c00386{word-spacing:16.935504pt;}
.ws6_c00386{word-spacing:19.182368pt;}
.ws7_c00386{word-spacing:21.435456pt;}
.ws11_c00386{word-spacing:26.190592pt;}
.ws10_c00386{word-spacing:38.738176pt;}
.ws8_c00386{word-spacing:43.835632pt;}
.ws12_c00386{word-spacing:48.951760pt;}
.ws3_c00386{word-spacing:60.808480pt;}
.ws2_c00386{word-spacing:76.853952pt;}
.wsa_c00386{word-spacing:81.602864pt;}
.wse_c00386{word-spacing:99.857856pt;}
._1_c00386{margin-left:-1.195008pt;}
._0_c00386{width:1.002064pt;}
.fs0_c00386{font-size:62.240000pt;}
.y0_c00386{bottom:0.000000pt;}
.y2_c00386{bottom:97.547527pt;}
.y1_c00386{bottom:115.387067pt;}
.y22_c00386{bottom:153.865348pt;}
.y21_c00386{bottom:180.665892pt;}
.y20_c00386{bottom:207.545792pt;}
.y1f_c00386{bottom:234.265424pt;}
.y1e_c00386{bottom:261.145324pt;}
.y1d_c00386{bottom:287.945868pt;}
.y1c_c00386{bottom:314.825768pt;}
.y1b_c00386{bottom:341.626312pt;}
.y1a_c00386{bottom:368.506212pt;}
.y19_c00386{bottom:395.306756pt;}
.y18_c00386{bottom:422.186656pt;}
.y17_c00386{bottom:448.987200pt;}
.y16_c00386{bottom:476.582903pt;}
.y15_c00386{bottom:503.383447pt;}
.y14_c00386{bottom:530.183991pt;}
.y13_c00386{bottom:556.984535pt;}
.y12_c00386{bottom:583.864435pt;}
.y11_c00386{bottom:610.664979pt;}
.y10_c00386{bottom:637.544879pt;}
.yf_c00386{bottom:664.345423pt;}
.ye_c00386{bottom:691.225323pt;}
.yd_c00386{bottom:718.025867pt;}
.yc_c00386{bottom:744.905767pt;}
.yb_c00386{bottom:771.706311pt;}
.ya_c00386{bottom:798.586211pt;}
.y9_c00386{bottom:825.386755pt;}
.y8_c00386{bottom:852.266655pt;}
.y7_c00386{bottom:879.067199pt;}
.y6_c00386{bottom:905.947099pt;}
.y5_c00386{bottom:932.747643pt;}
.y4_c00386{bottom:959.627543pt;}
.y3_c00386{bottom:986.428087pt;}
.h2_c00386{height:55.645234pt;}
.h1_c00386{height:55.797187pt;}
.h3_c00386{height:56.192266pt;}
.h0_c00386{height:1122.666667pt;}
.w0_c00386{width:793.333333pt;}
.x0_c00386{left:0.000000pt;}
.x2_c00386{left:73.520052pt;}
.x3_c00386{left:123.520556pt;}
.x1_c00386{left:383.760000pt;}
.x4_c00386{left:396.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8f4b867cb2d0f4428ef69382.woff2')format("woff");}.ff1_c00387{font-family:ff1_c00387;line-height:1.106934;font-style:normal;font-weight:normal;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_8d38f510986910428e4e4a99.woff2')format("woff");}.ff2_c00387{font-family:ff2_c00387;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00387{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00387{vertical-align:0.000000px;}
.ls2_c00387{letter-spacing:-0.063018px;}
.ls8_c00387{letter-spacing:-0.056016px;}
.ls7_c00387{letter-spacing:-0.042012px;}
.ls9_c00387{letter-spacing:-0.035010px;}
.ls4_c00387{letter-spacing:-0.028008px;}
.ls6_c00387{letter-spacing:-0.021006px;}
.lsa_c00387{letter-spacing:-0.014004px;}
.ls5_c00387{letter-spacing:-0.007002px;}
.ls3_c00387{letter-spacing:0.000000px;}
.ls1_c00387{letter-spacing:0.007002px;}
.ls0_c00387{letter-spacing:0.070020px;}
.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;}
}
.ws2_c00387{word-spacing:-0.007002px;}
.ws0_c00387{word-spacing:0.000000px;}
.ws1_c00387{word-spacing:0.014004px;}
.ws10_c00387{word-spacing:0.042012px;}
.ws4_c00387{word-spacing:0.343098px;}
.wsf_c00387{word-spacing:1.806516px;}
.wse_c00387{word-spacing:2.156616px;}
.ws7_c00387{word-spacing:2.163618px;}
.wsc_c00387{word-spacing:6.098742px;}
.wsd_c00387{word-spacing:7.219062px;}
.ws8_c00387{word-spacing:8.619462px;}
.wsb_c00387{word-spacing:8.668476px;}
.ws9_c00387{word-spacing:8.682480px;}
.wsa_c00387{word-spacing:8.983566px;}
.ws14_c00387{word-spacing:10.061874px;}
.ws11_c00387{word-spacing:10.068876px;}
.ws13_c00387{word-spacing:13.303800px;}
.ws12_c00387{word-spacing:13.688910px;}
.ws5_c00387{word-spacing:21.244068px;}
.ws6_c00387{word-spacing:21.265074px;}
.ws3_c00387{word-spacing:40.331520px;}
._4_c00387{margin-left:-6.581880px;}
._3_c00387{margin-left:-1.036296px;}
._0_c00387{width:1.036296px;}
._1_c00387{width:8.283366px;}
._2_c00387{width:39.281220px;}
.fc0_c00387{color:rgb(0,0,0);}
.fs0_c00387{font-size:70.020000px;}
.y0_c00387{bottom:0.000000px;}
.y2_c00387{bottom:109.740968px;}
.y1_c00387{bottom:129.810450px;}
.y1a_c00387{bottom:171.657561px;}
.y19_c00387{bottom:201.897448px;}
.y18_c00387{bottom:232.048060px;}
.y17_c00387{bottom:262.287948px;}
.y16_c00387{bottom:292.438560px;}
.y15_c00387{bottom:322.678447px;}
.y14_c00387{bottom:352.829059px;}
.y13_c00387{bottom:383.068947px;}
.y12_c00387{bottom:413.128533px;}
.y11_c00387{bottom:443.368420px;}
.y10_c00387{bottom:473.519032px;}
.yf_c00387{bottom:503.758920px;}
.ye_c00387{bottom:533.909532px;}
.yd_c00387{bottom:564.149420px;}
.yc_c00387{bottom:594.300031px;}
.yb_c00387{bottom:624.539919px;}
.ya_c00387{bottom:654.690531px;}
.y9_c00387{bottom:684.930418px;}
.y8_c00387{bottom:715.081030px;}
.y7_c00387{bottom:745.320918px;}
.y6_c00387{bottom:771.690450px;}
.y5_c00387{bottom:1049.341098px;}
.y4_c00387{bottom:1079.580985px;}
.y3_c00387{bottom:1109.731597px;}
.h1_c00387{height:62.771836px;}
.h2_c00387{height:63.216299px;}
.h0_c00387{height:1263.000000px;}
.w0_c00387{width:892.500000px;}
.x0_c00387{left:0.000000px;}
.x2_c00387{left:82.710059px;}
.x7_c00387{left:138.959752px;}
.x5_c00387{left:165.240882px;}
.x4_c00387{left:283.410135px;}
.x1_c00387{left:431.730000px;}
.x3_c00387{left:446.309914px;}
.x6_c00387{left:730.620000px;}
@media print{
.v0_c00387{vertical-align:0.000000pt;}
.ls2_c00387{letter-spacing:-0.056016pt;}
.ls8_c00387{letter-spacing:-0.049792pt;}
.ls7_c00387{letter-spacing:-0.037344pt;}
.ls9_c00387{letter-spacing:-0.031120pt;}
.ls4_c00387{letter-spacing:-0.024896pt;}
.ls6_c00387{letter-spacing:-0.018672pt;}
.lsa_c00387{letter-spacing:-0.012448pt;}
.ls5_c00387{letter-spacing:-0.006224pt;}
.ls3_c00387{letter-spacing:0.000000pt;}
.ls1_c00387{letter-spacing:0.006224pt;}
.ls0_c00387{letter-spacing:0.062240pt;}
.ws2_c00387{word-spacing:-0.006224pt;}
.ws0_c00387{word-spacing:0.000000pt;}
.ws1_c00387{word-spacing:0.012448pt;}
.ws10_c00387{word-spacing:0.037344pt;}
.ws4_c00387{word-spacing:0.304976pt;}
.wsf_c00387{word-spacing:1.605792pt;}
.wse_c00387{word-spacing:1.916992pt;}
.ws7_c00387{word-spacing:1.923216pt;}
.wsc_c00387{word-spacing:5.421104pt;}
.wsd_c00387{word-spacing:6.416944pt;}
.ws8_c00387{word-spacing:7.661744pt;}
.wsb_c00387{word-spacing:7.705312pt;}
.ws9_c00387{word-spacing:7.717760pt;}
.wsa_c00387{word-spacing:7.985392pt;}
.ws14_c00387{word-spacing:8.943888pt;}
.ws11_c00387{word-spacing:8.950112pt;}
.ws13_c00387{word-spacing:11.825600pt;}
.ws12_c00387{word-spacing:12.167920pt;}
.ws5_c00387{word-spacing:18.883616pt;}
.ws6_c00387{word-spacing:18.902288pt;}
.ws3_c00387{word-spacing:35.850240pt;}
._4_c00387{margin-left:-5.850560pt;}
._3_c00387{margin-left:-0.921152pt;}
._0_c00387{width:0.921152pt;}
._1_c00387{width:7.362992pt;}
._2_c00387{width:34.916640pt;}
.fs0_c00387{font-size:62.240000pt;}
.y0_c00387{bottom:0.000000pt;}
.y2_c00387{bottom:97.547527pt;}
.y1_c00387{bottom:115.387067pt;}
.y1a_c00387{bottom:152.584499pt;}
.y19_c00387{bottom:179.464399pt;}
.y18_c00387{bottom:206.264943pt;}
.y17_c00387{bottom:233.144843pt;}
.y16_c00387{bottom:259.945387pt;}
.y15_c00387{bottom:286.825287pt;}
.y14_c00387{bottom:313.625831pt;}
.y13_c00387{bottom:340.505731pt;}
.y12_c00387{bottom:367.225363pt;}
.y11_c00387{bottom:394.105263pt;}
.y10_c00387{bottom:420.905807pt;}
.yf_c00387{bottom:447.785707pt;}
.ye_c00387{bottom:474.586251pt;}
.yd_c00387{bottom:501.466151pt;}
.yc_c00387{bottom:528.266695pt;}
.yb_c00387{bottom:555.146595pt;}
.ya_c00387{bottom:581.947139pt;}
.y9_c00387{bottom:608.827039pt;}
.y8_c00387{bottom:635.627583pt;}
.y7_c00387{bottom:662.507483pt;}
.y6_c00387{bottom:685.947067pt;}
.y5_c00387{bottom:932.747643pt;}
.y4_c00387{bottom:959.627543pt;}
.y3_c00387{bottom:986.428087pt;}
.h1_c00387{height:55.797187pt;}
.h2_c00387{height:56.192266pt;}
.h0_c00387{height:1122.666667pt;}
.w0_c00387{width:793.333333pt;}
.x0_c00387{left:0.000000pt;}
.x2_c00387{left:73.520052pt;}
.x7_c00387{left:123.519780pt;}
.x5_c00387{left:146.880784pt;}
.x4_c00387{left:251.920120pt;}
.x1_c00387{left:383.760000pt;}
.x3_c00387{left:396.719924pt;}
.x6_c00387{left:649.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2f821496a12d743b55350c80.woff2')format("woff");}.ff1_c00388{font-family:ff1_c00388;line-height:1.106934;font-style:normal;font-weight:normal;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_51735ebf6d9f514a3627cf65.woff2')format("woff");}.ff2_c00388{font-family:ff2_c00388;line-height:1.104492;font-style:normal;font-weight:normal;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_a12926c207225281a226b5d2.woff2')format("woff");}.ff3_c00388{font-family:ff3_c00388;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00388{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00388{vertical-align:0.000000px;}
.v1_c00388{vertical-align:32.043852px;}
.lsf_c00388{letter-spacing:-0.335249px;}
.ls4_c00388{letter-spacing:-0.063018px;}
.lsc_c00388{letter-spacing:-0.056016px;}
.lsa_c00388{letter-spacing:-0.049014px;}
.ls7_c00388{letter-spacing:-0.042012px;}
.lse_c00388{letter-spacing:-0.035010px;}
.lsd_c00388{letter-spacing:-0.028008px;}
.ls8_c00388{letter-spacing:-0.021006px;}
.ls9_c00388{letter-spacing:-0.014004px;}
.lsb_c00388{letter-spacing:-0.007002px;}
.ls5_c00388{letter-spacing:0.000000px;}
.ls1_c00388{letter-spacing:0.007002px;}
.ls2_c00388{letter-spacing:0.014004px;}
.ls3_c00388{letter-spacing:0.021006px;}
.ls0_c00388{letter-spacing:0.023281px;}
.ls6_c00388{letter-spacing:0.343098px;}
.sc__c00388{text-shadow:none;}
.sc0_c00388{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00388{-webkit-text-stroke:0px transparent;}
.sc0_c00388{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00388{word-spacing:-19.423548px;}
.ws1_c00388{word-spacing:-12.967628px;}
.ws2_c00388{word-spacing:-12.609098px;}
.ws6_c00388{word-spacing:-0.014004px;}
.ws3_c00388{word-spacing:0.000000px;}
.wsc_c00388{word-spacing:0.343098px;}
.ws1a_c00388{word-spacing:0.357102px;}
.ws10_c00388{word-spacing:0.385110px;}
.wsd_c00388{word-spacing:1.085310px;}
.ws22_c00388{word-spacing:1.827522px;}
.ws7_c00388{word-spacing:3.241926px;}
.ws1b_c00388{word-spacing:3.262932px;}
.ws1c_c00388{word-spacing:3.956130px;}
.ws23_c00388{word-spacing:3.963132px;}
.wsf_c00388{word-spacing:4.362246px;}
.ws16_c00388{word-spacing:5.741640px;}
.ws4_c00388{word-spacing:6.147756px;}
.ws20_c00388{word-spacing:6.441840px;}
.ws18_c00388{word-spacing:6.448842px;}
.ws21_c00388{word-spacing:6.532866px;}
.ws1f_c00388{word-spacing:6.833952px;}
.ws14_c00388{word-spacing:7.177050px;}
.wsb_c00388{word-spacing:7.205058px;}
.ws13_c00388{word-spacing:7.212060px;}
.ws11_c00388{word-spacing:7.226064px;}
.ws8_c00388{word-spacing:7.597170px;}
.ws15_c00388{word-spacing:8.276364px;}
.ws9_c00388{word-spacing:8.640468px;}
.wsa_c00388{word-spacing:8.990568px;}
.ws19_c00388{word-spacing:10.089882px;}
.ws1d_c00388{word-spacing:14.746212px;}
.ws1e_c00388{word-spacing:14.753214px;}
.ws17_c00388{word-spacing:16.223634px;}
.ws12_c00388{word-spacing:27.706914px;}
.wse_c00388{word-spacing:28.449126px;}
.ws5_c00388{word-spacing:33.490566px;}
._2_c00388{margin-left:-6.840954px;}
._1_c00388{margin-left:-1.078308px;}
._0_c00388{width:1.127322px;}
.fc0_c00388{color:rgb(0,0,0);}
.fs1_c00388{font-size:46.562400px;}
.fs0_c00388{font-size:70.020000px;}
.y0_c00388{bottom:0.000000px;}
.y2_c00388{bottom:109.740968px;}
.y1_c00388{bottom:129.810450px;}
.y22_c00388{bottom:173.728951px;}
.y21_c00388{bottom:203.968839px;}
.y20_c00388{bottom:234.119451px;}
.y1f_c00388{bottom:264.359338px;}
.y1e_c00388{bottom:294.509951px;}
.y1d_c00388{bottom:324.749838px;}
.y1c_c00388{bottom:354.900450px;}
.y1b_c00388{bottom:385.137592px;}
.y1a_c00388{bottom:415.288204px;}
.y19_c00388{bottom:445.528092px;}
.y18_c00388{bottom:475.767979px;}
.y17_c00388{bottom:505.918591px;}
.y16_c00388{bottom:536.158479px;}
.y15_c00388{bottom:566.309091px;}
.y14_c00388{bottom:596.459703px;}
.y13_c00388{bottom:626.610315px;}
.y12_c00388{bottom:656.760927px;}
.y11_c00388{bottom:687.000814px;}
.y10_c00388{bottom:717.240702px;}
.yf_c00388{bottom:747.391314px;}
.ye_c00388{bottom:777.631201px;}
.yd_c00388{bottom:807.781813px;}
.yc_c00388{bottom:838.021701px;}
.yb_c00388{bottom:868.081287px;}
.ya_c00388{bottom:898.409487px;}
.y9_c00388{bottom:928.560099px;}
.y8_c00388{bottom:958.799987px;}
.y7_c00388{bottom:988.950599px;}
.y6_c00388{bottom:1019.190486px;}
.y5_c00388{bottom:1049.341098px;}
.y4_c00388{bottom:1079.580985px;}
.y3_c00388{bottom:1109.731597px;}
.h2_c00388{height:62.600889px;}
.h1_c00388{height:62.771836px;}
.h4_c00388{height:73.028672px;}
.h3_c00388{height:73.672638px;}
.h5_c00388{height:73.680216px;}
.h0_c00388{height:1263.000000px;}
.w0_c00388{width:892.500000px;}
.x0_c00388{left:0.000000px;}
.x2_c00388{left:82.710059px;}
.x3_c00388{left:138.960626px;}
.x1_c00388{left:431.730000px;}
@media print{
.v0_c00388{vertical-align:0.000000pt;}
.v1_c00388{vertical-align:28.483424pt;}
.lsf_c00388{letter-spacing:-0.297999pt;}
.ls4_c00388{letter-spacing:-0.056016pt;}
.lsc_c00388{letter-spacing:-0.049792pt;}
.lsa_c00388{letter-spacing:-0.043568pt;}
.ls7_c00388{letter-spacing:-0.037344pt;}
.lse_c00388{letter-spacing:-0.031120pt;}
.lsd_c00388{letter-spacing:-0.024896pt;}
.ls8_c00388{letter-spacing:-0.018672pt;}
.ls9_c00388{letter-spacing:-0.012448pt;}
.lsb_c00388{letter-spacing:-0.006224pt;}
.ls5_c00388{letter-spacing:0.000000pt;}
.ls1_c00388{letter-spacing:0.006224pt;}
.ls2_c00388{letter-spacing:0.012448pt;}
.ls3_c00388{letter-spacing:0.018672pt;}
.ls0_c00388{letter-spacing:0.020694pt;}
.ls6_c00388{letter-spacing:0.304976pt;}
.ws0_c00388{word-spacing:-17.265376pt;}
.ws1_c00388{word-spacing:-11.526781pt;}
.ws2_c00388{word-spacing:-11.208087pt;}
.ws6_c00388{word-spacing:-0.012448pt;}
.ws3_c00388{word-spacing:0.000000pt;}
.wsc_c00388{word-spacing:0.304976pt;}
.ws1a_c00388{word-spacing:0.317424pt;}
.ws10_c00388{word-spacing:0.342320pt;}
.wsd_c00388{word-spacing:0.964720pt;}
.ws22_c00388{word-spacing:1.624464pt;}
.ws7_c00388{word-spacing:2.881712pt;}
.ws1b_c00388{word-spacing:2.900384pt;}
.ws1c_c00388{word-spacing:3.516560pt;}
.ws23_c00388{word-spacing:3.522784pt;}
.wsf_c00388{word-spacing:3.877552pt;}
.ws16_c00388{word-spacing:5.103680pt;}
.ws4_c00388{word-spacing:5.464672pt;}
.ws20_c00388{word-spacing:5.726080pt;}
.ws18_c00388{word-spacing:5.732304pt;}
.ws21_c00388{word-spacing:5.806992pt;}
.ws1f_c00388{word-spacing:6.074624pt;}
.ws14_c00388{word-spacing:6.379600pt;}
.wsb_c00388{word-spacing:6.404496pt;}
.ws13_c00388{word-spacing:6.410720pt;}
.ws11_c00388{word-spacing:6.423168pt;}
.ws8_c00388{word-spacing:6.753040pt;}
.ws15_c00388{word-spacing:7.356768pt;}
.ws9_c00388{word-spacing:7.680416pt;}
.wsa_c00388{word-spacing:7.991616pt;}
.ws19_c00388{word-spacing:8.968784pt;}
.ws1d_c00388{word-spacing:13.107744pt;}
.ws1e_c00388{word-spacing:13.113968pt;}
.ws17_c00388{word-spacing:14.421008pt;}
.ws12_c00388{word-spacing:24.628368pt;}
.wse_c00388{word-spacing:25.288112pt;}
.ws5_c00388{word-spacing:29.769392pt;}
._2_c00388{margin-left:-6.080848pt;}
._1_c00388{margin-left:-0.958496pt;}
._0_c00388{width:1.002064pt;}
.fs1_c00388{font-size:41.388800pt;}
.fs0_c00388{font-size:62.240000pt;}
.y0_c00388{bottom:0.000000pt;}
.y2_c00388{bottom:97.547527pt;}
.y1_c00388{bottom:115.387067pt;}
.y22_c00388{bottom:154.425735pt;}
.y21_c00388{bottom:181.305635pt;}
.y20_c00388{bottom:208.106179pt;}
.y1f_c00388{bottom:234.986079pt;}
.y1e_c00388{bottom:261.786623pt;}
.y1d_c00388{bottom:288.666523pt;}
.y1c_c00388{bottom:315.467067pt;}
.y1b_c00388{bottom:342.344527pt;}
.y1a_c00388{bottom:369.145071pt;}
.y19_c00388{bottom:396.024971pt;}
.y18_c00388{bottom:422.904871pt;}
.y17_c00388{bottom:449.705415pt;}
.y16_c00388{bottom:476.585315pt;}
.y15_c00388{bottom:503.385859pt;}
.y14_c00388{bottom:530.186403pt;}
.y13_c00388{bottom:556.986947pt;}
.y12_c00388{bottom:583.787491pt;}
.y11_c00388{bottom:610.667391pt;}
.y10_c00388{bottom:637.547291pt;}
.yf_c00388{bottom:664.347835pt;}
.ye_c00388{bottom:691.227735pt;}
.yd_c00388{bottom:718.028279pt;}
.yc_c00388{bottom:744.908179pt;}
.yb_c00388{bottom:771.627811pt;}
.ya_c00388{bottom:798.586211pt;}
.y9_c00388{bottom:825.386755pt;}
.y8_c00388{bottom:852.266655pt;}
.y7_c00388{bottom:879.067199pt;}
.y6_c00388{bottom:905.947099pt;}
.y5_c00388{bottom:932.747643pt;}
.y4_c00388{bottom:959.627543pt;}
.y3_c00388{bottom:986.428087pt;}
.h2_c00388{height:55.645234pt;}
.h1_c00388{height:55.797187pt;}
.h4_c00388{height:64.914375pt;}
.h3_c00388{height:65.486790pt;}
.h5_c00388{height:65.493526pt;}
.h0_c00388{height:1122.666667pt;}
.w0_c00388{width:793.333333pt;}
.x0_c00388{left:0.000000pt;}
.x2_c00388{left:73.520052pt;}
.x3_c00388{left:123.520556pt;}
.x1_c00388{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bb11aa3a49d80d8266c8dc92.woff2')format("woff");}.ff1_c00389{font-family:ff1_c00389;line-height:1.106934;font-style:normal;font-weight:normal;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_f365375d0b0f2c242ecd8704.woff2')format("woff");}.ff2_c00389{font-family:ff2_c00389;line-height:1.104492;font-style:normal;font-weight:normal;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_d559fc60663a911f68a13c54.woff2')format("woff");}.ff3_c00389{font-family:ff3_c00389;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00389{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00389{vertical-align:0.000000px;}
.v1_c00389{vertical-align:32.397408px;}
.lsa_c00389{letter-spacing:-0.091026px;}
.ls7_c00389{letter-spacing:-0.063018px;}
.ls9_c00389{letter-spacing:-0.049014px;}
.ls10_c00389{letter-spacing:-0.042012px;}
.lsc_c00389{letter-spacing:-0.035010px;}
.lsb_c00389{letter-spacing:-0.028008px;}
.lsd_c00389{letter-spacing:-0.021006px;}
.lsf_c00389{letter-spacing:-0.014004px;}
.lse_c00389{letter-spacing:-0.007002px;}
.ls8_c00389{letter-spacing:0.000000px;}
.ls5_c00389{letter-spacing:0.007002px;}
.ls3_c00389{letter-spacing:0.014004px;}
.ls0_c00389{letter-spacing:0.023281px;}
.ls4_c00389{letter-spacing:0.035010px;}
.ls6_c00389{letter-spacing:0.042012px;}
.ls1_c00389{letter-spacing:0.063018px;}
.ls2_c00389{letter-spacing:0.070020px;}
.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:-19.374534px;}
.ws1_c00389{word-spacing:-12.967628px;}
.ws6_c00389{word-spacing:-0.077022px;}
.wse_c00389{word-spacing:-0.007002px;}
.ws2_c00389{word-spacing:0.000000px;}
.ws12_c00389{word-spacing:0.007002px;}
.ws5_c00389{word-spacing:0.014004px;}
.ws3_c00389{word-spacing:3.276936px;}
.ws13_c00389{word-spacing:3.543012px;}
.ws14_c00389{word-spacing:3.627036px;}
.ws11_c00389{word-spacing:3.970134px;}
.ws10_c00389{word-spacing:5.055444px;}
.wsa_c00389{word-spacing:6.490854px;}
.ws8_c00389{word-spacing:11.147184px;}
.ws9_c00389{word-spacing:11.168190px;}
.wsc_c00389{word-spacing:14.354100px;}
.wsd_c00389{word-spacing:14.382108px;}
.ws4_c00389{word-spacing:21.986280px;}
.wsf_c00389{word-spacing:22.322376px;}
.wsb_c00389{word-spacing:26.614602px;}
.ws7_c00389{word-spacing:29.898540px;}
._2_c00389{margin-left:-1.148328px;}
._0_c00389{width:1.323378px;}
._1_c00389{width:8.283366px;}
._3_c00389{width:28.841238px;}
.fc0_c00389{color:rgb(0,0,0);}
.fs1_c00389{font-size:46.562400px;}
.fs0_c00389{font-size:70.020000px;}
.y0_c00389{bottom:0.000000px;}
.y2_c00389{bottom:109.740968px;}
.y1_c00389{bottom:129.810450px;}
.y19_c00389{bottom:182.190450px;}
.y18_c00389{bottom:212.340450px;}
.y17_c00389{bottom:242.580450px;}
.y16_c00389{bottom:272.730450px;}
.y15_c00389{bottom:302.970450px;}
.y14_c00389{bottom:333.120450px;}
.y13_c00389{bottom:363.360450px;}
.y12_c00389{bottom:393.510450px;}
.y11_c00389{bottom:423.750600px;}
.y10_c00389{bottom:453.900450px;}
.yf_c00389{bottom:484.050450px;}
.ye_c00389{bottom:514.200600px;}
.yd_c00389{bottom:544.440450px;}
.yc_c00389{bottom:574.590450px;}
.yb_c00389{bottom:604.830450px;}
.ya_c00389{bottom:631.290450px;}
.y9_c00389{bottom:927.840450px;}
.y8_c00389{bottom:958.080450px;}
.y7_c00389{bottom:988.230450px;}
.y6_c00389{bottom:1018.470450px;}
.y5_c00389{bottom:1049.341098px;}
.y4_c00389{bottom:1079.580985px;}
.y3_c00389{bottom:1109.731597px;}
.h2_c00389{height:62.600889px;}
.h1_c00389{height:62.771836px;}
.h4_c00389{height:63.216299px;}
.h3_c00389{height:74.026194px;}
.h0_c00389{height:1263.000000px;}
.w0_c00389{width:892.500000px;}
.x0_c00389{left:0.000000px;}
.x2_c00389{left:82.710059px;}
.x3_c00389{left:138.960626px;}
.x5_c00389{left:165.240000px;}
.x7_c00389{left:191.520000px;}
.x4_c00389{left:343.710000px;}
.x1_c00389{left:431.730000px;}
.x6_c00389{left:713.160000px;}
@media print{
.v0_c00389{vertical-align:0.000000pt;}
.v1_c00389{vertical-align:28.797696pt;}
.lsa_c00389{letter-spacing:-0.080912pt;}
.ls7_c00389{letter-spacing:-0.056016pt;}
.ls9_c00389{letter-spacing:-0.043568pt;}
.ls10_c00389{letter-spacing:-0.037344pt;}
.lsc_c00389{letter-spacing:-0.031120pt;}
.lsb_c00389{letter-spacing:-0.024896pt;}
.lsd_c00389{letter-spacing:-0.018672pt;}
.lsf_c00389{letter-spacing:-0.012448pt;}
.lse_c00389{letter-spacing:-0.006224pt;}
.ls8_c00389{letter-spacing:0.000000pt;}
.ls5_c00389{letter-spacing:0.006224pt;}
.ls3_c00389{letter-spacing:0.012448pt;}
.ls0_c00389{letter-spacing:0.020694pt;}
.ls4_c00389{letter-spacing:0.031120pt;}
.ls6_c00389{letter-spacing:0.037344pt;}
.ls1_c00389{letter-spacing:0.056016pt;}
.ls2_c00389{letter-spacing:0.062240pt;}
.ws0_c00389{word-spacing:-17.221808pt;}
.ws1_c00389{word-spacing:-11.526781pt;}
.ws6_c00389{word-spacing:-0.068464pt;}
.wse_c00389{word-spacing:-0.006224pt;}
.ws2_c00389{word-spacing:0.000000pt;}
.ws12_c00389{word-spacing:0.006224pt;}
.ws5_c00389{word-spacing:0.012448pt;}
.ws3_c00389{word-spacing:2.912832pt;}
.ws13_c00389{word-spacing:3.149344pt;}
.ws14_c00389{word-spacing:3.224032pt;}
.ws11_c00389{word-spacing:3.529008pt;}
.ws10_c00389{word-spacing:4.493728pt;}
.wsa_c00389{word-spacing:5.769648pt;}
.ws8_c00389{word-spacing:9.908608pt;}
.ws9_c00389{word-spacing:9.927280pt;}
.wsc_c00389{word-spacing:12.759200pt;}
.wsd_c00389{word-spacing:12.784096pt;}
.ws4_c00389{word-spacing:19.543360pt;}
.wsf_c00389{word-spacing:19.842112pt;}
.wsb_c00389{word-spacing:23.657424pt;}
.ws7_c00389{word-spacing:26.576480pt;}
._2_c00389{margin-left:-1.020736pt;}
._0_c00389{width:1.176336pt;}
._1_c00389{width:7.362992pt;}
._3_c00389{width:25.636656pt;}
.fs1_c00389{font-size:41.388800pt;}
.fs0_c00389{font-size:62.240000pt;}
.y0_c00389{bottom:0.000000pt;}
.y2_c00389{bottom:97.547527pt;}
.y1_c00389{bottom:115.387067pt;}
.y19_c00389{bottom:161.947067pt;}
.y18_c00389{bottom:188.747067pt;}
.y17_c00389{bottom:215.627067pt;}
.y16_c00389{bottom:242.427067pt;}
.y15_c00389{bottom:269.307067pt;}
.y14_c00389{bottom:296.107067pt;}
.y13_c00389{bottom:322.987067pt;}
.y12_c00389{bottom:349.787067pt;}
.y11_c00389{bottom:376.667200pt;}
.y10_c00389{bottom:403.467067pt;}
.yf_c00389{bottom:430.267067pt;}
.ye_c00389{bottom:457.067200pt;}
.yd_c00389{bottom:483.947067pt;}
.yc_c00389{bottom:510.747067pt;}
.yb_c00389{bottom:537.627067pt;}
.ya_c00389{bottom:561.147067pt;}
.y9_c00389{bottom:824.747067pt;}
.y8_c00389{bottom:851.627067pt;}
.y7_c00389{bottom:878.427067pt;}
.y6_c00389{bottom:905.307067pt;}
.y5_c00389{bottom:932.747643pt;}
.y4_c00389{bottom:959.627543pt;}
.y3_c00389{bottom:986.428087pt;}
.h2_c00389{height:55.645234pt;}
.h1_c00389{height:55.797187pt;}
.h4_c00389{height:56.192266pt;}
.h3_c00389{height:65.801062pt;}
.h0_c00389{height:1122.666667pt;}
.w0_c00389{width:793.333333pt;}
.x0_c00389{left:0.000000pt;}
.x2_c00389{left:73.520052pt;}
.x3_c00389{left:123.520556pt;}
.x5_c00389{left:146.880000pt;}
.x7_c00389{left:170.240000pt;}
.x4_c00389{left:305.520000pt;}
.x1_c00389{left:383.760000pt;}
.x6_c00389{left:633.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_887f16f9d6b6269f40af42aa.woff2')format("woff");}.ff1_c00390{font-family:ff1_c00390;line-height:1.106934;font-style:normal;font-weight:normal;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_5fb3bc6760bd7b9d9f71a349.woff2')format("woff");}.ff2_c00390{font-family:ff2_c00390;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00390{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00390{vertical-align:0.000000px;}
.v1_c00390{vertical-align:32.400000px;}
.ls4_c00390{letter-spacing:-0.063018px;}
.ls9_c00390{letter-spacing:-0.056016px;}
.lsb_c00390{letter-spacing:-0.042012px;}
.ls6_c00390{letter-spacing:-0.035010px;}
.lsc_c00390{letter-spacing:-0.028008px;}
.ls8_c00390{letter-spacing:-0.021006px;}
.ls7_c00390{letter-spacing:-0.014004px;}
.lsa_c00390{letter-spacing:-0.007002px;}
.ls5_c00390{letter-spacing:0.000000px;}
.ls1_c00390{letter-spacing:0.014004px;}
.ls3_c00390{letter-spacing:0.021006px;}
.ls0_c00390{letter-spacing:0.023281px;}
.ls2_c00390{letter-spacing:0.084024px;}
.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:-12.967628px;}
.wsb_c00390{word-spacing:-0.007002px;}
.ws1_c00390{word-spacing:0.000000px;}
.ws13_c00390{word-spacing:0.007002px;}
.ws6_c00390{word-spacing:0.021006px;}
.ws19_c00390{word-spacing:0.259074px;}
.ws1a_c00390{word-spacing:0.350100px;}
.wsd_c00390{word-spacing:0.371106px;}
.ws5_c00390{word-spacing:0.721206px;}
.wse_c00390{word-spacing:0.735210px;}
.ws15_c00390{word-spacing:5.419548px;}
.ws16_c00390{word-spacing:5.776650px;}
.ws4_c00390{word-spacing:6.119748px;}
.ws1f_c00390{word-spacing:6.476850px;}
.ws1e_c00390{word-spacing:6.504858px;}
.ws9_c00390{word-spacing:7.919262px;}
.wsc_c00390{word-spacing:8.668476px;}
.ws14_c00390{word-spacing:9.704772px;}
.ws1d_c00390{word-spacing:10.425978px;}
.ws1c_c00390{word-spacing:10.453986px;}
.ws18_c00390{word-spacing:11.875392px;}
.wsf_c00390{word-spacing:12.953700px;}
.ws17_c00390{word-spacing:13.674906px;}
.ws2_c00390{word-spacing:15.138324px;}
.ws11_c00390{word-spacing:15.831522px;}
.ws12_c00390{word-spacing:15.859530px;}
.ws3_c00390{word-spacing:17.266932px;}
.ws1b_c00390{word-spacing:18.688338px;}
.wsa_c00390{word-spacing:19.458558px;}
.ws7_c00390{word-spacing:28.806228px;}
.ws8_c00390{word-spacing:28.841238px;}
.ws10_c00390{word-spacing:30.934836px;}
._2_c00390{margin-left:-9.361674px;}
._1_c00390{margin-left:-1.134324px;}
._0_c00390{width:1.183338px;}
.fc0_c00390{color:rgb(0,0,0);}
.fs1_c00390{font-size:46.562400px;}
.fs0_c00390{font-size:70.020000px;}
.y0_c00390{bottom:0.000000px;}
.y2_c00390{bottom:109.740968px;}
.y1_c00390{bottom:129.810450px;}
.y22_c00390{bottom:173.730450px;}
.y21_c00390{bottom:203.970450px;}
.y20_c00390{bottom:234.120600px;}
.y1f_c00390{bottom:264.360450px;}
.y1e_c00390{bottom:294.510450px;}
.y1d_c00390{bottom:324.750600px;}
.y1c_c00390{bottom:354.900450px;}
.y1b_c00390{bottom:385.140450px;}
.y1a_c00390{bottom:415.290600px;}
.y19_c00390{bottom:445.530600px;}
.y18_c00390{bottom:475.770600px;}
.y17_c00390{bottom:505.920450px;}
.y16_c00390{bottom:536.160450px;}
.y15_c00390{bottom:566.310450px;}
.y14_c00390{bottom:596.460450px;}
.y13_c00390{bottom:626.610450px;}
.y12_c00390{bottom:656.850450px;}
.y11_c00390{bottom:687.000450px;}
.y10_c00390{bottom:717.240450px;}
.yf_c00390{bottom:747.390450px;}
.ye_c00390{bottom:777.630450px;}
.yd_c00390{bottom:807.780450px;}
.yc_c00390{bottom:838.020450px;}
.yb_c00390{bottom:868.170450px;}
.ya_c00390{bottom:898.410450px;}
.y9_c00390{bottom:928.560450px;}
.y8_c00390{bottom:958.800450px;}
.y7_c00390{bottom:988.950450px;}
.y6_c00390{bottom:1019.190450px;}
.y5_c00390{bottom:1049.340450px;}
.y4_c00390{bottom:1079.580450px;}
.y3_c00390{bottom:1109.730450px;}
.h2_c00390{height:62.600889px;}
.h1_c00390{height:62.771836px;}
.h5_c00390{height:73.668186px;}
.h3_c00390{height:74.028786px;}
.h4_c00390{height:74.141864px;}
.h0_c00390{height:1263.000000px;}
.w0_c00390{width:892.500000px;}
.x0_c00390{left:0.000000px;}
.x2_c00390{left:82.710059px;}
.x3_c00390{left:138.960000px;}
.x1_c00390{left:431.730000px;}
@media print{
.v0_c00390{vertical-align:0.000000pt;}
.v1_c00390{vertical-align:28.800000pt;}
.ls4_c00390{letter-spacing:-0.056016pt;}
.ls9_c00390{letter-spacing:-0.049792pt;}
.lsb_c00390{letter-spacing:-0.037344pt;}
.ls6_c00390{letter-spacing:-0.031120pt;}
.lsc_c00390{letter-spacing:-0.024896pt;}
.ls8_c00390{letter-spacing:-0.018672pt;}
.ls7_c00390{letter-spacing:-0.012448pt;}
.lsa_c00390{letter-spacing:-0.006224pt;}
.ls5_c00390{letter-spacing:0.000000pt;}
.ls1_c00390{letter-spacing:0.012448pt;}
.ls3_c00390{letter-spacing:0.018672pt;}
.ls0_c00390{letter-spacing:0.020694pt;}
.ls2_c00390{letter-spacing:0.074688pt;}
.ws0_c00390{word-spacing:-11.526781pt;}
.wsb_c00390{word-spacing:-0.006224pt;}
.ws1_c00390{word-spacing:0.000000pt;}
.ws13_c00390{word-spacing:0.006224pt;}
.ws6_c00390{word-spacing:0.018672pt;}
.ws19_c00390{word-spacing:0.230288pt;}
.ws1a_c00390{word-spacing:0.311200pt;}
.wsd_c00390{word-spacing:0.329872pt;}
.ws5_c00390{word-spacing:0.641072pt;}
.wse_c00390{word-spacing:0.653520pt;}
.ws15_c00390{word-spacing:4.817376pt;}
.ws16_c00390{word-spacing:5.134800pt;}
.ws4_c00390{word-spacing:5.439776pt;}
.ws1f_c00390{word-spacing:5.757200pt;}
.ws1e_c00390{word-spacing:5.782096pt;}
.ws9_c00390{word-spacing:7.039344pt;}
.wsc_c00390{word-spacing:7.705312pt;}
.ws14_c00390{word-spacing:8.626464pt;}
.ws1d_c00390{word-spacing:9.267536pt;}
.ws1c_c00390{word-spacing:9.292432pt;}
.ws18_c00390{word-spacing:10.555904pt;}
.wsf_c00390{word-spacing:11.514400pt;}
.ws17_c00390{word-spacing:12.155472pt;}
.ws2_c00390{word-spacing:13.456288pt;}
.ws11_c00390{word-spacing:14.072464pt;}
.ws12_c00390{word-spacing:14.097360pt;}
.ws3_c00390{word-spacing:15.348384pt;}
.ws1b_c00390{word-spacing:16.611856pt;}
.wsa_c00390{word-spacing:17.296496pt;}
.ws7_c00390{word-spacing:25.605536pt;}
.ws8_c00390{word-spacing:25.636656pt;}
.ws10_c00390{word-spacing:27.497632pt;}
._2_c00390{margin-left:-8.321488pt;}
._1_c00390{margin-left:-1.008288pt;}
._0_c00390{width:1.051856pt;}
.fs1_c00390{font-size:41.388800pt;}
.fs0_c00390{font-size:62.240000pt;}
.y0_c00390{bottom:0.000000pt;}
.y2_c00390{bottom:97.547527pt;}
.y1_c00390{bottom:115.387067pt;}
.y22_c00390{bottom:154.427067pt;}
.y21_c00390{bottom:181.307067pt;}
.y20_c00390{bottom:208.107200pt;}
.y1f_c00390{bottom:234.987067pt;}
.y1e_c00390{bottom:261.787067pt;}
.y1d_c00390{bottom:288.667200pt;}
.y1c_c00390{bottom:315.467067pt;}
.y1b_c00390{bottom:342.347067pt;}
.y1a_c00390{bottom:369.147200pt;}
.y19_c00390{bottom:396.027200pt;}
.y18_c00390{bottom:422.907200pt;}
.y17_c00390{bottom:449.707067pt;}
.y16_c00390{bottom:476.587067pt;}
.y15_c00390{bottom:503.387067pt;}
.y14_c00390{bottom:530.187067pt;}
.y13_c00390{bottom:556.987067pt;}
.y12_c00390{bottom:583.867067pt;}
.y11_c00390{bottom:610.667067pt;}
.y10_c00390{bottom:637.547067pt;}
.yf_c00390{bottom:664.347067pt;}
.ye_c00390{bottom:691.227067pt;}
.yd_c00390{bottom:718.027067pt;}
.yc_c00390{bottom:744.907067pt;}
.yb_c00390{bottom:771.707067pt;}
.ya_c00390{bottom:798.587067pt;}
.y9_c00390{bottom:825.387067pt;}
.y8_c00390{bottom:852.267067pt;}
.y7_c00390{bottom:879.067067pt;}
.y6_c00390{bottom:905.947067pt;}
.y5_c00390{bottom:932.747067pt;}
.y4_c00390{bottom:959.627067pt;}
.y3_c00390{bottom:986.427067pt;}
.h2_c00390{height:55.645234pt;}
.h1_c00390{height:55.797187pt;}
.h5_c00390{height:65.482832pt;}
.h3_c00390{height:65.803366pt;}
.h4_c00390{height:65.903879pt;}
.h0_c00390{height:1122.666667pt;}
.w0_c00390{width:793.333333pt;}
.x0_c00390{left:0.000000pt;}
.x2_c00390{left:73.520052pt;}
.x3_c00390{left:123.520000pt;}
.x1_c00390{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_aaec1a71655e6b73789a0b0e.woff2')format("woff");}.ff1_c00391{font-family:ff1_c00391;line-height:1.106934;font-style:normal;font-weight:normal;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_51acc4283c54318f80890f52.woff2')format("woff");}.ff2_c00391{font-family:ff2_c00391;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00391{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00391{vertical-align:0.000000px;}
.v1_c00391{vertical-align:32.400000px;}
.ls1_c00391{letter-spacing:-0.063018px;}
.ls6_c00391{letter-spacing:-0.028008px;}
.ls3_c00391{letter-spacing:-0.021006px;}
.ls4_c00391{letter-spacing:-0.014004px;}
.ls2_c00391{letter-spacing:0.000000px;}
.ls0_c00391{letter-spacing:0.023281px;}
.ls5_c00391{letter-spacing:0.343098px;}
.sc__c00391{text-shadow:none;}
.sc0_c00391{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00391{-webkit-text-stroke:0px transparent;}
.sc0_c00391{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00391{word-spacing:-19.444554px;}
.ws1_c00391{word-spacing:-12.967628px;}
.ws2_c00391{word-spacing:0.000000px;}
.ws8_c00391{word-spacing:0.014004px;}
.ws3_c00391{word-spacing:1.428408px;}
.ws4_c00391{word-spacing:3.606030px;}
.ws6_c00391{word-spacing:18.002142px;}
.ws5_c00391{word-spacing:19.437552px;}
.ws7_c00391{word-spacing:45.709056px;}
._0_c00391{width:1.008288px;}
.fc0_c00391{color:rgb(0,0,0);}
.fs1_c00391{font-size:46.562400px;}
.fs0_c00391{font-size:70.020000px;}
.y0_c00391{bottom:0.000000px;}
.y2_c00391{bottom:109.740968px;}
.y1_c00391{bottom:129.810450px;}
.y22_c00391{bottom:182.995059px;}
.y21_c00391{bottom:213.234947px;}
.y20_c00391{bottom:243.385559px;}
.y1f_c00391{bottom:273.625446px;}
.y1e_c00391{bottom:303.865334px;}
.y1d_c00391{bottom:334.015946px;}
.y1c_c00391{bottom:364.255833px;}
.y1b_c00391{bottom:394.406445px;}
.y1a_c00391{bottom:424.646333px;}
.y19_c00391{bottom:454.796945px;}
.y18_c00391{bottom:485.036832px;}
.y17_c00391{bottom:515.187444px;}
.y16_c00391{bottom:545.427332px;}
.y15_c00391{bottom:575.577944px;}
.y14_c00391{bottom:605.817831px;}
.y13_c00391{bottom:635.968443px;}
.y12_c00391{bottom:666.208331px;}
.y11_c00391{bottom:696.358943px;}
.y10_c00391{bottom:726.598830px;}
.yf_c00391{bottom:756.749442px;}
.ye_c00391{bottom:786.989330px;}
.yd_c00391{bottom:817.139942px;}
.yc_c00391{bottom:837.300450px;}
.yb_c00391{bottom:868.170450px;}
.ya_c00391{bottom:898.410450px;}
.y9_c00391{bottom:928.560450px;}
.y8_c00391{bottom:958.800450px;}
.y7_c00391{bottom:988.950450px;}
.y6_c00391{bottom:1019.190450px;}
.y5_c00391{bottom:1049.340450px;}
.y4_c00391{bottom:1079.580450px;}
.y3_c00391{bottom:1109.730450px;}
.h2_c00391{height:62.600889px;}
.h1_c00391{height:62.771836px;}
.h3_c00391{height:74.028786px;}
.h0_c00391{height:1263.000000px;}
.w0_c00391{width:892.500000px;}
.x0_c00391{left:0.000000px;}
.x2_c00391{left:82.710059px;}
.x3_c00391{left:138.960000px;}
.x4_c00391{left:339.750000px;}
.x1_c00391{left:431.730000px;}
@media print{
.v0_c00391{vertical-align:0.000000pt;}
.v1_c00391{vertical-align:28.800000pt;}
.ls1_c00391{letter-spacing:-0.056016pt;}
.ls6_c00391{letter-spacing:-0.024896pt;}
.ls3_c00391{letter-spacing:-0.018672pt;}
.ls4_c00391{letter-spacing:-0.012448pt;}
.ls2_c00391{letter-spacing:0.000000pt;}
.ls0_c00391{letter-spacing:0.020694pt;}
.ls5_c00391{letter-spacing:0.304976pt;}
.ws0_c00391{word-spacing:-17.284048pt;}
.ws1_c00391{word-spacing:-11.526781pt;}
.ws2_c00391{word-spacing:0.000000pt;}
.ws8_c00391{word-spacing:0.012448pt;}
.ws3_c00391{word-spacing:1.269696pt;}
.ws4_c00391{word-spacing:3.205360pt;}
.ws6_c00391{word-spacing:16.001904pt;}
.ws5_c00391{word-spacing:17.277824pt;}
.ws7_c00391{word-spacing:40.630272pt;}
._0_c00391{width:0.896256pt;}
.fs1_c00391{font-size:41.388800pt;}
.fs0_c00391{font-size:62.240000pt;}
.y0_c00391{bottom:0.000000pt;}
.y2_c00391{bottom:97.547527pt;}
.y1_c00391{bottom:115.387067pt;}
.y22_c00391{bottom:162.662275pt;}
.y21_c00391{bottom:189.542175pt;}
.y20_c00391{bottom:216.342719pt;}
.y1f_c00391{bottom:243.222619pt;}
.y1e_c00391{bottom:270.102519pt;}
.y1d_c00391{bottom:296.903063pt;}
.y1c_c00391{bottom:323.782963pt;}
.y1b_c00391{bottom:350.583507pt;}
.y1a_c00391{bottom:377.463407pt;}
.y19_c00391{bottom:404.263951pt;}
.y18_c00391{bottom:431.143851pt;}
.y17_c00391{bottom:457.944395pt;}
.y16_c00391{bottom:484.824295pt;}
.y15_c00391{bottom:511.624839pt;}
.y14_c00391{bottom:538.504739pt;}
.y13_c00391{bottom:565.305283pt;}
.y12_c00391{bottom:592.185183pt;}
.y11_c00391{bottom:618.985727pt;}
.y10_c00391{bottom:645.865627pt;}
.yf_c00391{bottom:672.666171pt;}
.ye_c00391{bottom:699.546071pt;}
.yd_c00391{bottom:726.346615pt;}
.yc_c00391{bottom:744.267067pt;}
.yb_c00391{bottom:771.707067pt;}
.ya_c00391{bottom:798.587067pt;}
.y9_c00391{bottom:825.387067pt;}
.y8_c00391{bottom:852.267067pt;}
.y7_c00391{bottom:879.067067pt;}
.y6_c00391{bottom:905.947067pt;}
.y5_c00391{bottom:932.747067pt;}
.y4_c00391{bottom:959.627067pt;}
.y3_c00391{bottom:986.427067pt;}
.h2_c00391{height:55.645234pt;}
.h1_c00391{height:55.797187pt;}
.h3_c00391{height:65.803366pt;}
.h0_c00391{height:1122.666667pt;}
.w0_c00391{width:793.333333pt;}
.x0_c00391{left:0.000000pt;}
.x2_c00391{left:73.520052pt;}
.x3_c00391{left:123.520000pt;}
.x4_c00391{left:302.000000pt;}
.x1_c00391{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_eb01f975e3ac81893b4f36fe.woff2')format("woff");}.ff1_c00392{font-family:ff1_c00392;line-height:1.106934;font-style:normal;font-weight:normal;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_4dc90958afe5c10483938a64.woff2')format("woff");}.ff2_c00392{font-family:ff2_c00392;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00392;src:url('chunks/assets/font_9d54ebb8b9bb6efc175016f0.woff2')format("woff");}.ff3_c00392{font-family:ff3_c00392;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00392{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00392{vertical-align:0.000000px;}
.lsd_c00392{letter-spacing:-0.091026px;}
.lsb_c00392{letter-spacing:-0.077022px;}
.ls5_c00392{letter-spacing:-0.063018px;}
.lsc_c00392{letter-spacing:-0.056016px;}
.lsf_c00392{letter-spacing:-0.049014px;}
.lsa_c00392{letter-spacing:-0.042012px;}
.ls9_c00392{letter-spacing:-0.035010px;}
.ls8_c00392{letter-spacing:-0.028008px;}
.ls13_c00392{letter-spacing:-0.021006px;}
.ls11_c00392{letter-spacing:-0.014004px;}
.ls12_c00392{letter-spacing:-0.007002px;}
.ls6_c00392{letter-spacing:0.000000px;}
.ls1_c00392{letter-spacing:0.007002px;}
.ls4_c00392{letter-spacing:0.014004px;}
.ls3_c00392{letter-spacing:0.021006px;}
.ls2_c00392{letter-spacing:0.042012px;}
.ls0_c00392{letter-spacing:0.077022px;}
.ls7_c00392{letter-spacing:0.084024px;}
.lse_c00392{letter-spacing:0.266076px;}
.ls10_c00392{letter-spacing:0.343098px;}
.sc__c00392{text-shadow:none;}
.sc0_c00392{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00392{-webkit-text-stroke:0px transparent;}
.sc0_c00392{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00392{word-spacing:-19.416546px;}
.ws6_c00392{word-spacing:-0.378108px;}
.ws2_c00392{word-spacing:-0.098028px;}
.ws10_c00392{word-spacing:-0.056016px;}
.ws7_c00392{word-spacing:-0.021006px;}
.ws1_c00392{word-spacing:0.000000px;}
.wse_c00392{word-spacing:0.021006px;}
.ws8_c00392{word-spacing:0.028008px;}
.ws11_c00392{word-spacing:0.042012px;}
.wsd_c00392{word-spacing:0.077022px;}
.ws3_c00392{word-spacing:0.266076px;}
.wsf_c00392{word-spacing:0.343098px;}
.ws4_c00392{word-spacing:0.371106px;}
.ws5_c00392{word-spacing:0.378108px;}
.wsc_c00392{word-spacing:0.434124px;}
.ws1a_c00392{word-spacing:1.120320px;}
.wsa_c00392{word-spacing:1.463418px;}
.ws20_c00392{word-spacing:2.142612px;}
.ws1b_c00392{word-spacing:5.419548px;}
.ws27_c00392{word-spacing:6.098742px;}
.ws28_c00392{word-spacing:6.497856px;}
.ws22_c00392{word-spacing:8.262360px;}
.ws18_c00392{word-spacing:9.718776px;}
.ws1d_c00392{word-spacing:11.182194px;}
.wsb_c00392{word-spacing:11.924406px;}
.ws12_c00392{word-spacing:12.946698px;}
.ws25_c00392{word-spacing:16.209630px;}
.ws14_c00392{word-spacing:18.324234px;}
.ws13_c00392{word-spacing:18.723348px;}
.ws26_c00392{word-spacing:20.137752px;}
.ws15_c00392{word-spacing:20.872962px;}
.ws17_c00392{word-spacing:21.230064px;}
.ws19_c00392{word-spacing:22.364388px;}
.ws29_c00392{word-spacing:26.299512px;}
.ws23_c00392{word-spacing:34.169760px;}
.ws1e_c00392{word-spacing:35.990280px;}
.ws9_c00392{word-spacing:37.859814px;}
.ws24_c00392{word-spacing:39.596310px;}
.ws1f_c00392{word-spacing:41.402826px;}
.ws21_c00392{word-spacing:58.305654px;}
.ws16_c00392{word-spacing:64.054296px;}
.ws1c_c00392{word-spacing:231.115014px;}
._0_c00392{margin-left:-1.134324px;}
._1_c00392{width:1.482588px;}
.fc0_c00392{color:rgb(0,0,0);}
.fs0_c00392{font-size:70.020000px;}
.y0_c00392{bottom:0.000000px;}
.y2_c00392{bottom:109.740968px;}
.y1_c00392{bottom:129.810450px;}
.y28_c00392{bottom:183.540600px;}
.y27_c00392{bottom:213.780600px;}
.y26_c00392{bottom:243.840450px;}
.y25_c00392{bottom:274.080450px;}
.y24_c00392{bottom:304.230450px;}
.y23_c00392{bottom:334.470450px;}
.y22_c00392{bottom:364.620450px;}
.y21_c00392{bottom:394.860600px;}
.y20_c00392{bottom:425.010450px;}
.y1f_c00392{bottom:455.250450px;}
.y1e_c00392{bottom:485.400450px;}
.y1d_c00392{bottom:515.640450px;}
.y1c_c00392{bottom:545.790450px;}
.y1b_c00392{bottom:576.030450px;}
.y1a_c00392{bottom:606.180450px;}
.y19_c00392{bottom:636.420450px;}
.y18_c00392{bottom:666.660450px;}
.y17_c00392{bottom:696.810450px;}
.y16_c00392{bottom:727.050450px;}
.y15_c00392{bottom:757.200450px;}
.y14_c00392{bottom:787.440450px;}
.yc_c00392{bottom:817.589780px;}
.y13_c00392{bottom:817.590450px;}
.yb_c00392{bottom:847.829667px;}
.y12_c00392{bottom:847.830450px;}
.ya_c00392{bottom:877.980279px;}
.y11_c00392{bottom:877.980450px;}
.y9_c00392{bottom:908.220167px;}
.y10_c00392{bottom:908.220450px;}
.yf_c00392{bottom:938.370450px;}
.y8_c00392{bottom:938.370779px;}
.ye_c00392{bottom:968.610450px;}
.y7_c00392{bottom:988.860450px;}
.yd_c00392{bottom:1019.100450px;}
.y6_c00392{bottom:1019.190450px;}
.y5_c00392{bottom:1049.340450px;}
.y4_c00392{bottom:1079.580450px;}
.y3_c00392{bottom:1109.730450px;}
.h3_c00392{height:62.600889px;}
.h1_c00392{height:62.771836px;}
.h2_c00392{height:63.216299px;}
.h0_c00392{height:1263.000000px;}
.w0_c00392{width:892.500000px;}
.x0_c00392{left:0.000000px;}
.x2_c00392{left:82.710059px;}
.x3_c00392{left:138.960000px;}
.x1_c00392{left:431.730000px;}
.x4_c00392{left:454.230000px;}
@media print{
.v0_c00392{vertical-align:0.000000pt;}
.lsd_c00392{letter-spacing:-0.080912pt;}
.lsb_c00392{letter-spacing:-0.068464pt;}
.ls5_c00392{letter-spacing:-0.056016pt;}
.lsc_c00392{letter-spacing:-0.049792pt;}
.lsf_c00392{letter-spacing:-0.043568pt;}
.lsa_c00392{letter-spacing:-0.037344pt;}
.ls9_c00392{letter-spacing:-0.031120pt;}
.ls8_c00392{letter-spacing:-0.024896pt;}
.ls13_c00392{letter-spacing:-0.018672pt;}
.ls11_c00392{letter-spacing:-0.012448pt;}
.ls12_c00392{letter-spacing:-0.006224pt;}
.ls6_c00392{letter-spacing:0.000000pt;}
.ls1_c00392{letter-spacing:0.006224pt;}
.ls4_c00392{letter-spacing:0.012448pt;}
.ls3_c00392{letter-spacing:0.018672pt;}
.ls2_c00392{letter-spacing:0.037344pt;}
.ls0_c00392{letter-spacing:0.068464pt;}
.ls7_c00392{letter-spacing:0.074688pt;}
.lse_c00392{letter-spacing:0.236512pt;}
.ls10_c00392{letter-spacing:0.304976pt;}
.ws0_c00392{word-spacing:-17.259152pt;}
.ws6_c00392{word-spacing:-0.336096pt;}
.ws2_c00392{word-spacing:-0.087136pt;}
.ws10_c00392{word-spacing:-0.049792pt;}
.ws7_c00392{word-spacing:-0.018672pt;}
.ws1_c00392{word-spacing:0.000000pt;}
.wse_c00392{word-spacing:0.018672pt;}
.ws8_c00392{word-spacing:0.024896pt;}
.ws11_c00392{word-spacing:0.037344pt;}
.wsd_c00392{word-spacing:0.068464pt;}
.ws3_c00392{word-spacing:0.236512pt;}
.wsf_c00392{word-spacing:0.304976pt;}
.ws4_c00392{word-spacing:0.329872pt;}
.ws5_c00392{word-spacing:0.336096pt;}
.wsc_c00392{word-spacing:0.385888pt;}
.ws1a_c00392{word-spacing:0.995840pt;}
.wsa_c00392{word-spacing:1.300816pt;}
.ws20_c00392{word-spacing:1.904544pt;}
.ws1b_c00392{word-spacing:4.817376pt;}
.ws27_c00392{word-spacing:5.421104pt;}
.ws28_c00392{word-spacing:5.775872pt;}
.ws22_c00392{word-spacing:7.344320pt;}
.ws18_c00392{word-spacing:8.638912pt;}
.ws1d_c00392{word-spacing:9.939728pt;}
.wsb_c00392{word-spacing:10.599472pt;}
.ws12_c00392{word-spacing:11.508176pt;}
.ws25_c00392{word-spacing:14.408560pt;}
.ws14_c00392{word-spacing:16.288208pt;}
.ws13_c00392{word-spacing:16.642976pt;}
.ws26_c00392{word-spacing:17.900224pt;}
.ws15_c00392{word-spacing:18.553744pt;}
.ws17_c00392{word-spacing:18.871168pt;}
.ws19_c00392{word-spacing:19.879456pt;}
.ws29_c00392{word-spacing:23.377344pt;}
.ws23_c00392{word-spacing:30.373120pt;}
.ws1e_c00392{word-spacing:31.991360pt;}
.ws9_c00392{word-spacing:33.653168pt;}
.ws24_c00392{word-spacing:35.196720pt;}
.ws1f_c00392{word-spacing:36.802512pt;}
.ws21_c00392{word-spacing:51.827248pt;}
.ws16_c00392{word-spacing:56.937152pt;}
.ws1c_c00392{word-spacing:205.435568pt;}
._0_c00392{margin-left:-1.008288pt;}
._1_c00392{width:1.317856pt;}
.fs0_c00392{font-size:62.240000pt;}
.y0_c00392{bottom:0.000000pt;}
.y2_c00392{bottom:97.547527pt;}
.y1_c00392{bottom:115.387067pt;}
.y28_c00392{bottom:163.147200pt;}
.y27_c00392{bottom:190.027200pt;}
.y26_c00392{bottom:216.747067pt;}
.y25_c00392{bottom:243.627067pt;}
.y24_c00392{bottom:270.427067pt;}
.y23_c00392{bottom:297.307067pt;}
.y22_c00392{bottom:324.107067pt;}
.y21_c00392{bottom:350.987200pt;}
.y20_c00392{bottom:377.787067pt;}
.y1f_c00392{bottom:404.667067pt;}
.y1e_c00392{bottom:431.467067pt;}
.y1d_c00392{bottom:458.347067pt;}
.y1c_c00392{bottom:485.147067pt;}
.y1b_c00392{bottom:512.027067pt;}
.y1a_c00392{bottom:538.827067pt;}
.y19_c00392{bottom:565.707067pt;}
.y18_c00392{bottom:592.587067pt;}
.y17_c00392{bottom:619.387067pt;}
.y16_c00392{bottom:646.267067pt;}
.y15_c00392{bottom:673.067067pt;}
.y14_c00392{bottom:699.947067pt;}
.yc_c00392{bottom:726.746471pt;}
.y13_c00392{bottom:726.747067pt;}
.yb_c00392{bottom:753.626371pt;}
.y12_c00392{bottom:753.627067pt;}
.ya_c00392{bottom:780.426915pt;}
.y11_c00392{bottom:780.427067pt;}
.y9_c00392{bottom:807.306815pt;}
.y10_c00392{bottom:807.307067pt;}
.yf_c00392{bottom:834.107067pt;}
.y8_c00392{bottom:834.107359pt;}
.ye_c00392{bottom:860.987067pt;}
.y7_c00392{bottom:878.987067pt;}
.yd_c00392{bottom:905.867067pt;}
.y6_c00392{bottom:905.947067pt;}
.y5_c00392{bottom:932.747067pt;}
.y4_c00392{bottom:959.627067pt;}
.y3_c00392{bottom:986.427067pt;}
.h3_c00392{height:55.645234pt;}
.h1_c00392{height:55.797187pt;}
.h2_c00392{height:56.192266pt;}
.h0_c00392{height:1122.666667pt;}
.w0_c00392{width:793.333333pt;}
.x0_c00392{left:0.000000pt;}
.x2_c00392{left:73.520052pt;}
.x3_c00392{left:123.520000pt;}
.x1_c00392{left:383.760000pt;}
.x4_c00392{left:403.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6ed969539f77270a792e8a6a.woff2')format("woff");}.ff1_c00393{font-family:ff1_c00393;line-height:1.106934;font-style:normal;font-weight:normal;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_352e4949d8b584efa75f91ea.woff2')format("woff");}.ff2_c00393{font-family:ff2_c00393;line-height:1.104492;font-style:normal;font-weight:normal;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_8731700fcea34492e4c23ea0.woff2')format("woff");}.ff3_c00393{font-family:ff3_c00393;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00393{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00393{vertical-align:0.000000px;}
.v1_c00393{vertical-align:32.400000px;}
.ls5_c00393{letter-spacing:-0.063018px;}
.lse_c00393{letter-spacing:-0.049014px;}
.ls7_c00393{letter-spacing:-0.042012px;}
.ls9_c00393{letter-spacing:-0.035010px;}
.lsa_c00393{letter-spacing:-0.028008px;}
.ls8_c00393{letter-spacing:-0.021006px;}
.lsb_c00393{letter-spacing:-0.014004px;}
.lsd_c00393{letter-spacing:-0.007002px;}
.ls6_c00393{letter-spacing:0.000000px;}
.ls0_c00393{letter-spacing:0.007002px;}
.ls4_c00393{letter-spacing:0.014004px;}
.ls2_c00393{letter-spacing:0.023281px;}
.ls1_c00393{letter-spacing:0.035010px;}
.ls3_c00393{letter-spacing:0.070020px;}
.lsc_c00393{letter-spacing:0.189054px;}
.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:-12.967628px;}
.wsb_c00393{word-spacing:-0.560160px;}
.ws17_c00393{word-spacing:-0.028008px;}
.ws15_c00393{word-spacing:-0.007002px;}
.ws1_c00393{word-spacing:0.000000px;}
.ws9_c00393{word-spacing:0.007002px;}
.wsa_c00393{word-spacing:0.014004px;}
.wsd_c00393{word-spacing:0.350100px;}
.wse_c00393{word-spacing:0.378108px;}
.ws11_c00393{word-spacing:5.048442px;}
.ws10_c00393{word-spacing:5.776650px;}
.ws5_c00393{word-spacing:7.583166px;}
.ws12_c00393{word-spacing:9.361674px;}
.ws7_c00393{word-spacing:12.190482px;}
.ws8_c00393{word-spacing:12.554586px;}
.ws16_c00393{word-spacing:15.852528px;}
.ws6_c00393{word-spacing:16.538724px;}
.ws13_c00393{word-spacing:18.023148px;}
.ws14_c00393{word-spacing:18.037152px;}
.wsf_c00393{word-spacing:29.170332px;}
.wsc_c00393{word-spacing:32.776362px;}
.ws4_c00393{word-spacing:42.096024px;}
.ws3_c00393{word-spacing:47.529576px;}
.ws2_c00393{word-spacing:59.425974px;}
._2_c00393{margin-left:-1.225350px;}
._0_c00393{width:1.274364px;}
._1_c00393{width:8.283366px;}
._3_c00393{width:31.726062px;}
.fc0_c00393{color:rgb(0,0,0);}
.fs1_c00393{font-size:46.562400px;}
.fs0_c00393{font-size:70.020000px;}
.y0_c00393{bottom:0.000000px;}
.y2_c00393{bottom:109.740968px;}
.y1_c00393{bottom:129.810450px;}
.y1a_c00393{bottom:168.417921px;}
.y19_c00393{bottom:198.657808px;}
.y18_c00393{bottom:228.808420px;}
.y17_c00393{bottom:259.048308px;}
.y16_c00393{bottom:289.107894px;}
.y15_c00393{bottom:319.347781px;}
.y14_c00393{bottom:349.498393px;}
.y13_c00393{bottom:379.738281px;}
.y12_c00393{bottom:409.888893px;}
.y11_c00393{bottom:440.128780px;}
.y10_c00393{bottom:470.279392px;}
.yf_c00393{bottom:500.519280px;}
.ye_c00393{bottom:530.669892px;}
.yd_c00393{bottom:557.130450px;}
.yc_c00393{bottom:837.299951px;}
.yb_c00393{bottom:867.450562px;}
.ya_c00393{bottom:897.690450px;}
.y9_c00393{bottom:928.560450px;}
.y8_c00393{bottom:958.800450px;}
.y7_c00393{bottom:988.950450px;}
.y6_c00393{bottom:1019.190450px;}
.y5_c00393{bottom:1049.340450px;}
.y4_c00393{bottom:1079.580450px;}
.y3_c00393{bottom:1109.730450px;}
.h2_c00393{height:62.600889px;}
.h1_c00393{height:62.771836px;}
.h4_c00393{height:63.216299px;}
.h3_c00393{height:74.028786px;}
.h0_c00393{height:1263.000000px;}
.w0_c00393{width:892.500000px;}
.x0_c00393{left:0.000000px;}
.x2_c00393{left:82.710059px;}
.x4_c00393{left:138.960000px;}
.x6_c00393{left:165.240257px;}
.x5_c00393{left:283.409509px;}
.x1_c00393{left:431.730000px;}
.x3_c00393{left:454.230000px;}
.x7_c00393{left:709.020000px;}
@media print{
.v0_c00393{vertical-align:0.000000pt;}
.v1_c00393{vertical-align:28.800000pt;}
.ls5_c00393{letter-spacing:-0.056016pt;}
.lse_c00393{letter-spacing:-0.043568pt;}
.ls7_c00393{letter-spacing:-0.037344pt;}
.ls9_c00393{letter-spacing:-0.031120pt;}
.lsa_c00393{letter-spacing:-0.024896pt;}
.ls8_c00393{letter-spacing:-0.018672pt;}
.lsb_c00393{letter-spacing:-0.012448pt;}
.lsd_c00393{letter-spacing:-0.006224pt;}
.ls6_c00393{letter-spacing:0.000000pt;}
.ls0_c00393{letter-spacing:0.006224pt;}
.ls4_c00393{letter-spacing:0.012448pt;}
.ls2_c00393{letter-spacing:0.020694pt;}
.ls1_c00393{letter-spacing:0.031120pt;}
.ls3_c00393{letter-spacing:0.062240pt;}
.lsc_c00393{letter-spacing:0.168048pt;}
.ws0_c00393{word-spacing:-11.526781pt;}
.wsb_c00393{word-spacing:-0.497920pt;}
.ws17_c00393{word-spacing:-0.024896pt;}
.ws15_c00393{word-spacing:-0.006224pt;}
.ws1_c00393{word-spacing:0.000000pt;}
.ws9_c00393{word-spacing:0.006224pt;}
.wsa_c00393{word-spacing:0.012448pt;}
.wsd_c00393{word-spacing:0.311200pt;}
.wse_c00393{word-spacing:0.336096pt;}
.ws11_c00393{word-spacing:4.487504pt;}
.ws10_c00393{word-spacing:5.134800pt;}
.ws5_c00393{word-spacing:6.740592pt;}
.ws12_c00393{word-spacing:8.321488pt;}
.ws7_c00393{word-spacing:10.835984pt;}
.ws8_c00393{word-spacing:11.159632pt;}
.ws16_c00393{word-spacing:14.091136pt;}
.ws6_c00393{word-spacing:14.701088pt;}
.ws13_c00393{word-spacing:16.020576pt;}
.ws14_c00393{word-spacing:16.033024pt;}
.wsf_c00393{word-spacing:25.929184pt;}
.wsc_c00393{word-spacing:29.134544pt;}
.ws4_c00393{word-spacing:37.418688pt;}
.ws3_c00393{word-spacing:42.248512pt;}
.ws2_c00393{word-spacing:52.823088pt;}
._2_c00393{margin-left:-1.089200pt;}
._0_c00393{width:1.132768pt;}
._1_c00393{width:7.362992pt;}
._3_c00393{width:28.200944pt;}
.fs1_c00393{font-size:41.388800pt;}
.fs0_c00393{font-size:62.240000pt;}
.y0_c00393{bottom:0.000000pt;}
.y2_c00393{bottom:97.547527pt;}
.y1_c00393{bottom:115.387067pt;}
.y1a_c00393{bottom:149.704819pt;}
.y19_c00393{bottom:176.584719pt;}
.y18_c00393{bottom:203.385263pt;}
.y17_c00393{bottom:230.265163pt;}
.y16_c00393{bottom:256.984795pt;}
.y15_c00393{bottom:283.864695pt;}
.y14_c00393{bottom:310.665239pt;}
.y13_c00393{bottom:337.545139pt;}
.y12_c00393{bottom:364.345683pt;}
.y11_c00393{bottom:391.225583pt;}
.y10_c00393{bottom:418.026127pt;}
.yf_c00393{bottom:444.906027pt;}
.ye_c00393{bottom:471.706571pt;}
.yd_c00393{bottom:495.227067pt;}
.yc_c00393{bottom:744.266623pt;}
.yb_c00393{bottom:771.067167pt;}
.ya_c00393{bottom:797.947067pt;}
.y9_c00393{bottom:825.387067pt;}
.y8_c00393{bottom:852.267067pt;}
.y7_c00393{bottom:879.067067pt;}
.y6_c00393{bottom:905.947067pt;}
.y5_c00393{bottom:932.747067pt;}
.y4_c00393{bottom:959.627067pt;}
.y3_c00393{bottom:986.427067pt;}
.h2_c00393{height:55.645234pt;}
.h1_c00393{height:55.797187pt;}
.h4_c00393{height:56.192266pt;}
.h3_c00393{height:65.803366pt;}
.h0_c00393{height:1122.666667pt;}
.w0_c00393{width:793.333333pt;}
.x0_c00393{left:0.000000pt;}
.x2_c00393{left:73.520052pt;}
.x4_c00393{left:123.520000pt;}
.x6_c00393{left:146.880228pt;}
.x5_c00393{left:251.919564pt;}
.x1_c00393{left:383.760000pt;}
.x3_c00393{left:403.760000pt;}
.x7_c00393{left:630.240000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e0094f32fdf2842a19c71bd3.woff2')format("woff");}.ff1_c00394{font-family:ff1_c00394;line-height:1.106934;font-style:normal;font-weight:normal;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_7270a01b934911814c861d01.woff2')format("woff");}.ff2_c00394{font-family:ff2_c00394;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00394{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00394{vertical-align:0.000000px;}
.v1_c00394{vertical-align:32.043852px;}
.ls4_c00394{letter-spacing:-0.063018px;}
.ls6_c00394{letter-spacing:-0.035010px;}
.ls7_c00394{letter-spacing:-0.028008px;}
.lsa_c00394{letter-spacing:-0.021006px;}
.ls9_c00394{letter-spacing:-0.014004px;}
.ls8_c00394{letter-spacing:-0.007002px;}
.ls5_c00394{letter-spacing:0.000000px;}
.ls2_c00394{letter-spacing:0.007002px;}
.ls3_c00394{letter-spacing:0.021006px;}
.ls1_c00394{letter-spacing:0.023281px;}
.ls0_c00394{letter-spacing:0.035010px;}
.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:-12.967628px;}
.ws1_c00394{word-spacing:0.000000px;}
.ws8_c00394{word-spacing:0.014004px;}
.ws7_c00394{word-spacing:0.308088px;}
.ws9_c00394{word-spacing:0.343098px;}
.ws13_c00394{word-spacing:0.357102px;}
.wsf_c00394{word-spacing:0.371106px;}
.ws12_c00394{word-spacing:1.456416px;}
.ws2_c00394{word-spacing:1.463418px;}
.wsd_c00394{word-spacing:3.963132px;}
.wsc_c00394{word-spacing:4.691340px;}
.ws11_c00394{word-spacing:5.363532px;}
.ws6_c00394{word-spacing:5.391540px;}
.ws5_c00394{word-spacing:5.412546px;}
.ws3_c00394{word-spacing:7.905258px;}
.ws10_c00394{word-spacing:7.940268px;}
.wsa_c00394{word-spacing:14.025006px;}
.wse_c00394{word-spacing:18.009144px;}
.ws4_c00394{word-spacing:45.737064px;}
.wsb_c00394{word-spacing:50.379390px;}
._0_c00394{margin-left:-1.099314px;}
._1_c00394{width:1.029294px;}
.fc0_c00394{color:rgb(0,0,0);}
.fs1_c00394{font-size:46.562400px;}
.fs0_c00394{font-size:70.020000px;}
.y0_c00394{bottom:0.000000px;}
.y2_c00394{bottom:109.740968px;}
.y1_c00394{bottom:129.810450px;}
.y22_c00394{bottom:173.724456px;}
.y21_c00394{bottom:203.964344px;}
.y20_c00394{bottom:234.114956px;}
.y1f_c00394{bottom:264.354843px;}
.y1e_c00394{bottom:294.505455px;}
.y1d_c00394{bottom:324.745343px;}
.y1c_c00394{bottom:354.895955px;}
.y1b_c00394{bottom:385.135842px;}
.y1a_c00394{bottom:415.286454px;}
.y19_c00394{bottom:445.526342px;}
.y18_c00394{bottom:475.766229px;}
.y17_c00394{bottom:505.916841px;}
.y16_c00394{bottom:536.156728px;}
.y15_c00394{bottom:566.307340px;}
.y14_c00394{bottom:596.457952px;}
.y13_c00394{bottom:626.608564px;}
.y12_c00394{bottom:656.848452px;}
.y11_c00394{bottom:686.999064px;}
.y10_c00394{bottom:717.238951px;}
.yf_c00394{bottom:747.389563px;}
.ye_c00394{bottom:777.629451px;}
.yd_c00394{bottom:807.780063px;}
.yc_c00394{bottom:838.019951px;}
.yb_c00394{bottom:868.170562px;}
.ya_c00394{bottom:898.409487px;}
.y9_c00394{bottom:928.560099px;}
.y8_c00394{bottom:958.799987px;}
.y7_c00394{bottom:988.950599px;}
.y6_c00394{bottom:1019.190486px;}
.y5_c00394{bottom:1049.341098px;}
.y4_c00394{bottom:1079.580985px;}
.y3_c00394{bottom:1109.731597px;}
.h2_c00394{height:62.600889px;}
.h1_c00394{height:62.771836px;}
.h3_c00394{height:73.672638px;}
.h0_c00394{height:1263.000000px;}
.w0_c00394{width:892.500000px;}
.x0_c00394{left:0.000000px;}
.x2_c00394{left:82.710059px;}
.x3_c00394{left:138.960626px;}
.x1_c00394{left:431.730000px;}
@media print{
.v0_c00394{vertical-align:0.000000pt;}
.v1_c00394{vertical-align:28.483424pt;}
.ls4_c00394{letter-spacing:-0.056016pt;}
.ls6_c00394{letter-spacing:-0.031120pt;}
.ls7_c00394{letter-spacing:-0.024896pt;}
.lsa_c00394{letter-spacing:-0.018672pt;}
.ls9_c00394{letter-spacing:-0.012448pt;}
.ls8_c00394{letter-spacing:-0.006224pt;}
.ls5_c00394{letter-spacing:0.000000pt;}
.ls2_c00394{letter-spacing:0.006224pt;}
.ls3_c00394{letter-spacing:0.018672pt;}
.ls1_c00394{letter-spacing:0.020694pt;}
.ls0_c00394{letter-spacing:0.031120pt;}
.ws0_c00394{word-spacing:-11.526781pt;}
.ws1_c00394{word-spacing:0.000000pt;}
.ws8_c00394{word-spacing:0.012448pt;}
.ws7_c00394{word-spacing:0.273856pt;}
.ws9_c00394{word-spacing:0.304976pt;}
.ws13_c00394{word-spacing:0.317424pt;}
.wsf_c00394{word-spacing:0.329872pt;}
.ws12_c00394{word-spacing:1.294592pt;}
.ws2_c00394{word-spacing:1.300816pt;}
.wsd_c00394{word-spacing:3.522784pt;}
.wsc_c00394{word-spacing:4.170080pt;}
.ws11_c00394{word-spacing:4.767584pt;}
.ws6_c00394{word-spacing:4.792480pt;}
.ws5_c00394{word-spacing:4.811152pt;}
.ws3_c00394{word-spacing:7.026896pt;}
.ws10_c00394{word-spacing:7.058016pt;}
.wsa_c00394{word-spacing:12.466672pt;}
.wse_c00394{word-spacing:16.008128pt;}
.ws4_c00394{word-spacing:40.655168pt;}
.wsb_c00394{word-spacing:44.781680pt;}
._0_c00394{margin-left:-0.977168pt;}
._1_c00394{width:0.914928pt;}
.fs1_c00394{font-size:41.388800pt;}
.fs0_c00394{font-size:62.240000pt;}
.y0_c00394{bottom:0.000000pt;}
.y2_c00394{bottom:97.547527pt;}
.y1_c00394{bottom:115.387067pt;}
.y22_c00394{bottom:154.421739pt;}
.y21_c00394{bottom:181.301639pt;}
.y20_c00394{bottom:208.102183pt;}
.y1f_c00394{bottom:234.982083pt;}
.y1e_c00394{bottom:261.782627pt;}
.y1d_c00394{bottom:288.662527pt;}
.y1c_c00394{bottom:315.463071pt;}
.y1b_c00394{bottom:342.342971pt;}
.y1a_c00394{bottom:369.143515pt;}
.y19_c00394{bottom:396.023415pt;}
.y18_c00394{bottom:422.903315pt;}
.y17_c00394{bottom:449.703859pt;}
.y16_c00394{bottom:476.583759pt;}
.y15_c00394{bottom:503.384303pt;}
.y14_c00394{bottom:530.184847pt;}
.y13_c00394{bottom:556.985391pt;}
.y12_c00394{bottom:583.865291pt;}
.y11_c00394{bottom:610.665835pt;}
.y10_c00394{bottom:637.545735pt;}
.yf_c00394{bottom:664.346279pt;}
.ye_c00394{bottom:691.226179pt;}
.yd_c00394{bottom:718.026723pt;}
.yc_c00394{bottom:744.906623pt;}
.yb_c00394{bottom:771.707167pt;}
.ya_c00394{bottom:798.586211pt;}
.y9_c00394{bottom:825.386755pt;}
.y8_c00394{bottom:852.266655pt;}
.y7_c00394{bottom:879.067199pt;}
.y6_c00394{bottom:905.947099pt;}
.y5_c00394{bottom:932.747643pt;}
.y4_c00394{bottom:959.627543pt;}
.y3_c00394{bottom:986.428087pt;}
.h2_c00394{height:55.645234pt;}
.h1_c00394{height:55.797187pt;}
.h3_c00394{height:65.486790pt;}
.h0_c00394{height:1122.666667pt;}
.w0_c00394{width:793.333333pt;}
.x0_c00394{left:0.000000pt;}
.x2_c00394{left:73.520052pt;}
.x3_c00394{left:123.520556pt;}
.x1_c00394{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_da37a4ef629d5a5478ea3619.woff2')format("woff");}.ff1_c00395{font-family:ff1_c00395;line-height:1.106934;font-style:normal;font-weight:normal;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_768ca92234d7a9652c6ef3c3.woff2')format("woff");}.ff2_c00395{font-family:ff2_c00395;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00395;src:url('chunks/assets/font_4668f889b2c5a1a636437293.woff2')format("woff");}.ff3_c00395{font-family:ff3_c00395;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00395{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00395{vertical-align:0.000000px;}
.v1_c00395{vertical-align:32.040000px;}
.ls7_c00395{letter-spacing:-0.063018px;}
.ls9_c00395{letter-spacing:-0.042012px;}
.lsb_c00395{letter-spacing:-0.035010px;}
.lsc_c00395{letter-spacing:-0.028008px;}
.lsf_c00395{letter-spacing:-0.021006px;}
.lsa_c00395{letter-spacing:-0.014004px;}
.lsd_c00395{letter-spacing:-0.007002px;}
.ls8_c00395{letter-spacing:0.000000px;}
.ls0_c00395{letter-spacing:0.007002px;}
.ls2_c00395{letter-spacing:0.014004px;}
.ls4_c00395{letter-spacing:0.021006px;}
.ls5_c00395{letter-spacing:0.023281px;}
.ls3_c00395{letter-spacing:0.042012px;}
.ls1_c00395{letter-spacing:0.070020px;}
.lse_c00395{letter-spacing:0.343098px;}
.ls6_c00395{letter-spacing:0.693198px;}
.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:-12.967628px;}
.ws3_c00395{word-spacing:-0.021006px;}
.ws1_c00395{word-spacing:0.000000px;}
.ws13_c00395{word-spacing:0.014004px;}
.ws2_c00395{word-spacing:0.028008px;}
.wse_c00395{word-spacing:0.686196px;}
.wsf_c00395{word-spacing:0.707202px;}
.wsb_c00395{word-spacing:1.078308px;}
.ws8_c00395{word-spacing:1.099314px;}
.ws18_c00395{word-spacing:1.764504px;}
.ws10_c00395{word-spacing:3.578022px;}
.wsc_c00395{word-spacing:4.320234px;}
.wsd_c00395{word-spacing:4.663332px;}
.wsa_c00395{word-spacing:6.469848px;}
.ws12_c00395{word-spacing:7.177050px;}
.ws11_c00395{word-spacing:7.212060px;}
.ws14_c00395{word-spacing:7.940268px;}
.ws5_c00395{word-spacing:8.640468px;}
.ws16_c00395{word-spacing:11.889396px;}
.ws9_c00395{word-spacing:15.852528px;}
.ws15_c00395{word-spacing:16.916832px;}
.ws6_c00395{word-spacing:23.344668px;}
.ws7_c00395{word-spacing:23.757786px;}
.ws17_c00395{word-spacing:23.771790px;}
.ws4_c00395{word-spacing:26.250498px;}
._3_c00395{margin-left:-1.050300px;}
._0_c00395{width:1.127322px;}
._1_c00395{width:8.283366px;}
._2_c00395{width:24.885108px;}
.fc0_c00395{color:rgb(0,0,0);}
.fs1_c00395{font-size:46.562400px;}
.fs0_c00395{font-size:70.020000px;}
.y0_c00395{bottom:0.000000px;}
.y2_c00395{bottom:109.740968px;}
.y1_c00395{bottom:129.810450px;}
.y1a_c00395{bottom:180.480450px;}
.y19_c00395{bottom:210.720450px;}
.y18_c00395{bottom:240.870600px;}
.y17_c00395{bottom:271.110450px;}
.y16_c00395{bottom:301.260450px;}
.y15_c00395{bottom:331.500600px;}
.y14_c00395{bottom:361.650450px;}
.y13_c00395{bottom:391.890450px;}
.y12_c00395{bottom:422.040600px;}
.y11_c00395{bottom:452.280600px;}
.y10_c00395{bottom:482.340600px;}
.yf_c00395{bottom:512.580450px;}
.ye_c00395{bottom:542.730450px;}
.yd_c00395{bottom:572.970450px;}
.yc_c00395{bottom:603.120450px;}
.yb_c00395{bottom:633.360450px;}
.ya_c00395{bottom:663.510450px;}
.y9_c00395{bottom:693.750450px;}
.y8_c00395{bottom:723.990450px;}
.y7_c00395{bottom:750.360450px;}
.y6_c00395{bottom:1019.190450px;}
.y5_c00395{bottom:1049.340450px;}
.y4_c00395{bottom:1079.580450px;}
.y3_c00395{bottom:1109.730450px;}
.h3_c00395{height:62.600889px;}
.h1_c00395{height:62.771836px;}
.h2_c00395{height:63.216299px;}
.h4_c00395{height:73.668786px;}
.h0_c00395{height:1263.000000px;}
.w0_c00395{width:892.500000px;}
.x0_c00395{left:0.000000px;}
.x2_c00395{left:82.710059px;}
.x3_c00395{left:138.960000px;}
.x5_c00395{left:165.240000px;}
.x4_c00395{left:341.280000px;}
.x1_c00395{left:431.730000px;}
.x6_c00395{left:713.430000px;}
@media print{
.v0_c00395{vertical-align:0.000000pt;}
.v1_c00395{vertical-align:28.480000pt;}
.ls7_c00395{letter-spacing:-0.056016pt;}
.ls9_c00395{letter-spacing:-0.037344pt;}
.lsb_c00395{letter-spacing:-0.031120pt;}
.lsc_c00395{letter-spacing:-0.024896pt;}
.lsf_c00395{letter-spacing:-0.018672pt;}
.lsa_c00395{letter-spacing:-0.012448pt;}
.lsd_c00395{letter-spacing:-0.006224pt;}
.ls8_c00395{letter-spacing:0.000000pt;}
.ls0_c00395{letter-spacing:0.006224pt;}
.ls2_c00395{letter-spacing:0.012448pt;}
.ls4_c00395{letter-spacing:0.018672pt;}
.ls5_c00395{letter-spacing:0.020694pt;}
.ls3_c00395{letter-spacing:0.037344pt;}
.ls1_c00395{letter-spacing:0.062240pt;}
.lse_c00395{letter-spacing:0.304976pt;}
.ls6_c00395{letter-spacing:0.616176pt;}
.ws0_c00395{word-spacing:-11.526781pt;}
.ws3_c00395{word-spacing:-0.018672pt;}
.ws1_c00395{word-spacing:0.000000pt;}
.ws13_c00395{word-spacing:0.012448pt;}
.ws2_c00395{word-spacing:0.024896pt;}
.wse_c00395{word-spacing:0.609952pt;}
.wsf_c00395{word-spacing:0.628624pt;}
.wsb_c00395{word-spacing:0.958496pt;}
.ws8_c00395{word-spacing:0.977168pt;}
.ws18_c00395{word-spacing:1.568448pt;}
.ws10_c00395{word-spacing:3.180464pt;}
.wsc_c00395{word-spacing:3.840208pt;}
.wsd_c00395{word-spacing:4.145184pt;}
.wsa_c00395{word-spacing:5.750976pt;}
.ws12_c00395{word-spacing:6.379600pt;}
.ws11_c00395{word-spacing:6.410720pt;}
.ws14_c00395{word-spacing:7.058016pt;}
.ws5_c00395{word-spacing:7.680416pt;}
.ws16_c00395{word-spacing:10.568352pt;}
.ws9_c00395{word-spacing:14.091136pt;}
.ws15_c00395{word-spacing:15.037184pt;}
.ws6_c00395{word-spacing:20.750816pt;}
.ws7_c00395{word-spacing:21.118032pt;}
.ws17_c00395{word-spacing:21.130480pt;}
.ws4_c00395{word-spacing:23.333776pt;}
._3_c00395{margin-left:-0.933600pt;}
._0_c00395{width:1.002064pt;}
._1_c00395{width:7.362992pt;}
._2_c00395{width:22.120096pt;}
.fs1_c00395{font-size:41.388800pt;}
.fs0_c00395{font-size:62.240000pt;}
.y0_c00395{bottom:0.000000pt;}
.y2_c00395{bottom:97.547527pt;}
.y1_c00395{bottom:115.387067pt;}
.y1a_c00395{bottom:160.427067pt;}
.y19_c00395{bottom:187.307067pt;}
.y18_c00395{bottom:214.107200pt;}
.y17_c00395{bottom:240.987067pt;}
.y16_c00395{bottom:267.787067pt;}
.y15_c00395{bottom:294.667200pt;}
.y14_c00395{bottom:321.467067pt;}
.y13_c00395{bottom:348.347067pt;}
.y12_c00395{bottom:375.147200pt;}
.y11_c00395{bottom:402.027200pt;}
.y10_c00395{bottom:428.747200pt;}
.yf_c00395{bottom:455.627067pt;}
.ye_c00395{bottom:482.427067pt;}
.yd_c00395{bottom:509.307067pt;}
.yc_c00395{bottom:536.107067pt;}
.yb_c00395{bottom:562.987067pt;}
.ya_c00395{bottom:589.787067pt;}
.y9_c00395{bottom:616.667067pt;}
.y8_c00395{bottom:643.547067pt;}
.y7_c00395{bottom:666.987067pt;}
.y6_c00395{bottom:905.947067pt;}
.y5_c00395{bottom:932.747067pt;}
.y4_c00395{bottom:959.627067pt;}
.y3_c00395{bottom:986.427067pt;}
.h3_c00395{height:55.645234pt;}
.h1_c00395{height:55.797187pt;}
.h2_c00395{height:56.192266pt;}
.h4_c00395{height:65.483366pt;}
.h0_c00395{height:1122.666667pt;}
.w0_c00395{width:793.333333pt;}
.x0_c00395{left:0.000000pt;}
.x2_c00395{left:73.520052pt;}
.x3_c00395{left:123.520000pt;}
.x5_c00395{left:146.880000pt;}
.x4_c00395{left:303.360000pt;}
.x1_c00395{left:383.760000pt;}
.x6_c00395{left:634.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2b0f45aae0792baf4d8db727.woff2')format("woff");}.ff1_c00396{font-family:ff1_c00396;line-height:1.106934;font-style:normal;font-weight:normal;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_71f4419739fd18aeb8508b0e.woff2')format("woff");}.ff2_c00396{font-family:ff2_c00396;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00396;src:url('chunks/assets/font_87bde2a3985ef412a16f7727.woff2')format("woff");}.ff3_c00396{font-family:ff3_c00396;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00396{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00396{vertical-align:0.000000px;}
.v1_c00396{vertical-align:32.040000px;}
.lsc_c00396{letter-spacing:-0.335249px;}
.ls4_c00396{letter-spacing:-0.063018px;}
.ls8_c00396{letter-spacing:-0.049014px;}
.ls6_c00396{letter-spacing:-0.042012px;}
.lsb_c00396{letter-spacing:-0.035010px;}
.lsd_c00396{letter-spacing:-0.028008px;}
.ls7_c00396{letter-spacing:-0.021006px;}
.lsa_c00396{letter-spacing:-0.014004px;}
.ls9_c00396{letter-spacing:-0.007002px;}
.ls5_c00396{letter-spacing:0.000000px;}
.ls2_c00396{letter-spacing:0.007002px;}
.ls1_c00396{letter-spacing:0.014004px;}
.ls0_c00396{letter-spacing:0.021006px;}
.ls3_c00396{letter-spacing:0.028008px;}
.sc__c00396{text-shadow:none;}
.sc0_c00396{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00396{-webkit-text-stroke:0px transparent;}
.sc0_c00396{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00396{word-spacing:-12.609098px;}
.ws1_c00396{word-spacing:0.000000px;}
.ws3_c00396{word-spacing:0.007002px;}
.ws13_c00396{word-spacing:0.014004px;}
.ws11_c00396{word-spacing:0.315090px;}
.ws4_c00396{word-spacing:0.322092px;}
.ws12_c00396{word-spacing:0.343098px;}
.ws10_c00396{word-spacing:0.357102px;}
.ws9_c00396{word-spacing:5.020434px;}
.ws6_c00396{word-spacing:5.034438px;}
.ws8_c00396{word-spacing:5.370534px;}
.wsb_c00396{word-spacing:5.398542px;}
.wsd_c00396{word-spacing:9.004572px;}
.ws7_c00396{word-spacing:11.518290px;}
.wsc_c00396{word-spacing:13.646898px;}
.wse_c00396{word-spacing:14.424120px;}
.wsf_c00396{word-spacing:14.746212px;}
.wsa_c00396{word-spacing:20.858958px;}
.ws5_c00396{word-spacing:28.792224px;}
.ws2_c00396{word-spacing:31.705056px;}
._1_c00396{margin-left:-1.127322px;}
._0_c00396{width:1.211346px;}
.fc0_c00396{color:rgb(0,0,0);}
.fs1_c00396{font-size:46.562400px;}
.fs0_c00396{font-size:70.020000px;}
.y0_c00396{bottom:0.000000px;}
.y2_c00396{bottom:109.740968px;}
.y1_c00396{bottom:129.810450px;}
.y22_c00396{bottom:182.998195px;}
.y21_c00396{bottom:213.238083px;}
.y20_c00396{bottom:243.388695px;}
.y1f_c00396{bottom:273.628582px;}
.y1e_c00396{bottom:303.868470px;}
.y1d_c00396{bottom:334.019082px;}
.y1c_c00396{bottom:364.258969px;}
.y1b_c00396{bottom:394.409581px;}
.y1a_c00396{bottom:424.649469px;}
.y19_c00396{bottom:454.800081px;}
.y18_c00396{bottom:485.039968px;}
.y17_c00396{bottom:515.190580px;}
.y16_c00396{bottom:545.430468px;}
.y15_c00396{bottom:575.581080px;}
.y14_c00396{bottom:605.820967px;}
.y13_c00396{bottom:625.890450px;}
.y12_c00396{bottom:656.850450px;}
.y11_c00396{bottom:687.000450px;}
.y10_c00396{bottom:717.240450px;}
.yf_c00396{bottom:747.390450px;}
.ye_c00396{bottom:777.630450px;}
.yd_c00396{bottom:807.780450px;}
.yc_c00396{bottom:838.020450px;}
.yb_c00396{bottom:868.170450px;}
.ya_c00396{bottom:898.410450px;}
.y9_c00396{bottom:928.560450px;}
.y8_c00396{bottom:958.800450px;}
.y7_c00396{bottom:988.950450px;}
.y6_c00396{bottom:1019.190450px;}
.y5_c00396{bottom:1049.340450px;}
.y4_c00396{bottom:1079.580450px;}
.y3_c00396{bottom:1109.730450px;}
.h3_c00396{height:62.600889px;}
.h1_c00396{height:62.771836px;}
.h2_c00396{height:63.216299px;}
.h4_c00396{height:73.668786px;}
.h0_c00396{height:1263.000000px;}
.w0_c00396{width:892.500000px;}
.x0_c00396{left:0.000000px;}
.x2_c00396{left:82.710059px;}
.x3_c00396{left:138.960000px;}
.x4_c00396{left:339.750000px;}
.x1_c00396{left:431.730000px;}
@media print{
.v0_c00396{vertical-align:0.000000pt;}
.v1_c00396{vertical-align:28.480000pt;}
.lsc_c00396{letter-spacing:-0.297999pt;}
.ls4_c00396{letter-spacing:-0.056016pt;}
.ls8_c00396{letter-spacing:-0.043568pt;}
.ls6_c00396{letter-spacing:-0.037344pt;}
.lsb_c00396{letter-spacing:-0.031120pt;}
.lsd_c00396{letter-spacing:-0.024896pt;}
.ls7_c00396{letter-spacing:-0.018672pt;}
.lsa_c00396{letter-spacing:-0.012448pt;}
.ls9_c00396{letter-spacing:-0.006224pt;}
.ls5_c00396{letter-spacing:0.000000pt;}
.ls2_c00396{letter-spacing:0.006224pt;}
.ls1_c00396{letter-spacing:0.012448pt;}
.ls0_c00396{letter-spacing:0.018672pt;}
.ls3_c00396{letter-spacing:0.024896pt;}
.ws0_c00396{word-spacing:-11.208087pt;}
.ws1_c00396{word-spacing:0.000000pt;}
.ws3_c00396{word-spacing:0.006224pt;}
.ws13_c00396{word-spacing:0.012448pt;}
.ws11_c00396{word-spacing:0.280080pt;}
.ws4_c00396{word-spacing:0.286304pt;}
.ws12_c00396{word-spacing:0.304976pt;}
.ws10_c00396{word-spacing:0.317424pt;}
.ws9_c00396{word-spacing:4.462608pt;}
.ws6_c00396{word-spacing:4.475056pt;}
.ws8_c00396{word-spacing:4.773808pt;}
.wsb_c00396{word-spacing:4.798704pt;}
.wsd_c00396{word-spacing:8.004064pt;}
.ws7_c00396{word-spacing:10.238480pt;}
.wsc_c00396{word-spacing:12.130576pt;}
.wse_c00396{word-spacing:12.821440pt;}
.wsf_c00396{word-spacing:13.107744pt;}
.wsa_c00396{word-spacing:18.541296pt;}
.ws5_c00396{word-spacing:25.593088pt;}
.ws2_c00396{word-spacing:28.182272pt;}
._1_c00396{margin-left:-1.002064pt;}
._0_c00396{width:1.076752pt;}
.fs1_c00396{font-size:41.388800pt;}
.fs0_c00396{font-size:62.240000pt;}
.y0_c00396{bottom:0.000000pt;}
.y2_c00396{bottom:97.547527pt;}
.y1_c00396{bottom:115.387067pt;}
.y22_c00396{bottom:162.665063pt;}
.y21_c00396{bottom:189.544963pt;}
.y20_c00396{bottom:216.345507pt;}
.y1f_c00396{bottom:243.225407pt;}
.y1e_c00396{bottom:270.105307pt;}
.y1d_c00396{bottom:296.905851pt;}
.y1c_c00396{bottom:323.785751pt;}
.y1b_c00396{bottom:350.586295pt;}
.y1a_c00396{bottom:377.466195pt;}
.y19_c00396{bottom:404.266739pt;}
.y18_c00396{bottom:431.146639pt;}
.y17_c00396{bottom:457.947183pt;}
.y16_c00396{bottom:484.827083pt;}
.y15_c00396{bottom:511.627627pt;}
.y14_c00396{bottom:538.507527pt;}
.y13_c00396{bottom:556.347067pt;}
.y12_c00396{bottom:583.867067pt;}
.y11_c00396{bottom:610.667067pt;}
.y10_c00396{bottom:637.547067pt;}
.yf_c00396{bottom:664.347067pt;}
.ye_c00396{bottom:691.227067pt;}
.yd_c00396{bottom:718.027067pt;}
.yc_c00396{bottom:744.907067pt;}
.yb_c00396{bottom:771.707067pt;}
.ya_c00396{bottom:798.587067pt;}
.y9_c00396{bottom:825.387067pt;}
.y8_c00396{bottom:852.267067pt;}
.y7_c00396{bottom:879.067067pt;}
.y6_c00396{bottom:905.947067pt;}
.y5_c00396{bottom:932.747067pt;}
.y4_c00396{bottom:959.627067pt;}
.y3_c00396{bottom:986.427067pt;}
.h3_c00396{height:55.645234pt;}
.h1_c00396{height:55.797187pt;}
.h2_c00396{height:56.192266pt;}
.h4_c00396{height:65.483366pt;}
.h0_c00396{height:1122.666667pt;}
.w0_c00396{width:793.333333pt;}
.x0_c00396{left:0.000000pt;}
.x2_c00396{left:73.520052pt;}
.x3_c00396{left:123.520000pt;}
.x4_c00396{left:302.000000pt;}
.x1_c00396{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b0714c858a1b2a2772a6bf22.woff2')format("woff");}.ff1_c00397{font-family:ff1_c00397;line-height:1.106934;font-style:normal;font-weight:normal;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_bc8221e0f1411e0efb566ecc.woff2')format("woff");}.ff2_c00397{font-family:ff2_c00397;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00397;src:url('chunks/assets/font_81b279d9567b39b19f5dd643.woff2')format("woff");}.ff3_c00397{font-family:ff3_c00397;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00397{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00397{vertical-align:0.000000px;}
.v1_c00397{vertical-align:32.425974px;}
.ls1a_c00397{letter-spacing:-0.335249px;}
.lsf_c00397{letter-spacing:-0.098028px;}
.ls16_c00397{letter-spacing:-0.091026px;}
.ls18_c00397{letter-spacing:-0.070020px;}
.ls9_c00397{letter-spacing:-0.063018px;}
.ls15_c00397{letter-spacing:-0.056016px;}
.lse_c00397{letter-spacing:-0.049014px;}
.ls11_c00397{letter-spacing:-0.042012px;}
.ls13_c00397{letter-spacing:-0.035010px;}
.ls14_c00397{letter-spacing:-0.028008px;}
.ls12_c00397{letter-spacing:-0.021006px;}
.lsd_c00397{letter-spacing:-0.014004px;}
.ls10_c00397{letter-spacing:-0.007002px;}
.lsa_c00397{letter-spacing:0.000000px;}
.ls0_c00397{letter-spacing:0.007002px;}
.ls3_c00397{letter-spacing:0.014004px;}
.ls8_c00397{letter-spacing:0.021006px;}
.ls6_c00397{letter-spacing:0.023281px;}
.ls7_c00397{letter-spacing:0.028008px;}
.ls2_c00397{letter-spacing:0.035010px;}
.ls4_c00397{letter-spacing:0.042012px;}
.ls5_c00397{letter-spacing:0.049014px;}
.lsb_c00397{letter-spacing:0.098028px;}
.ls1_c00397{letter-spacing:0.119034px;}
.lsc_c00397{letter-spacing:0.343098px;}
.ls17_c00397{letter-spacing:0.364104px;}
.ls19_c00397{letter-spacing:0.560160px;}
.sc__c00397{text-shadow:none;}
.sc0_c00397{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00397{-webkit-text-stroke:0px transparent;}
.sc0_c00397{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00397{word-spacing:-19.563588px;}
.ws1_c00397{word-spacing:-19.430550px;}
.ws3_c00397{word-spacing:-19.423548px;}
.ws2_c00397{word-spacing:-12.967628px;}
.ws4_c00397{word-spacing:-12.609098px;}
.ws24_c00397{word-spacing:-0.399114px;}
.ws23_c00397{word-spacing:-0.378108px;}
.ws25_c00397{word-spacing:-0.357102px;}
.ws5_c00397{word-spacing:0.000000px;}
.wsc_c00397{word-spacing:0.028008px;}
.ws26_c00397{word-spacing:0.049014px;}
.wsb_c00397{word-spacing:0.350100px;}
.ws18_c00397{word-spacing:0.385110px;}
.ws32_c00397{word-spacing:1.099314px;}
.ws17_c00397{word-spacing:1.785510px;}
.ws38_c00397{word-spacing:2.149614px;}
.ws20_c00397{word-spacing:2.513718px;}
.ws2b_c00397{word-spacing:2.541726px;}
.ws7_c00397{word-spacing:4.355244px;}
.ws8_c00397{word-spacing:4.404258px;}
.ws2c_c00397{word-spacing:4.642326px;}
.ws2f_c00397{word-spacing:6.812946px;}
.ws13_c00397{word-spacing:7.149042px;}
.ws1b_c00397{word-spacing:7.555158px;}
.ws39_c00397{word-spacing:9.144612px;}
.ws3a_c00397{word-spacing:9.368676px;}
.ws35_c00397{word-spacing:9.725778px;}
.ws2e_c00397{word-spacing:10.068876px;}
.ws14_c00397{word-spacing:10.089882px;}
.ws22_c00397{word-spacing:10.481994px;}
.ws1c_c00397{word-spacing:11.819376px;}
.wsa_c00397{word-spacing:14.032008px;}
.ws3c_c00397{word-spacing:16.958844px;}
.ws6_c00397{word-spacing:17.638038px;}
.ws12_c00397{word-spacing:19.416546px;}
.ws3d_c00397{word-spacing:20.144754px;}
.ws9_c00397{word-spacing:20.858958px;}
.ws15_c00397{word-spacing:22.672476px;}
.ws29_c00397{word-spacing:23.771790px;}
.ws37_c00397{word-spacing:25.942410px;}
.ws34_c00397{word-spacing:28.064016px;}
.ws36_c00397{word-spacing:28.484136px;}
.ws1e_c00397{word-spacing:29.520432px;}
.wse_c00397{word-spacing:32.048154px;}
.ws2d_c00397{word-spacing:34.232778px;}
.wsd_c00397{word-spacing:42.481134px;}
.ws1a_c00397{word-spacing:43.552440px;}
.ws33_c00397{word-spacing:44.693766px;}
.wsf_c00397{word-spacing:46.430262px;}
.ws27_c00397{word-spacing:48.971988px;}
.ws11_c00397{word-spacing:50.351382px;}
.ws1d_c00397{word-spacing:51.142608px;}
.ws19_c00397{word-spacing:55.021716px;}
.ws31_c00397{word-spacing:55.777932px;}
.ws30_c00397{word-spacing:56.198052px;}
.ws3f_c00397{word-spacing:57.591450px;}
.ws1f_c00397{word-spacing:63.010998px;}
.ws3e_c00397{word-spacing:67.646322px;}
.ws10_c00397{word-spacing:75.824658px;}
.ws3b_c00397{word-spacing:77.365098px;}
.ws21_c00397{word-spacing:99.729486px;}
.ws2a_c00397{word-spacing:103.286502px;}
.ws16_c00397{word-spacing:108.692046px;}
.ws28_c00397{word-spacing:161.305074px;}
._3_c00397{margin-left:-42.124032px;}
._0_c00397{margin-left:-1.043298px;}
._2_c00397{width:1.232604px;}
._1_c00397{width:17.287938px;}
.fc0_c00397{color:rgb(0,0,0);}
.fs1_c00397{font-size:46.562400px;}
.fs0_c00397{font-size:70.020000px;}
.y0_c00397{bottom:0.000000px;}
.y2_c00397{bottom:109.740968px;}
.y1_c00397{bottom:129.810450px;}
.y22_c00397{bottom:173.729451px;}
.y41_c00397{bottom:183.540600px;}
.y21_c00397{bottom:203.969338px;}
.y40_c00397{bottom:213.780600px;}
.y20_c00397{bottom:234.119951px;}
.y3f_c00397{bottom:243.840450px;}
.y1f_c00397{bottom:264.359838px;}
.y3e_c00397{bottom:274.080450px;}
.y1e_c00397{bottom:294.503957px;}
.y3d_c00397{bottom:304.230450px;}
.y1d_c00397{bottom:324.743844px;}
.y3c_c00397{bottom:334.470450px;}
.y1c_c00397{bottom:354.894456px;}
.y3b_c00397{bottom:364.620450px;}
.y1b_c00397{bottom:385.134343px;}
.y3a_c00397{bottom:394.860600px;}
.y1a_c00397{bottom:415.284956px;}
.y39_c00397{bottom:425.010450px;}
.y19_c00397{bottom:445.524843px;}
.y38_c00397{bottom:455.250450px;}
.y18_c00397{bottom:475.764731px;}
.y37_c00397{bottom:485.400450px;}
.y17_c00397{bottom:505.915343px;}
.y36_c00397{bottom:515.640450px;}
.y16_c00397{bottom:536.155230px;}
.y35_c00397{bottom:545.790450px;}
.y15_c00397{bottom:566.305842px;}
.y34_c00397{bottom:576.030450px;}
.y14_c00397{bottom:596.456454px;}
.y33_c00397{bottom:606.180450px;}
.y13_c00397{bottom:626.607066px;}
.y32_c00397{bottom:636.420450px;}
.y12_c00397{bottom:656.846954px;}
.y31_c00397{bottom:666.660450px;}
.y11_c00397{bottom:686.997566px;}
.y30_c00397{bottom:696.810450px;}
.y10_c00397{bottom:717.237453px;}
.y2f_c00397{bottom:727.050450px;}
.yf_c00397{bottom:747.388065px;}
.y2e_c00397{bottom:757.200450px;}
.ye_c00397{bottom:777.627952px;}
.y2d_c00397{bottom:787.440450px;}
.yd_c00397{bottom:807.778565px;}
.y2c_c00397{bottom:817.590450px;}
.yc_c00397{bottom:838.018452px;}
.y2b_c00397{bottom:847.830450px;}
.yb_c00397{bottom:868.169064px;}
.y2a_c00397{bottom:877.980450px;}
.ya_c00397{bottom:898.408952px;}
.y29_c00397{bottom:908.220450px;}
.y9_c00397{bottom:928.559563px;}
.y28_c00397{bottom:938.370450px;}
.y8_c00397{bottom:958.799451px;}
.y27_c00397{bottom:968.610450px;}
.y7_c00397{bottom:988.950063px;}
.y26_c00397{bottom:998.760450px;}
.y6_c00397{bottom:1019.189951px;}
.y25_c00397{bottom:1049.250450px;}
.y5_c00397{bottom:1049.340563px;}
.y24_c00397{bottom:1079.580450px;}
.y4_c00397{bottom:1079.580985px;}
.y23_c00397{bottom:1109.730450px;}
.y3_c00397{bottom:1109.731597px;}
.h3_c00397{height:62.600889px;}
.h1_c00397{height:62.771836px;}
.h2_c00397{height:63.216299px;}
.h6_c00397{height:73.668786px;}
.h4_c00397{height:74.054760px;}
.h5_c00397{height:74.142464px;}
.h0_c00397{height:1263.000000px;}
.w0_c00397{width:892.500000px;}
.x0_c00397{left:0.000000px;}
.x2_c00397{left:82.710059px;}
.x3_c00397{left:138.960626px;}
.x1_c00397{left:431.730000px;}
.x4_c00397{left:454.230000px;}
@media print{
.v0_c00397{vertical-align:0.000000pt;}
.v1_c00397{vertical-align:28.823088pt;}
.ls1a_c00397{letter-spacing:-0.297999pt;}
.lsf_c00397{letter-spacing:-0.087136pt;}
.ls16_c00397{letter-spacing:-0.080912pt;}
.ls18_c00397{letter-spacing:-0.062240pt;}
.ls9_c00397{letter-spacing:-0.056016pt;}
.ls15_c00397{letter-spacing:-0.049792pt;}
.lse_c00397{letter-spacing:-0.043568pt;}
.ls11_c00397{letter-spacing:-0.037344pt;}
.ls13_c00397{letter-spacing:-0.031120pt;}
.ls14_c00397{letter-spacing:-0.024896pt;}
.ls12_c00397{letter-spacing:-0.018672pt;}
.lsd_c00397{letter-spacing:-0.012448pt;}
.ls10_c00397{letter-spacing:-0.006224pt;}
.lsa_c00397{letter-spacing:0.000000pt;}
.ls0_c00397{letter-spacing:0.006224pt;}
.ls3_c00397{letter-spacing:0.012448pt;}
.ls8_c00397{letter-spacing:0.018672pt;}
.ls6_c00397{letter-spacing:0.020694pt;}
.ls7_c00397{letter-spacing:0.024896pt;}
.ls2_c00397{letter-spacing:0.031120pt;}
.ls4_c00397{letter-spacing:0.037344pt;}
.ls5_c00397{letter-spacing:0.043568pt;}
.lsb_c00397{letter-spacing:0.087136pt;}
.ls1_c00397{letter-spacing:0.105808pt;}
.lsc_c00397{letter-spacing:0.304976pt;}
.ls17_c00397{letter-spacing:0.323648pt;}
.ls19_c00397{letter-spacing:0.497920pt;}
.ws0_c00397{word-spacing:-17.389856pt;}
.ws1_c00397{word-spacing:-17.271600pt;}
.ws3_c00397{word-spacing:-17.265376pt;}
.ws2_c00397{word-spacing:-11.526781pt;}
.ws4_c00397{word-spacing:-11.208087pt;}
.ws24_c00397{word-spacing:-0.354768pt;}
.ws23_c00397{word-spacing:-0.336096pt;}
.ws25_c00397{word-spacing:-0.317424pt;}
.ws5_c00397{word-spacing:0.000000pt;}
.wsc_c00397{word-spacing:0.024896pt;}
.ws26_c00397{word-spacing:0.043568pt;}
.wsb_c00397{word-spacing:0.311200pt;}
.ws18_c00397{word-spacing:0.342320pt;}
.ws32_c00397{word-spacing:0.977168pt;}
.ws17_c00397{word-spacing:1.587120pt;}
.ws38_c00397{word-spacing:1.910768pt;}
.ws20_c00397{word-spacing:2.234416pt;}
.ws2b_c00397{word-spacing:2.259312pt;}
.ws7_c00397{word-spacing:3.871328pt;}
.ws8_c00397{word-spacing:3.914896pt;}
.ws2c_c00397{word-spacing:4.126512pt;}
.ws2f_c00397{word-spacing:6.055952pt;}
.ws13_c00397{word-spacing:6.354704pt;}
.ws1b_c00397{word-spacing:6.715696pt;}
.ws39_c00397{word-spacing:8.128544pt;}
.ws3a_c00397{word-spacing:8.327712pt;}
.ws35_c00397{word-spacing:8.645136pt;}
.ws2e_c00397{word-spacing:8.950112pt;}
.ws14_c00397{word-spacing:8.968784pt;}
.ws22_c00397{word-spacing:9.317328pt;}
.ws1c_c00397{word-spacing:10.506112pt;}
.wsa_c00397{word-spacing:12.472896pt;}
.ws3c_c00397{word-spacing:15.074528pt;}
.ws6_c00397{word-spacing:15.678256pt;}
.ws12_c00397{word-spacing:17.259152pt;}
.ws3d_c00397{word-spacing:17.906448pt;}
.ws9_c00397{word-spacing:18.541296pt;}
.ws15_c00397{word-spacing:20.153312pt;}
.ws29_c00397{word-spacing:21.130480pt;}
.ws37_c00397{word-spacing:23.059920pt;}
.ws34_c00397{word-spacing:24.945792pt;}
.ws36_c00397{word-spacing:25.319232pt;}
.ws1e_c00397{word-spacing:26.240384pt;}
.wse_c00397{word-spacing:28.487248pt;}
.ws2d_c00397{word-spacing:30.429136pt;}
.wsd_c00397{word-spacing:37.761008pt;}
.ws1a_c00397{word-spacing:38.713280pt;}
.ws33_c00397{word-spacing:39.727792pt;}
.wsf_c00397{word-spacing:41.271344pt;}
.ws27_c00397{word-spacing:43.530656pt;}
.ws11_c00397{word-spacing:44.756784pt;}
.ws1d_c00397{word-spacing:45.460096pt;}
.ws19_c00397{word-spacing:48.908192pt;}
.ws31_c00397{word-spacing:49.580384pt;}
.ws30_c00397{word-spacing:49.953824pt;}
.ws3f_c00397{word-spacing:51.192400pt;}
.ws1f_c00397{word-spacing:56.009776pt;}
.ws3e_c00397{word-spacing:60.130064pt;}
.ws10_c00397{word-spacing:67.399696pt;}
.ws3b_c00397{word-spacing:68.768976pt;}
.ws21_c00397{word-spacing:88.648432pt;}
.ws2a_c00397{word-spacing:91.810224pt;}
.ws16_c00397{word-spacing:96.615152pt;}
.ws28_c00397{word-spacing:143.382288pt;}
._3_c00397{margin-left:-37.443584pt;}
._0_c00397{margin-left:-0.927376pt;}
._2_c00397{width:1.095648pt;}
._1_c00397{width:15.367056pt;}
.fs1_c00397{font-size:41.388800pt;}
.fs0_c00397{font-size:62.240000pt;}
.y0_c00397{bottom:0.000000pt;}
.y2_c00397{bottom:97.547527pt;}
.y1_c00397{bottom:115.387067pt;}
.y22_c00397{bottom:154.426179pt;}
.y41_c00397{bottom:163.147200pt;}
.y21_c00397{bottom:181.306079pt;}
.y40_c00397{bottom:190.027200pt;}
.y20_c00397{bottom:208.106623pt;}
.y3f_c00397{bottom:216.747067pt;}
.y1f_c00397{bottom:234.986523pt;}
.y3e_c00397{bottom:243.627067pt;}
.y1e_c00397{bottom:261.781295pt;}
.y3d_c00397{bottom:270.427067pt;}
.y1d_c00397{bottom:288.661195pt;}
.y3c_c00397{bottom:297.307067pt;}
.y1c_c00397{bottom:315.461739pt;}
.y3b_c00397{bottom:324.107067pt;}
.y1b_c00397{bottom:342.341639pt;}
.y3a_c00397{bottom:350.987200pt;}
.y1a_c00397{bottom:369.142183pt;}
.y39_c00397{bottom:377.787067pt;}
.y19_c00397{bottom:396.022083pt;}
.y38_c00397{bottom:404.667067pt;}
.y18_c00397{bottom:422.901983pt;}
.y37_c00397{bottom:431.467067pt;}
.y17_c00397{bottom:449.702527pt;}
.y36_c00397{bottom:458.347067pt;}
.y16_c00397{bottom:476.582427pt;}
.y35_c00397{bottom:485.147067pt;}
.y15_c00397{bottom:503.382971pt;}
.y34_c00397{bottom:512.027067pt;}
.y14_c00397{bottom:530.183515pt;}
.y33_c00397{bottom:538.827067pt;}
.y13_c00397{bottom:556.984059pt;}
.y32_c00397{bottom:565.707067pt;}
.y12_c00397{bottom:583.863959pt;}
.y31_c00397{bottom:592.587067pt;}
.y11_c00397{bottom:610.664503pt;}
.y30_c00397{bottom:619.387067pt;}
.y10_c00397{bottom:637.544403pt;}
.y2f_c00397{bottom:646.267067pt;}
.yf_c00397{bottom:664.344947pt;}
.y2e_c00397{bottom:673.067067pt;}
.ye_c00397{bottom:691.224847pt;}
.y2d_c00397{bottom:699.947067pt;}
.yd_c00397{bottom:718.025391pt;}
.y2c_c00397{bottom:726.747067pt;}
.yc_c00397{bottom:744.905291pt;}
.y2b_c00397{bottom:753.627067pt;}
.yb_c00397{bottom:771.705835pt;}
.y2a_c00397{bottom:780.427067pt;}
.ya_c00397{bottom:798.585735pt;}
.y29_c00397{bottom:807.307067pt;}
.y9_c00397{bottom:825.386279pt;}
.y28_c00397{bottom:834.107067pt;}
.y8_c00397{bottom:852.266179pt;}
.y27_c00397{bottom:860.987067pt;}
.y7_c00397{bottom:879.066723pt;}
.y26_c00397{bottom:887.787067pt;}
.y6_c00397{bottom:905.946623pt;}
.y25_c00397{bottom:932.667067pt;}
.y5_c00397{bottom:932.747167pt;}
.y24_c00397{bottom:959.627067pt;}
.y4_c00397{bottom:959.627543pt;}
.y23_c00397{bottom:986.427067pt;}
.y3_c00397{bottom:986.428087pt;}
.h3_c00397{height:55.645234pt;}
.h1_c00397{height:55.797187pt;}
.h2_c00397{height:56.192266pt;}
.h6_c00397{height:65.483366pt;}
.h4_c00397{height:65.826454pt;}
.h5_c00397{height:65.904413pt;}
.h0_c00397{height:1122.666667pt;}
.w0_c00397{width:793.333333pt;}
.x0_c00397{left:0.000000pt;}
.x2_c00397{left:73.520052pt;}
.x3_c00397{left:123.520556pt;}
.x1_c00397{left:383.760000pt;}
.x4_c00397{left:403.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7eae97c4a4ec09d9df984a52.woff2')format("woff");}.ff1_c00398{font-family:ff1_c00398;line-height:1.106934;font-style:normal;font-weight:normal;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_79a906790ec7ad18f7804cad.woff2')format("woff");}.ff2_c00398{font-family:ff2_c00398;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00398{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00398{vertical-align:0.000000px;}
.ls4_c00398{letter-spacing:-0.063018px;}
.ls7_c00398{letter-spacing:-0.049014px;}
.ls9_c00398{letter-spacing:-0.042012px;}
.lsd_c00398{letter-spacing:-0.035010px;}
.ls8_c00398{letter-spacing:-0.028008px;}
.lsa_c00398{letter-spacing:-0.021006px;}
.lsb_c00398{letter-spacing:-0.014004px;}
.lsc_c00398{letter-spacing:-0.007002px;}
.ls5_c00398{letter-spacing:0.000000px;}
.ls2_c00398{letter-spacing:0.014004px;}
.ls3_c00398{letter-spacing:0.063018px;}
.ls1_c00398{letter-spacing:0.070020px;}
.ls0_c00398{letter-spacing:0.077022px;}
.ls6_c00398{letter-spacing:0.490140px;}
.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:-0.504144px;}
.ws10_c00398{word-spacing:-0.028008px;}
.ws8_c00398{word-spacing:-0.007002px;}
.ws0_c00398{word-spacing:0.000000px;}
.ws7_c00398{word-spacing:0.014004px;}
.ws14_c00398{word-spacing:0.280080px;}
.wsc_c00398{word-spacing:0.735210px;}
.ws12_c00398{word-spacing:2.898828px;}
.wsb_c00398{word-spacing:6.504858px;}
.wsd_c00398{word-spacing:6.840954px;}
.wse_c00398{word-spacing:8.290368px;}
.ws13_c00398{word-spacing:11.868390px;}
.ws9_c00398{word-spacing:14.396112px;}
.ws11_c00398{word-spacing:15.859530px;}
.ws5_c00398{word-spacing:19.465560px;}
.wsa_c00398{word-spacing:22.686480px;}
.wsf_c00398{word-spacing:27.027720px;}
.ws2_c00398{word-spacing:28.477134px;}
.ws4_c00398{word-spacing:31.586022px;}
.ws3_c00398{word-spacing:39.617316px;}
.ws6_c00398{word-spacing:128.528712px;}
._0_c00398{margin-left:-1.463418px;}
._2_c00398{width:1.050300px;}
._3_c00398{width:8.283366px;}
._4_c00398{width:13.002714px;}
._1_c00398{width:300.340080px;}
.fc0_c00398{color:rgb(0,0,0);}
.fs0_c00398{font-size:70.020000px;}
.y0_c00398{bottom:0.000000px;}
.y2_c00398{bottom:109.740968px;}
.y1_c00398{bottom:129.810450px;}
.y1a_c00398{bottom:165.538034px;}
.y19_c00398{bottom:195.688646px;}
.y18_c00398{bottom:225.928533px;}
.y17_c00398{bottom:256.079145px;}
.y16_c00398{bottom:286.319032px;}
.y15_c00398{bottom:316.558920px;}
.y14_c00398{bottom:346.709532px;}
.y13_c00398{bottom:376.949419px;}
.y12_c00398{bottom:407.100032px;}
.y11_c00398{bottom:437.339919px;}
.y10_c00398{bottom:467.490531px;}
.yf_c00398{bottom:497.730419px;}
.ye_c00398{bottom:527.881030px;}
.yd_c00398{bottom:558.120918px;}
.yc_c00398{bottom:584.490450px;}
.yb_c00398{bottom:867.450562px;}
.ya_c00398{bottom:897.690450px;}
.y9_c00398{bottom:928.560450px;}
.y8_c00398{bottom:958.800450px;}
.y7_c00398{bottom:988.950450px;}
.y6_c00398{bottom:1019.190450px;}
.y5_c00398{bottom:1049.340450px;}
.y4_c00398{bottom:1079.580450px;}
.y3_c00398{bottom:1109.731597px;}
.h1_c00398{height:62.771836px;}
.h2_c00398{height:63.216299px;}
.h0_c00398{height:1263.000000px;}
.w0_c00398{width:892.500000px;}
.x0_c00398{left:0.000000px;}
.x2_c00398{left:82.710059px;}
.x3_c00398{left:138.960626px;}
.x6_c00398{left:165.240747px;}
.x5_c00398{left:283.410000px;}
.x1_c00398{left:431.730000px;}
.x4_c00398{left:454.230000px;}
.x7_c00398{left:724.140000px;}
@media print{
.v0_c00398{vertical-align:0.000000pt;}
.ls4_c00398{letter-spacing:-0.056016pt;}
.ls7_c00398{letter-spacing:-0.043568pt;}
.ls9_c00398{letter-spacing:-0.037344pt;}
.lsd_c00398{letter-spacing:-0.031120pt;}
.ls8_c00398{letter-spacing:-0.024896pt;}
.lsa_c00398{letter-spacing:-0.018672pt;}
.lsb_c00398{letter-spacing:-0.012448pt;}
.lsc_c00398{letter-spacing:-0.006224pt;}
.ls5_c00398{letter-spacing:0.000000pt;}
.ls2_c00398{letter-spacing:0.012448pt;}
.ls3_c00398{letter-spacing:0.056016pt;}
.ls1_c00398{letter-spacing:0.062240pt;}
.ls0_c00398{letter-spacing:0.068464pt;}
.ls6_c00398{letter-spacing:0.435680pt;}
.ws1_c00398{word-spacing:-0.448128pt;}
.ws10_c00398{word-spacing:-0.024896pt;}
.ws8_c00398{word-spacing:-0.006224pt;}
.ws0_c00398{word-spacing:0.000000pt;}
.ws7_c00398{word-spacing:0.012448pt;}
.ws14_c00398{word-spacing:0.248960pt;}
.wsc_c00398{word-spacing:0.653520pt;}
.ws12_c00398{word-spacing:2.576736pt;}
.wsb_c00398{word-spacing:5.782096pt;}
.wsd_c00398{word-spacing:6.080848pt;}
.wse_c00398{word-spacing:7.369216pt;}
.ws13_c00398{word-spacing:10.549680pt;}
.ws9_c00398{word-spacing:12.796544pt;}
.ws11_c00398{word-spacing:14.097360pt;}
.ws5_c00398{word-spacing:17.302720pt;}
.wsa_c00398{word-spacing:20.165760pt;}
.wsf_c00398{word-spacing:24.024640pt;}
.ws2_c00398{word-spacing:25.313008pt;}
.ws4_c00398{word-spacing:28.076464pt;}
.ws3_c00398{word-spacing:35.215392pt;}
.ws6_c00398{word-spacing:114.247744pt;}
._0_c00398{margin-left:-1.300816pt;}
._2_c00398{width:0.933600pt;}
._3_c00398{width:7.362992pt;}
._4_c00398{width:11.557968pt;}
._1_c00398{width:266.968960pt;}
.fs0_c00398{font-size:62.240000pt;}
.y0_c00398{bottom:0.000000pt;}
.y2_c00398{bottom:97.547527pt;}
.y1_c00398{bottom:115.387067pt;}
.y1a_c00398{bottom:147.144919pt;}
.y19_c00398{bottom:173.945463pt;}
.y18_c00398{bottom:200.825363pt;}
.y17_c00398{bottom:227.625907pt;}
.y16_c00398{bottom:254.505807pt;}
.y15_c00398{bottom:281.385707pt;}
.y14_c00398{bottom:308.186251pt;}
.y13_c00398{bottom:335.066151pt;}
.y12_c00398{bottom:361.866695pt;}
.y11_c00398{bottom:388.746595pt;}
.y10_c00398{bottom:415.547139pt;}
.yf_c00398{bottom:442.427039pt;}
.ye_c00398{bottom:469.227583pt;}
.yd_c00398{bottom:496.107483pt;}
.yc_c00398{bottom:519.547067pt;}
.yb_c00398{bottom:771.067167pt;}
.ya_c00398{bottom:797.947067pt;}
.y9_c00398{bottom:825.387067pt;}
.y8_c00398{bottom:852.267067pt;}
.y7_c00398{bottom:879.067067pt;}
.y6_c00398{bottom:905.947067pt;}
.y5_c00398{bottom:932.747067pt;}
.y4_c00398{bottom:959.627067pt;}
.y3_c00398{bottom:986.428087pt;}
.h1_c00398{height:55.797187pt;}
.h2_c00398{height:56.192266pt;}
.h0_c00398{height:1122.666667pt;}
.w0_c00398{width:793.333333pt;}
.x0_c00398{left:0.000000pt;}
.x2_c00398{left:73.520052pt;}
.x3_c00398{left:123.520556pt;}
.x6_c00398{left:146.880664pt;}
.x5_c00398{left:251.920000pt;}
.x1_c00398{left:383.760000pt;}
.x4_c00398{left:403.760000pt;}
.x7_c00398{left:643.680000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9ae66da5bff3bc194b230a57.woff2')format("woff");}.ff1_c00399{font-family:ff1_c00399;line-height:1.106934;font-style:normal;font-weight:normal;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_c9aeadbe964bd5216e726348.woff2')format("woff");}.ff2_c00399{font-family:ff2_c00399;line-height:1.104492;font-style:normal;font-weight:normal;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_71f4419739fd18aeb8508b0e.woff2')format("woff");}.ff3_c00399{font-family:ff3_c00399;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00399{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00399{vertical-align:0.000000px;}
.v1_c00399{vertical-align:32.411394px;}
.lsa_c00399{letter-spacing:-0.070020px;}
.ls5_c00399{letter-spacing:-0.063018px;}
.ls7_c00399{letter-spacing:-0.056016px;}
.lsc_c00399{letter-spacing:-0.035010px;}
.ls8_c00399{letter-spacing:-0.028008px;}
.ls9_c00399{letter-spacing:-0.021006px;}
.lsb_c00399{letter-spacing:-0.014004px;}
.ls6_c00399{letter-spacing:0.000000px;}
.ls2_c00399{letter-spacing:0.007002px;}
.ls1_c00399{letter-spacing:0.014004px;}
.ls4_c00399{letter-spacing:0.023281px;}
.ls3_c00399{letter-spacing:0.028008px;}
.ls0_c00399{letter-spacing:0.035010px;}
.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:-19.493568px;}
.ws1_c00399{word-spacing:-12.967628px;}
.ws2_c00399{word-spacing:0.000000px;}
.wsd_c00399{word-spacing:0.329094px;}
.ws10_c00399{word-spacing:0.364104px;}
.wsc_c00399{word-spacing:0.371106px;}
.wse_c00399{word-spacing:2.884824px;}
.wsf_c00399{word-spacing:2.898828px;}
.wsa_c00399{word-spacing:5.041440px;}
.wsb_c00399{word-spacing:5.055444px;}
.ws9_c00399{word-spacing:5.370534px;}
.ws8_c00399{word-spacing:5.713632px;}
.ws3_c00399{word-spacing:11.560302px;}
.ws5_c00399{word-spacing:12.589596px;}
.ws6_c00399{word-spacing:13.667904px;}
.ws11_c00399{word-spacing:14.088024px;}
.ws12_c00399{word-spacing:14.382108px;}
.ws4_c00399{word-spacing:20.893968px;}
.ws13_c00399{word-spacing:46.815372px;}
.ws7_c00399{word-spacing:49.014000px;}
._1_c00399{margin-left:-1.029294px;}
._0_c00399{width:1.260360px;}
.fc0_c00399{color:rgb(0,0,0);}
.fs1_c00399{font-size:46.562400px;}
.fs0_c00399{font-size:70.020000px;}
.y0_c00399{bottom:0.000000px;}
.y2_c00399{bottom:109.740968px;}
.y1_c00399{bottom:129.810450px;}
.y22_c00399{bottom:173.726342px;}
.y21_c00399{bottom:203.966229px;}
.y20_c00399{bottom:234.116841px;}
.y1f_c00399{bottom:264.356729px;}
.y1e_c00399{bottom:294.507341px;}
.y1d_c00399{bottom:324.747228px;}
.y1c_c00399{bottom:354.897840px;}
.y1b_c00399{bottom:385.137727px;}
.y1a_c00399{bottom:415.288339px;}
.y19_c00399{bottom:445.528227px;}
.y18_c00399{bottom:475.768115px;}
.y17_c00399{bottom:505.918726px;}
.y16_c00399{bottom:536.158614px;}
.y15_c00399{bottom:566.309226px;}
.y14_c00399{bottom:596.459838px;}
.y13_c00399{bottom:626.607602px;}
.y12_c00399{bottom:656.847489px;}
.y11_c00399{bottom:686.998101px;}
.y10_c00399{bottom:717.237989px;}
.yf_c00399{bottom:747.388601px;}
.ye_c00399{bottom:777.628488px;}
.yd_c00399{bottom:807.779100px;}
.yc_c00399{bottom:838.018988px;}
.yb_c00399{bottom:868.169600px;}
.ya_c00399{bottom:898.409487px;}
.y9_c00399{bottom:928.560099px;}
.y8_c00399{bottom:958.799987px;}
.y7_c00399{bottom:988.950599px;}
.y6_c00399{bottom:1019.190486px;}
.y5_c00399{bottom:1049.341098px;}
.y4_c00399{bottom:1079.580985px;}
.y3_c00399{bottom:1109.731597px;}
.h2_c00399{height:62.600889px;}
.h1_c00399{height:62.771836px;}
.h4_c00399{height:63.216299px;}
.h3_c00399{height:74.040180px;}
.h0_c00399{height:1263.000000px;}
.w0_c00399{width:892.500000px;}
.x0_c00399{left:0.000000px;}
.x2_c00399{left:82.710059px;}
.x3_c00399{left:138.960626px;}
.x1_c00399{left:431.730000px;}
.x4_c00399{left:446.310711px;}
@media print{
.v0_c00399{vertical-align:0.000000pt;}
.v1_c00399{vertical-align:28.810128pt;}
.lsa_c00399{letter-spacing:-0.062240pt;}
.ls5_c00399{letter-spacing:-0.056016pt;}
.ls7_c00399{letter-spacing:-0.049792pt;}
.lsc_c00399{letter-spacing:-0.031120pt;}
.ls8_c00399{letter-spacing:-0.024896pt;}
.ls9_c00399{letter-spacing:-0.018672pt;}
.lsb_c00399{letter-spacing:-0.012448pt;}
.ls6_c00399{letter-spacing:0.000000pt;}
.ls2_c00399{letter-spacing:0.006224pt;}
.ls1_c00399{letter-spacing:0.012448pt;}
.ls4_c00399{letter-spacing:0.020694pt;}
.ls3_c00399{letter-spacing:0.024896pt;}
.ls0_c00399{letter-spacing:0.031120pt;}
.ws0_c00399{word-spacing:-17.327616pt;}
.ws1_c00399{word-spacing:-11.526781pt;}
.ws2_c00399{word-spacing:0.000000pt;}
.wsd_c00399{word-spacing:0.292528pt;}
.ws10_c00399{word-spacing:0.323648pt;}
.wsc_c00399{word-spacing:0.329872pt;}
.wse_c00399{word-spacing:2.564288pt;}
.wsf_c00399{word-spacing:2.576736pt;}
.wsa_c00399{word-spacing:4.481280pt;}
.wsb_c00399{word-spacing:4.493728pt;}
.ws9_c00399{word-spacing:4.773808pt;}
.ws8_c00399{word-spacing:5.078784pt;}
.ws3_c00399{word-spacing:10.275824pt;}
.ws5_c00399{word-spacing:11.190752pt;}
.ws6_c00399{word-spacing:12.149248pt;}
.ws11_c00399{word-spacing:12.522688pt;}
.ws12_c00399{word-spacing:12.784096pt;}
.ws4_c00399{word-spacing:18.572416pt;}
.ws13_c00399{word-spacing:41.613664pt;}
.ws7_c00399{word-spacing:43.568000pt;}
._1_c00399{margin-left:-0.914928pt;}
._0_c00399{width:1.120320pt;}
.fs1_c00399{font-size:41.388800pt;}
.fs0_c00399{font-size:62.240000pt;}
.y0_c00399{bottom:0.000000pt;}
.y2_c00399{bottom:97.547527pt;}
.y1_c00399{bottom:115.387067pt;}
.y22_c00399{bottom:154.423415pt;}
.y21_c00399{bottom:181.303315pt;}
.y20_c00399{bottom:208.103859pt;}
.y1f_c00399{bottom:234.983759pt;}
.y1e_c00399{bottom:261.784303pt;}
.y1d_c00399{bottom:288.664203pt;}
.y1c_c00399{bottom:315.464747pt;}
.y1b_c00399{bottom:342.344647pt;}
.y1a_c00399{bottom:369.145191pt;}
.y19_c00399{bottom:396.025091pt;}
.y18_c00399{bottom:422.904991pt;}
.y17_c00399{bottom:449.705535pt;}
.y16_c00399{bottom:476.585435pt;}
.y15_c00399{bottom:503.385979pt;}
.y14_c00399{bottom:530.186523pt;}
.y13_c00399{bottom:556.984535pt;}
.y12_c00399{bottom:583.864435pt;}
.y11_c00399{bottom:610.664979pt;}
.y10_c00399{bottom:637.544879pt;}
.yf_c00399{bottom:664.345423pt;}
.ye_c00399{bottom:691.225323pt;}
.yd_c00399{bottom:718.025867pt;}
.yc_c00399{bottom:744.905767pt;}
.yb_c00399{bottom:771.706311pt;}
.ya_c00399{bottom:798.586211pt;}
.y9_c00399{bottom:825.386755pt;}
.y8_c00399{bottom:852.266655pt;}
.y7_c00399{bottom:879.067199pt;}
.y6_c00399{bottom:905.947099pt;}
.y5_c00399{bottom:932.747643pt;}
.y4_c00399{bottom:959.627543pt;}
.y3_c00399{bottom:986.428087pt;}
.h2_c00399{height:55.645234pt;}
.h1_c00399{height:55.797187pt;}
.h4_c00399{height:56.192266pt;}
.h3_c00399{height:65.813494pt;}
.h0_c00399{height:1122.666667pt;}
.w0_c00399{width:793.333333pt;}
.x0_c00399{left:0.000000pt;}
.x2_c00399{left:73.520052pt;}
.x3_c00399{left:123.520556pt;}
.x1_c00399{left:383.760000pt;}
.x4_c00399{left:396.720632pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cd5789722536e38339e71592.woff2')format("woff");}.ff1_c00400{font-family:ff1_c00400;line-height:1.106934;font-style:normal;font-weight:normal;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_e308e2bf6799694553a0c663.woff2')format("woff");}.ff2_c00400{font-family:ff2_c00400;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00400;src:url('chunks/assets/font_81f02884634e94bc881fe86f.woff2')format("woff");}.ff3_c00400{font-family:ff3_c00400;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00400{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00400{vertical-align:0.000000px;}
.v1_c00400{vertical-align:32.040600px;}
.lsc_c00400{letter-spacing:-0.335249px;}
.ls4_c00400{letter-spacing:-0.063018px;}
.ls9_c00400{letter-spacing:-0.042012px;}
.lsb_c00400{letter-spacing:-0.035010px;}
.ls6_c00400{letter-spacing:-0.028008px;}
.lsa_c00400{letter-spacing:-0.021006px;}
.ls8_c00400{letter-spacing:-0.014004px;}
.ls7_c00400{letter-spacing:-0.007002px;}
.ls5_c00400{letter-spacing:0.000000px;}
.ls3_c00400{letter-spacing:0.007002px;}
.ls2_c00400{letter-spacing:0.014004px;}
.ls1_c00400{letter-spacing:0.035010px;}
.ls0_c00400{letter-spacing:0.070020px;}
.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:-12.609098px;}
.ws13_c00400{word-spacing:-0.021006px;}
.ws3_c00400{word-spacing:-0.007002px;}
.ws1_c00400{word-spacing:0.000000px;}
.ws7_c00400{word-spacing:0.007002px;}
.ws2_c00400{word-spacing:0.014004px;}
.wsa_c00400{word-spacing:0.021006px;}
.wsd_c00400{word-spacing:0.364104px;}
.wse_c00400{word-spacing:1.029294px;}
.wsf_c00400{word-spacing:1.050300px;}
.ws12_c00400{word-spacing:2.156616px;}
.ws6_c00400{word-spacing:3.269934px;}
.wsb_c00400{word-spacing:4.327236px;}
.ws8_c00400{word-spacing:13.674906px;}
.wsc_c00400{word-spacing:14.389110px;}
.ws11_c00400{word-spacing:14.410116px;}
.ws10_c00400{word-spacing:14.774220px;}
.ws5_c00400{word-spacing:19.801656px;}
.ws9_c00400{word-spacing:20.144754px;}
.ws4_c00400{word-spacing:53.656326px;}
._3_c00400{margin-left:-1.225350px;}
._2_c00400{width:1.106316px;}
._0_c00400{width:8.283366px;}
._1_c00400{width:52.606026px;}
.fc0_c00400{color:rgb(0,0,0);}
.fs1_c00400{font-size:46.562400px;}
.fs0_c00400{font-size:70.020000px;}
.y0_c00400{bottom:0.000000px;}
.y2_c00400{bottom:109.740968px;}
.y1_c00400{bottom:129.810450px;}
.y1a_c00400{bottom:160.950600px;}
.y19_c00400{bottom:191.190450px;}
.y18_c00400{bottom:221.340450px;}
.y17_c00400{bottom:251.580450px;}
.y16_c00400{bottom:281.730450px;}
.y15_c00400{bottom:311.970450px;}
.y14_c00400{bottom:342.120450px;}
.y13_c00400{bottom:372.360450px;}
.y12_c00400{bottom:402.510450px;}
.y11_c00400{bottom:432.750600px;}
.y10_c00400{bottom:462.990450px;}
.yf_c00400{bottom:493.140450px;}
.ye_c00400{bottom:523.380450px;}
.yd_c00400{bottom:553.530450px;}
.yc_c00400{bottom:583.770450px;}
.yb_c00400{bottom:613.920450px;}
.ya_c00400{bottom:644.160450px;}
.y9_c00400{bottom:674.310450px;}
.y8_c00400{bottom:704.550450px;}
.y7_c00400{bottom:730.830450px;}
.y6_c00400{bottom:1019.190450px;}
.y5_c00400{bottom:1049.340450px;}
.y4_c00400{bottom:1079.580450px;}
.y3_c00400{bottom:1109.730450px;}
.h3_c00400{height:62.600889px;}
.h1_c00400{height:62.771836px;}
.h2_c00400{height:63.216299px;}
.h4_c00400{height:73.669386px;}
.h0_c00400{height:1263.000000px;}
.w0_c00400{width:892.500000px;}
.x0_c00400{left:0.000000px;}
.x2_c00400{left:82.710059px;}
.x3_c00400{left:138.960000px;}
.x5_c00400{left:165.240000px;}
.x4_c00400{left:338.850000px;}
.x1_c00400{left:431.730000px;}
.x6_c00400{left:717.390000px;}
@media print{
.v0_c00400{vertical-align:0.000000pt;}
.v1_c00400{vertical-align:28.480533pt;}
.lsc_c00400{letter-spacing:-0.297999pt;}
.ls4_c00400{letter-spacing:-0.056016pt;}
.ls9_c00400{letter-spacing:-0.037344pt;}
.lsb_c00400{letter-spacing:-0.031120pt;}
.ls6_c00400{letter-spacing:-0.024896pt;}
.lsa_c00400{letter-spacing:-0.018672pt;}
.ls8_c00400{letter-spacing:-0.012448pt;}
.ls7_c00400{letter-spacing:-0.006224pt;}
.ls5_c00400{letter-spacing:0.000000pt;}
.ls3_c00400{letter-spacing:0.006224pt;}
.ls2_c00400{letter-spacing:0.012448pt;}
.ls1_c00400{letter-spacing:0.031120pt;}
.ls0_c00400{letter-spacing:0.062240pt;}
.ws0_c00400{word-spacing:-11.208087pt;}
.ws13_c00400{word-spacing:-0.018672pt;}
.ws3_c00400{word-spacing:-0.006224pt;}
.ws1_c00400{word-spacing:0.000000pt;}
.ws7_c00400{word-spacing:0.006224pt;}
.ws2_c00400{word-spacing:0.012448pt;}
.wsa_c00400{word-spacing:0.018672pt;}
.wsd_c00400{word-spacing:0.323648pt;}
.wse_c00400{word-spacing:0.914928pt;}
.wsf_c00400{word-spacing:0.933600pt;}
.ws12_c00400{word-spacing:1.916992pt;}
.ws6_c00400{word-spacing:2.906608pt;}
.wsb_c00400{word-spacing:3.846432pt;}
.ws8_c00400{word-spacing:12.155472pt;}
.wsc_c00400{word-spacing:12.790320pt;}
.ws11_c00400{word-spacing:12.808992pt;}
.ws10_c00400{word-spacing:13.132640pt;}
.ws5_c00400{word-spacing:17.601472pt;}
.ws9_c00400{word-spacing:17.906448pt;}
.ws4_c00400{word-spacing:47.694512pt;}
._3_c00400{margin-left:-1.089200pt;}
._2_c00400{width:0.983392pt;}
._0_c00400{width:7.362992pt;}
._1_c00400{width:46.760912pt;}
.fs1_c00400{font-size:41.388800pt;}
.fs0_c00400{font-size:62.240000pt;}
.y0_c00400{bottom:0.000000pt;}
.y2_c00400{bottom:97.547527pt;}
.y1_c00400{bottom:115.387067pt;}
.y1a_c00400{bottom:143.067200pt;}
.y19_c00400{bottom:169.947067pt;}
.y18_c00400{bottom:196.747067pt;}
.y17_c00400{bottom:223.627067pt;}
.y16_c00400{bottom:250.427067pt;}
.y15_c00400{bottom:277.307067pt;}
.y14_c00400{bottom:304.107067pt;}
.y13_c00400{bottom:330.987067pt;}
.y12_c00400{bottom:357.787067pt;}
.y11_c00400{bottom:384.667200pt;}
.y10_c00400{bottom:411.547067pt;}
.yf_c00400{bottom:438.347067pt;}
.ye_c00400{bottom:465.227067pt;}
.yd_c00400{bottom:492.027067pt;}
.yc_c00400{bottom:518.907067pt;}
.yb_c00400{bottom:545.707067pt;}
.ya_c00400{bottom:572.587067pt;}
.y9_c00400{bottom:599.387067pt;}
.y8_c00400{bottom:626.267067pt;}
.y7_c00400{bottom:649.627067pt;}
.y6_c00400{bottom:905.947067pt;}
.y5_c00400{bottom:932.747067pt;}
.y4_c00400{bottom:959.627067pt;}
.y3_c00400{bottom:986.427067pt;}
.h3_c00400{height:55.645234pt;}
.h1_c00400{height:55.797187pt;}
.h2_c00400{height:56.192266pt;}
.h4_c00400{height:65.483899pt;}
.h0_c00400{height:1122.666667pt;}
.w0_c00400{width:793.333333pt;}
.x0_c00400{left:0.000000pt;}
.x2_c00400{left:73.520052pt;}
.x3_c00400{left:123.520000pt;}
.x5_c00400{left:146.880000pt;}
.x4_c00400{left:301.200000pt;}
.x1_c00400{left:383.760000pt;}
.x6_c00400{left:637.680000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6351c87575ce4f39ada7329a.woff2')format("woff");}.ff1_c00401{font-family:ff1_c00401;line-height:1.106934;font-style:normal;font-weight:normal;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_154ec8c217f12dda290d3e66.woff2')format("woff");}.ff2_c00401{font-family:ff2_c00401;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00401{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00401{vertical-align:0.000000px;}
.v1_c00401{vertical-align:32.040000px;}
.ls4_c00401{letter-spacing:-0.063018px;}
.lsc_c00401{letter-spacing:-0.056016px;}
.ls9_c00401{letter-spacing:-0.042012px;}
.lsb_c00401{letter-spacing:-0.035010px;}
.ls6_c00401{letter-spacing:-0.028008px;}
.ls8_c00401{letter-spacing:-0.021006px;}
.lsa_c00401{letter-spacing:-0.014004px;}
.ls7_c00401{letter-spacing:-0.007002px;}
.ls5_c00401{letter-spacing:0.000000px;}
.ls0_c00401{letter-spacing:0.007002px;}
.ls1_c00401{letter-spacing:0.014004px;}
.ls3_c00401{letter-spacing:0.023281px;}
.ls2_c00401{letter-spacing:0.049014px;}
.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:-12.967628px;}
.ws21_c00401{word-spacing:-0.063018px;}
.ws1_c00401{word-spacing:0.000000px;}
.wsa_c00401{word-spacing:0.021006px;}
.ws3_c00401{word-spacing:1.092312px;}
.ws13_c00401{word-spacing:1.435410px;}
.wsd_c00401{word-spacing:1.442412px;}
.ws11_c00401{word-spacing:1.771506px;}
.wsb_c00401{word-spacing:2.135610px;}
.ws1a_c00401{word-spacing:2.170620px;}
.ws9_c00401{word-spacing:2.520720px;}
.ws16_c00401{word-spacing:2.870820px;}
.ws15_c00401{word-spacing:2.884824px;}
.ws12_c00401{word-spacing:3.241926px;}
.wse_c00401{word-spacing:3.599028px;}
.ws1d_c00401{word-spacing:3.949128px;}
.ws1e_c00401{word-spacing:3.991140px;}
.ws7_c00401{word-spacing:4.327236px;}
.ws5_c00401{word-spacing:4.670334px;}
.ws19_c00401{word-spacing:5.027436px;}
.wsc_c00401{word-spacing:5.755644px;}
.ws1b_c00401{word-spacing:6.490854px;}
.ws2_c00401{word-spacing:7.898256px;}
.ws10_c00401{word-spacing:7.961274px;}
.ws20_c00401{word-spacing:8.269362px;}
.ws1f_c00401{word-spacing:8.283366px;}
.ws8_c00401{word-spacing:11.546298px;}
.ws14_c00401{word-spacing:14.774220px;}
.ws1c_c00401{word-spacing:22.672476px;}
.ws18_c00401{word-spacing:23.043582px;}
.ws6_c00401{word-spacing:27.727920px;}
.ws4_c00401{word-spacing:34.190766px;}
.ws17_c00401{word-spacing:35.983278px;}
.wsf_c00401{word-spacing:47.144466px;}
._1_c00401{margin-left:-1.176336px;}
._0_c00401{width:1.064304px;}
.fc0_c00401{color:rgb(0,0,0);}
.fs1_c00401{font-size:46.562400px;}
.fs0_c00401{font-size:70.020000px;}
.y0_c00401{bottom:0.000000px;}
.y2_c00401{bottom:109.740968px;}
.y1_c00401{bottom:129.810450px;}
.y22_c00401{bottom:173.730450px;}
.y21_c00401{bottom:203.970450px;}
.y20_c00401{bottom:234.120600px;}
.y1f_c00401{bottom:264.360450px;}
.y1e_c00401{bottom:294.510450px;}
.y1d_c00401{bottom:324.750600px;}
.y1c_c00401{bottom:354.900450px;}
.y1b_c00401{bottom:385.140450px;}
.y1a_c00401{bottom:415.290600px;}
.y19_c00401{bottom:445.530600px;}
.y18_c00401{bottom:475.770600px;}
.y17_c00401{bottom:505.920450px;}
.y16_c00401{bottom:536.160450px;}
.y15_c00401{bottom:566.310450px;}
.y14_c00401{bottom:596.460450px;}
.y13_c00401{bottom:626.610450px;}
.y12_c00401{bottom:656.850450px;}
.y11_c00401{bottom:687.000450px;}
.y10_c00401{bottom:717.240450px;}
.yf_c00401{bottom:747.390450px;}
.ye_c00401{bottom:777.630450px;}
.yd_c00401{bottom:807.780450px;}
.yc_c00401{bottom:838.020450px;}
.yb_c00401{bottom:868.170450px;}
.ya_c00401{bottom:898.410450px;}
.y9_c00401{bottom:928.560450px;}
.y8_c00401{bottom:958.800450px;}
.y7_c00401{bottom:988.950450px;}
.y6_c00401{bottom:1019.190450px;}
.y5_c00401{bottom:1049.340450px;}
.y4_c00401{bottom:1079.580450px;}
.y3_c00401{bottom:1109.730450px;}
.h2_c00401{height:62.600889px;}
.h1_c00401{height:62.771836px;}
.h3_c00401{height:73.668786px;}
.h0_c00401{height:1263.000000px;}
.w0_c00401{width:892.500000px;}
.x0_c00401{left:0.000000px;}
.x2_c00401{left:82.710059px;}
.x3_c00401{left:138.960000px;}
.x1_c00401{left:431.730000px;}
@media print{
.v0_c00401{vertical-align:0.000000pt;}
.v1_c00401{vertical-align:28.480000pt;}
.ls4_c00401{letter-spacing:-0.056016pt;}
.lsc_c00401{letter-spacing:-0.049792pt;}
.ls9_c00401{letter-spacing:-0.037344pt;}
.lsb_c00401{letter-spacing:-0.031120pt;}
.ls6_c00401{letter-spacing:-0.024896pt;}
.ls8_c00401{letter-spacing:-0.018672pt;}
.lsa_c00401{letter-spacing:-0.012448pt;}
.ls7_c00401{letter-spacing:-0.006224pt;}
.ls5_c00401{letter-spacing:0.000000pt;}
.ls0_c00401{letter-spacing:0.006224pt;}
.ls1_c00401{letter-spacing:0.012448pt;}
.ls3_c00401{letter-spacing:0.020694pt;}
.ls2_c00401{letter-spacing:0.043568pt;}
.ws0_c00401{word-spacing:-11.526781pt;}
.ws21_c00401{word-spacing:-0.056016pt;}
.ws1_c00401{word-spacing:0.000000pt;}
.wsa_c00401{word-spacing:0.018672pt;}
.ws3_c00401{word-spacing:0.970944pt;}
.ws13_c00401{word-spacing:1.275920pt;}
.wsd_c00401{word-spacing:1.282144pt;}
.ws11_c00401{word-spacing:1.574672pt;}
.wsb_c00401{word-spacing:1.898320pt;}
.ws1a_c00401{word-spacing:1.929440pt;}
.ws9_c00401{word-spacing:2.240640pt;}
.ws16_c00401{word-spacing:2.551840pt;}
.ws15_c00401{word-spacing:2.564288pt;}
.ws12_c00401{word-spacing:2.881712pt;}
.wse_c00401{word-spacing:3.199136pt;}
.ws1d_c00401{word-spacing:3.510336pt;}
.ws1e_c00401{word-spacing:3.547680pt;}
.ws7_c00401{word-spacing:3.846432pt;}
.ws5_c00401{word-spacing:4.151408pt;}
.ws19_c00401{word-spacing:4.468832pt;}
.wsc_c00401{word-spacing:5.116128pt;}
.ws1b_c00401{word-spacing:5.769648pt;}
.ws2_c00401{word-spacing:7.020672pt;}
.ws10_c00401{word-spacing:7.076688pt;}
.ws20_c00401{word-spacing:7.350544pt;}
.ws1f_c00401{word-spacing:7.362992pt;}
.ws8_c00401{word-spacing:10.263376pt;}
.ws14_c00401{word-spacing:13.132640pt;}
.ws1c_c00401{word-spacing:20.153312pt;}
.ws18_c00401{word-spacing:20.483184pt;}
.ws6_c00401{word-spacing:24.647040pt;}
.ws4_c00401{word-spacing:30.391792pt;}
.ws17_c00401{word-spacing:31.985136pt;}
.wsf_c00401{word-spacing:41.906192pt;}
._1_c00401{margin-left:-1.045632pt;}
._0_c00401{width:0.946048pt;}
.fs1_c00401{font-size:41.388800pt;}
.fs0_c00401{font-size:62.240000pt;}
.y0_c00401{bottom:0.000000pt;}
.y2_c00401{bottom:97.547527pt;}
.y1_c00401{bottom:115.387067pt;}
.y22_c00401{bottom:154.427067pt;}
.y21_c00401{bottom:181.307067pt;}
.y20_c00401{bottom:208.107200pt;}
.y1f_c00401{bottom:234.987067pt;}
.y1e_c00401{bottom:261.787067pt;}
.y1d_c00401{bottom:288.667200pt;}
.y1c_c00401{bottom:315.467067pt;}
.y1b_c00401{bottom:342.347067pt;}
.y1a_c00401{bottom:369.147200pt;}
.y19_c00401{bottom:396.027200pt;}
.y18_c00401{bottom:422.907200pt;}
.y17_c00401{bottom:449.707067pt;}
.y16_c00401{bottom:476.587067pt;}
.y15_c00401{bottom:503.387067pt;}
.y14_c00401{bottom:530.187067pt;}
.y13_c00401{bottom:556.987067pt;}
.y12_c00401{bottom:583.867067pt;}
.y11_c00401{bottom:610.667067pt;}
.y10_c00401{bottom:637.547067pt;}
.yf_c00401{bottom:664.347067pt;}
.ye_c00401{bottom:691.227067pt;}
.yd_c00401{bottom:718.027067pt;}
.yc_c00401{bottom:744.907067pt;}
.yb_c00401{bottom:771.707067pt;}
.ya_c00401{bottom:798.587067pt;}
.y9_c00401{bottom:825.387067pt;}
.y8_c00401{bottom:852.267067pt;}
.y7_c00401{bottom:879.067067pt;}
.y6_c00401{bottom:905.947067pt;}
.y5_c00401{bottom:932.747067pt;}
.y4_c00401{bottom:959.627067pt;}
.y3_c00401{bottom:986.427067pt;}
.h2_c00401{height:55.645234pt;}
.h1_c00401{height:55.797187pt;}
.h3_c00401{height:65.483366pt;}
.h0_c00401{height:1122.666667pt;}
.w0_c00401{width:793.333333pt;}
.x0_c00401{left:0.000000pt;}
.x2_c00401{left:73.520052pt;}
.x3_c00401{left:123.520000pt;}
.x1_c00401{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_39687d49a3fbe18e997db474.woff2')format("woff");}.ff1_c00402{font-family:ff1_c00402;line-height:1.106934;font-style:normal;font-weight:normal;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_1d9be609f2ccbb22998a83ad.woff2')format("woff");}.ff2_c00402{font-family:ff2_c00402;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00402{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00402{vertical-align:0.000000px;}
.v1_c00402{vertical-align:32.040600px;}
.lsf_c00402{letter-spacing:-0.335249px;}
.lse_c00402{letter-spacing:-0.070020px;}
.ls6_c00402{letter-spacing:-0.063018px;}
.lsd_c00402{letter-spacing:-0.056016px;}
.lsa_c00402{letter-spacing:-0.049014px;}
.ls9_c00402{letter-spacing:-0.028008px;}
.lsb_c00402{letter-spacing:-0.021006px;}
.lsc_c00402{letter-spacing:-0.014004px;}
.ls8_c00402{letter-spacing:-0.007002px;}
.ls7_c00402{letter-spacing:0.000000px;}
.ls2_c00402{letter-spacing:0.007002px;}
.ls3_c00402{letter-spacing:0.014004px;}
.ls1_c00402{letter-spacing:0.021006px;}
.ls4_c00402{letter-spacing:0.023281px;}
.ls0_c00402{letter-spacing:0.042012px;}
.ls5_c00402{letter-spacing:0.098028px;}
.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:-12.967628px;}
.ws1_c00402{word-spacing:-12.609098px;}
.wsc_c00402{word-spacing:-0.035010px;}
.ws16_c00402{word-spacing:-0.007002px;}
.ws2_c00402{word-spacing:0.000000px;}
.wsb_c00402{word-spacing:0.007002px;}
.ws8_c00402{word-spacing:0.364104px;}
.ws1b_c00402{word-spacing:0.413118px;}
.wse_c00402{word-spacing:1.778508px;}
.wsd_c00402{word-spacing:3.227922px;}
.ws12_c00402{word-spacing:3.248928px;}
.ws4_c00402{word-spacing:3.255930px;}
.ws19_c00402{word-spacing:5.020434px;}
.ws1a_c00402{word-spacing:5.083452px;}
.ws11_c00402{word-spacing:5.748642px;}
.wsa_c00402{word-spacing:5.762646px;}
.ws3_c00402{word-spacing:6.112746px;}
.ws7_c00402{word-spacing:6.833952px;}
.ws5_c00402{word-spacing:6.875964px;}
.ws10_c00402{word-spacing:7.912260px;}
.ws18_c00402{word-spacing:8.885538px;}
.ws17_c00402{word-spacing:9.046584px;}
.ws15_c00402{word-spacing:9.718776px;}
.ws13_c00402{word-spacing:12.610602px;}
.ws1e_c00402{word-spacing:12.939696px;}
.ws1d_c00402{word-spacing:12.967704px;}
.ws9_c00402{word-spacing:15.110316px;}
.ws1f_c00402{word-spacing:20.529864px;}
.wsf_c00402{word-spacing:20.851956px;}
.ws6_c00402{word-spacing:23.344668px;}
.ws14_c00402{word-spacing:23.393682px;}
.ws1c_c00402{word-spacing:47.172474px;}
._1_c00402{margin-left:-1.218348px;}
._0_c00402{width:1.057302px;}
.fc0_c00402{color:rgb(0,0,0);}
.fs1_c00402{font-size:46.562400px;}
.fs0_c00402{font-size:70.020000px;}
.y0_c00402{bottom:0.000000px;}
.y2_c00402{bottom:109.740968px;}
.y1_c00402{bottom:129.810450px;}
.y22_c00402{bottom:173.730450px;}
.y21_c00402{bottom:203.970450px;}
.y20_c00402{bottom:234.120600px;}
.y1f_c00402{bottom:264.360450px;}
.y1e_c00402{bottom:294.510450px;}
.y1d_c00402{bottom:324.750600px;}
.y1c_c00402{bottom:354.900450px;}
.y1b_c00402{bottom:385.140450px;}
.y1a_c00402{bottom:415.290600px;}
.y19_c00402{bottom:445.530600px;}
.y18_c00402{bottom:475.770600px;}
.y17_c00402{bottom:505.920450px;}
.y16_c00402{bottom:536.160450px;}
.y15_c00402{bottom:566.310450px;}
.y14_c00402{bottom:596.460450px;}
.y13_c00402{bottom:626.610450px;}
.y12_c00402{bottom:656.850450px;}
.y11_c00402{bottom:687.000450px;}
.y10_c00402{bottom:717.240450px;}
.yf_c00402{bottom:747.390450px;}
.ye_c00402{bottom:777.630450px;}
.yd_c00402{bottom:807.780450px;}
.yc_c00402{bottom:838.020450px;}
.yb_c00402{bottom:868.170450px;}
.ya_c00402{bottom:898.410450px;}
.y9_c00402{bottom:928.560450px;}
.y8_c00402{bottom:958.800450px;}
.y7_c00402{bottom:988.950450px;}
.y6_c00402{bottom:1019.190450px;}
.y5_c00402{bottom:1049.340450px;}
.y4_c00402{bottom:1079.580450px;}
.y3_c00402{bottom:1109.730450px;}
.h2_c00402{height:62.600889px;}
.h1_c00402{height:62.771836px;}
.h5_c00402{height:73.668786px;}
.h3_c00402{height:73.669386px;}
.h4_c00402{height:74.029386px;}
.h0_c00402{height:1263.000000px;}
.w0_c00402{width:892.500000px;}
.x0_c00402{left:0.000000px;}
.x2_c00402{left:82.710059px;}
.x3_c00402{left:138.960000px;}
.x1_c00402{left:431.730000px;}
@media print{
.v0_c00402{vertical-align:0.000000pt;}
.v1_c00402{vertical-align:28.480533pt;}
.lsf_c00402{letter-spacing:-0.297999pt;}
.lse_c00402{letter-spacing:-0.062240pt;}
.ls6_c00402{letter-spacing:-0.056016pt;}
.lsd_c00402{letter-spacing:-0.049792pt;}
.lsa_c00402{letter-spacing:-0.043568pt;}
.ls9_c00402{letter-spacing:-0.024896pt;}
.lsb_c00402{letter-spacing:-0.018672pt;}
.lsc_c00402{letter-spacing:-0.012448pt;}
.ls8_c00402{letter-spacing:-0.006224pt;}
.ls7_c00402{letter-spacing:0.000000pt;}
.ls2_c00402{letter-spacing:0.006224pt;}
.ls3_c00402{letter-spacing:0.012448pt;}
.ls1_c00402{letter-spacing:0.018672pt;}
.ls4_c00402{letter-spacing:0.020694pt;}
.ls0_c00402{letter-spacing:0.037344pt;}
.ls5_c00402{letter-spacing:0.087136pt;}
.ws0_c00402{word-spacing:-11.526781pt;}
.ws1_c00402{word-spacing:-11.208087pt;}
.wsc_c00402{word-spacing:-0.031120pt;}
.ws16_c00402{word-spacing:-0.006224pt;}
.ws2_c00402{word-spacing:0.000000pt;}
.wsb_c00402{word-spacing:0.006224pt;}
.ws8_c00402{word-spacing:0.323648pt;}
.ws1b_c00402{word-spacing:0.367216pt;}
.wse_c00402{word-spacing:1.580896pt;}
.wsd_c00402{word-spacing:2.869264pt;}
.ws12_c00402{word-spacing:2.887936pt;}
.ws4_c00402{word-spacing:2.894160pt;}
.ws19_c00402{word-spacing:4.462608pt;}
.ws1a_c00402{word-spacing:4.518624pt;}
.ws11_c00402{word-spacing:5.109904pt;}
.wsa_c00402{word-spacing:5.122352pt;}
.ws3_c00402{word-spacing:5.433552pt;}
.ws7_c00402{word-spacing:6.074624pt;}
.ws5_c00402{word-spacing:6.111968pt;}
.ws10_c00402{word-spacing:7.033120pt;}
.ws18_c00402{word-spacing:7.898256pt;}
.ws17_c00402{word-spacing:8.041408pt;}
.ws15_c00402{word-spacing:8.638912pt;}
.ws13_c00402{word-spacing:11.209424pt;}
.ws1e_c00402{word-spacing:11.501952pt;}
.ws1d_c00402{word-spacing:11.526848pt;}
.ws9_c00402{word-spacing:13.431392pt;}
.ws1f_c00402{word-spacing:18.248768pt;}
.wsf_c00402{word-spacing:18.535072pt;}
.ws6_c00402{word-spacing:20.750816pt;}
.ws14_c00402{word-spacing:20.794384pt;}
.ws1c_c00402{word-spacing:41.931088pt;}
._1_c00402{margin-left:-1.082976pt;}
._0_c00402{width:0.939824pt;}
.fs1_c00402{font-size:41.388800pt;}
.fs0_c00402{font-size:62.240000pt;}
.y0_c00402{bottom:0.000000pt;}
.y2_c00402{bottom:97.547527pt;}
.y1_c00402{bottom:115.387067pt;}
.y22_c00402{bottom:154.427067pt;}
.y21_c00402{bottom:181.307067pt;}
.y20_c00402{bottom:208.107200pt;}
.y1f_c00402{bottom:234.987067pt;}
.y1e_c00402{bottom:261.787067pt;}
.y1d_c00402{bottom:288.667200pt;}
.y1c_c00402{bottom:315.467067pt;}
.y1b_c00402{bottom:342.347067pt;}
.y1a_c00402{bottom:369.147200pt;}
.y19_c00402{bottom:396.027200pt;}
.y18_c00402{bottom:422.907200pt;}
.y17_c00402{bottom:449.707067pt;}
.y16_c00402{bottom:476.587067pt;}
.y15_c00402{bottom:503.387067pt;}
.y14_c00402{bottom:530.187067pt;}
.y13_c00402{bottom:556.987067pt;}
.y12_c00402{bottom:583.867067pt;}
.y11_c00402{bottom:610.667067pt;}
.y10_c00402{bottom:637.547067pt;}
.yf_c00402{bottom:664.347067pt;}
.ye_c00402{bottom:691.227067pt;}
.yd_c00402{bottom:718.027067pt;}
.yc_c00402{bottom:744.907067pt;}
.yb_c00402{bottom:771.707067pt;}
.ya_c00402{bottom:798.587067pt;}
.y9_c00402{bottom:825.387067pt;}
.y8_c00402{bottom:852.267067pt;}
.y7_c00402{bottom:879.067067pt;}
.y6_c00402{bottom:905.947067pt;}
.y5_c00402{bottom:932.747067pt;}
.y4_c00402{bottom:959.627067pt;}
.y3_c00402{bottom:986.427067pt;}
.h2_c00402{height:55.645234pt;}
.h1_c00402{height:55.797187pt;}
.h5_c00402{height:65.483366pt;}
.h3_c00402{height:65.483899pt;}
.h4_c00402{height:65.803899pt;}
.h0_c00402{height:1122.666667pt;}
.w0_c00402{width:793.333333pt;}
.x0_c00402{left:0.000000pt;}
.x2_c00402{left:73.520052pt;}
.x3_c00402{left:123.520000pt;}
.x1_c00402{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_094cde437485354d0cd2397c.woff2')format("woff");}.ff1_c00403{font-family:ff1_c00403;line-height:1.106934;font-style:normal;font-weight:normal;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_6b67462850135a621c83362b.woff2')format("woff");}.ff2_c00403{font-family:ff2_c00403;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00403{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00403{vertical-align:0.000000px;}
.v1_c00403{vertical-align:32.040000px;}
.ls12_c00403{letter-spacing:-0.420120px;}
.ls14_c00403{letter-spacing:-0.335249px;}
.ls11_c00403{letter-spacing:-0.070020px;}
.ls7_c00403{letter-spacing:-0.063018px;}
.ls13_c00403{letter-spacing:-0.056016px;}
.lsf_c00403{letter-spacing:-0.042012px;}
.lse_c00403{letter-spacing:-0.035010px;}
.lsa_c00403{letter-spacing:-0.028008px;}
.lsd_c00403{letter-spacing:-0.021006px;}
.ls9_c00403{letter-spacing:-0.014004px;}
.ls10_c00403{letter-spacing:-0.007002px;}
.ls8_c00403{letter-spacing:0.000000px;}
.ls1_c00403{letter-spacing:0.007002px;}
.ls4_c00403{letter-spacing:0.014004px;}
.ls0_c00403{letter-spacing:0.021006px;}
.ls3_c00403{letter-spacing:0.023281px;}
.ls2_c00403{letter-spacing:0.028008px;}
.ls6_c00403{letter-spacing:0.042012px;}
.lsc_c00403{letter-spacing:0.343098px;}
.lsb_c00403{letter-spacing:0.490140px;}
.ls5_c00403{letter-spacing:3.212388px;}
.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;}
}
.ws1_c00403{word-spacing:-19.045440px;}
.ws0_c00403{word-spacing:-12.967628px;}
.ws2_c00403{word-spacing:-12.609098px;}
.ws3_c00403{word-spacing:0.000000px;}
.ws23_c00403{word-spacing:0.014004px;}
.wse_c00403{word-spacing:0.364104px;}
.ws14_c00403{word-spacing:0.385110px;}
.ws1c_c00403{word-spacing:3.213918px;}
.ws8_c00403{word-spacing:3.928122px;}
.ws15_c00403{word-spacing:3.935124px;}
.ws6_c00403{word-spacing:3.949128px;}
.ws7_c00403{word-spacing:3.963132px;}
.ws10_c00403{word-spacing:4.656330px;}
.wsd_c00403{word-spacing:5.384538px;}
.wsc_c00403{word-spacing:5.405544px;}
.ws1f_c00403{word-spacing:5.440554px;}
.ws1b_c00403{word-spacing:7.163046px;}
.ws19_c00403{word-spacing:7.177050px;}
.ws1a_c00403{word-spacing:7.191054px;}
.ws16_c00403{word-spacing:8.983566px;}
.ws4_c00403{word-spacing:9.361674px;}
.ws22_c00403{word-spacing:9.739782px;}
.ws5_c00403{word-spacing:10.096884px;}
.ws20_c00403{word-spacing:11.861388px;}
.ws21_c00403{word-spacing:11.910402px;}
.ws17_c00403{word-spacing:16.888824px;}
.ws18_c00403{word-spacing:16.902828px;}
.wsb_c00403{word-spacing:18.002142px;}
.ws12_c00403{word-spacing:18.681336px;}
.ws11_c00403{word-spacing:18.744354px;}
.ws1e_c00403{word-spacing:23.008572px;}
.ws1d_c00403{word-spacing:23.050584px;}
.ws13_c00403{word-spacing:24.843096px;}
.wsa_c00403{word-spacing:25.186194px;}
.ws9_c00403{word-spacing:25.214202px;}
.wsf_c00403{word-spacing:44.259642px;}
._1_c00403{margin-left:-1.477422px;}
._0_c00403{width:1.029294px;}
.fc0_c00403{color:rgb(0,0,0);}
.fs1_c00403{font-size:46.562400px;}
.fs0_c00403{font-size:70.020000px;}
.y0_c00403{bottom:0.000000px;}
.y2_c00403{bottom:109.740968px;}
.y1_c00403{bottom:129.810450px;}
.y23_c00403{bottom:152.849442px;}
.y22_c00403{bottom:183.000054px;}
.y21_c00403{bottom:213.239942px;}
.y20_c00403{bottom:233.400450px;}
.y1f_c00403{bottom:264.360450px;}
.y1e_c00403{bottom:294.510450px;}
.y1d_c00403{bottom:324.750600px;}
.y1c_c00403{bottom:354.900450px;}
.y1b_c00403{bottom:385.140450px;}
.y1a_c00403{bottom:415.290600px;}
.y19_c00403{bottom:445.530600px;}
.y18_c00403{bottom:475.770600px;}
.y17_c00403{bottom:505.920450px;}
.y16_c00403{bottom:536.160450px;}
.y15_c00403{bottom:566.310450px;}
.y14_c00403{bottom:596.460450px;}
.y13_c00403{bottom:626.610450px;}
.y12_c00403{bottom:656.850450px;}
.y11_c00403{bottom:687.000450px;}
.y10_c00403{bottom:717.240450px;}
.yf_c00403{bottom:747.390450px;}
.ye_c00403{bottom:777.630450px;}
.yd_c00403{bottom:807.780450px;}
.yc_c00403{bottom:838.020450px;}
.yb_c00403{bottom:868.170450px;}
.ya_c00403{bottom:898.410450px;}
.y9_c00403{bottom:928.560450px;}
.y8_c00403{bottom:958.800450px;}
.y7_c00403{bottom:988.950450px;}
.y6_c00403{bottom:1019.190450px;}
.y5_c00403{bottom:1049.340450px;}
.y4_c00403{bottom:1079.580450px;}
.y3_c00403{bottom:1109.730450px;}
.h2_c00403{height:62.600889px;}
.h1_c00403{height:62.771836px;}
.h3_c00403{height:73.668786px;}
.h5_c00403{height:73.781864px;}
.h4_c00403{height:73.782464px;}
.h0_c00403{height:1263.000000px;}
.w0_c00403{width:892.500000px;}
.x0_c00403{left:0.000000px;}
.x2_c00403{left:82.710059px;}
.x3_c00403{left:138.960000px;}
.x4_c00403{left:339.750000px;}
.x1_c00403{left:431.730000px;}
@media print{
.v0_c00403{vertical-align:0.000000pt;}
.v1_c00403{vertical-align:28.480000pt;}
.ls12_c00403{letter-spacing:-0.373440pt;}
.ls14_c00403{letter-spacing:-0.297999pt;}
.ls11_c00403{letter-spacing:-0.062240pt;}
.ls7_c00403{letter-spacing:-0.056016pt;}
.ls13_c00403{letter-spacing:-0.049792pt;}
.lsf_c00403{letter-spacing:-0.037344pt;}
.lse_c00403{letter-spacing:-0.031120pt;}
.lsa_c00403{letter-spacing:-0.024896pt;}
.lsd_c00403{letter-spacing:-0.018672pt;}
.ls9_c00403{letter-spacing:-0.012448pt;}
.ls10_c00403{letter-spacing:-0.006224pt;}
.ls8_c00403{letter-spacing:0.000000pt;}
.ls1_c00403{letter-spacing:0.006224pt;}
.ls4_c00403{letter-spacing:0.012448pt;}
.ls0_c00403{letter-spacing:0.018672pt;}
.ls3_c00403{letter-spacing:0.020694pt;}
.ls2_c00403{letter-spacing:0.024896pt;}
.ls6_c00403{letter-spacing:0.037344pt;}
.lsc_c00403{letter-spacing:0.304976pt;}
.lsb_c00403{letter-spacing:0.435680pt;}
.ls5_c00403{letter-spacing:2.855456pt;}
.ws1_c00403{word-spacing:-16.929280pt;}
.ws0_c00403{word-spacing:-11.526781pt;}
.ws2_c00403{word-spacing:-11.208087pt;}
.ws3_c00403{word-spacing:0.000000pt;}
.ws23_c00403{word-spacing:0.012448pt;}
.wse_c00403{word-spacing:0.323648pt;}
.ws14_c00403{word-spacing:0.342320pt;}
.ws1c_c00403{word-spacing:2.856816pt;}
.ws8_c00403{word-spacing:3.491664pt;}
.ws15_c00403{word-spacing:3.497888pt;}
.ws6_c00403{word-spacing:3.510336pt;}
.ws7_c00403{word-spacing:3.522784pt;}
.ws10_c00403{word-spacing:4.138960pt;}
.wsd_c00403{word-spacing:4.786256pt;}
.wsc_c00403{word-spacing:4.804928pt;}
.ws1f_c00403{word-spacing:4.836048pt;}
.ws1b_c00403{word-spacing:6.367152pt;}
.ws19_c00403{word-spacing:6.379600pt;}
.ws1a_c00403{word-spacing:6.392048pt;}
.ws16_c00403{word-spacing:7.985392pt;}
.ws4_c00403{word-spacing:8.321488pt;}
.ws22_c00403{word-spacing:8.657584pt;}
.ws5_c00403{word-spacing:8.975008pt;}
.ws20_c00403{word-spacing:10.543456pt;}
.ws21_c00403{word-spacing:10.587024pt;}
.ws17_c00403{word-spacing:15.012288pt;}
.ws18_c00403{word-spacing:15.024736pt;}
.wsb_c00403{word-spacing:16.001904pt;}
.ws12_c00403{word-spacing:16.605632pt;}
.ws11_c00403{word-spacing:16.661648pt;}
.ws1e_c00403{word-spacing:20.452064pt;}
.ws1d_c00403{word-spacing:20.489408pt;}
.ws13_c00403{word-spacing:22.082752pt;}
.wsa_c00403{word-spacing:22.387728pt;}
.ws9_c00403{word-spacing:22.412624pt;}
.wsf_c00403{word-spacing:39.341904pt;}
._1_c00403{margin-left:-1.313264pt;}
._0_c00403{width:0.914928pt;}
.fs1_c00403{font-size:41.388800pt;}
.fs0_c00403{font-size:62.240000pt;}
.y0_c00403{bottom:0.000000pt;}
.y2_c00403{bottom:97.547527pt;}
.y1_c00403{bottom:115.387067pt;}
.y23_c00403{bottom:135.866171pt;}
.y22_c00403{bottom:162.666715pt;}
.y21_c00403{bottom:189.546615pt;}
.y20_c00403{bottom:207.467067pt;}
.y1f_c00403{bottom:234.987067pt;}
.y1e_c00403{bottom:261.787067pt;}
.y1d_c00403{bottom:288.667200pt;}
.y1c_c00403{bottom:315.467067pt;}
.y1b_c00403{bottom:342.347067pt;}
.y1a_c00403{bottom:369.147200pt;}
.y19_c00403{bottom:396.027200pt;}
.y18_c00403{bottom:422.907200pt;}
.y17_c00403{bottom:449.707067pt;}
.y16_c00403{bottom:476.587067pt;}
.y15_c00403{bottom:503.387067pt;}
.y14_c00403{bottom:530.187067pt;}
.y13_c00403{bottom:556.987067pt;}
.y12_c00403{bottom:583.867067pt;}
.y11_c00403{bottom:610.667067pt;}
.y10_c00403{bottom:637.547067pt;}
.yf_c00403{bottom:664.347067pt;}
.ye_c00403{bottom:691.227067pt;}
.yd_c00403{bottom:718.027067pt;}
.yc_c00403{bottom:744.907067pt;}
.yb_c00403{bottom:771.707067pt;}
.ya_c00403{bottom:798.587067pt;}
.y9_c00403{bottom:825.387067pt;}
.y8_c00403{bottom:852.267067pt;}
.y7_c00403{bottom:879.067067pt;}
.y6_c00403{bottom:905.947067pt;}
.y5_c00403{bottom:932.747067pt;}
.y4_c00403{bottom:959.627067pt;}
.y3_c00403{bottom:986.427067pt;}
.h2_c00403{height:55.645234pt;}
.h1_c00403{height:55.797187pt;}
.h3_c00403{height:65.483366pt;}
.h5_c00403{height:65.583879pt;}
.h4_c00403{height:65.584413pt;}
.h0_c00403{height:1122.666667pt;}
.w0_c00403{width:793.333333pt;}
.x0_c00403{left:0.000000pt;}
.x2_c00403{left:73.520052pt;}
.x3_c00403{left:123.520000pt;}
.x4_c00403{left:302.000000pt;}
.x1_c00403{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6d5899123611cb892282a7fc.woff2')format("woff");}.ff1_c00404{font-family:ff1_c00404;line-height:1.106934;font-style:normal;font-weight:normal;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_065f33ff6ad508afc8f9adbb.woff2')format("woff");}.ff2_c00404{font-family:ff2_c00404;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00404;src:url('chunks/assets/font_11640fe9f4204cb957fee581.woff2')format("woff");}.ff3_c00404{font-family:ff3_c00404;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00404{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00404{vertical-align:0.000000px;}
.v1_c00404{vertical-align:32.056668px;}
.ls7_c00404{letter-spacing:-0.294084px;}
.ls8_c00404{letter-spacing:-0.175050px;}
.ls4_c00404{letter-spacing:-0.063018px;}
.ls13_c00404{letter-spacing:-0.056016px;}
.ls11_c00404{letter-spacing:-0.049014px;}
.lsc_c00404{letter-spacing:-0.042012px;}
.lsa_c00404{letter-spacing:-0.035010px;}
.lsb_c00404{letter-spacing:-0.028008px;}
.ls9_c00404{letter-spacing:-0.021006px;}
.lse_c00404{letter-spacing:-0.014004px;}
.lsd_c00404{letter-spacing:-0.007002px;}
.ls5_c00404{letter-spacing:0.000000px;}
.ls2_c00404{letter-spacing:0.007002px;}
.ls1_c00404{letter-spacing:0.014004px;}
.ls3_c00404{letter-spacing:0.023281px;}
.ls6_c00404{letter-spacing:0.084024px;}
.ls10_c00404{letter-spacing:0.266076px;}
.ls0_c00404{letter-spacing:0.336096px;}
.ls12_c00404{letter-spacing:0.343098px;}
.lsf_c00404{letter-spacing:0.630180px;}
.sc__c00404{text-shadow:none;}
.sc0_c00404{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00404{-webkit-text-stroke:0px transparent;}
.sc0_c00404{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00404{word-spacing:-19.472562px;}
.ws1_c00404{word-spacing:-12.967628px;}
.ws5_c00404{word-spacing:-0.196056px;}
.ws3_c00404{word-spacing:-0.098028px;}
.ws7_c00404{word-spacing:-0.028008px;}
.ws21_c00404{word-spacing:-0.014004px;}
.ws2_c00404{word-spacing:0.000000px;}
.ws6_c00404{word-spacing:0.007002px;}
.ws9_c00404{word-spacing:0.014004px;}
.ws8_c00404{word-spacing:0.021006px;}
.wsa_c00404{word-spacing:0.028008px;}
.ws1d_c00404{word-spacing:0.077022px;}
.ws20_c00404{word-spacing:0.329094px;}
.ws1f_c00404{word-spacing:0.336096px;}
.ws16_c00404{word-spacing:0.371106px;}
.ws1e_c00404{word-spacing:0.385110px;}
.ws22_c00404{word-spacing:0.392112px;}
.ws4_c00404{word-spacing:0.637182px;}
.ws1c_c00404{word-spacing:2.142612px;}
.ws1b_c00404{word-spacing:2.541726px;}
.ws2b_c00404{word-spacing:2.905830px;}
.ws2e_c00404{word-spacing:4.334238px;}
.ws29_c00404{word-spacing:7.212060px;}
.ws31_c00404{word-spacing:8.654472px;}
.wsb_c00404{word-spacing:9.354672px;}
.ws27_c00404{word-spacing:11.175192px;}
.ws25_c00404{word-spacing:12.239496px;}
.ws2d_c00404{word-spacing:16.202628px;}
.ws2f_c00404{word-spacing:18.737352px;}
.ws12_c00404{word-spacing:19.437552px;}
.ws18_c00404{word-spacing:25.543296px;}
.ws2c_c00404{word-spacing:25.914402px;}
.ws23_c00404{word-spacing:26.320518px;}
.wsf_c00404{word-spacing:27.377820px;}
.wse_c00404{word-spacing:27.706914px;}
.ws2a_c00404{word-spacing:33.819660px;}
.ws26_c00404{word-spacing:36.739494px;}
.ws28_c00404{word-spacing:42.481134px;}
.ws30_c00404{word-spacing:46.101168px;}
.ws24_c00404{word-spacing:50.407398px;}
.ws13_c00404{word-spacing:53.628318px;}
.ws14_c00404{word-spacing:59.033862px;}
.ws19_c00404{word-spacing:65.902824px;}
.ws17_c00404{word-spacing:68.731632px;}
.wsc_c00404{word-spacing:69.837948px;}
.ws15_c00404{word-spacing:72.750780px;}
.wsd_c00404{word-spacing:80.670042px;}
.ws11_c00404{word-spacing:84.262068px;}
.ws10_c00404{word-spacing:106.206336px;}
.ws1a_c00404{word-spacing:155.178324px;}
._0_c00404{margin-left:-1.134324px;}
._1_c00404{width:1.148328px;}
._2_c00404{width:64.362384px;}
.fc0_c00404{color:rgb(0,0,0);}
.fs1_c00404{font-size:46.562400px;}
.fs0_c00404{font-size:70.020000px;}
.y0_c00404{bottom:0.000000px;}
.y2_c00404{bottom:109.740968px;}
.y1_c00404{bottom:129.810450px;}
.y38_c00404{bottom:183.540600px;}
.y21_c00404{bottom:183.541089px;}
.y37_c00404{bottom:213.780600px;}
.y20_c00404{bottom:213.780977px;}
.y36_c00404{bottom:243.840450px;}
.y1f_c00404{bottom:243.840563px;}
.y1e_c00404{bottom:274.076283px;}
.y35_c00404{bottom:274.080450px;}
.y1d_c00404{bottom:304.226895px;}
.y34_c00404{bottom:304.230450px;}
.y1c_c00404{bottom:334.466783px;}
.y33_c00404{bottom:334.470450px;}
.y1b_c00404{bottom:364.617395px;}
.y32_c00404{bottom:364.620450px;}
.y1a_c00404{bottom:394.857282px;}
.y31_c00404{bottom:394.860600px;}
.y19_c00404{bottom:425.007894px;}
.y30_c00404{bottom:425.010450px;}
.y18_c00404{bottom:455.247782px;}
.y2f_c00404{bottom:455.250450px;}
.y17_c00404{bottom:485.398394px;}
.y2e_c00404{bottom:485.400450px;}
.y16_c00404{bottom:515.638281px;}
.y2d_c00404{bottom:515.640450px;}
.y15_c00404{bottom:545.788893px;}
.y2c_c00404{bottom:545.790450px;}
.y14_c00404{bottom:576.028781px;}
.y2b_c00404{bottom:576.030450px;}
.y13_c00404{bottom:606.179393px;}
.y2a_c00404{bottom:606.180450px;}
.y12_c00404{bottom:636.419280px;}
.y29_c00404{bottom:636.420450px;}
.y11_c00404{bottom:666.659168px;}
.y28_c00404{bottom:666.660450px;}
.y10_c00404{bottom:696.809780px;}
.y27_c00404{bottom:696.810450px;}
.yf_c00404{bottom:727.049667px;}
.y26_c00404{bottom:727.050450px;}
.ye_c00404{bottom:757.200279px;}
.y25_c00404{bottom:757.200450px;}
.yd_c00404{bottom:787.440167px;}
.y24_c00404{bottom:787.440450px;}
.yc_c00404{bottom:817.590779px;}
.y23_c00404{bottom:837.930600px;}
.yb_c00404{bottom:868.080450px;}
.y22_c00404{bottom:868.170450px;}
.ya_c00404{bottom:898.410450px;}
.y9_c00404{bottom:928.560450px;}
.y8_c00404{bottom:958.800450px;}
.y7_c00404{bottom:988.950450px;}
.y6_c00404{bottom:1019.909942px;}
.y5_c00404{bottom:1050.060553px;}
.y4_c00404{bottom:1080.300441px;}
.y3_c00404{bottom:1110.451053px;}
.h3_c00404{height:62.600889px;}
.h1_c00404{height:62.771836px;}
.h2_c00404{height:63.216299px;}
.h4_c00404{height:73.685454px;}
.h0_c00404{height:1263.000000px;}
.w0_c00404{width:892.500000px;}
.x0_c00404{left:0.000000px;}
.x2_c00404{left:82.710059px;}
.x3_c00404{left:138.960000px;}
.x1_c00404{left:431.730000px;}
.x4_c00404{left:454.230000px;}
@media print{
.v0_c00404{vertical-align:0.000000pt;}
.v1_c00404{vertical-align:28.494816pt;}
.ls7_c00404{letter-spacing:-0.261408pt;}
.ls8_c00404{letter-spacing:-0.155600pt;}
.ls4_c00404{letter-spacing:-0.056016pt;}
.ls13_c00404{letter-spacing:-0.049792pt;}
.ls11_c00404{letter-spacing:-0.043568pt;}
.lsc_c00404{letter-spacing:-0.037344pt;}
.lsa_c00404{letter-spacing:-0.031120pt;}
.lsb_c00404{letter-spacing:-0.024896pt;}
.ls9_c00404{letter-spacing:-0.018672pt;}
.lse_c00404{letter-spacing:-0.012448pt;}
.lsd_c00404{letter-spacing:-0.006224pt;}
.ls5_c00404{letter-spacing:0.000000pt;}
.ls2_c00404{letter-spacing:0.006224pt;}
.ls1_c00404{letter-spacing:0.012448pt;}
.ls3_c00404{letter-spacing:0.020694pt;}
.ls6_c00404{letter-spacing:0.074688pt;}
.ls10_c00404{letter-spacing:0.236512pt;}
.ls0_c00404{letter-spacing:0.298752pt;}
.ls12_c00404{letter-spacing:0.304976pt;}
.lsf_c00404{letter-spacing:0.560160pt;}
.ws0_c00404{word-spacing:-17.308944pt;}
.ws1_c00404{word-spacing:-11.526781pt;}
.ws5_c00404{word-spacing:-0.174272pt;}
.ws3_c00404{word-spacing:-0.087136pt;}
.ws7_c00404{word-spacing:-0.024896pt;}
.ws21_c00404{word-spacing:-0.012448pt;}
.ws2_c00404{word-spacing:0.000000pt;}
.ws6_c00404{word-spacing:0.006224pt;}
.ws9_c00404{word-spacing:0.012448pt;}
.ws8_c00404{word-spacing:0.018672pt;}
.wsa_c00404{word-spacing:0.024896pt;}
.ws1d_c00404{word-spacing:0.068464pt;}
.ws20_c00404{word-spacing:0.292528pt;}
.ws1f_c00404{word-spacing:0.298752pt;}
.ws16_c00404{word-spacing:0.329872pt;}
.ws1e_c00404{word-spacing:0.342320pt;}
.ws22_c00404{word-spacing:0.348544pt;}
.ws4_c00404{word-spacing:0.566384pt;}
.ws1c_c00404{word-spacing:1.904544pt;}
.ws1b_c00404{word-spacing:2.259312pt;}
.ws2b_c00404{word-spacing:2.582960pt;}
.ws2e_c00404{word-spacing:3.852656pt;}
.ws29_c00404{word-spacing:6.410720pt;}
.ws31_c00404{word-spacing:7.692864pt;}
.wsb_c00404{word-spacing:8.315264pt;}
.ws27_c00404{word-spacing:9.933504pt;}
.ws25_c00404{word-spacing:10.879552pt;}
.ws2d_c00404{word-spacing:14.402336pt;}
.ws2f_c00404{word-spacing:16.655424pt;}
.ws12_c00404{word-spacing:17.277824pt;}
.ws18_c00404{word-spacing:22.705152pt;}
.ws2c_c00404{word-spacing:23.035024pt;}
.ws23_c00404{word-spacing:23.396016pt;}
.wsf_c00404{word-spacing:24.335840pt;}
.wse_c00404{word-spacing:24.628368pt;}
.ws2a_c00404{word-spacing:30.061920pt;}
.ws26_c00404{word-spacing:32.657328pt;}
.ws28_c00404{word-spacing:37.761008pt;}
.ws30_c00404{word-spacing:40.978816pt;}
.ws24_c00404{word-spacing:44.806576pt;}
.ws13_c00404{word-spacing:47.669616pt;}
.ws14_c00404{word-spacing:52.474544pt;}
.ws19_c00404{word-spacing:58.580288pt;}
.ws17_c00404{word-spacing:61.094784pt;}
.wsc_c00404{word-spacing:62.078176pt;}
.ws15_c00404{word-spacing:64.667360pt;}
.wsd_c00404{word-spacing:71.706704pt;}
.ws11_c00404{word-spacing:74.899616pt;}
.ws10_c00404{word-spacing:94.405632pt;}
.ws1a_c00404{word-spacing:137.936288pt;}
._0_c00404{margin-left:-1.008288pt;}
._1_c00404{width:1.020736pt;}
._2_c00404{width:57.211008pt;}
.fs1_c00404{font-size:41.388800pt;}
.fs0_c00404{font-size:62.240000pt;}
.y0_c00404{bottom:0.000000pt;}
.y2_c00404{bottom:97.547527pt;}
.y1_c00404{bottom:115.387067pt;}
.y38_c00404{bottom:163.147200pt;}
.y21_c00404{bottom:163.147635pt;}
.y37_c00404{bottom:190.027200pt;}
.y20_c00404{bottom:190.027535pt;}
.y36_c00404{bottom:216.747067pt;}
.y1f_c00404{bottom:216.747167pt;}
.y1e_c00404{bottom:243.623363pt;}
.y35_c00404{bottom:243.627067pt;}
.y1d_c00404{bottom:270.423907pt;}
.y34_c00404{bottom:270.427067pt;}
.y1c_c00404{bottom:297.303807pt;}
.y33_c00404{bottom:297.307067pt;}
.y1b_c00404{bottom:324.104351pt;}
.y32_c00404{bottom:324.107067pt;}
.y1a_c00404{bottom:350.984251pt;}
.y31_c00404{bottom:350.987200pt;}
.y19_c00404{bottom:377.784795pt;}
.y30_c00404{bottom:377.787067pt;}
.y18_c00404{bottom:404.664695pt;}
.y2f_c00404{bottom:404.667067pt;}
.y17_c00404{bottom:431.465239pt;}
.y2e_c00404{bottom:431.467067pt;}
.y16_c00404{bottom:458.345139pt;}
.y2d_c00404{bottom:458.347067pt;}
.y15_c00404{bottom:485.145683pt;}
.y2c_c00404{bottom:485.147067pt;}
.y14_c00404{bottom:512.025583pt;}
.y2b_c00404{bottom:512.027067pt;}
.y13_c00404{bottom:538.826127pt;}
.y2a_c00404{bottom:538.827067pt;}
.y12_c00404{bottom:565.706027pt;}
.y29_c00404{bottom:565.707067pt;}
.y11_c00404{bottom:592.585927pt;}
.y28_c00404{bottom:592.587067pt;}
.y10_c00404{bottom:619.386471pt;}
.y27_c00404{bottom:619.387067pt;}
.yf_c00404{bottom:646.266371pt;}
.y26_c00404{bottom:646.267067pt;}
.ye_c00404{bottom:673.066915pt;}
.y25_c00404{bottom:673.067067pt;}
.yd_c00404{bottom:699.946815pt;}
.y24_c00404{bottom:699.947067pt;}
.yc_c00404{bottom:726.747359pt;}
.y23_c00404{bottom:744.827200pt;}
.yb_c00404{bottom:771.627067pt;}
.y22_c00404{bottom:771.707067pt;}
.ya_c00404{bottom:798.587067pt;}
.y9_c00404{bottom:825.387067pt;}
.y8_c00404{bottom:852.267067pt;}
.y7_c00404{bottom:879.067067pt;}
.y6_c00404{bottom:906.586615pt;}
.y5_c00404{bottom:933.387159pt;}
.y4_c00404{bottom:960.267059pt;}
.y3_c00404{bottom:987.067603pt;}
.h3_c00404{height:55.645234pt;}
.h1_c00404{height:55.797187pt;}
.h2_c00404{height:56.192266pt;}
.h4_c00404{height:65.498182pt;}
.h0_c00404{height:1122.666667pt;}
.w0_c00404{width:793.333333pt;}
.x0_c00404{left:0.000000pt;}
.x2_c00404{left:73.520052pt;}
.x3_c00404{left:123.520000pt;}
.x1_c00404{left:383.760000pt;}
.x4_c00404{left:403.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6c0cb8633ce7f86137200a49.woff2')format("woff");}.ff1_c00405{font-family:ff1_c00405;line-height:1.106934;font-style:normal;font-weight:normal;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_22bb6df4317e87713c258864.woff2')format("woff");}.ff2_c00405{font-family:ff2_c00405;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00405{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00405{vertical-align:0.000000px;}
.v1_c00405{vertical-align:32.401404px;}
.ls10_c00405{letter-spacing:-0.147042px;}
.lsc_c00405{letter-spacing:-0.091026px;}
.ls11_c00405{letter-spacing:-0.077022px;}
.ls8_c00405{letter-spacing:-0.063018px;}
.ls12_c00405{letter-spacing:-0.042012px;}
.lsa_c00405{letter-spacing:-0.035010px;}
.lsb_c00405{letter-spacing:-0.028008px;}
.lsf_c00405{letter-spacing:-0.021006px;}
.lse_c00405{letter-spacing:-0.014004px;}
.lsd_c00405{letter-spacing:-0.007002px;}
.ls9_c00405{letter-spacing:0.000000px;}
.ls1_c00405{letter-spacing:0.007002px;}
.ls7_c00405{letter-spacing:0.014004px;}
.ls6_c00405{letter-spacing:0.021006px;}
.ls3_c00405{letter-spacing:0.023281px;}
.ls2_c00405{letter-spacing:0.028008px;}
.ls5_c00405{letter-spacing:0.042012px;}
.ls0_c00405{letter-spacing:0.098028px;}
.ls13_c00405{letter-spacing:0.343098px;}
.ls4_c00405{letter-spacing:2.856816px;}
.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:-12.967628px;}
.ws1_c00405{word-spacing:0.000000px;}
.ws1f_c00405{word-spacing:0.014004px;}
.ws19_c00405{word-spacing:0.364104px;}
.ws9_c00405{word-spacing:0.434124px;}
.ws5_c00405{word-spacing:2.114604px;}
.ws6_c00405{word-spacing:2.534724px;}
.ws1c_c00405{word-spacing:2.548728px;}
.ws1a_c00405{word-spacing:2.863818px;}
.wse_c00405{word-spacing:2.870820px;}
.wsd_c00405{word-spacing:2.940840px;}
.ws3_c00405{word-spacing:3.486996px;}
.wsc_c00405{word-spacing:3.606030px;}
.ws2_c00405{word-spacing:3.620034px;}
.ws7_c00405{word-spacing:3.970134px;}
.ws14_c00405{word-spacing:4.698342px;}
.wsb_c00405{word-spacing:7.198056px;}
.ws8_c00405{word-spacing:12.974706px;}
.ws1d_c00405{word-spacing:14.732208px;}
.wsa_c00405{word-spacing:17.273934px;}
.ws18_c00405{word-spacing:19.444554px;}
.ws4_c00405{word-spacing:23.379678px;}
.wsf_c00405{word-spacing:28.106028px;}
.ws17_c00405{word-spacing:33.448554px;}
.ws10_c00405{word-spacing:37.110600px;}
.ws11_c00405{word-spacing:37.474704px;}
.ws1e_c00405{word-spacing:40.709628px;}
.ws1b_c00405{word-spacing:54.727632px;}
.ws13_c00405{word-spacing:60.784362px;}
.ws12_c00405{word-spacing:68.409540px;}
.ws15_c00405{word-spacing:72.344664px;}
.ws16_c00405{word-spacing:81.328230px;}
._2_c00405{margin-left:-27.706914px;}
._1_c00405{margin-left:-1.029294px;}
._0_c00405{width:1.022292px;}
.fc0_c00405{color:rgb(0,0,0);}
.fs1_c00405{font-size:46.562400px;}
.fs0_c00405{font-size:70.020000px;}
.y0_c00405{bottom:0.000000px;}
.y2_c00405{bottom:109.740968px;}
.y1_c00405{bottom:129.810450px;}
.y42_c00405{bottom:173.730450px;}
.y22_c00405{bottom:173.730563px;}
.y21_c00405{bottom:203.966229px;}
.y41_c00405{bottom:203.970450px;}
.y20_c00405{bottom:234.116841px;}
.y40_c00405{bottom:234.120600px;}
.y1f_c00405{bottom:264.356729px;}
.y3f_c00405{bottom:264.360450px;}
.y1e_c00405{bottom:294.507341px;}
.y3e_c00405{bottom:294.510450px;}
.y1d_c00405{bottom:324.747228px;}
.y3d_c00405{bottom:324.750600px;}
.y1c_c00405{bottom:354.897840px;}
.y3c_c00405{bottom:354.900450px;}
.y1b_c00405{bottom:385.137727px;}
.y3b_c00405{bottom:385.140450px;}
.y1a_c00405{bottom:415.288339px;}
.y3a_c00405{bottom:415.290600px;}
.y19_c00405{bottom:445.528227px;}
.y39_c00405{bottom:445.530600px;}
.y18_c00405{bottom:475.768115px;}
.y38_c00405{bottom:475.770600px;}
.y17_c00405{bottom:505.918726px;}
.y37_c00405{bottom:505.920450px;}
.y16_c00405{bottom:536.158614px;}
.y36_c00405{bottom:536.160450px;}
.y15_c00405{bottom:566.309226px;}
.y35_c00405{bottom:566.310450px;}
.y14_c00405{bottom:596.459838px;}
.y34_c00405{bottom:596.460450px;}
.y13_c00405{bottom:626.609563px;}
.y33_c00405{bottom:626.610450px;}
.y12_c00405{bottom:656.849451px;}
.y32_c00405{bottom:656.850450px;}
.y11_c00405{bottom:687.000063px;}
.y31_c00405{bottom:687.000450px;}
.y10_c00405{bottom:717.239950px;}
.y30_c00405{bottom:717.240450px;}
.y2f_c00405{bottom:747.390450px;}
.yf_c00405{bottom:747.390562px;}
.ye_c00405{bottom:777.628839px;}
.y2e_c00405{bottom:777.630450px;}
.yd_c00405{bottom:807.779451px;}
.y2d_c00405{bottom:807.780450px;}
.yc_c00405{bottom:838.019339px;}
.y2c_c00405{bottom:838.020450px;}
.yb_c00405{bottom:868.169950px;}
.y2b_c00405{bottom:868.170450px;}
.ya_c00405{bottom:898.409838px;}
.y2a_c00405{bottom:898.410450px;}
.y9_c00405{bottom:928.560099px;}
.y29_c00405{bottom:928.560450px;}
.y8_c00405{bottom:958.799987px;}
.y28_c00405{bottom:958.800450px;}
.y27_c00405{bottom:988.950450px;}
.y7_c00405{bottom:988.950599px;}
.y26_c00405{bottom:1019.190450px;}
.y6_c00405{bottom:1019.190486px;}
.y25_c00405{bottom:1049.340450px;}
.y5_c00405{bottom:1049.341098px;}
.y24_c00405{bottom:1079.580450px;}
.y4_c00405{bottom:1079.580985px;}
.y23_c00405{bottom:1109.730450px;}
.y3_c00405{bottom:1109.731597px;}
.h2_c00405{height:62.600889px;}
.h1_c00405{height:62.771836px;}
.h4_c00405{height:73.675230px;}
.h6_c00405{height:73.685670px;}
.h3_c00405{height:74.030190px;}
.h5_c00405{height:74.146010px;}
.h0_c00405{height:1263.000000px;}
.w0_c00405{width:892.500000px;}
.x0_c00405{left:0.000000px;}
.x2_c00405{left:82.710059px;}
.x3_c00405{left:138.960626px;}
.x1_c00405{left:431.730000px;}
.x4_c00405{left:454.230000px;}
@media print{
.v0_c00405{vertical-align:0.000000pt;}
.v1_c00405{vertical-align:28.801248pt;}
.ls10_c00405{letter-spacing:-0.130704pt;}
.lsc_c00405{letter-spacing:-0.080912pt;}
.ls11_c00405{letter-spacing:-0.068464pt;}
.ls8_c00405{letter-spacing:-0.056016pt;}
.ls12_c00405{letter-spacing:-0.037344pt;}
.lsa_c00405{letter-spacing:-0.031120pt;}
.lsb_c00405{letter-spacing:-0.024896pt;}
.lsf_c00405{letter-spacing:-0.018672pt;}
.lse_c00405{letter-spacing:-0.012448pt;}
.lsd_c00405{letter-spacing:-0.006224pt;}
.ls9_c00405{letter-spacing:0.000000pt;}
.ls1_c00405{letter-spacing:0.006224pt;}
.ls7_c00405{letter-spacing:0.012448pt;}
.ls6_c00405{letter-spacing:0.018672pt;}
.ls3_c00405{letter-spacing:0.020694pt;}
.ls2_c00405{letter-spacing:0.024896pt;}
.ls5_c00405{letter-spacing:0.037344pt;}
.ls0_c00405{letter-spacing:0.087136pt;}
.ls13_c00405{letter-spacing:0.304976pt;}
.ls4_c00405{letter-spacing:2.539392pt;}
.ws0_c00405{word-spacing:-11.526781pt;}
.ws1_c00405{word-spacing:0.000000pt;}
.ws1f_c00405{word-spacing:0.012448pt;}
.ws19_c00405{word-spacing:0.323648pt;}
.ws9_c00405{word-spacing:0.385888pt;}
.ws5_c00405{word-spacing:1.879648pt;}
.ws6_c00405{word-spacing:2.253088pt;}
.ws1c_c00405{word-spacing:2.265536pt;}
.ws1a_c00405{word-spacing:2.545616pt;}
.wse_c00405{word-spacing:2.551840pt;}
.wsd_c00405{word-spacing:2.614080pt;}
.ws3_c00405{word-spacing:3.099552pt;}
.wsc_c00405{word-spacing:3.205360pt;}
.ws2_c00405{word-spacing:3.217808pt;}
.ws7_c00405{word-spacing:3.529008pt;}
.ws14_c00405{word-spacing:4.176304pt;}
.wsb_c00405{word-spacing:6.398272pt;}
.ws8_c00405{word-spacing:11.533072pt;}
.ws1d_c00405{word-spacing:13.095296pt;}
.wsa_c00405{word-spacing:15.354608pt;}
.ws18_c00405{word-spacing:17.284048pt;}
.ws4_c00405{word-spacing:20.781936pt;}
.wsf_c00405{word-spacing:24.983136pt;}
.ws17_c00405{word-spacing:29.732048pt;}
.ws10_c00405{word-spacing:32.987200pt;}
.ws11_c00405{word-spacing:33.310848pt;}
.ws1e_c00405{word-spacing:36.186336pt;}
.ws1b_c00405{word-spacing:48.646784pt;}
.ws13_c00405{word-spacing:54.030544pt;}
.ws12_c00405{word-spacing:60.808480pt;}
.ws15_c00405{word-spacing:64.306368pt;}
.ws16_c00405{word-spacing:72.291760pt;}
._2_c00405{margin-left:-24.628368pt;}
._1_c00405{margin-left:-0.914928pt;}
._0_c00405{width:0.908704pt;}
.fs1_c00405{font-size:41.388800pt;}
.fs0_c00405{font-size:62.240000pt;}
.y0_c00405{bottom:0.000000pt;}
.y2_c00405{bottom:97.547527pt;}
.y1_c00405{bottom:115.387067pt;}
.y42_c00405{bottom:154.427067pt;}
.y22_c00405{bottom:154.427167pt;}
.y21_c00405{bottom:181.303315pt;}
.y41_c00405{bottom:181.307067pt;}
.y20_c00405{bottom:208.103859pt;}
.y40_c00405{bottom:208.107200pt;}
.y1f_c00405{bottom:234.983759pt;}
.y3f_c00405{bottom:234.987067pt;}
.y1e_c00405{bottom:261.784303pt;}
.y3e_c00405{bottom:261.787067pt;}
.y1d_c00405{bottom:288.664203pt;}
.y3d_c00405{bottom:288.667200pt;}
.y1c_c00405{bottom:315.464747pt;}
.y3c_c00405{bottom:315.467067pt;}
.y1b_c00405{bottom:342.344647pt;}
.y3b_c00405{bottom:342.347067pt;}
.y1a_c00405{bottom:369.145191pt;}
.y3a_c00405{bottom:369.147200pt;}
.y19_c00405{bottom:396.025091pt;}
.y39_c00405{bottom:396.027200pt;}
.y18_c00405{bottom:422.904991pt;}
.y38_c00405{bottom:422.907200pt;}
.y17_c00405{bottom:449.705535pt;}
.y37_c00405{bottom:449.707067pt;}
.y16_c00405{bottom:476.585435pt;}
.y36_c00405{bottom:476.587067pt;}
.y15_c00405{bottom:503.385979pt;}
.y35_c00405{bottom:503.387067pt;}
.y14_c00405{bottom:530.186523pt;}
.y34_c00405{bottom:530.187067pt;}
.y13_c00405{bottom:556.986279pt;}
.y33_c00405{bottom:556.987067pt;}
.y12_c00405{bottom:583.866179pt;}
.y32_c00405{bottom:583.867067pt;}
.y11_c00405{bottom:610.666723pt;}
.y31_c00405{bottom:610.667067pt;}
.y10_c00405{bottom:637.546623pt;}
.y30_c00405{bottom:637.547067pt;}
.y2f_c00405{bottom:664.347067pt;}
.yf_c00405{bottom:664.347167pt;}
.ye_c00405{bottom:691.225635pt;}
.y2e_c00405{bottom:691.227067pt;}
.yd_c00405{bottom:718.026179pt;}
.y2d_c00405{bottom:718.027067pt;}
.yc_c00405{bottom:744.906079pt;}
.y2c_c00405{bottom:744.907067pt;}
.yb_c00405{bottom:771.706623pt;}
.y2b_c00405{bottom:771.707067pt;}
.ya_c00405{bottom:798.586523pt;}
.y2a_c00405{bottom:798.587067pt;}
.y9_c00405{bottom:825.386755pt;}
.y29_c00405{bottom:825.387067pt;}
.y8_c00405{bottom:852.266655pt;}
.y28_c00405{bottom:852.267067pt;}
.y27_c00405{bottom:879.067067pt;}
.y7_c00405{bottom:879.067199pt;}
.y26_c00405{bottom:905.947067pt;}
.y6_c00405{bottom:905.947099pt;}
.y25_c00405{bottom:932.747067pt;}
.y5_c00405{bottom:932.747643pt;}
.y24_c00405{bottom:959.627067pt;}
.y4_c00405{bottom:959.627543pt;}
.y23_c00405{bottom:986.427067pt;}
.y3_c00405{bottom:986.428087pt;}
.h2_c00405{height:55.645234pt;}
.h1_c00405{height:55.797187pt;}
.h4_c00405{height:65.489094pt;}
.h6_c00405{height:65.498374pt;}
.h3_c00405{height:65.804614pt;}
.h5_c00405{height:65.907565pt;}
.h0_c00405{height:1122.666667pt;}
.w0_c00405{width:793.333333pt;}
.x0_c00405{left:0.000000pt;}
.x2_c00405{left:73.520052pt;}
.x3_c00405{left:123.520556pt;}
.x1_c00405{left:383.760000pt;}
.x4_c00405{left:403.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d946c335e1c62668dd90c17f.woff2')format("woff");}.ff1_c00406{font-family:ff1_c00406;line-height:1.106934;font-style:normal;font-weight:normal;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_a39d25e9eca3d049645021bd.woff2')format("woff");}.ff2_c00406{font-family:ff2_c00406;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00406{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00406{vertical-align:0.000000px;}
.v1_c00406{vertical-align:32.409396px;}
.ls4_c00406{letter-spacing:-0.063018px;}
.lsa_c00406{letter-spacing:-0.056016px;}
.ls7_c00406{letter-spacing:-0.049014px;}
.lsd_c00406{letter-spacing:-0.042012px;}
.ls8_c00406{letter-spacing:-0.035010px;}
.ls6_c00406{letter-spacing:-0.028008px;}
.ls9_c00406{letter-spacing:-0.021006px;}
.lsb_c00406{letter-spacing:-0.014004px;}
.lsc_c00406{letter-spacing:-0.007002px;}
.ls5_c00406{letter-spacing:0.000000px;}
.ls0_c00406{letter-spacing:0.007002px;}
.ls1_c00406{letter-spacing:0.014004px;}
.ls3_c00406{letter-spacing:0.023281px;}
.ls2_c00406{letter-spacing:0.077022px;}
.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:-12.967628px;}
.ws10_c00406{word-spacing:-0.448128px;}
.ws1d_c00406{word-spacing:-0.014004px;}
.ws1_c00406{word-spacing:0.000000px;}
.wse_c00406{word-spacing:1.799514px;}
.wsa_c00406{word-spacing:3.606030px;}
.ws3_c00406{word-spacing:6.098742px;}
.ws13_c00406{word-spacing:11.532294px;}
.ws18_c00406{word-spacing:12.239496px;}
.ws19_c00406{word-spacing:12.617604px;}
.ws17_c00406{word-spacing:13.324806px;}
.wsc_c00406{word-spacing:18.345240px;}
.ws1f_c00406{word-spacing:19.437552px;}
.ws5_c00406{word-spacing:19.451556px;}
.ws15_c00406{word-spacing:20.886966px;}
.ws8_c00406{word-spacing:29.898540px;}
.ws9_c00406{word-spacing:30.262644px;}
.ws7_c00406{word-spacing:34.953984px;}
.wsf_c00406{word-spacing:36.690480px;}
.ws16_c00406{word-spacing:38.511000px;}
.ws14_c00406{word-spacing:39.624318px;}
.ws6_c00406{word-spacing:42.488136px;}
.wsb_c00406{word-spacing:42.516144px;}
.ws1a_c00406{word-spacing:44.637750px;}
.ws11_c00406{word-spacing:52.578018px;}
.ws1b_c00406{word-spacing:53.621316px;}
.ws2_c00406{word-spacing:61.183476px;}
.ws4_c00406{word-spacing:74.865384px;}
.ws12_c00406{word-spacing:81.370242px;}
.wsd_c00406{word-spacing:83.204766px;}
.ws1e_c00406{word-spacing:104.784930px;}
.ws1c_c00406{word-spacing:138.226482px;}
._1_c00406{margin-left:-1.400400px;}
._0_c00406{width:1.022292px;}
.fc0_c00406{color:rgb(0,0,0);}
.fs1_c00406{font-size:46.562400px;}
.fs0_c00406{font-size:70.020000px;}
.y0_c00406{bottom:0.000000px;}
.y2_c00406{bottom:109.740968px;}
.y1_c00406{bottom:129.810450px;}
.y22_c00406{bottom:173.725842px;}
.y42_c00406{bottom:173.730450px;}
.y21_c00406{bottom:203.965729px;}
.y41_c00406{bottom:203.970450px;}
.y20_c00406{bottom:234.116342px;}
.y40_c00406{bottom:234.120600px;}
.y1f_c00406{bottom:264.356229px;}
.y3f_c00406{bottom:264.360450px;}
.y1e_c00406{bottom:294.506841px;}
.y3e_c00406{bottom:294.510450px;}
.y1d_c00406{bottom:324.746729px;}
.y3d_c00406{bottom:324.750600px;}
.y1c_c00406{bottom:354.897341px;}
.y3c_c00406{bottom:354.900450px;}
.y1b_c00406{bottom:385.137228px;}
.y3b_c00406{bottom:385.140450px;}
.y1a_c00406{bottom:415.287840px;}
.y3a_c00406{bottom:415.290600px;}
.y19_c00406{bottom:445.527727px;}
.y39_c00406{bottom:445.530600px;}
.y18_c00406{bottom:475.767615px;}
.y38_c00406{bottom:475.770600px;}
.y17_c00406{bottom:505.918227px;}
.y37_c00406{bottom:505.920450px;}
.y16_c00406{bottom:536.158115px;}
.y36_c00406{bottom:536.160450px;}
.y15_c00406{bottom:566.308726px;}
.y35_c00406{bottom:566.310450px;}
.y14_c00406{bottom:596.459338px;}
.y34_c00406{bottom:596.460450px;}
.y13_c00406{bottom:626.609950px;}
.y33_c00406{bottom:626.610450px;}
.y12_c00406{bottom:656.849838px;}
.y32_c00406{bottom:656.850450px;}
.y11_c00406{bottom:686.998101px;}
.y31_c00406{bottom:687.000450px;}
.y10_c00406{bottom:717.237989px;}
.y30_c00406{bottom:717.240450px;}
.yf_c00406{bottom:747.388601px;}
.y2f_c00406{bottom:747.390450px;}
.ye_c00406{bottom:777.628488px;}
.y2e_c00406{bottom:777.630450px;}
.yd_c00406{bottom:807.779100px;}
.y2d_c00406{bottom:807.780450px;}
.yc_c00406{bottom:838.018988px;}
.y2c_c00406{bottom:838.020450px;}
.yb_c00406{bottom:868.169600px;}
.y2b_c00406{bottom:868.170450px;}
.ya_c00406{bottom:898.409487px;}
.y2a_c00406{bottom:898.410450px;}
.y9_c00406{bottom:928.560099px;}
.y29_c00406{bottom:928.560450px;}
.y8_c00406{bottom:958.799987px;}
.y28_c00406{bottom:958.800450px;}
.y27_c00406{bottom:988.950450px;}
.y7_c00406{bottom:988.950599px;}
.y26_c00406{bottom:1019.190450px;}
.y6_c00406{bottom:1019.190486px;}
.y25_c00406{bottom:1049.340450px;}
.y5_c00406{bottom:1049.341098px;}
.y24_c00406{bottom:1079.580450px;}
.y4_c00406{bottom:1079.580985px;}
.y23_c00406{bottom:1109.730450px;}
.y3_c00406{bottom:1109.731597px;}
.h2_c00406{height:62.600889px;}
.h1_c00406{height:62.771836px;}
.h3_c00406{height:74.038182px;}
.h0_c00406{height:1263.000000px;}
.w0_c00406{width:892.500000px;}
.x0_c00406{left:0.000000px;}
.x2_c00406{left:82.710059px;}
.x3_c00406{left:138.960626px;}
.x1_c00406{left:431.730000px;}
.x4_c00406{left:454.230000px;}
@media print{
.v0_c00406{vertical-align:0.000000pt;}
.v1_c00406{vertical-align:28.808352pt;}
.ls4_c00406{letter-spacing:-0.056016pt;}
.lsa_c00406{letter-spacing:-0.049792pt;}
.ls7_c00406{letter-spacing:-0.043568pt;}
.lsd_c00406{letter-spacing:-0.037344pt;}
.ls8_c00406{letter-spacing:-0.031120pt;}
.ls6_c00406{letter-spacing:-0.024896pt;}
.ls9_c00406{letter-spacing:-0.018672pt;}
.lsb_c00406{letter-spacing:-0.012448pt;}
.lsc_c00406{letter-spacing:-0.006224pt;}
.ls5_c00406{letter-spacing:0.000000pt;}
.ls0_c00406{letter-spacing:0.006224pt;}
.ls1_c00406{letter-spacing:0.012448pt;}
.ls3_c00406{letter-spacing:0.020694pt;}
.ls2_c00406{letter-spacing:0.068464pt;}
.ws0_c00406{word-spacing:-11.526781pt;}
.ws10_c00406{word-spacing:-0.398336pt;}
.ws1d_c00406{word-spacing:-0.012448pt;}
.ws1_c00406{word-spacing:0.000000pt;}
.wse_c00406{word-spacing:1.599568pt;}
.wsa_c00406{word-spacing:3.205360pt;}
.ws3_c00406{word-spacing:5.421104pt;}
.ws13_c00406{word-spacing:10.250928pt;}
.ws18_c00406{word-spacing:10.879552pt;}
.ws19_c00406{word-spacing:11.215648pt;}
.ws17_c00406{word-spacing:11.844272pt;}
.wsc_c00406{word-spacing:16.306880pt;}
.ws1f_c00406{word-spacing:17.277824pt;}
.ws5_c00406{word-spacing:17.290272pt;}
.ws15_c00406{word-spacing:18.566192pt;}
.ws8_c00406{word-spacing:26.576480pt;}
.ws9_c00406{word-spacing:26.900128pt;}
.ws7_c00406{word-spacing:31.070208pt;}
.wsf_c00406{word-spacing:32.613760pt;}
.ws16_c00406{word-spacing:34.232000pt;}
.ws14_c00406{word-spacing:35.221616pt;}
.ws6_c00406{word-spacing:37.767232pt;}
.wsb_c00406{word-spacing:37.792128pt;}
.ws1a_c00406{word-spacing:39.678000pt;}
.ws11_c00406{word-spacing:46.736016pt;}
.ws1b_c00406{word-spacing:47.663392pt;}
.ws2_c00406{word-spacing:54.385312pt;}
.ws4_c00406{word-spacing:66.547008pt;}
.ws12_c00406{word-spacing:72.329104pt;}
.wsd_c00406{word-spacing:73.959792pt;}
.ws1e_c00406{word-spacing:93.142160pt;}
.ws1c_c00406{word-spacing:122.867984pt;}
._1_c00406{margin-left:-1.244800pt;}
._0_c00406{width:0.908704pt;}
.fs1_c00406{font-size:41.388800pt;}
.fs0_c00406{font-size:62.240000pt;}
.y0_c00406{bottom:0.000000pt;}
.y2_c00406{bottom:97.547527pt;}
.y1_c00406{bottom:115.387067pt;}
.y22_c00406{bottom:154.422971pt;}
.y42_c00406{bottom:154.427067pt;}
.y21_c00406{bottom:181.302871pt;}
.y41_c00406{bottom:181.307067pt;}
.y20_c00406{bottom:208.103415pt;}
.y40_c00406{bottom:208.107200pt;}
.y1f_c00406{bottom:234.983315pt;}
.y3f_c00406{bottom:234.987067pt;}
.y1e_c00406{bottom:261.783859pt;}
.y3e_c00406{bottom:261.787067pt;}
.y1d_c00406{bottom:288.663759pt;}
.y3d_c00406{bottom:288.667200pt;}
.y1c_c00406{bottom:315.464303pt;}
.y3c_c00406{bottom:315.467067pt;}
.y1b_c00406{bottom:342.344203pt;}
.y3b_c00406{bottom:342.347067pt;}
.y1a_c00406{bottom:369.144747pt;}
.y3a_c00406{bottom:369.147200pt;}
.y19_c00406{bottom:396.024647pt;}
.y39_c00406{bottom:396.027200pt;}
.y18_c00406{bottom:422.904547pt;}
.y38_c00406{bottom:422.907200pt;}
.y17_c00406{bottom:449.705091pt;}
.y37_c00406{bottom:449.707067pt;}
.y16_c00406{bottom:476.584991pt;}
.y36_c00406{bottom:476.587067pt;}
.y15_c00406{bottom:503.385535pt;}
.y35_c00406{bottom:503.387067pt;}
.y14_c00406{bottom:530.186079pt;}
.y34_c00406{bottom:530.187067pt;}
.y13_c00406{bottom:556.986623pt;}
.y33_c00406{bottom:556.987067pt;}
.y12_c00406{bottom:583.866523pt;}
.y32_c00406{bottom:583.867067pt;}
.y11_c00406{bottom:610.664979pt;}
.y31_c00406{bottom:610.667067pt;}
.y10_c00406{bottom:637.544879pt;}
.y30_c00406{bottom:637.547067pt;}
.yf_c00406{bottom:664.345423pt;}
.y2f_c00406{bottom:664.347067pt;}
.ye_c00406{bottom:691.225323pt;}
.y2e_c00406{bottom:691.227067pt;}
.yd_c00406{bottom:718.025867pt;}
.y2d_c00406{bottom:718.027067pt;}
.yc_c00406{bottom:744.905767pt;}
.y2c_c00406{bottom:744.907067pt;}
.yb_c00406{bottom:771.706311pt;}
.y2b_c00406{bottom:771.707067pt;}
.ya_c00406{bottom:798.586211pt;}
.y2a_c00406{bottom:798.587067pt;}
.y9_c00406{bottom:825.386755pt;}
.y29_c00406{bottom:825.387067pt;}
.y8_c00406{bottom:852.266655pt;}
.y28_c00406{bottom:852.267067pt;}
.y27_c00406{bottom:879.067067pt;}
.y7_c00406{bottom:879.067199pt;}
.y26_c00406{bottom:905.947067pt;}
.y6_c00406{bottom:905.947099pt;}
.y25_c00406{bottom:932.747067pt;}
.y5_c00406{bottom:932.747643pt;}
.y24_c00406{bottom:959.627067pt;}
.y4_c00406{bottom:959.627543pt;}
.y23_c00406{bottom:986.427067pt;}
.y3_c00406{bottom:986.428087pt;}
.h2_c00406{height:55.645234pt;}
.h1_c00406{height:55.797187pt;}
.h3_c00406{height:65.811718pt;}
.h0_c00406{height:1122.666667pt;}
.w0_c00406{width:793.333333pt;}
.x0_c00406{left:0.000000pt;}
.x2_c00406{left:73.520052pt;}
.x3_c00406{left:123.520556pt;}
.x1_c00406{left:383.760000pt;}
.x4_c00406{left:403.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bbcc34deca4c66d65e46680a.woff2')format("woff");}.ff1_c00407{font-family:ff1_c00407;line-height:1.106934;font-style:normal;font-weight:normal;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_c09a1941eb07b07539270e73.woff2')format("woff");}.ff2_c00407{font-family:ff2_c00407;line-height:1.104492;font-style:normal;font-weight:normal;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_71f4419739fd18aeb8508b0e.woff2')format("woff");}.ff3_c00407{font-family:ff3_c00407;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00407{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00407{vertical-align:0.000000px;}
.v1_c00407{vertical-align:32.045850px;}
.ls3_c00407{letter-spacing:-0.063018px;}
.ls5_c00407{letter-spacing:-0.042012px;}
.ls7_c00407{letter-spacing:-0.035010px;}
.ls6_c00407{letter-spacing:-0.028008px;}
.ls8_c00407{letter-spacing:-0.014004px;}
.ls4_c00407{letter-spacing:0.000000px;}
.ls1_c00407{letter-spacing:0.014004px;}
.ls0_c00407{letter-spacing:0.021006px;}
.ls2_c00407{letter-spacing:0.023281px;}
.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:-12.967628px;}
.ws1_c00407{word-spacing:0.000000px;}
.ws8_c00407{word-spacing:2.849814px;}
.ws3_c00407{word-spacing:7.590168px;}
.ws6_c00407{word-spacing:8.969562px;}
.ws2_c00407{word-spacing:20.123748px;}
.ws5_c00407{word-spacing:20.893968px;}
.ws4_c00407{word-spacing:23.372676px;}
.ws7_c00407{word-spacing:28.456128px;}
.ws9_c00407{word-spacing:37.411686px;}
.wsa_c00407{word-spacing:51.499710px;}
._1_c00407{margin-left:-1.064304px;}
._0_c00407{width:1.274364px;}
.fc0_c00407{color:rgb(0,0,0);}
.fs1_c00407{font-size:46.562400px;}
.fs0_c00407{font-size:70.020000px;}
.y0_c00407{bottom:0.000000px;}
.y2_c00407{bottom:109.740968px;}
.y1_c00407{bottom:129.810450px;}
.y2b_c00407{bottom:173.095869px;}
.y2a_c00407{bottom:203.246481px;}
.y29_c00407{bottom:233.486368px;}
.y28_c00407{bottom:263.545955px;}
.y27_c00407{bottom:293.785842px;}
.y26_c00407{bottom:323.936454px;}
.y25_c00407{bottom:354.176342px;}
.y24_c00407{bottom:384.326953px;}
.y23_c00407{bottom:414.566841px;}
.y22_c00407{bottom:444.717453px;}
.y21_c00407{bottom:474.957340px;}
.y20_c00407{bottom:505.107953px;}
.y1f_c00407{bottom:535.347840px;}
.y1e_c00407{bottom:565.498452px;}
.y1d_c00407{bottom:595.738339px;}
.y1c_c00407{bottom:625.888951px;}
.y1b_c00407{bottom:656.128839px;}
.y1a_c00407{bottom:686.279451px;}
.y19_c00407{bottom:716.519339px;}
.y18_c00407{bottom:746.669951px;}
.y17_c00407{bottom:776.909838px;}
.y16_c00407{bottom:807.060450px;}
.yc_c00407{bottom:838.018988px;}
.yb_c00407{bottom:868.169600px;}
.y15_c00407{bottom:868.170450px;}
.ya_c00407{bottom:898.409487px;}
.y14_c00407{bottom:898.410450px;}
.y9_c00407{bottom:928.560099px;}
.y13_c00407{bottom:928.560450px;}
.y8_c00407{bottom:958.799987px;}
.y12_c00407{bottom:958.800450px;}
.y11_c00407{bottom:988.950450px;}
.y7_c00407{bottom:988.950599px;}
.y10_c00407{bottom:1019.190450px;}
.y6_c00407{bottom:1019.190486px;}
.yf_c00407{bottom:1049.340450px;}
.y5_c00407{bottom:1049.341098px;}
.ye_c00407{bottom:1079.580450px;}
.y4_c00407{bottom:1079.580985px;}
.yd_c00407{bottom:1109.730450px;}
.y3_c00407{bottom:1109.731597px;}
.h2_c00407{height:62.600889px;}
.h1_c00407{height:62.771836px;}
.h4_c00407{height:63.216299px;}
.h3_c00407{height:73.674636px;}
.h0_c00407{height:1263.000000px;}
.w0_c00407{width:892.500000px;}
.x0_c00407{left:0.000000px;}
.x2_c00407{left:82.710059px;}
.x3_c00407{left:138.960626px;}
.x1_c00407{left:431.730000px;}
.x5_c00407{left:446.310000px;}
.x4_c00407{left:454.230000px;}
@media print{
.v0_c00407{vertical-align:0.000000pt;}
.v1_c00407{vertical-align:28.485200pt;}
.ls3_c00407{letter-spacing:-0.056016pt;}
.ls5_c00407{letter-spacing:-0.037344pt;}
.ls7_c00407{letter-spacing:-0.031120pt;}
.ls6_c00407{letter-spacing:-0.024896pt;}
.ls8_c00407{letter-spacing:-0.012448pt;}
.ls4_c00407{letter-spacing:0.000000pt;}
.ls1_c00407{letter-spacing:0.012448pt;}
.ls0_c00407{letter-spacing:0.018672pt;}
.ls2_c00407{letter-spacing:0.020694pt;}
.ws0_c00407{word-spacing:-11.526781pt;}
.ws1_c00407{word-spacing:0.000000pt;}
.ws8_c00407{word-spacing:2.533168pt;}
.ws3_c00407{word-spacing:6.746816pt;}
.ws6_c00407{word-spacing:7.972944pt;}
.ws2_c00407{word-spacing:17.887776pt;}
.ws5_c00407{word-spacing:18.572416pt;}
.ws4_c00407{word-spacing:20.775712pt;}
.ws7_c00407{word-spacing:25.294336pt;}
.ws9_c00407{word-spacing:33.254832pt;}
.wsa_c00407{word-spacing:45.777520pt;}
._1_c00407{margin-left:-0.946048pt;}
._0_c00407{width:1.132768pt;}
.fs1_c00407{font-size:41.388800pt;}
.fs0_c00407{font-size:62.240000pt;}
.y0_c00407{bottom:0.000000pt;}
.y2_c00407{bottom:97.547527pt;}
.y1_c00407{bottom:115.387067pt;}
.y2b_c00407{bottom:153.862995pt;}
.y2a_c00407{bottom:180.663539pt;}
.y29_c00407{bottom:207.543439pt;}
.y28_c00407{bottom:234.263071pt;}
.y27_c00407{bottom:261.142971pt;}
.y26_c00407{bottom:287.943515pt;}
.y25_c00407{bottom:314.823415pt;}
.y24_c00407{bottom:341.623959pt;}
.y23_c00407{bottom:368.503859pt;}
.y22_c00407{bottom:395.304403pt;}
.y21_c00407{bottom:422.184303pt;}
.y20_c00407{bottom:448.984847pt;}
.y1f_c00407{bottom:475.864747pt;}
.y1e_c00407{bottom:502.665291pt;}
.y1d_c00407{bottom:529.545191pt;}
.y1c_c00407{bottom:556.345735pt;}
.y1b_c00407{bottom:583.225635pt;}
.y1a_c00407{bottom:610.026179pt;}
.y19_c00407{bottom:636.906079pt;}
.y18_c00407{bottom:663.706623pt;}
.y17_c00407{bottom:690.586523pt;}
.y16_c00407{bottom:717.387067pt;}
.yc_c00407{bottom:744.905767pt;}
.yb_c00407{bottom:771.706311pt;}
.y15_c00407{bottom:771.707067pt;}
.ya_c00407{bottom:798.586211pt;}
.y14_c00407{bottom:798.587067pt;}
.y9_c00407{bottom:825.386755pt;}
.y13_c00407{bottom:825.387067pt;}
.y8_c00407{bottom:852.266655pt;}
.y12_c00407{bottom:852.267067pt;}
.y11_c00407{bottom:879.067067pt;}
.y7_c00407{bottom:879.067199pt;}
.y10_c00407{bottom:905.947067pt;}
.y6_c00407{bottom:905.947099pt;}
.yf_c00407{bottom:932.747067pt;}
.y5_c00407{bottom:932.747643pt;}
.ye_c00407{bottom:959.627067pt;}
.y4_c00407{bottom:959.627543pt;}
.yd_c00407{bottom:986.427067pt;}
.y3_c00407{bottom:986.428087pt;}
.h2_c00407{height:55.645234pt;}
.h1_c00407{height:55.797187pt;}
.h4_c00407{height:56.192266pt;}
.h3_c00407{height:65.488566pt;}
.h0_c00407{height:1122.666667pt;}
.w0_c00407{width:793.333333pt;}
.x0_c00407{left:0.000000pt;}
.x2_c00407{left:73.520052pt;}
.x3_c00407{left:123.520556pt;}
.x1_c00407{left:383.760000pt;}
.x5_c00407{left:396.720000pt;}
.x4_c00407{left:403.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_371e1c9f6444ca2518a9058c.woff2')format("woff");}.ff1_c00408{font-family:ff1_c00408;line-height:1.106934;font-style:normal;font-weight:normal;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_2e5fcecf4f85a7c0cce18e6f.woff2')format("woff");}.ff2_c00408{font-family:ff2_c00408;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00408;src:url('chunks/assets/font_14c568888ef73273c058945f.woff2')format("woff");}.ff3_c00408{font-family:ff3_c00408;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00408{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00408{vertical-align:0.000000px;}
.ls2_c00408{letter-spacing:-0.063018px;}
.ls8_c00408{letter-spacing:-0.042012px;}
.ls4_c00408{letter-spacing:-0.028008px;}
.ls6_c00408{letter-spacing:-0.021006px;}
.ls7_c00408{letter-spacing:-0.014004px;}
.ls5_c00408{letter-spacing:-0.007002px;}
.ls3_c00408{letter-spacing:0.000000px;}
.ls1_c00408{letter-spacing:0.014004px;}
.ls0_c00408{letter-spacing:0.070020px;}
.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;}
}
.ws2_c00408{word-spacing:-0.014004px;}
.ws0_c00408{word-spacing:0.000000px;}
.ws7_c00408{word-spacing:0.007002px;}
.ws1_c00408{word-spacing:0.014004px;}
.wsd_c00408{word-spacing:0.028008px;}
.ws10_c00408{word-spacing:0.350100px;}
.ws8_c00408{word-spacing:0.364104px;}
.ws13_c00408{word-spacing:0.371106px;}
.wsf_c00408{word-spacing:3.970134px;}
.wsb_c00408{word-spacing:5.762646px;}
.wsc_c00408{word-spacing:6.854958px;}
.ws5_c00408{word-spacing:9.368676px;}
.ws4_c00408{word-spacing:12.225492px;}
.ws12_c00408{word-spacing:12.603600px;}
.ws11_c00408{word-spacing:16.531722px;}
.ws3_c00408{word-spacing:16.552728px;}
.wse_c00408{word-spacing:17.294940px;}
.ws9_c00408{word-spacing:28.785222px;}
.ws6_c00408{word-spacing:29.163330px;}
.wsa_c00408{word-spacing:52.585020px;}
._3_c00408{margin-left:-1.071306px;}
._0_c00408{width:1.036296px;}
._1_c00408{width:8.283366px;}
._2_c00408{width:15.523434px;}
.fc0_c00408{color:rgb(0,0,0);}
.fs0_c00408{font-size:70.020000px;}
.y0_c00408{bottom:0.000000px;}
.y2_c00408{bottom:109.740968px;}
.y1_c00408{bottom:129.810450px;}
.y1a_c00408{bottom:183.534785px;}
.y19_c00408{bottom:213.774672px;}
.y18_c00408{bottom:243.925284px;}
.y17_c00408{bottom:274.165171px;}
.y16_c00408{bottom:304.315783px;}
.y15_c00408{bottom:334.555671px;}
.y14_c00408{bottom:364.706283px;}
.y13_c00408{bottom:394.946170px;}
.y12_c00408{bottom:425.096783px;}
.y11_c00408{bottom:455.247394px;}
.y10_c00408{bottom:485.398006px;}
.yf_c00408{bottom:515.637894px;}
.ye_c00408{bottom:545.788506px;}
.yd_c00408{bottom:576.028393px;}
.yc_c00408{bottom:606.179005px;}
.yb_c00408{bottom:636.418893px;}
.ya_c00408{bottom:666.658780px;}
.y9_c00408{bottom:696.809392px;}
.y8_c00408{bottom:727.049280px;}
.y7_c00408{bottom:757.199892px;}
.y6_c00408{bottom:783.660450px;}
.y5_c00408{bottom:1049.341098px;}
.y4_c00408{bottom:1079.580985px;}
.y3_c00408{bottom:1109.731597px;}
.h3_c00408{height:62.600889px;}
.h1_c00408{height:62.771836px;}
.h2_c00408{height:63.216299px;}
.h0_c00408{height:1263.000000px;}
.w0_c00408{width:892.500000px;}
.x0_c00408{left:0.000000px;}
.x2_c00408{left:82.710059px;}
.x8_c00408{left:138.959361px;}
.x5_c00408{left:165.240882px;}
.x7_c00408{left:191.519874px;}
.x4_c00408{left:283.410135px;}
.x1_c00408{left:431.730000px;}
.x3_c00408{left:446.309914px;}
.x6_c00408{left:713.610000px;}
@media print{
.v0_c00408{vertical-align:0.000000pt;}
.ls2_c00408{letter-spacing:-0.056016pt;}
.ls8_c00408{letter-spacing:-0.037344pt;}
.ls4_c00408{letter-spacing:-0.024896pt;}
.ls6_c00408{letter-spacing:-0.018672pt;}
.ls7_c00408{letter-spacing:-0.012448pt;}
.ls5_c00408{letter-spacing:-0.006224pt;}
.ls3_c00408{letter-spacing:0.000000pt;}
.ls1_c00408{letter-spacing:0.012448pt;}
.ls0_c00408{letter-spacing:0.062240pt;}
.ws2_c00408{word-spacing:-0.012448pt;}
.ws0_c00408{word-spacing:0.000000pt;}
.ws7_c00408{word-spacing:0.006224pt;}
.ws1_c00408{word-spacing:0.012448pt;}
.wsd_c00408{word-spacing:0.024896pt;}
.ws10_c00408{word-spacing:0.311200pt;}
.ws8_c00408{word-spacing:0.323648pt;}
.ws13_c00408{word-spacing:0.329872pt;}
.wsf_c00408{word-spacing:3.529008pt;}
.wsb_c00408{word-spacing:5.122352pt;}
.wsc_c00408{word-spacing:6.093296pt;}
.ws5_c00408{word-spacing:8.327712pt;}
.ws4_c00408{word-spacing:10.867104pt;}
.ws12_c00408{word-spacing:11.203200pt;}
.ws11_c00408{word-spacing:14.694864pt;}
.ws3_c00408{word-spacing:14.713536pt;}
.wse_c00408{word-spacing:15.373280pt;}
.ws9_c00408{word-spacing:25.586864pt;}
.ws6_c00408{word-spacing:25.922960pt;}
.wsa_c00408{word-spacing:46.742240pt;}
._3_c00408{margin-left:-0.952272pt;}
._0_c00408{width:0.921152pt;}
._1_c00408{width:7.362992pt;}
._2_c00408{width:13.798608pt;}
.fs0_c00408{font-size:62.240000pt;}
.y0_c00408{bottom:0.000000pt;}
.y2_c00408{bottom:97.547527pt;}
.y1_c00408{bottom:115.387067pt;}
.y1a_c00408{bottom:163.142031pt;}
.y19_c00408{bottom:190.021931pt;}
.y18_c00408{bottom:216.822475pt;}
.y17_c00408{bottom:243.702375pt;}
.y16_c00408{bottom:270.502919pt;}
.y15_c00408{bottom:297.382819pt;}
.y14_c00408{bottom:324.183363pt;}
.y13_c00408{bottom:351.063263pt;}
.y12_c00408{bottom:377.863807pt;}
.y11_c00408{bottom:404.664351pt;}
.y10_c00408{bottom:431.464895pt;}
.yf_c00408{bottom:458.344795pt;}
.ye_c00408{bottom:485.145339pt;}
.yd_c00408{bottom:512.025239pt;}
.yc_c00408{bottom:538.825783pt;}
.yb_c00408{bottom:565.705683pt;}
.ya_c00408{bottom:592.585583pt;}
.y9_c00408{bottom:619.386127pt;}
.y8_c00408{bottom:646.266027pt;}
.y7_c00408{bottom:673.066571pt;}
.y6_c00408{bottom:696.587067pt;}
.y5_c00408{bottom:932.747643pt;}
.y4_c00408{bottom:959.627543pt;}
.y3_c00408{bottom:986.428087pt;}
.h3_c00408{height:55.645234pt;}
.h1_c00408{height:55.797187pt;}
.h2_c00408{height:56.192266pt;}
.h0_c00408{height:1122.666667pt;}
.w0_c00408{width:793.333333pt;}
.x0_c00408{left:0.000000pt;}
.x2_c00408{left:73.520052pt;}
.x8_c00408{left:123.519432pt;}
.x5_c00408{left:146.880784pt;}
.x7_c00408{left:170.239888pt;}
.x4_c00408{left:251.920120pt;}
.x1_c00408{left:383.760000pt;}
.x3_c00408{left:396.719924pt;}
.x6_c00408{left:634.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2d30cd8ab5ac8ee6d6567b78.woff2')format("woff");}.ff1_c00409{font-family:ff1_c00409;line-height:1.106934;font-style:normal;font-weight:normal;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_d3566e19fe2cf1f20d8e438d.woff2')format("woff");}.ff2_c00409{font-family:ff2_c00409;line-height:1.104492;font-style:normal;font-weight:normal;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_71f4419739fd18aeb8508b0e.woff2')format("woff");}.ff3_c00409{font-family:ff3_c00409;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00409{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00409{vertical-align:0.000000px;}
.v1_c00409{vertical-align:32.403402px;}
.ls5_c00409{letter-spacing:-0.063018px;}
.lsb_c00409{letter-spacing:-0.056016px;}
.lsc_c00409{letter-spacing:-0.035010px;}
.ls8_c00409{letter-spacing:-0.028008px;}
.ls9_c00409{letter-spacing:-0.021006px;}
.lsa_c00409{letter-spacing:-0.014004px;}
.ls7_c00409{letter-spacing:-0.007002px;}
.ls6_c00409{letter-spacing:0.000000px;}
.ls0_c00409{letter-spacing:0.007002px;}
.ls2_c00409{letter-spacing:0.014004px;}
.ls1_c00409{letter-spacing:0.023281px;}
.ls3_c00409{letter-spacing:0.063018px;}
.ls4_c00409{letter-spacing:0.333414px;}
.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:-12.967628px;}
.ws9_c00409{word-spacing:-0.021006px;}
.ws1_c00409{word-spacing:0.000000px;}
.ws1d_c00409{word-spacing:0.350100px;}
.wsc_c00409{word-spacing:0.357102px;}
.wse_c00409{word-spacing:0.371106px;}
.wsa_c00409{word-spacing:1.421406px;}
.ws5_c00409{word-spacing:2.513718px;}
.ws13_c00409{word-spacing:2.534724px;}
.ws12_c00409{word-spacing:2.562732px;}
.wsb_c00409{word-spacing:3.641040px;}
.wsd_c00409{word-spacing:4.292226px;}
.ws19_c00409{word-spacing:6.469848px;}
.ws1a_c00409{word-spacing:6.861960px;}
.ws18_c00409{word-spacing:7.184052px;}
.ws14_c00409{word-spacing:10.089882px;}
.ws2_c00409{word-spacing:10.432980px;}
.ws8_c00409{word-spacing:12.596598px;}
.ws6_c00409{word-spacing:13.667904px;}
.wsf_c00409{word-spacing:15.110316px;}
.ws1b_c00409{word-spacing:15.502428px;}
.ws1c_c00409{word-spacing:16.209630px;}
.ws15_c00409{word-spacing:16.566732px;}
.ws4_c00409{word-spacing:19.815660px;}
.ws1f_c00409{word-spacing:20.522862px;}
.ws1e_c00409{word-spacing:21.608172px;}
.ws10_c00409{word-spacing:22.959558px;}
.ws16_c00409{word-spacing:23.036580px;}
.ws11_c00409{word-spacing:23.050584px;}
.ws17_c00409{word-spacing:24.836094px;}
.ws3_c00409{word-spacing:26.635608px;}
.ws20_c00409{word-spacing:40.702626px;}
.ws7_c00409{word-spacing:52.206912px;}
._1_c00409{margin-left:-13.065732px;}
._2_c00409{margin-left:-1.071306px;}
._0_c00409{width:1.015290px;}
.fc0_c00409{color:rgb(0,0,0);}
.fs1_c00409{font-size:46.562400px;}
.fs0_c00409{font-size:70.020000px;}
.y0_c00409{bottom:0.000000px;}
.y2_c00409{bottom:109.740968px;}
.y1_c00409{bottom:129.810450px;}
.y21_c00409{bottom:183.540600px;}
.y20_c00409{bottom:213.780600px;}
.y1f_c00409{bottom:243.840450px;}
.y1e_c00409{bottom:294.505343px;}
.y1d_c00409{bottom:324.745230px;}
.y1c_c00409{bottom:354.895842px;}
.y1b_c00409{bottom:385.135730px;}
.y1a_c00409{bottom:415.286342px;}
.y19_c00409{bottom:445.526229px;}
.y18_c00409{bottom:475.766117px;}
.y17_c00409{bottom:505.916729px;}
.y16_c00409{bottom:536.156616px;}
.y15_c00409{bottom:566.307228px;}
.y14_c00409{bottom:596.457840px;}
.y13_c00409{bottom:626.608452px;}
.y12_c00409{bottom:656.848340px;}
.y11_c00409{bottom:686.998952px;}
.y10_c00409{bottom:717.238839px;}
.yf_c00409{bottom:747.389451px;}
.ye_c00409{bottom:777.629339px;}
.yd_c00409{bottom:807.779951px;}
.yc_c00409{bottom:838.019838px;}
.yb_c00409{bottom:868.169600px;}
.ya_c00409{bottom:898.409487px;}
.y9_c00409{bottom:928.560099px;}
.y8_c00409{bottom:958.799987px;}
.y7_c00409{bottom:988.950599px;}
.y6_c00409{bottom:1019.190486px;}
.y5_c00409{bottom:1049.341098px;}
.y4_c00409{bottom:1079.580985px;}
.y3_c00409{bottom:1109.731597px;}
.h2_c00409{height:62.600889px;}
.h1_c00409{height:62.771836px;}
.h4_c00409{height:63.216299px;}
.h3_c00409{height:74.032188px;}
.h5_c00409{height:74.162894px;}
.h0_c00409{height:1263.000000px;}
.w0_c00409{width:892.500000px;}
.x0_c00409{left:0.000000px;}
.x2_c00409{left:82.710059px;}
.x3_c00409{left:138.960626px;}
.x4_c00409{left:191.520014px;}
.x1_c00409{left:431.730000px;}
@media print{
.v0_c00409{vertical-align:0.000000pt;}
.v1_c00409{vertical-align:28.803024pt;}
.ls5_c00409{letter-spacing:-0.056016pt;}
.lsb_c00409{letter-spacing:-0.049792pt;}
.lsc_c00409{letter-spacing:-0.031120pt;}
.ls8_c00409{letter-spacing:-0.024896pt;}
.ls9_c00409{letter-spacing:-0.018672pt;}
.lsa_c00409{letter-spacing:-0.012448pt;}
.ls7_c00409{letter-spacing:-0.006224pt;}
.ls6_c00409{letter-spacing:0.000000pt;}
.ls0_c00409{letter-spacing:0.006224pt;}
.ls2_c00409{letter-spacing:0.012448pt;}
.ls1_c00409{letter-spacing:0.020694pt;}
.ls3_c00409{letter-spacing:0.056016pt;}
.ls4_c00409{letter-spacing:0.296368pt;}
.ws0_c00409{word-spacing:-11.526781pt;}
.ws9_c00409{word-spacing:-0.018672pt;}
.ws1_c00409{word-spacing:0.000000pt;}
.ws1d_c00409{word-spacing:0.311200pt;}
.wsc_c00409{word-spacing:0.317424pt;}
.wse_c00409{word-spacing:0.329872pt;}
.wsa_c00409{word-spacing:1.263472pt;}
.ws5_c00409{word-spacing:2.234416pt;}
.ws13_c00409{word-spacing:2.253088pt;}
.ws12_c00409{word-spacing:2.277984pt;}
.wsb_c00409{word-spacing:3.236480pt;}
.wsd_c00409{word-spacing:3.815312pt;}
.ws19_c00409{word-spacing:5.750976pt;}
.ws1a_c00409{word-spacing:6.099520pt;}
.ws18_c00409{word-spacing:6.385824pt;}
.ws14_c00409{word-spacing:8.968784pt;}
.ws2_c00409{word-spacing:9.273760pt;}
.ws8_c00409{word-spacing:11.196976pt;}
.ws6_c00409{word-spacing:12.149248pt;}
.wsf_c00409{word-spacing:13.431392pt;}
.ws1b_c00409{word-spacing:13.779936pt;}
.ws1c_c00409{word-spacing:14.408560pt;}
.ws15_c00409{word-spacing:14.725984pt;}
.ws4_c00409{word-spacing:17.613920pt;}
.ws1f_c00409{word-spacing:18.242544pt;}
.ws1e_c00409{word-spacing:19.207264pt;}
.ws10_c00409{word-spacing:20.408496pt;}
.ws16_c00409{word-spacing:20.476960pt;}
.ws11_c00409{word-spacing:20.489408pt;}
.ws17_c00409{word-spacing:22.076528pt;}
.ws3_c00409{word-spacing:23.676096pt;}
.ws20_c00409{word-spacing:36.180112pt;}
.ws7_c00409{word-spacing:46.406144pt;}
._1_c00409{margin-left:-11.613984pt;}
._2_c00409{margin-left:-0.952272pt;}
._0_c00409{width:0.902480pt;}
.fs1_c00409{font-size:41.388800pt;}
.fs0_c00409{font-size:62.240000pt;}
.y0_c00409{bottom:0.000000pt;}
.y2_c00409{bottom:97.547527pt;}
.y1_c00409{bottom:115.387067pt;}
.y21_c00409{bottom:163.147200pt;}
.y20_c00409{bottom:190.027200pt;}
.y1f_c00409{bottom:216.747067pt;}
.y1e_c00409{bottom:261.782527pt;}
.y1d_c00409{bottom:288.662427pt;}
.y1c_c00409{bottom:315.462971pt;}
.y1b_c00409{bottom:342.342871pt;}
.y1a_c00409{bottom:369.143415pt;}
.y19_c00409{bottom:396.023315pt;}
.y18_c00409{bottom:422.903215pt;}
.y17_c00409{bottom:449.703759pt;}
.y16_c00409{bottom:476.583659pt;}
.y15_c00409{bottom:503.384203pt;}
.y14_c00409{bottom:530.184747pt;}
.y13_c00409{bottom:556.985291pt;}
.y12_c00409{bottom:583.865191pt;}
.y11_c00409{bottom:610.665735pt;}
.y10_c00409{bottom:637.545635pt;}
.yf_c00409{bottom:664.346179pt;}
.ye_c00409{bottom:691.226079pt;}
.yd_c00409{bottom:718.026623pt;}
.yc_c00409{bottom:744.906523pt;}
.yb_c00409{bottom:771.706311pt;}
.ya_c00409{bottom:798.586211pt;}
.y9_c00409{bottom:825.386755pt;}
.y8_c00409{bottom:852.266655pt;}
.y7_c00409{bottom:879.067199pt;}
.y6_c00409{bottom:905.947099pt;}
.y5_c00409{bottom:932.747643pt;}
.y4_c00409{bottom:959.627543pt;}
.y3_c00409{bottom:986.428087pt;}
.h2_c00409{height:55.645234pt;}
.h1_c00409{height:55.797187pt;}
.h4_c00409{height:56.192266pt;}
.h3_c00409{height:65.806390pt;}
.h5_c00409{height:65.922572pt;}
.h0_c00409{height:1122.666667pt;}
.w0_c00409{width:793.333333pt;}
.x0_c00409{left:0.000000pt;}
.x2_c00409{left:73.520052pt;}
.x3_c00409{left:123.520556pt;}
.x4_c00409{left:170.240012pt;}
.x1_c00409{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ce88dab8a6688178f10e1d50.woff2')format("woff");}.ff1_c00410{font-family:ff1_c00410;line-height:1.106934;font-style:normal;font-weight:normal;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_3392036000c96693eb6aa962.woff2')format("woff");}.ff2_c00410{font-family:ff2_c00410;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00410{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00410{vertical-align:0.000000px;}
.v1_c00410{vertical-align:32.400000px;}
.lsf_c00410{letter-spacing:-0.091026px;}
.ls6_c00410{letter-spacing:-0.063018px;}
.lse_c00410{letter-spacing:-0.056016px;}
.lsc_c00410{letter-spacing:-0.049014px;}
.ls9_c00410{letter-spacing:-0.035010px;}
.ls8_c00410{letter-spacing:-0.028008px;}
.lsd_c00410{letter-spacing:-0.021006px;}
.lsa_c00410{letter-spacing:-0.014004px;}
.lsb_c00410{letter-spacing:-0.007002px;}
.ls7_c00410{letter-spacing:0.000000px;}
.ls2_c00410{letter-spacing:0.007002px;}
.ls0_c00410{letter-spacing:0.014004px;}
.ls1_c00410{letter-spacing:0.023281px;}
.ls5_c00410{letter-spacing:0.028008px;}
.ls4_c00410{letter-spacing:0.042012px;}
.ls3_c00410{letter-spacing:0.056016px;}
.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:-12.967628px;}
.ws1f_c00410{word-spacing:-0.273078px;}
.ws10_c00410{word-spacing:-0.070020px;}
.ws1c_c00410{word-spacing:-0.042012px;}
.wsf_c00410{word-spacing:-0.021006px;}
.wse_c00410{word-spacing:-0.007002px;}
.ws1_c00410{word-spacing:0.000000px;}
.wsd_c00410{word-spacing:0.014004px;}
.wsb_c00410{word-spacing:0.035010px;}
.ws16_c00410{word-spacing:0.301086px;}
.wsa_c00410{word-spacing:0.350100px;}
.ws17_c00410{word-spacing:0.357102px;}
.wsc_c00410{word-spacing:0.364104px;}
.ws1b_c00410{word-spacing:0.378108px;}
.ws1d_c00410{word-spacing:0.399114px;}
.ws1e_c00410{word-spacing:0.434124px;}
.ws15_c00410{word-spacing:0.714204px;}
.ws12_c00410{word-spacing:0.728208px;}
.ws13_c00410{word-spacing:1.071306px;}
.ws1a_c00410{word-spacing:3.998142px;}
.ws6_c00410{word-spacing:4.677336px;}
.ws18_c00410{word-spacing:5.755644px;}
.ws19_c00410{word-spacing:5.769648px;}
.ws9_c00410{word-spacing:6.448842px;}
.ws14_c00410{word-spacing:6.854958px;}
.ws7_c00410{word-spacing:7.184052px;}
.ws4_c00410{word-spacing:8.626464px;}
.ws5_c00410{word-spacing:8.661474px;}
.ws11_c00410{word-spacing:11.875392px;}
.ws3_c00410{word-spacing:12.610602px;}
.ws2_c00410{word-spacing:12.974706px;}
.ws8_c00410{word-spacing:23.050584px;}
._1_c00410{margin-left:-1.190340px;}
._0_c00410{width:1.029294px;}
.fc0_c00410{color:rgb(0,0,0);}
.fs1_c00410{font-size:46.562400px;}
.fs0_c00410{font-size:70.020000px;}
.y0_c00410{bottom:0.000000px;}
.y2_c00410{bottom:109.740968px;}
.y1_c00410{bottom:129.810450px;}
.y20_c00410{bottom:172.915617px;}
.y1f_c00410{bottom:203.066229px;}
.y1e_c00410{bottom:233.306117px;}
.y1d_c00410{bottom:263.456729px;}
.y1c_c00410{bottom:293.696616px;}
.y1b_c00410{bottom:323.847228px;}
.y1a_c00410{bottom:354.087116px;}
.y19_c00410{bottom:384.237728px;}
.y18_c00410{bottom:414.477615px;}
.y17_c00410{bottom:444.628227px;}
.y16_c00410{bottom:474.868115px;}
.y15_c00410{bottom:505.018727px;}
.y14_c00410{bottom:535.169338px;}
.y13_c00410{bottom:565.319951px;}
.y12_c00410{bottom:595.559838px;}
.y11_c00410{bottom:625.709865px;}
.y10_c00410{bottom:655.949752px;}
.yf_c00410{bottom:706.530450px;}
.ye_c00410{bottom:757.110450px;}
.yd_c00410{bottom:787.440450px;}
.yc_c00410{bottom:817.590450px;}
.yb_c00410{bottom:847.830450px;}
.ya_c00410{bottom:877.980450px;}
.y9_c00410{bottom:928.470450px;}
.y8_c00410{bottom:958.800450px;}
.y7_c00410{bottom:988.950450px;}
.y6_c00410{bottom:1019.190450px;}
.y5_c00410{bottom:1049.340450px;}
.y4_c00410{bottom:1079.580450px;}
.y3_c00410{bottom:1109.730450px;}
.h2_c00410{height:62.600889px;}
.h1_c00410{height:62.771836px;}
.h3_c00410{height:74.028786px;}
.h4_c00410{height:74.031126px;}
.h0_c00410{height:1263.000000px;}
.w0_c00410{width:892.500000px;}
.x0_c00410{left:0.000000px;}
.x2_c00410{left:82.710059px;}
.x3_c00410{left:138.960000px;}
.x4_c00410{left:165.239527px;}
.x7_c00410{left:174.960054px;}
.x6_c00410{left:179.819442px;}
.x5_c00410{left:222.570153px;}
.x1_c00410{left:431.730000px;}
@media print{
.v0_c00410{vertical-align:0.000000pt;}
.v1_c00410{vertical-align:28.800000pt;}
.lsf_c00410{letter-spacing:-0.080912pt;}
.ls6_c00410{letter-spacing:-0.056016pt;}
.lse_c00410{letter-spacing:-0.049792pt;}
.lsc_c00410{letter-spacing:-0.043568pt;}
.ls9_c00410{letter-spacing:-0.031120pt;}
.ls8_c00410{letter-spacing:-0.024896pt;}
.lsd_c00410{letter-spacing:-0.018672pt;}
.lsa_c00410{letter-spacing:-0.012448pt;}
.lsb_c00410{letter-spacing:-0.006224pt;}
.ls7_c00410{letter-spacing:0.000000pt;}
.ls2_c00410{letter-spacing:0.006224pt;}
.ls0_c00410{letter-spacing:0.012448pt;}
.ls1_c00410{letter-spacing:0.020694pt;}
.ls5_c00410{letter-spacing:0.024896pt;}
.ls4_c00410{letter-spacing:0.037344pt;}
.ls3_c00410{letter-spacing:0.049792pt;}
.ws0_c00410{word-spacing:-11.526781pt;}
.ws1f_c00410{word-spacing:-0.242736pt;}
.ws10_c00410{word-spacing:-0.062240pt;}
.ws1c_c00410{word-spacing:-0.037344pt;}
.wsf_c00410{word-spacing:-0.018672pt;}
.wse_c00410{word-spacing:-0.006224pt;}
.ws1_c00410{word-spacing:0.000000pt;}
.wsd_c00410{word-spacing:0.012448pt;}
.wsb_c00410{word-spacing:0.031120pt;}
.ws16_c00410{word-spacing:0.267632pt;}
.wsa_c00410{word-spacing:0.311200pt;}
.ws17_c00410{word-spacing:0.317424pt;}
.wsc_c00410{word-spacing:0.323648pt;}
.ws1b_c00410{word-spacing:0.336096pt;}
.ws1d_c00410{word-spacing:0.354768pt;}
.ws1e_c00410{word-spacing:0.385888pt;}
.ws15_c00410{word-spacing:0.634848pt;}
.ws12_c00410{word-spacing:0.647296pt;}
.ws13_c00410{word-spacing:0.952272pt;}
.ws1a_c00410{word-spacing:3.553904pt;}
.ws6_c00410{word-spacing:4.157632pt;}
.ws18_c00410{word-spacing:5.116128pt;}
.ws19_c00410{word-spacing:5.128576pt;}
.ws9_c00410{word-spacing:5.732304pt;}
.ws14_c00410{word-spacing:6.093296pt;}
.ws7_c00410{word-spacing:6.385824pt;}
.ws4_c00410{word-spacing:7.667968pt;}
.ws5_c00410{word-spacing:7.699088pt;}
.ws11_c00410{word-spacing:10.555904pt;}
.ws3_c00410{word-spacing:11.209424pt;}
.ws2_c00410{word-spacing:11.533072pt;}
.ws8_c00410{word-spacing:20.489408pt;}
._1_c00410{margin-left:-1.058080pt;}
._0_c00410{width:0.914928pt;}
.fs1_c00410{font-size:41.388800pt;}
.fs0_c00410{font-size:62.240000pt;}
.y0_c00410{bottom:0.000000pt;}
.y2_c00410{bottom:97.547527pt;}
.y1_c00410{bottom:115.387067pt;}
.y20_c00410{bottom:153.702771pt;}
.y1f_c00410{bottom:180.503315pt;}
.y1e_c00410{bottom:207.383215pt;}
.y1d_c00410{bottom:234.183759pt;}
.y1c_c00410{bottom:261.063659pt;}
.y1b_c00410{bottom:287.864203pt;}
.y1a_c00410{bottom:314.744103pt;}
.y19_c00410{bottom:341.544647pt;}
.y18_c00410{bottom:368.424547pt;}
.y17_c00410{bottom:395.225091pt;}
.y16_c00410{bottom:422.104991pt;}
.y15_c00410{bottom:448.905535pt;}
.y14_c00410{bottom:475.706079pt;}
.y13_c00410{bottom:502.506623pt;}
.y12_c00410{bottom:529.386523pt;}
.y11_c00410{bottom:556.186547pt;}
.y10_c00410{bottom:583.066447pt;}
.yf_c00410{bottom:628.027067pt;}
.ye_c00410{bottom:672.987067pt;}
.yd_c00410{bottom:699.947067pt;}
.yc_c00410{bottom:726.747067pt;}
.yb_c00410{bottom:753.627067pt;}
.ya_c00410{bottom:780.427067pt;}
.y9_c00410{bottom:825.307067pt;}
.y8_c00410{bottom:852.267067pt;}
.y7_c00410{bottom:879.067067pt;}
.y6_c00410{bottom:905.947067pt;}
.y5_c00410{bottom:932.747067pt;}
.y4_c00410{bottom:959.627067pt;}
.y3_c00410{bottom:986.427067pt;}
.h2_c00410{height:55.645234pt;}
.h1_c00410{height:55.797187pt;}
.h3_c00410{height:65.803366pt;}
.h4_c00410{height:65.805446pt;}
.h0_c00410{height:1122.666667pt;}
.w0_c00410{width:793.333333pt;}
.x0_c00410{left:0.000000pt;}
.x2_c00410{left:73.520052pt;}
.x3_c00410{left:123.520000pt;}
.x4_c00410{left:146.879580pt;}
.x7_c00410{left:155.520048pt;}
.x6_c00410{left:159.839504pt;}
.x5_c00410{left:197.840136pt;}
.x1_c00410{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e0006373b700e92cebd7741a.woff2')format("woff");}.ff1_c00411{font-family:ff1_c00411;line-height:1.106934;font-style:normal;font-weight:normal;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_0837abd645e6127f609c6f1a.woff2')format("woff");}.ff2_c00411{font-family:ff2_c00411;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00411{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00411{vertical-align:0.000000px;}
.v1_c00411{vertical-align:32.068278px;}
.ls10_c00411{letter-spacing:-0.140040px;}
.ls7_c00411{letter-spacing:-0.063018px;}
.lsa_c00411{letter-spacing:-0.049014px;}
.lsd_c00411{letter-spacing:-0.042012px;}
.ls9_c00411{letter-spacing:-0.035010px;}
.lsc_c00411{letter-spacing:-0.028008px;}
.lsf_c00411{letter-spacing:-0.021006px;}
.lsb_c00411{letter-spacing:-0.014004px;}
.lse_c00411{letter-spacing:-0.007002px;}
.ls8_c00411{letter-spacing:0.000000px;}
.ls2_c00411{letter-spacing:0.007002px;}
.ls5_c00411{letter-spacing:0.021006px;}
.ls6_c00411{letter-spacing:0.023281px;}
.ls0_c00411{letter-spacing:0.028008px;}
.ls1_c00411{letter-spacing:0.035010px;}
.ls3_c00411{letter-spacing:0.042012px;}
.ls4_c00411{letter-spacing:0.056016px;}
.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:-12.967628px;}
.wsa_c00411{word-spacing:-0.049014px;}
.wsd_c00411{word-spacing:-0.014004px;}
.ws1_c00411{word-spacing:0.000000px;}
.ws11_c00411{word-spacing:0.007002px;}
.ws17_c00411{word-spacing:0.126036px;}
.ws14_c00411{word-spacing:0.287082px;}
.ws12_c00411{word-spacing:0.336096px;}
.ws10_c00411{word-spacing:0.343098px;}
.ws16_c00411{word-spacing:0.364104px;}
.ws7_c00411{word-spacing:0.385110px;}
.ws15_c00411{word-spacing:5.006430px;}
.ws13_c00411{word-spacing:5.342526px;}
.wsc_c00411{word-spacing:6.469848px;}
.ws3_c00411{word-spacing:6.798942px;}
.ws4_c00411{word-spacing:6.875964px;}
.ws8_c00411{word-spacing:8.591454px;}
.wse_c00411{word-spacing:10.082880px;}
.wsb_c00411{word-spacing:10.453986px;}
.ws2_c00411{word-spacing:11.539296px;}
.ws5_c00411{word-spacing:15.481422px;}
.wsf_c00411{word-spacing:18.730350px;}
.ws9_c00411{word-spacing:19.437552px;}
.ws6_c00411{word-spacing:29.891538px;}
._1_c00411{margin-left:-1.057302px;}
._0_c00411{width:1.477422px;}
.fc0_c00411{color:rgb(0,0,0);}
.fs1_c00411{font-size:46.562400px;}
.fs0_c00411{font-size:70.020000px;}
.y0_c00411{bottom:0.000000px;}
.y2_c00411{bottom:109.740968px;}
.y1_c00411{bottom:129.810450px;}
.y22_c00411{bottom:173.730563px;}
.y21_c00411{bottom:203.963381px;}
.y20_c00411{bottom:234.113993px;}
.y1f_c00411{bottom:264.353880px;}
.y1e_c00411{bottom:294.504492px;}
.y1d_c00411{bottom:324.744380px;}
.y1c_c00411{bottom:354.894992px;}
.y1b_c00411{bottom:385.134879px;}
.y1a_c00411{bottom:415.285491px;}
.y19_c00411{bottom:445.525379px;}
.y18_c00411{bottom:475.765266px;}
.y17_c00411{bottom:505.915878px;}
.y16_c00411{bottom:536.155766px;}
.y15_c00411{bottom:566.306378px;}
.y14_c00411{bottom:596.456990px;}
.y13_c00411{bottom:626.607602px;}
.y12_c00411{bottom:656.847489px;}
.y11_c00411{bottom:686.998101px;}
.y10_c00411{bottom:717.237989px;}
.yf_c00411{bottom:747.388601px;}
.ye_c00411{bottom:777.628488px;}
.yd_c00411{bottom:807.779100px;}
.yc_c00411{bottom:838.018988px;}
.yb_c00411{bottom:868.169600px;}
.ya_c00411{bottom:898.409487px;}
.y9_c00411{bottom:928.560099px;}
.y8_c00411{bottom:958.799987px;}
.y7_c00411{bottom:988.950599px;}
.y6_c00411{bottom:1019.190486px;}
.y5_c00411{bottom:1049.341098px;}
.y4_c00411{bottom:1079.580985px;}
.y3_c00411{bottom:1109.731597px;}
.h2_c00411{height:62.600889px;}
.h1_c00411{height:62.771836px;}
.h3_c00411{height:73.697064px;}
.h0_c00411{height:1263.000000px;}
.w0_c00411{width:892.500000px;}
.x0_c00411{left:0.000000px;}
.x2_c00411{left:82.710059px;}
.x5_c00411{left:138.959586px;}
.x4_c00411{left:165.240882px;}
.x1_c00411{left:431.730000px;}
.x3_c00411{left:459.450918px;}
@media print{
.v0_c00411{vertical-align:0.000000pt;}
.v1_c00411{vertical-align:28.505136pt;}
.ls10_c00411{letter-spacing:-0.124480pt;}
.ls7_c00411{letter-spacing:-0.056016pt;}
.lsa_c00411{letter-spacing:-0.043568pt;}
.lsd_c00411{letter-spacing:-0.037344pt;}
.ls9_c00411{letter-spacing:-0.031120pt;}
.lsc_c00411{letter-spacing:-0.024896pt;}
.lsf_c00411{letter-spacing:-0.018672pt;}
.lsb_c00411{letter-spacing:-0.012448pt;}
.lse_c00411{letter-spacing:-0.006224pt;}
.ls8_c00411{letter-spacing:0.000000pt;}
.ls2_c00411{letter-spacing:0.006224pt;}
.ls5_c00411{letter-spacing:0.018672pt;}
.ls6_c00411{letter-spacing:0.020694pt;}
.ls0_c00411{letter-spacing:0.024896pt;}
.ls1_c00411{letter-spacing:0.031120pt;}
.ls3_c00411{letter-spacing:0.037344pt;}
.ls4_c00411{letter-spacing:0.049792pt;}
.ws0_c00411{word-spacing:-11.526781pt;}
.wsa_c00411{word-spacing:-0.043568pt;}
.wsd_c00411{word-spacing:-0.012448pt;}
.ws1_c00411{word-spacing:0.000000pt;}
.ws11_c00411{word-spacing:0.006224pt;}
.ws17_c00411{word-spacing:0.112032pt;}
.ws14_c00411{word-spacing:0.255184pt;}
.ws12_c00411{word-spacing:0.298752pt;}
.ws10_c00411{word-spacing:0.304976pt;}
.ws16_c00411{word-spacing:0.323648pt;}
.ws7_c00411{word-spacing:0.342320pt;}
.ws15_c00411{word-spacing:4.450160pt;}
.ws13_c00411{word-spacing:4.748912pt;}
.wsc_c00411{word-spacing:5.750976pt;}
.ws3_c00411{word-spacing:6.043504pt;}
.ws4_c00411{word-spacing:6.111968pt;}
.ws8_c00411{word-spacing:7.636848pt;}
.wse_c00411{word-spacing:8.962560pt;}
.wsb_c00411{word-spacing:9.292432pt;}
.ws2_c00411{word-spacing:10.257152pt;}
.ws5_c00411{word-spacing:13.761264pt;}
.wsf_c00411{word-spacing:16.649200pt;}
.ws9_c00411{word-spacing:17.277824pt;}
.ws6_c00411{word-spacing:26.570256pt;}
._1_c00411{margin-left:-0.939824pt;}
._0_c00411{width:1.313264pt;}
.fs1_c00411{font-size:41.388800pt;}
.fs0_c00411{font-size:62.240000pt;}
.y0_c00411{bottom:0.000000pt;}
.y2_c00411{bottom:97.547527pt;}
.y1_c00411{bottom:115.387067pt;}
.y22_c00411{bottom:154.427167pt;}
.y21_c00411{bottom:181.300783pt;}
.y20_c00411{bottom:208.101327pt;}
.y1f_c00411{bottom:234.981227pt;}
.y1e_c00411{bottom:261.781771pt;}
.y1d_c00411{bottom:288.661671pt;}
.y1c_c00411{bottom:315.462215pt;}
.y1b_c00411{bottom:342.342115pt;}
.y1a_c00411{bottom:369.142659pt;}
.y19_c00411{bottom:396.022559pt;}
.y18_c00411{bottom:422.902459pt;}
.y17_c00411{bottom:449.703003pt;}
.y16_c00411{bottom:476.582903pt;}
.y15_c00411{bottom:503.383447pt;}
.y14_c00411{bottom:530.183991pt;}
.y13_c00411{bottom:556.984535pt;}
.y12_c00411{bottom:583.864435pt;}
.y11_c00411{bottom:610.664979pt;}
.y10_c00411{bottom:637.544879pt;}
.yf_c00411{bottom:664.345423pt;}
.ye_c00411{bottom:691.225323pt;}
.yd_c00411{bottom:718.025867pt;}
.yc_c00411{bottom:744.905767pt;}
.yb_c00411{bottom:771.706311pt;}
.ya_c00411{bottom:798.586211pt;}
.y9_c00411{bottom:825.386755pt;}
.y8_c00411{bottom:852.266655pt;}
.y7_c00411{bottom:879.067199pt;}
.y6_c00411{bottom:905.947099pt;}
.y5_c00411{bottom:932.747643pt;}
.y4_c00411{bottom:959.627543pt;}
.y3_c00411{bottom:986.428087pt;}
.h2_c00411{height:55.645234pt;}
.h1_c00411{height:55.797187pt;}
.h3_c00411{height:65.508502pt;}
.h0_c00411{height:1122.666667pt;}
.w0_c00411{width:793.333333pt;}
.x0_c00411{left:0.000000pt;}
.x2_c00411{left:73.520052pt;}
.x5_c00411{left:123.519632pt;}
.x4_c00411{left:146.880784pt;}
.x1_c00411{left:383.760000pt;}
.x3_c00411{left:408.400816pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8c00f240d30a48c739e3ebe6.woff2')format("woff");}.ff1_c00412{font-family:ff1_c00412;line-height:1.106934;font-style:normal;font-weight:normal;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_1f98e1c1b2d439eadf5643e6.woff2')format("woff");}.ff2_c00412{font-family:ff2_c00412;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00412;src:url('chunks/assets/font_a95a48c5f581dfe182292126.woff2')format("woff");}.ff3_c00412{font-family:ff3_c00412;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00412{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00412{vertical-align:0.000000px;}
.ls4_c00412{letter-spacing:-0.063018px;}
.lsa_c00412{letter-spacing:-0.035010px;}
.ls6_c00412{letter-spacing:-0.028008px;}
.ls8_c00412{letter-spacing:-0.021006px;}
.ls7_c00412{letter-spacing:-0.014004px;}
.ls9_c00412{letter-spacing:-0.007002px;}
.ls5_c00412{letter-spacing:0.000000px;}
.ls1_c00412{letter-spacing:0.007002px;}
.ls2_c00412{letter-spacing:0.014004px;}
.ls3_c00412{letter-spacing:0.021006px;}
.ls0_c00412{letter-spacing:0.070020px;}
.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:-70.020000px;}
.wsa_c00412{word-spacing:-0.371106px;}
.wse_c00412{word-spacing:-0.035010px;}
.ws9_c00412{word-spacing:-0.028008px;}
.ws5_c00412{word-spacing:-0.021006px;}
.ws7_c00412{word-spacing:-0.007002px;}
.ws1_c00412{word-spacing:0.000000px;}
.ws3_c00412{word-spacing:0.007002px;}
.ws2_c00412{word-spacing:0.014004px;}
.ws10_c00412{word-spacing:0.021006px;}
.wsc_c00412{word-spacing:0.336096px;}
.wsd_c00412{word-spacing:0.357102px;}
.wsb_c00412{word-spacing:0.364104px;}
.ws4_c00412{word-spacing:25.557300px;}
.wsf_c00412{word-spacing:29.527434px;}
.ws6_c00412{word-spacing:42.824232px;}
.ws8_c00412{word-spacing:61.932690px;}
._7_c00412{margin-left:-62.233776px;}
._6_c00412{margin-left:-61.092450px;}
._1_c00412{margin-left:-1.036296px;}
._3_c00412{width:1.288368px;}
._0_c00412{width:8.283366px;}
._5_c00412{width:10.706058px;}
._4_c00412{width:36.816516px;}
._2_c00412{width:53.544294px;}
._8_c00412{width:62.716914px;}
.fc0_c00412{color:rgb(0,0,0);}
.fs0_c00412{font-size:70.020000px;}
.y0_c00412{bottom:0.000000px;}
.y2_c00412{bottom:109.740968px;}
.y1_c00412{bottom:129.810450px;}
.y1a_c00412{bottom:189.750450px;}
.y19_c00412{bottom:219.990450px;}
.y18_c00412{bottom:250.140450px;}
.y17_c00412{bottom:280.380450px;}
.y16_c00412{bottom:310.530450px;}
.y15_c00412{bottom:340.770450px;}
.y14_c00412{bottom:370.920450px;}
.y13_c00412{bottom:401.160450px;}
.y12_c00412{bottom:431.310450px;}
.y11_c00412{bottom:461.550450px;}
.y10_c00412{bottom:491.700600px;}
.yf_c00412{bottom:521.940600px;}
.ye_c00412{bottom:552.090450px;}
.yd_c00412{bottom:582.240450px;}
.yc_c00412{bottom:613.650450px;}
.yb_c00412{bottom:643.890450px;}
.ya_c00412{bottom:674.040450px;}
.y9_c00412{bottom:704.190450px;}
.y8_c00412{bottom:735.600450px;}
.y7_c00412{bottom:762.060450px;}
.y6_c00412{bottom:1019.190450px;}
.y5_c00412{bottom:1049.340450px;}
.y4_c00412{bottom:1079.580450px;}
.y3_c00412{bottom:1109.730450px;}
.h1_c00412{height:62.771836px;}
.h2_c00412{height:63.216299px;}
.h0_c00412{height:1263.000000px;}
.w0_c00412{width:892.500000px;}
.x0_c00412{left:0.000000px;}
.x2_c00412{left:82.710059px;}
.x5_c00412{left:138.960000px;}
.x6_c00412{left:165.240000px;}
.x8_c00412{left:226.530000px;}
.xb_c00412{left:252.810000px;}
.x9_c00412{left:279.000000px;}
.xa_c00412{left:305.280000px;}
.x4_c00412{left:338.850000px;}
.x1_c00412{left:431.730000px;}
.x3_c00412{left:446.310000px;}
.x7_c00412{left:713.160000px;}
@media print{
.v0_c00412{vertical-align:0.000000pt;}
.ls4_c00412{letter-spacing:-0.056016pt;}
.lsa_c00412{letter-spacing:-0.031120pt;}
.ls6_c00412{letter-spacing:-0.024896pt;}
.ls8_c00412{letter-spacing:-0.018672pt;}
.ls7_c00412{letter-spacing:-0.012448pt;}
.ls9_c00412{letter-spacing:-0.006224pt;}
.ls5_c00412{letter-spacing:0.000000pt;}
.ls1_c00412{letter-spacing:0.006224pt;}
.ls2_c00412{letter-spacing:0.012448pt;}
.ls3_c00412{letter-spacing:0.018672pt;}
.ls0_c00412{letter-spacing:0.062240pt;}
.ws0_c00412{word-spacing:-62.240000pt;}
.wsa_c00412{word-spacing:-0.329872pt;}
.wse_c00412{word-spacing:-0.031120pt;}
.ws9_c00412{word-spacing:-0.024896pt;}
.ws5_c00412{word-spacing:-0.018672pt;}
.ws7_c00412{word-spacing:-0.006224pt;}
.ws1_c00412{word-spacing:0.000000pt;}
.ws3_c00412{word-spacing:0.006224pt;}
.ws2_c00412{word-spacing:0.012448pt;}
.ws10_c00412{word-spacing:0.018672pt;}
.wsc_c00412{word-spacing:0.298752pt;}
.wsd_c00412{word-spacing:0.317424pt;}
.wsb_c00412{word-spacing:0.323648pt;}
.ws4_c00412{word-spacing:22.717600pt;}
.wsf_c00412{word-spacing:26.246608pt;}
.ws6_c00412{word-spacing:38.065984pt;}
.ws8_c00412{word-spacing:55.051280pt;}
._7_c00412{margin-left:-55.318912pt;}
._6_c00412{margin-left:-54.304400pt;}
._1_c00412{margin-left:-0.921152pt;}
._3_c00412{width:1.145216pt;}
._0_c00412{width:7.362992pt;}
._5_c00412{width:9.516496pt;}
._4_c00412{width:32.725792pt;}
._2_c00412{width:47.594928pt;}
._8_c00412{width:55.748368pt;}
.fs0_c00412{font-size:62.240000pt;}
.y0_c00412{bottom:0.000000pt;}
.y2_c00412{bottom:97.547527pt;}
.y1_c00412{bottom:115.387067pt;}
.y1a_c00412{bottom:168.667067pt;}
.y19_c00412{bottom:195.547067pt;}
.y18_c00412{bottom:222.347067pt;}
.y17_c00412{bottom:249.227067pt;}
.y16_c00412{bottom:276.027067pt;}
.y15_c00412{bottom:302.907067pt;}
.y14_c00412{bottom:329.707067pt;}
.y13_c00412{bottom:356.587067pt;}
.y12_c00412{bottom:383.387067pt;}
.y11_c00412{bottom:410.267067pt;}
.y10_c00412{bottom:437.067200pt;}
.yf_c00412{bottom:463.947200pt;}
.ye_c00412{bottom:490.747067pt;}
.yd_c00412{bottom:517.547067pt;}
.yc_c00412{bottom:545.467067pt;}
.yb_c00412{bottom:572.347067pt;}
.ya_c00412{bottom:599.147067pt;}
.y9_c00412{bottom:625.947067pt;}
.y8_c00412{bottom:653.867067pt;}
.y7_c00412{bottom:677.387067pt;}
.y6_c00412{bottom:905.947067pt;}
.y5_c00412{bottom:932.747067pt;}
.y4_c00412{bottom:959.627067pt;}
.y3_c00412{bottom:986.427067pt;}
.h1_c00412{height:55.797187pt;}
.h2_c00412{height:56.192266pt;}
.h0_c00412{height:1122.666667pt;}
.w0_c00412{width:793.333333pt;}
.x0_c00412{left:0.000000pt;}
.x2_c00412{left:73.520052pt;}
.x5_c00412{left:123.520000pt;}
.x6_c00412{left:146.880000pt;}
.x8_c00412{left:201.360000pt;}
.xb_c00412{left:224.720000pt;}
.x9_c00412{left:248.000000pt;}
.xa_c00412{left:271.360000pt;}
.x4_c00412{left:301.200000pt;}
.x1_c00412{left:383.760000pt;}
.x3_c00412{left:396.720000pt;}
.x7_c00412{left:633.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5782005be04c2329fc8f3e29.woff2')format("woff");}.ff1_c00413{font-family:ff1_c00413;line-height:1.106934;font-style:normal;font-weight:normal;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_a95a48c5f581dfe182292126.woff2')format("woff");}.ff2_c00413{font-family:ff2_c00413;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00413;src:url('chunks/assets/font_1647454102fb14a3b17d910d.woff2')format("woff");}.ff3_c00413{font-family:ff3_c00413;line-height:1.104492;font-style:normal;font-weight:normal;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_71f4419739fd18aeb8508b0e.woff2')format("woff");}.ff4_c00413{font-family:ff4_c00413;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00413{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00413{vertical-align:0.000000px;}
.v1_c00413{vertical-align:32.039400px;}
.lsf_c00413{letter-spacing:-0.133038px;}
.ls5_c00413{letter-spacing:-0.063018px;}
.ls9_c00413{letter-spacing:-0.056016px;}
.lsd_c00413{letter-spacing:-0.049014px;}
.lse_c00413{letter-spacing:-0.042012px;}
.lsc_c00413{letter-spacing:-0.035010px;}
.ls7_c00413{letter-spacing:-0.028008px;}
.lsa_c00413{letter-spacing:-0.021006px;}
.lsb_c00413{letter-spacing:-0.014004px;}
.ls8_c00413{letter-spacing:-0.007002px;}
.ls6_c00413{letter-spacing:0.000000px;}
.ls3_c00413{letter-spacing:0.007002px;}
.ls1_c00413{letter-spacing:0.014004px;}
.ls4_c00413{letter-spacing:0.023281px;}
.ls2_c00413{letter-spacing:0.042012px;}
.ls0_c00413{letter-spacing:0.189054px;}
.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:-70.020000px;}
.ws1_c00413{word-spacing:-19.451556px;}
.ws2_c00413{word-spacing:-19.332522px;}
.ws3_c00413{word-spacing:-12.967628px;}
.ws8_c00413{word-spacing:-0.203058px;}
.wsa_c00413{word-spacing:-0.028008px;}
.ws4_c00413{word-spacing:0.000000px;}
.wsb_c00413{word-spacing:0.350100px;}
.ws6_c00413{word-spacing:0.371106px;}
.ws11_c00413{word-spacing:0.721206px;}
.ws15_c00413{word-spacing:1.057302px;}
.wse_c00413{word-spacing:1.778508px;}
.ws12_c00413{word-spacing:1.820520px;}
.ws17_c00413{word-spacing:3.963132px;}
.ws18_c00413{word-spacing:3.991140px;}
.ws16_c00413{word-spacing:6.161760px;}
.wsf_c00413{word-spacing:6.483852px;}
.ws7_c00413{word-spacing:9.725778px;}
.ws14_c00413{word-spacing:10.446984px;}
.ws5_c00413{word-spacing:11.896398px;}
.ws10_c00413{word-spacing:12.953700px;}
.ws13_c00413{word-spacing:14.795226px;}
.wsc_c00413{word-spacing:42.880248px;}
.wsd_c00413{word-spacing:43.146324px;}
.ws9_c00413{word-spacing:61.904682px;}
._4_c00413{margin-left:-61.491564px;}
._3_c00413{margin-left:-1.134324px;}
._1_c00413{width:1.246356px;}
._0_c00413{width:41.297796px;}
._2_c00413{width:52.662042px;}
._5_c00413{width:62.345808px;}
.fc0_c00413{color:rgb(0,0,0);}
.fs1_c00413{font-size:46.562400px;}
.fs0_c00413{font-size:70.020000px;}
.y0_c00413{bottom:0.000000px;}
.y2_c00413{bottom:109.740968px;}
.y1_c00413{bottom:129.810450px;}
.y22_c00413{bottom:172.560450px;}
.y21_c00413{bottom:202.710600px;}
.y20_c00413{bottom:232.950600px;}
.y1f_c00413{bottom:263.100450px;}
.y1e_c00413{bottom:293.340450px;}
.y1d_c00413{bottom:323.490450px;}
.y1c_c00413{bottom:353.730450px;}
.y1b_c00413{bottom:383.880450px;}
.y1a_c00413{bottom:414.120600px;}
.y19_c00413{bottom:444.270600px;}
.y18_c00413{bottom:474.510450px;}
.y17_c00413{bottom:504.660450px;}
.y16_c00413{bottom:534.900450px;}
.y15_c00413{bottom:565.050450px;}
.y14_c00413{bottom:595.290450px;}
.y13_c00413{bottom:625.440450px;}
.y12_c00413{bottom:655.680450px;}
.y11_c00413{bottom:685.830450px;}
.y10_c00413{bottom:716.070450px;}
.yf_c00413{bottom:746.220450px;}
.ye_c00413{bottom:776.460450px;}
.yd_c00413{bottom:806.700450px;}
.yc_c00413{bottom:836.850450px;}
.yb_c00413{bottom:867.090450px;}
.ya_c00413{bottom:897.240450px;}
.y9_c00413{bottom:927.480450px;}
.y8_c00413{bottom:957.630450px;}
.y7_c00413{bottom:987.870450px;}
.y6_c00413{bottom:1018.020450px;}
.y5_c00413{bottom:1048.260450px;}
.y4_c00413{bottom:1078.320450px;}
.y3_c00413{bottom:1109.730450px;}
.h2_c00413{height:62.600889px;}
.h1_c00413{height:62.771836px;}
.h4_c00413{height:63.216299px;}
.h3_c00413{height:73.668186px;}
.h0_c00413{height:1263.000000px;}
.w0_c00413{width:892.500000px;}
.x0_c00413{left:0.000000px;}
.x2_c00413{left:82.710059px;}
.x3_c00413{left:138.960000px;}
.x8_c00413{left:191.520000px;}
.x4_c00413{left:217.800000px;}
.x5_c00413{left:243.990000px;}
.x6_c00413{left:279.000000px;}
.x7_c00413{left:305.280000px;}
.x1_c00413{left:431.730000px;}
@media print{
.v0_c00413{vertical-align:0.000000pt;}
.v1_c00413{vertical-align:28.479467pt;}
.lsf_c00413{letter-spacing:-0.118256pt;}
.ls5_c00413{letter-spacing:-0.056016pt;}
.ls9_c00413{letter-spacing:-0.049792pt;}
.lsd_c00413{letter-spacing:-0.043568pt;}
.lse_c00413{letter-spacing:-0.037344pt;}
.lsc_c00413{letter-spacing:-0.031120pt;}
.ls7_c00413{letter-spacing:-0.024896pt;}
.lsa_c00413{letter-spacing:-0.018672pt;}
.lsb_c00413{letter-spacing:-0.012448pt;}
.ls8_c00413{letter-spacing:-0.006224pt;}
.ls6_c00413{letter-spacing:0.000000pt;}
.ls3_c00413{letter-spacing:0.006224pt;}
.ls1_c00413{letter-spacing:0.012448pt;}
.ls4_c00413{letter-spacing:0.020694pt;}
.ls2_c00413{letter-spacing:0.037344pt;}
.ls0_c00413{letter-spacing:0.168048pt;}
.ws0_c00413{word-spacing:-62.240000pt;}
.ws1_c00413{word-spacing:-17.290272pt;}
.ws2_c00413{word-spacing:-17.184464pt;}
.ws3_c00413{word-spacing:-11.526781pt;}
.ws8_c00413{word-spacing:-0.180496pt;}
.wsa_c00413{word-spacing:-0.024896pt;}
.ws4_c00413{word-spacing:0.000000pt;}
.wsb_c00413{word-spacing:0.311200pt;}
.ws6_c00413{word-spacing:0.329872pt;}
.ws11_c00413{word-spacing:0.641072pt;}
.ws15_c00413{word-spacing:0.939824pt;}
.wse_c00413{word-spacing:1.580896pt;}
.ws12_c00413{word-spacing:1.618240pt;}
.ws17_c00413{word-spacing:3.522784pt;}
.ws18_c00413{word-spacing:3.547680pt;}
.ws16_c00413{word-spacing:5.477120pt;}
.wsf_c00413{word-spacing:5.763424pt;}
.ws7_c00413{word-spacing:8.645136pt;}
.ws14_c00413{word-spacing:9.286208pt;}
.ws5_c00413{word-spacing:10.574576pt;}
.ws10_c00413{word-spacing:11.514400pt;}
.ws13_c00413{word-spacing:13.151312pt;}
.wsc_c00413{word-spacing:38.115776pt;}
.wsd_c00413{word-spacing:38.352288pt;}
.ws9_c00413{word-spacing:55.026384pt;}
._4_c00413{margin-left:-54.659168pt;}
._3_c00413{margin-left:-1.008288pt;}
._1_c00413{width:1.107872pt;}
._0_c00413{width:36.709152pt;}
._2_c00413{width:46.810704pt;}
._5_c00413{width:55.418496pt;}
.fs1_c00413{font-size:41.388800pt;}
.fs0_c00413{font-size:62.240000pt;}
.y0_c00413{bottom:0.000000pt;}
.y2_c00413{bottom:97.547527pt;}
.y1_c00413{bottom:115.387067pt;}
.y22_c00413{bottom:153.387067pt;}
.y21_c00413{bottom:180.187200pt;}
.y20_c00413{bottom:207.067200pt;}
.y1f_c00413{bottom:233.867067pt;}
.y1e_c00413{bottom:260.747067pt;}
.y1d_c00413{bottom:287.547067pt;}
.y1c_c00413{bottom:314.427067pt;}
.y1b_c00413{bottom:341.227067pt;}
.y1a_c00413{bottom:368.107200pt;}
.y19_c00413{bottom:394.907200pt;}
.y18_c00413{bottom:421.787067pt;}
.y17_c00413{bottom:448.587067pt;}
.y16_c00413{bottom:475.467067pt;}
.y15_c00413{bottom:502.267067pt;}
.y14_c00413{bottom:529.147067pt;}
.y13_c00413{bottom:555.947067pt;}
.y12_c00413{bottom:582.827067pt;}
.y11_c00413{bottom:609.627067pt;}
.y10_c00413{bottom:636.507067pt;}
.yf_c00413{bottom:663.307067pt;}
.ye_c00413{bottom:690.187067pt;}
.yd_c00413{bottom:717.067067pt;}
.yc_c00413{bottom:743.867067pt;}
.yb_c00413{bottom:770.747067pt;}
.ya_c00413{bottom:797.547067pt;}
.y9_c00413{bottom:824.427067pt;}
.y8_c00413{bottom:851.227067pt;}
.y7_c00413{bottom:878.107067pt;}
.y6_c00413{bottom:904.907067pt;}
.y5_c00413{bottom:931.787067pt;}
.y4_c00413{bottom:958.507067pt;}
.y3_c00413{bottom:986.427067pt;}
.h2_c00413{height:55.645234pt;}
.h1_c00413{height:55.797187pt;}
.h4_c00413{height:56.192266pt;}
.h3_c00413{height:65.482832pt;}
.h0_c00413{height:1122.666667pt;}
.w0_c00413{width:793.333333pt;}
.x0_c00413{left:0.000000pt;}
.x2_c00413{left:73.520052pt;}
.x3_c00413{left:123.520000pt;}
.x8_c00413{left:170.240000pt;}
.x4_c00413{left:193.600000pt;}
.x5_c00413{left:216.880000pt;}
.x6_c00413{left:248.000000pt;}
.x7_c00413{left:271.360000pt;}
.x1_c00413{left:383.760000pt;}
}





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

.ir_c00414:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00414{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00414;src:url('chunks/assets/font_7671eb82cba9218c6a4ab1d5.woff2')format("woff");}.ff1_c00414{font-family:ff1_c00414;line-height:1.106934;font-style:normal;font-weight:normal;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_d1b98736fa3a1115027051a9.woff2')format("woff");}.ff2_c00414{font-family:ff2_c00414;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00414{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00414{vertical-align:0.000000px;}
.ls2_c00414{letter-spacing:-0.063018px;}
.ls5_c00414{letter-spacing:-0.042012px;}
.ls7_c00414{letter-spacing:-0.028008px;}
.ls4_c00414{letter-spacing:-0.021006px;}
.ls6_c00414{letter-spacing:-0.014004px;}
.ls3_c00414{letter-spacing:0.000000px;}
.ls1_c00414{letter-spacing:0.014004px;}
.ls0_c00414{letter-spacing:0.070020px;}
.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;}
}
.ws2_c00414{word-spacing:-0.028008px;}
.ws1_c00414{word-spacing:-0.014004px;}
.ws0_c00414{word-spacing:0.000000px;}
.ws3_c00414{word-spacing:0.007002px;}
.ws5_c00414{word-spacing:0.014004px;}
.ws4_c00414{word-spacing:0.028008px;}
._1_c00414{margin-left:-1.036296px;}
._2_c00414{width:1.183338px;}
._0_c00414{width:8.283366px;}
.fc0_c00414{color:rgb(0,0,0);}
.fs0_c00414{font-size:70.020000px;}
.y0_c00414{bottom:0.000000px;}
.y2_c00414{bottom:109.740968px;}
.y1_c00414{bottom:129.810450px;}
.y1a_c00414{bottom:168.418083px;}
.y19_c00414{bottom:198.657970px;}
.y18_c00414{bottom:228.808582px;}
.y17_c00414{bottom:259.048470px;}
.y16_c00414{bottom:289.199082px;}
.y15_c00414{bottom:319.438969px;}
.y14_c00414{bottom:349.589581px;}
.y13_c00414{bottom:379.829469px;}
.y12_c00414{bottom:409.980081px;}
.y11_c00414{bottom:440.219968px;}
.y10_c00414{bottom:470.370580px;}
.yf_c00414{bottom:500.610468px;}
.ye_c00414{bottom:530.761080px;}
.yd_c00414{bottom:561.000967px;}
.yc_c00414{bottom:581.070450px;}
.yb_c00414{bottom:612.030450px;}
.ya_c00414{bottom:642.180450px;}
.y9_c00414{bottom:672.420450px;}
.y8_c00414{bottom:702.570450px;}
.y7_c00414{bottom:732.810450px;}
.y6_c00414{bottom:759.180450px;}
.y5_c00414{bottom:1049.340450px;}
.y4_c00414{bottom:1079.580450px;}
.y3_c00414{bottom:1109.730450px;}
.h1_c00414{height:62.771836px;}
.h2_c00414{height:63.216299px;}
.h0_c00414{height:1263.000000px;}
.w0_c00414{width:892.500000px;}
.x0_c00414{left:0.000000px;}
.x2_c00414{left:82.710059px;}
.x6_c00414{left:138.960000px;}
.x4_c00414{left:165.240000px;}
.x3_c00414{left:191.520000px;}
.x7_c00414{left:339.750000px;}
.x1_c00414{left:431.730000px;}
.x5_c00414{left:726.750000px;}
@media print{
.v0_c00414{vertical-align:0.000000pt;}
.ls2_c00414{letter-spacing:-0.056016pt;}
.ls5_c00414{letter-spacing:-0.037344pt;}
.ls7_c00414{letter-spacing:-0.024896pt;}
.ls4_c00414{letter-spacing:-0.018672pt;}
.ls6_c00414{letter-spacing:-0.012448pt;}
.ls3_c00414{letter-spacing:0.000000pt;}
.ls1_c00414{letter-spacing:0.012448pt;}
.ls0_c00414{letter-spacing:0.062240pt;}
.ws2_c00414{word-spacing:-0.024896pt;}
.ws1_c00414{word-spacing:-0.012448pt;}
.ws0_c00414{word-spacing:0.000000pt;}
.ws3_c00414{word-spacing:0.006224pt;}
.ws5_c00414{word-spacing:0.012448pt;}
.ws4_c00414{word-spacing:0.024896pt;}
._1_c00414{margin-left:-0.921152pt;}
._2_c00414{width:1.051856pt;}
._0_c00414{width:7.362992pt;}
.fs0_c00414{font-size:62.240000pt;}
.y0_c00414{bottom:0.000000pt;}
.y2_c00414{bottom:97.547527pt;}
.y1_c00414{bottom:115.387067pt;}
.y1a_c00414{bottom:149.704963pt;}
.y19_c00414{bottom:176.584863pt;}
.y18_c00414{bottom:203.385407pt;}
.y17_c00414{bottom:230.265307pt;}
.y16_c00414{bottom:257.065851pt;}
.y15_c00414{bottom:283.945751pt;}
.y14_c00414{bottom:310.746295pt;}
.y13_c00414{bottom:337.626195pt;}
.y12_c00414{bottom:364.426739pt;}
.y11_c00414{bottom:391.306639pt;}
.y10_c00414{bottom:418.107183pt;}
.yf_c00414{bottom:444.987083pt;}
.ye_c00414{bottom:471.787627pt;}
.yd_c00414{bottom:498.667527pt;}
.yc_c00414{bottom:516.507067pt;}
.yb_c00414{bottom:544.027067pt;}
.ya_c00414{bottom:570.827067pt;}
.y9_c00414{bottom:597.707067pt;}
.y8_c00414{bottom:624.507067pt;}
.y7_c00414{bottom:651.387067pt;}
.y6_c00414{bottom:674.827067pt;}
.y5_c00414{bottom:932.747067pt;}
.y4_c00414{bottom:959.627067pt;}
.y3_c00414{bottom:986.427067pt;}
.h1_c00414{height:55.797187pt;}
.h2_c00414{height:56.192266pt;}
.h0_c00414{height:1122.666667pt;}
.w0_c00414{width:793.333333pt;}
.x0_c00414{left:0.000000pt;}
.x2_c00414{left:73.520052pt;}
.x6_c00414{left:123.520000pt;}
.x4_c00414{left:146.880000pt;}
.x3_c00414{left:170.240000pt;}
.x7_c00414{left:302.000000pt;}
.x1_c00414{left:383.760000pt;}
.x5_c00414{left:646.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_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_1f8032764ae9fd62816fa1ef.woff2')format("woff");}.ff1_c00415{font-family:ff1_c00415;line-height:1.106934;font-style:normal;font-weight:normal;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_f8e7a8d8dfdb359df6b162c5.woff2')format("woff");}.ff2_c00415{font-family:ff2_c00415;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00415;src:url('chunks/assets/font_68b738d6248dbc02b3804c60.woff2')format("woff");}.ff3_c00415{font-family:ff3_c00415;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00415{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00415{vertical-align:0.000000px;}
.ls10_c00415{letter-spacing:-0.427122px;}
.lsf_c00415{letter-spacing:-0.091026px;}
.ls4_c00415{letter-spacing:-0.063018px;}
.lsd_c00415{letter-spacing:-0.056016px;}
.lsc_c00415{letter-spacing:-0.049014px;}
.ls7_c00415{letter-spacing:-0.042012px;}
.ls9_c00415{letter-spacing:-0.035010px;}
.lsa_c00415{letter-spacing:-0.028008px;}
.ls8_c00415{letter-spacing:-0.021006px;}
.lse_c00415{letter-spacing:-0.014004px;}
.lsb_c00415{letter-spacing:-0.007002px;}
.ls5_c00415{letter-spacing:0.000000px;}
.ls2_c00415{letter-spacing:0.007002px;}
.ls3_c00415{letter-spacing:0.014004px;}
.ls6_c00415{letter-spacing:0.098028px;}
.ls1_c00415{letter-spacing:0.273078px;}
.ls0_c00415{letter-spacing:6.091740px;}
.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:0.000000px;}
.ws36_c00415{word-spacing:0.014004px;}
.wsb_c00415{word-spacing:0.028008px;}
.ws1e_c00415{word-spacing:0.336096px;}
.wsa_c00415{word-spacing:0.350100px;}
.ws5_c00415{word-spacing:1.085310px;}
.ws9_c00415{word-spacing:1.456416px;}
.ws1d_c00415{word-spacing:2.198628px;}
.ws32_c00415{word-spacing:2.863818px;}
.ws33_c00415{word-spacing:3.220920px;}
.ws12_c00415{word-spacing:4.348242px;}
.ws35_c00415{word-spacing:5.055444px;}
.ws3_c00415{word-spacing:5.475564px;}
.ws1_c00415{word-spacing:6.007716px;}
.ws2_c00415{word-spacing:6.147756px;}
.ws39_c00415{word-spacing:6.511860px;}
.ws3a_c00415{word-spacing:6.896970px;}
.ws7_c00415{word-spacing:9.382680px;}
.ws1c_c00415{word-spacing:9.711774px;}
.ws6_c00415{word-spacing:10.103886px;}
.ws4_c00415{word-spacing:12.582594px;}
.ws37_c00415{word-spacing:15.502428px;}
.wse_c00415{word-spacing:16.216632px;}
.ws19_c00415{word-spacing:16.909830px;}
.ws13_c00415{word-spacing:19.122462px;}
.ws23_c00415{word-spacing:19.451556px;}
.ws20_c00415{word-spacing:20.158758px;}
.ws10_c00415{word-spacing:20.165760px;}
.ws1a_c00415{word-spacing:21.237066px;}
.wsc_c00415{word-spacing:21.965274px;}
.wsd_c00415{word-spacing:22.336380px;}
.ws26_c00415{word-spacing:23.400684px;}
.ws2a_c00415{word-spacing:23.743782px;}
.ws27_c00415{word-spacing:25.606314px;}
.ws29_c00415{word-spacing:26.649612px;}
.ws8_c00415{word-spacing:26.656614px;}
.wsf_c00415{word-spacing:27.034722px;}
.ws40_c00415{word-spacing:28.057014px;}
.ws22_c00415{word-spacing:32.020146px;}
.ws21_c00415{word-spacing:32.118174px;}
.ws28_c00415{word-spacing:32.370246px;}
.ws1f_c00415{word-spacing:32.412258px;}
.ws38_c00415{word-spacing:32.426262px;}
.ws18_c00415{word-spacing:33.819660px;}
.ws2f_c00415{word-spacing:35.647182px;}
.ws41_c00415{word-spacing:36.697482px;}
.ws3b_c00415{word-spacing:42.502140px;}
.ws14_c00415{word-spacing:45.702054px;}
.ws34_c00415{word-spacing:46.430262px;}
.ws31_c00415{word-spacing:48.621888px;}
.ws2e_c00415{word-spacing:50.064300px;}
.ws3c_c00415{word-spacing:50.085306px;}
.ws11_c00415{word-spacing:50.386392px;}
.ws2b_c00415{word-spacing:52.942122px;}
.ws24_c00415{word-spacing:57.213342px;}
.ws2c_c00415{word-spacing:59.082876px;}
.ws25_c00415{word-spacing:63.739206px;}
.ws3d_c00415{word-spacing:72.358668px;}
.ws16_c00415{word-spacing:73.815084px;}
.ws3e_c00415{word-spacing:83.540862px;}
.ws2d_c00415{word-spacing:85.305366px;}
.ws17_c00415{word-spacing:88.218198px;}
.ws30_c00415{word-spacing:99.722484px;}
.ws15_c00415{word-spacing:110.134458px;}
.ws3f_c00415{word-spacing:126.007992px;}
.ws1b_c00415{word-spacing:143.639028px;}
._0_c00415{margin-left:-1.043298px;}
._1_c00415{width:1.285434px;}
.fc0_c00415{color:rgb(0,0,0);}
.fs0_c00415{font-size:70.020000px;}
.y0_c00415{bottom:0.000000px;}
.y2_c00415{bottom:109.740968px;}
.y1_c00415{bottom:129.810450px;}
.y39_c00415{bottom:163.110450px;}
.y21_c00415{bottom:183.537035px;}
.y38_c00415{bottom:193.260450px;}
.y20_c00415{bottom:213.776922px;}
.y37_c00415{bottom:223.500450px;}
.y1f_c00415{bottom:243.836508px;}
.y36_c00415{bottom:253.650450px;}
.y1e_c00415{bottom:274.076396px;}
.y35_c00415{bottom:283.890450px;}
.y1d_c00415{bottom:304.227008px;}
.y34_c00415{bottom:314.040450px;}
.y1c_c00415{bottom:334.466895px;}
.y33_c00415{bottom:344.280450px;}
.y1b_c00415{bottom:364.617507px;}
.y32_c00415{bottom:374.430450px;}
.y1a_c00415{bottom:394.857395px;}
.y31_c00415{bottom:404.670450px;}
.y19_c00415{bottom:425.008007px;}
.y30_c00415{bottom:434.730450px;}
.y18_c00415{bottom:455.247894px;}
.y17_c00415{bottom:485.398506px;}
.y2f_c00415{bottom:485.400450px;}
.y16_c00415{bottom:515.638394px;}
.y2e_c00415{bottom:536.070450px;}
.y15_c00415{bottom:545.789006px;}
.y2d_c00415{bottom:566.310450px;}
.y14_c00415{bottom:576.028893px;}
.y2c_c00415{bottom:596.460450px;}
.y13_c00415{bottom:606.179505px;}
.y2b_c00415{bottom:626.610450px;}
.y12_c00415{bottom:636.419393px;}
.y2a_c00415{bottom:656.850450px;}
.y11_c00415{bottom:666.659280px;}
.y29_c00415{bottom:687.000450px;}
.y10_c00415{bottom:696.809892px;}
.y28_c00415{bottom:717.240450px;}
.yf_c00415{bottom:727.049779px;}
.y27_c00415{bottom:747.390450px;}
.ye_c00415{bottom:757.200392px;}
.y26_c00415{bottom:777.630450px;}
.yd_c00415{bottom:787.440279px;}
.y25_c00415{bottom:807.780450px;}
.yc_c00415{bottom:817.590891px;}
.y24_c00415{bottom:838.020450px;}
.yb_c00415{bottom:847.830779px;}
.y23_c00415{bottom:868.170450px;}
.ya_c00415{bottom:898.320450px;}
.y22_c00415{bottom:898.410450px;}
.y9_c00415{bottom:928.560450px;}
.y8_c00415{bottom:958.800450px;}
.y7_c00415{bottom:988.950450px;}
.y6_c00415{bottom:1019.190450px;}
.y5_c00415{bottom:1049.340450px;}
.y4_c00415{bottom:1079.580450px;}
.y3_c00415{bottom:1109.730450px;}
.h3_c00415{height:62.600889px;}
.h1_c00415{height:62.771836px;}
.h2_c00415{height:63.216299px;}
.h0_c00415{height:1263.000000px;}
.w0_c00415{width:892.500000px;}
.x0_c00415{left:0.000000px;}
.x2_c00415{left:82.710059px;}
.x3_c00415{left:138.960000px;}
.x1_c00415{left:431.730000px;}
.x4_c00415{left:454.230000px;}
@media print{
.v0_c00415{vertical-align:0.000000pt;}
.ls10_c00415{letter-spacing:-0.379664pt;}
.lsf_c00415{letter-spacing:-0.080912pt;}
.ls4_c00415{letter-spacing:-0.056016pt;}
.lsd_c00415{letter-spacing:-0.049792pt;}
.lsc_c00415{letter-spacing:-0.043568pt;}
.ls7_c00415{letter-spacing:-0.037344pt;}
.ls9_c00415{letter-spacing:-0.031120pt;}
.lsa_c00415{letter-spacing:-0.024896pt;}
.ls8_c00415{letter-spacing:-0.018672pt;}
.lse_c00415{letter-spacing:-0.012448pt;}
.lsb_c00415{letter-spacing:-0.006224pt;}
.ls5_c00415{letter-spacing:0.000000pt;}
.ls2_c00415{letter-spacing:0.006224pt;}
.ls3_c00415{letter-spacing:0.012448pt;}
.ls6_c00415{letter-spacing:0.087136pt;}
.ls1_c00415{letter-spacing:0.242736pt;}
.ls0_c00415{letter-spacing:5.414880pt;}
.ws0_c00415{word-spacing:0.000000pt;}
.ws36_c00415{word-spacing:0.012448pt;}
.wsb_c00415{word-spacing:0.024896pt;}
.ws1e_c00415{word-spacing:0.298752pt;}
.wsa_c00415{word-spacing:0.311200pt;}
.ws5_c00415{word-spacing:0.964720pt;}
.ws9_c00415{word-spacing:1.294592pt;}
.ws1d_c00415{word-spacing:1.954336pt;}
.ws32_c00415{word-spacing:2.545616pt;}
.ws33_c00415{word-spacing:2.863040pt;}
.ws12_c00415{word-spacing:3.865104pt;}
.ws35_c00415{word-spacing:4.493728pt;}
.ws3_c00415{word-spacing:4.867168pt;}
.ws1_c00415{word-spacing:5.340192pt;}
.ws2_c00415{word-spacing:5.464672pt;}
.ws39_c00415{word-spacing:5.788320pt;}
.ws3a_c00415{word-spacing:6.130640pt;}
.ws7_c00415{word-spacing:8.340160pt;}
.ws1c_c00415{word-spacing:8.632688pt;}
.ws6_c00415{word-spacing:8.981232pt;}
.ws4_c00415{word-spacing:11.184528pt;}
.ws37_c00415{word-spacing:13.779936pt;}
.wse_c00415{word-spacing:14.414784pt;}
.ws19_c00415{word-spacing:15.030960pt;}
.ws13_c00415{word-spacing:16.997744pt;}
.ws23_c00415{word-spacing:17.290272pt;}
.ws20_c00415{word-spacing:17.918896pt;}
.ws10_c00415{word-spacing:17.925120pt;}
.ws1a_c00415{word-spacing:18.877392pt;}
.wsc_c00415{word-spacing:19.524688pt;}
.wsd_c00415{word-spacing:19.854560pt;}
.ws26_c00415{word-spacing:20.800608pt;}
.ws2a_c00415{word-spacing:21.105584pt;}
.ws27_c00415{word-spacing:22.761168pt;}
.ws29_c00415{word-spacing:23.688544pt;}
.ws8_c00415{word-spacing:23.694768pt;}
.wsf_c00415{word-spacing:24.030864pt;}
.ws40_c00415{word-spacing:24.939568pt;}
.ws22_c00415{word-spacing:28.462352pt;}
.ws21_c00415{word-spacing:28.549488pt;}
.ws28_c00415{word-spacing:28.773552pt;}
.ws1f_c00415{word-spacing:28.810896pt;}
.ws38_c00415{word-spacing:28.823344pt;}
.ws18_c00415{word-spacing:30.061920pt;}
.ws2f_c00415{word-spacing:31.686384pt;}
.ws41_c00415{word-spacing:32.619984pt;}
.ws3b_c00415{word-spacing:37.779680pt;}
.ws14_c00415{word-spacing:40.624048pt;}
.ws34_c00415{word-spacing:41.271344pt;}
.ws31_c00415{word-spacing:43.219456pt;}
.ws2e_c00415{word-spacing:44.501600pt;}
.ws3c_c00415{word-spacing:44.520272pt;}
.ws11_c00415{word-spacing:44.787904pt;}
.ws2b_c00415{word-spacing:47.059664pt;}
.ws24_c00415{word-spacing:50.856304pt;}
.ws2c_c00415{word-spacing:52.518112pt;}
.ws25_c00415{word-spacing:56.657072pt;}
.ws3d_c00415{word-spacing:64.318816pt;}
.ws16_c00415{word-spacing:65.613408pt;}
.ws3e_c00415{word-spacing:74.258544pt;}
.ws2d_c00415{word-spacing:75.826992pt;}
.ws17_c00415{word-spacing:78.416176pt;}
.ws30_c00415{word-spacing:88.642208pt;}
.ws15_c00415{word-spacing:97.897296pt;}
.ws3f_c00415{word-spacing:112.007104pt;}
.ws1b_c00415{word-spacing:127.679136pt;}
._0_c00415{margin-left:-0.927376pt;}
._1_c00415{width:1.142608pt;}
.fs0_c00415{font-size:62.240000pt;}
.y0_c00415{bottom:0.000000pt;}
.y2_c00415{bottom:97.547527pt;}
.y1_c00415{bottom:115.387067pt;}
.y39_c00415{bottom:144.987067pt;}
.y21_c00415{bottom:163.144031pt;}
.y38_c00415{bottom:171.787067pt;}
.y20_c00415{bottom:190.023931pt;}
.y37_c00415{bottom:198.667067pt;}
.y1f_c00415{bottom:216.743563pt;}
.y36_c00415{bottom:225.467067pt;}
.y1e_c00415{bottom:243.623463pt;}
.y35_c00415{bottom:252.347067pt;}
.y1d_c00415{bottom:270.424007pt;}
.y34_c00415{bottom:279.147067pt;}
.y1c_c00415{bottom:297.303907pt;}
.y33_c00415{bottom:306.027067pt;}
.y1b_c00415{bottom:324.104451pt;}
.y32_c00415{bottom:332.827067pt;}
.y1a_c00415{bottom:350.984351pt;}
.y31_c00415{bottom:359.707067pt;}
.y19_c00415{bottom:377.784895pt;}
.y30_c00415{bottom:386.427067pt;}
.y18_c00415{bottom:404.664795pt;}
.y17_c00415{bottom:431.465339pt;}
.y2f_c00415{bottom:431.467067pt;}
.y16_c00415{bottom:458.345239pt;}
.y2e_c00415{bottom:476.507067pt;}
.y15_c00415{bottom:485.145783pt;}
.y2d_c00415{bottom:503.387067pt;}
.y14_c00415{bottom:512.025683pt;}
.y2c_c00415{bottom:530.187067pt;}
.y13_c00415{bottom:538.826227pt;}
.y2b_c00415{bottom:556.987067pt;}
.y12_c00415{bottom:565.706127pt;}
.y2a_c00415{bottom:583.867067pt;}
.y11_c00415{bottom:592.586027pt;}
.y29_c00415{bottom:610.667067pt;}
.y10_c00415{bottom:619.386571pt;}
.y28_c00415{bottom:637.547067pt;}
.yf_c00415{bottom:646.266471pt;}
.y27_c00415{bottom:664.347067pt;}
.ye_c00415{bottom:673.067015pt;}
.y26_c00415{bottom:691.227067pt;}
.yd_c00415{bottom:699.946915pt;}
.y25_c00415{bottom:718.027067pt;}
.yc_c00415{bottom:726.747459pt;}
.y24_c00415{bottom:744.907067pt;}
.yb_c00415{bottom:753.627359pt;}
.y23_c00415{bottom:771.707067pt;}
.ya_c00415{bottom:798.507067pt;}
.y22_c00415{bottom:798.587067pt;}
.y9_c00415{bottom:825.387067pt;}
.y8_c00415{bottom:852.267067pt;}
.y7_c00415{bottom:879.067067pt;}
.y6_c00415{bottom:905.947067pt;}
.y5_c00415{bottom:932.747067pt;}
.y4_c00415{bottom:959.627067pt;}
.y3_c00415{bottom:986.427067pt;}
.h3_c00415{height:55.645234pt;}
.h1_c00415{height:55.797187pt;}
.h2_c00415{height:56.192266pt;}
.h0_c00415{height:1122.666667pt;}
.w0_c00415{width:793.333333pt;}
.x0_c00415{left:0.000000pt;}
.x2_c00415{left:73.520052pt;}
.x3_c00415{left:123.520000pt;}
.x1_c00415{left:383.760000pt;}
.x4_c00415{left:403.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_df70b4f33ba1087194d0464b.woff2')format("woff");}.ff1_c00416{font-family:ff1_c00416;line-height:1.106934;font-style:normal;font-weight:normal;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_01a570abac4955647fb94525.woff2')format("woff");}.ff2_c00416{font-family:ff2_c00416;line-height:1.104492;font-style:normal;font-weight:normal;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_71f4419739fd18aeb8508b0e.woff2')format("woff");}.ff3_c00416{font-family:ff3_c00416;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00416{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00416{vertical-align:0.000000px;}
.v1_c00416{vertical-align:32.051844px;}
.lsc_c00416{letter-spacing:-0.077022px;}
.lsa_c00416{letter-spacing:-0.063018px;}
.ls11_c00416{letter-spacing:-0.056016px;}
.ls12_c00416{letter-spacing:-0.042012px;}
.lsf_c00416{letter-spacing:-0.035010px;}
.lse_c00416{letter-spacing:-0.021006px;}
.lsd_c00416{letter-spacing:-0.014004px;}
.ls10_c00416{letter-spacing:-0.007002px;}
.lsb_c00416{letter-spacing:0.000000px;}
.ls9_c00416{letter-spacing:0.007002px;}
.ls1_c00416{letter-spacing:0.014004px;}
.ls4_c00416{letter-spacing:0.021006px;}
.ls5_c00416{letter-spacing:0.023281px;}
.ls6_c00416{letter-spacing:0.028008px;}
.ls7_c00416{letter-spacing:0.035010px;}
.ls2_c00416{letter-spacing:0.042012px;}
.ls3_c00416{letter-spacing:0.049014px;}
.ls0_c00416{letter-spacing:0.056016px;}
.ls8_c00416{letter-spacing:0.063018px;}
.sc__c00416{text-shadow:none;}
.sc0_c00416{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00416{-webkit-text-stroke:0px transparent;}
.sc0_c00416{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00416{word-spacing:-19.486566px;}
.ws1_c00416{word-spacing:-12.967628px;}
.ws25_c00416{word-spacing:-0.014004px;}
.ws2_c00416{word-spacing:0.000000px;}
.ws18_c00416{word-spacing:0.350100px;}
.ws3_c00416{word-spacing:0.420120px;}
.wsb_c00416{word-spacing:0.665190px;}
.ws1b_c00416{word-spacing:1.071306px;}
.ws5_c00416{word-spacing:1.428408px;}
.ws22_c00416{word-spacing:1.806516px;}
.ws7_c00416{word-spacing:3.571020px;}
.ws14_c00416{word-spacing:5.440554px;}
.ws19_c00416{word-spacing:6.126750px;}
.ws15_c00416{word-spacing:7.555158px;}
.ws1a_c00416{word-spacing:9.732780px;}
.ws1c_c00416{word-spacing:12.267504px;}
.ws4_c00416{word-spacing:12.890682px;}
.wsc_c00416{word-spacing:12.967704px;}
.wse_c00416{word-spacing:14.375106px;}
.ws23_c00416{word-spacing:16.538724px;}
.wsd_c00416{word-spacing:23.393682px;}
.ws1e_c00416{word-spacing:29.870532px;}
.wsa_c00416{word-spacing:32.062158px;}
.ws24_c00416{word-spacing:33.882678px;}
.ws9_c00416{word-spacing:34.561872px;}
.ws1f_c00416{word-spacing:34.582878px;}
.wsf_c00416{word-spacing:35.577162px;}
.ws16_c00416{word-spacing:37.460700px;}
.ws21_c00416{word-spacing:39.953412px;}
.ws12_c00416{word-spacing:58.277646px;}
.ws13_c00416{word-spacing:62.996994px;}
.ws1d_c00416{word-spacing:71.588448px;}
.ws6_c00416{word-spacing:73.079874px;}
.ws11_c00416{word-spacing:75.292506px;}
.ws20_c00416{word-spacing:82.364526px;}
.ws8_c00416{word-spacing:88.204194px;}
.ws17_c00416{word-spacing:99.029286px;}
.ws10_c00416{word-spacing:114.125598px;}
._1_c00416{margin-left:-3.094884px;}
._2_c00416{margin-left:-1.246356px;}
._0_c00416{width:1.225350px;}
.fc0_c00416{color:rgb(0,0,0);}
.fs1_c00416{font-size:46.562400px;}
.fs0_c00416{font-size:70.020000px;}
.y0_c00416{bottom:0.000000px;}
.y2_c00416{bottom:109.740968px;}
.y1_c00416{bottom:129.810450px;}
.y33_c00416{bottom:182.818339px;}
.y32_c00416{bottom:212.968951px;}
.y31_c00416{bottom:243.208839px;}
.y30_c00416{bottom:273.359451px;}
.y2f_c00416{bottom:303.599338px;}
.y2e_c00416{bottom:333.749950px;}
.y2d_c00416{bottom:363.989838px;}
.y2c_c00416{bottom:394.140450px;}
.y2b_c00416{bottom:425.010450px;}
.y2a_c00416{bottom:455.250450px;}
.y29_c00416{bottom:485.400450px;}
.y28_c00416{bottom:515.640450px;}
.y27_c00416{bottom:545.790450px;}
.y26_c00416{bottom:576.030450px;}
.y14_c00416{bottom:596.459950px;}
.y25_c00416{bottom:606.180450px;}
.y13_c00416{bottom:626.610563px;}
.y24_c00416{bottom:636.420450px;}
.y12_c00416{bottom:656.847489px;}
.y23_c00416{bottom:666.660450px;}
.y11_c00416{bottom:686.998101px;}
.y22_c00416{bottom:696.810450px;}
.y10_c00416{bottom:717.237989px;}
.y21_c00416{bottom:727.050450px;}
.yf_c00416{bottom:747.388601px;}
.y20_c00416{bottom:757.200450px;}
.ye_c00416{bottom:777.628488px;}
.y1f_c00416{bottom:787.440450px;}
.yd_c00416{bottom:807.779100px;}
.y1e_c00416{bottom:817.590450px;}
.yc_c00416{bottom:838.018988px;}
.y1d_c00416{bottom:868.080450px;}
.yb_c00416{bottom:868.169600px;}
.ya_c00416{bottom:898.409487px;}
.y1c_c00416{bottom:898.410450px;}
.y9_c00416{bottom:928.560099px;}
.y1b_c00416{bottom:928.560450px;}
.y8_c00416{bottom:958.799987px;}
.y1a_c00416{bottom:958.800450px;}
.y19_c00416{bottom:988.950450px;}
.y7_c00416{bottom:988.950599px;}
.y18_c00416{bottom:1019.190450px;}
.y6_c00416{bottom:1019.190486px;}
.y17_c00416{bottom:1049.340450px;}
.y5_c00416{bottom:1049.341098px;}
.y16_c00416{bottom:1079.580450px;}
.y4_c00416{bottom:1079.580985px;}
.y15_c00416{bottom:1109.730450px;}
.y3_c00416{bottom:1109.731597px;}
.h2_c00416{height:62.600889px;}
.h1_c00416{height:62.771836px;}
.h5_c00416{height:63.216299px;}
.h3_c00416{height:73.680630px;}
.h4_c00416{height:74.029386px;}
.h0_c00416{height:1263.000000px;}
.w0_c00416{width:892.500000px;}
.x0_c00416{left:0.000000px;}
.x2_c00416{left:82.710059px;}
.x3_c00416{left:138.960626px;}
.x1_c00416{left:431.730000px;}
.x5_c00416{left:446.310000px;}
.x4_c00416{left:454.230000px;}
@media print{
.v0_c00416{vertical-align:0.000000pt;}
.v1_c00416{vertical-align:28.490528pt;}
.lsc_c00416{letter-spacing:-0.068464pt;}
.lsa_c00416{letter-spacing:-0.056016pt;}
.ls11_c00416{letter-spacing:-0.049792pt;}
.ls12_c00416{letter-spacing:-0.037344pt;}
.lsf_c00416{letter-spacing:-0.031120pt;}
.lse_c00416{letter-spacing:-0.018672pt;}
.lsd_c00416{letter-spacing:-0.012448pt;}
.ls10_c00416{letter-spacing:-0.006224pt;}
.lsb_c00416{letter-spacing:0.000000pt;}
.ls9_c00416{letter-spacing:0.006224pt;}
.ls1_c00416{letter-spacing:0.012448pt;}
.ls4_c00416{letter-spacing:0.018672pt;}
.ls5_c00416{letter-spacing:0.020694pt;}
.ls6_c00416{letter-spacing:0.024896pt;}
.ls7_c00416{letter-spacing:0.031120pt;}
.ls2_c00416{letter-spacing:0.037344pt;}
.ls3_c00416{letter-spacing:0.043568pt;}
.ls0_c00416{letter-spacing:0.049792pt;}
.ls8_c00416{letter-spacing:0.056016pt;}
.ws0_c00416{word-spacing:-17.321392pt;}
.ws1_c00416{word-spacing:-11.526781pt;}
.ws25_c00416{word-spacing:-0.012448pt;}
.ws2_c00416{word-spacing:0.000000pt;}
.ws18_c00416{word-spacing:0.311200pt;}
.ws3_c00416{word-spacing:0.373440pt;}
.wsb_c00416{word-spacing:0.591280pt;}
.ws1b_c00416{word-spacing:0.952272pt;}
.ws5_c00416{word-spacing:1.269696pt;}
.ws22_c00416{word-spacing:1.605792pt;}
.ws7_c00416{word-spacing:3.174240pt;}
.ws14_c00416{word-spacing:4.836048pt;}
.ws19_c00416{word-spacing:5.446000pt;}
.ws15_c00416{word-spacing:6.715696pt;}
.ws1a_c00416{word-spacing:8.651360pt;}
.ws1c_c00416{word-spacing:10.904448pt;}
.ws4_c00416{word-spacing:11.458384pt;}
.wsc_c00416{word-spacing:11.526848pt;}
.wse_c00416{word-spacing:12.777872pt;}
.ws23_c00416{word-spacing:14.701088pt;}
.wsd_c00416{word-spacing:20.794384pt;}
.ws1e_c00416{word-spacing:26.551584pt;}
.wsa_c00416{word-spacing:28.499696pt;}
.ws24_c00416{word-spacing:30.117936pt;}
.ws9_c00416{word-spacing:30.721664pt;}
.ws1f_c00416{word-spacing:30.740336pt;}
.wsf_c00416{word-spacing:31.624144pt;}
.ws16_c00416{word-spacing:33.298400pt;}
.ws21_c00416{word-spacing:35.514144pt;}
.ws12_c00416{word-spacing:51.802352pt;}
.ws13_c00416{word-spacing:55.997328pt;}
.ws1d_c00416{word-spacing:63.634176pt;}
.ws6_c00416{word-spacing:64.959888pt;}
.ws11_c00416{word-spacing:66.926672pt;}
.ws20_c00416{word-spacing:73.212912pt;}
.ws8_c00416{word-spacing:78.403728pt;}
.ws17_c00416{word-spacing:88.026032pt;}
.ws10_c00416{word-spacing:101.444976pt;}
._1_c00416{margin-left:-2.751008pt;}
._2_c00416{margin-left:-1.107872pt;}
._0_c00416{width:1.089200pt;}
.fs1_c00416{font-size:41.388800pt;}
.fs0_c00416{font-size:62.240000pt;}
.y0_c00416{bottom:0.000000pt;}
.y2_c00416{bottom:97.547527pt;}
.y1_c00416{bottom:115.387067pt;}
.y33_c00416{bottom:162.505191pt;}
.y32_c00416{bottom:189.305735pt;}
.y31_c00416{bottom:216.185635pt;}
.y30_c00416{bottom:242.986179pt;}
.y2f_c00416{bottom:269.866079pt;}
.y2e_c00416{bottom:296.666623pt;}
.y2d_c00416{bottom:323.546523pt;}
.y2c_c00416{bottom:350.347067pt;}
.y2b_c00416{bottom:377.787067pt;}
.y2a_c00416{bottom:404.667067pt;}
.y29_c00416{bottom:431.467067pt;}
.y28_c00416{bottom:458.347067pt;}
.y27_c00416{bottom:485.147067pt;}
.y26_c00416{bottom:512.027067pt;}
.y14_c00416{bottom:530.186623pt;}
.y25_c00416{bottom:538.827067pt;}
.y13_c00416{bottom:556.987167pt;}
.y24_c00416{bottom:565.707067pt;}
.y12_c00416{bottom:583.864435pt;}
.y23_c00416{bottom:592.587067pt;}
.y11_c00416{bottom:610.664979pt;}
.y22_c00416{bottom:619.387067pt;}
.y10_c00416{bottom:637.544879pt;}
.y21_c00416{bottom:646.267067pt;}
.yf_c00416{bottom:664.345423pt;}
.y20_c00416{bottom:673.067067pt;}
.ye_c00416{bottom:691.225323pt;}
.y1f_c00416{bottom:699.947067pt;}
.yd_c00416{bottom:718.025867pt;}
.y1e_c00416{bottom:726.747067pt;}
.yc_c00416{bottom:744.905767pt;}
.y1d_c00416{bottom:771.627067pt;}
.yb_c00416{bottom:771.706311pt;}
.ya_c00416{bottom:798.586211pt;}
.y1c_c00416{bottom:798.587067pt;}
.y9_c00416{bottom:825.386755pt;}
.y1b_c00416{bottom:825.387067pt;}
.y8_c00416{bottom:852.266655pt;}
.y1a_c00416{bottom:852.267067pt;}
.y19_c00416{bottom:879.067067pt;}
.y7_c00416{bottom:879.067199pt;}
.y18_c00416{bottom:905.947067pt;}
.y6_c00416{bottom:905.947099pt;}
.y17_c00416{bottom:932.747067pt;}
.y5_c00416{bottom:932.747643pt;}
.y16_c00416{bottom:959.627067pt;}
.y4_c00416{bottom:959.627543pt;}
.y15_c00416{bottom:986.427067pt;}
.y3_c00416{bottom:986.428087pt;}
.h2_c00416{height:55.645234pt;}
.h1_c00416{height:55.797187pt;}
.h5_c00416{height:56.192266pt;}
.h3_c00416{height:65.493894pt;}
.h4_c00416{height:65.803899pt;}
.h0_c00416{height:1122.666667pt;}
.w0_c00416{width:793.333333pt;}
.x0_c00416{left:0.000000pt;}
.x2_c00416{left:73.520052pt;}
.x3_c00416{left:123.520556pt;}
.x1_c00416{left:383.760000pt;}
.x5_c00416{left:396.720000pt;}
.x4_c00416{left:403.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1b368f30fad20c98c16c4e25.woff2')format("woff");}.ff1_c00417{font-family:ff1_c00417;line-height:1.106934;font-style:normal;font-weight:normal;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_abd827d5c11c4774884f7a83.woff2')format("woff");}.ff2_c00417{font-family:ff2_c00417;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00417;src:url('chunks/assets/font_df041c97069d9c9b279185de.woff2')format("woff");}.ff3_c00417{font-family:ff3_c00417;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00417;src:url('chunks/assets/font_74d2264d638b16706353736e.woff2')format("woff");}.ff4_c00417{font-family:ff4_c00417;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00417{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00417{vertical-align:0.000000px;}
.ls4_c00417{letter-spacing:-0.063018px;}
.lsb_c00417{letter-spacing:-0.049014px;}
.ls9_c00417{letter-spacing:-0.042012px;}
.ls6_c00417{letter-spacing:-0.028008px;}
.lsa_c00417{letter-spacing:-0.021006px;}
.ls8_c00417{letter-spacing:-0.014004px;}
.ls7_c00417{letter-spacing:-0.007002px;}
.ls5_c00417{letter-spacing:0.000000px;}
.ls3_c00417{letter-spacing:0.007002px;}
.ls2_c00417{letter-spacing:0.014004px;}
.ls0_c00417{letter-spacing:0.042012px;}
.ls1_c00417{letter-spacing:0.063018px;}
.sc__c00417{text-shadow:none;}
.sc0_c00417{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00417{-webkit-text-stroke:0px transparent;}
.sc0_c00417{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00417{word-spacing:-70.020000px;}
.ws0_c00417{word-spacing:-19.528578px;}
.ws4_c00417{word-spacing:-0.056016px;}
.ws2_c00417{word-spacing:0.000000px;}
.ws3_c00417{word-spacing:0.014004px;}
.ws7_c00417{word-spacing:0.343098px;}
.ws11_c00417{word-spacing:0.364104px;}
.ws9_c00417{word-spacing:0.371106px;}
.ws13_c00417{word-spacing:0.392112px;}
.ws10_c00417{word-spacing:4.299228px;}
.wsf_c00417{word-spacing:6.133752px;}
.ws12_c00417{word-spacing:10.096884px;}
.wsb_c00417{word-spacing:15.495426px;}
.ws8_c00417{word-spacing:15.866532px;}
.wse_c00417{word-spacing:18.331236px;}
.wsd_c00417{word-spacing:18.366246px;}
.wsc_c00417{word-spacing:19.801656px;}
.ws6_c00417{word-spacing:35.997282px;}
.ws5_c00417{word-spacing:38.875104px;}
.wsa_c00417{word-spacing:61.918686px;}
._4_c00417{margin-left:-61.106454px;}
._2_c00417{margin-left:-1.106316px;}
._0_c00417{width:1.036296px;}
._7_c00417{width:6.259788px;}
._1_c00417{width:8.283366px;}
._3_c00417{width:37.341666px;}
._6_c00417{width:46.906398px;}
._5_c00417{width:62.373816px;}
.fc0_c00417{color:rgb(0,0,0);}
.fs0_c00417{font-size:70.020000px;}
.y0_c00417{bottom:0.000000px;}
.y2_c00417{bottom:109.740968px;}
.y1_c00417{bottom:129.810450px;}
.y19_c00417{bottom:183.177088px;}
.y18_c00417{bottom:213.416976px;}
.y17_c00417{bottom:243.567588px;}
.y16_c00417{bottom:273.807475px;}
.y15_c00417{bottom:303.958087px;}
.y14_c00417{bottom:334.197975px;}
.y13_c00417{bottom:364.348587px;}
.y12_c00417{bottom:394.499199px;}
.y11_c00417{bottom:424.739086px;}
.y10_c00417{bottom:454.889698px;}
.yf_c00417{bottom:485.129586px;}
.ye_c00417{bottom:515.280198px;}
.yd_c00417{bottom:545.520085px;}
.yc_c00417{bottom:575.670697px;}
.yb_c00417{bottom:607.079919px;}
.ya_c00417{bottom:637.319806px;}
.y9_c00417{bottom:667.470419px;}
.y8_c00417{bottom:697.710306px;}
.y7_c00417{bottom:727.860918px;}
.y6_c00417{bottom:754.230450px;}
.y5_c00417{bottom:1049.341098px;}
.y4_c00417{bottom:1079.580985px;}
.y3_c00417{bottom:1109.731597px;}
.h3_c00417{height:62.600889px;}
.h1_c00417{height:62.771836px;}
.h2_c00417{height:63.216299px;}
.h0_c00417{height:1263.000000px;}
.w0_c00417{width:892.500000px;}
.x0_c00417{left:0.000000px;}
.x2_c00417{left:82.710059px;}
.x8_c00417{left:138.960450px;}
.x5_c00417{left:165.240882px;}
.x9_c00417{left:217.801219px;}
.xa_c00417{left:243.992200px;}
.xb_c00417{left:279.002200px;}
.x4_c00417{left:283.410135px;}
.xc_c00417{left:305.282457px;}
.x1_c00417{left:431.730000px;}
.x3_c00417{left:446.309914px;}
.x7_c00417{left:472.589995px;}
.x6_c00417{left:715.050000px;}
@media print{
.v0_c00417{vertical-align:0.000000pt;}
.ls4_c00417{letter-spacing:-0.056016pt;}
.lsb_c00417{letter-spacing:-0.043568pt;}
.ls9_c00417{letter-spacing:-0.037344pt;}
.ls6_c00417{letter-spacing:-0.024896pt;}
.lsa_c00417{letter-spacing:-0.018672pt;}
.ls8_c00417{letter-spacing:-0.012448pt;}
.ls7_c00417{letter-spacing:-0.006224pt;}
.ls5_c00417{letter-spacing:0.000000pt;}
.ls3_c00417{letter-spacing:0.006224pt;}
.ls2_c00417{letter-spacing:0.012448pt;}
.ls0_c00417{letter-spacing:0.037344pt;}
.ls1_c00417{letter-spacing:0.056016pt;}
.ws1_c00417{word-spacing:-62.240000pt;}
.ws0_c00417{word-spacing:-17.358736pt;}
.ws4_c00417{word-spacing:-0.049792pt;}
.ws2_c00417{word-spacing:0.000000pt;}
.ws3_c00417{word-spacing:0.012448pt;}
.ws7_c00417{word-spacing:0.304976pt;}
.ws11_c00417{word-spacing:0.323648pt;}
.ws9_c00417{word-spacing:0.329872pt;}
.ws13_c00417{word-spacing:0.348544pt;}
.ws10_c00417{word-spacing:3.821536pt;}
.wsf_c00417{word-spacing:5.452224pt;}
.ws12_c00417{word-spacing:8.975008pt;}
.wsb_c00417{word-spacing:13.773712pt;}
.ws8_c00417{word-spacing:14.103584pt;}
.wse_c00417{word-spacing:16.294432pt;}
.wsd_c00417{word-spacing:16.325552pt;}
.wsc_c00417{word-spacing:17.601472pt;}
.ws6_c00417{word-spacing:31.997584pt;}
.ws5_c00417{word-spacing:34.555648pt;}
.wsa_c00417{word-spacing:55.038832pt;}
._4_c00417{margin-left:-54.316848pt;}
._2_c00417{margin-left:-0.983392pt;}
._0_c00417{width:0.921152pt;}
._7_c00417{width:5.564256pt;}
._1_c00417{width:7.362992pt;}
._3_c00417{width:33.192592pt;}
._6_c00417{width:41.694576pt;}
._5_c00417{width:55.443392pt;}
.fs0_c00417{font-size:62.240000pt;}
.y0_c00417{bottom:0.000000pt;}
.y2_c00417{bottom:97.547527pt;}
.y1_c00417{bottom:115.387067pt;}
.y19_c00417{bottom:162.824079pt;}
.y18_c00417{bottom:189.703979pt;}
.y17_c00417{bottom:216.504523pt;}
.y16_c00417{bottom:243.384423pt;}
.y15_c00417{bottom:270.184967pt;}
.y14_c00417{bottom:297.064867pt;}
.y13_c00417{bottom:323.865411pt;}
.y12_c00417{bottom:350.665955pt;}
.y11_c00417{bottom:377.545855pt;}
.y10_c00417{bottom:404.346399pt;}
.yf_c00417{bottom:431.226299pt;}
.ye_c00417{bottom:458.026843pt;}
.yd_c00417{bottom:484.906743pt;}
.yc_c00417{bottom:511.707287pt;}
.yb_c00417{bottom:539.626595pt;}
.ya_c00417{bottom:566.506495pt;}
.y9_c00417{bottom:593.307039pt;}
.y8_c00417{bottom:620.186939pt;}
.y7_c00417{bottom:646.987483pt;}
.y6_c00417{bottom:670.427067pt;}
.y5_c00417{bottom:932.747643pt;}
.y4_c00417{bottom:959.627543pt;}
.y3_c00417{bottom:986.428087pt;}
.h3_c00417{height:55.645234pt;}
.h1_c00417{height:55.797187pt;}
.h2_c00417{height:56.192266pt;}
.h0_c00417{height:1122.666667pt;}
.w0_c00417{width:793.333333pt;}
.x0_c00417{left:0.000000pt;}
.x2_c00417{left:73.520052pt;}
.x8_c00417{left:123.520400pt;}
.x5_c00417{left:146.880784pt;}
.x9_c00417{left:193.601084pt;}
.xa_c00417{left:216.881956pt;}
.xb_c00417{left:248.001956pt;}
.x4_c00417{left:251.920120pt;}
.xc_c00417{left:271.362184pt;}
.x1_c00417{left:383.760000pt;}
.x3_c00417{left:396.719924pt;}
.x7_c00417{left:420.079996pt;}
.x6_c00417{left:635.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8fad36ae565bc9c9e711335a.woff2')format("woff");}.ff1_c00418{font-family:ff1_c00418;line-height:1.106934;font-style:normal;font-weight:normal;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_901bb868e6d966a5c21e0497.woff2')format("woff");}.ff2_c00418{font-family:ff2_c00418;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00418{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00418{vertical-align:-32.399400px;}
.v0_c00418{vertical-align:0.000000px;}
.v1_c00418{vertical-align:32.419836px;}
.ls4_c00418{letter-spacing:-0.063018px;}
.lsb_c00418{letter-spacing:-0.056016px;}
.ls8_c00418{letter-spacing:-0.035010px;}
.lsa_c00418{letter-spacing:-0.028008px;}
.ls9_c00418{letter-spacing:-0.021006px;}
.ls6_c00418{letter-spacing:-0.014004px;}
.ls7_c00418{letter-spacing:-0.007002px;}
.ls5_c00418{letter-spacing:0.000000px;}
.ls1_c00418{letter-spacing:0.007002px;}
.ls0_c00418{letter-spacing:0.014004px;}
.ls3_c00418{letter-spacing:0.023281px;}
.ls2_c00418{letter-spacing:0.035010px;}
.lsc_c00418{letter-spacing:0.630180px;}
.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:-12.967628px;}
.ws19_c00418{word-spacing:-1.001286px;}
.ws1_c00418{word-spacing:0.000000px;}
.ws8_c00418{word-spacing:0.329094px;}
.ws1c_c00418{word-spacing:0.378108px;}
.ws18_c00418{word-spacing:0.714204px;}
.ws1a_c00418{word-spacing:2.898828px;}
.ws6_c00418{word-spacing:4.698342px;}
.ws2_c00418{word-spacing:6.119748px;}
.ws1d_c00418{word-spacing:6.126750px;}
.ws7_c00418{word-spacing:6.476850px;}
.wsa_c00418{word-spacing:7.205058px;}
.ws12_c00418{word-spacing:7.534152px;}
.ws11_c00418{word-spacing:7.555158px;}
.ws9_c00418{word-spacing:7.562160px;}
.ws1f_c00418{word-spacing:10.804086px;}
.ws14_c00418{word-spacing:13.002714px;}
.ws5_c00418{word-spacing:13.303800px;}
.ws15_c00418{word-spacing:13.310802px;}
.ws17_c00418{word-spacing:13.695912px;}
.ws1e_c00418{word-spacing:15.089310px;}
.wsc_c00418{word-spacing:19.416546px;}
.ws1b_c00418{word-spacing:20.165760px;}
.ws13_c00418{word-spacing:20.172762px;}
.ws16_c00418{word-spacing:21.552156px;}
.ws10_c00418{word-spacing:24.471990px;}
.wsb_c00418{word-spacing:26.999712px;}
.wsf_c00418{word-spacing:27.013716px;}
.ws3_c00418{word-spacing:37.439694px;}
.ws4_c00418{word-spacing:44.273646px;}
.wse_c00418{word-spacing:47.494566px;}
.wsd_c00418{word-spacing:47.886678px;}
._0_c00418{margin-left:-5.146470px;}
._2_c00418{margin-left:-1.239354px;}
._1_c00418{width:1.253358px;}
.fc0_c00418{color:rgb(0,0,0);}
.fs1_c00418{font-size:46.562400px;}
.fs0_c00418{font-size:70.020000px;}
.y0_c00418{bottom:0.000000px;}
.y2_c00418{bottom:109.740968px;}
.y1_c00418{bottom:129.810450px;}
.y22_c00418{bottom:173.728602px;}
.y21_c00418{bottom:203.968490px;}
.y20_c00418{bottom:234.119102px;}
.y1f_c00418{bottom:264.358989px;}
.y1e_c00418{bottom:294.509601px;}
.y1d_c00418{bottom:324.749488px;}
.y1c_c00418{bottom:354.900101px;}
.y1b_c00418{bottom:385.139988px;}
.y1a_c00418{bottom:415.285491px;}
.y19_c00418{bottom:445.525379px;}
.y18_c00418{bottom:475.765266px;}
.y17_c00418{bottom:505.915878px;}
.y16_c00418{bottom:536.155766px;}
.y15_c00418{bottom:566.306378px;}
.y14_c00418{bottom:596.456990px;}
.y13_c00418{bottom:626.607602px;}
.y12_c00418{bottom:656.847489px;}
.y11_c00418{bottom:686.998101px;}
.y10_c00418{bottom:717.237989px;}
.yf_c00418{bottom:747.388601px;}
.ye_c00418{bottom:777.628488px;}
.yd_c00418{bottom:807.779100px;}
.yc_c00418{bottom:838.018988px;}
.yb_c00418{bottom:868.169600px;}
.ya_c00418{bottom:898.409487px;}
.y9_c00418{bottom:928.560099px;}
.y8_c00418{bottom:958.799987px;}
.y7_c00418{bottom:988.950599px;}
.y6_c00418{bottom:1019.190486px;}
.y5_c00418{bottom:1049.341098px;}
.y4_c00418{bottom:1079.580985px;}
.y3_c00418{bottom:1109.731597px;}
.h2_c00418{height:62.600889px;}
.h1_c00418{height:62.771836px;}
.h3_c00418{height:74.048622px;}
.h0_c00418{height:1263.000000px;}
.w0_c00418{width:892.500000px;}
.x0_c00418{left:0.000000px;}
.x2_c00418{left:82.710059px;}
.x3_c00418{left:138.960626px;}
.x1_c00418{left:431.730000px;}
@media print{
.v2_c00418{vertical-align:-28.799467pt;}
.v0_c00418{vertical-align:0.000000pt;}
.v1_c00418{vertical-align:28.817632pt;}
.ls4_c00418{letter-spacing:-0.056016pt;}
.lsb_c00418{letter-spacing:-0.049792pt;}
.ls8_c00418{letter-spacing:-0.031120pt;}
.lsa_c00418{letter-spacing:-0.024896pt;}
.ls9_c00418{letter-spacing:-0.018672pt;}
.ls6_c00418{letter-spacing:-0.012448pt;}
.ls7_c00418{letter-spacing:-0.006224pt;}
.ls5_c00418{letter-spacing:0.000000pt;}
.ls1_c00418{letter-spacing:0.006224pt;}
.ls0_c00418{letter-spacing:0.012448pt;}
.ls3_c00418{letter-spacing:0.020694pt;}
.ls2_c00418{letter-spacing:0.031120pt;}
.lsc_c00418{letter-spacing:0.560160pt;}
.ws0_c00418{word-spacing:-11.526781pt;}
.ws19_c00418{word-spacing:-0.890032pt;}
.ws1_c00418{word-spacing:0.000000pt;}
.ws8_c00418{word-spacing:0.292528pt;}
.ws1c_c00418{word-spacing:0.336096pt;}
.ws18_c00418{word-spacing:0.634848pt;}
.ws1a_c00418{word-spacing:2.576736pt;}
.ws6_c00418{word-spacing:4.176304pt;}
.ws2_c00418{word-spacing:5.439776pt;}
.ws1d_c00418{word-spacing:5.446000pt;}
.ws7_c00418{word-spacing:5.757200pt;}
.wsa_c00418{word-spacing:6.404496pt;}
.ws12_c00418{word-spacing:6.697024pt;}
.ws11_c00418{word-spacing:6.715696pt;}
.ws9_c00418{word-spacing:6.721920pt;}
.ws1f_c00418{word-spacing:9.603632pt;}
.ws14_c00418{word-spacing:11.557968pt;}
.ws5_c00418{word-spacing:11.825600pt;}
.ws15_c00418{word-spacing:11.831824pt;}
.ws17_c00418{word-spacing:12.174144pt;}
.ws1e_c00418{word-spacing:13.412720pt;}
.wsc_c00418{word-spacing:17.259152pt;}
.ws1b_c00418{word-spacing:17.925120pt;}
.ws13_c00418{word-spacing:17.931344pt;}
.ws16_c00418{word-spacing:19.157472pt;}
.ws10_c00418{word-spacing:21.752880pt;}
.wsb_c00418{word-spacing:23.999744pt;}
.wsf_c00418{word-spacing:24.012192pt;}
.ws3_c00418{word-spacing:33.279728pt;}
.ws4_c00418{word-spacing:39.354352pt;}
.wse_c00418{word-spacing:42.217392pt;}
.wsd_c00418{word-spacing:42.565936pt;}
._0_c00418{margin-left:-4.574640pt;}
._2_c00418{margin-left:-1.101648pt;}
._1_c00418{width:1.114096pt;}
.fs1_c00418{font-size:41.388800pt;}
.fs0_c00418{font-size:62.240000pt;}
.y0_c00418{bottom:0.000000pt;}
.y2_c00418{bottom:97.547527pt;}
.y1_c00418{bottom:115.387067pt;}
.y22_c00418{bottom:154.425424pt;}
.y21_c00418{bottom:181.305324pt;}
.y20_c00418{bottom:208.105868pt;}
.y1f_c00418{bottom:234.985768pt;}
.y1e_c00418{bottom:261.786312pt;}
.y1d_c00418{bottom:288.666212pt;}
.y1c_c00418{bottom:315.466756pt;}
.y1b_c00418{bottom:342.346656pt;}
.y1a_c00418{bottom:369.142659pt;}
.y19_c00418{bottom:396.022559pt;}
.y18_c00418{bottom:422.902459pt;}
.y17_c00418{bottom:449.703003pt;}
.y16_c00418{bottom:476.582903pt;}
.y15_c00418{bottom:503.383447pt;}
.y14_c00418{bottom:530.183991pt;}
.y13_c00418{bottom:556.984535pt;}
.y12_c00418{bottom:583.864435pt;}
.y11_c00418{bottom:610.664979pt;}
.y10_c00418{bottom:637.544879pt;}
.yf_c00418{bottom:664.345423pt;}
.ye_c00418{bottom:691.225323pt;}
.yd_c00418{bottom:718.025867pt;}
.yc_c00418{bottom:744.905767pt;}
.yb_c00418{bottom:771.706311pt;}
.ya_c00418{bottom:798.586211pt;}
.y9_c00418{bottom:825.386755pt;}
.y8_c00418{bottom:852.266655pt;}
.y7_c00418{bottom:879.067199pt;}
.y6_c00418{bottom:905.947099pt;}
.y5_c00418{bottom:932.747643pt;}
.y4_c00418{bottom:959.627543pt;}
.y3_c00418{bottom:986.428087pt;}
.h2_c00418{height:55.645234pt;}
.h1_c00418{height:55.797187pt;}
.h3_c00418{height:65.820998pt;}
.h0_c00418{height:1122.666667pt;}
.w0_c00418{width:793.333333pt;}
.x0_c00418{left:0.000000pt;}
.x2_c00418{left:73.520052pt;}
.x3_c00418{left:123.520556pt;}
.x1_c00418{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_116a31e3f3c95ec953add416.woff2')format("woff");}.ff1_c00419{font-family:ff1_c00419;line-height:1.106934;font-style:normal;font-weight:normal;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_d0384384feda6921297fabbd.woff2')format("woff");}.ff2_c00419{font-family:ff2_c00419;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00419;src:url('chunks/assets/font_83cd614f2f70b6e48607879d.woff2')format("woff");}.ff3_c00419{font-family:ff3_c00419;line-height:1.104492;font-style:normal;font-weight:normal;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_02c58a45009a4253e56ae49e.woff2')format("woff");}.ff4_c00419{font-family:ff4_c00419;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00419{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00419{vertical-align:0.000000px;}
.v1_c00419{vertical-align:32.407398px;}
.ls6_c00419{letter-spacing:-0.063018px;}
.lsc_c00419{letter-spacing:-0.042012px;}
.lsb_c00419{letter-spacing:-0.028008px;}
.lsa_c00419{letter-spacing:-0.021006px;}
.ls9_c00419{letter-spacing:-0.014004px;}
.ls8_c00419{letter-spacing:-0.007002px;}
.ls7_c00419{letter-spacing:0.000000px;}
.ls2_c00419{letter-spacing:0.007002px;}
.ls1_c00419{letter-spacing:0.014004px;}
.ls4_c00419{letter-spacing:0.021006px;}
.ls3_c00419{letter-spacing:0.023281px;}
.ls5_c00419{letter-spacing:0.070020px;}
.ls0_c00419{letter-spacing:0.273078px;}
.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:-12.967628px;}
.wsf_c00419{word-spacing:-0.035010px;}
.ws11_c00419{word-spacing:-0.007002px;}
.ws1_c00419{word-spacing:0.000000px;}
.wse_c00419{word-spacing:0.014004px;}
.ws7_c00419{word-spacing:0.371106px;}
.ws3_c00419{word-spacing:1.078308px;}
.ws2_c00419{word-spacing:1.435410px;}
.ws8_c00419{word-spacing:1.813518px;}
.ws13_c00419{word-spacing:2.877822px;}
.ws9_c00419{word-spacing:3.613032px;}
.ws5_c00419{word-spacing:11.525292px;}
.wsb_c00419{word-spacing:12.589596px;}
.wsc_c00419{word-spacing:12.988710px;}
.wsa_c00419{word-spacing:14.767218px;}
.ws4_c00419{word-spacing:17.273934px;}
.ws6_c00419{word-spacing:17.652042px;}
.wsd_c00419{word-spacing:24.093882px;}
.ws12_c00419{word-spacing:25.564302px;}
.ws10_c00419{word-spacing:29.527434px;}
.ws14_c00419{word-spacing:29.891538px;}
._0_c00419{margin-left:-1.176336px;}
._1_c00419{width:1.428408px;}
._2_c00419{width:8.283366px;}
._3_c00419{width:28.484136px;}
.fc0_c00419{color:rgb(0,0,0);}
.fs1_c00419{font-size:46.562400px;}
.fs0_c00419{font-size:70.020000px;}
.y0_c00419{bottom:0.000000px;}
.y2_c00419{bottom:109.740968px;}
.y1_c00419{bottom:129.810450px;}
.y1a_c00419{bottom:170.490450px;}
.y19_c00419{bottom:200.730450px;}
.y18_c00419{bottom:230.880450px;}
.y17_c00419{bottom:261.120450px;}
.y16_c00419{bottom:291.270450px;}
.y15_c00419{bottom:321.510450px;}
.y14_c00419{bottom:347.880450px;}
.y13_c00419{bottom:625.890450px;}
.y12_c00419{bottom:656.130450px;}
.y11_c00419{bottom:686.280450px;}
.y10_c00419{bottom:716.520450px;}
.yf_c00419{bottom:747.388601px;}
.ye_c00419{bottom:777.628488px;}
.yd_c00419{bottom:807.779100px;}
.yc_c00419{bottom:838.018988px;}
.yb_c00419{bottom:868.169600px;}
.ya_c00419{bottom:898.409487px;}
.y9_c00419{bottom:928.560099px;}
.y8_c00419{bottom:958.799987px;}
.y7_c00419{bottom:988.950599px;}
.y6_c00419{bottom:1019.190486px;}
.y5_c00419{bottom:1049.341098px;}
.y4_c00419{bottom:1079.580985px;}
.y3_c00419{bottom:1109.731597px;}
.h3_c00419{height:62.600889px;}
.h1_c00419{height:62.771836px;}
.h5_c00419{height:63.216299px;}
.h2_c00419{height:73.028672px;}
.h4_c00419{height:74.036184px;}
.h0_c00419{height:1263.000000px;}
.w0_c00419{width:892.500000px;}
.x0_c00419{left:0.000000px;}
.x2_c00419{left:82.710059px;}
.x3_c00419{left:138.960626px;}
.x5_c00419{left:165.240000px;}
.x7_c00419{left:191.520000px;}
.x4_c00419{left:338.850000px;}
.x1_c00419{left:431.730000px;}
.x6_c00419{left:713.070000px;}
@media print{
.v0_c00419{vertical-align:0.000000pt;}
.v1_c00419{vertical-align:28.806576pt;}
.ls6_c00419{letter-spacing:-0.056016pt;}
.lsc_c00419{letter-spacing:-0.037344pt;}
.lsb_c00419{letter-spacing:-0.024896pt;}
.lsa_c00419{letter-spacing:-0.018672pt;}
.ls9_c00419{letter-spacing:-0.012448pt;}
.ls8_c00419{letter-spacing:-0.006224pt;}
.ls7_c00419{letter-spacing:0.000000pt;}
.ls2_c00419{letter-spacing:0.006224pt;}
.ls1_c00419{letter-spacing:0.012448pt;}
.ls4_c00419{letter-spacing:0.018672pt;}
.ls3_c00419{letter-spacing:0.020694pt;}
.ls5_c00419{letter-spacing:0.062240pt;}
.ls0_c00419{letter-spacing:0.242736pt;}
.ws0_c00419{word-spacing:-11.526781pt;}
.wsf_c00419{word-spacing:-0.031120pt;}
.ws11_c00419{word-spacing:-0.006224pt;}
.ws1_c00419{word-spacing:0.000000pt;}
.wse_c00419{word-spacing:0.012448pt;}
.ws7_c00419{word-spacing:0.329872pt;}
.ws3_c00419{word-spacing:0.958496pt;}
.ws2_c00419{word-spacing:1.275920pt;}
.ws8_c00419{word-spacing:1.612016pt;}
.ws13_c00419{word-spacing:2.558064pt;}
.ws9_c00419{word-spacing:3.211584pt;}
.ws5_c00419{word-spacing:10.244704pt;}
.wsb_c00419{word-spacing:11.190752pt;}
.wsc_c00419{word-spacing:11.545520pt;}
.wsa_c00419{word-spacing:13.126416pt;}
.ws4_c00419{word-spacing:15.354608pt;}
.ws6_c00419{word-spacing:15.690704pt;}
.wsd_c00419{word-spacing:21.416784pt;}
.ws12_c00419{word-spacing:22.723824pt;}
.ws10_c00419{word-spacing:26.246608pt;}
.ws14_c00419{word-spacing:26.570256pt;}
._0_c00419{margin-left:-1.045632pt;}
._1_c00419{width:1.269696pt;}
._2_c00419{width:7.362992pt;}
._3_c00419{width:25.319232pt;}
.fs1_c00419{font-size:41.388800pt;}
.fs0_c00419{font-size:62.240000pt;}
.y0_c00419{bottom:0.000000pt;}
.y2_c00419{bottom:97.547527pt;}
.y1_c00419{bottom:115.387067pt;}
.y1a_c00419{bottom:151.547067pt;}
.y19_c00419{bottom:178.427067pt;}
.y18_c00419{bottom:205.227067pt;}
.y17_c00419{bottom:232.107067pt;}
.y16_c00419{bottom:258.907067pt;}
.y15_c00419{bottom:285.787067pt;}
.y14_c00419{bottom:309.227067pt;}
.y13_c00419{bottom:556.347067pt;}
.y12_c00419{bottom:583.227067pt;}
.y11_c00419{bottom:610.027067pt;}
.y10_c00419{bottom:636.907067pt;}
.yf_c00419{bottom:664.345423pt;}
.ye_c00419{bottom:691.225323pt;}
.yd_c00419{bottom:718.025867pt;}
.yc_c00419{bottom:744.905767pt;}
.yb_c00419{bottom:771.706311pt;}
.ya_c00419{bottom:798.586211pt;}
.y9_c00419{bottom:825.386755pt;}
.y8_c00419{bottom:852.266655pt;}
.y7_c00419{bottom:879.067199pt;}
.y6_c00419{bottom:905.947099pt;}
.y5_c00419{bottom:932.747643pt;}
.y4_c00419{bottom:959.627543pt;}
.y3_c00419{bottom:986.428087pt;}
.h3_c00419{height:55.645234pt;}
.h1_c00419{height:55.797187pt;}
.h5_c00419{height:56.192266pt;}
.h2_c00419{height:64.914375pt;}
.h4_c00419{height:65.809942pt;}
.h0_c00419{height:1122.666667pt;}
.w0_c00419{width:793.333333pt;}
.x0_c00419{left:0.000000pt;}
.x2_c00419{left:73.520052pt;}
.x3_c00419{left:123.520556pt;}
.x5_c00419{left:146.880000pt;}
.x7_c00419{left:170.240000pt;}
.x4_c00419{left:301.200000pt;}
.x1_c00419{left:383.760000pt;}
.x6_c00419{left:633.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_13824b9aa9f6097ec49ea3f8.woff2')format("woff");}.ff1_c00420{font-family:ff1_c00420;line-height:1.106934;font-style:normal;font-weight:normal;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_eed15f420720cd9f579691c6.woff2')format("woff");}.ff2_c00420{font-family:ff2_c00420;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00420{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00420{vertical-align:0.000000px;}
.v1_c00420{vertical-align:32.400000px;}
.lsc_c00420{letter-spacing:-0.119034px;}
.lse_c00420{letter-spacing:-0.077022px;}
.ls4_c00420{letter-spacing:-0.063018px;}
.ls9_c00420{letter-spacing:-0.042012px;}
.lsb_c00420{letter-spacing:-0.035010px;}
.lsa_c00420{letter-spacing:-0.028008px;}
.ls6_c00420{letter-spacing:-0.021006px;}
.ls7_c00420{letter-spacing:-0.014004px;}
.ls8_c00420{letter-spacing:-0.007002px;}
.ls5_c00420{letter-spacing:0.000000px;}
.ls3_c00420{letter-spacing:0.007002px;}
.ls2_c00420{letter-spacing:0.014004px;}
.ls0_c00420{letter-spacing:0.023281px;}
.ls1_c00420{letter-spacing:0.049014px;}
.lsd_c00420{letter-spacing:0.343098px;}
.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;}
}
.ws1_c00420{word-spacing:-19.346526px;}
.ws0_c00420{word-spacing:-12.967628px;}
.ws4_c00420{word-spacing:-0.014004px;}
.ws2_c00420{word-spacing:0.000000px;}
.wsc_c00420{word-spacing:0.014004px;}
.ws8_c00420{word-spacing:0.049014px;}
.ws13_c00420{word-spacing:0.378108px;}
.ws1f_c00420{word-spacing:0.385110px;}
.ws17_c00420{word-spacing:0.420120px;}
.ws3_c00420{word-spacing:0.728208px;}
.ws6_c00420{word-spacing:2.191626px;}
.ws1e_c00420{word-spacing:3.227922px;}
.ws18_c00420{word-spacing:3.234924px;}
.ws5_c00420{word-spacing:3.599028px;}
.ws1d_c00420{word-spacing:5.769648px;}
.wsb_c00420{word-spacing:6.840954px;}
.ws1a_c00420{word-spacing:9.718776px;}
.ws12_c00420{word-spacing:10.783080px;}
.ws16_c00420{word-spacing:10.804086px;}
.wsd_c00420{word-spacing:10.825092px;}
.ws7_c00420{word-spacing:14.046012px;}
.ws11_c00420{word-spacing:14.053014px;}
.ws1b_c00420{word-spacing:17.617032px;}
.ws1c_c00420{word-spacing:18.002142px;}
.ws9_c00420{word-spacing:18.660330px;}
.wsa_c00420{word-spacing:18.751356px;}
.ws15_c00420{word-spacing:20.144754px;}
.ws14_c00420{word-spacing:20.151756px;}
.ws19_c00420{word-spacing:21.237066px;}
.ws10_c00420{word-spacing:29.541438px;}
.wsf_c00420{word-spacing:49.315086px;}
.wse_c00420{word-spacing:49.651182px;}
._1_c00420{margin-left:-1.169334px;}
._0_c00420{width:1.211346px;}
.fc0_c00420{color:rgb(0,0,0);}
.fs1_c00420{font-size:46.562400px;}
.fs0_c00420{font-size:70.020000px;}
.y0_c00420{bottom:0.000000px;}
.y2_c00420{bottom:109.740968px;}
.y1_c00420{bottom:129.810450px;}
.y22_c00420{bottom:173.730450px;}
.y21_c00420{bottom:203.970450px;}
.y20_c00420{bottom:234.120600px;}
.y1f_c00420{bottom:264.360450px;}
.y1e_c00420{bottom:294.510450px;}
.y1d_c00420{bottom:324.750600px;}
.y1c_c00420{bottom:354.900450px;}
.y1b_c00420{bottom:385.140450px;}
.y1a_c00420{bottom:415.290600px;}
.y19_c00420{bottom:445.530600px;}
.y18_c00420{bottom:475.770600px;}
.y17_c00420{bottom:505.920450px;}
.y16_c00420{bottom:536.160450px;}
.y15_c00420{bottom:566.310450px;}
.y14_c00420{bottom:596.460450px;}
.y13_c00420{bottom:626.610450px;}
.y12_c00420{bottom:656.850450px;}
.y11_c00420{bottom:687.000450px;}
.y10_c00420{bottom:717.240450px;}
.yf_c00420{bottom:747.390450px;}
.ye_c00420{bottom:777.630450px;}
.yd_c00420{bottom:807.780450px;}
.yc_c00420{bottom:838.020450px;}
.yb_c00420{bottom:868.170450px;}
.ya_c00420{bottom:898.410450px;}
.y9_c00420{bottom:928.560450px;}
.y8_c00420{bottom:958.800450px;}
.y7_c00420{bottom:988.950450px;}
.y6_c00420{bottom:1019.190450px;}
.y5_c00420{bottom:1049.340450px;}
.y4_c00420{bottom:1079.580450px;}
.y3_c00420{bottom:1109.730450px;}
.h3_c00420{height:62.600889px;}
.h1_c00420{height:62.771836px;}
.h4_c00420{height:73.668786px;}
.h5_c00420{height:74.028186px;}
.h2_c00420{height:74.142464px;}
.h0_c00420{height:1263.000000px;}
.w0_c00420{width:892.500000px;}
.x0_c00420{left:0.000000px;}
.x2_c00420{left:82.710059px;}
.x3_c00420{left:138.960000px;}
.x1_c00420{left:431.730000px;}
@media print{
.v0_c00420{vertical-align:0.000000pt;}
.v1_c00420{vertical-align:28.800000pt;}
.lsc_c00420{letter-spacing:-0.105808pt;}
.lse_c00420{letter-spacing:-0.068464pt;}
.ls4_c00420{letter-spacing:-0.056016pt;}
.ls9_c00420{letter-spacing:-0.037344pt;}
.lsb_c00420{letter-spacing:-0.031120pt;}
.lsa_c00420{letter-spacing:-0.024896pt;}
.ls6_c00420{letter-spacing:-0.018672pt;}
.ls7_c00420{letter-spacing:-0.012448pt;}
.ls8_c00420{letter-spacing:-0.006224pt;}
.ls5_c00420{letter-spacing:0.000000pt;}
.ls3_c00420{letter-spacing:0.006224pt;}
.ls2_c00420{letter-spacing:0.012448pt;}
.ls0_c00420{letter-spacing:0.020694pt;}
.ls1_c00420{letter-spacing:0.043568pt;}
.lsd_c00420{letter-spacing:0.304976pt;}
.ws1_c00420{word-spacing:-17.196912pt;}
.ws0_c00420{word-spacing:-11.526781pt;}
.ws4_c00420{word-spacing:-0.012448pt;}
.ws2_c00420{word-spacing:0.000000pt;}
.wsc_c00420{word-spacing:0.012448pt;}
.ws8_c00420{word-spacing:0.043568pt;}
.ws13_c00420{word-spacing:0.336096pt;}
.ws1f_c00420{word-spacing:0.342320pt;}
.ws17_c00420{word-spacing:0.373440pt;}
.ws3_c00420{word-spacing:0.647296pt;}
.ws6_c00420{word-spacing:1.948112pt;}
.ws1e_c00420{word-spacing:2.869264pt;}
.ws18_c00420{word-spacing:2.875488pt;}
.ws5_c00420{word-spacing:3.199136pt;}
.ws1d_c00420{word-spacing:5.128576pt;}
.wsb_c00420{word-spacing:6.080848pt;}
.ws1a_c00420{word-spacing:8.638912pt;}
.ws12_c00420{word-spacing:9.584960pt;}
.ws16_c00420{word-spacing:9.603632pt;}
.wsd_c00420{word-spacing:9.622304pt;}
.ws7_c00420{word-spacing:12.485344pt;}
.ws11_c00420{word-spacing:12.491568pt;}
.ws1b_c00420{word-spacing:15.659584pt;}
.ws1c_c00420{word-spacing:16.001904pt;}
.ws9_c00420{word-spacing:16.586960pt;}
.wsa_c00420{word-spacing:16.667872pt;}
.ws15_c00420{word-spacing:17.906448pt;}
.ws14_c00420{word-spacing:17.912672pt;}
.ws19_c00420{word-spacing:18.877392pt;}
.ws10_c00420{word-spacing:26.259056pt;}
.wsf_c00420{word-spacing:43.835632pt;}
.wse_c00420{word-spacing:44.134384pt;}
._1_c00420{margin-left:-1.039408pt;}
._0_c00420{width:1.076752pt;}
.fs1_c00420{font-size:41.388800pt;}
.fs0_c00420{font-size:62.240000pt;}
.y0_c00420{bottom:0.000000pt;}
.y2_c00420{bottom:97.547527pt;}
.y1_c00420{bottom:115.387067pt;}
.y22_c00420{bottom:154.427067pt;}
.y21_c00420{bottom:181.307067pt;}
.y20_c00420{bottom:208.107200pt;}
.y1f_c00420{bottom:234.987067pt;}
.y1e_c00420{bottom:261.787067pt;}
.y1d_c00420{bottom:288.667200pt;}
.y1c_c00420{bottom:315.467067pt;}
.y1b_c00420{bottom:342.347067pt;}
.y1a_c00420{bottom:369.147200pt;}
.y19_c00420{bottom:396.027200pt;}
.y18_c00420{bottom:422.907200pt;}
.y17_c00420{bottom:449.707067pt;}
.y16_c00420{bottom:476.587067pt;}
.y15_c00420{bottom:503.387067pt;}
.y14_c00420{bottom:530.187067pt;}
.y13_c00420{bottom:556.987067pt;}
.y12_c00420{bottom:583.867067pt;}
.y11_c00420{bottom:610.667067pt;}
.y10_c00420{bottom:637.547067pt;}
.yf_c00420{bottom:664.347067pt;}
.ye_c00420{bottom:691.227067pt;}
.yd_c00420{bottom:718.027067pt;}
.yc_c00420{bottom:744.907067pt;}
.yb_c00420{bottom:771.707067pt;}
.ya_c00420{bottom:798.587067pt;}
.y9_c00420{bottom:825.387067pt;}
.y8_c00420{bottom:852.267067pt;}
.y7_c00420{bottom:879.067067pt;}
.y6_c00420{bottom:905.947067pt;}
.y5_c00420{bottom:932.747067pt;}
.y4_c00420{bottom:959.627067pt;}
.y3_c00420{bottom:986.427067pt;}
.h3_c00420{height:55.645234pt;}
.h1_c00420{height:55.797187pt;}
.h4_c00420{height:65.483366pt;}
.h5_c00420{height:65.802832pt;}
.h2_c00420{height:65.904413pt;}
.h0_c00420{height:1122.666667pt;}
.w0_c00420{width:793.333333pt;}
.x0_c00420{left:0.000000pt;}
.x2_c00420{left:73.520052pt;}
.x3_c00420{left:123.520000pt;}
.x1_c00420{left:383.760000pt;}
}





    body { margin: 0; background: #f3f4f6; }
    #page-container { margin: 0 auto; }
    .pf_c00421 {
      width: 900px;
      min-height: 280px;
      margin: 16px auto;
      background: #fff;
      border: 1px solid #e5e7eb;
      box-shadow: 0 8px 22px rgba(15, 23, 42, .08);
      position: relative;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }
    .scieee-page-failed_c00421 {
      padding: 42px;
      color: #374151;
      font-size: 14px;
      line-height: 1.45;
    }
    .scieee-page-failed_c00421 b {
      display: block;
      margin-bottom: 8px;
      font-size: 18px;
      color: #111827;
    }
    .scieee-page-failed_c00421 code {
      display: block;
      margin-top: 12px;
      white-space: pre-wrap;
      color: #6b7280;
      font-size: 12px;
    }
  




/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_13723e727e927ee7a7c0cea2.woff2')format("woff");}.ff1_c00422{font-family:ff1_c00422;line-height:1.106934;font-style:normal;font-weight:normal;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_714ad5c3be9a806b92553bf7.woff2')format("woff");}.ff2_c00422{font-family:ff2_c00422;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00422;src:url('chunks/assets/font_24293c22d898b57e6fa073e8.woff2')format("woff");}.ff3_c00422{font-family:ff3_c00422;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00422{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00422{vertical-align:0.000000px;}
.v1_c00422{vertical-align:32.418108px;}
.lse_c00422{letter-spacing:-0.119034px;}
.ls9_c00422{letter-spacing:-0.091026px;}
.ls14_c00422{letter-spacing:-0.084024px;}
.ls7_c00422{letter-spacing:-0.063018px;}
.ls13_c00422{letter-spacing:-0.056016px;}
.ls15_c00422{letter-spacing:-0.049014px;}
.lsf_c00422{letter-spacing:-0.042012px;}
.lsd_c00422{letter-spacing:-0.035010px;}
.ls10_c00422{letter-spacing:-0.028008px;}
.ls11_c00422{letter-spacing:-0.021006px;}
.lsb_c00422{letter-spacing:-0.014004px;}
.lsc_c00422{letter-spacing:-0.007002px;}
.ls8_c00422{letter-spacing:0.000000px;}
.ls0_c00422{letter-spacing:0.007002px;}
.ls4_c00422{letter-spacing:0.014004px;}
.ls1_c00422{letter-spacing:0.021006px;}
.ls6_c00422{letter-spacing:0.023281px;}
.ls5_c00422{letter-spacing:0.035010px;}
.ls3_c00422{letter-spacing:0.042012px;}
.ls2_c00422{letter-spacing:0.049014px;}
.ls16_c00422{letter-spacing:0.280080px;}
.lsa_c00422{letter-spacing:0.343098px;}
.ls12_c00422{letter-spacing:0.630180px;}
.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:-19.374534px;}
.ws1_c00422{word-spacing:-12.967628px;}
.ws3_c00422{word-spacing:-0.014004px;}
.ws2_c00422{word-spacing:0.000000px;}
.ws7_c00422{word-spacing:0.028008px;}
.ws6_c00422{word-spacing:0.105030px;}
.ws4_c00422{word-spacing:0.350100px;}
.ws5_c00422{word-spacing:0.378108px;}
.ws20_c00422{word-spacing:0.385110px;}
.wsb_c00422{word-spacing:0.700200px;}
.ws15_c00422{word-spacing:1.470420px;}
.ws25_c00422{word-spacing:1.827522px;}
.ws1c_c00422{word-spacing:1.841526px;}
.ws8_c00422{word-spacing:2.863818px;}
.ws35_c00422{word-spacing:2.877822px;}
.ws36_c00422{word-spacing:3.984138px;}
.ws1e_c00422{word-spacing:5.433552px;}
.ws23_c00422{word-spacing:6.098742px;}
.ws24_c00422{word-spacing:6.455844px;}
.ws3b_c00422{word-spacing:6.861960px;}
.ws9_c00422{word-spacing:7.184052px;}
.ws3a_c00422{word-spacing:7.191054px;}
.ws28_c00422{word-spacing:8.262360px;}
.ws1b_c00422{word-spacing:8.654472px;}
.ws12_c00422{word-spacing:10.019862px;}
.ws31_c00422{word-spacing:10.110888px;}
.ws10_c00422{word-spacing:11.161188px;}
.ws2c_c00422{word-spacing:12.981708px;}
.ws1f_c00422{word-spacing:13.317804px;}
.ws14_c00422{word-spacing:13.667904px;}
.ws32_c00422{word-spacing:13.688910px;}
.ws2d_c00422{word-spacing:14.725206px;}
.wsc_c00422{word-spacing:15.887538px;}
.wsa_c00422{word-spacing:16.202628px;}
.ws38_c00422{word-spacing:16.524720px;}
.ws11_c00422{word-spacing:16.916832px;}
.ws19_c00422{word-spacing:18.331236px;}
.ws2e_c00422{word-spacing:19.472562px;}
.ws27_c00422{word-spacing:20.130750px;}
.ws17_c00422{word-spacing:20.200770px;}
.ws1d_c00422{word-spacing:22.287366px;}
.ws21_c00422{word-spacing:22.385394px;}
.ws22_c00422{word-spacing:22.679478px;}
.ws2a_c00422{word-spacing:24.815088px;}
.ws2b_c00422{word-spacing:25.214202px;}
.ws30_c00422{word-spacing:25.963416px;}
.wsd_c00422{word-spacing:26.656614px;}
.ws16_c00422{word-spacing:29.107314px;}
.ws13_c00422{word-spacing:29.149326px;}
.ws3c_c00422{word-spacing:30.955842px;}
.ws2f_c00422{word-spacing:33.133464px;}
.wse_c00422{word-spacing:35.605170px;}
.ws26_c00422{word-spacing:41.395824px;}
.ws29_c00422{word-spacing:46.430262px;}
.ws18_c00422{word-spacing:47.592594px;}
.ws33_c00422{word-spacing:65.160612px;}
.ws34_c00422{word-spacing:67.632318px;}
.ws39_c00422{word-spacing:68.402538px;}
.wsf_c00422{word-spacing:70.937262px;}
.ws37_c00422{word-spacing:93.238632px;}
.ws1a_c00422{word-spacing:139.633884px;}
._4_c00422{margin-left:-33.063444px;}
._1_c00422{margin-left:-1.029294px;}
._0_c00422{width:1.029294px;}
._2_c00422{width:17.413974px;}
._3_c00422{width:28.295082px;}
.fc0_c00422{color:rgb(0,0,0);}
.fs1_c00422{font-size:46.562400px;}
.fs0_c00422{font-size:70.020000px;}
.y0_c00422{bottom:0.000000px;}
.y2_c00422{bottom:109.740968px;}
.y1_c00422{bottom:129.810450px;}
.y21_c00422{bottom:183.535923px;}
.y3c_c00422{bottom:183.540600px;}
.y20_c00422{bottom:213.775811px;}
.y3b_c00422{bottom:213.780600px;}
.y1f_c00422{bottom:243.835397px;}
.y3a_c00422{bottom:243.840450px;}
.y1e_c00422{bottom:274.075284px;}
.y39_c00422{bottom:274.080450px;}
.y1d_c00422{bottom:304.225896px;}
.y38_c00422{bottom:304.230450px;}
.y1c_c00422{bottom:334.465784px;}
.y37_c00422{bottom:334.470450px;}
.y1b_c00422{bottom:364.616396px;}
.y36_c00422{bottom:364.620450px;}
.y1a_c00422{bottom:394.856283px;}
.y35_c00422{bottom:394.860600px;}
.y19_c00422{bottom:425.006895px;}
.y34_c00422{bottom:425.010450px;}
.y18_c00422{bottom:455.246783px;}
.y33_c00422{bottom:455.250450px;}
.y17_c00422{bottom:485.397395px;}
.y32_c00422{bottom:485.400450px;}
.y16_c00422{bottom:515.637282px;}
.y31_c00422{bottom:515.640450px;}
.y15_c00422{bottom:545.787894px;}
.y30_c00422{bottom:545.790450px;}
.y14_c00422{bottom:576.027782px;}
.y2f_c00422{bottom:576.030450px;}
.y13_c00422{bottom:606.178394px;}
.y2e_c00422{bottom:606.180450px;}
.y12_c00422{bottom:636.418281px;}
.y2d_c00422{bottom:636.420450px;}
.y11_c00422{bottom:666.658169px;}
.y2c_c00422{bottom:666.660450px;}
.y10_c00422{bottom:696.808781px;}
.y2b_c00422{bottom:696.810450px;}
.yf_c00422{bottom:727.048668px;}
.y2a_c00422{bottom:727.050450px;}
.ye_c00422{bottom:757.199280px;}
.y29_c00422{bottom:777.540600px;}
.yd_c00422{bottom:787.439168px;}
.y28_c00422{bottom:807.780450px;}
.yc_c00422{bottom:817.589780px;}
.y27_c00422{bottom:838.020450px;}
.yb_c00422{bottom:847.829667px;}
.y26_c00422{bottom:868.170450px;}
.ya_c00422{bottom:877.980279px;}
.y25_c00422{bottom:898.410450px;}
.y9_c00422{bottom:908.220167px;}
.y24_c00422{bottom:928.560450px;}
.y8_c00422{bottom:938.370779px;}
.y23_c00422{bottom:958.800450px;}
.y7_c00422{bottom:988.860450px;}
.y22_c00422{bottom:988.950450px;}
.y6_c00422{bottom:1019.190450px;}
.y5_c00422{bottom:1049.340450px;}
.y4_c00422{bottom:1079.580450px;}
.y3_c00422{bottom:1110.451053px;}
.h3_c00422{height:62.600889px;}
.h1_c00422{height:62.771836px;}
.h2_c00422{height:63.216299px;}
.h4_c00422{height:74.160572px;}
.h0_c00422{height:1263.000000px;}
.w0_c00422{width:892.500000px;}
.x0_c00422{left:0.000000px;}
.x2_c00422{left:82.710059px;}
.x3_c00422{left:138.960000px;}
.x1_c00422{left:431.730000px;}
.x4_c00422{left:454.230000px;}
@media print{
.v0_c00422{vertical-align:0.000000pt;}
.v1_c00422{vertical-align:28.816096pt;}
.lse_c00422{letter-spacing:-0.105808pt;}
.ls9_c00422{letter-spacing:-0.080912pt;}
.ls14_c00422{letter-spacing:-0.074688pt;}
.ls7_c00422{letter-spacing:-0.056016pt;}
.ls13_c00422{letter-spacing:-0.049792pt;}
.ls15_c00422{letter-spacing:-0.043568pt;}
.lsf_c00422{letter-spacing:-0.037344pt;}
.lsd_c00422{letter-spacing:-0.031120pt;}
.ls10_c00422{letter-spacing:-0.024896pt;}
.ls11_c00422{letter-spacing:-0.018672pt;}
.lsb_c00422{letter-spacing:-0.012448pt;}
.lsc_c00422{letter-spacing:-0.006224pt;}
.ls8_c00422{letter-spacing:0.000000pt;}
.ls0_c00422{letter-spacing:0.006224pt;}
.ls4_c00422{letter-spacing:0.012448pt;}
.ls1_c00422{letter-spacing:0.018672pt;}
.ls6_c00422{letter-spacing:0.020694pt;}
.ls5_c00422{letter-spacing:0.031120pt;}
.ls3_c00422{letter-spacing:0.037344pt;}
.ls2_c00422{letter-spacing:0.043568pt;}
.ls16_c00422{letter-spacing:0.248960pt;}
.lsa_c00422{letter-spacing:0.304976pt;}
.ls12_c00422{letter-spacing:0.560160pt;}
.ws0_c00422{word-spacing:-17.221808pt;}
.ws1_c00422{word-spacing:-11.526781pt;}
.ws3_c00422{word-spacing:-0.012448pt;}
.ws2_c00422{word-spacing:0.000000pt;}
.ws7_c00422{word-spacing:0.024896pt;}
.ws6_c00422{word-spacing:0.093360pt;}
.ws4_c00422{word-spacing:0.311200pt;}
.ws5_c00422{word-spacing:0.336096pt;}
.ws20_c00422{word-spacing:0.342320pt;}
.wsb_c00422{word-spacing:0.622400pt;}
.ws15_c00422{word-spacing:1.307040pt;}
.ws25_c00422{word-spacing:1.624464pt;}
.ws1c_c00422{word-spacing:1.636912pt;}
.ws8_c00422{word-spacing:2.545616pt;}
.ws35_c00422{word-spacing:2.558064pt;}
.ws36_c00422{word-spacing:3.541456pt;}
.ws1e_c00422{word-spacing:4.829824pt;}
.ws23_c00422{word-spacing:5.421104pt;}
.ws24_c00422{word-spacing:5.738528pt;}
.ws3b_c00422{word-spacing:6.099520pt;}
.ws9_c00422{word-spacing:6.385824pt;}
.ws3a_c00422{word-spacing:6.392048pt;}
.ws28_c00422{word-spacing:7.344320pt;}
.ws1b_c00422{word-spacing:7.692864pt;}
.ws12_c00422{word-spacing:8.906544pt;}
.ws31_c00422{word-spacing:8.987456pt;}
.ws10_c00422{word-spacing:9.921056pt;}
.ws2c_c00422{word-spacing:11.539296pt;}
.ws1f_c00422{word-spacing:11.838048pt;}
.ws14_c00422{word-spacing:12.149248pt;}
.ws32_c00422{word-spacing:12.167920pt;}
.ws2d_c00422{word-spacing:13.089072pt;}
.wsc_c00422{word-spacing:14.122256pt;}
.wsa_c00422{word-spacing:14.402336pt;}
.ws38_c00422{word-spacing:14.688640pt;}
.ws11_c00422{word-spacing:15.037184pt;}
.ws19_c00422{word-spacing:16.294432pt;}
.ws2e_c00422{word-spacing:17.308944pt;}
.ws27_c00422{word-spacing:17.894000pt;}
.ws17_c00422{word-spacing:17.956240pt;}
.ws1d_c00422{word-spacing:19.810992pt;}
.ws21_c00422{word-spacing:19.898128pt;}
.ws22_c00422{word-spacing:20.159536pt;}
.ws2a_c00422{word-spacing:22.057856pt;}
.ws2b_c00422{word-spacing:22.412624pt;}
.ws30_c00422{word-spacing:23.078592pt;}
.wsd_c00422{word-spacing:23.694768pt;}
.ws16_c00422{word-spacing:25.873168pt;}
.ws13_c00422{word-spacing:25.910512pt;}
.ws3c_c00422{word-spacing:27.516304pt;}
.ws2f_c00422{word-spacing:29.451968pt;}
.wse_c00422{word-spacing:31.649040pt;}
.ws26_c00422{word-spacing:36.796288pt;}
.ws29_c00422{word-spacing:41.271344pt;}
.ws18_c00422{word-spacing:42.304528pt;}
.ws33_c00422{word-spacing:57.920544pt;}
.ws34_c00422{word-spacing:60.117616pt;}
.ws39_c00422{word-spacing:60.802256pt;}
.wsf_c00422{word-spacing:63.055344pt;}
.ws37_c00422{word-spacing:82.878784pt;}
.ws1a_c00422{word-spacing:124.119008pt;}
._4_c00422{margin-left:-29.389728pt;}
._1_c00422{margin-left:-0.914928pt;}
._0_c00422{width:0.914928pt;}
._2_c00422{width:15.479088pt;}
._3_c00422{width:25.151184pt;}
.fs1_c00422{font-size:41.388800pt;}
.fs0_c00422{font-size:62.240000pt;}
.y0_c00422{bottom:0.000000pt;}
.y2_c00422{bottom:97.547527pt;}
.y1_c00422{bottom:115.387067pt;}
.y21_c00422{bottom:163.143043pt;}
.y3c_c00422{bottom:163.147200pt;}
.y20_c00422{bottom:190.022943pt;}
.y3b_c00422{bottom:190.027200pt;}
.y1f_c00422{bottom:216.742575pt;}
.y3a_c00422{bottom:216.747067pt;}
.y1e_c00422{bottom:243.622475pt;}
.y39_c00422{bottom:243.627067pt;}
.y1d_c00422{bottom:270.423019pt;}
.y38_c00422{bottom:270.427067pt;}
.y1c_c00422{bottom:297.302919pt;}
.y37_c00422{bottom:297.307067pt;}
.y1b_c00422{bottom:324.103463pt;}
.y36_c00422{bottom:324.107067pt;}
.y1a_c00422{bottom:350.983363pt;}
.y35_c00422{bottom:350.987200pt;}
.y19_c00422{bottom:377.783907pt;}
.y34_c00422{bottom:377.787067pt;}
.y18_c00422{bottom:404.663807pt;}
.y33_c00422{bottom:404.667067pt;}
.y17_c00422{bottom:431.464351pt;}
.y32_c00422{bottom:431.467067pt;}
.y16_c00422{bottom:458.344251pt;}
.y31_c00422{bottom:458.347067pt;}
.y15_c00422{bottom:485.144795pt;}
.y30_c00422{bottom:485.147067pt;}
.y14_c00422{bottom:512.024695pt;}
.y2f_c00422{bottom:512.027067pt;}
.y13_c00422{bottom:538.825239pt;}
.y2e_c00422{bottom:538.827067pt;}
.y12_c00422{bottom:565.705139pt;}
.y2d_c00422{bottom:565.707067pt;}
.y11_c00422{bottom:592.585039pt;}
.y2c_c00422{bottom:592.587067pt;}
.y10_c00422{bottom:619.385583pt;}
.y2b_c00422{bottom:619.387067pt;}
.yf_c00422{bottom:646.265483pt;}
.y2a_c00422{bottom:646.267067pt;}
.ye_c00422{bottom:673.066027pt;}
.y29_c00422{bottom:691.147200pt;}
.yd_c00422{bottom:699.945927pt;}
.y28_c00422{bottom:718.027067pt;}
.yc_c00422{bottom:726.746471pt;}
.y27_c00422{bottom:744.907067pt;}
.yb_c00422{bottom:753.626371pt;}
.y26_c00422{bottom:771.707067pt;}
.ya_c00422{bottom:780.426915pt;}
.y25_c00422{bottom:798.587067pt;}
.y9_c00422{bottom:807.306815pt;}
.y24_c00422{bottom:825.387067pt;}
.y8_c00422{bottom:834.107359pt;}
.y23_c00422{bottom:852.267067pt;}
.y7_c00422{bottom:878.987067pt;}
.y22_c00422{bottom:879.067067pt;}
.y6_c00422{bottom:905.947067pt;}
.y5_c00422{bottom:932.747067pt;}
.y4_c00422{bottom:959.627067pt;}
.y3_c00422{bottom:987.067603pt;}
.h3_c00422{height:55.645234pt;}
.h1_c00422{height:55.797187pt;}
.h2_c00422{height:56.192266pt;}
.h4_c00422{height:65.920508pt;}
.h0_c00422{height:1122.666667pt;}
.w0_c00422{width:793.333333pt;}
.x0_c00422{left:0.000000pt;}
.x2_c00422{left:73.520052pt;}
.x3_c00422{left:123.520000pt;}
.x1_c00422{left:383.760000pt;}
.x4_c00422{left:403.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c1dc05715fb5ae3a7c1cdd4a.woff2')format("woff");}.ff1_c00423{font-family:ff1_c00423;line-height:1.106934;font-style:normal;font-weight:normal;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_a39fc0a4a91f5906927dcf37.woff2')format("woff");}.ff2_c00423{font-family:ff2_c00423;line-height:1.104492;font-style:normal;font-weight:normal;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_71f4419739fd18aeb8508b0e.woff2')format("woff");}.ff3_c00423{font-family:ff3_c00423;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00423{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00423{vertical-align:0.000000px;}
.v1_c00423{vertical-align:32.400000px;}
.lsa_c00423{letter-spacing:-0.105030px;}
.ls3_c00423{letter-spacing:-0.063018px;}
.lsb_c00423{letter-spacing:-0.056016px;}
.lsc_c00423{letter-spacing:-0.042012px;}
.ls8_c00423{letter-spacing:-0.035010px;}
.ls7_c00423{letter-spacing:-0.028008px;}
.ls5_c00423{letter-spacing:-0.021006px;}
.ls6_c00423{letter-spacing:-0.014004px;}
.ls9_c00423{letter-spacing:-0.007002px;}
.ls4_c00423{letter-spacing:0.000000px;}
.ls2_c00423{letter-spacing:0.007002px;}
.ls0_c00423{letter-spacing:0.021006px;}
.ls1_c00423{letter-spacing:0.023281px;}
.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:-19.360530px;}
.ws1_c00423{word-spacing:-12.967628px;}
.ws2_c00423{word-spacing:0.000000px;}
.wsd_c00423{word-spacing:0.714204px;}
.wsb_c00423{word-spacing:1.442412px;}
.ws5_c00423{word-spacing:2.891826px;}
.ws14_c00423{word-spacing:2.905830px;}
.ws7_c00423{word-spacing:5.419548px;}
.wsf_c00423{word-spacing:9.697770px;}
.ws13_c00423{word-spacing:10.467990px;}
.wsc_c00423{word-spacing:17.603028px;}
.ws4_c00423{word-spacing:24.121890px;}
.ws11_c00423{word-spacing:24.142896px;}
.ws9_c00423{word-spacing:24.499998px;}
.ws8_c00423{word-spacing:28.435122px;}
.wsa_c00423{word-spacing:30.598740px;}
.ws12_c00423{word-spacing:33.525576px;}
.ws6_c00423{word-spacing:39.974418px;}
.ws3_c00423{word-spacing:54.370530px;}
.ws10_c00423{word-spacing:62.282790px;}
.wse_c00423{word-spacing:114.825798px;}
._1_c00423{margin-left:-1.113318px;}
._0_c00423{width:1.204344px;}
.fc0_c00423{color:rgb(0,0,0);}
.fs1_c00423{font-size:46.562400px;}
.fs0_c00423{font-size:70.020000px;}
.y0_c00423{bottom:0.000000px;}
.y2_c00423{bottom:109.740968px;}
.y1_c00423{bottom:129.810450px;}
.y24_c00423{bottom:173.099478px;}
.y23_c00423{bottom:203.250090px;}
.y22_c00423{bottom:233.489977px;}
.y21_c00423{bottom:263.549563px;}
.y20_c00423{bottom:293.789451px;}
.y1f_c00423{bottom:323.940063px;}
.y1e_c00423{bottom:354.179950px;}
.y1d_c00423{bottom:384.330562px;}
.y1c_c00423{bottom:414.570450px;}
.y1b_c00423{bottom:445.530600px;}
.y1a_c00423{bottom:475.770600px;}
.y19_c00423{bottom:505.920450px;}
.y18_c00423{bottom:536.160450px;}
.y17_c00423{bottom:566.310450px;}
.y16_c00423{bottom:596.460450px;}
.y15_c00423{bottom:626.610450px;}
.y14_c00423{bottom:656.850450px;}
.y13_c00423{bottom:687.000450px;}
.y12_c00423{bottom:717.240450px;}
.y11_c00423{bottom:747.390450px;}
.y10_c00423{bottom:777.630450px;}
.yf_c00423{bottom:807.780450px;}
.ye_c00423{bottom:838.020450px;}
.yd_c00423{bottom:868.170450px;}
.yc_c00423{bottom:898.410450px;}
.yb_c00423{bottom:928.560450px;}
.ya_c00423{bottom:958.800450px;}
.y9_c00423{bottom:988.950450px;}
.y8_c00423{bottom:1019.190450px;}
.y7_c00423{bottom:1049.340450px;}
.y6_c00423{bottom:1079.580450px;}
.y4_c00423{bottom:1079.580985px;}
.y5_c00423{bottom:1109.730450px;}
.y3_c00423{bottom:1109.731597px;}
.h2_c00423{height:62.600889px;}
.h1_c00423{height:62.771836px;}
.h4_c00423{height:63.216299px;}
.h3_c00423{height:74.028786px;}
.h0_c00423{height:1263.000000px;}
.w0_c00423{width:892.500000px;}
.x0_c00423{left:0.000000px;}
.x2_c00423{left:82.710059px;}
.x3_c00423{left:138.960626px;}
.x1_c00423{left:431.730000px;}
.x5_c00423{left:446.310000px;}
.x4_c00423{left:454.230000px;}
@media print{
.v0_c00423{vertical-align:0.000000pt;}
.v1_c00423{vertical-align:28.800000pt;}
.lsa_c00423{letter-spacing:-0.093360pt;}
.ls3_c00423{letter-spacing:-0.056016pt;}
.lsb_c00423{letter-spacing:-0.049792pt;}
.lsc_c00423{letter-spacing:-0.037344pt;}
.ls8_c00423{letter-spacing:-0.031120pt;}
.ls7_c00423{letter-spacing:-0.024896pt;}
.ls5_c00423{letter-spacing:-0.018672pt;}
.ls6_c00423{letter-spacing:-0.012448pt;}
.ls9_c00423{letter-spacing:-0.006224pt;}
.ls4_c00423{letter-spacing:0.000000pt;}
.ls2_c00423{letter-spacing:0.006224pt;}
.ls0_c00423{letter-spacing:0.018672pt;}
.ls1_c00423{letter-spacing:0.020694pt;}
.ws0_c00423{word-spacing:-17.209360pt;}
.ws1_c00423{word-spacing:-11.526781pt;}
.ws2_c00423{word-spacing:0.000000pt;}
.wsd_c00423{word-spacing:0.634848pt;}
.wsb_c00423{word-spacing:1.282144pt;}
.ws5_c00423{word-spacing:2.570512pt;}
.ws14_c00423{word-spacing:2.582960pt;}
.ws7_c00423{word-spacing:4.817376pt;}
.wsf_c00423{word-spacing:8.620240pt;}
.ws13_c00423{word-spacing:9.304880pt;}
.wsc_c00423{word-spacing:15.647136pt;}
.ws4_c00423{word-spacing:21.441680pt;}
.ws11_c00423{word-spacing:21.460352pt;}
.ws9_c00423{word-spacing:21.777776pt;}
.ws8_c00423{word-spacing:25.275664pt;}
.wsa_c00423{word-spacing:27.198880pt;}
.ws12_c00423{word-spacing:29.800512pt;}
.ws6_c00423{word-spacing:35.532816pt;}
.ws3_c00423{word-spacing:48.329360pt;}
.ws10_c00423{word-spacing:55.362480pt;}
.wse_c00423{word-spacing:102.067376pt;}
._1_c00423{margin-left:-0.989616pt;}
._0_c00423{width:1.070528pt;}
.fs1_c00423{font-size:41.388800pt;}
.fs0_c00423{font-size:62.240000pt;}
.y0_c00423{bottom:0.000000pt;}
.y2_c00423{bottom:97.547527pt;}
.y1_c00423{bottom:115.387067pt;}
.y24_c00423{bottom:153.866203pt;}
.y23_c00423{bottom:180.666747pt;}
.y22_c00423{bottom:207.546647pt;}
.y21_c00423{bottom:234.266279pt;}
.y20_c00423{bottom:261.146179pt;}
.y1f_c00423{bottom:287.946723pt;}
.y1e_c00423{bottom:314.826623pt;}
.y1d_c00423{bottom:341.627167pt;}
.y1c_c00423{bottom:368.507067pt;}
.y1b_c00423{bottom:396.027200pt;}
.y1a_c00423{bottom:422.907200pt;}
.y19_c00423{bottom:449.707067pt;}
.y18_c00423{bottom:476.587067pt;}
.y17_c00423{bottom:503.387067pt;}
.y16_c00423{bottom:530.187067pt;}
.y15_c00423{bottom:556.987067pt;}
.y14_c00423{bottom:583.867067pt;}
.y13_c00423{bottom:610.667067pt;}
.y12_c00423{bottom:637.547067pt;}
.y11_c00423{bottom:664.347067pt;}
.y10_c00423{bottom:691.227067pt;}
.yf_c00423{bottom:718.027067pt;}
.ye_c00423{bottom:744.907067pt;}
.yd_c00423{bottom:771.707067pt;}
.yc_c00423{bottom:798.587067pt;}
.yb_c00423{bottom:825.387067pt;}
.ya_c00423{bottom:852.267067pt;}
.y9_c00423{bottom:879.067067pt;}
.y8_c00423{bottom:905.947067pt;}
.y7_c00423{bottom:932.747067pt;}
.y6_c00423{bottom:959.627067pt;}
.y4_c00423{bottom:959.627543pt;}
.y5_c00423{bottom:986.427067pt;}
.y3_c00423{bottom:986.428087pt;}
.h2_c00423{height:55.645234pt;}
.h1_c00423{height:55.797187pt;}
.h4_c00423{height:56.192266pt;}
.h3_c00423{height:65.803366pt;}
.h0_c00423{height:1122.666667pt;}
.w0_c00423{width:793.333333pt;}
.x0_c00423{left:0.000000pt;}
.x2_c00423{left:73.520052pt;}
.x3_c00423{left:123.520556pt;}
.x1_c00423{left:383.760000pt;}
.x5_c00423{left:396.720000pt;}
.x4_c00423{left:403.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6529676a541864e4d5ffc8f8.woff2')format("woff");}.ff1_c00424{font-family:ff1_c00424;line-height:1.106934;font-style:normal;font-weight:normal;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_93a30bc7111d96731b5cace9.woff2')format("woff");}.ff2_c00424{font-family:ff2_c00424;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00424;src:url('chunks/assets/font_86425026b7241a033b1fea57.woff2')format("woff");}.ff3_c00424{font-family:ff3_c00424;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00424{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00424{vertical-align:0.000000px;}
.v1_c00424{vertical-align:32.046570px;}
.lsa_c00424{letter-spacing:-0.322092px;}
.ls3_c00424{letter-spacing:-0.063018px;}
.ls8_c00424{letter-spacing:-0.042012px;}
.lsb_c00424{letter-spacing:-0.035010px;}
.ls5_c00424{letter-spacing:-0.028008px;}
.ls9_c00424{letter-spacing:-0.021006px;}
.ls7_c00424{letter-spacing:-0.014004px;}
.ls6_c00424{letter-spacing:-0.007002px;}
.ls4_c00424{letter-spacing:0.000000px;}
.ls1_c00424{letter-spacing:0.021006px;}
.ls2_c00424{letter-spacing:0.023281px;}
.ls0_c00424{letter-spacing:0.070020px;}
.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:-12.967628px;}
.ws3_c00424{word-spacing:-0.007002px;}
.ws1_c00424{word-spacing:0.000000px;}
.ws2_c00424{word-spacing:0.014004px;}
.ws11_c00424{word-spacing:0.028008px;}
.wsd_c00424{word-spacing:0.665190px;}
.ws8_c00424{word-spacing:1.799514px;}
.ws9_c00424{word-spacing:2.485710px;}
.ws12_c00424{word-spacing:3.620034px;}
.ws7_c00424{word-spacing:6.112746px;}
.ws5_c00424{word-spacing:6.133752px;}
.ws6_c00424{word-spacing:6.833952px;}
.ws13_c00424{word-spacing:11.875392px;}
.wse_c00424{word-spacing:11.896398px;}
.wsf_c00424{word-spacing:11.910402px;}
.wsc_c00424{word-spacing:15.124320px;}
.ws4_c00424{word-spacing:17.294940px;}
.wsb_c00424{word-spacing:20.508858px;}
.wsa_c00424{word-spacing:20.550870px;}
.ws10_c00424{word-spacing:35.269074px;}
._3_c00424{margin-left:-1.435410px;}
._0_c00424{width:1.036296px;}
._1_c00424{width:8.283366px;}
._2_c00424{width:16.244640px;}
.fc0_c00424{color:rgb(0,0,0);}
.fs1_c00424{font-size:46.562400px;}
.fs0_c00424{font-size:70.020000px;}
.y0_c00424{bottom:0.000000px;}
.y2_c00424{bottom:109.740968px;}
.y1_c00424{bottom:129.810450px;}
.y19_c00424{bottom:189.748215px;}
.y18_c00424{bottom:219.988102px;}
.y17_c00424{bottom:250.138714px;}
.y16_c00424{bottom:280.378602px;}
.y15_c00424{bottom:310.529214px;}
.y14_c00424{bottom:340.769101px;}
.y13_c00424{bottom:370.919713px;}
.y12_c00424{bottom:401.159601px;}
.y11_c00424{bottom:431.310213px;}
.y10_c00424{bottom:461.550100px;}
.yf_c00424{bottom:491.700713px;}
.ye_c00424{bottom:521.938807px;}
.yd_c00424{bottom:552.089419px;}
.yc_c00424{bottom:582.329307px;}
.yb_c00424{bottom:612.569194px;}
.ya_c00424{bottom:642.719806px;}
.y9_c00424{bottom:672.959694px;}
.y8_c00424{bottom:703.110306px;}
.y7_c00424{bottom:733.260918px;}
.y6_c00424{bottom:759.630450px;}
.y5_c00424{bottom:1049.341098px;}
.y4_c00424{bottom:1079.580985px;}
.y3_c00424{bottom:1109.731597px;}
.h4_c00424{height:62.600889px;}
.h1_c00424{height:62.771836px;}
.h2_c00424{height:63.216299px;}
.h3_c00424{height:73.675356px;}
.h0_c00424{height:1263.000000px;}
.w0_c00424{width:892.500000px;}
.x0_c00424{left:0.000000px;}
.x2_c00424{left:82.710059px;}
.x3_c00424{left:138.960626px;}
.x5_c00424{left:165.240882px;}
.x7_c00424{left:191.520418px;}
.x4_c00424{left:283.410135px;}
.x1_c00424{left:431.730000px;}
.x6_c00424{left:714.330000px;}
@media print{
.v0_c00424{vertical-align:0.000000pt;}
.v1_c00424{vertical-align:28.485840pt;}
.lsa_c00424{letter-spacing:-0.286304pt;}
.ls3_c00424{letter-spacing:-0.056016pt;}
.ls8_c00424{letter-spacing:-0.037344pt;}
.lsb_c00424{letter-spacing:-0.031120pt;}
.ls5_c00424{letter-spacing:-0.024896pt;}
.ls9_c00424{letter-spacing:-0.018672pt;}
.ls7_c00424{letter-spacing:-0.012448pt;}
.ls6_c00424{letter-spacing:-0.006224pt;}
.ls4_c00424{letter-spacing:0.000000pt;}
.ls1_c00424{letter-spacing:0.018672pt;}
.ls2_c00424{letter-spacing:0.020694pt;}
.ls0_c00424{letter-spacing:0.062240pt;}
.ws0_c00424{word-spacing:-11.526781pt;}
.ws3_c00424{word-spacing:-0.006224pt;}
.ws1_c00424{word-spacing:0.000000pt;}
.ws2_c00424{word-spacing:0.012448pt;}
.ws11_c00424{word-spacing:0.024896pt;}
.wsd_c00424{word-spacing:0.591280pt;}
.ws8_c00424{word-spacing:1.599568pt;}
.ws9_c00424{word-spacing:2.209520pt;}
.ws12_c00424{word-spacing:3.217808pt;}
.ws7_c00424{word-spacing:5.433552pt;}
.ws5_c00424{word-spacing:5.452224pt;}
.ws6_c00424{word-spacing:6.074624pt;}
.ws13_c00424{word-spacing:10.555904pt;}
.wse_c00424{word-spacing:10.574576pt;}
.wsf_c00424{word-spacing:10.587024pt;}
.wsc_c00424{word-spacing:13.443840pt;}
.ws4_c00424{word-spacing:15.373280pt;}
.wsb_c00424{word-spacing:18.230096pt;}
.wsa_c00424{word-spacing:18.267440pt;}
.ws10_c00424{word-spacing:31.350288pt;}
._3_c00424{margin-left:-1.275920pt;}
._0_c00424{width:0.921152pt;}
._1_c00424{width:7.362992pt;}
._2_c00424{width:14.439680pt;}
.fs1_c00424{font-size:41.388800pt;}
.fs0_c00424{font-size:62.240000pt;}
.y0_c00424{bottom:0.000000pt;}
.y2_c00424{bottom:97.547527pt;}
.y1_c00424{bottom:115.387067pt;}
.y19_c00424{bottom:168.665080pt;}
.y18_c00424{bottom:195.544980pt;}
.y17_c00424{bottom:222.345524pt;}
.y16_c00424{bottom:249.225424pt;}
.y15_c00424{bottom:276.025968pt;}
.y14_c00424{bottom:302.905868pt;}
.y13_c00424{bottom:329.706412pt;}
.y12_c00424{bottom:356.586312pt;}
.y11_c00424{bottom:383.386856pt;}
.y10_c00424{bottom:410.266756pt;}
.yf_c00424{bottom:437.067300pt;}
.ye_c00424{bottom:463.945607pt;}
.yd_c00424{bottom:490.746151pt;}
.yc_c00424{bottom:517.626051pt;}
.yb_c00424{bottom:544.505951pt;}
.ya_c00424{bottom:571.306495pt;}
.y9_c00424{bottom:598.186395pt;}
.y8_c00424{bottom:624.986939pt;}
.y7_c00424{bottom:651.787483pt;}
.y6_c00424{bottom:675.227067pt;}
.y5_c00424{bottom:932.747643pt;}
.y4_c00424{bottom:959.627543pt;}
.y3_c00424{bottom:986.428087pt;}
.h4_c00424{height:55.645234pt;}
.h1_c00424{height:55.797187pt;}
.h2_c00424{height:56.192266pt;}
.h3_c00424{height:65.489206pt;}
.h0_c00424{height:1122.666667pt;}
.w0_c00424{width:793.333333pt;}
.x0_c00424{left:0.000000pt;}
.x2_c00424{left:73.520052pt;}
.x3_c00424{left:123.520556pt;}
.x5_c00424{left:146.880784pt;}
.x7_c00424{left:170.240372pt;}
.x4_c00424{left:251.920120pt;}
.x1_c00424{left:383.760000pt;}
.x6_c00424{left:634.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_afedc1faacadef2020870aa9.woff2')format("woff");}.ff1_c00425{font-family:ff1_c00425;line-height:1.106934;font-style:normal;font-weight:normal;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_3b0ccf02f38f73004fd4336d.woff2')format("woff");}.ff2_c00425{font-family:ff2_c00425;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00425{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00425{vertical-align:0.000000px;}
.v1_c00425{vertical-align:32.058888px;}
.ls5_c00425{letter-spacing:-0.126036px;}
.lsc_c00425{letter-spacing:-0.077022px;}
.ls3_c00425{letter-spacing:-0.063018px;}
.ls9_c00425{letter-spacing:-0.056016px;}
.lsa_c00425{letter-spacing:-0.049014px;}
.lsd_c00425{letter-spacing:-0.042012px;}
.lsb_c00425{letter-spacing:-0.035010px;}
.ls8_c00425{letter-spacing:-0.021006px;}
.ls6_c00425{letter-spacing:-0.014004px;}
.ls7_c00425{letter-spacing:-0.007002px;}
.ls4_c00425{letter-spacing:0.000000px;}
.ls2_c00425{letter-spacing:0.023281px;}
.ls0_c00425{letter-spacing:0.035010px;}
.ls1_c00425{letter-spacing:0.042012px;}
.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:-19.430550px;}
.ws1_c00425{word-spacing:-12.967628px;}
.ws16_c00425{word-spacing:-0.294084px;}
.ws17_c00425{word-spacing:-0.056016px;}
.ws2_c00425{word-spacing:0.000000px;}
.ws3_c00425{word-spacing:0.112032px;}
.ws14_c00425{word-spacing:0.364104px;}
.wsf_c00425{word-spacing:0.735210px;}
.ws10_c00425{word-spacing:0.756216px;}
.ws11_c00425{word-spacing:1.785510px;}
.ws13_c00425{word-spacing:1.820520px;}
.ws4_c00425{word-spacing:3.599028px;}
.ws12_c00425{word-spacing:7.198056px;}
.wsb_c00425{word-spacing:11.882394px;}
.ws5_c00425{word-spacing:12.589596px;}
.ws9_c00425{word-spacing:16.923834px;}
.ws15_c00425{word-spacing:17.638038px;}
.wse_c00425{word-spacing:19.444554px;}
.ws6_c00425{word-spacing:20.529864px;}
.wsd_c00425{word-spacing:24.429978px;}
.wsc_c00425{word-spacing:24.521004px;}
.ws7_c00425{word-spacing:27.370818px;}
.ws8_c00425{word-spacing:28.792224px;}
.wsa_c00425{word-spacing:29.163330px;}
.ws18_c00425{word-spacing:36.746496px;}
._1_c00425{margin-left:-1.120320px;}
._0_c00425{width:1.267362px;}
.fc0_c00425{color:rgb(0,0,0);}
.fs1_c00425{font-size:46.562400px;}
.fs0_c00425{font-size:70.020000px;}
.y0_c00425{bottom:0.000000px;}
.y2_c00425{bottom:109.740968px;}
.y1_c00425{bottom:129.810450px;}
.y22_c00425{bottom:173.728065px;}
.y21_c00425{bottom:203.967952px;}
.y20_c00425{bottom:234.118564px;}
.y1f_c00425{bottom:264.358452px;}
.y1e_c00425{bottom:294.509064px;}
.y1d_c00425{bottom:324.748951px;}
.y1c_c00425{bottom:354.899563px;}
.y1b_c00425{bottom:385.139451px;}
.y1a_c00425{bottom:415.290063px;}
.y19_c00425{bottom:445.529950px;}
.y18_c00425{bottom:475.769838px;}
.y17_c00425{bottom:505.915878px;}
.y16_c00425{bottom:536.155766px;}
.y15_c00425{bottom:566.306378px;}
.y14_c00425{bottom:596.456990px;}
.y13_c00425{bottom:626.607602px;}
.y12_c00425{bottom:656.847489px;}
.y11_c00425{bottom:686.998101px;}
.y10_c00425{bottom:717.237989px;}
.yf_c00425{bottom:747.388601px;}
.ye_c00425{bottom:777.628488px;}
.yd_c00425{bottom:807.779100px;}
.yc_c00425{bottom:838.018988px;}
.yb_c00425{bottom:868.169600px;}
.ya_c00425{bottom:898.409487px;}
.y9_c00425{bottom:928.560099px;}
.y8_c00425{bottom:958.799987px;}
.y7_c00425{bottom:988.950599px;}
.y6_c00425{bottom:1019.190486px;}
.y5_c00425{bottom:1049.341098px;}
.y4_c00425{bottom:1079.580985px;}
.y3_c00425{bottom:1109.731597px;}
.h2_c00425{height:62.600889px;}
.h1_c00425{height:62.771836px;}
.h3_c00425{height:73.801352px;}
.h0_c00425{height:1263.000000px;}
.w0_c00425{width:892.500000px;}
.x0_c00425{left:0.000000px;}
.x2_c00425{left:82.710059px;}
.x3_c00425{left:138.960626px;}
.x1_c00425{left:431.730000px;}
@media print{
.v0_c00425{vertical-align:0.000000pt;}
.v1_c00425{vertical-align:28.496789pt;}
.ls5_c00425{letter-spacing:-0.112032pt;}
.lsc_c00425{letter-spacing:-0.068464pt;}
.ls3_c00425{letter-spacing:-0.056016pt;}
.ls9_c00425{letter-spacing:-0.049792pt;}
.lsa_c00425{letter-spacing:-0.043568pt;}
.lsd_c00425{letter-spacing:-0.037344pt;}
.lsb_c00425{letter-spacing:-0.031120pt;}
.ls8_c00425{letter-spacing:-0.018672pt;}
.ls6_c00425{letter-spacing:-0.012448pt;}
.ls7_c00425{letter-spacing:-0.006224pt;}
.ls4_c00425{letter-spacing:0.000000pt;}
.ls2_c00425{letter-spacing:0.020694pt;}
.ls0_c00425{letter-spacing:0.031120pt;}
.ls1_c00425{letter-spacing:0.037344pt;}
.ws0_c00425{word-spacing:-17.271600pt;}
.ws1_c00425{word-spacing:-11.526781pt;}
.ws16_c00425{word-spacing:-0.261408pt;}
.ws17_c00425{word-spacing:-0.049792pt;}
.ws2_c00425{word-spacing:0.000000pt;}
.ws3_c00425{word-spacing:0.099584pt;}
.ws14_c00425{word-spacing:0.323648pt;}
.wsf_c00425{word-spacing:0.653520pt;}
.ws10_c00425{word-spacing:0.672192pt;}
.ws11_c00425{word-spacing:1.587120pt;}
.ws13_c00425{word-spacing:1.618240pt;}
.ws4_c00425{word-spacing:3.199136pt;}
.ws12_c00425{word-spacing:6.398272pt;}
.wsb_c00425{word-spacing:10.562128pt;}
.ws5_c00425{word-spacing:11.190752pt;}
.ws9_c00425{word-spacing:15.043408pt;}
.ws15_c00425{word-spacing:15.678256pt;}
.wse_c00425{word-spacing:17.284048pt;}
.ws6_c00425{word-spacing:18.248768pt;}
.wsd_c00425{word-spacing:21.715536pt;}
.wsc_c00425{word-spacing:21.796448pt;}
.ws7_c00425{word-spacing:24.329616pt;}
.ws8_c00425{word-spacing:25.593088pt;}
.wsa_c00425{word-spacing:25.922960pt;}
.ws18_c00425{word-spacing:32.663552pt;}
._1_c00425{margin-left:-0.995840pt;}
._0_c00425{width:1.126544pt;}
.fs1_c00425{font-size:41.388800pt;}
.fs0_c00425{font-size:62.240000pt;}
.y0_c00425{bottom:0.000000pt;}
.y2_c00425{bottom:97.547527pt;}
.y1_c00425{bottom:115.387067pt;}
.y22_c00425{bottom:154.424947pt;}
.y21_c00425{bottom:181.304847pt;}
.y20_c00425{bottom:208.105391pt;}
.y1f_c00425{bottom:234.985291pt;}
.y1e_c00425{bottom:261.785835pt;}
.y1d_c00425{bottom:288.665735pt;}
.y1c_c00425{bottom:315.466279pt;}
.y1b_c00425{bottom:342.346179pt;}
.y1a_c00425{bottom:369.146723pt;}
.y19_c00425{bottom:396.026623pt;}
.y18_c00425{bottom:422.906523pt;}
.y17_c00425{bottom:449.703003pt;}
.y16_c00425{bottom:476.582903pt;}
.y15_c00425{bottom:503.383447pt;}
.y14_c00425{bottom:530.183991pt;}
.y13_c00425{bottom:556.984535pt;}
.y12_c00425{bottom:583.864435pt;}
.y11_c00425{bottom:610.664979pt;}
.y10_c00425{bottom:637.544879pt;}
.yf_c00425{bottom:664.345423pt;}
.ye_c00425{bottom:691.225323pt;}
.yd_c00425{bottom:718.025867pt;}
.yc_c00425{bottom:744.905767pt;}
.yb_c00425{bottom:771.706311pt;}
.ya_c00425{bottom:798.586211pt;}
.y9_c00425{bottom:825.386755pt;}
.y8_c00425{bottom:852.266655pt;}
.y7_c00425{bottom:879.067199pt;}
.y6_c00425{bottom:905.947099pt;}
.y5_c00425{bottom:932.747643pt;}
.y4_c00425{bottom:959.627543pt;}
.y3_c00425{bottom:986.428087pt;}
.h2_c00425{height:55.645234pt;}
.h1_c00425{height:55.797187pt;}
.h3_c00425{height:65.601202pt;}
.h0_c00425{height:1122.666667pt;}
.w0_c00425{width:793.333333pt;}
.x0_c00425{left:0.000000pt;}
.x2_c00425{left:73.520052pt;}
.x3_c00425{left:123.520556pt;}
.x1_c00425{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3786cf355c49dec35f54e6b9.woff2')format("woff");}.ff1_c00426{font-family:ff1_c00426;line-height:1.106934;font-style:normal;font-weight:normal;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_e0c241942f3444e97aa7bcee.woff2')format("woff");}.ff2_c00426{font-family:ff2_c00426;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00426{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00426{vertical-align:0.000000px;}
.ls1_c00426{letter-spacing:-0.063018px;}
.ls6_c00426{letter-spacing:-0.035010px;}
.ls3_c00426{letter-spacing:-0.028008px;}
.ls4_c00426{letter-spacing:-0.021006px;}
.ls5_c00426{letter-spacing:-0.014004px;}
.ls7_c00426{letter-spacing:-0.007002px;}
.ls2_c00426{letter-spacing:0.000000px;}
.ls0_c00426{letter-spacing:0.070020px;}
.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;}
}
.wsb_c00426{word-spacing:-0.007002px;}
.ws0_c00426{word-spacing:0.000000px;}
.ws2_c00426{word-spacing:0.007002px;}
.ws1_c00426{word-spacing:0.014004px;}
.ws8_c00426{word-spacing:2.898828px;}
.ws7_c00426{word-spacing:5.748642px;}
.ws6_c00426{word-spacing:5.769648px;}
.ws3_c00426{word-spacing:6.476850px;}
.wsa_c00426{word-spacing:20.165760px;}
.wsc_c00426{word-spacing:23.764788px;}
.ws4_c00426{word-spacing:24.829092px;}
.ws9_c00426{word-spacing:24.836094px;}
.ws5_c00426{word-spacing:54.356526px;}
._2_c00426{margin-left:-1.295370px;}
._3_c00426{width:1.043298px;}
._1_c00426{width:5.447556px;}
._0_c00426{width:8.283366px;}
.fc0_c00426{color:rgb(0,0,0);}
.fs0_c00426{font-size:70.020000px;}
.y0_c00426{bottom:0.000000px;}
.y2_c00426{bottom:109.740968px;}
.y1_c00426{bottom:129.810450px;}
.y19_c00426{bottom:185.429969px;}
.y18_c00426{bottom:215.580581px;}
.y17_c00426{bottom:245.820468px;}
.y16_c00426{bottom:275.971080px;}
.y15_c00426{bottom:306.210968px;}
.y14_c00426{bottom:326.280450px;}
.y13_c00426{bottom:357.330450px;}
.y12_c00426{bottom:387.480450px;}
.y11_c00426{bottom:417.720450px;}
.y10_c00426{bottom:447.870600px;}
.yf_c00426{bottom:478.020600px;}
.ye_c00426{bottom:508.170450px;}
.yd_c00426{bottom:538.410450px;}
.yc_c00426{bottom:568.560450px;}
.yb_c00426{bottom:598.800450px;}
.ya_c00426{bottom:628.950450px;}
.y9_c00426{bottom:659.190450px;}
.y8_c00426{bottom:689.340450px;}
.y7_c00426{bottom:715.800450px;}
.y6_c00426{bottom:1019.190450px;}
.y5_c00426{bottom:1049.340450px;}
.y4_c00426{bottom:1079.580450px;}
.y3_c00426{bottom:1109.730450px;}
.h1_c00426{height:62.771836px;}
.h2_c00426{height:63.216299px;}
.h0_c00426{height:1263.000000px;}
.w0_c00426{width:892.500000px;}
.x0_c00426{left:0.000000px;}
.x2_c00426{left:82.710059px;}
.x3_c00426{left:138.960000px;}
.x5_c00426{left:165.240000px;}
.x4_c00426{left:338.850000px;}
.x1_c00426{left:431.730000px;}
.x7_c00426{left:446.310000px;}
.x6_c00426{left:736.290000px;}
@media print{
.v0_c00426{vertical-align:0.000000pt;}
.ls1_c00426{letter-spacing:-0.056016pt;}
.ls6_c00426{letter-spacing:-0.031120pt;}
.ls3_c00426{letter-spacing:-0.024896pt;}
.ls4_c00426{letter-spacing:-0.018672pt;}
.ls5_c00426{letter-spacing:-0.012448pt;}
.ls7_c00426{letter-spacing:-0.006224pt;}
.ls2_c00426{letter-spacing:0.000000pt;}
.ls0_c00426{letter-spacing:0.062240pt;}
.wsb_c00426{word-spacing:-0.006224pt;}
.ws0_c00426{word-spacing:0.000000pt;}
.ws2_c00426{word-spacing:0.006224pt;}
.ws1_c00426{word-spacing:0.012448pt;}
.ws8_c00426{word-spacing:2.576736pt;}
.ws7_c00426{word-spacing:5.109904pt;}
.ws6_c00426{word-spacing:5.128576pt;}
.ws3_c00426{word-spacing:5.757200pt;}
.wsa_c00426{word-spacing:17.925120pt;}
.wsc_c00426{word-spacing:21.124256pt;}
.ws4_c00426{word-spacing:22.070304pt;}
.ws9_c00426{word-spacing:22.076528pt;}
.ws5_c00426{word-spacing:48.316912pt;}
._2_c00426{margin-left:-1.151440pt;}
._3_c00426{width:0.927376pt;}
._1_c00426{width:4.842272pt;}
._0_c00426{width:7.362992pt;}
.fs0_c00426{font-size:62.240000pt;}
.y0_c00426{bottom:0.000000pt;}
.y2_c00426{bottom:97.547527pt;}
.y1_c00426{bottom:115.387067pt;}
.y19_c00426{bottom:164.826639pt;}
.y18_c00426{bottom:191.627183pt;}
.y17_c00426{bottom:218.507083pt;}
.y16_c00426{bottom:245.307627pt;}
.y15_c00426{bottom:272.187527pt;}
.y14_c00426{bottom:290.027067pt;}
.y13_c00426{bottom:317.627067pt;}
.y12_c00426{bottom:344.427067pt;}
.y11_c00426{bottom:371.307067pt;}
.y10_c00426{bottom:398.107200pt;}
.yf_c00426{bottom:424.907200pt;}
.ye_c00426{bottom:451.707067pt;}
.yd_c00426{bottom:478.587067pt;}
.yc_c00426{bottom:505.387067pt;}
.yb_c00426{bottom:532.267067pt;}
.ya_c00426{bottom:559.067067pt;}
.y9_c00426{bottom:585.947067pt;}
.y8_c00426{bottom:612.747067pt;}
.y7_c00426{bottom:636.267067pt;}
.y6_c00426{bottom:905.947067pt;}
.y5_c00426{bottom:932.747067pt;}
.y4_c00426{bottom:959.627067pt;}
.y3_c00426{bottom:986.427067pt;}
.h1_c00426{height:55.797187pt;}
.h2_c00426{height:56.192266pt;}
.h0_c00426{height:1122.666667pt;}
.w0_c00426{width:793.333333pt;}
.x0_c00426{left:0.000000pt;}
.x2_c00426{left:73.520052pt;}
.x3_c00426{left:123.520000pt;}
.x5_c00426{left:146.880000pt;}
.x4_c00426{left:301.200000pt;}
.x1_c00426{left:383.760000pt;}
.x7_c00426{left:396.720000pt;}
.x6_c00426{left:654.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1bebec9c2f16ef431ec6ee6c.woff2')format("woff");}.ff1_c00427{font-family:ff1_c00427;line-height:1.106934;font-style:normal;font-weight:normal;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_06ea3c495400f150673a3bcf.woff2')format("woff");}.ff2_c00427{font-family:ff2_c00427;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00427;src:url('chunks/assets/font_4644805605dea9e5f9c581fe.woff2')format("woff");}.ff3_c00427{font-family:ff3_c00427;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00427{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00427{vertical-align:0.000000px;}
.v1_c00427{vertical-align:32.040000px;}
.ls17_c00427{letter-spacing:-0.161046px;}
.ls12_c00427{letter-spacing:-0.112032px;}
.lsb_c00427{letter-spacing:-0.091026px;}
.ls9_c00427{letter-spacing:-0.063018px;}
.ls10_c00427{letter-spacing:-0.056016px;}
.ls14_c00427{letter-spacing:-0.049014px;}
.lsf_c00427{letter-spacing:-0.042012px;}
.lsd_c00427{letter-spacing:-0.035010px;}
.ls13_c00427{letter-spacing:-0.028008px;}
.lsc_c00427{letter-spacing:-0.021006px;}
.ls11_c00427{letter-spacing:-0.014004px;}
.ls15_c00427{letter-spacing:-0.007002px;}
.lsa_c00427{letter-spacing:0.000000px;}
.ls5_c00427{letter-spacing:0.007002px;}
.ls1_c00427{letter-spacing:0.014004px;}
.ls7_c00427{letter-spacing:0.021006px;}
.ls8_c00427{letter-spacing:0.023281px;}
.ls0_c00427{letter-spacing:0.028008px;}
.ls6_c00427{letter-spacing:0.035010px;}
.ls2_c00427{letter-spacing:0.042012px;}
.ls3_c00427{letter-spacing:0.070020px;}
.ls4_c00427{letter-spacing:0.084024px;}
.ls16_c00427{letter-spacing:0.266076px;}
.lse_c00427{letter-spacing:0.343098px;}
.sc__c00427{text-shadow:none;}
.sc0_c00427{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00427{-webkit-text-stroke:0px transparent;}
.sc0_c00427{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00427{word-spacing:-19.451556px;}
.ws0_c00427{word-spacing:-19.374534px;}
.ws1_c00427{word-spacing:-19.304514px;}
.ws3_c00427{word-spacing:-12.967628px;}
.ws27_c00427{word-spacing:-0.357102px;}
.ws4_c00427{word-spacing:0.000000px;}
.ws5_c00427{word-spacing:0.007002px;}
.ws26_c00427{word-spacing:0.014004px;}
.ws6_c00427{word-spacing:0.021006px;}
.ws7_c00427{word-spacing:0.028008px;}
.ws25_c00427{word-spacing:0.077022px;}
.ws23_c00427{word-spacing:0.714204px;}
.ws9_c00427{word-spacing:1.470420px;}
.wsc_c00427{word-spacing:3.283938px;}
.ws15_c00427{word-spacing:3.585024px;}
.ws11_c00427{word-spacing:5.013432px;}
.ws10_c00427{word-spacing:5.041440px;}
.ws2c_c00427{word-spacing:5.755644px;}
.ws8_c00427{word-spacing:7.226064px;}
.ws19_c00427{word-spacing:8.255358px;}
.ws20_c00427{word-spacing:9.340668px;}
.ws13_c00427{word-spacing:9.389682px;}
.wse_c00427{word-spacing:11.525292px;}
.ws17_c00427{word-spacing:11.784366px;}
.ws12_c00427{word-spacing:12.183480px;}
.ws31_c00427{word-spacing:12.246498px;}
.ws2e_c00427{word-spacing:13.660902px;}
.ws1f_c00427{word-spacing:14.431122px;}
.ws1b_c00427{word-spacing:15.460416px;}
.ws32_c00427{word-spacing:16.244640px;}
.ws33_c00427{word-spacing:16.902828px;}
.ws22_c00427{word-spacing:17.245926px;}
.ws18_c00427{word-spacing:18.737352px;}
.ws30_c00427{word-spacing:19.073448px;}
.ws2a_c00427{word-spacing:19.479564px;}
.wsb_c00427{word-spacing:20.144754px;}
.ws1a_c00427{word-spacing:21.587166px;}
.ws16_c00427{word-spacing:24.759072px;}
.ws2b_c00427{word-spacing:25.235208px;}
.ws37_c00427{word-spacing:26.943696px;}
.ws21_c00427{word-spacing:27.734922px;}
.ws1c_c00427{word-spacing:29.471418px;}
.ws24_c00427{word-spacing:29.499426px;}
.ws1e_c00427{word-spacing:30.976848px;}
.ws2d_c00427{word-spacing:33.511572px;}
.ws34_c00427{word-spacing:34.183764px;}
.wsd_c00427{word-spacing:35.647182px;}
.ws36_c00427{word-spacing:37.124604px;}
.wsf_c00427{word-spacing:37.810800px;}
.ws35_c00427{word-spacing:38.511000px;}
.wsa_c00427{word-spacing:43.517430px;}
.ws1d_c00427{word-spacing:47.557584px;}
.ws29_c00427{word-spacing:52.192908px;}
.ws28_c00427{word-spacing:62.233776px;}
.ws2f_c00427{word-spacing:63.368100px;}
.ws14_c00427{word-spacing:245.259054px;}
._1_c00427{margin-left:-1.057302px;}
._0_c00427{width:1.029294px;}
._2_c00427{width:63.816228px;}
.fc0_c00427{color:rgb(0,0,0);}
.fs1_c00427{font-size:46.562400px;}
.fs0_c00427{font-size:70.020000px;}
.y0_c00427{bottom:0.000000px;}
.y2_c00427{bottom:109.740968px;}
.y1_c00427{bottom:129.810450px;}
.y21_c00427{bottom:163.110450px;}
.y20_c00427{bottom:193.260450px;}
.y1f_c00427{bottom:223.500450px;}
.y1e_c00427{bottom:253.650450px;}
.y1d_c00427{bottom:283.890450px;}
.y1c_c00427{bottom:314.040450px;}
.y1b_c00427{bottom:344.280450px;}
.y1a_c00427{bottom:374.430450px;}
.y19_c00427{bottom:404.670450px;}
.y18_c00427{bottom:434.820450px;}
.y17_c00427{bottom:465.060450px;}
.y16_c00427{bottom:495.210600px;}
.y15_c00427{bottom:525.450600px;}
.y14_c00427{bottom:555.600450px;}
.y13_c00427{bottom:585.840450px;}
.y12_c00427{bottom:615.990450px;}
.y11_c00427{bottom:646.230450px;}
.y10_c00427{bottom:676.380450px;}
.yf_c00427{bottom:706.620450px;}
.ye_c00427{bottom:736.770450px;}
.yd_c00427{bottom:767.010450px;}
.yc_c00427{bottom:797.160450px;}
.yb_c00427{bottom:827.400450px;}
.ya_c00427{bottom:857.640450px;}
.y9_c00427{bottom:887.790600px;}
.y8_c00427{bottom:917.940450px;}
.y7_c00427{bottom:948.090450px;}
.y6_c00427{bottom:978.330450px;}
.y24_c00427{bottom:998.670450px;}
.y5_c00427{bottom:1028.910450px;}
.y23_c00427{bottom:1049.250450px;}
.y4_c00427{bottom:1079.490450px;}
.y22_c00427{bottom:1079.580450px;}
.y3_c00427{bottom:1109.730450px;}
.h3_c00427{height:62.600889px;}
.h1_c00427{height:62.771836px;}
.h2_c00427{height:63.216299px;}
.h4_c00427{height:73.668786px;}
.h0_c00427{height:1263.000000px;}
.w0_c00427{width:892.500000px;}
.x0_c00427{left:0.000000px;}
.x2_c00427{left:82.710059px;}
.x3_c00427{left:138.960000px;}
.x1_c00427{left:431.730000px;}
.x4_c00427{left:454.230000px;}
@media print{
.v0_c00427{vertical-align:0.000000pt;}
.v1_c00427{vertical-align:28.480000pt;}
.ls17_c00427{letter-spacing:-0.143152pt;}
.ls12_c00427{letter-spacing:-0.099584pt;}
.lsb_c00427{letter-spacing:-0.080912pt;}
.ls9_c00427{letter-spacing:-0.056016pt;}
.ls10_c00427{letter-spacing:-0.049792pt;}
.ls14_c00427{letter-spacing:-0.043568pt;}
.lsf_c00427{letter-spacing:-0.037344pt;}
.lsd_c00427{letter-spacing:-0.031120pt;}
.ls13_c00427{letter-spacing:-0.024896pt;}
.lsc_c00427{letter-spacing:-0.018672pt;}
.ls11_c00427{letter-spacing:-0.012448pt;}
.ls15_c00427{letter-spacing:-0.006224pt;}
.lsa_c00427{letter-spacing:0.000000pt;}
.ls5_c00427{letter-spacing:0.006224pt;}
.ls1_c00427{letter-spacing:0.012448pt;}
.ls7_c00427{letter-spacing:0.018672pt;}
.ls8_c00427{letter-spacing:0.020694pt;}
.ls0_c00427{letter-spacing:0.024896pt;}
.ls6_c00427{letter-spacing:0.031120pt;}
.ls2_c00427{letter-spacing:0.037344pt;}
.ls3_c00427{letter-spacing:0.062240pt;}
.ls4_c00427{letter-spacing:0.074688pt;}
.ls16_c00427{letter-spacing:0.236512pt;}
.lse_c00427{letter-spacing:0.304976pt;}
.ws2_c00427{word-spacing:-17.290272pt;}
.ws0_c00427{word-spacing:-17.221808pt;}
.ws1_c00427{word-spacing:-17.159568pt;}
.ws3_c00427{word-spacing:-11.526781pt;}
.ws27_c00427{word-spacing:-0.317424pt;}
.ws4_c00427{word-spacing:0.000000pt;}
.ws5_c00427{word-spacing:0.006224pt;}
.ws26_c00427{word-spacing:0.012448pt;}
.ws6_c00427{word-spacing:0.018672pt;}
.ws7_c00427{word-spacing:0.024896pt;}
.ws25_c00427{word-spacing:0.068464pt;}
.ws23_c00427{word-spacing:0.634848pt;}
.ws9_c00427{word-spacing:1.307040pt;}
.wsc_c00427{word-spacing:2.919056pt;}
.ws15_c00427{word-spacing:3.186688pt;}
.ws11_c00427{word-spacing:4.456384pt;}
.ws10_c00427{word-spacing:4.481280pt;}
.ws2c_c00427{word-spacing:5.116128pt;}
.ws8_c00427{word-spacing:6.423168pt;}
.ws19_c00427{word-spacing:7.338096pt;}
.ws20_c00427{word-spacing:8.302816pt;}
.ws13_c00427{word-spacing:8.346384pt;}
.wse_c00427{word-spacing:10.244704pt;}
.ws17_c00427{word-spacing:10.474992pt;}
.ws12_c00427{word-spacing:10.829760pt;}
.ws31_c00427{word-spacing:10.885776pt;}
.ws2e_c00427{word-spacing:12.143024pt;}
.ws1f_c00427{word-spacing:12.827664pt;}
.ws1b_c00427{word-spacing:13.742592pt;}
.ws32_c00427{word-spacing:14.439680pt;}
.ws33_c00427{word-spacing:15.024736pt;}
.ws22_c00427{word-spacing:15.329712pt;}
.ws18_c00427{word-spacing:16.655424pt;}
.ws30_c00427{word-spacing:16.954176pt;}
.ws2a_c00427{word-spacing:17.315168pt;}
.wsb_c00427{word-spacing:17.906448pt;}
.ws1a_c00427{word-spacing:19.188592pt;}
.ws16_c00427{word-spacing:22.008064pt;}
.ws2b_c00427{word-spacing:22.431296pt;}
.ws37_c00427{word-spacing:23.949952pt;}
.ws21_c00427{word-spacing:24.653264pt;}
.ws1c_c00427{word-spacing:26.196816pt;}
.ws24_c00427{word-spacing:26.221712pt;}
.ws1e_c00427{word-spacing:27.534976pt;}
.ws2d_c00427{word-spacing:29.788064pt;}
.ws34_c00427{word-spacing:30.385568pt;}
.wsd_c00427{word-spacing:31.686384pt;}
.ws36_c00427{word-spacing:32.999648pt;}
.wsf_c00427{word-spacing:33.609600pt;}
.ws35_c00427{word-spacing:34.232000pt;}
.wsa_c00427{word-spacing:38.682160pt;}
.ws1d_c00427{word-spacing:42.273408pt;}
.ws29_c00427{word-spacing:46.393696pt;}
.ws28_c00427{word-spacing:55.318912pt;}
.ws2f_c00427{word-spacing:56.327200pt;}
.ws14_c00427{word-spacing:218.008048pt;}
._1_c00427{margin-left:-0.939824pt;}
._0_c00427{width:0.914928pt;}
._2_c00427{width:56.725536pt;}
.fs1_c00427{font-size:41.388800pt;}
.fs0_c00427{font-size:62.240000pt;}
.y0_c00427{bottom:0.000000pt;}
.y2_c00427{bottom:97.547527pt;}
.y1_c00427{bottom:115.387067pt;}
.y21_c00427{bottom:144.987067pt;}
.y20_c00427{bottom:171.787067pt;}
.y1f_c00427{bottom:198.667067pt;}
.y1e_c00427{bottom:225.467067pt;}
.y1d_c00427{bottom:252.347067pt;}
.y1c_c00427{bottom:279.147067pt;}
.y1b_c00427{bottom:306.027067pt;}
.y1a_c00427{bottom:332.827067pt;}
.y19_c00427{bottom:359.707067pt;}
.y18_c00427{bottom:386.507067pt;}
.y17_c00427{bottom:413.387067pt;}
.y16_c00427{bottom:440.187200pt;}
.y15_c00427{bottom:467.067200pt;}
.y14_c00427{bottom:493.867067pt;}
.y13_c00427{bottom:520.747067pt;}
.y12_c00427{bottom:547.547067pt;}
.y11_c00427{bottom:574.427067pt;}
.y10_c00427{bottom:601.227067pt;}
.yf_c00427{bottom:628.107067pt;}
.ye_c00427{bottom:654.907067pt;}
.yd_c00427{bottom:681.787067pt;}
.yc_c00427{bottom:708.587067pt;}
.yb_c00427{bottom:735.467067pt;}
.ya_c00427{bottom:762.347067pt;}
.y9_c00427{bottom:789.147200pt;}
.y8_c00427{bottom:815.947067pt;}
.y7_c00427{bottom:842.747067pt;}
.y6_c00427{bottom:869.627067pt;}
.y24_c00427{bottom:887.707067pt;}
.y5_c00427{bottom:914.587067pt;}
.y23_c00427{bottom:932.667067pt;}
.y4_c00427{bottom:959.547067pt;}
.y22_c00427{bottom:959.627067pt;}
.y3_c00427{bottom:986.427067pt;}
.h3_c00427{height:55.645234pt;}
.h1_c00427{height:55.797187pt;}
.h2_c00427{height:56.192266pt;}
.h4_c00427{height:65.483366pt;}
.h0_c00427{height:1122.666667pt;}
.w0_c00427{width:793.333333pt;}
.x0_c00427{left:0.000000pt;}
.x2_c00427{left:73.520052pt;}
.x3_c00427{left:123.520000pt;}
.x1_c00427{left:383.760000pt;}
.x4_c00427{left:403.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b9167aabe74f2b6374b854cf.woff2')format("woff");}.ff1_c00428{font-family:ff1_c00428;line-height:1.106934;font-style:normal;font-weight:normal;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_bf025f5d8e2ee600991046ad.woff2')format("woff");}.ff2_c00428{font-family:ff2_c00428;line-height:1.104492;font-style:normal;font-weight:normal;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_9411e9c05c02c715f7777e3b.woff2')format("woff");}.ff3_c00428{font-family:ff3_c00428;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00428{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00428{vertical-align:0.000000px;}
.v1_c00428{vertical-align:32.040000px;}
.ls4_c00428{letter-spacing:-0.063018px;}
.lsa_c00428{letter-spacing:-0.049014px;}
.ls9_c00428{letter-spacing:-0.042012px;}
.lsb_c00428{letter-spacing:-0.035010px;}
.ls6_c00428{letter-spacing:-0.028008px;}
.ls7_c00428{letter-spacing:-0.014004px;}
.ls8_c00428{letter-spacing:-0.007002px;}
.ls5_c00428{letter-spacing:0.000000px;}
.ls3_c00428{letter-spacing:0.014004px;}
.ls0_c00428{letter-spacing:0.023281px;}
.ls1_c00428{letter-spacing:0.056016px;}
.ls2_c00428{letter-spacing:0.070020px;}
.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:-12.967628px;}
.wsf_c00428{word-spacing:-0.322092px;}
.wsc_c00428{word-spacing:-0.070020px;}
.wse_c00428{word-spacing:-0.028008px;}
.wsb_c00428{word-spacing:-0.007002px;}
.ws1_c00428{word-spacing:0.000000px;}
.ws3_c00428{word-spacing:0.007002px;}
.wsa_c00428{word-spacing:0.014004px;}
.ws9_c00428{word-spacing:0.028008px;}
.wsd_c00428{word-spacing:0.371106px;}
.ws11_c00428{word-spacing:1.442412px;}
.ws8_c00428{word-spacing:2.548728px;}
.ws13_c00428{word-spacing:4.306230px;}
.ws10_c00428{word-spacing:8.269362px;}
.ws12_c00428{word-spacing:27.020718px;}
.ws7_c00428{word-spacing:33.497568px;}
.ws2_c00428{word-spacing:36.375390px;}
.ws4_c00428{word-spacing:53.264214px;}
.ws6_c00428{word-spacing:114.111594px;}
.ws5_c00428{word-spacing:159.477552px;}
._1_c00428{margin-left:-1.155330px;}
._0_c00428{width:1.071306px;}
._2_c00428{width:8.283366px;}
.fc0_c00428{color:rgb(0,0,0);}
.fs1_c00428{font-size:46.562400px;}
.fs0_c00428{font-size:70.020000px;}
.y0_c00428{bottom:0.000000px;}
.y2_c00428{bottom:109.740968px;}
.y1_c00428{bottom:129.810450px;}
.y18_c00428{bottom:180.298920px;}
.y17_c00428{bottom:210.538807px;}
.y16_c00428{bottom:240.689419px;}
.y15_c00428{bottom:270.929307px;}
.y14_c00428{bottom:301.079919px;}
.y13_c00428{bottom:331.319806px;}
.y12_c00428{bottom:361.470418px;}
.y11_c00428{bottom:391.710306px;}
.y10_c00428{bottom:421.860918px;}
.yf_c00428{bottom:448.230450px;}
.ye_c00428{bottom:736.049950px;}
.yd_c00428{bottom:766.200562px;}
.yc_c00428{bottom:796.440450px;}
.yb_c00428{bottom:827.400779px;}
.ya_c00428{bottom:877.890450px;}
.y9_c00428{bottom:908.220450px;}
.y8_c00428{bottom:938.370450px;}
.y7_c00428{bottom:968.610450px;}
.y6_c00428{bottom:998.760450px;}
.y5_c00428{bottom:1029.000450px;}
.y4_c00428{bottom:1079.490450px;}
.y3_c00428{bottom:1109.730450px;}
.h2_c00428{height:62.600889px;}
.h1_c00428{height:62.771836px;}
.h4_c00428{height:63.216299px;}
.h3_c00428{height:73.668786px;}
.h0_c00428{height:1263.000000px;}
.w0_c00428{width:892.500000px;}
.x0_c00428{left:0.000000px;}
.x2_c00428{left:82.710059px;}
.x3_c00428{left:138.960000px;}
.x6_c00428{left:165.240968px;}
.x5_c00428{left:283.410221px;}
.x1_c00428{left:431.730000px;}
.x4_c00428{left:446.310000px;}
.x7_c00428{left:720.540000px;}
@media print{
.v0_c00428{vertical-align:0.000000pt;}
.v1_c00428{vertical-align:28.480000pt;}
.ls4_c00428{letter-spacing:-0.056016pt;}
.lsa_c00428{letter-spacing:-0.043568pt;}
.ls9_c00428{letter-spacing:-0.037344pt;}
.lsb_c00428{letter-spacing:-0.031120pt;}
.ls6_c00428{letter-spacing:-0.024896pt;}
.ls7_c00428{letter-spacing:-0.012448pt;}
.ls8_c00428{letter-spacing:-0.006224pt;}
.ls5_c00428{letter-spacing:0.000000pt;}
.ls3_c00428{letter-spacing:0.012448pt;}
.ls0_c00428{letter-spacing:0.020694pt;}
.ls1_c00428{letter-spacing:0.049792pt;}
.ls2_c00428{letter-spacing:0.062240pt;}
.ws0_c00428{word-spacing:-11.526781pt;}
.wsf_c00428{word-spacing:-0.286304pt;}
.wsc_c00428{word-spacing:-0.062240pt;}
.wse_c00428{word-spacing:-0.024896pt;}
.wsb_c00428{word-spacing:-0.006224pt;}
.ws1_c00428{word-spacing:0.000000pt;}
.ws3_c00428{word-spacing:0.006224pt;}
.wsa_c00428{word-spacing:0.012448pt;}
.ws9_c00428{word-spacing:0.024896pt;}
.wsd_c00428{word-spacing:0.329872pt;}
.ws11_c00428{word-spacing:1.282144pt;}
.ws8_c00428{word-spacing:2.265536pt;}
.ws13_c00428{word-spacing:3.827760pt;}
.ws10_c00428{word-spacing:7.350544pt;}
.ws12_c00428{word-spacing:24.018416pt;}
.ws7_c00428{word-spacing:29.775616pt;}
.ws2_c00428{word-spacing:32.333680pt;}
.ws4_c00428{word-spacing:47.345968pt;}
.ws6_c00428{word-spacing:101.432528pt;}
.ws5_c00428{word-spacing:141.757824pt;}
._1_c00428{margin-left:-1.026960pt;}
._0_c00428{width:0.952272pt;}
._2_c00428{width:7.362992pt;}
.fs1_c00428{font-size:41.388800pt;}
.fs0_c00428{font-size:62.240000pt;}
.y0_c00428{bottom:0.000000pt;}
.y2_c00428{bottom:97.547527pt;}
.y1_c00428{bottom:115.387067pt;}
.y18_c00428{bottom:160.265707pt;}
.y17_c00428{bottom:187.145607pt;}
.y16_c00428{bottom:213.946151pt;}
.y15_c00428{bottom:240.826051pt;}
.y14_c00428{bottom:267.626595pt;}
.y13_c00428{bottom:294.506495pt;}
.y12_c00428{bottom:321.307039pt;}
.y11_c00428{bottom:348.186939pt;}
.y10_c00428{bottom:374.987483pt;}
.yf_c00428{bottom:398.427067pt;}
.ye_c00428{bottom:654.266623pt;}
.yd_c00428{bottom:681.067167pt;}
.yc_c00428{bottom:707.947067pt;}
.yb_c00428{bottom:735.467359pt;}
.ya_c00428{bottom:780.347067pt;}
.y9_c00428{bottom:807.307067pt;}
.y8_c00428{bottom:834.107067pt;}
.y7_c00428{bottom:860.987067pt;}
.y6_c00428{bottom:887.787067pt;}
.y5_c00428{bottom:914.667067pt;}
.y4_c00428{bottom:959.547067pt;}
.y3_c00428{bottom:986.427067pt;}
.h2_c00428{height:55.645234pt;}
.h1_c00428{height:55.797187pt;}
.h4_c00428{height:56.192266pt;}
.h3_c00428{height:65.483366pt;}
.h0_c00428{height:1122.666667pt;}
.w0_c00428{width:793.333333pt;}
.x0_c00428{left:0.000000pt;}
.x2_c00428{left:73.520052pt;}
.x3_c00428{left:123.520000pt;}
.x6_c00428{left:146.880860pt;}
.x5_c00428{left:251.920196pt;}
.x1_c00428{left:383.760000pt;}
.x4_c00428{left:396.720000pt;}
.x7_c00428{left:640.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6f3b8b34fc117d69cb584512.woff2')format("woff");}.ff1_c00429{font-family:ff1_c00429;line-height:1.106934;font-style:normal;font-weight:normal;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_a8e3a307f14a610ab320c4cb.woff2')format("woff");}.ff2_c00429{font-family:ff2_c00429;line-height:1.104492;font-style:normal;font-weight:normal;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_71f4419739fd18aeb8508b0e.woff2')format("woff");}.ff3_c00429{font-family:ff3_c00429;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00429{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00429{vertical-align:0.000000px;}
.v1_c00429{vertical-align:32.403402px;}
.ls9_c00429{letter-spacing:-0.070020px;}
.ls2_c00429{letter-spacing:-0.063018px;}
.lsa_c00429{letter-spacing:-0.042012px;}
.ls7_c00429{letter-spacing:-0.035010px;}
.ls4_c00429{letter-spacing:-0.028008px;}
.ls8_c00429{letter-spacing:-0.021006px;}
.ls6_c00429{letter-spacing:-0.014004px;}
.ls5_c00429{letter-spacing:-0.007002px;}
.ls3_c00429{letter-spacing:0.000000px;}
.ls0_c00429{letter-spacing:0.014004px;}
.ls1_c00429{letter-spacing:0.023281px;}
.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:-12.967628px;}
.wsb_c00429{word-spacing:-0.028008px;}
.ws1_c00429{word-spacing:0.000000px;}
.ws3_c00429{word-spacing:0.014004px;}
.wsa_c00429{word-spacing:0.364104px;}
.wsd_c00429{word-spacing:0.378108px;}
.ws12_c00429{word-spacing:4.691340px;}
.wsf_c00429{word-spacing:6.119748px;}
.ws2_c00429{word-spacing:6.133752px;}
.ws9_c00429{word-spacing:9.718776px;}
.ws14_c00429{word-spacing:10.467990px;}
.ws7_c00429{word-spacing:11.875392px;}
.ws8_c00429{word-spacing:11.903400px;}
.ws4_c00429{word-spacing:12.232494px;}
.wse_c00429{word-spacing:13.303800px;}
.ws5_c00429{word-spacing:14.403114px;}
.ws6_c00429{word-spacing:14.753214px;}
.wsc_c00429{word-spacing:17.301942px;}
.ws13_c00429{word-spacing:23.421690px;}
.ws10_c00429{word-spacing:34.190766px;}
.ws11_c00429{word-spacing:34.253784px;}
._1_c00429{margin-left:-1.043298px;}
._0_c00429{width:1.295370px;}
.fc0_c00429{color:rgb(0,0,0);}
.fs1_c00429{font-size:46.562400px;}
.fs0_c00429{font-size:70.020000px;}
.y0_c00429{bottom:0.000000px;}
.y2_c00429{bottom:109.740968px;}
.y1_c00429{bottom:129.810450px;}
.y22_c00429{bottom:173.728177px;}
.y21_c00429{bottom:203.968065px;}
.y20_c00429{bottom:234.118677px;}
.y1f_c00429{bottom:264.358564px;}
.y1e_c00429{bottom:294.509176px;}
.y1d_c00429{bottom:324.749064px;}
.y1c_c00429{bottom:354.899676px;}
.y1b_c00429{bottom:385.139564px;}
.y1a_c00429{bottom:415.290175px;}
.y19_c00429{bottom:445.530063px;}
.y18_c00429{bottom:475.769950px;}
.y17_c00429{bottom:505.920562px;}
.y16_c00429{bottom:536.156616px;}
.y15_c00429{bottom:566.307228px;}
.y14_c00429{bottom:596.457840px;}
.y13_c00429{bottom:626.608452px;}
.y12_c00429{bottom:656.848340px;}
.y11_c00429{bottom:686.998952px;}
.y10_c00429{bottom:717.238839px;}
.yf_c00429{bottom:747.389451px;}
.ye_c00429{bottom:777.629339px;}
.yd_c00429{bottom:807.779951px;}
.yc_c00429{bottom:838.019838px;}
.yb_c00429{bottom:868.169600px;}
.ya_c00429{bottom:898.409487px;}
.y9_c00429{bottom:928.560099px;}
.y8_c00429{bottom:958.799987px;}
.y7_c00429{bottom:988.950599px;}
.y6_c00429{bottom:1019.190486px;}
.y5_c00429{bottom:1049.341098px;}
.y4_c00429{bottom:1079.580985px;}
.y3_c00429{bottom:1109.731597px;}
.h2_c00429{height:62.600889px;}
.h1_c00429{height:62.771836px;}
.h4_c00429{height:73.684122px;}
.h3_c00429{height:74.032188px;}
.h0_c00429{height:1263.000000px;}
.w0_c00429{width:892.500000px;}
.x0_c00429{left:0.000000px;}
.x2_c00429{left:82.710059px;}
.x3_c00429{left:138.960626px;}
.x1_c00429{left:431.730000px;}
@media print{
.v0_c00429{vertical-align:0.000000pt;}
.v1_c00429{vertical-align:28.803024pt;}
.ls9_c00429{letter-spacing:-0.062240pt;}
.ls2_c00429{letter-spacing:-0.056016pt;}
.lsa_c00429{letter-spacing:-0.037344pt;}
.ls7_c00429{letter-spacing:-0.031120pt;}
.ls4_c00429{letter-spacing:-0.024896pt;}
.ls8_c00429{letter-spacing:-0.018672pt;}
.ls6_c00429{letter-spacing:-0.012448pt;}
.ls5_c00429{letter-spacing:-0.006224pt;}
.ls3_c00429{letter-spacing:0.000000pt;}
.ls0_c00429{letter-spacing:0.012448pt;}
.ls1_c00429{letter-spacing:0.020694pt;}
.ws0_c00429{word-spacing:-11.526781pt;}
.wsb_c00429{word-spacing:-0.024896pt;}
.ws1_c00429{word-spacing:0.000000pt;}
.ws3_c00429{word-spacing:0.012448pt;}
.wsa_c00429{word-spacing:0.323648pt;}
.wsd_c00429{word-spacing:0.336096pt;}
.ws12_c00429{word-spacing:4.170080pt;}
.wsf_c00429{word-spacing:5.439776pt;}
.ws2_c00429{word-spacing:5.452224pt;}
.ws9_c00429{word-spacing:8.638912pt;}
.ws14_c00429{word-spacing:9.304880pt;}
.ws7_c00429{word-spacing:10.555904pt;}
.ws8_c00429{word-spacing:10.580800pt;}
.ws4_c00429{word-spacing:10.873328pt;}
.wse_c00429{word-spacing:11.825600pt;}
.ws5_c00429{word-spacing:12.802768pt;}
.ws6_c00429{word-spacing:13.113968pt;}
.wsc_c00429{word-spacing:15.379504pt;}
.ws13_c00429{word-spacing:20.819280pt;}
.ws10_c00429{word-spacing:30.391792pt;}
.ws11_c00429{word-spacing:30.447808pt;}
._1_c00429{margin-left:-0.927376pt;}
._0_c00429{width:1.151440pt;}
.fs1_c00429{font-size:41.388800pt;}
.fs0_c00429{font-size:62.240000pt;}
.y0_c00429{bottom:0.000000pt;}
.y2_c00429{bottom:97.547527pt;}
.y1_c00429{bottom:115.387067pt;}
.y22_c00429{bottom:154.425047pt;}
.y21_c00429{bottom:181.304947pt;}
.y20_c00429{bottom:208.105491pt;}
.y1f_c00429{bottom:234.985391pt;}
.y1e_c00429{bottom:261.785935pt;}
.y1d_c00429{bottom:288.665835pt;}
.y1c_c00429{bottom:315.466379pt;}
.y1b_c00429{bottom:342.346279pt;}
.y1a_c00429{bottom:369.146823pt;}
.y19_c00429{bottom:396.026723pt;}
.y18_c00429{bottom:422.906623pt;}
.y17_c00429{bottom:449.707167pt;}
.y16_c00429{bottom:476.583659pt;}
.y15_c00429{bottom:503.384203pt;}
.y14_c00429{bottom:530.184747pt;}
.y13_c00429{bottom:556.985291pt;}
.y12_c00429{bottom:583.865191pt;}
.y11_c00429{bottom:610.665735pt;}
.y10_c00429{bottom:637.545635pt;}
.yf_c00429{bottom:664.346179pt;}
.ye_c00429{bottom:691.226079pt;}
.yd_c00429{bottom:718.026623pt;}
.yc_c00429{bottom:744.906523pt;}
.yb_c00429{bottom:771.706311pt;}
.ya_c00429{bottom:798.586211pt;}
.y9_c00429{bottom:825.386755pt;}
.y8_c00429{bottom:852.266655pt;}
.y7_c00429{bottom:879.067199pt;}
.y6_c00429{bottom:905.947099pt;}
.y5_c00429{bottom:932.747643pt;}
.y4_c00429{bottom:959.627543pt;}
.y3_c00429{bottom:986.428087pt;}
.h2_c00429{height:55.645234pt;}
.h1_c00429{height:55.797187pt;}
.h4_c00429{height:65.496998pt;}
.h3_c00429{height:65.806390pt;}
.h0_c00429{height:1122.666667pt;}
.w0_c00429{width:793.333333pt;}
.x0_c00429{left:0.000000pt;}
.x2_c00429{left:73.520052pt;}
.x3_c00429{left:123.520556pt;}
.x1_c00429{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c0790a5a78dd6c92b6f7a741.woff2')format("woff");}.ff1_c00430{font-family:ff1_c00430;line-height:1.106934;font-style:normal;font-weight:normal;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_f9f26d37d90857de4fcedda0.woff2')format("woff");}.ff2_c00430{font-family:ff2_c00430;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00430;src:url('chunks/assets/font_1e3caf46ded69eb3e8a935c2.woff2')format("woff");}.ff3_c00430{font-family:ff3_c00430;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00430{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00430{vertical-align:0.000000px;}
.v1_c00430{vertical-align:32.400000px;}
.ls3_c00430{letter-spacing:-0.063018px;}
.ls6_c00430{letter-spacing:-0.056016px;}
.lsa_c00430{letter-spacing:-0.042012px;}
.lsb_c00430{letter-spacing:-0.035010px;}
.ls5_c00430{letter-spacing:-0.028008px;}
.ls8_c00430{letter-spacing:-0.021006px;}
.ls7_c00430{letter-spacing:-0.014004px;}
.ls9_c00430{letter-spacing:-0.007002px;}
.ls4_c00430{letter-spacing:0.000000px;}
.ls1_c00430{letter-spacing:0.007002px;}
.ls2_c00430{letter-spacing:0.023281px;}
.ls0_c00430{letter-spacing:0.070020px;}
.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:-12.967628px;}
.ws1_c00430{word-spacing:0.000000px;}
.ws2_c00430{word-spacing:0.014004px;}
.ws6_c00430{word-spacing:0.371106px;}
.ws11_c00430{word-spacing:0.385110px;}
.ws3_c00430{word-spacing:0.399114px;}
.ws5_c00430{word-spacing:0.735210px;}
.ws7_c00430{word-spacing:3.599028px;}
.wse_c00430{word-spacing:9.354672px;}
.wsf_c00430{word-spacing:9.725778px;}
.ws4_c00430{word-spacing:9.732780px;}
.wsc_c00430{word-spacing:10.103886px;}
.ws10_c00430{word-spacing:11.497284px;}
.wsd_c00430{word-spacing:11.882394px;}
.wsa_c00430{word-spacing:13.310802px;}
.ws9_c00430{word-spacing:13.317804px;}
.wsb_c00430{word-spacing:15.509430px;}
.ws8_c00430{word-spacing:17.645040px;}
._2_c00430{margin-left:-1.309374px;}
._1_c00430{width:1.197342px;}
._3_c00430{width:8.682480px;}
._0_c00430{width:11.525292px;}
.fc0_c00430{color:rgb(0,0,0);}
.fs1_c00430{font-size:46.562400px;}
.fs0_c00430{font-size:70.020000px;}
.y0_c00430{bottom:0.000000px;}
.y2_c00430{bottom:109.740968px;}
.y1_c00430{bottom:129.810450px;}
.y1a_c00430{bottom:180.659442px;}
.y19_c00430{bottom:210.899329px;}
.y18_c00430{bottom:241.049941px;}
.y17_c00430{bottom:261.210450px;}
.y16_c00430{bottom:292.170450px;}
.y15_c00430{bottom:322.410450px;}
.y14_c00430{bottom:352.560450px;}
.y13_c00430{bottom:382.800450px;}
.y12_c00430{bottom:412.950600px;}
.y11_c00430{bottom:443.190600px;}
.y10_c00430{bottom:473.340600px;}
.yf_c00430{bottom:503.580450px;}
.ye_c00430{bottom:533.730450px;}
.yd_c00430{bottom:563.970450px;}
.yc_c00430{bottom:594.120450px;}
.yb_c00430{bottom:624.360450px;}
.ya_c00430{bottom:654.510450px;}
.y9_c00430{bottom:684.750450px;}
.y8_c00430{bottom:711.120450px;}
.y7_c00430{bottom:988.950450px;}
.y6_c00430{bottom:1019.190450px;}
.y5_c00430{bottom:1049.340450px;}
.y4_c00430{bottom:1079.580450px;}
.y3_c00430{bottom:1109.730450px;}
.h3_c00430{height:62.600889px;}
.h1_c00430{height:62.771836px;}
.h2_c00430{height:63.216299px;}
.h4_c00430{height:74.028786px;}
.h0_c00430{height:1263.000000px;}
.w0_c00430{width:892.500000px;}
.x0_c00430{left:0.000000px;}
.x2_c00430{left:82.710059px;}
.x3_c00430{left:138.960000px;}
.x6_c00430{left:191.520000px;}
.x7_c00430{left:217.800000px;}
.x4_c00430{left:338.850000px;}
.x1_c00430{left:431.730000px;}
.x5_c00430{left:472.590000px;}
.x8_c00430{left:709.920000px;}
@media print{
.v0_c00430{vertical-align:0.000000pt;}
.v1_c00430{vertical-align:28.800000pt;}
.ls3_c00430{letter-spacing:-0.056016pt;}
.ls6_c00430{letter-spacing:-0.049792pt;}
.lsa_c00430{letter-spacing:-0.037344pt;}
.lsb_c00430{letter-spacing:-0.031120pt;}
.ls5_c00430{letter-spacing:-0.024896pt;}
.ls8_c00430{letter-spacing:-0.018672pt;}
.ls7_c00430{letter-spacing:-0.012448pt;}
.ls9_c00430{letter-spacing:-0.006224pt;}
.ls4_c00430{letter-spacing:0.000000pt;}
.ls1_c00430{letter-spacing:0.006224pt;}
.ls2_c00430{letter-spacing:0.020694pt;}
.ls0_c00430{letter-spacing:0.062240pt;}
.ws0_c00430{word-spacing:-11.526781pt;}
.ws1_c00430{word-spacing:0.000000pt;}
.ws2_c00430{word-spacing:0.012448pt;}
.ws6_c00430{word-spacing:0.329872pt;}
.ws11_c00430{word-spacing:0.342320pt;}
.ws3_c00430{word-spacing:0.354768pt;}
.ws5_c00430{word-spacing:0.653520pt;}
.ws7_c00430{word-spacing:3.199136pt;}
.wse_c00430{word-spacing:8.315264pt;}
.wsf_c00430{word-spacing:8.645136pt;}
.ws4_c00430{word-spacing:8.651360pt;}
.wsc_c00430{word-spacing:8.981232pt;}
.ws10_c00430{word-spacing:10.219808pt;}
.wsd_c00430{word-spacing:10.562128pt;}
.wsa_c00430{word-spacing:11.831824pt;}
.ws9_c00430{word-spacing:11.838048pt;}
.wsb_c00430{word-spacing:13.786160pt;}
.ws8_c00430{word-spacing:15.684480pt;}
._2_c00430{margin-left:-1.163888pt;}
._1_c00430{width:1.064304pt;}
._3_c00430{width:7.717760pt;}
._0_c00430{width:10.244704pt;}
.fs1_c00430{font-size:41.388800pt;}
.fs0_c00430{font-size:62.240000pt;}
.y0_c00430{bottom:0.000000pt;}
.y2_c00430{bottom:97.547527pt;}
.y1_c00430{bottom:115.387067pt;}
.y1a_c00430{bottom:160.586171pt;}
.y19_c00430{bottom:187.466071pt;}
.y18_c00430{bottom:214.266615pt;}
.y17_c00430{bottom:232.187067pt;}
.y16_c00430{bottom:259.707067pt;}
.y15_c00430{bottom:286.587067pt;}
.y14_c00430{bottom:313.387067pt;}
.y13_c00430{bottom:340.267067pt;}
.y12_c00430{bottom:367.067200pt;}
.y11_c00430{bottom:393.947200pt;}
.y10_c00430{bottom:420.747200pt;}
.yf_c00430{bottom:447.627067pt;}
.ye_c00430{bottom:474.427067pt;}
.yd_c00430{bottom:501.307067pt;}
.yc_c00430{bottom:528.107067pt;}
.yb_c00430{bottom:554.987067pt;}
.ya_c00430{bottom:581.787067pt;}
.y9_c00430{bottom:608.667067pt;}
.y8_c00430{bottom:632.107067pt;}
.y7_c00430{bottom:879.067067pt;}
.y6_c00430{bottom:905.947067pt;}
.y5_c00430{bottom:932.747067pt;}
.y4_c00430{bottom:959.627067pt;}
.y3_c00430{bottom:986.427067pt;}
.h3_c00430{height:55.645234pt;}
.h1_c00430{height:55.797187pt;}
.h2_c00430{height:56.192266pt;}
.h4_c00430{height:65.803366pt;}
.h0_c00430{height:1122.666667pt;}
.w0_c00430{width:793.333333pt;}
.x0_c00430{left:0.000000pt;}
.x2_c00430{left:73.520052pt;}
.x3_c00430{left:123.520000pt;}
.x6_c00430{left:170.240000pt;}
.x7_c00430{left:193.600000pt;}
.x4_c00430{left:301.200000pt;}
.x1_c00430{left:383.760000pt;}
.x5_c00430{left:420.080000pt;}
.x8_c00430{left:631.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d1ec2b8d665d54ec1202f107.woff2')format("woff");}.ff1_c00431{font-family:ff1_c00431;line-height:1.106934;font-style:normal;font-weight:normal;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_803df04ef748715148c21da1.woff2')format("woff");}.ff2_c00431{font-family:ff2_c00431;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00431;src:url('chunks/assets/font_54b012b04f97fb4089086d7b.woff2')format("woff");}.ff3_c00431{font-family:ff3_c00431;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00431{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00431{vertical-align:0.000000px;}
.v1_c00431{vertical-align:32.411682px;}
.ls5_c00431{letter-spacing:-0.091026px;}
.lse_c00431{letter-spacing:-0.084024px;}
.lsf_c00431{letter-spacing:-0.070020px;}
.ls3_c00431{letter-spacing:-0.063018px;}
.lsc_c00431{letter-spacing:-0.049014px;}
.ls7_c00431{letter-spacing:-0.042012px;}
.lsa_c00431{letter-spacing:-0.035010px;}
.lsd_c00431{letter-spacing:-0.028008px;}
.ls9_c00431{letter-spacing:-0.021006px;}
.lsb_c00431{letter-spacing:-0.014004px;}
.ls8_c00431{letter-spacing:-0.007002px;}
.ls4_c00431{letter-spacing:0.000000px;}
.ls0_c00431{letter-spacing:0.007002px;}
.ls2_c00431{letter-spacing:0.023281px;}
.ls1_c00431{letter-spacing:0.028008px;}
.ls6_c00431{letter-spacing:0.343098px;}
.sc__c00431{text-shadow:none;}
.sc0_c00431{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00431{-webkit-text-stroke:0px transparent;}
.sc0_c00431{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00431{word-spacing:-19.451556px;}
.ws0_c00431{word-spacing:-19.374534px;}
.ws1_c00431{word-spacing:-12.967628px;}
.ws3_c00431{word-spacing:0.000000px;}
.wsb_c00431{word-spacing:0.028008px;}
.ws16_c00431{word-spacing:0.035010px;}
.ws14_c00431{word-spacing:0.336096px;}
.ws22_c00431{word-spacing:0.357102px;}
.ws21_c00431{word-spacing:0.679194px;}
.ws35_c00431{word-spacing:1.442412px;}
.ws25_c00431{word-spacing:2.177622px;}
.ws24_c00431{word-spacing:2.212632px;}
.ws1d_c00431{word-spacing:3.634038px;}
.ws29_c00431{word-spacing:6.126750px;}
.ws33_c00431{word-spacing:6.154758px;}
.ws34_c00431{word-spacing:8.269362px;}
.wsd_c00431{word-spacing:9.382680px;}
.ws9_c00431{word-spacing:9.767790px;}
.ws1e_c00431{word-spacing:10.075878px;}
.ws7_c00431{word-spacing:10.446984px;}
.ws18_c00431{word-spacing:10.776078px;}
.ws12_c00431{word-spacing:10.832094px;}
.ws17_c00431{word-spacing:10.867104px;}
.ws2d_c00431{word-spacing:11.518290px;}
.ws27_c00431{word-spacing:14.032008px;}
.ws2b_c00431{word-spacing:14.060016px;}
.ws26_c00431{word-spacing:14.067018px;}
.ws20_c00431{word-spacing:14.760216px;}
.wse_c00431{word-spacing:14.795226px;}
.ws31_c00431{word-spacing:15.439410px;}
.ws1c_c00431{word-spacing:16.195626px;}
.ws1b_c00431{word-spacing:16.608744px;}
.ws2c_c00431{word-spacing:17.287938px;}
.ws6_c00431{word-spacing:18.352242px;}
.ws13_c00431{word-spacing:18.373248px;}
.wsc_c00431{word-spacing:20.158758px;}
.ws19_c00431{word-spacing:21.958272px;}
.ws2e_c00431{word-spacing:22.343382px;}
.wsf_c00431{word-spacing:24.135894px;}
.ws10_c00431{word-spacing:25.592310px;}
.ws2f_c00431{word-spacing:26.264502px;}
.ws1a_c00431{word-spacing:27.363816px;}
.ws5_c00431{word-spacing:29.478420px;}
.ws2a_c00431{word-spacing:29.541438px;}
.ws8_c00431{word-spacing:35.661186px;}
.ws4_c00431{word-spacing:38.496996px;}
.ws23_c00431{word-spacing:41.416830px;}
.ws28_c00431{word-spacing:42.474132px;}
.wsa_c00431{word-spacing:44.280648px;}
.ws1f_c00431{word-spacing:49.679190px;}
.ws11_c00431{word-spacing:50.057298px;}
.ws15_c00431{word-spacing:90.388818px;}
.ws32_c00431{word-spacing:107.627742px;}
.ws30_c00431{word-spacing:225.387378px;}
._2_c00431{margin-left:-1.386396px;}
._0_c00431{width:1.029294px;}
._1_c00431{width:37.985850px;}
.fc0_c00431{color:rgb(0,0,0);}
.fs1_c00431{font-size:46.562400px;}
.fs0_c00431{font-size:70.020000px;}
.y0_c00431{bottom:0.000000px;}
.y2_c00431{bottom:109.740968px;}
.y1_c00431{bottom:129.810450px;}
.y2f_c00431{bottom:183.540600px;}
.y2e_c00431{bottom:213.780600px;}
.y2d_c00431{bottom:243.840450px;}
.y2c_c00431{bottom:274.080450px;}
.y2b_c00431{bottom:304.230450px;}
.y2a_c00431{bottom:334.470450px;}
.y29_c00431{bottom:364.620450px;}
.y28_c00431{bottom:394.860600px;}
.y27_c00431{bottom:425.010450px;}
.y17_c00431{bottom:444.627529px;}
.y26_c00431{bottom:455.250450px;}
.y16_c00431{bottom:474.867417px;}
.y25_c00431{bottom:485.400450px;}
.y15_c00431{bottom:505.018029px;}
.y24_c00431{bottom:515.640450px;}
.y14_c00431{bottom:535.168641px;}
.y23_c00431{bottom:545.790450px;}
.y13_c00431{bottom:565.319253px;}
.y22_c00431{bottom:576.030450px;}
.y12_c00431{bottom:595.559141px;}
.y21_c00431{bottom:606.180450px;}
.y11_c00431{bottom:625.709753px;}
.y20_c00431{bottom:636.420450px;}
.y1f_c00431{bottom:666.660450px;}
.y10_c00431{bottom:676.290450px;}
.y1e_c00431{bottom:696.810450px;}
.yf_c00431{bottom:706.620450px;}
.y1d_c00431{bottom:727.050450px;}
.ye_c00431{bottom:736.770450px;}
.y1c_c00431{bottom:757.200450px;}
.yd_c00431{bottom:767.010450px;}
.y1b_c00431{bottom:787.440450px;}
.yc_c00431{bottom:797.160450px;}
.y1a_c00431{bottom:837.930600px;}
.yb_c00431{bottom:847.740450px;}
.y19_c00431{bottom:868.170450px;}
.ya_c00431{bottom:898.320450px;}
.y18_c00431{bottom:898.410450px;}
.y9_c00431{bottom:928.560450px;}
.y8_c00431{bottom:958.800450px;}
.y7_c00431{bottom:988.950450px;}
.y6_c00431{bottom:1019.190450px;}
.y5_c00431{bottom:1049.340450px;}
.y4_c00431{bottom:1079.580450px;}
.y3_c00431{bottom:1109.730450px;}
.h3_c00431{height:62.600889px;}
.h1_c00431{height:62.771836px;}
.h2_c00431{height:63.216299px;}
.h5_c00431{height:74.028786px;}
.h4_c00431{height:74.040468px;}
.h0_c00431{height:1263.000000px;}
.w0_c00431{width:892.500000px;}
.x0_c00431{left:0.000000px;}
.x2_c00431{left:82.710059px;}
.x3_c00431{left:138.960000px;}
.x1_c00431{left:431.730000px;}
.x4_c00431{left:454.230000px;}
@media print{
.v0_c00431{vertical-align:0.000000pt;}
.v1_c00431{vertical-align:28.810384pt;}
.ls5_c00431{letter-spacing:-0.080912pt;}
.lse_c00431{letter-spacing:-0.074688pt;}
.lsf_c00431{letter-spacing:-0.062240pt;}
.ls3_c00431{letter-spacing:-0.056016pt;}
.lsc_c00431{letter-spacing:-0.043568pt;}
.ls7_c00431{letter-spacing:-0.037344pt;}
.lsa_c00431{letter-spacing:-0.031120pt;}
.lsd_c00431{letter-spacing:-0.024896pt;}
.ls9_c00431{letter-spacing:-0.018672pt;}
.lsb_c00431{letter-spacing:-0.012448pt;}
.ls8_c00431{letter-spacing:-0.006224pt;}
.ls4_c00431{letter-spacing:0.000000pt;}
.ls0_c00431{letter-spacing:0.006224pt;}
.ls2_c00431{letter-spacing:0.020694pt;}
.ls1_c00431{letter-spacing:0.024896pt;}
.ls6_c00431{letter-spacing:0.304976pt;}
.ws2_c00431{word-spacing:-17.290272pt;}
.ws0_c00431{word-spacing:-17.221808pt;}
.ws1_c00431{word-spacing:-11.526781pt;}
.ws3_c00431{word-spacing:0.000000pt;}
.wsb_c00431{word-spacing:0.024896pt;}
.ws16_c00431{word-spacing:0.031120pt;}
.ws14_c00431{word-spacing:0.298752pt;}
.ws22_c00431{word-spacing:0.317424pt;}
.ws21_c00431{word-spacing:0.603728pt;}
.ws35_c00431{word-spacing:1.282144pt;}
.ws25_c00431{word-spacing:1.935664pt;}
.ws24_c00431{word-spacing:1.966784pt;}
.ws1d_c00431{word-spacing:3.230256pt;}
.ws29_c00431{word-spacing:5.446000pt;}
.ws33_c00431{word-spacing:5.470896pt;}
.ws34_c00431{word-spacing:7.350544pt;}
.wsd_c00431{word-spacing:8.340160pt;}
.ws9_c00431{word-spacing:8.682480pt;}
.ws1e_c00431{word-spacing:8.956336pt;}
.ws7_c00431{word-spacing:9.286208pt;}
.ws18_c00431{word-spacing:9.578736pt;}
.ws12_c00431{word-spacing:9.628528pt;}
.ws17_c00431{word-spacing:9.659648pt;}
.ws2d_c00431{word-spacing:10.238480pt;}
.ws27_c00431{word-spacing:12.472896pt;}
.ws2b_c00431{word-spacing:12.497792pt;}
.ws26_c00431{word-spacing:12.504016pt;}
.ws20_c00431{word-spacing:13.120192pt;}
.wse_c00431{word-spacing:13.151312pt;}
.ws31_c00431{word-spacing:13.723920pt;}
.ws1c_c00431{word-spacing:14.396112pt;}
.ws1b_c00431{word-spacing:14.763328pt;}
.ws2c_c00431{word-spacing:15.367056pt;}
.ws6_c00431{word-spacing:16.313104pt;}
.ws13_c00431{word-spacing:16.331776pt;}
.wsc_c00431{word-spacing:17.918896pt;}
.ws19_c00431{word-spacing:19.518464pt;}
.ws2e_c00431{word-spacing:19.860784pt;}
.wsf_c00431{word-spacing:21.454128pt;}
.ws10_c00431{word-spacing:22.748720pt;}
.ws2f_c00431{word-spacing:23.346224pt;}
.ws1a_c00431{word-spacing:24.323392pt;}
.ws5_c00431{word-spacing:26.203040pt;}
.ws2a_c00431{word-spacing:26.259056pt;}
.ws8_c00431{word-spacing:31.698832pt;}
.ws4_c00431{word-spacing:34.219552pt;}
.ws23_c00431{word-spacing:36.814960pt;}
.ws28_c00431{word-spacing:37.754784pt;}
.wsa_c00431{word-spacing:39.360576pt;}
.ws1f_c00431{word-spacing:44.159280pt;}
.ws11_c00431{word-spacing:44.495376pt;}
.ws15_c00431{word-spacing:80.345616pt;}
.ws32_c00431{word-spacing:95.669104pt;}
.ws30_c00431{word-spacing:200.344336pt;}
._2_c00431{margin-left:-1.232352pt;}
._0_c00431{width:0.914928pt;}
._1_c00431{width:33.765200pt;}
.fs1_c00431{font-size:41.388800pt;}
.fs0_c00431{font-size:62.240000pt;}
.y0_c00431{bottom:0.000000pt;}
.y2_c00431{bottom:97.547527pt;}
.y1_c00431{bottom:115.387067pt;}
.y2f_c00431{bottom:163.147200pt;}
.y2e_c00431{bottom:190.027200pt;}
.y2d_c00431{bottom:216.747067pt;}
.y2c_c00431{bottom:243.627067pt;}
.y2b_c00431{bottom:270.427067pt;}
.y2a_c00431{bottom:297.307067pt;}
.y29_c00431{bottom:324.107067pt;}
.y28_c00431{bottom:350.987200pt;}
.y27_c00431{bottom:377.787067pt;}
.y17_c00431{bottom:395.224471pt;}
.y26_c00431{bottom:404.667067pt;}
.y16_c00431{bottom:422.104371pt;}
.y25_c00431{bottom:431.467067pt;}
.y15_c00431{bottom:448.904915pt;}
.y24_c00431{bottom:458.347067pt;}
.y14_c00431{bottom:475.705459pt;}
.y23_c00431{bottom:485.147067pt;}
.y13_c00431{bottom:502.506003pt;}
.y22_c00431{bottom:512.027067pt;}
.y12_c00431{bottom:529.385903pt;}
.y21_c00431{bottom:538.827067pt;}
.y11_c00431{bottom:556.186447pt;}
.y20_c00431{bottom:565.707067pt;}
.y1f_c00431{bottom:592.587067pt;}
.y10_c00431{bottom:601.147067pt;}
.y1e_c00431{bottom:619.387067pt;}
.yf_c00431{bottom:628.107067pt;}
.y1d_c00431{bottom:646.267067pt;}
.ye_c00431{bottom:654.907067pt;}
.y1c_c00431{bottom:673.067067pt;}
.yd_c00431{bottom:681.787067pt;}
.y1b_c00431{bottom:699.947067pt;}
.yc_c00431{bottom:708.587067pt;}
.y1a_c00431{bottom:744.827200pt;}
.yb_c00431{bottom:753.547067pt;}
.y19_c00431{bottom:771.707067pt;}
.ya_c00431{bottom:798.507067pt;}
.y18_c00431{bottom:798.587067pt;}
.y9_c00431{bottom:825.387067pt;}
.y8_c00431{bottom:852.267067pt;}
.y7_c00431{bottom:879.067067pt;}
.y6_c00431{bottom:905.947067pt;}
.y5_c00431{bottom:932.747067pt;}
.y4_c00431{bottom:959.627067pt;}
.y3_c00431{bottom:986.427067pt;}
.h3_c00431{height:55.645234pt;}
.h1_c00431{height:55.797187pt;}
.h2_c00431{height:56.192266pt;}
.h5_c00431{height:65.803366pt;}
.h4_c00431{height:65.813750pt;}
.h0_c00431{height:1122.666667pt;}
.w0_c00431{width:793.333333pt;}
.x0_c00431{left:0.000000pt;}
.x2_c00431{left:73.520052pt;}
.x3_c00431{left:123.520000pt;}
.x1_c00431{left:383.760000pt;}
.x4_c00431{left:403.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_da1359bb50258bc969778798.woff2')format("woff");}.ff1_c00432{font-family:ff1_c00432;line-height:1.106934;font-style:normal;font-weight:normal;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_676e14aec3ecbfb19b420242.woff2')format("woff");}.ff2_c00432{font-family:ff2_c00432;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00432{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00432{vertical-align:0.000000px;}
.ls3_c00432{letter-spacing:-0.063018px;}
.ls5_c00432{letter-spacing:-0.035010px;}
.ls6_c00432{letter-spacing:-0.028008px;}
.ls9_c00432{letter-spacing:-0.021006px;}
.ls7_c00432{letter-spacing:-0.014004px;}
.ls8_c00432{letter-spacing:-0.007002px;}
.ls4_c00432{letter-spacing:0.000000px;}
.ls1_c00432{letter-spacing:0.007002px;}
.ls0_c00432{letter-spacing:0.021006px;}
.ls2_c00432{letter-spacing:0.070020px;}
.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;}
}
.wsb_c00432{word-spacing:-0.021006px;}
.ws0_c00432{word-spacing:0.000000px;}
.ws9_c00432{word-spacing:0.007002px;}
.wsa_c00432{word-spacing:0.014004px;}
.wsd_c00432{word-spacing:0.343098px;}
.ws10_c00432{word-spacing:0.378108px;}
.ws13_c00432{word-spacing:0.742212px;}
.ws11_c00432{word-spacing:1.092312px;}
.ws12_c00432{word-spacing:5.062446px;}
.wsc_c00432{word-spacing:8.290368px;}
.ws8_c00432{word-spacing:8.297370px;}
.wse_c00432{word-spacing:9.004572px;}
.ws7_c00432{word-spacing:15.474420px;}
.ws6_c00432{word-spacing:16.202628px;}
.ws4_c00432{word-spacing:19.437552px;}
.ws14_c00432{word-spacing:20.151756px;}
.ws1_c00432{word-spacing:24.499998px;}
.ws3_c00432{word-spacing:26.292510px;}
.wsf_c00432{word-spacing:31.319946px;}
.ws2_c00432{word-spacing:48.565872px;}
.ws5_c00432{word-spacing:174.937968px;}
._3_c00432{margin-left:-1.169334px;}
._0_c00432{width:1.057302px;}
._2_c00432{width:7.247070px;}
._1_c00432{width:8.283366px;}
.fc0_c00432{color:rgb(0,0,0);}
.fs0_c00432{font-size:70.020000px;}
.y0_c00432{bottom:0.000000px;}
.y2_c00432{bottom:109.740968px;}
.y1_c00432{bottom:129.810450px;}
.y1a_c00432{bottom:180.117545px;}
.y19_c00432{bottom:210.357432px;}
.y18_c00432{bottom:240.508044px;}
.y17_c00432{bottom:270.747931px;}
.y16_c00432{bottom:300.898544px;}
.y15_c00432{bottom:331.138431px;}
.y14_c00432{bottom:361.289043px;}
.y13_c00432{bottom:391.528930px;}
.y12_c00432{bottom:421.679542px;}
.y11_c00432{bottom:451.919430px;}
.y10_c00432{bottom:482.070042px;}
.yf_c00432{bottom:508.530600px;}
.ye_c00432{bottom:776.909951px;}
.yd_c00432{bottom:807.060563px;}
.yc_c00432{bottom:837.300450px;}
.yb_c00432{bottom:868.170450px;}
.ya_c00432{bottom:898.410450px;}
.y9_c00432{bottom:928.560450px;}
.y8_c00432{bottom:958.800450px;}
.y7_c00432{bottom:988.950450px;}
.y6_c00432{bottom:1019.190450px;}
.y5_c00432{bottom:1049.340450px;}
.y4_c00432{bottom:1079.580450px;}
.y3_c00432{bottom:1109.730450px;}
.h1_c00432{height:62.771836px;}
.h2_c00432{height:63.216299px;}
.h0_c00432{height:1263.000000px;}
.w0_c00432{width:892.500000px;}
.x0_c00432{left:0.000000px;}
.x2_c00432{left:82.710059px;}
.x8_c00432{left:138.959631px;}
.x6_c00432{left:165.240968px;}
.x5_c00432{left:283.410221px;}
.x1_c00432{left:431.730000px;}
.x4_c00432{left:446.310000px;}
.x3_c00432{left:454.230000px;}
.x7_c00432{left:730.170000px;}
@media print{
.v0_c00432{vertical-align:0.000000pt;}
.ls3_c00432{letter-spacing:-0.056016pt;}
.ls5_c00432{letter-spacing:-0.031120pt;}
.ls6_c00432{letter-spacing:-0.024896pt;}
.ls9_c00432{letter-spacing:-0.018672pt;}
.ls7_c00432{letter-spacing:-0.012448pt;}
.ls8_c00432{letter-spacing:-0.006224pt;}
.ls4_c00432{letter-spacing:0.000000pt;}
.ls1_c00432{letter-spacing:0.006224pt;}
.ls0_c00432{letter-spacing:0.018672pt;}
.ls2_c00432{letter-spacing:0.062240pt;}
.wsb_c00432{word-spacing:-0.018672pt;}
.ws0_c00432{word-spacing:0.000000pt;}
.ws9_c00432{word-spacing:0.006224pt;}
.wsa_c00432{word-spacing:0.012448pt;}
.wsd_c00432{word-spacing:0.304976pt;}
.ws10_c00432{word-spacing:0.336096pt;}
.ws13_c00432{word-spacing:0.659744pt;}
.ws11_c00432{word-spacing:0.970944pt;}
.ws12_c00432{word-spacing:4.499952pt;}
.wsc_c00432{word-spacing:7.369216pt;}
.ws8_c00432{word-spacing:7.375440pt;}
.wse_c00432{word-spacing:8.004064pt;}
.ws7_c00432{word-spacing:13.755040pt;}
.ws6_c00432{word-spacing:14.402336pt;}
.ws4_c00432{word-spacing:17.277824pt;}
.ws14_c00432{word-spacing:17.912672pt;}
.ws1_c00432{word-spacing:21.777776pt;}
.ws3_c00432{word-spacing:23.371120pt;}
.wsf_c00432{word-spacing:27.839952pt;}
.ws2_c00432{word-spacing:43.169664pt;}
.ws5_c00432{word-spacing:155.500416pt;}
._3_c00432{margin-left:-1.039408pt;}
._0_c00432{width:0.939824pt;}
._2_c00432{width:6.441840pt;}
._1_c00432{width:7.362992pt;}
.fs0_c00432{font-size:62.240000pt;}
.y0_c00432{bottom:0.000000pt;}
.y2_c00432{bottom:97.547527pt;}
.y1_c00432{bottom:115.387067pt;}
.y1a_c00432{bottom:160.104484pt;}
.y19_c00432{bottom:186.984384pt;}
.y18_c00432{bottom:213.784928pt;}
.y17_c00432{bottom:240.664828pt;}
.y16_c00432{bottom:267.465372pt;}
.y15_c00432{bottom:294.345272pt;}
.y14_c00432{bottom:321.145816pt;}
.y13_c00432{bottom:348.025716pt;}
.y12_c00432{bottom:374.826260pt;}
.y11_c00432{bottom:401.706160pt;}
.y10_c00432{bottom:428.506704pt;}
.yf_c00432{bottom:452.027200pt;}
.ye_c00432{bottom:690.586623pt;}
.yd_c00432{bottom:717.387167pt;}
.yc_c00432{bottom:744.267067pt;}
.yb_c00432{bottom:771.707067pt;}
.ya_c00432{bottom:798.587067pt;}
.y9_c00432{bottom:825.387067pt;}
.y8_c00432{bottom:852.267067pt;}
.y7_c00432{bottom:879.067067pt;}
.y6_c00432{bottom:905.947067pt;}
.y5_c00432{bottom:932.747067pt;}
.y4_c00432{bottom:959.627067pt;}
.y3_c00432{bottom:986.427067pt;}
.h1_c00432{height:55.797187pt;}
.h2_c00432{height:56.192266pt;}
.h0_c00432{height:1122.666667pt;}
.w0_c00432{width:793.333333pt;}
.x0_c00432{left:0.000000pt;}
.x2_c00432{left:73.520052pt;}
.x8_c00432{left:123.519672pt;}
.x6_c00432{left:146.880860pt;}
.x5_c00432{left:251.920196pt;}
.x1_c00432{left:383.760000pt;}
.x4_c00432{left:396.720000pt;}
.x3_c00432{left:403.760000pt;}
.x7_c00432{left:649.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f451f92d906781bb3c804aa7.woff2')format("woff");}.ff1_c00433{font-family:ff1_c00433;line-height:1.106934;font-style:normal;font-weight:normal;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_ed6b821d47df5374172dba22.woff2')format("woff");}.ff2_c00433{font-family:ff2_c00433;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00433{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00433{vertical-align:0.000000px;}
.v1_c00433{vertical-align:32.045850px;}
.ls9_c00433{letter-spacing:-0.119034px;}
.ls3_c00433{letter-spacing:-0.063018px;}
.ls5_c00433{letter-spacing:-0.056016px;}
.ls7_c00433{letter-spacing:-0.035010px;}
.lsa_c00433{letter-spacing:-0.028008px;}
.ls8_c00433{letter-spacing:-0.021006px;}
.lsb_c00433{letter-spacing:-0.014004px;}
.ls6_c00433{letter-spacing:-0.007002px;}
.ls4_c00433{letter-spacing:0.000000px;}
.ls1_c00433{letter-spacing:0.007002px;}
.ls2_c00433{letter-spacing:0.023281px;}
.ls0_c00433{letter-spacing:0.035010px;}
.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:-12.967628px;}
.ws10_c00433{word-spacing:-0.007002px;}
.ws1_c00433{word-spacing:0.000000px;}
.ws3_c00433{word-spacing:0.350100px;}
.wse_c00433{word-spacing:0.735210px;}
.ws9_c00433{word-spacing:1.750500px;}
.ws8_c00433{word-spacing:2.541726px;}
.ws4_c00433{word-spacing:3.262932px;}
.wsc_c00433{word-spacing:3.290940px;}
.wsb_c00433{word-spacing:4.306230px;}
.ws7_c00433{word-spacing:6.826950px;}
.ws5_c00433{word-spacing:7.926264px;}
.wsd_c00433{word-spacing:14.053014px;}
.ws6_c00433{word-spacing:16.580736px;}
.wsf_c00433{word-spacing:18.359244px;}
.wsa_c00433{word-spacing:19.101456px;}
.ws2_c00433{word-spacing:21.643182px;}
._1_c00433{margin-left:-1.043298px;}
._0_c00433{width:1.323378px;}
.fc0_c00433{color:rgb(0,0,0);}
.fs1_c00433{font-size:46.562400px;}
.fs0_c00433{font-size:70.020000px;}
.y0_c00433{bottom:0.000000px;}
.y2_c00433{bottom:109.740968px;}
.y1_c00433{bottom:129.810450px;}
.y22_c00433{bottom:173.726954px;}
.y21_c00433{bottom:203.966841px;}
.y20_c00433{bottom:234.117453px;}
.y1f_c00433{bottom:264.357341px;}
.y1e_c00433{bottom:294.507953px;}
.y1d_c00433{bottom:324.747840px;}
.y1c_c00433{bottom:354.898452px;}
.y1b_c00433{bottom:385.138340px;}
.y1a_c00433{bottom:415.288952px;}
.y19_c00433{bottom:445.528839px;}
.y18_c00433{bottom:475.768727px;}
.y17_c00433{bottom:505.919338px;}
.y16_c00433{bottom:536.159226px;}
.y15_c00433{bottom:566.309838px;}
.y14_c00433{bottom:596.458452px;}
.y13_c00433{bottom:626.609064px;}
.y12_c00433{bottom:656.848952px;}
.y11_c00433{bottom:686.999564px;}
.y10_c00433{bottom:717.239451px;}
.yf_c00433{bottom:747.390063px;}
.ye_c00433{bottom:777.629951px;}
.yd_c00433{bottom:807.780563px;}
.yc_c00433{bottom:838.018988px;}
.yb_c00433{bottom:868.169600px;}
.ya_c00433{bottom:898.409487px;}
.y9_c00433{bottom:928.560099px;}
.y8_c00433{bottom:958.799987px;}
.y7_c00433{bottom:988.950599px;}
.y6_c00433{bottom:1019.190486px;}
.y5_c00433{bottom:1049.341098px;}
.y4_c00433{bottom:1079.580985px;}
.y3_c00433{bottom:1109.731597px;}
.h2_c00433{height:62.600889px;}
.h1_c00433{height:62.771836px;}
.h3_c00433{height:73.674636px;}
.h4_c00433{height:73.676778px;}
.h0_c00433{height:1263.000000px;}
.w0_c00433{width:892.500000px;}
.x0_c00433{left:0.000000px;}
.x2_c00433{left:82.710059px;}
.x3_c00433{left:138.960626px;}
.x1_c00433{left:431.730000px;}
@media print{
.v0_c00433{vertical-align:0.000000pt;}
.v1_c00433{vertical-align:28.485200pt;}
.ls9_c00433{letter-spacing:-0.105808pt;}
.ls3_c00433{letter-spacing:-0.056016pt;}
.ls5_c00433{letter-spacing:-0.049792pt;}
.ls7_c00433{letter-spacing:-0.031120pt;}
.lsa_c00433{letter-spacing:-0.024896pt;}
.ls8_c00433{letter-spacing:-0.018672pt;}
.lsb_c00433{letter-spacing:-0.012448pt;}
.ls6_c00433{letter-spacing:-0.006224pt;}
.ls4_c00433{letter-spacing:0.000000pt;}
.ls1_c00433{letter-spacing:0.006224pt;}
.ls2_c00433{letter-spacing:0.020694pt;}
.ls0_c00433{letter-spacing:0.031120pt;}
.ws0_c00433{word-spacing:-11.526781pt;}
.ws10_c00433{word-spacing:-0.006224pt;}
.ws1_c00433{word-spacing:0.000000pt;}
.ws3_c00433{word-spacing:0.311200pt;}
.wse_c00433{word-spacing:0.653520pt;}
.ws9_c00433{word-spacing:1.556000pt;}
.ws8_c00433{word-spacing:2.259312pt;}
.ws4_c00433{word-spacing:2.900384pt;}
.wsc_c00433{word-spacing:2.925280pt;}
.wsb_c00433{word-spacing:3.827760pt;}
.ws7_c00433{word-spacing:6.068400pt;}
.ws5_c00433{word-spacing:7.045568pt;}
.wsd_c00433{word-spacing:12.491568pt;}
.ws6_c00433{word-spacing:14.738432pt;}
.wsf_c00433{word-spacing:16.319328pt;}
.wsa_c00433{word-spacing:16.979072pt;}
.ws2_c00433{word-spacing:19.238384pt;}
._1_c00433{margin-left:-0.927376pt;}
._0_c00433{width:1.176336pt;}
.fs1_c00433{font-size:41.388800pt;}
.fs0_c00433{font-size:62.240000pt;}
.y0_c00433{bottom:0.000000pt;}
.y2_c00433{bottom:97.547527pt;}
.y1_c00433{bottom:115.387067pt;}
.y22_c00433{bottom:154.423959pt;}
.y21_c00433{bottom:181.303859pt;}
.y20_c00433{bottom:208.104403pt;}
.y1f_c00433{bottom:234.984303pt;}
.y1e_c00433{bottom:261.784847pt;}
.y1d_c00433{bottom:288.664747pt;}
.y1c_c00433{bottom:315.465291pt;}
.y1b_c00433{bottom:342.345191pt;}
.y1a_c00433{bottom:369.145735pt;}
.y19_c00433{bottom:396.025635pt;}
.y18_c00433{bottom:422.905535pt;}
.y17_c00433{bottom:449.706079pt;}
.y16_c00433{bottom:476.585979pt;}
.y15_c00433{bottom:503.386523pt;}
.y14_c00433{bottom:530.185291pt;}
.y13_c00433{bottom:556.985835pt;}
.y12_c00433{bottom:583.865735pt;}
.y11_c00433{bottom:610.666279pt;}
.y10_c00433{bottom:637.546179pt;}
.yf_c00433{bottom:664.346723pt;}
.ye_c00433{bottom:691.226623pt;}
.yd_c00433{bottom:718.027167pt;}
.yc_c00433{bottom:744.905767pt;}
.yb_c00433{bottom:771.706311pt;}
.ya_c00433{bottom:798.586211pt;}
.y9_c00433{bottom:825.386755pt;}
.y8_c00433{bottom:852.266655pt;}
.y7_c00433{bottom:879.067199pt;}
.y6_c00433{bottom:905.947099pt;}
.y5_c00433{bottom:932.747643pt;}
.y4_c00433{bottom:959.627543pt;}
.y3_c00433{bottom:986.428087pt;}
.h2_c00433{height:55.645234pt;}
.h1_c00433{height:55.797187pt;}
.h3_c00433{height:65.488566pt;}
.h4_c00433{height:65.490470pt;}
.h0_c00433{height:1122.666667pt;}
.w0_c00433{width:793.333333pt;}
.x0_c00433{left:0.000000pt;}
.x2_c00433{left:73.520052pt;}
.x3_c00433{left:123.520556pt;}
.x1_c00433{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8dd3ff2d3d8f1f92e8a03763.woff2')format("woff");}.ff1_c00434{font-family:ff1_c00434;line-height:1.106934;font-style:normal;font-weight:normal;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_4c56d4510069a295ca24d0ec.woff2')format("woff");}.ff2_c00434{font-family:ff2_c00434;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00434{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00434{vertical-align:0.000000px;}
.ls3_c00434{letter-spacing:-0.063018px;}
.ls7_c00434{letter-spacing:-0.056016px;}
.lsb_c00434{letter-spacing:-0.049014px;}
.ls6_c00434{letter-spacing:-0.042012px;}
.lsc_c00434{letter-spacing:-0.035010px;}
.ls5_c00434{letter-spacing:-0.028008px;}
.ls8_c00434{letter-spacing:-0.021006px;}
.lsa_c00434{letter-spacing:-0.014004px;}
.ls9_c00434{letter-spacing:-0.007002px;}
.ls4_c00434{letter-spacing:0.000000px;}
.ls2_c00434{letter-spacing:0.007002px;}
.ls0_c00434{letter-spacing:0.049014px;}
.ls1_c00434{letter-spacing:0.070020px;}
.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;}
}
.ws2_c00434{word-spacing:-0.063018px;}
.ws0_c00434{word-spacing:0.000000px;}
.ws1_c00434{word-spacing:0.014004px;}
.wsb_c00434{word-spacing:0.364104px;}
.ws14_c00434{word-spacing:0.378108px;}
.wsa_c00434{word-spacing:0.385110px;}
.ws3_c00434{word-spacing:1.106316px;}
.ws8_c00434{word-spacing:2.156616px;}
.ws9_c00434{word-spacing:2.555730px;}
.ws12_c00434{word-spacing:3.592026px;}
.ws13_c00434{word-spacing:4.313232px;}
.ws10_c00434{word-spacing:4.670334px;}
.ws11_c00434{word-spacing:4.677336px;}
.ws6_c00434{word-spacing:6.469848px;}
.ws7_c00434{word-spacing:6.840954px;}
.ws5_c00434{word-spacing:9.004572px;}
.wsf_c00434{word-spacing:11.896398px;}
.wsc_c00434{word-spacing:14.018004px;}
.wsd_c00434{word-spacing:14.046012px;}
.ws4_c00434{word-spacing:25.242210px;}
.wse_c00434{word-spacing:28.085022px;}
._1_c00434{margin-left:-1.120320px;}
._2_c00434{width:1.260360px;}
._0_c00434{width:8.283366px;}
.fc0_c00434{color:rgb(0,0,0);}
.fs0_c00434{font-size:70.020000px;}
.y0_c00434{bottom:0.000000px;}
.y2_c00434{bottom:109.740968px;}
.y1_c00434{bottom:129.810450px;}
.y18_c00434{bottom:173.820450px;}
.y17_c00434{bottom:204.060450px;}
.y16_c00434{bottom:234.210600px;}
.y15_c00434{bottom:264.450450px;}
.y14_c00434{bottom:294.600450px;}
.y13_c00434{bottom:324.840450px;}
.y12_c00434{bottom:354.990450px;}
.y11_c00434{bottom:385.230450px;}
.y10_c00434{bottom:415.380450px;}
.yf_c00434{bottom:445.620600px;}
.ye_c00434{bottom:475.770600px;}
.yd_c00434{bottom:506.010450px;}
.yc_c00434{bottom:536.160450px;}
.yb_c00434{bottom:566.400450px;}
.ya_c00434{bottom:596.640450px;}
.y9_c00434{bottom:626.700450px;}
.y8_c00434{bottom:656.940450px;}
.y7_c00434{bottom:683.310450px;}
.y6_c00434{bottom:1019.190450px;}
.y5_c00434{bottom:1049.340450px;}
.y4_c00434{bottom:1079.580450px;}
.y3_c00434{bottom:1109.730450px;}
.h1_c00434{height:62.771836px;}
.h2_c00434{height:63.216299px;}
.h0_c00434{height:1263.000000px;}
.w0_c00434{width:892.500000px;}
.x0_c00434{left:0.000000px;}
.x2_c00434{left:82.710059px;}
.x3_c00434{left:138.960000px;}
.x5_c00434{left:165.240000px;}
.x4_c00434{left:338.850000px;}
.x1_c00434{left:431.730000px;}
.x7_c00434{left:446.310000px;}
.x6_c00434{left:724.140000px;}
@media print{
.v0_c00434{vertical-align:0.000000pt;}
.ls3_c00434{letter-spacing:-0.056016pt;}
.ls7_c00434{letter-spacing:-0.049792pt;}
.lsb_c00434{letter-spacing:-0.043568pt;}
.ls6_c00434{letter-spacing:-0.037344pt;}
.lsc_c00434{letter-spacing:-0.031120pt;}
.ls5_c00434{letter-spacing:-0.024896pt;}
.ls8_c00434{letter-spacing:-0.018672pt;}
.lsa_c00434{letter-spacing:-0.012448pt;}
.ls9_c00434{letter-spacing:-0.006224pt;}
.ls4_c00434{letter-spacing:0.000000pt;}
.ls2_c00434{letter-spacing:0.006224pt;}
.ls0_c00434{letter-spacing:0.043568pt;}
.ls1_c00434{letter-spacing:0.062240pt;}
.ws2_c00434{word-spacing:-0.056016pt;}
.ws0_c00434{word-spacing:0.000000pt;}
.ws1_c00434{word-spacing:0.012448pt;}
.wsb_c00434{word-spacing:0.323648pt;}
.ws14_c00434{word-spacing:0.336096pt;}
.wsa_c00434{word-spacing:0.342320pt;}
.ws3_c00434{word-spacing:0.983392pt;}
.ws8_c00434{word-spacing:1.916992pt;}
.ws9_c00434{word-spacing:2.271760pt;}
.ws12_c00434{word-spacing:3.192912pt;}
.ws13_c00434{word-spacing:3.833984pt;}
.ws10_c00434{word-spacing:4.151408pt;}
.ws11_c00434{word-spacing:4.157632pt;}
.ws6_c00434{word-spacing:5.750976pt;}
.ws7_c00434{word-spacing:6.080848pt;}
.ws5_c00434{word-spacing:8.004064pt;}
.wsf_c00434{word-spacing:10.574576pt;}
.wsc_c00434{word-spacing:12.460448pt;}
.wsd_c00434{word-spacing:12.485344pt;}
.ws4_c00434{word-spacing:22.437520pt;}
.wse_c00434{word-spacing:24.964464pt;}
._1_c00434{margin-left:-0.995840pt;}
._2_c00434{width:1.120320pt;}
._0_c00434{width:7.362992pt;}
.fs0_c00434{font-size:62.240000pt;}
.y0_c00434{bottom:0.000000pt;}
.y2_c00434{bottom:97.547527pt;}
.y1_c00434{bottom:115.387067pt;}
.y18_c00434{bottom:154.507067pt;}
.y17_c00434{bottom:181.387067pt;}
.y16_c00434{bottom:208.187200pt;}
.y15_c00434{bottom:235.067067pt;}
.y14_c00434{bottom:261.867067pt;}
.y13_c00434{bottom:288.747067pt;}
.y12_c00434{bottom:315.547067pt;}
.y11_c00434{bottom:342.427067pt;}
.y10_c00434{bottom:369.227067pt;}
.yf_c00434{bottom:396.107200pt;}
.ye_c00434{bottom:422.907200pt;}
.yd_c00434{bottom:449.787067pt;}
.yc_c00434{bottom:476.587067pt;}
.yb_c00434{bottom:503.467067pt;}
.ya_c00434{bottom:530.347067pt;}
.y9_c00434{bottom:557.067067pt;}
.y8_c00434{bottom:583.947067pt;}
.y7_c00434{bottom:607.387067pt;}
.y6_c00434{bottom:905.947067pt;}
.y5_c00434{bottom:932.747067pt;}
.y4_c00434{bottom:959.627067pt;}
.y3_c00434{bottom:986.427067pt;}
.h1_c00434{height:55.797187pt;}
.h2_c00434{height:56.192266pt;}
.h0_c00434{height:1122.666667pt;}
.w0_c00434{width:793.333333pt;}
.x0_c00434{left:0.000000pt;}
.x2_c00434{left:73.520052pt;}
.x3_c00434{left:123.520000pt;}
.x5_c00434{left:146.880000pt;}
.x4_c00434{left:301.200000pt;}
.x1_c00434{left:383.760000pt;}
.x7_c00434{left:396.720000pt;}
.x6_c00434{left:643.680000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a88e2cf671f7508b4500932f.woff2')format("woff");}.ff1_c00435{font-family:ff1_c00435;line-height:1.106934;font-style:normal;font-weight:normal;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_3b70abd2fa2b05f2608ef4cd.woff2')format("woff");}.ff2_c00435{font-family:ff2_c00435;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00435{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00435{vertical-align:0.000000px;}
.v1_c00435{vertical-align:32.400000px;}
.ls2_c00435{letter-spacing:-0.063018px;}
.ls4_c00435{letter-spacing:-0.035010px;}
.ls6_c00435{letter-spacing:-0.028008px;}
.ls5_c00435{letter-spacing:-0.014004px;}
.ls7_c00435{letter-spacing:-0.007002px;}
.ls3_c00435{letter-spacing:0.000000px;}
.ls1_c00435{letter-spacing:0.023281px;}
.ls0_c00435{letter-spacing:0.042012px;}
.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:-12.967628px;}
.ws1_c00435{word-spacing:0.000000px;}
.wsc_c00435{word-spacing:0.014004px;}
.ws5_c00435{word-spacing:1.092312px;}
.wsb_c00435{word-spacing:2.534724px;}
.ws6_c00435{word-spacing:3.956130px;}
.wsa_c00435{word-spacing:4.985424px;}
.ws7_c00435{word-spacing:5.412546px;}
.ws9_c00435{word-spacing:9.732780px;}
.ws4_c00435{word-spacing:18.723348px;}
.ws2_c00435{word-spacing:25.221204px;}
.ws8_c00435{word-spacing:29.520432px;}
.ws3_c00435{word-spacing:32.027148px;}
._1_c00435{margin-left:-31.347954px;}
._2_c00435{margin-left:-1.211346px;}
._0_c00435{width:1.330380px;}
.fc0_c00435{color:rgb(0,0,0);}
.fs1_c00435{font-size:46.562400px;}
.fs0_c00435{font-size:70.020000px;}
.y0_c00435{bottom:0.000000px;}
.y2_c00435{bottom:109.740968px;}
.y1_c00435{bottom:129.810450px;}
.y22_c00435{bottom:182.997197px;}
.y21_c00435{bottom:213.237084px;}
.y20_c00435{bottom:243.387696px;}
.y1f_c00435{bottom:273.627584px;}
.y1e_c00435{bottom:303.867471px;}
.y1d_c00435{bottom:334.018083px;}
.y1c_c00435{bottom:364.257970px;}
.y1b_c00435{bottom:394.408582px;}
.y1a_c00435{bottom:424.648470px;}
.y19_c00435{bottom:454.799082px;}
.y18_c00435{bottom:485.038969px;}
.y17_c00435{bottom:515.189581px;}
.y16_c00435{bottom:545.429469px;}
.y15_c00435{bottom:575.580081px;}
.y14_c00435{bottom:605.819968px;}
.y13_c00435{bottom:635.970580px;}
.y12_c00435{bottom:666.210468px;}
.y11_c00435{bottom:696.361080px;}
.y10_c00435{bottom:726.600967px;}
.yf_c00435{bottom:746.670450px;}
.ye_c00435{bottom:777.630450px;}
.yd_c00435{bottom:807.780450px;}
.yc_c00435{bottom:838.020450px;}
.yb_c00435{bottom:868.170450px;}
.ya_c00435{bottom:898.410450px;}
.y9_c00435{bottom:928.560450px;}
.y8_c00435{bottom:958.800450px;}
.y7_c00435{bottom:988.950450px;}
.y6_c00435{bottom:1019.190450px;}
.y5_c00435{bottom:1049.340450px;}
.y4_c00435{bottom:1079.580450px;}
.y3_c00435{bottom:1109.730450px;}
.h2_c00435{height:62.600889px;}
.h1_c00435{height:62.771836px;}
.h3_c00435{height:74.028786px;}
.h0_c00435{height:1263.000000px;}
.w0_c00435{width:892.500000px;}
.x0_c00435{left:0.000000px;}
.x2_c00435{left:82.710059px;}
.x3_c00435{left:138.960000px;}
.x4_c00435{left:339.750000px;}
.x1_c00435{left:431.730000px;}
@media print{
.v0_c00435{vertical-align:0.000000pt;}
.v1_c00435{vertical-align:28.800000pt;}
.ls2_c00435{letter-spacing:-0.056016pt;}
.ls4_c00435{letter-spacing:-0.031120pt;}
.ls6_c00435{letter-spacing:-0.024896pt;}
.ls5_c00435{letter-spacing:-0.012448pt;}
.ls7_c00435{letter-spacing:-0.006224pt;}
.ls3_c00435{letter-spacing:0.000000pt;}
.ls1_c00435{letter-spacing:0.020694pt;}
.ls0_c00435{letter-spacing:0.037344pt;}
.ws0_c00435{word-spacing:-11.526781pt;}
.ws1_c00435{word-spacing:0.000000pt;}
.wsc_c00435{word-spacing:0.012448pt;}
.ws5_c00435{word-spacing:0.970944pt;}
.wsb_c00435{word-spacing:2.253088pt;}
.ws6_c00435{word-spacing:3.516560pt;}
.wsa_c00435{word-spacing:4.431488pt;}
.ws7_c00435{word-spacing:4.811152pt;}
.ws9_c00435{word-spacing:8.651360pt;}
.ws4_c00435{word-spacing:16.642976pt;}
.ws2_c00435{word-spacing:22.418848pt;}
.ws8_c00435{word-spacing:26.240384pt;}
.ws3_c00435{word-spacing:28.468576pt;}
._1_c00435{margin-left:-27.864848pt;}
._2_c00435{margin-left:-1.076752pt;}
._0_c00435{width:1.182560pt;}
.fs1_c00435{font-size:41.388800pt;}
.fs0_c00435{font-size:62.240000pt;}
.y0_c00435{bottom:0.000000pt;}
.y2_c00435{bottom:97.547527pt;}
.y1_c00435{bottom:115.387067pt;}
.y22_c00435{bottom:162.664175pt;}
.y21_c00435{bottom:189.544075pt;}
.y20_c00435{bottom:216.344619pt;}
.y1f_c00435{bottom:243.224519pt;}
.y1e_c00435{bottom:270.104419pt;}
.y1d_c00435{bottom:296.904963pt;}
.y1c_c00435{bottom:323.784863pt;}
.y1b_c00435{bottom:350.585407pt;}
.y1a_c00435{bottom:377.465307pt;}
.y19_c00435{bottom:404.265851pt;}
.y18_c00435{bottom:431.145751pt;}
.y17_c00435{bottom:457.946295pt;}
.y16_c00435{bottom:484.826195pt;}
.y15_c00435{bottom:511.626739pt;}
.y14_c00435{bottom:538.506639pt;}
.y13_c00435{bottom:565.307183pt;}
.y12_c00435{bottom:592.187083pt;}
.y11_c00435{bottom:618.987627pt;}
.y10_c00435{bottom:645.867527pt;}
.yf_c00435{bottom:663.707067pt;}
.ye_c00435{bottom:691.227067pt;}
.yd_c00435{bottom:718.027067pt;}
.yc_c00435{bottom:744.907067pt;}
.yb_c00435{bottom:771.707067pt;}
.ya_c00435{bottom:798.587067pt;}
.y9_c00435{bottom:825.387067pt;}
.y8_c00435{bottom:852.267067pt;}
.y7_c00435{bottom:879.067067pt;}
.y6_c00435{bottom:905.947067pt;}
.y5_c00435{bottom:932.747067pt;}
.y4_c00435{bottom:959.627067pt;}
.y3_c00435{bottom:986.427067pt;}
.h2_c00435{height:55.645234pt;}
.h1_c00435{height:55.797187pt;}
.h3_c00435{height:65.803366pt;}
.h0_c00435{height:1122.666667pt;}
.w0_c00435{width:793.333333pt;}
.x0_c00435{left:0.000000pt;}
.x2_c00435{left:73.520052pt;}
.x3_c00435{left:123.520000pt;}
.x4_c00435{left:302.000000pt;}
.x1_c00435{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d5c6778fed69aaa6928d5733.woff2')format("woff");}.ff1_c00436{font-family:ff1_c00436;line-height:1.106934;font-style:normal;font-weight:normal;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_66a7b5c45cea6147270833a1.woff2')format("woff");}.ff2_c00436{font-family:ff2_c00436;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00436;src:url('chunks/assets/font_98b786a5d3c130394c727dd4.woff2')format("woff");}.ff3_c00436{font-family:ff3_c00436;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00436{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00436{vertical-align:0.000000px;}
.lsa_c00436{letter-spacing:-0.091026px;}
.ls8_c00436{letter-spacing:-0.063018px;}
.lsf_c00436{letter-spacing:-0.056016px;}
.ls12_c00436{letter-spacing:-0.049014px;}
.ls10_c00436{letter-spacing:-0.042012px;}
.lsd_c00436{letter-spacing:-0.035010px;}
.lsc_c00436{letter-spacing:-0.028008px;}
.lse_c00436{letter-spacing:-0.021006px;}
.lsb_c00436{letter-spacing:-0.014004px;}
.ls11_c00436{letter-spacing:-0.007002px;}
.ls9_c00436{letter-spacing:0.000000px;}
.ls2_c00436{letter-spacing:0.007002px;}
.ls6_c00436{letter-spacing:0.021006px;}
.ls3_c00436{letter-spacing:0.028008px;}
.ls5_c00436{letter-spacing:0.035010px;}
.ls4_c00436{letter-spacing:0.042012px;}
.ls1_c00436{letter-spacing:0.091026px;}
.ls7_c00436{letter-spacing:0.273078px;}
.ls0_c00436{letter-spacing:85.291362px;}
.sc__c00436{text-shadow:none;}
.sc0_c00436{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00436{-webkit-text-stroke:0px transparent;}
.sc0_c00436{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00436{word-spacing:0.000000px;}
.ws5_c00436{word-spacing:0.014004px;}
.ws33_c00436{word-spacing:0.035010px;}
.ws6_c00436{word-spacing:0.378108px;}
.ws12_c00436{word-spacing:0.735210px;}
.ws1d_c00436{word-spacing:1.799514px;}
.ws29_c00436{word-spacing:1.827522px;}
.ws1b_c00436{word-spacing:2.891826px;}
.ws37_c00436{word-spacing:3.592026px;}
.ws35_c00436{word-spacing:4.285224px;}
.ws4_c00436{word-spacing:4.299228px;}
.wsa_c00436{word-spacing:4.348242px;}
.ws39_c00436{word-spacing:5.412546px;}
.ws31_c00436{word-spacing:8.605458px;}
.ws7_c00436{word-spacing:8.647470px;}
.ws38_c00436{word-spacing:8.675478px;}
.ws9_c00436{word-spacing:8.682480px;}
.ws1c_c00436{word-spacing:9.746784px;}
.wsc_c00436{word-spacing:10.026864px;}
.ws14_c00436{word-spacing:10.082880px;}
.ws26_c00436{word-spacing:10.825092px;}
.ws1e_c00436{word-spacing:11.497284px;}
.ws30_c00436{word-spacing:11.910402px;}
.wsf_c00436{word-spacing:12.596598px;}
.ws2f_c00436{word-spacing:13.702914px;}
.ws10_c00436{word-spacing:15.117318px;}
.wse_c00436{word-spacing:15.138324px;}
.ws3_c00436{word-spacing:15.838524px;}
.ws23_c00436{word-spacing:16.160616px;}
.wsb_c00436{word-spacing:16.895826px;}
.ws3a_c00436{word-spacing:16.916832px;}
.ws16_c00436{word-spacing:17.224920px;}
.ws18_c00436{word-spacing:17.273934px;}
.ws11_c00436{word-spacing:20.165760px;}
.ws13_c00436{word-spacing:22.693482px;}
.ws34_c00436{word-spacing:29.891538px;}
.ws25_c00436{word-spacing:30.255642px;}
.ws32_c00436{word-spacing:35.661186px;}
.ws22_c00436{word-spacing:37.782792px;}
.ws2e_c00436{word-spacing:38.861100px;}
.wsd_c00436{word-spacing:39.239208px;}
.ws27_c00436{word-spacing:40.709628px;}
.ws36_c00436{word-spacing:41.045724px;}
.ws1a_c00436{word-spacing:43.902540px;}
.ws24_c00436{word-spacing:43.923546px;}
.ws28_c00436{word-spacing:45.022860px;}
.ws17_c00436{word-spacing:50.407398px;}
.ws8_c00436{word-spacing:53.236206px;}
.ws2b_c00436{word-spacing:53.299224px;}
.ws2a_c00436{word-spacing:56.170044px;}
.ws2c_c00436{word-spacing:59.762070px;}
.ws19_c00436{word-spacing:61.162470px;}
.ws2d_c00436{word-spacing:69.879960px;}
.ws15_c00436{word-spacing:73.752066px;}
.ws21_c00436{word-spacing:81.076158px;}
.ws20_c00436{word-spacing:81.727344px;}
.ws1f_c00436{word-spacing:81.797364px;}
.ws2_c00436{word-spacing:85.578444px;}
.ws1_c00436{word-spacing:85.760496px;}
._2_c00436{margin-left:-56.492136px;}
._1_c00436{margin-left:-1.071306px;}
._0_c00436{width:1.253358px;}
.fc0_c00436{color:rgb(0,0,0);}
.fs0_c00436{font-size:70.020000px;}
.y0_c00436{bottom:0.000000px;}
.y2_c00436{bottom:109.740968px;}
.y1_c00436{bottom:129.810450px;}
.y20_c00436{bottom:172.920450px;}
.y1f_c00436{bottom:203.070450px;}
.y1e_c00436{bottom:233.310450px;}
.y1d_c00436{bottom:263.460450px;}
.y1c_c00436{bottom:293.700450px;}
.y1b_c00436{bottom:323.850450px;}
.y1a_c00436{bottom:354.090450px;}
.y25_c00436{bottom:384.240450px;}
.y19_c00436{bottom:404.580450px;}
.y24_c00436{bottom:434.730450px;}
.y18_c00436{bottom:434.820450px;}
.y17_c00436{bottom:465.060450px;}
.y16_c00436{bottom:495.210600px;}
.y15_c00436{bottom:525.450600px;}
.y14_c00436{bottom:555.600450px;}
.y13_c00436{bottom:585.840450px;}
.y12_c00436{bottom:615.990450px;}
.y11_c00436{bottom:646.230450px;}
.y10_c00436{bottom:676.380450px;}
.yf_c00436{bottom:706.620450px;}
.ye_c00436{bottom:736.770450px;}
.yd_c00436{bottom:767.010450px;}
.yc_c00436{bottom:797.160450px;}
.yb_c00436{bottom:827.400450px;}
.ya_c00436{bottom:857.640450px;}
.y9_c00436{bottom:887.790600px;}
.y8_c00436{bottom:917.940450px;}
.y23_c00436{bottom:938.280450px;}
.y7_c00436{bottom:968.520450px;}
.y22_c00436{bottom:988.860450px;}
.y6_c00436{bottom:1019.100450px;}
.y21_c00436{bottom:1019.190450px;}
.y5_c00436{bottom:1049.340450px;}
.y4_c00436{bottom:1079.580450px;}
.y3_c00436{bottom:1109.730450px;}
.h3_c00436{height:62.600889px;}
.h1_c00436{height:62.771836px;}
.h2_c00436{height:63.216299px;}
.h0_c00436{height:1263.000000px;}
.w0_c00436{width:892.500000px;}
.x0_c00436{left:0.000000px;}
.x2_c00436{left:82.710059px;}
.x3_c00436{left:136.530000px;}
.x1_c00436{left:431.730000px;}
.x4_c00436{left:451.800000px;}
@media print{
.v0_c00436{vertical-align:0.000000pt;}
.lsa_c00436{letter-spacing:-0.080912pt;}
.ls8_c00436{letter-spacing:-0.056016pt;}
.lsf_c00436{letter-spacing:-0.049792pt;}
.ls12_c00436{letter-spacing:-0.043568pt;}
.ls10_c00436{letter-spacing:-0.037344pt;}
.lsd_c00436{letter-spacing:-0.031120pt;}
.lsc_c00436{letter-spacing:-0.024896pt;}
.lse_c00436{letter-spacing:-0.018672pt;}
.lsb_c00436{letter-spacing:-0.012448pt;}
.ls11_c00436{letter-spacing:-0.006224pt;}
.ls9_c00436{letter-spacing:0.000000pt;}
.ls2_c00436{letter-spacing:0.006224pt;}
.ls6_c00436{letter-spacing:0.018672pt;}
.ls3_c00436{letter-spacing:0.024896pt;}
.ls5_c00436{letter-spacing:0.031120pt;}
.ls4_c00436{letter-spacing:0.037344pt;}
.ls1_c00436{letter-spacing:0.080912pt;}
.ls7_c00436{letter-spacing:0.242736pt;}
.ls0_c00436{letter-spacing:75.814544pt;}
.ws0_c00436{word-spacing:0.000000pt;}
.ws5_c00436{word-spacing:0.012448pt;}
.ws33_c00436{word-spacing:0.031120pt;}
.ws6_c00436{word-spacing:0.336096pt;}
.ws12_c00436{word-spacing:0.653520pt;}
.ws1d_c00436{word-spacing:1.599568pt;}
.ws29_c00436{word-spacing:1.624464pt;}
.ws1b_c00436{word-spacing:2.570512pt;}
.ws37_c00436{word-spacing:3.192912pt;}
.ws35_c00436{word-spacing:3.809088pt;}
.ws4_c00436{word-spacing:3.821536pt;}
.wsa_c00436{word-spacing:3.865104pt;}
.ws39_c00436{word-spacing:4.811152pt;}
.ws31_c00436{word-spacing:7.649296pt;}
.ws7_c00436{word-spacing:7.686640pt;}
.ws38_c00436{word-spacing:7.711536pt;}
.ws9_c00436{word-spacing:7.717760pt;}
.ws1c_c00436{word-spacing:8.663808pt;}
.wsc_c00436{word-spacing:8.912768pt;}
.ws14_c00436{word-spacing:8.962560pt;}
.ws26_c00436{word-spacing:9.622304pt;}
.ws1e_c00436{word-spacing:10.219808pt;}
.ws30_c00436{word-spacing:10.587024pt;}
.wsf_c00436{word-spacing:11.196976pt;}
.ws2f_c00436{word-spacing:12.180368pt;}
.ws10_c00436{word-spacing:13.437616pt;}
.wse_c00436{word-spacing:13.456288pt;}
.ws3_c00436{word-spacing:14.078688pt;}
.ws23_c00436{word-spacing:14.364992pt;}
.wsb_c00436{word-spacing:15.018512pt;}
.ws3a_c00436{word-spacing:15.037184pt;}
.ws16_c00436{word-spacing:15.311040pt;}
.ws18_c00436{word-spacing:15.354608pt;}
.ws11_c00436{word-spacing:17.925120pt;}
.ws13_c00436{word-spacing:20.171984pt;}
.ws34_c00436{word-spacing:26.570256pt;}
.ws25_c00436{word-spacing:26.893904pt;}
.ws32_c00436{word-spacing:31.698832pt;}
.ws22_c00436{word-spacing:33.584704pt;}
.ws2e_c00436{word-spacing:34.543200pt;}
.wsd_c00436{word-spacing:34.879296pt;}
.ws27_c00436{word-spacing:36.186336pt;}
.ws36_c00436{word-spacing:36.485088pt;}
.ws1a_c00436{word-spacing:39.024480pt;}
.ws24_c00436{word-spacing:39.043152pt;}
.ws28_c00436{word-spacing:40.020320pt;}
.ws17_c00436{word-spacing:44.806576pt;}
.ws8_c00436{word-spacing:47.321072pt;}
.ws2b_c00436{word-spacing:47.377088pt;}
.ws2a_c00436{word-spacing:49.928928pt;}
.ws2c_c00436{word-spacing:53.121840pt;}
.ws19_c00436{word-spacing:54.366640pt;}
.ws2d_c00436{word-spacing:62.115520pt;}
.ws15_c00436{word-spacing:65.557392pt;}
.ws21_c00436{word-spacing:72.067696pt;}
.ws20_c00436{word-spacing:72.646528pt;}
.ws1f_c00436{word-spacing:72.708768pt;}
.ws2_c00436{word-spacing:76.069728pt;}
.ws1_c00436{word-spacing:76.231552pt;}
._2_c00436{margin-left:-50.215232pt;}
._1_c00436{margin-left:-0.952272pt;}
._0_c00436{width:1.114096pt;}
.fs0_c00436{font-size:62.240000pt;}
.y0_c00436{bottom:0.000000pt;}
.y2_c00436{bottom:97.547527pt;}
.y1_c00436{bottom:115.387067pt;}
.y20_c00436{bottom:153.707067pt;}
.y1f_c00436{bottom:180.507067pt;}
.y1e_c00436{bottom:207.387067pt;}
.y1d_c00436{bottom:234.187067pt;}
.y1c_c00436{bottom:261.067067pt;}
.y1b_c00436{bottom:287.867067pt;}
.y1a_c00436{bottom:314.747067pt;}
.y25_c00436{bottom:341.547067pt;}
.y19_c00436{bottom:359.627067pt;}
.y24_c00436{bottom:386.427067pt;}
.y18_c00436{bottom:386.507067pt;}
.y17_c00436{bottom:413.387067pt;}
.y16_c00436{bottom:440.187200pt;}
.y15_c00436{bottom:467.067200pt;}
.y14_c00436{bottom:493.867067pt;}
.y13_c00436{bottom:520.747067pt;}
.y12_c00436{bottom:547.547067pt;}
.y11_c00436{bottom:574.427067pt;}
.y10_c00436{bottom:601.227067pt;}
.yf_c00436{bottom:628.107067pt;}
.ye_c00436{bottom:654.907067pt;}
.yd_c00436{bottom:681.787067pt;}
.yc_c00436{bottom:708.587067pt;}
.yb_c00436{bottom:735.467067pt;}
.ya_c00436{bottom:762.347067pt;}
.y9_c00436{bottom:789.147200pt;}
.y8_c00436{bottom:815.947067pt;}
.y23_c00436{bottom:834.027067pt;}
.y7_c00436{bottom:860.907067pt;}
.y22_c00436{bottom:878.987067pt;}
.y6_c00436{bottom:905.867067pt;}
.y21_c00436{bottom:905.947067pt;}
.y5_c00436{bottom:932.747067pt;}
.y4_c00436{bottom:959.627067pt;}
.y3_c00436{bottom:986.427067pt;}
.h3_c00436{height:55.645234pt;}
.h1_c00436{height:55.797187pt;}
.h2_c00436{height:56.192266pt;}
.h0_c00436{height:1122.666667pt;}
.w0_c00436{width:793.333333pt;}
.x0_c00436{left:0.000000pt;}
.x2_c00436{left:73.520052pt;}
.x3_c00436{left:121.360000pt;}
.x1_c00436{left:383.760000pt;}
.x4_c00436{left:401.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4fe4677eb3ac4ee0b9a573e8.woff2')format("woff");}.ff1_c00437{font-family:ff1_c00437;line-height:1.106934;font-style:normal;font-weight:normal;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_8620ff66d2cdef828e7b71e4.woff2')format("woff");}.ff2_c00437{font-family:ff2_c00437;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00437{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00437{vertical-align:0.000000px;}
.v1_c00437{vertical-align:32.400600px;}
.ls7_c00437{letter-spacing:-0.063018px;}
.ls9_c00437{letter-spacing:-0.056016px;}
.lsf_c00437{letter-spacing:-0.049014px;}
.lse_c00437{letter-spacing:-0.035010px;}
.lsb_c00437{letter-spacing:-0.028008px;}
.lsa_c00437{letter-spacing:-0.021006px;}
.lsd_c00437{letter-spacing:-0.014004px;}
.lsc_c00437{letter-spacing:-0.007002px;}
.ls8_c00437{letter-spacing:0.000000px;}
.ls0_c00437{letter-spacing:0.007002px;}
.ls6_c00437{letter-spacing:0.014004px;}
.ls5_c00437{letter-spacing:0.021006px;}
.ls2_c00437{letter-spacing:0.023281px;}
.ls1_c00437{letter-spacing:0.035010px;}
.ls3_c00437{letter-spacing:0.049014px;}
.ls4_c00437{letter-spacing:0.077022px;}
.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:-19.437552px;}
.ws1_c00437{word-spacing:-12.967628px;}
.ws2_c00437{word-spacing:0.000000px;}
.ws2b_c00437{word-spacing:0.042012px;}
.ws21_c00437{word-spacing:0.371106px;}
.ws15_c00437{word-spacing:0.406116px;}
.wsd_c00437{word-spacing:0.756216px;}
.ws9_c00437{word-spacing:2.513718px;}
.ws24_c00437{word-spacing:3.592026px;}
.ws1d_c00437{word-spacing:3.634038px;}
.ws3_c00437{word-spacing:3.641040px;}
.wsf_c00437{word-spacing:4.306230px;}
.ws7_c00437{word-spacing:5.412546px;}
.ws11_c00437{word-spacing:5.762646px;}
.wsa_c00437{word-spacing:6.476850px;}
.ws14_c00437{word-spacing:6.833952px;}
.ws8_c00437{word-spacing:8.234352px;}
.ws17_c00437{word-spacing:8.640468px;}
.ws4_c00437{word-spacing:10.846098px;}
.ws20_c00437{word-spacing:13.324806px;}
.ws18_c00437{word-spacing:15.418404px;}
.ws28_c00437{word-spacing:15.481422px;}
.ws6_c00437{word-spacing:15.817518px;}
.ws1b_c00437{word-spacing:16.195626px;}
.ws26_c00437{word-spacing:17.988138px;}
.ws27_c00437{word-spacing:20.515860px;}
.ws1c_c00437{word-spacing:21.237066px;}
.ws16_c00437{word-spacing:21.251070px;}
.ws22_c00437{word-spacing:21.965274px;}
.ws23_c00437{word-spacing:24.163902px;}
.ws12_c00437{word-spacing:26.999712px;}
.ws25_c00437{word-spacing:27.734922px;}
.ws2a_c00437{word-spacing:40.667616px;}
.ws1f_c00437{word-spacing:40.688622px;}
.ws19_c00437{word-spacing:44.651754px;}
.wsb_c00437{word-spacing:44.658756px;}
.ws10_c00437{word-spacing:57.227346px;}
.ws1e_c00437{word-spacing:57.647466px;}
.ws13_c00437{word-spacing:65.888820px;}
.ws29_c00437{word-spacing:69.809940px;}
.ws1a_c00437{word-spacing:71.602452px;}
.ws5_c00437{word-spacing:78.849522px;}
.wse_c00437{word-spacing:84.227058px;}
.wsc_c00437{word-spacing:150.465978px;}
._1_c00437{margin-left:-9.907830px;}
._2_c00437{margin-left:-1.008288px;}
._0_c00437{width:1.085310px;}
.fc0_c00437{color:rgb(0,0,0);}
.fs1_c00437{font-size:46.562400px;}
.fs0_c00437{font-size:70.020000px;}
.y0_c00437{bottom:0.000000px;}
.y2_c00437{bottom:109.740968px;}
.y1_c00437{bottom:129.810450px;}
.y21_c00437{bottom:163.110450px;}
.y20_c00437{bottom:193.260450px;}
.y1f_c00437{bottom:223.500450px;}
.y1e_c00437{bottom:253.650450px;}
.y1d_c00437{bottom:283.890450px;}
.y1c_c00437{bottom:314.040450px;}
.y1b_c00437{bottom:344.280450px;}
.y1a_c00437{bottom:374.430450px;}
.y19_c00437{bottom:404.670450px;}
.y18_c00437{bottom:434.820450px;}
.y17_c00437{bottom:465.060450px;}
.y16_c00437{bottom:515.550450px;}
.y15_c00437{bottom:545.790450px;}
.y14_c00437{bottom:576.030450px;}
.y13_c00437{bottom:606.180450px;}
.y12_c00437{bottom:636.420450px;}
.y11_c00437{bottom:666.660450px;}
.y10_c00437{bottom:696.810450px;}
.y2e_c00437{bottom:706.620450px;}
.yf_c00437{bottom:727.050450px;}
.y2d_c00437{bottom:757.110450px;}
.ye_c00437{bottom:757.200450px;}
.y2c_c00437{bottom:787.440450px;}
.yd_c00437{bottom:807.690450px;}
.y2b_c00437{bottom:817.590450px;}
.yc_c00437{bottom:838.020450px;}
.y2a_c00437{bottom:847.830450px;}
.yb_c00437{bottom:868.170450px;}
.y29_c00437{bottom:877.980450px;}
.ya_c00437{bottom:898.410450px;}
.y28_c00437{bottom:908.220450px;}
.y9_c00437{bottom:928.560450px;}
.y27_c00437{bottom:938.370450px;}
.y8_c00437{bottom:958.800450px;}
.y26_c00437{bottom:968.610450px;}
.y7_c00437{bottom:988.950450px;}
.y25_c00437{bottom:998.760450px;}
.y6_c00437{bottom:1019.190450px;}
.y24_c00437{bottom:1029.000450px;}
.y5_c00437{bottom:1049.340450px;}
.y23_c00437{bottom:1059.150450px;}
.y4_c00437{bottom:1079.580450px;}
.y22_c00437{bottom:1109.640450px;}
.y3_c00437{bottom:1109.730450px;}
.h2_c00437{height:62.600889px;}
.h1_c00437{height:62.771836px;}
.h4_c00437{height:74.028786px;}
.h3_c00437{height:74.029386px;}
.h0_c00437{height:1263.000000px;}
.w0_c00437{width:892.500000px;}
.x0_c00437{left:0.000000px;}
.x2_c00437{left:82.710059px;}
.x3_c00437{left:136.530000px;}
.x1_c00437{left:431.730000px;}
.x4_c00437{left:451.800000px;}
@media print{
.v0_c00437{vertical-align:0.000000pt;}
.v1_c00437{vertical-align:28.800533pt;}
.ls7_c00437{letter-spacing:-0.056016pt;}
.ls9_c00437{letter-spacing:-0.049792pt;}
.lsf_c00437{letter-spacing:-0.043568pt;}
.lse_c00437{letter-spacing:-0.031120pt;}
.lsb_c00437{letter-spacing:-0.024896pt;}
.lsa_c00437{letter-spacing:-0.018672pt;}
.lsd_c00437{letter-spacing:-0.012448pt;}
.lsc_c00437{letter-spacing:-0.006224pt;}
.ls8_c00437{letter-spacing:0.000000pt;}
.ls0_c00437{letter-spacing:0.006224pt;}
.ls6_c00437{letter-spacing:0.012448pt;}
.ls5_c00437{letter-spacing:0.018672pt;}
.ls2_c00437{letter-spacing:0.020694pt;}
.ls1_c00437{letter-spacing:0.031120pt;}
.ls3_c00437{letter-spacing:0.043568pt;}
.ls4_c00437{letter-spacing:0.068464pt;}
.ws0_c00437{word-spacing:-17.277824pt;}
.ws1_c00437{word-spacing:-11.526781pt;}
.ws2_c00437{word-spacing:0.000000pt;}
.ws2b_c00437{word-spacing:0.037344pt;}
.ws21_c00437{word-spacing:0.329872pt;}
.ws15_c00437{word-spacing:0.360992pt;}
.wsd_c00437{word-spacing:0.672192pt;}
.ws9_c00437{word-spacing:2.234416pt;}
.ws24_c00437{word-spacing:3.192912pt;}
.ws1d_c00437{word-spacing:3.230256pt;}
.ws3_c00437{word-spacing:3.236480pt;}
.wsf_c00437{word-spacing:3.827760pt;}
.ws7_c00437{word-spacing:4.811152pt;}
.ws11_c00437{word-spacing:5.122352pt;}
.wsa_c00437{word-spacing:5.757200pt;}
.ws14_c00437{word-spacing:6.074624pt;}
.ws8_c00437{word-spacing:7.319424pt;}
.ws17_c00437{word-spacing:7.680416pt;}
.ws4_c00437{word-spacing:9.640976pt;}
.ws20_c00437{word-spacing:11.844272pt;}
.ws18_c00437{word-spacing:13.705248pt;}
.ws28_c00437{word-spacing:13.761264pt;}
.ws6_c00437{word-spacing:14.060016pt;}
.ws1b_c00437{word-spacing:14.396112pt;}
.ws26_c00437{word-spacing:15.989456pt;}
.ws27_c00437{word-spacing:18.236320pt;}
.ws1c_c00437{word-spacing:18.877392pt;}
.ws16_c00437{word-spacing:18.889840pt;}
.ws22_c00437{word-spacing:19.524688pt;}
.ws23_c00437{word-spacing:21.479024pt;}
.ws12_c00437{word-spacing:23.999744pt;}
.ws25_c00437{word-spacing:24.653264pt;}
.ws2a_c00437{word-spacing:36.148992pt;}
.ws1f_c00437{word-spacing:36.167664pt;}
.ws19_c00437{word-spacing:39.690448pt;}
.wsb_c00437{word-spacing:39.696672pt;}
.ws10_c00437{word-spacing:50.868752pt;}
.ws1e_c00437{word-spacing:51.242192pt;}
.ws13_c00437{word-spacing:58.567840pt;}
.ws29_c00437{word-spacing:62.053280pt;}
.ws1a_c00437{word-spacing:63.646624pt;}
.ws5_c00437{word-spacing:70.088464pt;}
.wse_c00437{word-spacing:74.868496pt;}
.wsc_c00437{word-spacing:133.747536pt;}
._1_c00437{margin-left:-8.806960pt;}
._2_c00437{margin-left:-0.896256pt;}
._0_c00437{width:0.964720pt;}
.fs1_c00437{font-size:41.388800pt;}
.fs0_c00437{font-size:62.240000pt;}
.y0_c00437{bottom:0.000000pt;}
.y2_c00437{bottom:97.547527pt;}
.y1_c00437{bottom:115.387067pt;}
.y21_c00437{bottom:144.987067pt;}
.y20_c00437{bottom:171.787067pt;}
.y1f_c00437{bottom:198.667067pt;}
.y1e_c00437{bottom:225.467067pt;}
.y1d_c00437{bottom:252.347067pt;}
.y1c_c00437{bottom:279.147067pt;}
.y1b_c00437{bottom:306.027067pt;}
.y1a_c00437{bottom:332.827067pt;}
.y19_c00437{bottom:359.707067pt;}
.y18_c00437{bottom:386.507067pt;}
.y17_c00437{bottom:413.387067pt;}
.y16_c00437{bottom:458.267067pt;}
.y15_c00437{bottom:485.147067pt;}
.y14_c00437{bottom:512.027067pt;}
.y13_c00437{bottom:538.827067pt;}
.y12_c00437{bottom:565.707067pt;}
.y11_c00437{bottom:592.587067pt;}
.y10_c00437{bottom:619.387067pt;}
.y2e_c00437{bottom:628.107067pt;}
.yf_c00437{bottom:646.267067pt;}
.y2d_c00437{bottom:672.987067pt;}
.ye_c00437{bottom:673.067067pt;}
.y2c_c00437{bottom:699.947067pt;}
.yd_c00437{bottom:717.947067pt;}
.y2b_c00437{bottom:726.747067pt;}
.yc_c00437{bottom:744.907067pt;}
.y2a_c00437{bottom:753.627067pt;}
.yb_c00437{bottom:771.707067pt;}
.y29_c00437{bottom:780.427067pt;}
.ya_c00437{bottom:798.587067pt;}
.y28_c00437{bottom:807.307067pt;}
.y9_c00437{bottom:825.387067pt;}
.y27_c00437{bottom:834.107067pt;}
.y8_c00437{bottom:852.267067pt;}
.y26_c00437{bottom:860.987067pt;}
.y7_c00437{bottom:879.067067pt;}
.y25_c00437{bottom:887.787067pt;}
.y6_c00437{bottom:905.947067pt;}
.y24_c00437{bottom:914.667067pt;}
.y5_c00437{bottom:932.747067pt;}
.y23_c00437{bottom:941.467067pt;}
.y4_c00437{bottom:959.627067pt;}
.y22_c00437{bottom:986.347067pt;}
.y3_c00437{bottom:986.427067pt;}
.h2_c00437{height:55.645234pt;}
.h1_c00437{height:55.797187pt;}
.h4_c00437{height:65.803366pt;}
.h3_c00437{height:65.803899pt;}
.h0_c00437{height:1122.666667pt;}
.w0_c00437{width:793.333333pt;}
.x0_c00437{left:0.000000pt;}
.x2_c00437{left:73.520052pt;}
.x3_c00437{left:121.360000pt;}
.x1_c00437{left:383.760000pt;}
.x4_c00437{left:401.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c737cef553230059d048146b.woff2')format("woff");}.ff1_c00438{font-family:ff1_c00438;line-height:1.106934;font-style:normal;font-weight:normal;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_2a520f6fbb1b423136e08de4.woff2')format("woff");}.ff2_c00438{font-family:ff2_c00438;line-height:1.104492;font-style:normal;font-weight:normal;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_d806cab72ee969800b6a58f6.woff2')format("woff");}.ff3_c00438{font-family:ff3_c00438;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00438{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00438{vertical-align:0.000000px;}
.v1_c00438{vertical-align:32.040000px;}
.ls5_c00438{letter-spacing:-0.063018px;}
.lsa_c00438{letter-spacing:-0.035010px;}
.ls9_c00438{letter-spacing:-0.028008px;}
.ls8_c00438{letter-spacing:-0.021006px;}
.ls7_c00438{letter-spacing:-0.014004px;}
.lsb_c00438{letter-spacing:-0.007002px;}
.ls6_c00438{letter-spacing:0.000000px;}
.ls3_c00438{letter-spacing:0.007002px;}
.ls1_c00438{letter-spacing:0.023281px;}
.ls2_c00438{letter-spacing:0.049014px;}
.ls4_c00438{letter-spacing:0.084024px;}
.ls0_c00438{letter-spacing:0.126036px;}
.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:-19.591596px;}
.ws1_c00438{word-spacing:-12.967628px;}
.wse_c00438{word-spacing:-0.098028px;}
.ws9_c00438{word-spacing:-0.021006px;}
.ws2_c00438{word-spacing:0.000000px;}
.ws6_c00438{word-spacing:0.014004px;}
.ws7_c00438{word-spacing:0.294084px;}
.ws11_c00438{word-spacing:0.707202px;}
.ws8_c00438{word-spacing:5.412546px;}
.wsd_c00438{word-spacing:9.368676px;}
.ws10_c00438{word-spacing:9.732780px;}
.wsf_c00438{word-spacing:10.075878px;}
.wsa_c00438{word-spacing:11.539296px;}
.wsb_c00438{word-spacing:13.688910px;}
.wsc_c00438{word-spacing:16.216632px;}
.ws5_c00438{word-spacing:22.686480px;}
.ws3_c00438{word-spacing:37.068588px;}
.ws4_c00438{word-spacing:48.957984px;}
._2_c00438{margin-left:-1.029294px;}
._0_c00438{width:1.036296px;}
._3_c00438{width:4.495284px;}
._1_c00438{width:7.926264px;}
.fc0_c00438{color:rgb(0,0,0);}
.fs1_c00438{font-size:46.562400px;}
.fs0_c00438{font-size:70.020000px;}
.y0_c00438{bottom:0.000000px;}
.y2_c00438{bottom:109.740968px;}
.y1_c00438{bottom:129.810450px;}
.y18_c00438{bottom:183.627507px;}
.y17_c00438{bottom:213.867394px;}
.y16_c00438{bottom:244.018006px;}
.y15_c00438{bottom:274.257894px;}
.y14_c00438{bottom:304.408506px;}
.y13_c00438{bottom:334.648393px;}
.y12_c00438{bottom:364.799005px;}
.y11_c00438{bottom:395.038893px;}
.y10_c00438{bottom:425.189505px;}
.yf_c00438{bottom:455.429392px;}
.ye_c00438{bottom:485.580004px;}
.yd_c00438{bottom:515.819892px;}
.yc_c00438{bottom:542.280450px;}
.yb_c00438{bottom:847.109950px;}
.ya_c00438{bottom:877.260562px;}
.y9_c00438{bottom:907.500450px;}
.y8_c00438{bottom:938.370891px;}
.y7_c00438{bottom:968.610779px;}
.y6_c00438{bottom:1019.100450px;}
.y5_c00438{bottom:1049.340450px;}
.y4_c00438{bottom:1079.580450px;}
.y3_c00438{bottom:1109.730450px;}
.h2_c00438{height:62.600889px;}
.h1_c00438{height:62.771836px;}
.h4_c00438{height:63.216299px;}
.h3_c00438{height:73.668786px;}
.h0_c00438{height:1263.000000px;}
.w0_c00438{width:892.500000px;}
.x0_c00438{left:0.000000px;}
.x2_c00438{left:82.710059px;}
.x3_c00438{left:136.530000px;}
.x6_c00438{left:162.811274px;}
.x5_c00438{left:283.410221px;}
.x1_c00438{left:431.730000px;}
.x4_c00438{left:446.310000px;}
.x7_c00438{left:753.210000px;}
@media print{
.v0_c00438{vertical-align:0.000000pt;}
.v1_c00438{vertical-align:28.480000pt;}
.ls5_c00438{letter-spacing:-0.056016pt;}
.lsa_c00438{letter-spacing:-0.031120pt;}
.ls9_c00438{letter-spacing:-0.024896pt;}
.ls8_c00438{letter-spacing:-0.018672pt;}
.ls7_c00438{letter-spacing:-0.012448pt;}
.lsb_c00438{letter-spacing:-0.006224pt;}
.ls6_c00438{letter-spacing:0.000000pt;}
.ls3_c00438{letter-spacing:0.006224pt;}
.ls1_c00438{letter-spacing:0.020694pt;}
.ls2_c00438{letter-spacing:0.043568pt;}
.ls4_c00438{letter-spacing:0.074688pt;}
.ls0_c00438{letter-spacing:0.112032pt;}
.ws0_c00438{word-spacing:-17.414752pt;}
.ws1_c00438{word-spacing:-11.526781pt;}
.wse_c00438{word-spacing:-0.087136pt;}
.ws9_c00438{word-spacing:-0.018672pt;}
.ws2_c00438{word-spacing:0.000000pt;}
.ws6_c00438{word-spacing:0.012448pt;}
.ws7_c00438{word-spacing:0.261408pt;}
.ws11_c00438{word-spacing:0.628624pt;}
.ws8_c00438{word-spacing:4.811152pt;}
.wsd_c00438{word-spacing:8.327712pt;}
.ws10_c00438{word-spacing:8.651360pt;}
.wsf_c00438{word-spacing:8.956336pt;}
.wsa_c00438{word-spacing:10.257152pt;}
.wsb_c00438{word-spacing:12.167920pt;}
.wsc_c00438{word-spacing:14.414784pt;}
.ws5_c00438{word-spacing:20.165760pt;}
.ws3_c00438{word-spacing:32.949856pt;}
.ws4_c00438{word-spacing:43.518208pt;}
._2_c00438{margin-left:-0.914928pt;}
._0_c00438{width:0.921152pt;}
._3_c00438{width:3.995808pt;}
._1_c00438{width:7.045568pt;}
.fs1_c00438{font-size:41.388800pt;}
.fs0_c00438{font-size:62.240000pt;}
.y0_c00438{bottom:0.000000pt;}
.y2_c00438{bottom:97.547527pt;}
.y1_c00438{bottom:115.387067pt;}
.y18_c00438{bottom:163.224451pt;}
.y17_c00438{bottom:190.104351pt;}
.y16_c00438{bottom:216.904895pt;}
.y15_c00438{bottom:243.784795pt;}
.y14_c00438{bottom:270.585339pt;}
.y13_c00438{bottom:297.465239pt;}
.y12_c00438{bottom:324.265783pt;}
.y11_c00438{bottom:351.145683pt;}
.y10_c00438{bottom:377.946227pt;}
.yf_c00438{bottom:404.826127pt;}
.ye_c00438{bottom:431.626671pt;}
.yd_c00438{bottom:458.506571pt;}
.yc_c00438{bottom:482.027067pt;}
.yb_c00438{bottom:752.986623pt;}
.ya_c00438{bottom:779.787167pt;}
.y9_c00438{bottom:806.667067pt;}
.y8_c00438{bottom:834.107459pt;}
.y7_c00438{bottom:860.987359pt;}
.y6_c00438{bottom:905.867067pt;}
.y5_c00438{bottom:932.747067pt;}
.y4_c00438{bottom:959.627067pt;}
.y3_c00438{bottom:986.427067pt;}
.h2_c00438{height:55.645234pt;}
.h1_c00438{height:55.797187pt;}
.h4_c00438{height:56.192266pt;}
.h3_c00438{height:65.483366pt;}
.h0_c00438{height:1122.666667pt;}
.w0_c00438{width:793.333333pt;}
.x0_c00438{left:0.000000pt;}
.x2_c00438{left:73.520052pt;}
.x3_c00438{left:121.360000pt;}
.x6_c00438{left:144.721132pt;}
.x5_c00438{left:251.920196pt;}
.x1_c00438{left:383.760000pt;}
.x4_c00438{left:396.720000pt;}
.x7_c00438{left:669.520000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_71689b6845372ae184adbb5b.woff2')format("woff");}.ff1_c00439{font-family:ff1_c00439;line-height:1.106934;font-style:normal;font-weight:normal;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_c401a3b9de748371a735a997.woff2')format("woff");}.ff2_c00439{font-family:ff2_c00439;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00439{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00439{vertical-align:-32.040000px;}
.v0_c00439{vertical-align:0.000000px;}
.v1_c00439{vertical-align:32.051844px;}
.ls6_c00439{letter-spacing:-0.063018px;}
.lsb_c00439{letter-spacing:-0.035010px;}
.lsc_c00439{letter-spacing:-0.028008px;}
.ls8_c00439{letter-spacing:-0.021006px;}
.ls9_c00439{letter-spacing:-0.014004px;}
.lsa_c00439{letter-spacing:-0.007002px;}
.ls7_c00439{letter-spacing:0.000000px;}
.ls0_c00439{letter-spacing:0.007002px;}
.ls3_c00439{letter-spacing:0.014004px;}
.ls2_c00439{letter-spacing:0.021006px;}
.ls4_c00439{letter-spacing:0.023281px;}
.ls1_c00439{letter-spacing:0.028008px;}
.ls5_c00439{letter-spacing:0.217062px;}
.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:-12.967628px;}
.ws18_c00439{word-spacing:-0.007002px;}
.ws1_c00439{word-spacing:0.000000px;}
.ws1c_c00439{word-spacing:0.014004px;}
.ws11_c00439{word-spacing:0.329094px;}
.ws8_c00439{word-spacing:1.806516px;}
.ws1d_c00439{word-spacing:2.499714px;}
.ws14_c00439{word-spacing:2.527722px;}
.ws2_c00439{word-spacing:2.856816px;}
.ws5_c00439{word-spacing:3.220920px;}
.ws17_c00439{word-spacing:3.592026px;}
.ws7_c00439{word-spacing:5.027436px;}
.ws6_c00439{word-spacing:5.048442px;}
.wsb_c00439{word-spacing:5.405544px;}
.ws9_c00439{word-spacing:5.720634px;}
.wsa_c00439{word-spacing:5.748642px;}
.ws10_c00439{word-spacing:5.769648px;}
.ws15_c00439{word-spacing:6.126750px;}
.ws16_c00439{word-spacing:6.133752px;}
.wse_c00439{word-spacing:6.826950px;}
.wsd_c00439{word-spacing:8.248356px;}
.ws4_c00439{word-spacing:10.082880px;}
.ws1b_c00439{word-spacing:10.453986px;}
.ws1a_c00439{word-spacing:10.460988px;}
.ws13_c00439{word-spacing:12.610602px;}
.wsf_c00439{word-spacing:16.559730px;}
.wsc_c00439{word-spacing:17.280936px;}
.ws3_c00439{word-spacing:19.444554px;}
.ws12_c00439{word-spacing:27.006714px;}
.ws19_c00439{word-spacing:33.112458px;}
._1_c00439{margin-left:-1.008288px;}
._0_c00439{width:1.071306px;}
.fc0_c00439{color:rgb(0,0,0);}
.fs1_c00439{font-size:46.562400px;}
.fs0_c00439{font-size:70.020000px;}
.y0_c00439{bottom:0.000000px;}
.y2_c00439{bottom:109.740968px;}
.y1_c00439{bottom:129.810450px;}
.y22_c00439{bottom:173.730063px;}
.y21_c00439{bottom:203.969950px;}
.y20_c00439{bottom:234.120563px;}
.y1f_c00439{bottom:264.359451px;}
.y1e_c00439{bottom:294.510063px;}
.y1d_c00439{bottom:324.749950px;}
.y1c_c00439{bottom:354.900562px;}
.y1b_c00439{bottom:385.137840px;}
.y1a_c00439{bottom:415.288452px;}
.y19_c00439{bottom:445.528339px;}
.y18_c00439{bottom:475.768227px;}
.y17_c00439{bottom:505.918839px;}
.y16_c00439{bottom:536.158726px;}
.y15_c00439{bottom:566.309338px;}
.y14_c00439{bottom:596.459950px;}
.y13_c00439{bottom:626.610563px;}
.y12_c00439{bottom:656.847489px;}
.y11_c00439{bottom:686.998101px;}
.y10_c00439{bottom:717.237989px;}
.yf_c00439{bottom:747.388601px;}
.ye_c00439{bottom:777.628488px;}
.yd_c00439{bottom:807.779100px;}
.yc_c00439{bottom:838.018988px;}
.yb_c00439{bottom:868.169600px;}
.ya_c00439{bottom:898.409487px;}
.y9_c00439{bottom:928.560099px;}
.y8_c00439{bottom:958.799987px;}
.y7_c00439{bottom:988.950599px;}
.y6_c00439{bottom:1019.190486px;}
.y5_c00439{bottom:1049.341098px;}
.y4_c00439{bottom:1079.580985px;}
.y3_c00439{bottom:1109.731597px;}
.h2_c00439{height:62.600889px;}
.h1_c00439{height:62.771836px;}
.h3_c00439{height:73.680630px;}
.h5_c00439{height:73.786460px;}
.h4_c00439{height:73.792904px;}
.h0_c00439{height:1263.000000px;}
.w0_c00439{width:892.500000px;}
.x0_c00439{left:0.000000px;}
.x2_c00439{left:82.710059px;}
.x3_c00439{left:136.530932px;}
.x1_c00439{left:431.730000px;}
@media print{
.v2_c00439{vertical-align:-28.480000pt;}
.v0_c00439{vertical-align:0.000000pt;}
.v1_c00439{vertical-align:28.490528pt;}
.ls6_c00439{letter-spacing:-0.056016pt;}
.lsb_c00439{letter-spacing:-0.031120pt;}
.lsc_c00439{letter-spacing:-0.024896pt;}
.ls8_c00439{letter-spacing:-0.018672pt;}
.ls9_c00439{letter-spacing:-0.012448pt;}
.lsa_c00439{letter-spacing:-0.006224pt;}
.ls7_c00439{letter-spacing:0.000000pt;}
.ls0_c00439{letter-spacing:0.006224pt;}
.ls3_c00439{letter-spacing:0.012448pt;}
.ls2_c00439{letter-spacing:0.018672pt;}
.ls4_c00439{letter-spacing:0.020694pt;}
.ls1_c00439{letter-spacing:0.024896pt;}
.ls5_c00439{letter-spacing:0.192944pt;}
.ws0_c00439{word-spacing:-11.526781pt;}
.ws18_c00439{word-spacing:-0.006224pt;}
.ws1_c00439{word-spacing:0.000000pt;}
.ws1c_c00439{word-spacing:0.012448pt;}
.ws11_c00439{word-spacing:0.292528pt;}
.ws8_c00439{word-spacing:1.605792pt;}
.ws1d_c00439{word-spacing:2.221968pt;}
.ws14_c00439{word-spacing:2.246864pt;}
.ws2_c00439{word-spacing:2.539392pt;}
.ws5_c00439{word-spacing:2.863040pt;}
.ws17_c00439{word-spacing:3.192912pt;}
.ws7_c00439{word-spacing:4.468832pt;}
.ws6_c00439{word-spacing:4.487504pt;}
.wsb_c00439{word-spacing:4.804928pt;}
.ws9_c00439{word-spacing:5.085008pt;}
.wsa_c00439{word-spacing:5.109904pt;}
.ws10_c00439{word-spacing:5.128576pt;}
.ws15_c00439{word-spacing:5.446000pt;}
.ws16_c00439{word-spacing:5.452224pt;}
.wse_c00439{word-spacing:6.068400pt;}
.wsd_c00439{word-spacing:7.331872pt;}
.ws4_c00439{word-spacing:8.962560pt;}
.ws1b_c00439{word-spacing:9.292432pt;}
.ws1a_c00439{word-spacing:9.298656pt;}
.ws13_c00439{word-spacing:11.209424pt;}
.wsf_c00439{word-spacing:14.719760pt;}
.wsc_c00439{word-spacing:15.360832pt;}
.ws3_c00439{word-spacing:17.284048pt;}
.ws12_c00439{word-spacing:24.005968pt;}
.ws19_c00439{word-spacing:29.433296pt;}
._1_c00439{margin-left:-0.896256pt;}
._0_c00439{width:0.952272pt;}
.fs1_c00439{font-size:41.388800pt;}
.fs0_c00439{font-size:62.240000pt;}
.y0_c00439{bottom:0.000000pt;}
.y2_c00439{bottom:97.547527pt;}
.y1_c00439{bottom:115.387067pt;}
.y22_c00439{bottom:154.426723pt;}
.y21_c00439{bottom:181.306623pt;}
.y20_c00439{bottom:208.107167pt;}
.y1f_c00439{bottom:234.986179pt;}
.y1e_c00439{bottom:261.786723pt;}
.y1d_c00439{bottom:288.666623pt;}
.y1c_c00439{bottom:315.467167pt;}
.y1b_c00439{bottom:342.344747pt;}
.y1a_c00439{bottom:369.145291pt;}
.y19_c00439{bottom:396.025191pt;}
.y18_c00439{bottom:422.905091pt;}
.y17_c00439{bottom:449.705635pt;}
.y16_c00439{bottom:476.585535pt;}
.y15_c00439{bottom:503.386079pt;}
.y14_c00439{bottom:530.186623pt;}
.y13_c00439{bottom:556.987167pt;}
.y12_c00439{bottom:583.864435pt;}
.y11_c00439{bottom:610.664979pt;}
.y10_c00439{bottom:637.544879pt;}
.yf_c00439{bottom:664.345423pt;}
.ye_c00439{bottom:691.225323pt;}
.yd_c00439{bottom:718.025867pt;}
.yc_c00439{bottom:744.905767pt;}
.yb_c00439{bottom:771.706311pt;}
.ya_c00439{bottom:798.586211pt;}
.y9_c00439{bottom:825.386755pt;}
.y8_c00439{bottom:852.266655pt;}
.y7_c00439{bottom:879.067199pt;}
.y6_c00439{bottom:905.947099pt;}
.y5_c00439{bottom:932.747643pt;}
.y4_c00439{bottom:959.627543pt;}
.y3_c00439{bottom:986.428087pt;}
.h2_c00439{height:55.645234pt;}
.h1_c00439{height:55.797187pt;}
.h3_c00439{height:65.493894pt;}
.h5_c00439{height:65.587965pt;}
.h4_c00439{height:65.593693pt;}
.h0_c00439{height:1122.666667pt;}
.w0_c00439{width:793.333333pt;}
.x0_c00439{left:0.000000pt;}
.x2_c00439{left:73.520052pt;}
.x3_c00439{left:121.360828pt;}
.x1_c00439{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0de8ca87125c73573ae9c266.woff2')format("woff");}.ff1_c00440{font-family:ff1_c00440;line-height:1.106934;font-style:normal;font-weight:normal;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_24ad5a62c90e1ba0423d24cd.woff2')format("woff");}.ff2_c00440{font-family:ff2_c00440;line-height:1.104492;font-style:normal;font-weight:normal;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_486617c577627cfc7af12268.woff2')format("woff");}.ff3_c00440{font-family:ff3_c00440;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00440{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00440{vertical-align:0.000000px;}
.v1_c00440{vertical-align:32.037858px;}
.lsd_c00440{letter-spacing:-0.112032px;}
.ls6_c00440{letter-spacing:-0.063018px;}
.lsa_c00440{letter-spacing:-0.056016px;}
.ls10_c00440{letter-spacing:-0.049014px;}
.ls8_c00440{letter-spacing:-0.042012px;}
.lsb_c00440{letter-spacing:-0.035010px;}
.ls9_c00440{letter-spacing:-0.028008px;}
.lse_c00440{letter-spacing:-0.021006px;}
.lsf_c00440{letter-spacing:-0.014004px;}
.lsc_c00440{letter-spacing:-0.007002px;}
.ls7_c00440{letter-spacing:0.000000px;}
.ls5_c00440{letter-spacing:0.007002px;}
.ls4_c00440{letter-spacing:0.014004px;}
.ls0_c00440{letter-spacing:0.023281px;}
.ls2_c00440{letter-spacing:0.056016px;}
.ls1_c00440{letter-spacing:0.063018px;}
.ls3_c00440{letter-spacing:0.126036px;}
.sc__c00440{text-shadow:none;}
.sc0_c00440{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00440{-webkit-text-stroke:0px transparent;}
.sc0_c00440{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00440{word-spacing:-19.353528px;}
.ws0_c00440{word-spacing:-12.967628px;}
.ws18_c00440{word-spacing:-0.014004px;}
.ws2_c00440{word-spacing:0.000000px;}
.wsc_c00440{word-spacing:0.007002px;}
.wsd_c00440{word-spacing:0.014004px;}
.ws19_c00440{word-spacing:0.035010px;}
.wse_c00440{word-spacing:0.287082px;}
.ws4_c00440{word-spacing:0.385110px;}
.ws13_c00440{word-spacing:0.721206px;}
.wsb_c00440{word-spacing:0.735210px;}
.ws15_c00440{word-spacing:1.435410px;}
.ws14_c00440{word-spacing:1.799514px;}
.ws16_c00440{word-spacing:3.571020px;}
.ws3_c00440{word-spacing:7.590168px;}
.ws7_c00440{word-spacing:10.005858px;}
.ws6_c00440{word-spacing:10.481994px;}
.wsf_c00440{word-spacing:11.168190px;}
.ws5_c00440{word-spacing:11.175192px;}
.ws9_c00440{word-spacing:12.232494px;}
.ws8_c00440{word-spacing:12.260502px;}
.ws17_c00440{word-spacing:12.575592px;}
.ws10_c00440{word-spacing:12.967704px;}
.ws11_c00440{word-spacing:20.529864px;}
.ws12_c00440{word-spacing:20.921976px;}
.wsa_c00440{word-spacing:21.594168px;}
._1_c00440{margin-left:-1.225350px;}
._0_c00440{width:1.015290px;}
._2_c00440{width:7.926264px;}
._3_c00440{width:10.453986px;}
.fc0_c00440{color:rgb(0,0,0);}
.fs1_c00440{font-size:46.562400px;}
.fs0_c00440{font-size:70.020000px;}
.y0_c00440{bottom:0.000000px;}
.y2_c00440{bottom:109.740968px;}
.y1_c00440{bottom:129.810450px;}
.y1a_c00440{bottom:169.950600px;}
.y19_c00440{bottom:200.910450px;}
.y18_c00440{bottom:231.060450px;}
.y17_c00440{bottom:261.300450px;}
.y16_c00440{bottom:291.450450px;}
.y15_c00440{bottom:321.690450px;}
.y14_c00440{bottom:351.840450px;}
.y13_c00440{bottom:382.080600px;}
.y12_c00440{bottom:412.230450px;}
.y11_c00440{bottom:442.380450px;}
.y10_c00440{bottom:468.840600px;}
.yf_c00440{bottom:746.670450px;}
.ye_c00440{bottom:776.910450px;}
.yd_c00440{bottom:807.780063px;}
.yc_c00440{bottom:838.019951px;}
.yb_c00440{bottom:868.170562px;}
.ya_c00440{bottom:898.408952px;}
.y9_c00440{bottom:928.559563px;}
.y8_c00440{bottom:958.799451px;}
.y7_c00440{bottom:988.950063px;}
.y6_c00440{bottom:1019.189951px;}
.y5_c00440{bottom:1049.340563px;}
.y4_c00440{bottom:1079.580985px;}
.y3_c00440{bottom:1109.731597px;}
.h2_c00440{height:62.600889px;}
.h1_c00440{height:62.771836px;}
.h4_c00440{height:63.216299px;}
.h5_c00440{height:73.674780px;}
.h3_c00440{height:73.780322px;}
.h0_c00440{height:1263.000000px;}
.w0_c00440{width:892.500000px;}
.x0_c00440{left:0.000000px;}
.x2_c00440{left:82.710059px;}
.x3_c00440{left:136.530932px;}
.x5_c00440{left:162.810000px;}
.x4_c00440{left:338.850000px;}
.x7_c00440{left:342.270000px;}
.x1_c00440{left:431.730000px;}
.x6_c00440{left:707.760000px;}
@media print{
.v0_c00440{vertical-align:0.000000pt;}
.v1_c00440{vertical-align:28.478096pt;}
.lsd_c00440{letter-spacing:-0.099584pt;}
.ls6_c00440{letter-spacing:-0.056016pt;}
.lsa_c00440{letter-spacing:-0.049792pt;}
.ls10_c00440{letter-spacing:-0.043568pt;}
.ls8_c00440{letter-spacing:-0.037344pt;}
.lsb_c00440{letter-spacing:-0.031120pt;}
.ls9_c00440{letter-spacing:-0.024896pt;}
.lse_c00440{letter-spacing:-0.018672pt;}
.lsf_c00440{letter-spacing:-0.012448pt;}
.lsc_c00440{letter-spacing:-0.006224pt;}
.ls7_c00440{letter-spacing:0.000000pt;}
.ls5_c00440{letter-spacing:0.006224pt;}
.ls4_c00440{letter-spacing:0.012448pt;}
.ls0_c00440{letter-spacing:0.020694pt;}
.ls2_c00440{letter-spacing:0.049792pt;}
.ls1_c00440{letter-spacing:0.056016pt;}
.ls3_c00440{letter-spacing:0.112032pt;}
.ws1_c00440{word-spacing:-17.203136pt;}
.ws0_c00440{word-spacing:-11.526781pt;}
.ws18_c00440{word-spacing:-0.012448pt;}
.ws2_c00440{word-spacing:0.000000pt;}
.wsc_c00440{word-spacing:0.006224pt;}
.wsd_c00440{word-spacing:0.012448pt;}
.ws19_c00440{word-spacing:0.031120pt;}
.wse_c00440{word-spacing:0.255184pt;}
.ws4_c00440{word-spacing:0.342320pt;}
.ws13_c00440{word-spacing:0.641072pt;}
.wsb_c00440{word-spacing:0.653520pt;}
.ws15_c00440{word-spacing:1.275920pt;}
.ws14_c00440{word-spacing:1.599568pt;}
.ws16_c00440{word-spacing:3.174240pt;}
.ws3_c00440{word-spacing:6.746816pt;}
.ws7_c00440{word-spacing:8.894096pt;}
.ws6_c00440{word-spacing:9.317328pt;}
.wsf_c00440{word-spacing:9.927280pt;}
.ws5_c00440{word-spacing:9.933504pt;}
.ws9_c00440{word-spacing:10.873328pt;}
.ws8_c00440{word-spacing:10.898224pt;}
.ws17_c00440{word-spacing:11.178304pt;}
.ws10_c00440{word-spacing:11.526848pt;}
.ws11_c00440{word-spacing:18.248768pt;}
.ws12_c00440{word-spacing:18.597312pt;}
.wsa_c00440{word-spacing:19.194816pt;}
._1_c00440{margin-left:-1.089200pt;}
._0_c00440{width:0.902480pt;}
._2_c00440{width:7.045568pt;}
._3_c00440{width:9.292432pt;}
.fs1_c00440{font-size:41.388800pt;}
.fs0_c00440{font-size:62.240000pt;}
.y0_c00440{bottom:0.000000pt;}
.y2_c00440{bottom:97.547527pt;}
.y1_c00440{bottom:115.387067pt;}
.y1a_c00440{bottom:151.067200pt;}
.y19_c00440{bottom:178.587067pt;}
.y18_c00440{bottom:205.387067pt;}
.y17_c00440{bottom:232.267067pt;}
.y16_c00440{bottom:259.067067pt;}
.y15_c00440{bottom:285.947067pt;}
.y14_c00440{bottom:312.747067pt;}
.y13_c00440{bottom:339.627200pt;}
.y12_c00440{bottom:366.427067pt;}
.y11_c00440{bottom:393.227067pt;}
.y10_c00440{bottom:416.747200pt;}
.yf_c00440{bottom:663.707067pt;}
.ye_c00440{bottom:690.587067pt;}
.yd_c00440{bottom:718.026723pt;}
.yc_c00440{bottom:744.906623pt;}
.yb_c00440{bottom:771.707167pt;}
.ya_c00440{bottom:798.585735pt;}
.y9_c00440{bottom:825.386279pt;}
.y8_c00440{bottom:852.266179pt;}
.y7_c00440{bottom:879.066723pt;}
.y6_c00440{bottom:905.946623pt;}
.y5_c00440{bottom:932.747167pt;}
.y4_c00440{bottom:959.627543pt;}
.y3_c00440{bottom:986.428087pt;}
.h2_c00440{height:55.645234pt;}
.h1_c00440{height:55.797187pt;}
.h4_c00440{height:56.192266pt;}
.h5_c00440{height:65.488694pt;}
.h3_c00440{height:65.582508pt;}
.h0_c00440{height:1122.666667pt;}
.w0_c00440{width:793.333333pt;}
.x0_c00440{left:0.000000pt;}
.x2_c00440{left:73.520052pt;}
.x3_c00440{left:121.360828pt;}
.x5_c00440{left:144.720000pt;}
.x4_c00440{left:301.200000pt;}
.x7_c00440{left:304.240000pt;}
.x1_c00440{left:383.760000pt;}
.x6_c00440{left:629.120000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1fb555af2473e44f6307967b.woff2')format("woff");}.ff1_c00441{font-family:ff1_c00441;line-height:1.106934;font-style:normal;font-weight:normal;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_bbbd0680fa037ca313e68fac.woff2')format("woff");}.ff2_c00441{font-family:ff2_c00441;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00441;src:url('chunks/assets/font_cd6d469e6aab8a2f14549526.woff2')format("woff");}.ff3_c00441{font-family:ff3_c00441;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00441{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00441{vertical-align:0.000000px;}
.ls12_c00441{letter-spacing:-0.091026px;}
.lsa_c00441{letter-spacing:-0.070020px;}
.ls7_c00441{letter-spacing:-0.063018px;}
.lsb_c00441{letter-spacing:-0.056016px;}
.lse_c00441{letter-spacing:-0.049014px;}
.ls11_c00441{letter-spacing:-0.042012px;}
.lsd_c00441{letter-spacing:-0.035010px;}
.ls9_c00441{letter-spacing:-0.028008px;}
.lsc_c00441{letter-spacing:-0.021006px;}
.lsf_c00441{letter-spacing:-0.014004px;}
.ls10_c00441{letter-spacing:-0.007002px;}
.ls8_c00441{letter-spacing:0.000000px;}
.ls5_c00441{letter-spacing:0.007002px;}
.ls2_c00441{letter-spacing:0.021006px;}
.ls6_c00441{letter-spacing:0.028008px;}
.ls4_c00441{letter-spacing:0.049014px;}
.ls3_c00441{letter-spacing:0.056016px;}
.ls0_c00441{letter-spacing:0.063018px;}
.ls13_c00441{letter-spacing:0.070020px;}
.ls1_c00441{letter-spacing:0.336096px;}
.sc__c00441{text-shadow:none;}
.sc0_c00441{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00441{-webkit-text-stroke:0px transparent;}
.sc0_c00441{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00441{word-spacing:-19.402542px;}
.ws1_c00441{word-spacing:0.000000px;}
.ws9_c00441{word-spacing:0.007002px;}
.ws26_c00441{word-spacing:0.014004px;}
.wsa_c00441{word-spacing:0.021006px;}
.ws27_c00441{word-spacing:0.028008px;}
.ws34_c00441{word-spacing:0.035010px;}
.ws33_c00441{word-spacing:0.315090px;}
.ws35_c00441{word-spacing:2.898828px;}
.wsc_c00441{word-spacing:3.276936px;}
.ws2b_c00441{word-spacing:3.998142px;}
.ws36_c00441{word-spacing:6.392826px;}
.wsf_c00441{word-spacing:6.861960px;}
.ws2e_c00441{word-spacing:10.103886px;}
.ws32_c00441{word-spacing:11.868390px;}
.ws28_c00441{word-spacing:12.974706px;}
.ws2a_c00441{word-spacing:14.739210px;}
.ws4_c00441{word-spacing:14.746212px;}
.ws17_c00441{word-spacing:14.774220px;}
.ws5_c00441{word-spacing:15.173334px;}
.ws31_c00441{word-spacing:15.488424px;}
.ws38_c00441{word-spacing:15.495426px;}
.ws30_c00441{word-spacing:16.909830px;}
.ws8_c00441{word-spacing:18.765360px;}
.ws37_c00441{word-spacing:20.193768px;}
.ws2f_c00441{word-spacing:20.522862px;}
.wsb_c00441{word-spacing:21.608172px;}
.ws2c_c00441{word-spacing:21.643182px;}
.ws29_c00441{word-spacing:22.700484px;}
.ws39_c00441{word-spacing:25.221204px;}
.ws11_c00441{word-spacing:27.349812px;}
.ws13_c00441{word-spacing:29.520432px;}
.ws2d_c00441{word-spacing:30.948840px;}
.ws3a_c00441{word-spacing:32.069160px;}
.ws23_c00441{word-spacing:35.619174px;}
.ws22_c00441{word-spacing:35.717202px;}
.ws15_c00441{word-spacing:36.718488px;}
.ws12_c00441{word-spacing:39.638322px;}
.ws19_c00441{word-spacing:41.038722px;}
.wse_c00441{word-spacing:43.573446px;}
.ws7_c00441{word-spacing:43.930548px;}
.wsd_c00441{word-spacing:44.245638px;}
.ws18_c00441{word-spacing:45.653040px;}
.ws14_c00441{word-spacing:46.815372px;}
.ws1f_c00441{word-spacing:47.879676px;}
.ws1b_c00441{word-spacing:51.877818px;}
.ws1a_c00441{word-spacing:52.220916px;}
.ws24_c00441{word-spacing:52.557012px;}
.ws1c_c00441{word-spacing:54.734634px;}
.ws20_c00441{word-spacing:58.312656px;}
.ws10_c00441{word-spacing:58.319658px;}
.ws21_c00441{word-spacing:61.554582px;}
.ws6_c00441{word-spacing:66.280932px;}
.ws1e_c00441{word-spacing:67.975416px;}
.ws25_c00441{word-spacing:69.046722px;}
.ws16_c00441{word-spacing:89.667612px;}
.ws1d_c00441{word-spacing:102.607308px;}
.ws2_c00441{word-spacing:125.923968px;}
.ws3_c00441{word-spacing:126.014994px;}
._3_c00441{margin-left:-67.765356px;}
._2_c00441{margin-left:-51.576732px;}
._0_c00441{margin-left:-1.043298px;}
._1_c00441{width:1.057302px;}
.fc0_c00441{color:rgb(0,0,0);}
.fs0_c00441{font-size:70.020000px;}
.y0_c00441{bottom:0.000000px;}
.y2_c00441{bottom:109.740968px;}
.y1_c00441{bottom:129.810450px;}
.y3a_c00441{bottom:162.210600px;}
.y21_c00441{bottom:183.536423px;}
.y39_c00441{bottom:192.450600px;}
.y20_c00441{bottom:213.776310px;}
.y38_c00441{bottom:222.600450px;}
.y1f_c00441{bottom:243.835896px;}
.y37_c00441{bottom:273.090450px;}
.y1e_c00441{bottom:274.075784px;}
.y36_c00441{bottom:303.420450px;}
.y1d_c00441{bottom:304.226396px;}
.y35_c00441{bottom:333.570450px;}
.y1c_c00441{bottom:334.466283px;}
.y34_c00441{bottom:363.810450px;}
.y1b_c00441{bottom:364.616895px;}
.y33_c00441{bottom:393.960600px;}
.y1a_c00441{bottom:394.856783px;}
.y19_c00441{bottom:425.007395px;}
.y32_c00441{bottom:444.540600px;}
.y18_c00441{bottom:455.247282px;}
.y31_c00441{bottom:474.870600px;}
.y17_c00441{bottom:485.397894px;}
.y30_c00441{bottom:505.020600px;}
.y16_c00441{bottom:515.637782px;}
.y15_c00441{bottom:545.788394px;}
.y2f_c00441{bottom:555.510450px;}
.y14_c00441{bottom:576.028281px;}
.y2e_c00441{bottom:585.840450px;}
.y13_c00441{bottom:606.178893px;}
.y2d_c00441{bottom:615.990450px;}
.y12_c00441{bottom:636.418781px;}
.y2c_c00441{bottom:646.230450px;}
.y11_c00441{bottom:666.658668px;}
.y2b_c00441{bottom:676.380450px;}
.y10_c00441{bottom:696.809280px;}
.y2a_c00441{bottom:706.620450px;}
.yf_c00441{bottom:727.049168px;}
.y29_c00441{bottom:736.770450px;}
.ye_c00441{bottom:757.199780px;}
.y28_c00441{bottom:767.010450px;}
.yd_c00441{bottom:787.439667px;}
.y27_c00441{bottom:797.160450px;}
.yc_c00441{bottom:817.590279px;}
.y26_c00441{bottom:827.400450px;}
.yb_c00441{bottom:847.830167px;}
.y25_c00441{bottom:857.640450px;}
.ya_c00441{bottom:877.980779px;}
.y24_c00441{bottom:887.790600px;}
.y9_c00441{bottom:928.470450px;}
.y23_c00441{bottom:938.280450px;}
.y8_c00441{bottom:958.800450px;}
.y22_c00441{bottom:988.860450px;}
.y7_c00441{bottom:988.950450px;}
.y6_c00441{bottom:1019.190450px;}
.y5_c00441{bottom:1049.340450px;}
.y4_c00441{bottom:1079.580450px;}
.y3_c00441{bottom:1110.451053px;}
.h3_c00441{height:62.600889px;}
.h1_c00441{height:62.771836px;}
.h2_c00441{height:63.216299px;}
.h0_c00441{height:1263.000000px;}
.w0_c00441{width:892.500000px;}
.x0_c00441{left:0.000000px;}
.x2_c00441{left:82.710059px;}
.x3_c00441{left:137.880000px;}
.x1_c00441{left:431.730000px;}
.x4_c00441{left:454.230000px;}
@media print{
.v0_c00441{vertical-align:0.000000pt;}
.ls12_c00441{letter-spacing:-0.080912pt;}
.lsa_c00441{letter-spacing:-0.062240pt;}
.ls7_c00441{letter-spacing:-0.056016pt;}
.lsb_c00441{letter-spacing:-0.049792pt;}
.lse_c00441{letter-spacing:-0.043568pt;}
.ls11_c00441{letter-spacing:-0.037344pt;}
.lsd_c00441{letter-spacing:-0.031120pt;}
.ls9_c00441{letter-spacing:-0.024896pt;}
.lsc_c00441{letter-spacing:-0.018672pt;}
.lsf_c00441{letter-spacing:-0.012448pt;}
.ls10_c00441{letter-spacing:-0.006224pt;}
.ls8_c00441{letter-spacing:0.000000pt;}
.ls5_c00441{letter-spacing:0.006224pt;}
.ls2_c00441{letter-spacing:0.018672pt;}
.ls6_c00441{letter-spacing:0.024896pt;}
.ls4_c00441{letter-spacing:0.043568pt;}
.ls3_c00441{letter-spacing:0.049792pt;}
.ls0_c00441{letter-spacing:0.056016pt;}
.ls13_c00441{letter-spacing:0.062240pt;}
.ls1_c00441{letter-spacing:0.298752pt;}
.ws0_c00441{word-spacing:-17.246704pt;}
.ws1_c00441{word-spacing:0.000000pt;}
.ws9_c00441{word-spacing:0.006224pt;}
.ws26_c00441{word-spacing:0.012448pt;}
.wsa_c00441{word-spacing:0.018672pt;}
.ws27_c00441{word-spacing:0.024896pt;}
.ws34_c00441{word-spacing:0.031120pt;}
.ws33_c00441{word-spacing:0.280080pt;}
.ws35_c00441{word-spacing:2.576736pt;}
.wsc_c00441{word-spacing:2.912832pt;}
.ws2b_c00441{word-spacing:3.553904pt;}
.ws36_c00441{word-spacing:5.682512pt;}
.wsf_c00441{word-spacing:6.099520pt;}
.ws2e_c00441{word-spacing:8.981232pt;}
.ws32_c00441{word-spacing:10.549680pt;}
.ws28_c00441{word-spacing:11.533072pt;}
.ws2a_c00441{word-spacing:13.101520pt;}
.ws4_c00441{word-spacing:13.107744pt;}
.ws17_c00441{word-spacing:13.132640pt;}
.ws5_c00441{word-spacing:13.487408pt;}
.ws31_c00441{word-spacing:13.767488pt;}
.ws38_c00441{word-spacing:13.773712pt;}
.ws30_c00441{word-spacing:15.030960pt;}
.ws8_c00441{word-spacing:16.680320pt;}
.ws37_c00441{word-spacing:17.950016pt;}
.ws2f_c00441{word-spacing:18.242544pt;}
.wsb_c00441{word-spacing:19.207264pt;}
.ws2c_c00441{word-spacing:19.238384pt;}
.ws29_c00441{word-spacing:20.178208pt;}
.ws39_c00441{word-spacing:22.418848pt;}
.ws11_c00441{word-spacing:24.310944pt;}
.ws13_c00441{word-spacing:26.240384pt;}
.ws2d_c00441{word-spacing:27.510080pt;}
.ws3a_c00441{word-spacing:28.505920pt;}
.ws23_c00441{word-spacing:31.661488pt;}
.ws22_c00441{word-spacing:31.748624pt;}
.ws15_c00441{word-spacing:32.638656pt;}
.ws12_c00441{word-spacing:35.234064pt;}
.ws19_c00441{word-spacing:36.478864pt;}
.wse_c00441{word-spacing:38.731952pt;}
.ws7_c00441{word-spacing:39.049376pt;}
.wsd_c00441{word-spacing:39.329456pt;}
.ws18_c00441{word-spacing:40.580480pt;}
.ws14_c00441{word-spacing:41.613664pt;}
.ws1f_c00441{word-spacing:42.559712pt;}
.ws1b_c00441{word-spacing:46.113616pt;}
.ws1a_c00441{word-spacing:46.418592pt;}
.ws24_c00441{word-spacing:46.717344pt;}
.ws1c_c00441{word-spacing:48.653008pt;}
.ws20_c00441{word-spacing:51.833472pt;}
.ws10_c00441{word-spacing:51.839696pt;}
.ws21_c00441{word-spacing:54.715184pt;}
.ws6_c00441{word-spacing:58.916384pt;}
.ws1e_c00441{word-spacing:60.422592pt;}
.ws25_c00441{word-spacing:61.374864pt;}
.ws16_c00441{word-spacing:79.704544pt;}
.ws1d_c00441{word-spacing:91.206496pt;}
.ws2_c00441{word-spacing:111.932416pt;}
.ws3_c00441{word-spacing:112.013328pt;}
._3_c00441{margin-left:-60.235872pt;}
._2_c00441{margin-left:-45.845984pt;}
._0_c00441{margin-left:-0.927376pt;}
._1_c00441{width:0.939824pt;}
.fs0_c00441{font-size:62.240000pt;}
.y0_c00441{bottom:0.000000pt;}
.y2_c00441{bottom:97.547527pt;}
.y1_c00441{bottom:115.387067pt;}
.y3a_c00441{bottom:144.187200pt;}
.y21_c00441{bottom:163.143487pt;}
.y39_c00441{bottom:171.067200pt;}
.y20_c00441{bottom:190.023387pt;}
.y38_c00441{bottom:197.867067pt;}
.y1f_c00441{bottom:216.743019pt;}
.y37_c00441{bottom:242.747067pt;}
.y1e_c00441{bottom:243.622919pt;}
.y36_c00441{bottom:269.707067pt;}
.y1d_c00441{bottom:270.423463pt;}
.y35_c00441{bottom:296.507067pt;}
.y1c_c00441{bottom:297.303363pt;}
.y34_c00441{bottom:323.387067pt;}
.y1b_c00441{bottom:324.103907pt;}
.y33_c00441{bottom:350.187200pt;}
.y1a_c00441{bottom:350.983807pt;}
.y19_c00441{bottom:377.784351pt;}
.y32_c00441{bottom:395.147200pt;}
.y18_c00441{bottom:404.664251pt;}
.y31_c00441{bottom:422.107200pt;}
.y17_c00441{bottom:431.464795pt;}
.y30_c00441{bottom:448.907200pt;}
.y16_c00441{bottom:458.344695pt;}
.y15_c00441{bottom:485.145239pt;}
.y2f_c00441{bottom:493.787067pt;}
.y14_c00441{bottom:512.025139pt;}
.y2e_c00441{bottom:520.747067pt;}
.y13_c00441{bottom:538.825683pt;}
.y2d_c00441{bottom:547.547067pt;}
.y12_c00441{bottom:565.705583pt;}
.y2c_c00441{bottom:574.427067pt;}
.y11_c00441{bottom:592.585483pt;}
.y2b_c00441{bottom:601.227067pt;}
.y10_c00441{bottom:619.386027pt;}
.y2a_c00441{bottom:628.107067pt;}
.yf_c00441{bottom:646.265927pt;}
.y29_c00441{bottom:654.907067pt;}
.ye_c00441{bottom:673.066471pt;}
.y28_c00441{bottom:681.787067pt;}
.yd_c00441{bottom:699.946371pt;}
.y27_c00441{bottom:708.587067pt;}
.yc_c00441{bottom:726.746915pt;}
.y26_c00441{bottom:735.467067pt;}
.yb_c00441{bottom:753.626815pt;}
.y25_c00441{bottom:762.347067pt;}
.ya_c00441{bottom:780.427359pt;}
.y24_c00441{bottom:789.147200pt;}
.y9_c00441{bottom:825.307067pt;}
.y23_c00441{bottom:834.027067pt;}
.y8_c00441{bottom:852.267067pt;}
.y22_c00441{bottom:878.987067pt;}
.y7_c00441{bottom:879.067067pt;}
.y6_c00441{bottom:905.947067pt;}
.y5_c00441{bottom:932.747067pt;}
.y4_c00441{bottom:959.627067pt;}
.y3_c00441{bottom:987.067603pt;}
.h3_c00441{height:55.645234pt;}
.h1_c00441{height:55.797187pt;}
.h2_c00441{height:56.192266pt;}
.h0_c00441{height:1122.666667pt;}
.w0_c00441{width:793.333333pt;}
.x0_c00441{left:0.000000pt;}
.x2_c00441{left:73.520052pt;}
.x3_c00441{left:122.560000pt;}
.x1_c00441{left:383.760000pt;}
.x4_c00441{left:403.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3c1eea2e8602f6c8f5fa47af.woff2')format("woff");}.ff1_c00442{font-family:ff1_c00442;line-height:1.106934;font-style:normal;font-weight:normal;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_1f6a74b5674a13adb59eab11.woff2')format("woff");}.ff2_c00442{font-family:ff2_c00442;line-height:1.104492;font-style:normal;font-weight:normal;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_71f4419739fd18aeb8508b0e.woff2')format("woff");}.ff3_c00442{font-family:ff3_c00442;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00442{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00442{vertical-align:0.000000px;}
.v1_c00442{vertical-align:32.395410px;}
.lsf_c00442{letter-spacing:-0.070020px;}
.ls7_c00442{letter-spacing:-0.063018px;}
.lsd_c00442{letter-spacing:-0.049014px;}
.lse_c00442{letter-spacing:-0.042012px;}
.lsb_c00442{letter-spacing:-0.035010px;}
.lsc_c00442{letter-spacing:-0.028008px;}
.ls9_c00442{letter-spacing:-0.021006px;}
.ls10_c00442{letter-spacing:-0.014004px;}
.lsa_c00442{letter-spacing:-0.007002px;}
.ls8_c00442{letter-spacing:0.000000px;}
.ls5_c00442{letter-spacing:0.007002px;}
.ls3_c00442{letter-spacing:0.014004px;}
.ls2_c00442{letter-spacing:0.021006px;}
.ls1_c00442{letter-spacing:0.023281px;}
.ls4_c00442{letter-spacing:0.028008px;}
.ls0_c00442{letter-spacing:0.056016px;}
.ls6_c00442{letter-spacing:0.154044px;}
.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:-19.521576px;}
.ws2_c00442{word-spacing:-19.395540px;}
.ws1_c00442{word-spacing:-12.967628px;}
.ws3_c00442{word-spacing:0.000000px;}
.ws22_c00442{word-spacing:0.021006px;}
.ws1e_c00442{word-spacing:0.364104px;}
.ws1a_c00442{word-spacing:0.371106px;}
.ws15_c00442{word-spacing:0.378108px;}
.ws8_c00442{word-spacing:1.820520px;}
.ws13_c00442{word-spacing:3.297942px;}
.ws16_c00442{word-spacing:3.963132px;}
.ws7_c00442{word-spacing:4.313232px;}
.ws6_c00442{word-spacing:6.826950px;}
.wsc_c00442{word-spacing:9.375678px;}
.ws20_c00442{word-spacing:10.271934px;}
.wsb_c00442{word-spacing:10.818090px;}
.wsa_c00442{word-spacing:10.832094px;}
.ws14_c00442{word-spacing:11.161188px;}
.ws4_c00442{word-spacing:11.168190px;}
.ws17_c00442{word-spacing:11.546298px;}
.ws19_c00442{word-spacing:14.410116px;}
.ws10_c00442{word-spacing:19.465560px;}
.wsd_c00442{word-spacing:21.202056px;}
.ws21_c00442{word-spacing:21.251070px;}
.ws1d_c00442{word-spacing:24.457986px;}
.ws11_c00442{word-spacing:24.485994px;}
.wsf_c00442{word-spacing:29.492424px;}
.ws5_c00442{word-spacing:34.568874px;}
.ws1b_c00442{word-spacing:34.939980px;}
.ws18_c00442{word-spacing:42.089022px;}
.ws1f_c00442{word-spacing:45.730062px;}
.ws9_c00442{word-spacing:52.907112px;}
.ws12_c00442{word-spacing:74.116170px;}
.wse_c00442{word-spacing:79.192620px;}
.ws1c_c00442{word-spacing:113.054292px;}
._0_c00442{margin-left:-1.155330px;}
._1_c00442{width:1.218348px;}
.fc0_c00442{color:rgb(0,0,0);}
.fs1_c00442{font-size:46.562400px;}
.fs0_c00442{font-size:70.020000px;}
.y0_c00442{bottom:0.000000px;}
.y2_c00442{bottom:109.740968px;}
.y1_c00442{bottom:129.810450px;}
.y33_c00442{bottom:173.098517px;}
.y32_c00442{bottom:203.249128px;}
.y31_c00442{bottom:233.489016px;}
.y30_c00442{bottom:263.548602px;}
.y2f_c00442{bottom:293.788489px;}
.y2e_c00442{bottom:323.939101px;}
.y2d_c00442{bottom:354.178989px;}
.y2c_c00442{bottom:384.329601px;}
.y2b_c00442{bottom:414.569489px;}
.y2a_c00442{bottom:444.720101px;}
.y29_c00442{bottom:474.959988px;}
.y28_c00442{bottom:505.110600px;}
.y16_c00442{bottom:536.159226px;}
.y27_c00442{bottom:544.980450px;}
.y15_c00442{bottom:566.309838px;}
.y26_c00442{bottom:595.470450px;}
.y14_c00442{bottom:596.455842px;}
.y25_c00442{bottom:625.710450px;}
.y13_c00442{bottom:626.606454px;}
.y24_c00442{bottom:655.950450px;}
.y12_c00442{bottom:656.846341px;}
.y23_c00442{bottom:686.100450px;}
.y11_c00442{bottom:686.996953px;}
.y10_c00442{bottom:717.236841px;}
.y22_c00442{bottom:736.680450px;}
.yf_c00442{bottom:747.387453px;}
.y21_c00442{bottom:767.010450px;}
.ye_c00442{bottom:777.627340px;}
.y20_c00442{bottom:797.160450px;}
.yd_c00442{bottom:807.777952px;}
.y1f_c00442{bottom:827.400450px;}
.yc_c00442{bottom:838.017840px;}
.yb_c00442{bottom:868.168452px;}
.y1e_c00442{bottom:877.890450px;}
.ya_c00442{bottom:898.408340px;}
.y1d_c00442{bottom:908.220450px;}
.y9_c00442{bottom:928.558951px;}
.y1c_c00442{bottom:938.370450px;}
.y8_c00442{bottom:958.798839px;}
.y1b_c00442{bottom:968.610450px;}
.y7_c00442{bottom:988.949451px;}
.y1a_c00442{bottom:998.760450px;}
.y6_c00442{bottom:1019.189339px;}
.y19_c00442{bottom:1049.250450px;}
.y5_c00442{bottom:1049.339950px;}
.y4_c00442{bottom:1079.579838px;}
.y18_c00442{bottom:1079.580450px;}
.y17_c00442{bottom:1109.730450px;}
.y3_c00442{bottom:1109.731597px;}
.h3_c00442{height:62.600889px;}
.h1_c00442{height:62.771836px;}
.h5_c00442{height:63.216299px;}
.h4_c00442{height:73.687218px;}
.h2_c00442{height:74.024196px;}
.h0_c00442{height:1263.000000px;}
.w0_c00442{width:892.500000px;}
.x0_c00442{left:0.000000px;}
.x2_c00442{left:82.710059px;}
.x3_c00442{left:137.880567px;}
.x1_c00442{left:431.730000px;}
.x5_c00442{left:446.400000px;}
.x4_c00442{left:454.230000px;}
@media print{
.v0_c00442{vertical-align:0.000000pt;}
.v1_c00442{vertical-align:28.795920pt;}
.lsf_c00442{letter-spacing:-0.062240pt;}
.ls7_c00442{letter-spacing:-0.056016pt;}
.lsd_c00442{letter-spacing:-0.043568pt;}
.lse_c00442{letter-spacing:-0.037344pt;}
.lsb_c00442{letter-spacing:-0.031120pt;}
.lsc_c00442{letter-spacing:-0.024896pt;}
.ls9_c00442{letter-spacing:-0.018672pt;}
.ls10_c00442{letter-spacing:-0.012448pt;}
.lsa_c00442{letter-spacing:-0.006224pt;}
.ls8_c00442{letter-spacing:0.000000pt;}
.ls5_c00442{letter-spacing:0.006224pt;}
.ls3_c00442{letter-spacing:0.012448pt;}
.ls2_c00442{letter-spacing:0.018672pt;}
.ls1_c00442{letter-spacing:0.020694pt;}
.ls4_c00442{letter-spacing:0.024896pt;}
.ls0_c00442{letter-spacing:0.049792pt;}
.ls6_c00442{letter-spacing:0.136928pt;}
.ws0_c00442{word-spacing:-17.352512pt;}
.ws2_c00442{word-spacing:-17.240480pt;}
.ws1_c00442{word-spacing:-11.526781pt;}
.ws3_c00442{word-spacing:0.000000pt;}
.ws22_c00442{word-spacing:0.018672pt;}
.ws1e_c00442{word-spacing:0.323648pt;}
.ws1a_c00442{word-spacing:0.329872pt;}
.ws15_c00442{word-spacing:0.336096pt;}
.ws8_c00442{word-spacing:1.618240pt;}
.ws13_c00442{word-spacing:2.931504pt;}
.ws16_c00442{word-spacing:3.522784pt;}
.ws7_c00442{word-spacing:3.833984pt;}
.ws6_c00442{word-spacing:6.068400pt;}
.wsc_c00442{word-spacing:8.333936pt;}
.ws20_c00442{word-spacing:9.130608pt;}
.wsb_c00442{word-spacing:9.616080pt;}
.wsa_c00442{word-spacing:9.628528pt;}
.ws14_c00442{word-spacing:9.921056pt;}
.ws4_c00442{word-spacing:9.927280pt;}
.ws17_c00442{word-spacing:10.263376pt;}
.ws19_c00442{word-spacing:12.808992pt;}
.ws10_c00442{word-spacing:17.302720pt;}
.wsd_c00442{word-spacing:18.846272pt;}
.ws21_c00442{word-spacing:18.889840pt;}
.ws1d_c00442{word-spacing:21.740432pt;}
.ws11_c00442{word-spacing:21.765328pt;}
.wsf_c00442{word-spacing:26.215488pt;}
.ws5_c00442{word-spacing:30.727888pt;}
.ws1b_c00442{word-spacing:31.057760pt;}
.ws18_c00442{word-spacing:37.412464pt;}
.ws1f_c00442{word-spacing:40.648944pt;}
.ws9_c00442{word-spacing:47.028544pt;}
.ws12_c00442{word-spacing:65.881040pt;}
.wse_c00442{word-spacing:70.393440pt;}
.ws1c_c00442{word-spacing:100.492704pt;}
._0_c00442{margin-left:-1.026960pt;}
._1_c00442{width:1.082976pt;}
.fs1_c00442{font-size:41.388800pt;}
.fs0_c00442{font-size:62.240000pt;}
.y0_c00442{bottom:0.000000pt;}
.y2_c00442{bottom:97.547527pt;}
.y1_c00442{bottom:115.387067pt;}
.y33_c00442{bottom:153.865348pt;}
.y32_c00442{bottom:180.665892pt;}
.y31_c00442{bottom:207.545792pt;}
.y30_c00442{bottom:234.265424pt;}
.y2f_c00442{bottom:261.145324pt;}
.y2e_c00442{bottom:287.945868pt;}
.y2d_c00442{bottom:314.825768pt;}
.y2c_c00442{bottom:341.626312pt;}
.y2b_c00442{bottom:368.506212pt;}
.y2a_c00442{bottom:395.306756pt;}
.y29_c00442{bottom:422.186656pt;}
.y28_c00442{bottom:448.987200pt;}
.y16_c00442{bottom:476.585979pt;}
.y27_c00442{bottom:484.427067pt;}
.y15_c00442{bottom:503.386523pt;}
.y26_c00442{bottom:529.307067pt;}
.y14_c00442{bottom:530.182971pt;}
.y25_c00442{bottom:556.187067pt;}
.y13_c00442{bottom:556.983515pt;}
.y24_c00442{bottom:583.067067pt;}
.y12_c00442{bottom:583.863415pt;}
.y23_c00442{bottom:609.867067pt;}
.y11_c00442{bottom:610.663959pt;}
.y10_c00442{bottom:637.543859pt;}
.y22_c00442{bottom:654.827067pt;}
.yf_c00442{bottom:664.344403pt;}
.y21_c00442{bottom:681.787067pt;}
.ye_c00442{bottom:691.224303pt;}
.y20_c00442{bottom:708.587067pt;}
.yd_c00442{bottom:718.024847pt;}
.y1f_c00442{bottom:735.467067pt;}
.yc_c00442{bottom:744.904747pt;}
.yb_c00442{bottom:771.705291pt;}
.y1e_c00442{bottom:780.347067pt;}
.ya_c00442{bottom:798.585191pt;}
.y1d_c00442{bottom:807.307067pt;}
.y9_c00442{bottom:825.385735pt;}
.y1c_c00442{bottom:834.107067pt;}
.y8_c00442{bottom:852.265635pt;}
.y1b_c00442{bottom:860.987067pt;}
.y7_c00442{bottom:879.066179pt;}
.y1a_c00442{bottom:887.787067pt;}
.y6_c00442{bottom:905.946079pt;}
.y19_c00442{bottom:932.667067pt;}
.y5_c00442{bottom:932.746623pt;}
.y4_c00442{bottom:959.626523pt;}
.y18_c00442{bottom:959.627067pt;}
.y17_c00442{bottom:986.427067pt;}
.y3_c00442{bottom:986.428087pt;}
.h3_c00442{height:55.645234pt;}
.h1_c00442{height:55.797187pt;}
.h5_c00442{height:56.192266pt;}
.h4_c00442{height:65.499750pt;}
.h2_c00442{height:65.799286pt;}
.h0_c00442{height:1122.666667pt;}
.w0_c00442{width:793.333333pt;}
.x0_c00442{left:0.000000pt;}
.x2_c00442{left:73.520052pt;}
.x3_c00442{left:122.560504pt;}
.x1_c00442{left:383.760000pt;}
.x5_c00442{left:396.800000pt;}
.x4_c00442{left:403.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2dd1a01e2c2191fffcbd541e.woff2')format("woff");}.ff1_c00443{font-family:ff1_c00443;line-height:1.106934;font-style:normal;font-weight:normal;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_de494c62847dc0f4bc387bfe.woff2')format("woff");}.ff2_c00443{font-family:ff2_c00443;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00443;src:url('chunks/assets/font_2b3291e142006843235249b3.woff2')format("woff");}.ff3_c00443{font-family:ff3_c00443;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00443{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00443{vertical-align:0.000000px;}
.ls2_c00443{letter-spacing:-0.063018px;}
.ls6_c00443{letter-spacing:-0.035010px;}
.ls4_c00443{letter-spacing:-0.028008px;}
.ls8_c00443{letter-spacing:-0.021006px;}
.ls7_c00443{letter-spacing:-0.014004px;}
.ls3_c00443{letter-spacing:0.000000px;}
.ls1_c00443{letter-spacing:0.014004px;}
.ls0_c00443{letter-spacing:0.070020px;}
.ls5_c00443{letter-spacing:0.168048px;}
.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;}
}
.ws2_c00443{word-spacing:-0.182052px;}
.wsf_c00443{word-spacing:-0.014004px;}
.ws0_c00443{word-spacing:0.000000px;}
.wsd_c00443{word-spacing:0.007002px;}
.ws1_c00443{word-spacing:0.014004px;}
.wsb_c00443{word-spacing:0.021006px;}
.wsa_c00443{word-spacing:0.378108px;}
.ws3_c00443{word-spacing:1.463418px;}
.ws4_c00443{word-spacing:2.891826px;}
.wse_c00443{word-spacing:3.241926px;}
.ws8_c00443{word-spacing:4.292226px;}
.ws6_c00443{word-spacing:5.062446px;}
.ws7_c00443{word-spacing:8.983566px;}
.wsc_c00443{word-spacing:9.718776px;}
.ws5_c00443{word-spacing:18.737352px;}
.ws9_c00443{word-spacing:23.414688px;}
._2_c00443{margin-left:-1.106316px;}
._0_c00443{width:1.043298px;}
._1_c00443{width:7.919262px;}
.fc0_c00443{color:rgb(0,0,0);}
.fs0_c00443{font-size:70.020000px;}
.y0_c00443{bottom:0.000000px;}
.y2_c00443{bottom:109.740968px;}
.y1_c00443{bottom:129.810450px;}
.y19_c00443{bottom:173.726922px;}
.y18_c00443{bottom:203.966809px;}
.y17_c00443{bottom:234.117422px;}
.y16_c00443{bottom:264.357309px;}
.y15_c00443{bottom:294.507921px;}
.y14_c00443{bottom:324.747808px;}
.y13_c00443{bottom:354.898420px;}
.y12_c00443{bottom:385.138308px;}
.y11_c00443{bottom:415.288920px;}
.y10_c00443{bottom:445.528807px;}
.yf_c00443{bottom:475.768695px;}
.ye_c00443{bottom:505.919307px;}
.yd_c00443{bottom:536.159194px;}
.yc_c00443{bottom:566.309806px;}
.yb_c00443{bottom:596.549694px;}
.ya_c00443{bottom:626.700306px;}
.y9_c00443{bottom:656.940193px;}
.y8_c00443{bottom:683.220450px;}
.y7_c00443{bottom:988.950599px;}
.y6_c00443{bottom:1019.190486px;}
.y5_c00443{bottom:1049.341098px;}
.y4_c00443{bottom:1079.580985px;}
.y3_c00443{bottom:1109.731597px;}
.h3_c00443{height:62.600889px;}
.h1_c00443{height:62.771836px;}
.h2_c00443{height:63.216299px;}
.h0_c00443{height:1263.000000px;}
.w0_c00443{width:892.500000px;}
.x0_c00443{left:0.000000px;}
.x2_c00443{left:82.710059px;}
.x8_c00443{left:137.879580px;}
.x5_c00443{left:164.071548px;}
.x6_c00443{left:190.351805px;}
.x4_c00443{left:283.410135px;}
.x1_c00443{left:431.730000px;}
.x3_c00443{left:446.400940px;}
.x7_c00443{left:751.499850px;}
@media print{
.v0_c00443{vertical-align:0.000000pt;}
.ls2_c00443{letter-spacing:-0.056016pt;}
.ls6_c00443{letter-spacing:-0.031120pt;}
.ls4_c00443{letter-spacing:-0.024896pt;}
.ls8_c00443{letter-spacing:-0.018672pt;}
.ls7_c00443{letter-spacing:-0.012448pt;}
.ls3_c00443{letter-spacing:0.000000pt;}
.ls1_c00443{letter-spacing:0.012448pt;}
.ls0_c00443{letter-spacing:0.062240pt;}
.ls5_c00443{letter-spacing:0.149376pt;}
.ws2_c00443{word-spacing:-0.161824pt;}
.wsf_c00443{word-spacing:-0.012448pt;}
.ws0_c00443{word-spacing:0.000000pt;}
.wsd_c00443{word-spacing:0.006224pt;}
.ws1_c00443{word-spacing:0.012448pt;}
.wsb_c00443{word-spacing:0.018672pt;}
.wsa_c00443{word-spacing:0.336096pt;}
.ws3_c00443{word-spacing:1.300816pt;}
.ws4_c00443{word-spacing:2.570512pt;}
.wse_c00443{word-spacing:2.881712pt;}
.ws8_c00443{word-spacing:3.815312pt;}
.ws6_c00443{word-spacing:4.499952pt;}
.ws7_c00443{word-spacing:7.985392pt;}
.wsc_c00443{word-spacing:8.638912pt;}
.ws5_c00443{word-spacing:16.655424pt;}
.ws9_c00443{word-spacing:20.813056pt;}
._2_c00443{margin-left:-0.983392pt;}
._0_c00443{width:0.927376pt;}
._1_c00443{width:7.039344pt;}
.fs0_c00443{font-size:62.240000pt;}
.y0_c00443{bottom:0.000000pt;}
.y2_c00443{bottom:97.547527pt;}
.y1_c00443{bottom:115.387067pt;}
.y19_c00443{bottom:154.423931pt;}
.y18_c00443{bottom:181.303831pt;}
.y17_c00443{bottom:208.104375pt;}
.y16_c00443{bottom:234.984275pt;}
.y15_c00443{bottom:261.784819pt;}
.y14_c00443{bottom:288.664719pt;}
.y13_c00443{bottom:315.465263pt;}
.y12_c00443{bottom:342.345163pt;}
.y11_c00443{bottom:369.145707pt;}
.y10_c00443{bottom:396.025607pt;}
.yf_c00443{bottom:422.905507pt;}
.ye_c00443{bottom:449.706051pt;}
.yd_c00443{bottom:476.585951pt;}
.yc_c00443{bottom:503.386495pt;}
.yb_c00443{bottom:530.266395pt;}
.ya_c00443{bottom:557.066939pt;}
.y9_c00443{bottom:583.946839pt;}
.y8_c00443{bottom:607.307067pt;}
.y7_c00443{bottom:879.067199pt;}
.y6_c00443{bottom:905.947099pt;}
.y5_c00443{bottom:932.747643pt;}
.y4_c00443{bottom:959.627543pt;}
.y3_c00443{bottom:986.428087pt;}
.h3_c00443{height:55.645234pt;}
.h1_c00443{height:55.797187pt;}
.h2_c00443{height:56.192266pt;}
.h0_c00443{height:1122.666667pt;}
.w0_c00443{width:793.333333pt;}
.x0_c00443{left:0.000000pt;}
.x2_c00443{left:73.520052pt;}
.x8_c00443{left:122.559627pt;}
.x5_c00443{left:145.841376pt;}
.x6_c00443{left:169.201604pt;}
.x4_c00443{left:251.920120pt;}
.x1_c00443{left:383.760000pt;}
.x3_c00443{left:396.800836pt;}
.x7_c00443{left:667.999867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a6b30f5bb0685e30693e8ffc.woff2')format("woff");}.ff1_c00444{font-family:ff1_c00444;line-height:1.106934;font-style:normal;font-weight:normal;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_00b036affbc216c9c22c5e84.woff2')format("woff");}.ff2_c00444{font-family:ff2_c00444;line-height:1.104492;font-style:normal;font-weight:normal;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_e7e91b12d101eb1e6cbca62b.woff2')format("woff");}.ff3_c00444{font-family:ff3_c00444;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00444{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00444{vertical-align:0.000000px;}
.v1_c00444{vertical-align:32.049846px;}
.ls5_c00444{letter-spacing:-0.063018px;}
.lsd_c00444{letter-spacing:-0.049014px;}
.lsb_c00444{letter-spacing:-0.035010px;}
.ls7_c00444{letter-spacing:-0.028008px;}
.lsa_c00444{letter-spacing:-0.021006px;}
.ls9_c00444{letter-spacing:-0.014004px;}
.ls8_c00444{letter-spacing:-0.007002px;}
.ls6_c00444{letter-spacing:0.000000px;}
.ls2_c00444{letter-spacing:0.007002px;}
.ls0_c00444{letter-spacing:0.014004px;}
.ls3_c00444{letter-spacing:0.023281px;}
.ls1_c00444{letter-spacing:0.028008px;}
.ls4_c00444{letter-spacing:0.070020px;}
.lsc_c00444{letter-spacing:0.175050px;}
.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:-12.967628px;}
.ws12_c00444{word-spacing:-0.189054px;}
.ws1_c00444{word-spacing:0.000000px;}
.wse_c00444{word-spacing:0.014004px;}
.ws11_c00444{word-spacing:0.021006px;}
.ws5_c00444{word-spacing:1.071306px;}
.ws13_c00444{word-spacing:2.912832px;}
.ws14_c00444{word-spacing:3.963132px;}
.ws4_c00444{word-spacing:5.384538px;}
.ws10_c00444{word-spacing:6.455844px;}
.wsf_c00444{word-spacing:6.469848px;}
.wsa_c00444{word-spacing:13.324806px;}
.ws2_c00444{word-spacing:13.695912px;}
.ws8_c00444{word-spacing:14.760216px;}
.wsd_c00444{word-spacing:17.238924px;}
.wsb_c00444{word-spacing:17.280936px;}
.wsc_c00444{word-spacing:18.023148px;}
.ws7_c00444{word-spacing:27.013716px;}
.ws6_c00444{word-spacing:27.349812px;}
.ws9_c00444{word-spacing:32.734350px;}
.ws3_c00444{word-spacing:35.626176px;}
._1_c00444{margin-left:-1.127322px;}
._0_c00444{width:1.365390px;}
._3_c00444{width:2.611746px;}
._2_c00444{width:7.919262px;}
.fc0_c00444{color:rgb(0,0,0);}
.fs1_c00444{font-size:46.562400px;}
.fs0_c00444{font-size:70.020000px;}
.y0_c00444{bottom:0.000000px;}
.y2_c00444{bottom:109.740968px;}
.y1_c00444{bottom:129.810450px;}
.y17_c00444{bottom:180.210600px;}
.y16_c00444{bottom:210.360450px;}
.y15_c00444{bottom:565.500450px;}
.y14_c00444{bottom:595.740450px;}
.y13_c00444{bottom:625.890450px;}
.y12_c00444{bottom:656.130450px;}
.y11_c00444{bottom:687.000563px;}
.y10_c00444{bottom:717.237989px;}
.yf_c00444{bottom:747.388601px;}
.ye_c00444{bottom:777.628488px;}
.yd_c00444{bottom:807.779100px;}
.yc_c00444{bottom:838.018988px;}
.yb_c00444{bottom:868.169600px;}
.ya_c00444{bottom:898.409487px;}
.y9_c00444{bottom:928.560099px;}
.y8_c00444{bottom:958.799987px;}
.y7_c00444{bottom:988.950599px;}
.y6_c00444{bottom:1019.190486px;}
.y5_c00444{bottom:1049.341098px;}
.y4_c00444{bottom:1079.580985px;}
.y3_c00444{bottom:1109.731597px;}
.h2_c00444{height:62.600889px;}
.h1_c00444{height:62.771836px;}
.h4_c00444{height:63.216299px;}
.h3_c00444{height:73.678632px;}
.h0_c00444{height:1263.000000px;}
.w0_c00444{width:892.500000px;}
.x0_c00444{left:0.000000px;}
.x2_c00444{left:82.710059px;}
.x3_c00444{left:137.880567px;}
.x6_c00444{left:164.070000px;}
.x5_c00444{left:338.850000px;}
.x1_c00444{left:431.730000px;}
.x4_c00444{left:446.400000px;}
@media print{
.v0_c00444{vertical-align:0.000000pt;}
.v1_c00444{vertical-align:28.488752pt;}
.ls5_c00444{letter-spacing:-0.056016pt;}
.lsd_c00444{letter-spacing:-0.043568pt;}
.lsb_c00444{letter-spacing:-0.031120pt;}
.ls7_c00444{letter-spacing:-0.024896pt;}
.lsa_c00444{letter-spacing:-0.018672pt;}
.ls9_c00444{letter-spacing:-0.012448pt;}
.ls8_c00444{letter-spacing:-0.006224pt;}
.ls6_c00444{letter-spacing:0.000000pt;}
.ls2_c00444{letter-spacing:0.006224pt;}
.ls0_c00444{letter-spacing:0.012448pt;}
.ls3_c00444{letter-spacing:0.020694pt;}
.ls1_c00444{letter-spacing:0.024896pt;}
.ls4_c00444{letter-spacing:0.062240pt;}
.lsc_c00444{letter-spacing:0.155600pt;}
.ws0_c00444{word-spacing:-11.526781pt;}
.ws12_c00444{word-spacing:-0.168048pt;}
.ws1_c00444{word-spacing:0.000000pt;}
.wse_c00444{word-spacing:0.012448pt;}
.ws11_c00444{word-spacing:0.018672pt;}
.ws5_c00444{word-spacing:0.952272pt;}
.ws13_c00444{word-spacing:2.589184pt;}
.ws14_c00444{word-spacing:3.522784pt;}
.ws4_c00444{word-spacing:4.786256pt;}
.ws10_c00444{word-spacing:5.738528pt;}
.wsf_c00444{word-spacing:5.750976pt;}
.wsa_c00444{word-spacing:11.844272pt;}
.ws2_c00444{word-spacing:12.174144pt;}
.ws8_c00444{word-spacing:13.120192pt;}
.wsd_c00444{word-spacing:15.323488pt;}
.wsb_c00444{word-spacing:15.360832pt;}
.wsc_c00444{word-spacing:16.020576pt;}
.ws7_c00444{word-spacing:24.012192pt;}
.ws6_c00444{word-spacing:24.310944pt;}
.ws9_c00444{word-spacing:29.097200pt;}
.ws3_c00444{word-spacing:31.667712pt;}
._1_c00444{margin-left:-1.002064pt;}
._0_c00444{width:1.213680pt;}
._3_c00444{width:2.321552pt;}
._2_c00444{width:7.039344pt;}
.fs1_c00444{font-size:41.388800pt;}
.fs0_c00444{font-size:62.240000pt;}
.y0_c00444{bottom:0.000000pt;}
.y2_c00444{bottom:97.547527pt;}
.y1_c00444{bottom:115.387067pt;}
.y17_c00444{bottom:160.187200pt;}
.y16_c00444{bottom:186.987067pt;}
.y15_c00444{bottom:502.667067pt;}
.y14_c00444{bottom:529.547067pt;}
.y13_c00444{bottom:556.347067pt;}
.y12_c00444{bottom:583.227067pt;}
.y11_c00444{bottom:610.667167pt;}
.y10_c00444{bottom:637.544879pt;}
.yf_c00444{bottom:664.345423pt;}
.ye_c00444{bottom:691.225323pt;}
.yd_c00444{bottom:718.025867pt;}
.yc_c00444{bottom:744.905767pt;}
.yb_c00444{bottom:771.706311pt;}
.ya_c00444{bottom:798.586211pt;}
.y9_c00444{bottom:825.386755pt;}
.y8_c00444{bottom:852.266655pt;}
.y7_c00444{bottom:879.067199pt;}
.y6_c00444{bottom:905.947099pt;}
.y5_c00444{bottom:932.747643pt;}
.y4_c00444{bottom:959.627543pt;}
.y3_c00444{bottom:986.428087pt;}
.h2_c00444{height:55.645234pt;}
.h1_c00444{height:55.797187pt;}
.h4_c00444{height:56.192266pt;}
.h3_c00444{height:65.492118pt;}
.h0_c00444{height:1122.666667pt;}
.w0_c00444{width:793.333333pt;}
.x0_c00444{left:0.000000pt;}
.x2_c00444{left:73.520052pt;}
.x3_c00444{left:122.560504pt;}
.x6_c00444{left:145.840000pt;}
.x5_c00444{left:301.200000pt;}
.x1_c00444{left:383.760000pt;}
.x4_c00444{left:396.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_78856b5128e28eb99d6de7b4.woff2')format("woff");}.ff1_c00445{font-family:ff1_c00445;line-height:1.106934;font-style:normal;font-weight:normal;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_eda8edf066e1823fc30d2006.woff2')format("woff");}.ff2_c00445{font-family:ff2_c00445;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00445{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00445{vertical-align:0.000000px;}
.v1_c00445{vertical-align:32.040000px;}
.ls3_c00445{letter-spacing:-0.063018px;}
.ls8_c00445{letter-spacing:-0.049014px;}
.ls6_c00445{letter-spacing:-0.035010px;}
.ls5_c00445{letter-spacing:-0.028008px;}
.ls7_c00445{letter-spacing:-0.021006px;}
.ls9_c00445{letter-spacing:-0.014004px;}
.lsa_c00445{letter-spacing:-0.007002px;}
.ls4_c00445{letter-spacing:0.000000px;}
.ls0_c00445{letter-spacing:0.007002px;}
.ls1_c00445{letter-spacing:0.021006px;}
.ls2_c00445{letter-spacing:0.023281px;}
.lsb_c00445{letter-spacing:0.042012px;}
.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:-12.967628px;}
.wsa_c00445{word-spacing:-0.035010px;}
.ws1_c00445{word-spacing:0.000000px;}
.ws4_c00445{word-spacing:0.007002px;}
.ws12_c00445{word-spacing:0.014004px;}
.wsd_c00445{word-spacing:0.322092px;}
.ws5_c00445{word-spacing:2.163618px;}
.ws8_c00445{word-spacing:2.499714px;}
.ws10_c00445{word-spacing:2.513718px;}
.ws9_c00445{word-spacing:2.520720px;}
.ws11_c00445{word-spacing:2.877822px;}
.wse_c00445{word-spacing:3.234924px;}
.ws3_c00445{word-spacing:14.060016px;}
.ws2_c00445{word-spacing:14.417118px;}
.wsb_c00445{word-spacing:18.359244px;}
.wsc_c00445{word-spacing:18.380250px;}
.wsf_c00445{word-spacing:20.172762px;}
.ws6_c00445{word-spacing:27.391824px;}
.ws7_c00445{word-spacing:27.741924px;}
._0_c00445{margin-left:-1.344384px;}
._1_c00445{width:1.043298px;}
.fc0_c00445{color:rgb(0,0,0);}
.fs1_c00445{font-size:46.562400px;}
.fs0_c00445{font-size:70.020000px;}
.y0_c00445{bottom:0.000000px;}
.y2_c00445{bottom:109.740968px;}
.y1_c00445{bottom:129.810450px;}
.y21_c00445{bottom:172.465721px;}
.y20_c00445{bottom:202.616333px;}
.y1f_c00445{bottom:232.766945px;}
.y1e_c00445{bottom:262.917557px;}
.y1d_c00445{bottom:293.157444px;}
.y1c_c00445{bottom:323.308056px;}
.y1b_c00445{bottom:353.547943px;}
.y1a_c00445{bottom:383.698555px;}
.y19_c00445{bottom:413.938443px;}
.y18_c00445{bottom:444.089055px;}
.y17_c00445{bottom:474.328942px;}
.y16_c00445{bottom:504.479555px;}
.y15_c00445{bottom:534.719442px;}
.y14_c00445{bottom:564.870054px;}
.y13_c00445{bottom:595.109941px;}
.y12_c00445{bottom:615.270450px;}
.y11_c00445{bottom:646.230450px;}
.y10_c00445{bottom:676.380450px;}
.yf_c00445{bottom:706.620450px;}
.ye_c00445{bottom:736.770450px;}
.yd_c00445{bottom:767.010450px;}
.yc_c00445{bottom:817.500450px;}
.yb_c00445{bottom:847.740450px;}
.ya_c00445{bottom:898.410450px;}
.y9_c00445{bottom:928.560450px;}
.y8_c00445{bottom:958.800450px;}
.y7_c00445{bottom:988.950450px;}
.y6_c00445{bottom:1019.190450px;}
.y5_c00445{bottom:1049.340450px;}
.y4_c00445{bottom:1079.580450px;}
.y3_c00445{bottom:1109.730450px;}
.h2_c00445{height:62.600889px;}
.h1_c00445{height:62.771836px;}
.h3_c00445{height:73.668786px;}
.h0_c00445{height:1263.000000px;}
.w0_c00445{width:892.500000px;}
.x0_c00445{left:0.000000px;}
.x2_c00445{left:82.710059px;}
.x3_c00445{left:137.880000px;}
.x4_c00445{left:339.750000px;}
.x1_c00445{left:431.730000px;}
@media print{
.v0_c00445{vertical-align:0.000000pt;}
.v1_c00445{vertical-align:28.480000pt;}
.ls3_c00445{letter-spacing:-0.056016pt;}
.ls8_c00445{letter-spacing:-0.043568pt;}
.ls6_c00445{letter-spacing:-0.031120pt;}
.ls5_c00445{letter-spacing:-0.024896pt;}
.ls7_c00445{letter-spacing:-0.018672pt;}
.ls9_c00445{letter-spacing:-0.012448pt;}
.lsa_c00445{letter-spacing:-0.006224pt;}
.ls4_c00445{letter-spacing:0.000000pt;}
.ls0_c00445{letter-spacing:0.006224pt;}
.ls1_c00445{letter-spacing:0.018672pt;}
.ls2_c00445{letter-spacing:0.020694pt;}
.lsb_c00445{letter-spacing:0.037344pt;}
.ws0_c00445{word-spacing:-11.526781pt;}
.wsa_c00445{word-spacing:-0.031120pt;}
.ws1_c00445{word-spacing:0.000000pt;}
.ws4_c00445{word-spacing:0.006224pt;}
.ws12_c00445{word-spacing:0.012448pt;}
.wsd_c00445{word-spacing:0.286304pt;}
.ws5_c00445{word-spacing:1.923216pt;}
.ws8_c00445{word-spacing:2.221968pt;}
.ws10_c00445{word-spacing:2.234416pt;}
.ws9_c00445{word-spacing:2.240640pt;}
.ws11_c00445{word-spacing:2.558064pt;}
.wse_c00445{word-spacing:2.875488pt;}
.ws3_c00445{word-spacing:12.497792pt;}
.ws2_c00445{word-spacing:12.815216pt;}
.wsb_c00445{word-spacing:16.319328pt;}
.wsc_c00445{word-spacing:16.338000pt;}
.wsf_c00445{word-spacing:17.931344pt;}
.ws6_c00445{word-spacing:24.348288pt;}
.ws7_c00445{word-spacing:24.659488pt;}
._0_c00445{margin-left:-1.195008pt;}
._1_c00445{width:0.927376pt;}
.fs1_c00445{font-size:41.388800pt;}
.fs0_c00445{font-size:62.240000pt;}
.y0_c00445{bottom:0.000000pt;}
.y2_c00445{bottom:97.547527pt;}
.y1_c00445{bottom:115.387067pt;}
.y21_c00445{bottom:153.302863pt;}
.y20_c00445{bottom:180.103407pt;}
.y1f_c00445{bottom:206.903951pt;}
.y1e_c00445{bottom:233.704495pt;}
.y1d_c00445{bottom:260.584395pt;}
.y1c_c00445{bottom:287.384939pt;}
.y1b_c00445{bottom:314.264839pt;}
.y1a_c00445{bottom:341.065383pt;}
.y19_c00445{bottom:367.945283pt;}
.y18_c00445{bottom:394.745827pt;}
.y17_c00445{bottom:421.625727pt;}
.y16_c00445{bottom:448.426271pt;}
.y15_c00445{bottom:475.306171pt;}
.y14_c00445{bottom:502.106715pt;}
.y13_c00445{bottom:528.986615pt;}
.y12_c00445{bottom:546.907067pt;}
.y11_c00445{bottom:574.427067pt;}
.y10_c00445{bottom:601.227067pt;}
.yf_c00445{bottom:628.107067pt;}
.ye_c00445{bottom:654.907067pt;}
.yd_c00445{bottom:681.787067pt;}
.yc_c00445{bottom:726.667067pt;}
.yb_c00445{bottom:753.547067pt;}
.ya_c00445{bottom:798.587067pt;}
.y9_c00445{bottom:825.387067pt;}
.y8_c00445{bottom:852.267067pt;}
.y7_c00445{bottom:879.067067pt;}
.y6_c00445{bottom:905.947067pt;}
.y5_c00445{bottom:932.747067pt;}
.y4_c00445{bottom:959.627067pt;}
.y3_c00445{bottom:986.427067pt;}
.h2_c00445{height:55.645234pt;}
.h1_c00445{height:55.797187pt;}
.h3_c00445{height:65.483366pt;}
.h0_c00445{height:1122.666667pt;}
.w0_c00445{width:793.333333pt;}
.x0_c00445{left:0.000000pt;}
.x2_c00445{left:73.520052pt;}
.x3_c00445{left:122.560000pt;}
.x4_c00445{left:302.000000pt;}
.x1_c00445{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1b3f9d20c74506ca213cbbb0.woff2')format("woff");}.ff1_c00446{font-family:ff1_c00446;line-height:1.106934;font-style:normal;font-weight:normal;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_8d0d938920e1eb5ba98574dd.woff2')format("woff");}.ff2_c00446{font-family:ff2_c00446;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00446;src:url('chunks/assets/font_7666aae7005d7422bab35f03.woff2')format("woff");}.ff3_c00446{font-family:ff3_c00446;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00446{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00446{vertical-align:0.000000px;}
.ls11_c00446{letter-spacing:-0.084024px;}
.ls9_c00446{letter-spacing:-0.070020px;}
.ls6_c00446{letter-spacing:-0.063018px;}
.lsa_c00446{letter-spacing:-0.056016px;}
.lsd_c00446{letter-spacing:-0.049014px;}
.lsf_c00446{letter-spacing:-0.042012px;}
.ls10_c00446{letter-spacing:-0.035010px;}
.lsb_c00446{letter-spacing:-0.028008px;}
.ls13_c00446{letter-spacing:-0.021006px;}
.lsc_c00446{letter-spacing:-0.014004px;}
.lse_c00446{letter-spacing:-0.007002px;}
.ls7_c00446{letter-spacing:0.000000px;}
.ls4_c00446{letter-spacing:0.007002px;}
.ls5_c00446{letter-spacing:0.014004px;}
.ls2_c00446{letter-spacing:0.021006px;}
.ls1_c00446{letter-spacing:0.028008px;}
.ls3_c00446{letter-spacing:0.070020px;}
.ls8_c00446{letter-spacing:0.098028px;}
.ls12_c00446{letter-spacing:0.630180px;}
.ls0_c00446{letter-spacing:7.177050px;}
.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:0.000000px;}
.wsf_c00446{word-spacing:0.028008px;}
.wse_c00446{word-spacing:0.350100px;}
.ws16_c00446{word-spacing:0.357102px;}
.ws27_c00446{word-spacing:0.392112px;}
.ws2d_c00446{word-spacing:0.714204px;}
.ws31_c00446{word-spacing:0.735210px;}
.ws9_c00446{word-spacing:1.127322px;}
.ws23_c00446{word-spacing:1.463418px;}
.ws2c_c00446{word-spacing:1.792512px;}
.wsb_c00446{word-spacing:1.813518px;}
.wsc_c00446{word-spacing:2.891826px;}
.ws7_c00446{word-spacing:3.585024px;}
.ws1b_c00446{word-spacing:4.341240px;}
.ws1_c00446{word-spacing:6.728922px;}
.ws2_c00446{word-spacing:6.896970px;}
.ws24_c00446{word-spacing:7.534152px;}
.ws15_c00446{word-spacing:7.562160px;}
.ws5_c00446{word-spacing:8.297370px;}
.wsd_c00446{word-spacing:9.326664px;}
.ws37_c00446{word-spacing:10.089882px;}
.ws35_c00446{word-spacing:10.096884px;}
.ws13_c00446{word-spacing:10.103886px;}
.ws26_c00446{word-spacing:10.432980px;}
.ws3c_c00446{word-spacing:10.804086px;}
.ws36_c00446{word-spacing:11.189196px;}
.ws2f_c00446{word-spacing:15.502428px;}
.ws19_c00446{word-spacing:17.266932px;}
.ws14_c00446{word-spacing:17.624034px;}
.ws3b_c00446{word-spacing:18.373248px;}
.ws32_c00446{word-spacing:18.744354px;}
.ws38_c00446{word-spacing:19.437552px;}
.ws11_c00446{word-spacing:23.435694px;}
.ws1d_c00446{word-spacing:24.394968px;}
.ws22_c00446{word-spacing:25.536294px;}
.ws21_c00446{word-spacing:25.627320px;}
.ws25_c00446{word-spacing:26.628606px;}
.ws20_c00446{word-spacing:28.428120px;}
.ws2b_c00446{word-spacing:28.463130px;}
.ws2a_c00446{word-spacing:28.785222px;}
.ws33_c00446{word-spacing:29.205342px;}
.ws4_c00446{word-spacing:30.920832px;}
.ws29_c00446{word-spacing:30.990852px;}
.ws3_c00446{word-spacing:31.004856px;}
.ws17_c00446{word-spacing:32.748354px;}
.ws1e_c00446{word-spacing:34.239780px;}
.ws8_c00446{word-spacing:35.675190px;}
.ws1a_c00446{word-spacing:35.997282px;}
.ws2e_c00446{word-spacing:42.509142px;}
.ws10_c00446{word-spacing:42.523146px;}
.ws6_c00446{word-spacing:43.559442px;}
.ws34_c00446{word-spacing:45.702054px;}
.ws28_c00446{word-spacing:55.434834px;}
.ws30_c00446{word-spacing:59.776074px;}
.wsa_c00446{word-spacing:64.817514px;}
.ws12_c00446{word-spacing:69.837948px;}
.ws1c_c00446{word-spacing:78.471414px;}
.ws39_c00446{word-spacing:80.677044px;}
.ws1f_c00446{word-spacing:86.411682px;}
.ws18_c00446{word-spacing:92.902536px;}
.ws3a_c00446{word-spacing:135.684756px;}
._0_c00446{margin-left:-1.043298px;}
._1_c00446{width:1.015290px;}
.fc0_c00446{color:rgb(0,0,0);}
.fs0_c00446{font-size:70.020000px;}
.y0_c00446{bottom:0.000000px;}
.y2_c00446{bottom:109.740968px;}
.y1_c00446{bottom:129.810450px;}
.y20_c00446{bottom:172.920450px;}
.y35_c00446{bottom:173.730450px;}
.y1f_c00446{bottom:203.070450px;}
.y34_c00446{bottom:203.970450px;}
.y1e_c00446{bottom:233.310450px;}
.y33_c00446{bottom:234.120600px;}
.y1d_c00446{bottom:263.460450px;}
.y32_c00446{bottom:264.360450px;}
.y1c_c00446{bottom:293.700450px;}
.y31_c00446{bottom:294.510450px;}
.y1b_c00446{bottom:323.850450px;}
.y30_c00446{bottom:324.750600px;}
.y1a_c00446{bottom:354.090450px;}
.y2f_c00446{bottom:354.900450px;}
.y19_c00446{bottom:384.240450px;}
.y2e_c00446{bottom:385.140450px;}
.y18_c00446{bottom:414.480450px;}
.y2d_c00446{bottom:415.290600px;}
.y17_c00446{bottom:444.630450px;}
.y2c_c00446{bottom:445.530600px;}
.y2b_c00446{bottom:475.770600px;}
.y16_c00446{bottom:495.120600px;}
.y2a_c00446{bottom:505.920450px;}
.y15_c00446{bottom:525.450600px;}
.y29_c00446{bottom:536.160450px;}
.y14_c00446{bottom:555.600450px;}
.y28_c00446{bottom:566.310450px;}
.y13_c00446{bottom:585.840450px;}
.y27_c00446{bottom:596.460450px;}
.y12_c00446{bottom:615.990450px;}
.y26_c00446{bottom:626.610450px;}
.y11_c00446{bottom:646.230450px;}
.y25_c00446{bottom:656.850450px;}
.y10_c00446{bottom:676.380450px;}
.y24_c00446{bottom:687.000450px;}
.y23_c00446{bottom:717.240450px;}
.yf_c00446{bottom:726.960450px;}
.y22_c00446{bottom:747.390450px;}
.ye_c00446{bottom:777.540600px;}
.y21_c00446{bottom:777.630450px;}
.yd_c00446{bottom:807.780450px;}
.yc_c00446{bottom:838.020450px;}
.yb_c00446{bottom:868.170450px;}
.ya_c00446{bottom:898.410450px;}
.y9_c00446{bottom:928.560450px;}
.y8_c00446{bottom:958.800450px;}
.y7_c00446{bottom:988.950450px;}
.y6_c00446{bottom:1019.190450px;}
.y5_c00446{bottom:1049.340450px;}
.y4_c00446{bottom:1079.580450px;}
.y3_c00446{bottom:1109.730450px;}
.h3_c00446{height:62.600889px;}
.h1_c00446{height:62.771836px;}
.h2_c00446{height:63.216299px;}
.h0_c00446{height:1263.000000px;}
.w0_c00446{width:892.500000px;}
.x0_c00446{left:0.000000px;}
.x2_c00446{left:82.710059px;}
.x3_c00446{left:138.960000px;}
.x1_c00446{left:431.730000px;}
.x4_c00446{left:454.230000px;}
@media print{
.v0_c00446{vertical-align:0.000000pt;}
.ls11_c00446{letter-spacing:-0.074688pt;}
.ls9_c00446{letter-spacing:-0.062240pt;}
.ls6_c00446{letter-spacing:-0.056016pt;}
.lsa_c00446{letter-spacing:-0.049792pt;}
.lsd_c00446{letter-spacing:-0.043568pt;}
.lsf_c00446{letter-spacing:-0.037344pt;}
.ls10_c00446{letter-spacing:-0.031120pt;}
.lsb_c00446{letter-spacing:-0.024896pt;}
.ls13_c00446{letter-spacing:-0.018672pt;}
.lsc_c00446{letter-spacing:-0.012448pt;}
.lse_c00446{letter-spacing:-0.006224pt;}
.ls7_c00446{letter-spacing:0.000000pt;}
.ls4_c00446{letter-spacing:0.006224pt;}
.ls5_c00446{letter-spacing:0.012448pt;}
.ls2_c00446{letter-spacing:0.018672pt;}
.ls1_c00446{letter-spacing:0.024896pt;}
.ls3_c00446{letter-spacing:0.062240pt;}
.ls8_c00446{letter-spacing:0.087136pt;}
.ls12_c00446{letter-spacing:0.560160pt;}
.ls0_c00446{letter-spacing:6.379600pt;}
.ws0_c00446{word-spacing:0.000000pt;}
.wsf_c00446{word-spacing:0.024896pt;}
.wse_c00446{word-spacing:0.311200pt;}
.ws16_c00446{word-spacing:0.317424pt;}
.ws27_c00446{word-spacing:0.348544pt;}
.ws2d_c00446{word-spacing:0.634848pt;}
.ws31_c00446{word-spacing:0.653520pt;}
.ws9_c00446{word-spacing:1.002064pt;}
.ws23_c00446{word-spacing:1.300816pt;}
.ws2c_c00446{word-spacing:1.593344pt;}
.wsb_c00446{word-spacing:1.612016pt;}
.wsc_c00446{word-spacing:2.570512pt;}
.ws7_c00446{word-spacing:3.186688pt;}
.ws1b_c00446{word-spacing:3.858880pt;}
.ws1_c00446{word-spacing:5.981264pt;}
.ws2_c00446{word-spacing:6.130640pt;}
.ws24_c00446{word-spacing:6.697024pt;}
.ws15_c00446{word-spacing:6.721920pt;}
.ws5_c00446{word-spacing:7.375440pt;}
.wsd_c00446{word-spacing:8.290368pt;}
.ws37_c00446{word-spacing:8.968784pt;}
.ws35_c00446{word-spacing:8.975008pt;}
.ws13_c00446{word-spacing:8.981232pt;}
.ws26_c00446{word-spacing:9.273760pt;}
.ws3c_c00446{word-spacing:9.603632pt;}
.ws36_c00446{word-spacing:9.945952pt;}
.ws2f_c00446{word-spacing:13.779936pt;}
.ws19_c00446{word-spacing:15.348384pt;}
.ws14_c00446{word-spacing:15.665808pt;}
.ws3b_c00446{word-spacing:16.331776pt;}
.ws32_c00446{word-spacing:16.661648pt;}
.ws38_c00446{word-spacing:17.277824pt;}
.ws11_c00446{word-spacing:20.831728pt;}
.ws1d_c00446{word-spacing:21.684416pt;}
.ws22_c00446{word-spacing:22.698928pt;}
.ws21_c00446{word-spacing:22.779840pt;}
.ws25_c00446{word-spacing:23.669872pt;}
.ws20_c00446{word-spacing:25.269440pt;}
.ws2b_c00446{word-spacing:25.300560pt;}
.ws2a_c00446{word-spacing:25.586864pt;}
.ws33_c00446{word-spacing:25.960304pt;}
.ws4_c00446{word-spacing:27.485184pt;}
.ws29_c00446{word-spacing:27.547424pt;}
.ws3_c00446{word-spacing:27.559872pt;}
.ws17_c00446{word-spacing:29.109648pt;}
.ws1e_c00446{word-spacing:30.435360pt;}
.ws8_c00446{word-spacing:31.711280pt;}
.ws1a_c00446{word-spacing:31.997584pt;}
.ws2e_c00446{word-spacing:37.785904pt;}
.ws10_c00446{word-spacing:37.798352pt;}
.ws6_c00446{word-spacing:38.719504pt;}
.ws34_c00446{word-spacing:40.624048pt;}
.ws28_c00446{word-spacing:49.275408pt;}
.ws30_c00446{word-spacing:53.134288pt;}
.wsa_c00446{word-spacing:57.615568pt;}
.ws12_c00446{word-spacing:62.078176pt;}
.ws1c_c00446{word-spacing:69.752368pt;}
.ws39_c00446{word-spacing:71.712928pt;}
.ws1f_c00446{word-spacing:76.810384pt;}
.ws18_c00446{word-spacing:82.580032pt;}
.ws3a_c00446{word-spacing:120.608672pt;}
._0_c00446{margin-left:-0.927376pt;}
._1_c00446{width:0.902480pt;}
.fs0_c00446{font-size:62.240000pt;}
.y0_c00446{bottom:0.000000pt;}
.y2_c00446{bottom:97.547527pt;}
.y1_c00446{bottom:115.387067pt;}
.y20_c00446{bottom:153.707067pt;}
.y35_c00446{bottom:154.427067pt;}
.y1f_c00446{bottom:180.507067pt;}
.y34_c00446{bottom:181.307067pt;}
.y1e_c00446{bottom:207.387067pt;}
.y33_c00446{bottom:208.107200pt;}
.y1d_c00446{bottom:234.187067pt;}
.y32_c00446{bottom:234.987067pt;}
.y1c_c00446{bottom:261.067067pt;}
.y31_c00446{bottom:261.787067pt;}
.y1b_c00446{bottom:287.867067pt;}
.y30_c00446{bottom:288.667200pt;}
.y1a_c00446{bottom:314.747067pt;}
.y2f_c00446{bottom:315.467067pt;}
.y19_c00446{bottom:341.547067pt;}
.y2e_c00446{bottom:342.347067pt;}
.y18_c00446{bottom:368.427067pt;}
.y2d_c00446{bottom:369.147200pt;}
.y17_c00446{bottom:395.227067pt;}
.y2c_c00446{bottom:396.027200pt;}
.y2b_c00446{bottom:422.907200pt;}
.y16_c00446{bottom:440.107200pt;}
.y2a_c00446{bottom:449.707067pt;}
.y15_c00446{bottom:467.067200pt;}
.y29_c00446{bottom:476.587067pt;}
.y14_c00446{bottom:493.867067pt;}
.y28_c00446{bottom:503.387067pt;}
.y13_c00446{bottom:520.747067pt;}
.y27_c00446{bottom:530.187067pt;}
.y12_c00446{bottom:547.547067pt;}
.y26_c00446{bottom:556.987067pt;}
.y11_c00446{bottom:574.427067pt;}
.y25_c00446{bottom:583.867067pt;}
.y10_c00446{bottom:601.227067pt;}
.y24_c00446{bottom:610.667067pt;}
.y23_c00446{bottom:637.547067pt;}
.yf_c00446{bottom:646.187067pt;}
.y22_c00446{bottom:664.347067pt;}
.ye_c00446{bottom:691.147200pt;}
.y21_c00446{bottom:691.227067pt;}
.yd_c00446{bottom:718.027067pt;}
.yc_c00446{bottom:744.907067pt;}
.yb_c00446{bottom:771.707067pt;}
.ya_c00446{bottom:798.587067pt;}
.y9_c00446{bottom:825.387067pt;}
.y8_c00446{bottom:852.267067pt;}
.y7_c00446{bottom:879.067067pt;}
.y6_c00446{bottom:905.947067pt;}
.y5_c00446{bottom:932.747067pt;}
.y4_c00446{bottom:959.627067pt;}
.y3_c00446{bottom:986.427067pt;}
.h3_c00446{height:55.645234pt;}
.h1_c00446{height:55.797187pt;}
.h2_c00446{height:56.192266pt;}
.h0_c00446{height:1122.666667pt;}
.w0_c00446{width:793.333333pt;}
.x0_c00446{left:0.000000pt;}
.x2_c00446{left:73.520052pt;}
.x3_c00446{left:123.520000pt;}
.x1_c00446{left:383.760000pt;}
.x4_c00446{left:403.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a8a361338805334818ba0c3a.woff2')format("woff");}.ff1_c00447{font-family:ff1_c00447;line-height:1.106934;font-style:normal;font-weight:normal;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_cf2039605975ae576366fe09.woff2')format("woff");}.ff2_c00447{font-family:ff2_c00447;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00447{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00447{vertical-align:0.000000px;}
.v1_c00447{vertical-align:32.040000px;}
.ls7_c00447{letter-spacing:-0.063018px;}
.lsf_c00447{letter-spacing:-0.056016px;}
.lsb_c00447{letter-spacing:-0.042012px;}
.lse_c00447{letter-spacing:-0.035010px;}
.lsd_c00447{letter-spacing:-0.028008px;}
.lsc_c00447{letter-spacing:-0.021006px;}
.lsa_c00447{letter-spacing:-0.014004px;}
.ls9_c00447{letter-spacing:-0.007002px;}
.ls8_c00447{letter-spacing:0.000000px;}
.ls5_c00447{letter-spacing:0.007002px;}
.ls0_c00447{letter-spacing:0.014004px;}
.ls4_c00447{letter-spacing:0.021006px;}
.ls3_c00447{letter-spacing:0.023281px;}
.ls6_c00447{letter-spacing:0.035010px;}
.ls2_c00447{letter-spacing:0.063018px;}
.ls1_c00447{letter-spacing:0.070020px;}
.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;}
}
.ws1_c00447{word-spacing:-19.444554px;}
.ws2_c00447{word-spacing:-19.423548px;}
.ws0_c00447{word-spacing:-12.967628px;}
.ws3_c00447{word-spacing:0.000000px;}
.ws12_c00447{word-spacing:0.014004px;}
.ws8_c00447{word-spacing:0.364104px;}
.wsb_c00447{word-spacing:0.371106px;}
.ws5_c00447{word-spacing:1.799514px;}
.ws1a_c00447{word-spacing:2.142612px;}
.ws1e_c00447{word-spacing:2.170620px;}
.ws13_c00447{word-spacing:4.285224px;}
.ws16_c00447{word-spacing:4.341240px;}
.ws19_c00447{word-spacing:4.992426px;}
.ws23_c00447{word-spacing:5.384538px;}
.wsa_c00447{word-spacing:6.399828px;}
.ws14_c00447{word-spacing:6.462846px;}
.ws15_c00447{word-spacing:7.576164px;}
.ws21_c00447{word-spacing:8.983566px;}
.wse_c00447{word-spacing:9.326664px;}
.ws1b_c00447{word-spacing:9.718776px;}
.ws17_c00447{word-spacing:13.646898px;}
.ws1d_c00447{word-spacing:14.746212px;}
.ws18_c00447{word-spacing:15.082308px;}
.ws9_c00447{word-spacing:16.475706px;}
.wsc_c00447{word-spacing:22.315374px;}
.ws24_c00447{word-spacing:27.041724px;}
.ws11_c00447{word-spacing:27.349812px;}
.ws1f_c00447{word-spacing:27.734922px;}
.ws22_c00447{word-spacing:36.354384px;}
.ws20_c00447{word-spacing:36.725490px;}
.wsd_c00447{word-spacing:39.974418px;}
.ws10_c00447{word-spacing:41.017716px;}
.ws4_c00447{word-spacing:45.351954px;}
.wsf_c00447{word-spacing:48.971988px;}
.ws6_c00447{word-spacing:51.814800px;}
.ws25_c00447{word-spacing:56.170044px;}
.ws7_c00447{word-spacing:56.191050px;}
.ws1c_c00447{word-spacing:86.369670px;}
._2_c00447{margin-left:-54.930690px;}
._1_c00447{margin-left:-1.029294px;}
._0_c00447{width:1.295370px;}
.fc0_c00447{color:rgb(0,0,0);}
.fs1_c00447{font-size:46.562400px;}
.fs0_c00447{font-size:70.020000px;}
.y0_c00447{bottom:0.000000px;}
.y2_c00447{bottom:109.740968px;}
.y1_c00447{bottom:129.810450px;}
.y21_c00447{bottom:183.540977px;}
.y20_c00447{bottom:213.780864px;}
.y1f_c00447{bottom:243.836508px;}
.y1e_c00447{bottom:274.076396px;}
.y1d_c00447{bottom:304.227008px;}
.y1c_c00447{bottom:334.466895px;}
.y1b_c00447{bottom:364.617507px;}
.y1a_c00447{bottom:394.857395px;}
.y19_c00447{bottom:425.008007px;}
.y18_c00447{bottom:455.247894px;}
.y17_c00447{bottom:485.398506px;}
.y16_c00447{bottom:515.638394px;}
.y15_c00447{bottom:545.789006px;}
.y14_c00447{bottom:576.028893px;}
.y13_c00447{bottom:606.179505px;}
.y12_c00447{bottom:636.419393px;}
.y11_c00447{bottom:666.659280px;}
.y10_c00447{bottom:696.809892px;}
.yf_c00447{bottom:727.049779px;}
.ye_c00447{bottom:757.200392px;}
.yd_c00447{bottom:787.440279px;}
.yc_c00447{bottom:817.590891px;}
.yb_c00447{bottom:847.830779px;}
.ya_c00447{bottom:898.320450px;}
.y22_c00447{bottom:898.410450px;}
.y9_c00447{bottom:928.560450px;}
.y8_c00447{bottom:958.800450px;}
.y7_c00447{bottom:988.950450px;}
.y6_c00447{bottom:1019.190450px;}
.y5_c00447{bottom:1049.340450px;}
.y4_c00447{bottom:1079.580450px;}
.y3_c00447{bottom:1109.730450px;}
.h2_c00447{height:62.600889px;}
.h1_c00447{height:62.771836px;}
.h3_c00447{height:73.668786px;}
.h4_c00447{height:74.044554px;}
.h0_c00447{height:1263.000000px;}
.w0_c00447{width:892.500000px;}
.x0_c00447{left:0.000000px;}
.x2_c00447{left:82.710059px;}
.x3_c00447{left:138.960000px;}
.x1_c00447{left:431.730000px;}
.x4_c00447{left:454.230000px;}
@media print{
.v0_c00447{vertical-align:0.000000pt;}
.v1_c00447{vertical-align:28.480000pt;}
.ls7_c00447{letter-spacing:-0.056016pt;}
.lsf_c00447{letter-spacing:-0.049792pt;}
.lsb_c00447{letter-spacing:-0.037344pt;}
.lse_c00447{letter-spacing:-0.031120pt;}
.lsd_c00447{letter-spacing:-0.024896pt;}
.lsc_c00447{letter-spacing:-0.018672pt;}
.lsa_c00447{letter-spacing:-0.012448pt;}
.ls9_c00447{letter-spacing:-0.006224pt;}
.ls8_c00447{letter-spacing:0.000000pt;}
.ls5_c00447{letter-spacing:0.006224pt;}
.ls0_c00447{letter-spacing:0.012448pt;}
.ls4_c00447{letter-spacing:0.018672pt;}
.ls3_c00447{letter-spacing:0.020694pt;}
.ls6_c00447{letter-spacing:0.031120pt;}
.ls2_c00447{letter-spacing:0.056016pt;}
.ls1_c00447{letter-spacing:0.062240pt;}
.ws1_c00447{word-spacing:-17.284048pt;}
.ws2_c00447{word-spacing:-17.265376pt;}
.ws0_c00447{word-spacing:-11.526781pt;}
.ws3_c00447{word-spacing:0.000000pt;}
.ws12_c00447{word-spacing:0.012448pt;}
.ws8_c00447{word-spacing:0.323648pt;}
.wsb_c00447{word-spacing:0.329872pt;}
.ws5_c00447{word-spacing:1.599568pt;}
.ws1a_c00447{word-spacing:1.904544pt;}
.ws1e_c00447{word-spacing:1.929440pt;}
.ws13_c00447{word-spacing:3.809088pt;}
.ws16_c00447{word-spacing:3.858880pt;}
.ws19_c00447{word-spacing:4.437712pt;}
.ws23_c00447{word-spacing:4.786256pt;}
.wsa_c00447{word-spacing:5.688736pt;}
.ws14_c00447{word-spacing:5.744752pt;}
.ws15_c00447{word-spacing:6.734368pt;}
.ws21_c00447{word-spacing:7.985392pt;}
.wse_c00447{word-spacing:8.290368pt;}
.ws1b_c00447{word-spacing:8.638912pt;}
.ws17_c00447{word-spacing:12.130576pt;}
.ws1d_c00447{word-spacing:13.107744pt;}
.ws18_c00447{word-spacing:13.406496pt;}
.ws9_c00447{word-spacing:14.645072pt;}
.wsc_c00447{word-spacing:19.835888pt;}
.ws24_c00447{word-spacing:24.037088pt;}
.ws11_c00447{word-spacing:24.310944pt;}
.ws1f_c00447{word-spacing:24.653264pt;}
.ws22_c00447{word-spacing:32.315008pt;}
.ws20_c00447{word-spacing:32.644880pt;}
.wsd_c00447{word-spacing:35.532816pt;}
.ws10_c00447{word-spacing:36.460192pt;}
.ws4_c00447{word-spacing:40.312848pt;}
.wsf_c00447{word-spacing:43.530656pt;}
.ws6_c00447{word-spacing:46.057600pt;}
.ws25_c00447{word-spacing:49.928928pt;}
.ws7_c00447{word-spacing:49.947600pt;}
.ws1c_c00447{word-spacing:76.773040pt;}
._2_c00447{margin-left:-48.827280pt;}
._1_c00447{margin-left:-0.914928pt;}
._0_c00447{width:1.151440pt;}
.fs1_c00447{font-size:41.388800pt;}
.fs0_c00447{font-size:62.240000pt;}
.y0_c00447{bottom:0.000000pt;}
.y2_c00447{bottom:97.547527pt;}
.y1_c00447{bottom:115.387067pt;}
.y21_c00447{bottom:163.147535pt;}
.y20_c00447{bottom:190.027435pt;}
.y1f_c00447{bottom:216.743563pt;}
.y1e_c00447{bottom:243.623463pt;}
.y1d_c00447{bottom:270.424007pt;}
.y1c_c00447{bottom:297.303907pt;}
.y1b_c00447{bottom:324.104451pt;}
.y1a_c00447{bottom:350.984351pt;}
.y19_c00447{bottom:377.784895pt;}
.y18_c00447{bottom:404.664795pt;}
.y17_c00447{bottom:431.465339pt;}
.y16_c00447{bottom:458.345239pt;}
.y15_c00447{bottom:485.145783pt;}
.y14_c00447{bottom:512.025683pt;}
.y13_c00447{bottom:538.826227pt;}
.y12_c00447{bottom:565.706127pt;}
.y11_c00447{bottom:592.586027pt;}
.y10_c00447{bottom:619.386571pt;}
.yf_c00447{bottom:646.266471pt;}
.ye_c00447{bottom:673.067015pt;}
.yd_c00447{bottom:699.946915pt;}
.yc_c00447{bottom:726.747459pt;}
.yb_c00447{bottom:753.627359pt;}
.ya_c00447{bottom:798.507067pt;}
.y22_c00447{bottom:798.587067pt;}
.y9_c00447{bottom:825.387067pt;}
.y8_c00447{bottom:852.267067pt;}
.y7_c00447{bottom:879.067067pt;}
.y6_c00447{bottom:905.947067pt;}
.y5_c00447{bottom:932.747067pt;}
.y4_c00447{bottom:959.627067pt;}
.y3_c00447{bottom:986.427067pt;}
.h2_c00447{height:55.645234pt;}
.h1_c00447{height:55.797187pt;}
.h3_c00447{height:65.483366pt;}
.h4_c00447{height:65.817382pt;}
.h0_c00447{height:1122.666667pt;}
.w0_c00447{width:793.333333pt;}
.x0_c00447{left:0.000000pt;}
.x2_c00447{left:73.520052pt;}
.x3_c00447{left:123.520000pt;}
.x1_c00447{left:383.760000pt;}
.x4_c00447{left:403.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b0fad206b5c8a68fa9e651e2.woff2')format("woff");}.ff1_c00448{font-family:ff1_c00448;line-height:1.106934;font-style:normal;font-weight:normal;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_fe84c4878f95c3bbd9ea6509.woff2')format("woff");}.ff2_c00448{font-family:ff2_c00448;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00448;src:url('chunks/assets/font_7cd490f25a042d7c39947860.woff2')format("woff");}.ff3_c00448{font-family:ff3_c00448;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00448{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00448{vertical-align:0.000000px;}
.v1_c00448{vertical-align:32.051166px;}
.ls5_c00448{letter-spacing:-0.063018px;}
.lsc_c00448{letter-spacing:-0.049014px;}
.lsa_c00448{letter-spacing:-0.035010px;}
.ls7_c00448{letter-spacing:-0.028008px;}
.ls9_c00448{letter-spacing:-0.021006px;}
.lsb_c00448{letter-spacing:-0.014004px;}
.ls8_c00448{letter-spacing:-0.007002px;}
.ls6_c00448{letter-spacing:0.000000px;}
.ls0_c00448{letter-spacing:0.007002px;}
.ls2_c00448{letter-spacing:0.021006px;}
.ls3_c00448{letter-spacing:0.023281px;}
.ls1_c00448{letter-spacing:0.070020px;}
.ls4_c00448{letter-spacing:0.330689px;}
.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:-12.967628px;}
.ws3_c00448{word-spacing:-0.021006px;}
.ws1_c00448{word-spacing:0.000000px;}
.ws13_c00448{word-spacing:0.007002px;}
.ws2_c00448{word-spacing:0.014004px;}
.wsc_c00448{word-spacing:0.357102px;}
.wse_c00448{word-spacing:0.686196px;}
.wsf_c00448{word-spacing:0.728208px;}
.ws15_c00448{word-spacing:1.806516px;}
.ws16_c00448{word-spacing:2.149614px;}
.wsa_c00448{word-spacing:5.384538px;}
.ws9_c00448{word-spacing:5.419548px;}
.ws7_c00448{word-spacing:6.833952px;}
.ws8_c00448{word-spacing:7.205058px;}
.ws5_c00448{word-spacing:7.933266px;}
.ws14_c00448{word-spacing:10.089882px;}
.wsb_c00448{word-spacing:10.776078px;}
.ws4_c00448{word-spacing:12.946698px;}
.wsd_c00448{word-spacing:13.331808px;}
.ws11_c00448{word-spacing:14.018004px;}
.ws6_c00448{word-spacing:14.032008px;}
.ws10_c00448{word-spacing:14.074020px;}
.ws12_c00448{word-spacing:19.458558px;}
._3_c00448{margin-left:-1.274364px;}
._0_c00448{width:1.036296px;}
._1_c00448{width:8.283366px;}
._2_c00448{width:11.567304px;}
.fc0_c00448{color:rgb(0,0,0);}
.fs1_c00448{font-size:46.562400px;}
.fs2_c00448{font-size:58.466400px;}
.fs0_c00448{font-size:70.020000px;}
.y0_c00448{bottom:0.000000px;}
.y2_c00448{bottom:109.740968px;}
.y1_c00448{bottom:129.810450px;}
.y19_c00448{bottom:180.030063px;}
.y18_c00448{bottom:210.269950px;}
.y17_c00448{bottom:240.420562px;}
.y16_c00448{bottom:270.660450px;}
.y15_c00448{bottom:300.810063px;}
.y14_c00448{bottom:331.049950px;}
.y13_c00448{bottom:361.200562px;}
.y12_c00448{bottom:391.437808px;}
.y11_c00448{bottom:421.588420px;}
.y10_c00448{bottom:451.828308px;}
.yf_c00448{bottom:482.068195px;}
.ye_c00448{bottom:512.218807px;}
.yd_c00448{bottom:542.458695px;}
.yc_c00448{bottom:572.609307px;}
.yb_c00448{bottom:602.849194px;}
.ya_c00448{bottom:632.999806px;}
.y9_c00448{bottom:663.239694px;}
.y8_c00448{bottom:693.390306px;}
.y7_c00448{bottom:723.630193px;}
.y6_c00448{bottom:749.910450px;}
.y5_c00448{bottom:1049.341098px;}
.y4_c00448{bottom:1079.580985px;}
.y3_c00448{bottom:1109.731597px;}
.h5_c00448{height:62.600889px;}
.h1_c00448{height:62.771836px;}
.h2_c00448{height:63.216299px;}
.h4_c00448{height:73.668786px;}
.h3_c00448{height:73.793630px;}
.h0_c00448{height:1263.000000px;}
.w0_c00448{width:892.500000px;}
.x0_c00448{left:0.000000px;}
.x2_c00448{left:82.710059px;}
.x7_c00448{left:138.960734px;}
.x5_c00448{left:165.240882px;}
.x4_c00448{left:283.410135px;}
.x1_c00448{left:431.730000px;}
.x3_c00448{left:446.309914px;}
.x6_c00448{left:739.440000px;}
@media print{
.v0_c00448{vertical-align:0.000000pt;}
.v1_c00448{vertical-align:28.489925pt;}
.ls5_c00448{letter-spacing:-0.056016pt;}
.lsc_c00448{letter-spacing:-0.043568pt;}
.lsa_c00448{letter-spacing:-0.031120pt;}
.ls7_c00448{letter-spacing:-0.024896pt;}
.ls9_c00448{letter-spacing:-0.018672pt;}
.lsb_c00448{letter-spacing:-0.012448pt;}
.ls8_c00448{letter-spacing:-0.006224pt;}
.ls6_c00448{letter-spacing:0.000000pt;}
.ls0_c00448{letter-spacing:0.006224pt;}
.ls2_c00448{letter-spacing:0.018672pt;}
.ls3_c00448{letter-spacing:0.020694pt;}
.ls1_c00448{letter-spacing:0.062240pt;}
.ls4_c00448{letter-spacing:0.293946pt;}
.ws0_c00448{word-spacing:-11.526781pt;}
.ws3_c00448{word-spacing:-0.018672pt;}
.ws1_c00448{word-spacing:0.000000pt;}
.ws13_c00448{word-spacing:0.006224pt;}
.ws2_c00448{word-spacing:0.012448pt;}
.wsc_c00448{word-spacing:0.317424pt;}
.wse_c00448{word-spacing:0.609952pt;}
.wsf_c00448{word-spacing:0.647296pt;}
.ws15_c00448{word-spacing:1.605792pt;}
.ws16_c00448{word-spacing:1.910768pt;}
.wsa_c00448{word-spacing:4.786256pt;}
.ws9_c00448{word-spacing:4.817376pt;}
.ws7_c00448{word-spacing:6.074624pt;}
.ws8_c00448{word-spacing:6.404496pt;}
.ws5_c00448{word-spacing:7.051792pt;}
.ws14_c00448{word-spacing:8.968784pt;}
.wsb_c00448{word-spacing:9.578736pt;}
.ws4_c00448{word-spacing:11.508176pt;}
.wsd_c00448{word-spacing:11.850496pt;}
.ws11_c00448{word-spacing:12.460448pt;}
.ws6_c00448{word-spacing:12.472896pt;}
.ws10_c00448{word-spacing:12.510240pt;}
.ws12_c00448{word-spacing:17.296496pt;}
._3_c00448{margin-left:-1.132768pt;}
._0_c00448{width:0.921152pt;}
._1_c00448{width:7.362992pt;}
._2_c00448{width:10.282048pt;}
.fs1_c00448{font-size:41.388800pt;}
.fs2_c00448{font-size:51.970133pt;}
.fs0_c00448{font-size:62.240000pt;}
.y0_c00448{bottom:0.000000pt;}
.y2_c00448{bottom:97.547527pt;}
.y1_c00448{bottom:115.387067pt;}
.y19_c00448{bottom:160.026723pt;}
.y18_c00448{bottom:186.906623pt;}
.y17_c00448{bottom:213.707167pt;}
.y16_c00448{bottom:240.587067pt;}
.y15_c00448{bottom:267.386723pt;}
.y14_c00448{bottom:294.266623pt;}
.y13_c00448{bottom:321.067167pt;}
.y12_c00448{bottom:347.944719pt;}
.y11_c00448{bottom:374.745263pt;}
.y10_c00448{bottom:401.625163pt;}
.yf_c00448{bottom:428.505063pt;}
.ye_c00448{bottom:455.305607pt;}
.yd_c00448{bottom:482.185507pt;}
.yc_c00448{bottom:508.986051pt;}
.yb_c00448{bottom:535.865951pt;}
.ya_c00448{bottom:562.666495pt;}
.y9_c00448{bottom:589.546395pt;}
.y8_c00448{bottom:616.346939pt;}
.y7_c00448{bottom:643.226839pt;}
.y6_c00448{bottom:666.587067pt;}
.y5_c00448{bottom:932.747643pt;}
.y4_c00448{bottom:959.627543pt;}
.y3_c00448{bottom:986.428087pt;}
.h5_c00448{height:55.645234pt;}
.h1_c00448{height:55.797187pt;}
.h2_c00448{height:56.192266pt;}
.h4_c00448{height:65.483366pt;}
.h3_c00448{height:65.594338pt;}
.h0_c00448{height:1122.666667pt;}
.w0_c00448{width:793.333333pt;}
.x0_c00448{left:0.000000pt;}
.x2_c00448{left:73.520052pt;}
.x7_c00448{left:123.520652pt;}
.x5_c00448{left:146.880784pt;}
.x4_c00448{left:251.920120pt;}
.x1_c00448{left:383.760000pt;}
.x3_c00448{left:396.719924pt;}
.x6_c00448{left:657.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0e5554ff5e33a12b1ab25177.woff2')format("woff");}.ff1_c00449{font-family:ff1_c00449;line-height:1.106934;font-style:normal;font-weight:normal;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_d7528d924964bb94bacb550f.woff2')format("woff");}.ff2_c00449{font-family:ff2_c00449;line-height:1.104492;font-style:normal;font-weight:normal;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_f8a5ed178f81fc9447cd4908.woff2')format("woff");}.ff3_c00449{font-family:ff3_c00449;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00449{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00449{vertical-align:0.000000px;}
.v1_c00449{vertical-align:32.395410px;}
.ls5_c00449{letter-spacing:-0.063018px;}
.ls9_c00449{letter-spacing:-0.056016px;}
.lsd_c00449{letter-spacing:-0.049014px;}
.lsb_c00449{letter-spacing:-0.042012px;}
.ls8_c00449{letter-spacing:-0.035010px;}
.lsa_c00449{letter-spacing:-0.028008px;}
.lsc_c00449{letter-spacing:-0.021006px;}
.ls7_c00449{letter-spacing:-0.014004px;}
.lse_c00449{letter-spacing:-0.007002px;}
.ls6_c00449{letter-spacing:0.000000px;}
.ls3_c00449{letter-spacing:0.007002px;}
.ls0_c00449{letter-spacing:0.023281px;}
.ls4_c00449{letter-spacing:0.035010px;}
.ls1_c00449{letter-spacing:0.063018px;}
.ls2_c00449{letter-spacing:0.175050px;}
.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;}
}
.ws2_c00449{word-spacing:-19.528578px;}
.ws1_c00449{word-spacing:-19.409544px;}
.ws0_c00449{word-spacing:-12.967628px;}
.ws3_c00449{word-spacing:0.000000px;}
.ws8_c00449{word-spacing:0.014004px;}
.ws4_c00449{word-spacing:0.357102px;}
.ws7_c00449{word-spacing:0.378108px;}
.ws9_c00449{word-spacing:0.385110px;}
.ws16_c00449{word-spacing:0.392112px;}
.ws15_c00449{word-spacing:2.520720px;}
.ws14_c00449{word-spacing:3.956130px;}
.wsb_c00449{word-spacing:5.041440px;}
.wsd_c00449{word-spacing:5.426550px;}
.ws5_c00449{word-spacing:6.476850px;}
.wsc_c00449{word-spacing:8.297370px;}
.ws13_c00449{word-spacing:22.301370px;}
.ws11_c00449{word-spacing:22.357386px;}
.ws12_c00449{word-spacing:22.630464px;}
.ws10_c00449{word-spacing:25.179192px;}
.wsa_c00449{word-spacing:29.877534px;}
.wsf_c00449{word-spacing:31.130892px;}
.wse_c00449{word-spacing:31.326948px;}
.ws6_c00449{word-spacing:37.796796px;}
._3_c00449{margin-left:-1.169334px;}
._0_c00449{width:1.001286px;}
._2_c00449{width:11.525292px;}
._1_c00449{width:38.041866px;}
.fc0_c00449{color:rgb(0,0,0);}
.fs1_c00449{font-size:46.562400px;}
.fs0_c00449{font-size:70.020000px;}
.y0_c00449{bottom:0.000000px;}
.y2_c00449{bottom:109.740968px;}
.y1_c00449{bottom:129.810450px;}
.y1b_c00449{bottom:154.739941px;}
.y1a_c00449{bottom:174.900450px;}
.y19_c00449{bottom:205.770450px;}
.y18_c00449{bottom:236.010450px;}
.y17_c00449{bottom:266.160450px;}
.y16_c00449{bottom:296.400450px;}
.y15_c00449{bottom:326.550450px;}
.y14_c00449{bottom:356.790600px;}
.y13_c00449{bottom:386.940450px;}
.y12_c00449{bottom:417.180600px;}
.y11_c00449{bottom:447.330450px;}
.y10_c00449{bottom:477.570450px;}
.yf_c00449{bottom:507.720450px;}
.ye_c00449{bottom:537.960450px;}
.yd_c00449{bottom:568.110450px;}
.yc_c00449{bottom:594.570450px;}
.yb_c00449{bottom:867.450450px;}
.ya_c00449{bottom:897.690450px;}
.y9_c00449{bottom:927.840450px;}
.y8_c00449{bottom:958.799838px;}
.y7_c00449{bottom:988.949451px;}
.y6_c00449{bottom:1019.189339px;}
.y5_c00449{bottom:1049.339950px;}
.y4_c00449{bottom:1079.579838px;}
.y3_c00449{bottom:1109.731597px;}
.h3_c00449{height:62.600889px;}
.h1_c00449{height:62.771836px;}
.h5_c00449{height:63.216299px;}
.h6_c00449{height:73.668786px;}
.h2_c00449{height:74.024196px;}
.h4_c00449{height:74.032782px;}
.h0_c00449{height:1263.000000px;}
.w0_c00449{width:892.500000px;}
.x0_c00449{left:0.000000px;}
.x2_c00449{left:82.710059px;}
.x3_c00449{left:138.960626px;}
.x5_c00449{left:191.520000px;}
.x4_c00449{left:338.850000px;}
.x1_c00449{left:431.730000px;}
.x6_c00449{left:719.910000px;}
@media print{
.v0_c00449{vertical-align:0.000000pt;}
.v1_c00449{vertical-align:28.795920pt;}
.ls5_c00449{letter-spacing:-0.056016pt;}
.ls9_c00449{letter-spacing:-0.049792pt;}
.lsd_c00449{letter-spacing:-0.043568pt;}
.lsb_c00449{letter-spacing:-0.037344pt;}
.ls8_c00449{letter-spacing:-0.031120pt;}
.lsa_c00449{letter-spacing:-0.024896pt;}
.lsc_c00449{letter-spacing:-0.018672pt;}
.ls7_c00449{letter-spacing:-0.012448pt;}
.lse_c00449{letter-spacing:-0.006224pt;}
.ls6_c00449{letter-spacing:0.000000pt;}
.ls3_c00449{letter-spacing:0.006224pt;}
.ls0_c00449{letter-spacing:0.020694pt;}
.ls4_c00449{letter-spacing:0.031120pt;}
.ls1_c00449{letter-spacing:0.056016pt;}
.ls2_c00449{letter-spacing:0.155600pt;}
.ws2_c00449{word-spacing:-17.358736pt;}
.ws1_c00449{word-spacing:-17.252928pt;}
.ws0_c00449{word-spacing:-11.526781pt;}
.ws3_c00449{word-spacing:0.000000pt;}
.ws8_c00449{word-spacing:0.012448pt;}
.ws4_c00449{word-spacing:0.317424pt;}
.ws7_c00449{word-spacing:0.336096pt;}
.ws9_c00449{word-spacing:0.342320pt;}
.ws16_c00449{word-spacing:0.348544pt;}
.ws15_c00449{word-spacing:2.240640pt;}
.ws14_c00449{word-spacing:3.516560pt;}
.wsb_c00449{word-spacing:4.481280pt;}
.wsd_c00449{word-spacing:4.823600pt;}
.ws5_c00449{word-spacing:5.757200pt;}
.wsc_c00449{word-spacing:7.375440pt;}
.ws13_c00449{word-spacing:19.823440pt;}
.ws11_c00449{word-spacing:19.873232pt;}
.ws12_c00449{word-spacing:20.115968pt;}
.ws10_c00449{word-spacing:22.381504pt;}
.wsa_c00449{word-spacing:26.557808pt;}
.wsf_c00449{word-spacing:27.671904pt;}
.wse_c00449{word-spacing:27.846176pt;}
.ws6_c00449{word-spacing:33.597152pt;}
._3_c00449{margin-left:-1.039408pt;}
._0_c00449{width:0.890032pt;}
._2_c00449{width:10.244704pt;}
._1_c00449{width:33.814992pt;}
.fs1_c00449{font-size:41.388800pt;}
.fs0_c00449{font-size:62.240000pt;}
.y0_c00449{bottom:0.000000pt;}
.y2_c00449{bottom:97.547527pt;}
.y1_c00449{bottom:115.387067pt;}
.y1b_c00449{bottom:137.546615pt;}
.y1a_c00449{bottom:155.467067pt;}
.y19_c00449{bottom:182.907067pt;}
.y18_c00449{bottom:209.787067pt;}
.y17_c00449{bottom:236.587067pt;}
.y16_c00449{bottom:263.467067pt;}
.y15_c00449{bottom:290.267067pt;}
.y14_c00449{bottom:317.147200pt;}
.y13_c00449{bottom:343.947067pt;}
.y12_c00449{bottom:370.827200pt;}
.y11_c00449{bottom:397.627067pt;}
.y10_c00449{bottom:424.507067pt;}
.yf_c00449{bottom:451.307067pt;}
.ye_c00449{bottom:478.187067pt;}
.yd_c00449{bottom:504.987067pt;}
.yc_c00449{bottom:528.507067pt;}
.yb_c00449{bottom:771.067067pt;}
.ya_c00449{bottom:797.947067pt;}
.y9_c00449{bottom:824.747067pt;}
.y8_c00449{bottom:852.266523pt;}
.y7_c00449{bottom:879.066179pt;}
.y6_c00449{bottom:905.946079pt;}
.y5_c00449{bottom:932.746623pt;}
.y4_c00449{bottom:959.626523pt;}
.y3_c00449{bottom:986.428087pt;}
.h3_c00449{height:55.645234pt;}
.h1_c00449{height:55.797187pt;}
.h5_c00449{height:56.192266pt;}
.h6_c00449{height:65.483366pt;}
.h2_c00449{height:65.799286pt;}
.h4_c00449{height:65.806918pt;}
.h0_c00449{height:1122.666667pt;}
.w0_c00449{width:793.333333pt;}
.x0_c00449{left:0.000000pt;}
.x2_c00449{left:73.520052pt;}
.x3_c00449{left:123.520556pt;}
.x5_c00449{left:170.240000pt;}
.x4_c00449{left:301.200000pt;}
.x1_c00449{left:383.760000pt;}
.x6_c00449{left:639.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bc29034ccc1e538e45b3bf6b.woff2')format("woff");}.ff1_c00450{font-family:ff1_c00450;line-height:1.106934;font-style:normal;font-weight:normal;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_6a3172f6ec8de262f754c801.woff2')format("woff");}.ff2_c00450{font-family:ff2_c00450;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00450;src:url('chunks/assets/font_470c05b563211133eee20dde.woff2')format("woff");}.ff3_c00450{font-family:ff3_c00450;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00450{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00450{vertical-align:0.000000px;}
.ls8_c00450{letter-spacing:-0.091026px;}
.ls6_c00450{letter-spacing:-0.063018px;}
.lsb_c00450{letter-spacing:-0.049014px;}
.lse_c00450{letter-spacing:-0.042012px;}
.lsa_c00450{letter-spacing:-0.035010px;}
.lsd_c00450{letter-spacing:-0.028008px;}
.lsf_c00450{letter-spacing:-0.021006px;}
.lsc_c00450{letter-spacing:-0.014004px;}
.ls9_c00450{letter-spacing:-0.007002px;}
.ls7_c00450{letter-spacing:0.000000px;}
.ls2_c00450{letter-spacing:0.007002px;}
.ls1_c00450{letter-spacing:0.014004px;}
.ls3_c00450{letter-spacing:0.021006px;}
.ls5_c00450{letter-spacing:0.028008px;}
.ls4_c00450{letter-spacing:0.049014px;}
.ls0_c00450{letter-spacing:50.372388px;}
.sc__c00450{text-shadow:none;}
.sc0_c00450{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00450{-webkit-text-stroke:0px transparent;}
.sc0_c00450{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00450{word-spacing:0.000000px;}
.ws1c_c00450{word-spacing:0.028008px;}
.wsf_c00450{word-spacing:0.035010px;}
.ws24_c00450{word-spacing:0.049014px;}
.ws2d_c00450{word-spacing:0.329094px;}
.ws15_c00450{word-spacing:0.343098px;}
.ws7_c00450{word-spacing:0.357102px;}
.wse_c00450{word-spacing:0.371106px;}
.ws3a_c00450{word-spacing:1.421406px;}
.ws37_c00450{word-spacing:1.827522px;}
.ws35_c00450{word-spacing:2.884824px;}
.ws34_c00450{word-spacing:3.248928px;}
.ws25_c00450{word-spacing:3.606030px;}
.wsc_c00450{word-spacing:3.977136px;}
.ws11_c00450{word-spacing:4.306230px;}
.ws32_c00450{word-spacing:5.006430px;}
.ws2c_c00450{word-spacing:6.469848px;}
.ws39_c00450{word-spacing:6.868962px;}
.ws10_c00450{word-spacing:7.583166px;}
.ws23_c00450{word-spacing:8.577450px;}
.ws22_c00450{word-spacing:9.004572px;}
.ws17_c00450{word-spacing:9.018576px;}
.ws29_c00450{word-spacing:9.347670px;}
.ws31_c00450{word-spacing:10.117890px;}
.ws3c_c00450{word-spacing:10.432980px;}
.ws5_c00450{word-spacing:11.875392px;}
.ws6_c00450{word-spacing:12.995712px;}
.ws2f_c00450{word-spacing:13.310802px;}
.wsa_c00450{word-spacing:13.702914px;}
.wsd_c00450{word-spacing:14.382108px;}
.ws12_c00450{word-spacing:14.781222px;}
.ws8_c00450{word-spacing:15.117318px;}
.ws13_c00450{word-spacing:15.852528px;}
.ws20_c00450{word-spacing:16.167618px;}
.ws1f_c00450{word-spacing:16.195626px;}
.ws33_c00450{word-spacing:17.659044px;}
.ws1e_c00450{word-spacing:18.737352px;}
.ws18_c00450{word-spacing:19.080450px;}
.ws36_c00450{word-spacing:23.729778px;}
.ws3_c00450{word-spacing:24.114888px;}
.ws21_c00450{word-spacing:27.727920px;}
.ws1b_c00450{word-spacing:29.191338px;}
.ws3d_c00450{word-spacing:30.227634px;}
.ws16_c00450{word-spacing:30.241638px;}
.ws27_c00450{word-spacing:35.997282px;}
.ws38_c00450{word-spacing:37.460700px;}
.ws1a_c00450{word-spacing:38.174904px;}
.ws30_c00450{word-spacing:44.602740px;}
.ws9_c00450{word-spacing:46.472274px;}
.ws3b_c00450{word-spacing:48.250782px;}
.ws14_c00450{word-spacing:48.264786px;}
.ws26_c00450{word-spacing:49.679190px;}
.wsb_c00450{word-spacing:50.015286px;}
.ws1_c00450{word-spacing:50.120316px;}
.ws2_c00450{word-spacing:50.393394px;}
.ws2e_c00450{word-spacing:56.478132px;}
.ws2b_c00450{word-spacing:58.326660px;}
.ws4_c00450{word-spacing:67.338234px;}
.ws28_c00450{word-spacing:75.957696px;}
.ws19_c00450{word-spacing:87.833088px;}
.ws2a_c00450{word-spacing:93.224628px;}
.ws1d_c00450{word-spacing:105.835230px;}
._1_c00450{margin-left:-1.134324px;}
._0_c00450{width:1.113318px;}
.fc0_c00450{color:rgb(0,0,0);}
.fs0_c00450{font-size:70.020000px;}
.y0_c00450{bottom:0.000000px;}
.y2_c00450{bottom:109.740968px;}
.y1_c00450{bottom:129.810450px;}
.y3d_c00450{bottom:163.110450px;}
.y21_c00450{bottom:183.537921px;}
.y3c_c00450{bottom:193.260450px;}
.y20_c00450{bottom:213.777808px;}
.y3b_c00450{bottom:223.500450px;}
.y1f_c00450{bottom:243.837395px;}
.y3a_c00450{bottom:253.650450px;}
.y1e_c00450{bottom:274.077282px;}
.y39_c00450{bottom:283.890450px;}
.y1d_c00450{bottom:304.227894px;}
.y38_c00450{bottom:314.040450px;}
.y1c_c00450{bottom:334.467781px;}
.y37_c00450{bottom:344.280450px;}
.y1b_c00450{bottom:364.618393px;}
.y36_c00450{bottom:374.430450px;}
.y1a_c00450{bottom:394.858281px;}
.y35_c00450{bottom:404.670450px;}
.y19_c00450{bottom:425.008893px;}
.y34_c00450{bottom:434.820450px;}
.y18_c00450{bottom:455.248780px;}
.y33_c00450{bottom:465.060450px;}
.y17_c00450{bottom:485.399392px;}
.y32_c00450{bottom:495.210600px;}
.y16_c00450{bottom:515.639280px;}
.y31_c00450{bottom:525.450600px;}
.y15_c00450{bottom:545.789892px;}
.y30_c00450{bottom:555.600450px;}
.y14_c00450{bottom:576.029779px;}
.y2f_c00450{bottom:585.840450px;}
.y13_c00450{bottom:606.180391px;}
.y2e_c00450{bottom:615.990450px;}
.y12_c00450{bottom:636.420279px;}
.y2d_c00450{bottom:646.230450px;}
.y11_c00450{bottom:666.660167px;}
.y2c_c00450{bottom:676.380450px;}
.y10_c00450{bottom:696.810778px;}
.y2b_c00450{bottom:706.620450px;}
.y2a_c00450{bottom:736.770450px;}
.yf_c00450{bottom:747.300450px;}
.y29_c00450{bottom:767.010450px;}
.ye_c00450{bottom:777.630450px;}
.y28_c00450{bottom:797.160450px;}
.yd_c00450{bottom:807.780450px;}
.y27_c00450{bottom:827.400450px;}
.yc_c00450{bottom:838.020450px;}
.y26_c00450{bottom:857.640450px;}
.yb_c00450{bottom:868.170450px;}
.y25_c00450{bottom:887.790600px;}
.ya_c00450{bottom:898.410450px;}
.y24_c00450{bottom:917.940450px;}
.y9_c00450{bottom:928.560450px;}
.y8_c00450{bottom:958.800450px;}
.y23_c00450{bottom:968.520450px;}
.y7_c00450{bottom:988.950450px;}
.y22_c00450{bottom:1019.100450px;}
.y6_c00450{bottom:1019.190450px;}
.y5_c00450{bottom:1049.340450px;}
.y4_c00450{bottom:1079.580450px;}
.y3_c00450{bottom:1109.730450px;}
.h3_c00450{height:62.600889px;}
.h1_c00450{height:62.771836px;}
.h2_c00450{height:63.216299px;}
.h0_c00450{height:1263.000000px;}
.w0_c00450{width:892.500000px;}
.x0_c00450{left:0.000000px;}
.x2_c00450{left:82.710059px;}
.x3_c00450{left:136.260000px;}
.x1_c00450{left:431.730000px;}
.x4_c00450{left:449.280000px;}
@media print{
.v0_c00450{vertical-align:0.000000pt;}
.ls8_c00450{letter-spacing:-0.080912pt;}
.ls6_c00450{letter-spacing:-0.056016pt;}
.lsb_c00450{letter-spacing:-0.043568pt;}
.lse_c00450{letter-spacing:-0.037344pt;}
.lsa_c00450{letter-spacing:-0.031120pt;}
.lsd_c00450{letter-spacing:-0.024896pt;}
.lsf_c00450{letter-spacing:-0.018672pt;}
.lsc_c00450{letter-spacing:-0.012448pt;}
.ls9_c00450{letter-spacing:-0.006224pt;}
.ls7_c00450{letter-spacing:0.000000pt;}
.ls2_c00450{letter-spacing:0.006224pt;}
.ls1_c00450{letter-spacing:0.012448pt;}
.ls3_c00450{letter-spacing:0.018672pt;}
.ls5_c00450{letter-spacing:0.024896pt;}
.ls4_c00450{letter-spacing:0.043568pt;}
.ls0_c00450{letter-spacing:44.775456pt;}
.ws0_c00450{word-spacing:0.000000pt;}
.ws1c_c00450{word-spacing:0.024896pt;}
.wsf_c00450{word-spacing:0.031120pt;}
.ws24_c00450{word-spacing:0.043568pt;}
.ws2d_c00450{word-spacing:0.292528pt;}
.ws15_c00450{word-spacing:0.304976pt;}
.ws7_c00450{word-spacing:0.317424pt;}
.wse_c00450{word-spacing:0.329872pt;}
.ws3a_c00450{word-spacing:1.263472pt;}
.ws37_c00450{word-spacing:1.624464pt;}
.ws35_c00450{word-spacing:2.564288pt;}
.ws34_c00450{word-spacing:2.887936pt;}
.ws25_c00450{word-spacing:3.205360pt;}
.wsc_c00450{word-spacing:3.535232pt;}
.ws11_c00450{word-spacing:3.827760pt;}
.ws32_c00450{word-spacing:4.450160pt;}
.ws2c_c00450{word-spacing:5.750976pt;}
.ws39_c00450{word-spacing:6.105744pt;}
.ws10_c00450{word-spacing:6.740592pt;}
.ws23_c00450{word-spacing:7.624400pt;}
.ws22_c00450{word-spacing:8.004064pt;}
.ws17_c00450{word-spacing:8.016512pt;}
.ws29_c00450{word-spacing:8.309040pt;}
.ws31_c00450{word-spacing:8.993680pt;}
.ws3c_c00450{word-spacing:9.273760pt;}
.ws5_c00450{word-spacing:10.555904pt;}
.ws6_c00450{word-spacing:11.551744pt;}
.ws2f_c00450{word-spacing:11.831824pt;}
.wsa_c00450{word-spacing:12.180368pt;}
.wsd_c00450{word-spacing:12.784096pt;}
.ws12_c00450{word-spacing:13.138864pt;}
.ws8_c00450{word-spacing:13.437616pt;}
.ws13_c00450{word-spacing:14.091136pt;}
.ws20_c00450{word-spacing:14.371216pt;}
.ws1f_c00450{word-spacing:14.396112pt;}
.ws33_c00450{word-spacing:15.696928pt;}
.ws1e_c00450{word-spacing:16.655424pt;}
.ws18_c00450{word-spacing:16.960400pt;}
.ws36_c00450{word-spacing:21.093136pt;}
.ws3_c00450{word-spacing:21.435456pt;}
.ws21_c00450{word-spacing:24.647040pt;}
.ws1b_c00450{word-spacing:25.947856pt;}
.ws3d_c00450{word-spacing:26.869008pt;}
.ws16_c00450{word-spacing:26.881456pt;}
.ws27_c00450{word-spacing:31.997584pt;}
.ws38_c00450{word-spacing:33.298400pt;}
.ws1a_c00450{word-spacing:33.933248pt;}
.ws30_c00450{word-spacing:39.646880pt;}
.ws9_c00450{word-spacing:41.308688pt;}
.ws3b_c00450{word-spacing:42.889584pt;}
.ws14_c00450{word-spacing:42.902032pt;}
.ws26_c00450{word-spacing:44.159280pt;}
.wsb_c00450{word-spacing:44.458032pt;}
.ws1_c00450{word-spacing:44.551392pt;}
.ws2_c00450{word-spacing:44.794128pt;}
.ws2e_c00450{word-spacing:50.202784pt;}
.ws2b_c00450{word-spacing:51.845920pt;}
.ws4_c00450{word-spacing:59.856208pt;}
.ws28_c00450{word-spacing:67.517952pt;}
.ws19_c00450{word-spacing:78.073856pt;}
.ws2a_c00450{word-spacing:82.866336pt;}
.ws1d_c00450{word-spacing:94.075760pt;}
._1_c00450{margin-left:-1.008288pt;}
._0_c00450{width:0.989616pt;}
.fs0_c00450{font-size:62.240000pt;}
.y0_c00450{bottom:0.000000pt;}
.y2_c00450{bottom:97.547527pt;}
.y1_c00450{bottom:115.387067pt;}
.y3d_c00450{bottom:144.987067pt;}
.y21_c00450{bottom:163.144819pt;}
.y3c_c00450{bottom:171.787067pt;}
.y20_c00450{bottom:190.024719pt;}
.y3b_c00450{bottom:198.667067pt;}
.y1f_c00450{bottom:216.744351pt;}
.y3a_c00450{bottom:225.467067pt;}
.y1e_c00450{bottom:243.624251pt;}
.y39_c00450{bottom:252.347067pt;}
.y1d_c00450{bottom:270.424795pt;}
.y38_c00450{bottom:279.147067pt;}
.y1c_c00450{bottom:297.304695pt;}
.y37_c00450{bottom:306.027067pt;}
.y1b_c00450{bottom:324.105239pt;}
.y36_c00450{bottom:332.827067pt;}
.y1a_c00450{bottom:350.985139pt;}
.y35_c00450{bottom:359.707067pt;}
.y19_c00450{bottom:377.785683pt;}
.y34_c00450{bottom:386.507067pt;}
.y18_c00450{bottom:404.665583pt;}
.y33_c00450{bottom:413.387067pt;}
.y17_c00450{bottom:431.466127pt;}
.y32_c00450{bottom:440.187200pt;}
.y16_c00450{bottom:458.346027pt;}
.y31_c00450{bottom:467.067200pt;}
.y15_c00450{bottom:485.146571pt;}
.y30_c00450{bottom:493.867067pt;}
.y14_c00450{bottom:512.026471pt;}
.y2f_c00450{bottom:520.747067pt;}
.y13_c00450{bottom:538.827015pt;}
.y2e_c00450{bottom:547.547067pt;}
.y12_c00450{bottom:565.706915pt;}
.y2d_c00450{bottom:574.427067pt;}
.y11_c00450{bottom:592.586815pt;}
.y2c_c00450{bottom:601.227067pt;}
.y10_c00450{bottom:619.387359pt;}
.y2b_c00450{bottom:628.107067pt;}
.y2a_c00450{bottom:654.907067pt;}
.yf_c00450{bottom:664.267067pt;}
.y29_c00450{bottom:681.787067pt;}
.ye_c00450{bottom:691.227067pt;}
.y28_c00450{bottom:708.587067pt;}
.yd_c00450{bottom:718.027067pt;}
.y27_c00450{bottom:735.467067pt;}
.yc_c00450{bottom:744.907067pt;}
.y26_c00450{bottom:762.347067pt;}
.yb_c00450{bottom:771.707067pt;}
.y25_c00450{bottom:789.147200pt;}
.ya_c00450{bottom:798.587067pt;}
.y24_c00450{bottom:815.947067pt;}
.y9_c00450{bottom:825.387067pt;}
.y8_c00450{bottom:852.267067pt;}
.y23_c00450{bottom:860.907067pt;}
.y7_c00450{bottom:879.067067pt;}
.y22_c00450{bottom:905.867067pt;}
.y6_c00450{bottom:905.947067pt;}
.y5_c00450{bottom:932.747067pt;}
.y4_c00450{bottom:959.627067pt;}
.y3_c00450{bottom:986.427067pt;}
.h3_c00450{height:55.645234pt;}
.h1_c00450{height:55.797187pt;}
.h2_c00450{height:56.192266pt;}
.h0_c00450{height:1122.666667pt;}
.w0_c00450{width:793.333333pt;}
.x0_c00450{left:0.000000pt;}
.x2_c00450{left:73.520052pt;}
.x3_c00450{left:121.120000pt;}
.x1_c00450{left:383.760000pt;}
.x4_c00450{left:399.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_683a3d915b5b52c829a476df.woff2')format("woff");}.ff1_c00451{font-family:ff1_c00451;line-height:1.106934;font-style:normal;font-weight:normal;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_8bad5d95bcd8a476bda1a822.woff2')format("woff");}.ff2_c00451{font-family:ff2_c00451;line-height:1.104492;font-style:normal;font-weight:normal;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_4df4c291b9884fcec27d34c6.woff2')format("woff");}.ff3_c00451{font-family:ff3_c00451;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00451{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00451{vertical-align:0.000000px;}
.v1_c00451{vertical-align:32.399406px;}
.ls5_c00451{letter-spacing:-0.063018px;}
.lsd_c00451{letter-spacing:-0.056016px;}
.ls7_c00451{letter-spacing:-0.049014px;}
.lse_c00451{letter-spacing:-0.035010px;}
.ls9_c00451{letter-spacing:-0.028008px;}
.ls8_c00451{letter-spacing:-0.021006px;}
.lsa_c00451{letter-spacing:-0.014004px;}
.lsc_c00451{letter-spacing:-0.007002px;}
.ls6_c00451{letter-spacing:0.000000px;}
.ls3_c00451{letter-spacing:0.007002px;}
.ls4_c00451{letter-spacing:0.014004px;}
.ls0_c00451{letter-spacing:0.023281px;}
.ls1_c00451{letter-spacing:0.028008px;}
.ls2_c00451{letter-spacing:0.084024px;}
.lsb_c00451{letter-spacing:0.091026px;}
.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:-12.967628px;}
.ws9_c00451{word-spacing:-0.105030px;}
.ws17_c00451{word-spacing:-0.007002px;}
.ws1_c00451{word-spacing:0.000000px;}
.wsb_c00451{word-spacing:0.007002px;}
.wsa_c00451{word-spacing:0.014004px;}
.wse_c00451{word-spacing:0.042012px;}
.ws10_c00451{word-spacing:0.336096px;}
.ws11_c00451{word-spacing:0.364104px;}
.ws6_c00451{word-spacing:0.371106px;}
.ws16_c00451{word-spacing:3.262932px;}
.ws5_c00451{word-spacing:3.585024px;}
.wsc_c00451{word-spacing:4.677336px;}
.ws14_c00451{word-spacing:6.091740px;}
.ws15_c00451{word-spacing:6.133752px;}
.wsf_c00451{word-spacing:6.462846px;}
.ws4_c00451{word-spacing:22.329378px;}
.ws13_c00451{word-spacing:24.436980px;}
.ws12_c00451{word-spacing:24.499998px;}
.wsd_c00451{word-spacing:27.713916px;}
.ws2_c00451{word-spacing:44.266644px;}
.ws7_c00451{word-spacing:79.514712px;}
.ws3_c00451{word-spacing:83.911968px;}
.ws8_c00451{word-spacing:100.800792px;}
._0_c00451{margin-left:-1.183338px;}
._1_c00451{width:1.036296px;}
._3_c00451{width:3.416976px;}
._2_c00451{width:8.283366px;}
.fc0_c00451{color:rgb(0,0,0);}
.fs1_c00451{font-size:46.562400px;}
.fs0_c00451{font-size:70.020000px;}
.y0_c00451{bottom:0.000000px;}
.y2_c00451{bottom:109.740968px;}
.y1_c00451{bottom:129.810450px;}
.y1b_c00451{bottom:179.219950px;}
.y1a_c00451{bottom:209.370563px;}
.y19_c00451{bottom:239.608308px;}
.y18_c00451{bottom:269.758920px;}
.y17_c00451{bottom:299.998807px;}
.y16_c00451{bottom:330.149419px;}
.y15_c00451{bottom:360.389307px;}
.y14_c00451{bottom:390.539919px;}
.y13_c00451{bottom:420.779806px;}
.y12_c00451{bottom:450.930418px;}
.y11_c00451{bottom:481.170306px;}
.y10_c00451{bottom:511.320918px;}
.yf_c00451{bottom:537.690450px;}
.ye_c00451{bottom:867.449950px;}
.yd_c00451{bottom:897.689838px;}
.yc_c00451{bottom:927.840450px;}
.y8_c00451{bottom:958.799838px;}
.y7_c00451{bottom:988.950599px;}
.y6_c00451{bottom:1019.190486px;}
.yb_c00451{bottom:1049.340450px;}
.y5_c00451{bottom:1049.341098px;}
.ya_c00451{bottom:1079.580450px;}
.y4_c00451{bottom:1079.580985px;}
.y9_c00451{bottom:1109.730450px;}
.y3_c00451{bottom:1109.731597px;}
.h2_c00451{height:62.600889px;}
.h1_c00451{height:62.771836px;}
.h4_c00451{height:63.216299px;}
.h5_c00451{height:73.677354px;}
.h3_c00451{height:74.028192px;}
.h0_c00451{height:1263.000000px;}
.w0_c00451{width:892.500000px;}
.x0_c00451{left:0.000000px;}
.x2_c00451{left:82.710059px;}
.x3_c00451{left:136.259604px;}
.x7_c00451{left:162.540671px;}
.x6_c00451{left:283.500221px;}
.x1_c00451{left:431.730000px;}
.x5_c00451{left:446.400000px;}
.x4_c00451{left:449.280000px;}
.x8_c00451{left:752.940000px;}
@media print{
.v0_c00451{vertical-align:0.000000pt;}
.v1_c00451{vertical-align:28.799472pt;}
.ls5_c00451{letter-spacing:-0.056016pt;}
.lsd_c00451{letter-spacing:-0.049792pt;}
.ls7_c00451{letter-spacing:-0.043568pt;}
.lse_c00451{letter-spacing:-0.031120pt;}
.ls9_c00451{letter-spacing:-0.024896pt;}
.ls8_c00451{letter-spacing:-0.018672pt;}
.lsa_c00451{letter-spacing:-0.012448pt;}
.lsc_c00451{letter-spacing:-0.006224pt;}
.ls6_c00451{letter-spacing:0.000000pt;}
.ls3_c00451{letter-spacing:0.006224pt;}
.ls4_c00451{letter-spacing:0.012448pt;}
.ls0_c00451{letter-spacing:0.020694pt;}
.ls1_c00451{letter-spacing:0.024896pt;}
.ls2_c00451{letter-spacing:0.074688pt;}
.lsb_c00451{letter-spacing:0.080912pt;}
.ws0_c00451{word-spacing:-11.526781pt;}
.ws9_c00451{word-spacing:-0.093360pt;}
.ws17_c00451{word-spacing:-0.006224pt;}
.ws1_c00451{word-spacing:0.000000pt;}
.wsb_c00451{word-spacing:0.006224pt;}
.wsa_c00451{word-spacing:0.012448pt;}
.wse_c00451{word-spacing:0.037344pt;}
.ws10_c00451{word-spacing:0.298752pt;}
.ws11_c00451{word-spacing:0.323648pt;}
.ws6_c00451{word-spacing:0.329872pt;}
.ws16_c00451{word-spacing:2.900384pt;}
.ws5_c00451{word-spacing:3.186688pt;}
.wsc_c00451{word-spacing:4.157632pt;}
.ws14_c00451{word-spacing:5.414880pt;}
.ws15_c00451{word-spacing:5.452224pt;}
.wsf_c00451{word-spacing:5.744752pt;}
.ws4_c00451{word-spacing:19.848336pt;}
.ws13_c00451{word-spacing:21.721760pt;}
.ws12_c00451{word-spacing:21.777776pt;}
.wsd_c00451{word-spacing:24.634592pt;}
.ws2_c00451{word-spacing:39.348128pt;}
.ws7_c00451{word-spacing:70.679744pt;}
.ws3_c00451{word-spacing:74.588416pt;}
.ws8_c00451{word-spacing:89.600704pt;}
._0_c00451{margin-left:-1.051856pt;}
._1_c00451{width:0.921152pt;}
._3_c00451{width:3.037312pt;}
._2_c00451{width:7.362992pt;}
.fs1_c00451{font-size:41.388800pt;}
.fs0_c00451{font-size:62.240000pt;}
.y0_c00451{bottom:0.000000pt;}
.y2_c00451{bottom:97.547527pt;}
.y1_c00451{bottom:115.387067pt;}
.y1b_c00451{bottom:159.306623pt;}
.y1a_c00451{bottom:186.107167pt;}
.y19_c00451{bottom:212.985163pt;}
.y18_c00451{bottom:239.785707pt;}
.y17_c00451{bottom:266.665607pt;}
.y16_c00451{bottom:293.466151pt;}
.y15_c00451{bottom:320.346051pt;}
.y14_c00451{bottom:347.146595pt;}
.y13_c00451{bottom:374.026495pt;}
.y12_c00451{bottom:400.827039pt;}
.y11_c00451{bottom:427.706939pt;}
.y10_c00451{bottom:454.507483pt;}
.yf_c00451{bottom:477.947067pt;}
.ye_c00451{bottom:771.066623pt;}
.yd_c00451{bottom:797.946523pt;}
.yc_c00451{bottom:824.747067pt;}
.y8_c00451{bottom:852.266523pt;}
.y7_c00451{bottom:879.067199pt;}
.y6_c00451{bottom:905.947099pt;}
.yb_c00451{bottom:932.747067pt;}
.y5_c00451{bottom:932.747643pt;}
.ya_c00451{bottom:959.627067pt;}
.y4_c00451{bottom:959.627543pt;}
.y9_c00451{bottom:986.427067pt;}
.y3_c00451{bottom:986.428087pt;}
.h2_c00451{height:55.645234pt;}
.h1_c00451{height:55.797187pt;}
.h4_c00451{height:56.192266pt;}
.h5_c00451{height:65.490982pt;}
.h3_c00451{height:65.802838pt;}
.h0_c00451{height:1122.666667pt;}
.w0_c00451{width:793.333333pt;}
.x0_c00451{left:0.000000pt;}
.x2_c00451{left:73.520052pt;}
.x3_c00451{left:121.119648pt;}
.x7_c00451{left:144.480596pt;}
.x6_c00451{left:252.000196pt;}
.x1_c00451{left:383.760000pt;}
.x5_c00451{left:396.800000pt;}
.x4_c00451{left:399.360000pt;}
.x8_c00451{left:669.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b2303bb8c139e6720207de2c.woff2')format("woff");}.ff1_c00452{font-family:ff1_c00452;line-height:1.106934;font-style:normal;font-weight:normal;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_c6b29d68facebb757f72c0f6.woff2')format("woff");}.ff2_c00452{font-family:ff2_c00452;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00452;src:url('chunks/assets/font_cb0befdc16bd4082fc9307b6.woff2')format("woff");}.ff3_c00452{font-family:ff3_c00452;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00452{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00452{vertical-align:0.000000px;}
.v1_c00452{vertical-align:32.400000px;}
.ls3_c00452{letter-spacing:-0.063018px;}
.ls5_c00452{letter-spacing:-0.049014px;}
.ls7_c00452{letter-spacing:-0.028008px;}
.ls6_c00452{letter-spacing:-0.014004px;}
.ls8_c00452{letter-spacing:-0.007002px;}
.ls4_c00452{letter-spacing:0.000000px;}
.ls1_c00452{letter-spacing:0.014004px;}
.ls2_c00452{letter-spacing:0.023281px;}
.ls0_c00452{letter-spacing:0.084024px;}
.sc__c00452{text-shadow:none;}
.sc0_c00452{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00452{-webkit-text-stroke:0px transparent;}
.sc0_c00452{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00452{word-spacing:-19.402542px;}
.ws0_c00452{word-spacing:-12.967628px;}
.ws4_c00452{word-spacing:-0.014004px;}
.ws2_c00452{word-spacing:0.000000px;}
.ws7_c00452{word-spacing:0.007002px;}
.ws6_c00452{word-spacing:0.014004px;}
.ws3_c00452{word-spacing:0.035010px;}
.ws9_c00452{word-spacing:0.364104px;}
.wsf_c00452{word-spacing:6.490854px;}
.wsa_c00452{word-spacing:8.990568px;}
.wsb_c00452{word-spacing:14.732208px;}
.ws5_c00452{word-spacing:21.958272px;}
.wse_c00452{word-spacing:26.271504px;}
.wsd_c00452{word-spacing:26.292510px;}
.ws8_c00452{word-spacing:27.006714px;}
.ws10_c00452{word-spacing:30.976848px;}
.wsc_c00452{word-spacing:44.623746px;}
._2_c00452{margin-left:-1.155330px;}
._0_c00452{width:1.036296px;}
._1_c00452{width:8.283366px;}
.fc0_c00452{color:rgb(0,0,0);}
.fs1_c00452{font-size:46.562400px;}
.fs0_c00452{font-size:70.020000px;}
.y0_c00452{bottom:0.000000px;}
.y2_c00452{bottom:109.740968px;}
.y1_c00452{bottom:129.810450px;}
.y19_c00452{bottom:180.569942px;}
.y18_c00452{bottom:200.730450px;}
.y17_c00452{bottom:231.690450px;}
.y16_c00452{bottom:261.930450px;}
.y15_c00452{bottom:292.080450px;}
.y14_c00452{bottom:322.320450px;}
.y13_c00452{bottom:352.470450px;}
.y12_c00452{bottom:382.710600px;}
.y11_c00452{bottom:412.860600px;}
.y10_c00452{bottom:443.100450px;}
.yf_c00452{bottom:473.250600px;}
.ye_c00452{bottom:503.490450px;}
.yd_c00452{bottom:533.640450px;}
.yc_c00452{bottom:563.880450px;}
.yb_c00452{bottom:594.030450px;}
.ya_c00452{bottom:624.270450px;}
.y9_c00452{bottom:654.420450px;}
.y8_c00452{bottom:684.660450px;}
.y7_c00452{bottom:711.030450px;}
.y6_c00452{bottom:1019.190450px;}
.y5_c00452{bottom:1049.340450px;}
.y4_c00452{bottom:1079.580450px;}
.y3_c00452{bottom:1109.730450px;}
.h3_c00452{height:62.600889px;}
.h1_c00452{height:62.771836px;}
.h2_c00452{height:63.216299px;}
.h5_c00452{height:73.782464px;}
.h4_c00452{height:74.028786px;}
.h0_c00452{height:1263.000000px;}
.w0_c00452{width:892.500000px;}
.x0_c00452{left:0.000000px;}
.x2_c00452{left:82.710059px;}
.x5_c00452{left:136.260000px;}
.x6_c00452{left:209.970000px;}
.x4_c00452{left:338.940000px;}
.x1_c00452{left:431.730000px;}
.x3_c00452{left:446.400000px;}
.x7_c00452{left:740.700000px;}
@media print{
.v0_c00452{vertical-align:0.000000pt;}
.v1_c00452{vertical-align:28.800000pt;}
.ls3_c00452{letter-spacing:-0.056016pt;}
.ls5_c00452{letter-spacing:-0.043568pt;}
.ls7_c00452{letter-spacing:-0.024896pt;}
.ls6_c00452{letter-spacing:-0.012448pt;}
.ls8_c00452{letter-spacing:-0.006224pt;}
.ls4_c00452{letter-spacing:0.000000pt;}
.ls1_c00452{letter-spacing:0.012448pt;}
.ls2_c00452{letter-spacing:0.020694pt;}
.ls0_c00452{letter-spacing:0.074688pt;}
.ws1_c00452{word-spacing:-17.246704pt;}
.ws0_c00452{word-spacing:-11.526781pt;}
.ws4_c00452{word-spacing:-0.012448pt;}
.ws2_c00452{word-spacing:0.000000pt;}
.ws7_c00452{word-spacing:0.006224pt;}
.ws6_c00452{word-spacing:0.012448pt;}
.ws3_c00452{word-spacing:0.031120pt;}
.ws9_c00452{word-spacing:0.323648pt;}
.wsf_c00452{word-spacing:5.769648pt;}
.wsa_c00452{word-spacing:7.991616pt;}
.wsb_c00452{word-spacing:13.095296pt;}
.ws5_c00452{word-spacing:19.518464pt;}
.wse_c00452{word-spacing:23.352448pt;}
.wsd_c00452{word-spacing:23.371120pt;}
.ws8_c00452{word-spacing:24.005968pt;}
.ws10_c00452{word-spacing:27.534976pt;}
.wsc_c00452{word-spacing:39.665552pt;}
._2_c00452{margin-left:-1.026960pt;}
._0_c00452{width:0.921152pt;}
._1_c00452{width:7.362992pt;}
.fs1_c00452{font-size:41.388800pt;}
.fs0_c00452{font-size:62.240000pt;}
.y0_c00452{bottom:0.000000pt;}
.y2_c00452{bottom:97.547527pt;}
.y1_c00452{bottom:115.387067pt;}
.y19_c00452{bottom:160.506615pt;}
.y18_c00452{bottom:178.427067pt;}
.y17_c00452{bottom:205.947067pt;}
.y16_c00452{bottom:232.827067pt;}
.y15_c00452{bottom:259.627067pt;}
.y14_c00452{bottom:286.507067pt;}
.y13_c00452{bottom:313.307067pt;}
.y12_c00452{bottom:340.187200pt;}
.y11_c00452{bottom:366.987200pt;}
.y10_c00452{bottom:393.867067pt;}
.yf_c00452{bottom:420.667200pt;}
.ye_c00452{bottom:447.547067pt;}
.yd_c00452{bottom:474.347067pt;}
.yc_c00452{bottom:501.227067pt;}
.yb_c00452{bottom:528.027067pt;}
.ya_c00452{bottom:554.907067pt;}
.y9_c00452{bottom:581.707067pt;}
.y8_c00452{bottom:608.587067pt;}
.y7_c00452{bottom:632.027067pt;}
.y6_c00452{bottom:905.947067pt;}
.y5_c00452{bottom:932.747067pt;}
.y4_c00452{bottom:959.627067pt;}
.y3_c00452{bottom:986.427067pt;}
.h3_c00452{height:55.645234pt;}
.h1_c00452{height:55.797187pt;}
.h2_c00452{height:56.192266pt;}
.h5_c00452{height:65.584413pt;}
.h4_c00452{height:65.803366pt;}
.h0_c00452{height:1122.666667pt;}
.w0_c00452{width:793.333333pt;}
.x0_c00452{left:0.000000pt;}
.x2_c00452{left:73.520052pt;}
.x5_c00452{left:121.120000pt;}
.x6_c00452{left:186.640000pt;}
.x4_c00452{left:301.280000pt;}
.x1_c00452{left:383.760000pt;}
.x3_c00452{left:396.800000pt;}
.x7_c00452{left:658.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_001bf957f754efa326fa4121.woff2')format("woff");}.ff1_c00453{font-family:ff1_c00453;line-height:1.106934;font-style:normal;font-weight:normal;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_543062c935db9421447af0cd.woff2')format("woff");}.ff2_c00453{font-family:ff2_c00453;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00453;src:url('chunks/assets/font_d1eed1efe9ce9b1951bed1fc.woff2')format("woff");}.ff3_c00453{font-family:ff3_c00453;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00453{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00453{vertical-align:0.000000px;}
.ls7_c00453{letter-spacing:-0.063018px;}
.ls9_c00453{letter-spacing:-0.056016px;}
.lsd_c00453{letter-spacing:-0.049014px;}
.ls10_c00453{letter-spacing:-0.028008px;}
.lsc_c00453{letter-spacing:-0.021006px;}
.lsa_c00453{letter-spacing:-0.014004px;}
.lsf_c00453{letter-spacing:-0.007597px;}
.lsb_c00453{letter-spacing:-0.007002px;}
.ls8_c00453{letter-spacing:0.000000px;}
.ls2_c00453{letter-spacing:0.007002px;}
.ls5_c00453{letter-spacing:0.014004px;}
.ls3_c00453{letter-spacing:0.021006px;}
.ls6_c00453{letter-spacing:0.028008px;}
.ls1_c00453{letter-spacing:0.035010px;}
.ls0_c00453{letter-spacing:0.056016px;}
.lse_c00453{letter-spacing:0.238068px;}
.ls4_c00453{letter-spacing:0.343098px;}
.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;}
}
.wse_c00453{word-spacing:-0.609174px;}
.ws1_c00453{word-spacing:-0.070020px;}
.ws0_c00453{word-spacing:0.000000px;}
.wsf_c00453{word-spacing:0.136749px;}
.ws13_c00453{word-spacing:0.329094px;}
.ws14_c00453{word-spacing:0.672192px;}
.ws1c_c00453{word-spacing:0.721206px;}
.ws7_c00453{word-spacing:1.428408px;}
.ws6_c00453{word-spacing:1.449414px;}
.ws8_c00453{word-spacing:2.499714px;}
.ws9_c00453{word-spacing:2.520720px;}
.wsb_c00453{word-spacing:3.206916px;}
.wsa_c00453{word-spacing:3.234924px;}
.ws15_c00453{word-spacing:5.776650px;}
.ws5_c00453{word-spacing:7.555158px;}
.ws4_c00453{word-spacing:7.562160px;}
.ws19_c00453{word-spacing:14.375106px;}
.wsc_c00453{word-spacing:14.753214px;}
.ws1b_c00453{word-spacing:14.767218px;}
.wsd_c00453{word-spacing:15.110316px;}
.ws1a_c00453{word-spacing:15.131322px;}
.ws3_c00453{word-spacing:16.510716px;}
.ws2_c00453{word-spacing:16.601742px;}
.ws18_c00453{word-spacing:20.116746px;}
.ws16_c00453{word-spacing:20.123748px;}
.ws17_c00453{word-spacing:20.158758px;}
.ws10_c00453{word-spacing:22.308372px;}
.ws11_c00453{word-spacing:22.329378px;}
.ws12_c00453{word-spacing:51.135606px;}
._1_c00453{margin-left:-1.092312px;}
._0_c00453{width:1.225350px;}
._2_c00453{width:2205.721026px;}
.fc0_c00453{color:rgb(0,0,0);}
.fs0_c00453{font-size:70.020000px;}
.fs1_c00453{font-size:75.971400px;}
.y0_c00453{bottom:0.000000px;}
.y2_c00453{bottom:109.740968px;}
.y1_c00453{bottom:129.810450px;}
.y20_c00453{bottom:163.919176px;}
.y1f_c00453{bottom:194.159064px;}
.y1e_c00453{bottom:224.309676px;}
.y1d_c00453{bottom:254.549563px;}
.y1c_c00453{bottom:284.789451px;}
.y1b_c00453{bottom:314.940063px;}
.y1a_c00453{bottom:345.179950px;}
.y19_c00453{bottom:375.330562px;}
.y18_c00453{bottom:405.570450px;}
.y17_c00453{bottom:430.321222px;}
.y16_c00453{bottom:469.560450px;}
.y15_c00453{bottom:508.620400px;}
.y14_c00453{bottom:556.319775px;}
.y13_c00453{bottom:586.559663px;}
.y12_c00453{bottom:616.710275px;}
.y11_c00453{bottom:646.950162px;}
.y10_c00453{bottom:677.100774px;}
.yf_c00453{bottom:707.340662px;}
.ye_c00453{bottom:737.491274px;}
.yd_c00453{bottom:767.731161px;}
.yc_c00453{bottom:797.881773px;}
.yb_c00453{bottom:828.121660px;}
.ya_c00453{bottom:878.611332px;}
.y9_c00453{bottom:908.851219px;}
.y8_c00453{bottom:939.091107px;}
.y7_c00453{bottom:969.241719px;}
.y6_c00453{bottom:999.481606px;}
.y5_c00453{bottom:1029.632218px;}
.y4_c00453{bottom:1059.872106px;}
.y3_c00453{bottom:1110.361778px;}
.h3_c00453{height:62.600889px;}
.h1_c00453{height:62.771836px;}
.h2_c00453{height:63.216299px;}
.h4_c00453{height:68.589413px;}
.h0_c00453{height:1263.000000px;}
.w0_c00453{width:892.500000px;}
.x0_c00453{left:0.000000px;}
.x2_c00453{left:82.710059px;}
.x3_c00453{left:387.449352px;}
.x1_c00453{left:431.730000px;}
@media print{
.v0_c00453{vertical-align:0.000000pt;}
.ls7_c00453{letter-spacing:-0.056016pt;}
.ls9_c00453{letter-spacing:-0.049792pt;}
.lsd_c00453{letter-spacing:-0.043568pt;}
.ls10_c00453{letter-spacing:-0.024896pt;}
.lsc_c00453{letter-spacing:-0.018672pt;}
.lsa_c00453{letter-spacing:-0.012448pt;}
.lsf_c00453{letter-spacing:-0.006753pt;}
.lsb_c00453{letter-spacing:-0.006224pt;}
.ls8_c00453{letter-spacing:0.000000pt;}
.ls2_c00453{letter-spacing:0.006224pt;}
.ls5_c00453{letter-spacing:0.012448pt;}
.ls3_c00453{letter-spacing:0.018672pt;}
.ls6_c00453{letter-spacing:0.024896pt;}
.ls1_c00453{letter-spacing:0.031120pt;}
.ls0_c00453{letter-spacing:0.049792pt;}
.lse_c00453{letter-spacing:0.211616pt;}
.ls4_c00453{letter-spacing:0.304976pt;}
.wse_c00453{word-spacing:-0.541488pt;}
.ws1_c00453{word-spacing:-0.062240pt;}
.ws0_c00453{word-spacing:0.000000pt;}
.wsf_c00453{word-spacing:0.121554pt;}
.ws13_c00453{word-spacing:0.292528pt;}
.ws14_c00453{word-spacing:0.597504pt;}
.ws1c_c00453{word-spacing:0.641072pt;}
.ws7_c00453{word-spacing:1.269696pt;}
.ws6_c00453{word-spacing:1.288368pt;}
.ws8_c00453{word-spacing:2.221968pt;}
.ws9_c00453{word-spacing:2.240640pt;}
.wsb_c00453{word-spacing:2.850592pt;}
.wsa_c00453{word-spacing:2.875488pt;}
.ws15_c00453{word-spacing:5.134800pt;}
.ws5_c00453{word-spacing:6.715696pt;}
.ws4_c00453{word-spacing:6.721920pt;}
.ws19_c00453{word-spacing:12.777872pt;}
.wsc_c00453{word-spacing:13.113968pt;}
.ws1b_c00453{word-spacing:13.126416pt;}
.wsd_c00453{word-spacing:13.431392pt;}
.ws1a_c00453{word-spacing:13.450064pt;}
.ws3_c00453{word-spacing:14.676192pt;}
.ws2_c00453{word-spacing:14.757104pt;}
.ws18_c00453{word-spacing:17.881552pt;}
.ws16_c00453{word-spacing:17.887776pt;}
.ws17_c00453{word-spacing:17.918896pt;}
.ws10_c00453{word-spacing:19.829664pt;}
.ws11_c00453{word-spacing:19.848336pt;}
.ws12_c00453{word-spacing:45.453872pt;}
._1_c00453{margin-left:-0.970944pt;}
._0_c00453{width:1.089200pt;}
._2_c00453{width:1960.640912pt;}
.fs0_c00453{font-size:62.240000pt;}
.fs1_c00453{font-size:67.530133pt;}
.y0_c00453{bottom:0.000000pt;}
.y2_c00453{bottom:97.547527pt;}
.y1_c00453{bottom:115.387067pt;}
.y20_c00453{bottom:145.705935pt;}
.y1f_c00453{bottom:172.585835pt;}
.y1e_c00453{bottom:199.386379pt;}
.y1d_c00453{bottom:226.266279pt;}
.y1c_c00453{bottom:253.146179pt;}
.y1b_c00453{bottom:279.946723pt;}
.y1a_c00453{bottom:306.826623pt;}
.y19_c00453{bottom:333.627167pt;}
.y18_c00453{bottom:360.507067pt;}
.y17_c00453{bottom:382.507753pt;}
.y16_c00453{bottom:417.387067pt;}
.y15_c00453{bottom:452.107023pt;}
.y14_c00453{bottom:494.506467pt;}
.y13_c00453{bottom:521.386367pt;}
.y12_c00453{bottom:548.186911pt;}
.y11_c00453{bottom:575.066811pt;}
.y10_c00453{bottom:601.867355pt;}
.yf_c00453{bottom:628.747255pt;}
.ye_c00453{bottom:655.547799pt;}
.yd_c00453{bottom:682.427699pt;}
.yc_c00453{bottom:709.228243pt;}
.yb_c00453{bottom:736.108143pt;}
.ya_c00453{bottom:780.987851pt;}
.y9_c00453{bottom:807.867751pt;}
.y8_c00453{bottom:834.747651pt;}
.y7_c00453{bottom:861.548195pt;}
.y6_c00453{bottom:888.428095pt;}
.y5_c00453{bottom:915.228639pt;}
.y4_c00453{bottom:942.108539pt;}
.y3_c00453{bottom:986.988247pt;}
.h3_c00453{height:55.645234pt;}
.h1_c00453{height:55.797187pt;}
.h2_c00453{height:56.192266pt;}
.h4_c00453{height:60.968367pt;}
.h0_c00453{height:1122.666667pt;}
.w0_c00453{width:793.333333pt;}
.x0_c00453{left:0.000000pt;}
.x2_c00453{left:73.520052pt;}
.x3_c00453{left:344.399424pt;}
.x1_c00453{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7fa414ae9e1fdb57756a946d.woff2')format("woff");}.ff1_c00454{font-family:ff1_c00454;line-height:1.106934;font-style:normal;font-weight:normal;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_3dcb9f8bc15c6ddd11999957.woff2')format("woff");}.ff2_c00454{font-family:ff2_c00454;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00454{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00454{vertical-align:-32.399400px;}
.v0_c00454{vertical-align:0.000000px;}
.v1_c00454{vertical-align:32.397588px;}
.lse_c00454{letter-spacing:-0.335249px;}
.ls4_c00454{letter-spacing:-0.063018px;}
.lsd_c00454{letter-spacing:-0.056016px;}
.lsa_c00454{letter-spacing:-0.049014px;}
.ls6_c00454{letter-spacing:-0.042012px;}
.lsb_c00454{letter-spacing:-0.035010px;}
.ls7_c00454{letter-spacing:-0.028008px;}
.ls9_c00454{letter-spacing:-0.021006px;}
.ls8_c00454{letter-spacing:-0.014004px;}
.lsf_c00454{letter-spacing:-0.007002px;}
.ls5_c00454{letter-spacing:0.000000px;}
.ls3_c00454{letter-spacing:0.007002px;}
.ls0_c00454{letter-spacing:0.023281px;}
.ls2_c00454{letter-spacing:0.035010px;}
.ls1_c00454{letter-spacing:0.336096px;}
.lsc_c00454{letter-spacing:0.441126px;}
.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;}
}
.ws1_c00454{word-spacing:-19.906686px;}
.ws2_c00454{word-spacing:-19.465560px;}
.ws0_c00454{word-spacing:-12.967628px;}
.ws3_c00454{word-spacing:-12.609098px;}
.ws1c_c00454{word-spacing:-0.049014px;}
.ws4_c00454{word-spacing:0.000000px;}
.ws13_c00454{word-spacing:0.007002px;}
.ws1b_c00454{word-spacing:0.014004px;}
.wsd_c00454{word-spacing:0.021006px;}
.ws23_c00454{word-spacing:0.371106px;}
.ws10_c00454{word-spacing:0.721206px;}
.wsf_c00454{word-spacing:0.742212px;}
.ws24_c00454{word-spacing:0.770220px;}
.ws7_c00454{word-spacing:1.442412px;}
.ws6_c00454{word-spacing:2.534724px;}
.ws5_c00454{word-spacing:2.548728px;}
.wsc_c00454{word-spacing:3.634038px;}
.ws25_c00454{word-spacing:3.991140px;}
.ws22_c00454{word-spacing:5.755644px;}
.ws21_c00454{word-spacing:5.783652px;}
.ws17_c00454{word-spacing:6.490854px;}
.ws15_c00454{word-spacing:6.840954px;}
.ws1a_c00454{word-spacing:8.633466px;}
.ws19_c00454{word-spacing:8.689482px;}
.ws1d_c00454{word-spacing:9.011574px;}
.ws29_c00454{word-spacing:10.061874px;}
.ws11_c00454{word-spacing:10.446984px;}
.ws28_c00454{word-spacing:10.467990px;}
.ws12_c00454{word-spacing:10.839096px;}
.wse_c00454{word-spacing:11.882394px;}
.wsa_c00454{word-spacing:13.681908px;}
.wsb_c00454{word-spacing:13.688910px;}
.ws8_c00454{word-spacing:14.053014px;}
.ws9_c00454{word-spacing:14.417118px;}
.ws1f_c00454{word-spacing:15.831522px;}
.ws1e_c00454{word-spacing:15.852528px;}
.ws20_c00454{word-spacing:16.251642px;}
.ws16_c00454{word-spacing:16.944840px;}
.ws14_c00454{word-spacing:17.645040px;}
.ws18_c00454{word-spacing:18.723348px;}
.ws27_c00454{word-spacing:19.094454px;}
.ws26_c00454{word-spacing:27.734922px;}
._2_c00454{margin-left:-9.193626px;}
._1_c00454{margin-left:-1.225109px;}
._0_c00454{width:1.837350px;}
.fc0_c00454{color:rgb(0,0,0);}
.fs1_c00454{font-size:46.562400px;}
.fs0_c00454{font-size:70.020000px;}
.y0_c00454{bottom:0.000000px;}
.y2_c00454{bottom:109.740968px;}
.y1_c00454{bottom:129.810450px;}
.y1f_c00454{bottom:203.787952px;}
.y1e_c00454{bottom:233.938565px;}
.y1d_c00454{bottom:264.178452px;}
.y1c_c00454{bottom:294.329064px;}
.y1b_c00454{bottom:324.568952px;}
.y1a_c00454{bottom:354.808839px;}
.y19_c00454{bottom:384.959451px;}
.y18_c00454{bottom:415.199338px;}
.y17_c00454{bottom:445.349950px;}
.y16_c00454{bottom:475.589838px;}
.y15_c00454{bottom:505.738641px;}
.y14_c00454{bottom:535.889253px;}
.y13_c00454{bottom:566.039865px;}
.y12_c00454{bottom:596.279752px;}
.y11_c00454{bottom:646.861819px;}
.y10_c00454{bottom:677.101707px;}
.yf_c00454{bottom:707.341594px;}
.ye_c00454{bottom:757.831266px;}
.yd_c00454{bottom:788.071153px;}
.yc_c00454{bottom:818.311041px;}
.yb_c00454{bottom:848.370627px;}
.ya_c00454{bottom:899.039064px;}
.y9_c00454{bottom:929.278951px;}
.y8_c00454{bottom:959.518839px;}
.y7_c00454{bottom:989.669451px;}
.y6_c00454{bottom:1019.909339px;}
.y5_c00454{bottom:1050.059951px;}
.y4_c00454{bottom:1080.299838px;}
.y3_c00454{bottom:1110.451053px;}
.h3_c00454{height:62.600889px;}
.h1_c00454{height:62.771836px;}
.h5_c00454{height:73.776986px;}
.h2_c00454{height:74.026374px;}
.h4_c00454{height:74.148008px;}
.h6_c00454{height:74.150300px;}
.h0_c00454{height:1263.000000px;}
.w0_c00454{width:892.500000px;}
.x0_c00454{left:0.000000px;}
.x2_c00454{left:82.710059px;}
.x1_c00454{left:431.730000px;}
@media print{
.v2_c00454{vertical-align:-28.799467pt;}
.v0_c00454{vertical-align:0.000000pt;}
.v1_c00454{vertical-align:28.797856pt;}
.lse_c00454{letter-spacing:-0.297999pt;}
.ls4_c00454{letter-spacing:-0.056016pt;}
.lsd_c00454{letter-spacing:-0.049792pt;}
.lsa_c00454{letter-spacing:-0.043568pt;}
.ls6_c00454{letter-spacing:-0.037344pt;}
.lsb_c00454{letter-spacing:-0.031120pt;}
.ls7_c00454{letter-spacing:-0.024896pt;}
.ls9_c00454{letter-spacing:-0.018672pt;}
.ls8_c00454{letter-spacing:-0.012448pt;}
.lsf_c00454{letter-spacing:-0.006224pt;}
.ls5_c00454{letter-spacing:0.000000pt;}
.ls3_c00454{letter-spacing:0.006224pt;}
.ls0_c00454{letter-spacing:0.020694pt;}
.ls2_c00454{letter-spacing:0.031120pt;}
.ls1_c00454{letter-spacing:0.298752pt;}
.lsc_c00454{letter-spacing:0.392112pt;}
.ws1_c00454{word-spacing:-17.694832pt;}
.ws2_c00454{word-spacing:-17.302720pt;}
.ws0_c00454{word-spacing:-11.526781pt;}
.ws3_c00454{word-spacing:-11.208087pt;}
.ws1c_c00454{word-spacing:-0.043568pt;}
.ws4_c00454{word-spacing:0.000000pt;}
.ws13_c00454{word-spacing:0.006224pt;}
.ws1b_c00454{word-spacing:0.012448pt;}
.wsd_c00454{word-spacing:0.018672pt;}
.ws23_c00454{word-spacing:0.329872pt;}
.ws10_c00454{word-spacing:0.641072pt;}
.wsf_c00454{word-spacing:0.659744pt;}
.ws24_c00454{word-spacing:0.684640pt;}
.ws7_c00454{word-spacing:1.282144pt;}
.ws6_c00454{word-spacing:2.253088pt;}
.ws5_c00454{word-spacing:2.265536pt;}
.wsc_c00454{word-spacing:3.230256pt;}
.ws25_c00454{word-spacing:3.547680pt;}
.ws22_c00454{word-spacing:5.116128pt;}
.ws21_c00454{word-spacing:5.141024pt;}
.ws17_c00454{word-spacing:5.769648pt;}
.ws15_c00454{word-spacing:6.080848pt;}
.ws1a_c00454{word-spacing:7.674192pt;}
.ws19_c00454{word-spacing:7.723984pt;}
.ws1d_c00454{word-spacing:8.010288pt;}
.ws29_c00454{word-spacing:8.943888pt;}
.ws11_c00454{word-spacing:9.286208pt;}
.ws28_c00454{word-spacing:9.304880pt;}
.ws12_c00454{word-spacing:9.634752pt;}
.wse_c00454{word-spacing:10.562128pt;}
.wsa_c00454{word-spacing:12.161696pt;}
.wsb_c00454{word-spacing:12.167920pt;}
.ws8_c00454{word-spacing:12.491568pt;}
.ws9_c00454{word-spacing:12.815216pt;}
.ws1f_c00454{word-spacing:14.072464pt;}
.ws1e_c00454{word-spacing:14.091136pt;}
.ws20_c00454{word-spacing:14.445904pt;}
.ws16_c00454{word-spacing:15.062080pt;}
.ws14_c00454{word-spacing:15.684480pt;}
.ws18_c00454{word-spacing:16.642976pt;}
.ws27_c00454{word-spacing:16.972848pt;}
.ws26_c00454{word-spacing:24.653264pt;}
._2_c00454{margin-left:-8.172112pt;}
._1_c00454{margin-left:-1.088986pt;}
._0_c00454{width:1.633200pt;}
.fs1_c00454{font-size:41.388800pt;}
.fs0_c00454{font-size:62.240000pt;}
.y0_c00454{bottom:0.000000pt;}
.y2_c00454{bottom:97.547527pt;}
.y1_c00454{bottom:115.387067pt;}
.y1f_c00454{bottom:181.144847pt;}
.y1e_c00454{bottom:207.945391pt;}
.y1d_c00454{bottom:234.825291pt;}
.y1c_c00454{bottom:261.625835pt;}
.y1b_c00454{bottom:288.505735pt;}
.y1a_c00454{bottom:315.385635pt;}
.y19_c00454{bottom:342.186179pt;}
.y18_c00454{bottom:369.066079pt;}
.y17_c00454{bottom:395.866623pt;}
.y16_c00454{bottom:422.746523pt;}
.y15_c00454{bottom:449.545459pt;}
.y14_c00454{bottom:476.346003pt;}
.y13_c00454{bottom:503.146547pt;}
.y12_c00454{bottom:530.026447pt;}
.y11_c00454{bottom:574.988284pt;}
.y10_c00454{bottom:601.868184pt;}
.yf_c00454{bottom:628.748084pt;}
.ye_c00454{bottom:673.627792pt;}
.yd_c00454{bottom:700.507692pt;}
.yc_c00454{bottom:727.387592pt;}
.yb_c00454{bottom:754.107224pt;}
.ya_c00454{bottom:799.145835pt;}
.y9_c00454{bottom:826.025735pt;}
.y8_c00454{bottom:852.905635pt;}
.y7_c00454{bottom:879.706179pt;}
.y6_c00454{bottom:906.586079pt;}
.y5_c00454{bottom:933.386623pt;}
.y4_c00454{bottom:960.266523pt;}
.y3_c00454{bottom:987.067603pt;}
.h3_c00454{height:55.645234pt;}
.h1_c00454{height:55.797187pt;}
.h5_c00454{height:65.579543pt;}
.h2_c00454{height:65.801222pt;}
.h4_c00454{height:65.909341pt;}
.h6_c00454{height:65.911378pt;}
.h0_c00454{height:1122.666667pt;}
.w0_c00454{width:793.333333pt;}
.x0_c00454{left:0.000000pt;}
.x2_c00454{left:73.520052pt;}
.x1_c00454{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8c72d93bff25f691e6d9ddfe.woff2')format("woff");}.ff1_c00455{font-family:ff1_c00455;line-height:1.106934;font-style:normal;font-weight:normal;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_cebba03a34ca41ed4ea43a5c.woff2')format("woff");}.ff2_c00455{font-family:ff2_c00455;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00455;src:url('chunks/assets/font_f336d7c03eacfa36667c54f2.woff2')format("woff");}.ff3_c00455{font-family:ff3_c00455;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00455{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00455{vertical-align:0.000000px;}
.v1_c00455{vertical-align:32.048442px;}
.lsa_c00455{letter-spacing:-0.121554px;}
.ls5_c00455{letter-spacing:-0.063018px;}
.ls9_c00455{letter-spacing:-0.049014px;}
.lse_c00455{letter-spacing:-0.042012px;}
.ls8_c00455{letter-spacing:-0.035010px;}
.lsb_c00455{letter-spacing:-0.028008px;}
.lsf_c00455{letter-spacing:-0.021006px;}
.lsd_c00455{letter-spacing:-0.014004px;}
.ls7_c00455{letter-spacing:-0.007002px;}
.ls6_c00455{letter-spacing:0.000000px;}
.ls0_c00455{letter-spacing:0.007002px;}
.ls1_c00455{letter-spacing:0.023281px;}
.ls4_c00455{letter-spacing:0.028008px;}
.ls2_c00455{letter-spacing:0.056016px;}
.ls10_c00455{letter-spacing:0.084024px;}
.ls3_c00455{letter-spacing:0.539154px;}
.lsc_c00455{letter-spacing:1289.145222px;}
.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:-12.967628px;}
.wsd_c00455{word-spacing:-0.021006px;}
.ws1b_c00455{word-spacing:-0.014004px;}
.wsb_c00455{word-spacing:-0.007002px;}
.ws1_c00455{word-spacing:0.000000px;}
.ws10_c00455{word-spacing:0.035010px;}
.ws4_c00455{word-spacing:0.075971px;}
.wsc_c00455{word-spacing:0.357102px;}
.ws1f_c00455{word-spacing:0.364104px;}
.wsa_c00455{word-spacing:0.371106px;}
.ws16_c00455{word-spacing:1.008288px;}
.ws17_c00455{word-spacing:1.036296px;}
.ws18_c00455{word-spacing:1.344384px;}
.ws1e_c00455{word-spacing:2.520720px;}
.ws19_c00455{word-spacing:5.027436px;}
.ws2_c00455{word-spacing:6.469848px;}
.ws3_c00455{word-spacing:6.497856px;}
.wse_c00455{word-spacing:8.654472px;}
.wsf_c00455{word-spacing:8.661474px;}
.ws7_c00455{word-spacing:9.354672px;}
.ws13_c00455{word-spacing:10.825092px;}
.ws5_c00455{word-spacing:12.589596px;}
.ws6_c00455{word-spacing:12.617604px;}
.ws12_c00455{word-spacing:12.960702px;}
.ws11_c00455{word-spacing:12.988710px;}
.ws1a_c00455{word-spacing:14.396112px;}
.ws15_c00455{word-spacing:27.734922px;}
.ws14_c00455{word-spacing:28.085022px;}
.ws1c_c00455{word-spacing:30.584736px;}
.ws1d_c00455{word-spacing:30.619746px;}
.ws9_c00455{word-spacing:32.769360px;}
.ws8_c00455{word-spacing:32.776362px;}
._0_c00455{margin-left:-1.008288px;}
._1_c00455{width:1.029294px;}
.fc0_c00455{color:rgb(0,0,0);}
.fs2_c00455{font-size:46.562400px;}
.fs0_c00455{font-size:70.020000px;}
.fs1_c00455{font-size:75.971400px;}
.y0_c00455{bottom:0.000000px;}
.y2_c00455{bottom:109.740968px;}
.y1_c00455{bottom:129.810450px;}
.y20_c00455{bottom:221.339563px;}
.y1f_c00455{bottom:251.579451px;}
.y1e_c00455{bottom:281.730063px;}
.y1d_c00455{bottom:311.969950px;}
.y1c_c00455{bottom:342.120563px;}
.y1b_c00455{bottom:372.357340px;}
.y1a_c00455{bottom:402.507952px;}
.y19_c00455{bottom:432.658565px;}
.y18_c00455{bottom:462.898452px;}
.y17_c00455{bottom:493.049064px;}
.y16_c00455{bottom:523.288952px;}
.y15_c00455{bottom:553.439563px;}
.y14_c00455{bottom:583.679451px;}
.y13_c00455{bottom:613.830063px;}
.y12_c00455{bottom:644.069951px;}
.y11_c00455{bottom:674.220563px;}
.y10_c00455{bottom:704.458339px;}
.yf_c00455{bottom:734.608951px;}
.ye_c00455{bottom:764.848839px;}
.yd_c00455{bottom:794.999451px;}
.yc_c00455{bottom:825.239339px;}
.yb_c00455{bottom:855.389950px;}
.ya_c00455{bottom:885.629838px;}
.y9_c00455{bottom:915.780450px;}
.y8_c00455{bottom:940.530450px;}
.y7_c00455{bottom:989.670054px;}
.y6_c00455{bottom:1019.909942px;}
.y5_c00455{bottom:1050.060553px;}
.y4_c00455{bottom:1080.300441px;}
.y3_c00455{bottom:1110.451053px;}
.h5_c00455{height:62.600889px;}
.h1_c00455{height:62.771836px;}
.h3_c00455{height:63.216299px;}
.h2_c00455{height:68.589413px;}
.h6_c00455{height:73.681224px;}
.h4_c00455{height:73.790906px;}
.h0_c00455{height:1263.000000px;}
.w0_c00455{width:892.500000px;}
.x0_c00455{left:0.000000px;}
.x2_c00455{left:82.710059px;}
.x1_c00455{left:431.730000px;}
@media print{
.v0_c00455{vertical-align:0.000000pt;}
.v1_c00455{vertical-align:28.487504pt;}
.lsa_c00455{letter-spacing:-0.108048pt;}
.ls5_c00455{letter-spacing:-0.056016pt;}
.ls9_c00455{letter-spacing:-0.043568pt;}
.lse_c00455{letter-spacing:-0.037344pt;}
.ls8_c00455{letter-spacing:-0.031120pt;}
.lsb_c00455{letter-spacing:-0.024896pt;}
.lsf_c00455{letter-spacing:-0.018672pt;}
.lsd_c00455{letter-spacing:-0.012448pt;}
.ls7_c00455{letter-spacing:-0.006224pt;}
.ls6_c00455{letter-spacing:0.000000pt;}
.ls0_c00455{letter-spacing:0.006224pt;}
.ls1_c00455{letter-spacing:0.020694pt;}
.ls4_c00455{letter-spacing:0.024896pt;}
.ls2_c00455{letter-spacing:0.049792pt;}
.ls10_c00455{letter-spacing:0.074688pt;}
.ls3_c00455{letter-spacing:0.479248pt;}
.lsc_c00455{letter-spacing:1145.906864pt;}
.ws0_c00455{word-spacing:-11.526781pt;}
.wsd_c00455{word-spacing:-0.018672pt;}
.ws1b_c00455{word-spacing:-0.012448pt;}
.wsb_c00455{word-spacing:-0.006224pt;}
.ws1_c00455{word-spacing:0.000000pt;}
.ws10_c00455{word-spacing:0.031120pt;}
.ws4_c00455{word-spacing:0.067530pt;}
.wsc_c00455{word-spacing:0.317424pt;}
.ws1f_c00455{word-spacing:0.323648pt;}
.wsa_c00455{word-spacing:0.329872pt;}
.ws16_c00455{word-spacing:0.896256pt;}
.ws17_c00455{word-spacing:0.921152pt;}
.ws18_c00455{word-spacing:1.195008pt;}
.ws1e_c00455{word-spacing:2.240640pt;}
.ws19_c00455{word-spacing:4.468832pt;}
.ws2_c00455{word-spacing:5.750976pt;}
.ws3_c00455{word-spacing:5.775872pt;}
.wse_c00455{word-spacing:7.692864pt;}
.wsf_c00455{word-spacing:7.699088pt;}
.ws7_c00455{word-spacing:8.315264pt;}
.ws13_c00455{word-spacing:9.622304pt;}
.ws5_c00455{word-spacing:11.190752pt;}
.ws6_c00455{word-spacing:11.215648pt;}
.ws12_c00455{word-spacing:11.520624pt;}
.ws11_c00455{word-spacing:11.545520pt;}
.ws1a_c00455{word-spacing:12.796544pt;}
.ws15_c00455{word-spacing:24.653264pt;}
.ws14_c00455{word-spacing:24.964464pt;}
.ws1c_c00455{word-spacing:27.186432pt;}
.ws1d_c00455{word-spacing:27.217552pt;}
.ws9_c00455{word-spacing:29.128320pt;}
.ws8_c00455{word-spacing:29.134544pt;}
._0_c00455{margin-left:-0.896256pt;}
._1_c00455{width:0.914928pt;}
.fs2_c00455{font-size:41.388800pt;}
.fs0_c00455{font-size:62.240000pt;}
.fs1_c00455{font-size:67.530133pt;}
.y0_c00455{bottom:0.000000pt;}
.y2_c00455{bottom:97.547527pt;}
.y1_c00455{bottom:115.387067pt;}
.y20_c00455{bottom:196.746279pt;}
.y1f_c00455{bottom:223.626179pt;}
.y1e_c00455{bottom:250.426723pt;}
.y1d_c00455{bottom:277.306623pt;}
.y1c_c00455{bottom:304.107167pt;}
.y1b_c00455{bottom:330.984303pt;}
.y1a_c00455{bottom:357.784847pt;}
.y19_c00455{bottom:384.585391pt;}
.y18_c00455{bottom:411.465291pt;}
.y17_c00455{bottom:438.265835pt;}
.y16_c00455{bottom:465.145735pt;}
.y15_c00455{bottom:491.946279pt;}
.y14_c00455{bottom:518.826179pt;}
.y13_c00455{bottom:545.626723pt;}
.y12_c00455{bottom:572.506623pt;}
.y11_c00455{bottom:599.307167pt;}
.y10_c00455{bottom:626.185191pt;}
.yf_c00455{bottom:652.985735pt;}
.ye_c00455{bottom:679.865635pt;}
.yd_c00455{bottom:706.666179pt;}
.yc_c00455{bottom:733.546079pt;}
.yb_c00455{bottom:760.346623pt;}
.ya_c00455{bottom:787.226523pt;}
.y9_c00455{bottom:814.027067pt;}
.y8_c00455{bottom:836.027067pt;}
.y7_c00455{bottom:879.706715pt;}
.y6_c00455{bottom:906.586615pt;}
.y5_c00455{bottom:933.387159pt;}
.y4_c00455{bottom:960.267059pt;}
.y3_c00455{bottom:987.067603pt;}
.h5_c00455{height:55.645234pt;}
.h1_c00455{height:55.797187pt;}
.h3_c00455{height:56.192266pt;}
.h2_c00455{height:60.968367pt;}
.h6_c00455{height:65.494422pt;}
.h4_c00455{height:65.591916pt;}
.h0_c00455{height:1122.666667pt;}
.w0_c00455{width:793.333333pt;}
.x0_c00455{left:0.000000pt;}
.x2_c00455{left:73.520052pt;}
.x1_c00455{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9d193b212ec62584342dd694.woff2')format("woff");}.ff1_c00456{font-family:ff1_c00456;line-height:1.106934;font-style:normal;font-weight:normal;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_a7c00ff1a8fe27b849882281.woff2')format("woff");}.ff2_c00456{font-family:ff2_c00456;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00456{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00456{vertical-align:0.000000px;}
.v1_c00456{vertical-align:32.049576px;}
.ls6_c00456{letter-spacing:-0.063018px;}
.lsf_c00456{letter-spacing:-0.056016px;}
.lse_c00456{letter-spacing:-0.049014px;}
.ls8_c00456{letter-spacing:-0.042012px;}
.lsc_c00456{letter-spacing:-0.035010px;}
.lsa_c00456{letter-spacing:-0.028008px;}
.lsb_c00456{letter-spacing:-0.021006px;}
.ls9_c00456{letter-spacing:-0.014004px;}
.lsd_c00456{letter-spacing:-0.007002px;}
.ls7_c00456{letter-spacing:0.000000px;}
.ls4_c00456{letter-spacing:0.007002px;}
.ls1_c00456{letter-spacing:0.014004px;}
.ls5_c00456{letter-spacing:0.021006px;}
.ls2_c00456{letter-spacing:0.023281px;}
.ls3_c00456{letter-spacing:0.035010px;}
.ls0_c00456{letter-spacing:0.042012px;}
.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:-12.967628px;}
.ws1c_c00456{word-spacing:-0.014004px;}
.ws1_c00456{word-spacing:0.000000px;}
.ws18_c00456{word-spacing:0.021006px;}
.ws20_c00456{word-spacing:0.049014px;}
.ws10_c00456{word-spacing:0.350100px;}
.ws1e_c00456{word-spacing:0.357102px;}
.ws1f_c00456{word-spacing:0.728208px;}
.ws5_c00456{word-spacing:1.085310px;}
.ws6_c00456{word-spacing:1.099314px;}
.wsc_c00456{word-spacing:1.442412px;}
.ws14_c00456{word-spacing:1.456416px;}
.ws13_c00456{word-spacing:1.813518px;}
.ws24_c00456{word-spacing:2.128608px;}
.ws23_c00456{word-spacing:2.492712px;}
.wsd_c00456{word-spacing:2.898828px;}
.wsf_c00456{word-spacing:2.912832px;}
.ws21_c00456{word-spacing:4.299228px;}
.ws12_c00456{word-spacing:4.306230px;}
.ws11_c00456{word-spacing:4.362246px;}
.ws9_c00456{word-spacing:5.734638px;}
.wsa_c00456{word-spacing:5.769648px;}
.wsb_c00456{word-spacing:6.833952px;}
.ws1d_c00456{word-spacing:7.926264px;}
.ws17_c00456{word-spacing:8.647470px;}
.ws3_c00456{word-spacing:9.361674px;}
.ws4_c00456{word-spacing:9.375678px;}
.ws2_c00456{word-spacing:10.467990px;}
.ws22_c00456{word-spacing:12.617604px;}
.ws7_c00456{word-spacing:13.261788px;}
.ws8_c00456{word-spacing:13.688910px;}
.ws1b_c00456{word-spacing:14.039010px;}
.wse_c00456{word-spacing:14.767218px;}
.ws16_c00456{word-spacing:18.310230px;}
.ws15_c00456{word-spacing:18.359244px;}
.ws19_c00456{word-spacing:24.135894px;}
.ws1a_c00456{word-spacing:24.457986px;}
._0_c00456{margin-left:-1.358388px;}
._1_c00456{width:1.029294px;}
.fc0_c00456{color:rgb(0,0,0);}
.fs1_c00456{font-size:46.562400px;}
.fs0_c00456{font-size:70.020000px;}
.y0_c00456{bottom:0.000000px;}
.y2_c00456{bottom:109.740968px;}
.y1_c00456{bottom:129.810450px;}
.y22_c00456{bottom:174.448951px;}
.y21_c00456{bottom:204.688839px;}
.y20_c00456{bottom:234.839451px;}
.y1f_c00456{bottom:265.079339px;}
.y1e_c00456{bottom:295.229951px;}
.y1d_c00456{bottom:325.469838px;}
.y1c_c00456{bottom:355.618591px;}
.y1b_c00456{bottom:385.858479px;}
.y1a_c00456{bottom:416.009091px;}
.y19_c00456{bottom:446.248978px;}
.y18_c00456{bottom:476.399590px;}
.y17_c00456{bottom:506.639478px;}
.y16_c00456{bottom:536.790090px;}
.y15_c00456{bottom:567.029977px;}
.y14_c00456{bottom:597.089563px;}
.y13_c00456{bottom:627.329451px;}
.y12_c00456{bottom:657.480063px;}
.y11_c00456{bottom:687.719950px;}
.y10_c00456{bottom:717.870563px;}
.yf_c00456{bottom:748.108056px;}
.ye_c00456{bottom:778.258668px;}
.yd_c00456{bottom:808.498556px;}
.yc_c00456{bottom:838.649168px;}
.yb_c00456{bottom:868.889055px;}
.ya_c00456{bottom:899.039667px;}
.y9_c00456{bottom:929.279555px;}
.y8_c00456{bottom:959.519442px;}
.y7_c00456{bottom:989.670054px;}
.y6_c00456{bottom:1019.909942px;}
.y5_c00456{bottom:1050.060553px;}
.y4_c00456{bottom:1080.300441px;}
.y3_c00456{bottom:1110.451053px;}
.h2_c00456{height:62.600889px;}
.h1_c00456{height:62.771836px;}
.h3_c00456{height:73.678362px;}
.h4_c00456{height:74.149898px;}
.h0_c00456{height:1263.000000px;}
.w0_c00456{width:892.500000px;}
.x0_c00456{left:0.000000px;}
.x2_c00456{left:82.710059px;}
.x1_c00456{left:431.730000px;}
@media print{
.v0_c00456{vertical-align:0.000000pt;}
.v1_c00456{vertical-align:28.488512pt;}
.ls6_c00456{letter-spacing:-0.056016pt;}
.lsf_c00456{letter-spacing:-0.049792pt;}
.lse_c00456{letter-spacing:-0.043568pt;}
.ls8_c00456{letter-spacing:-0.037344pt;}
.lsc_c00456{letter-spacing:-0.031120pt;}
.lsa_c00456{letter-spacing:-0.024896pt;}
.lsb_c00456{letter-spacing:-0.018672pt;}
.ls9_c00456{letter-spacing:-0.012448pt;}
.lsd_c00456{letter-spacing:-0.006224pt;}
.ls7_c00456{letter-spacing:0.000000pt;}
.ls4_c00456{letter-spacing:0.006224pt;}
.ls1_c00456{letter-spacing:0.012448pt;}
.ls5_c00456{letter-spacing:0.018672pt;}
.ls2_c00456{letter-spacing:0.020694pt;}
.ls3_c00456{letter-spacing:0.031120pt;}
.ls0_c00456{letter-spacing:0.037344pt;}
.ws0_c00456{word-spacing:-11.526781pt;}
.ws1c_c00456{word-spacing:-0.012448pt;}
.ws1_c00456{word-spacing:0.000000pt;}
.ws18_c00456{word-spacing:0.018672pt;}
.ws20_c00456{word-spacing:0.043568pt;}
.ws10_c00456{word-spacing:0.311200pt;}
.ws1e_c00456{word-spacing:0.317424pt;}
.ws1f_c00456{word-spacing:0.647296pt;}
.ws5_c00456{word-spacing:0.964720pt;}
.ws6_c00456{word-spacing:0.977168pt;}
.wsc_c00456{word-spacing:1.282144pt;}
.ws14_c00456{word-spacing:1.294592pt;}
.ws13_c00456{word-spacing:1.612016pt;}
.ws24_c00456{word-spacing:1.892096pt;}
.ws23_c00456{word-spacing:2.215744pt;}
.wsd_c00456{word-spacing:2.576736pt;}
.wsf_c00456{word-spacing:2.589184pt;}
.ws21_c00456{word-spacing:3.821536pt;}
.ws12_c00456{word-spacing:3.827760pt;}
.ws11_c00456{word-spacing:3.877552pt;}
.ws9_c00456{word-spacing:5.097456pt;}
.wsa_c00456{word-spacing:5.128576pt;}
.wsb_c00456{word-spacing:6.074624pt;}
.ws1d_c00456{word-spacing:7.045568pt;}
.ws17_c00456{word-spacing:7.686640pt;}
.ws3_c00456{word-spacing:8.321488pt;}
.ws4_c00456{word-spacing:8.333936pt;}
.ws2_c00456{word-spacing:9.304880pt;}
.ws22_c00456{word-spacing:11.215648pt;}
.ws7_c00456{word-spacing:11.788256pt;}
.ws8_c00456{word-spacing:12.167920pt;}
.ws1b_c00456{word-spacing:12.479120pt;}
.wse_c00456{word-spacing:13.126416pt;}
.ws16_c00456{word-spacing:16.275760pt;}
.ws15_c00456{word-spacing:16.319328pt;}
.ws19_c00456{word-spacing:21.454128pt;}
.ws1a_c00456{word-spacing:21.740432pt;}
._0_c00456{margin-left:-1.207456pt;}
._1_c00456{width:0.914928pt;}
.fs1_c00456{font-size:41.388800pt;}
.fs0_c00456{font-size:62.240000pt;}
.y0_c00456{bottom:0.000000pt;}
.y2_c00456{bottom:97.547527pt;}
.y1_c00456{bottom:115.387067pt;}
.y22_c00456{bottom:155.065735pt;}
.y21_c00456{bottom:181.945635pt;}
.y20_c00456{bottom:208.746179pt;}
.y1f_c00456{bottom:235.626079pt;}
.y1e_c00456{bottom:262.426623pt;}
.y1d_c00456{bottom:289.306523pt;}
.y1c_c00456{bottom:316.105415pt;}
.y1b_c00456{bottom:342.985315pt;}
.y1a_c00456{bottom:369.785859pt;}
.y19_c00456{bottom:396.665759pt;}
.y18_c00456{bottom:423.466303pt;}
.y17_c00456{bottom:450.346203pt;}
.y16_c00456{bottom:477.146747pt;}
.y15_c00456{bottom:504.026647pt;}
.y14_c00456{bottom:530.746279pt;}
.y13_c00456{bottom:557.626179pt;}
.y12_c00456{bottom:584.426723pt;}
.y11_c00456{bottom:611.306623pt;}
.y10_c00456{bottom:638.107167pt;}
.yf_c00456{bottom:664.984939pt;}
.ye_c00456{bottom:691.785483pt;}
.yd_c00456{bottom:718.665383pt;}
.yc_c00456{bottom:745.465927pt;}
.yb_c00456{bottom:772.345827pt;}
.ya_c00456{bottom:799.146371pt;}
.y9_c00456{bottom:826.026271pt;}
.y8_c00456{bottom:852.906171pt;}
.y7_c00456{bottom:879.706715pt;}
.y6_c00456{bottom:906.586615pt;}
.y5_c00456{bottom:933.387159pt;}
.y4_c00456{bottom:960.267059pt;}
.y3_c00456{bottom:987.067603pt;}
.h2_c00456{height:55.645234pt;}
.h1_c00456{height:55.797187pt;}
.h3_c00456{height:65.491878pt;}
.h4_c00456{height:65.911021pt;}
.h0_c00456{height:1122.666667pt;}
.w0_c00456{width:793.333333pt;}
.x0_c00456{left:0.000000pt;}
.x2_c00456{left:73.520052pt;}
.x1_c00456{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f56b7879e5d075c379e9ea3a.woff2')format("woff");}.ff1_c00457{font-family:ff1_c00457;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00457{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00457{vertical-align:0.000000px;}
.ls4_c00457{letter-spacing:-0.063018px;}
.ls8_c00457{letter-spacing:-0.042012px;}
.ls9_c00457{letter-spacing:-0.028008px;}
.lsa_c00457{letter-spacing:-0.021006px;}
.ls6_c00457{letter-spacing:-0.014004px;}
.ls7_c00457{letter-spacing:-0.007002px;}
.ls5_c00457{letter-spacing:0.000000px;}
.ls2_c00457{letter-spacing:0.007002px;}
.ls3_c00457{letter-spacing:0.014004px;}
.ls0_c00457{letter-spacing:0.021006px;}
.ls1_c00457{letter-spacing:0.077022px;}
.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:0.000000px;}
.ws8_c00457{word-spacing:0.007002px;}
.wsc_c00457{word-spacing:0.014004px;}
.ws13_c00457{word-spacing:0.028008px;}
.wsb_c00457{word-spacing:0.336096px;}
.ws2_c00457{word-spacing:0.357102px;}
.ws6_c00457{word-spacing:0.385110px;}
.ws7_c00457{word-spacing:0.735210px;}
.ws1e_c00457{word-spacing:1.792512px;}
.ws16_c00457{word-spacing:2.156616px;}
.ws11_c00457{word-spacing:2.842812px;}
.ws1_c00457{word-spacing:3.206916px;}
.ws12_c00457{word-spacing:3.592026px;}
.ws1b_c00457{word-spacing:4.313232px;}
.ws1c_c00457{word-spacing:4.670334px;}
.ws1f_c00457{word-spacing:4.691340px;}
.wsa_c00457{word-spacing:4.705344px;}
.ws9_c00457{word-spacing:5.769648px;}
.ws15_c00457{word-spacing:9.004572px;}
.wsd_c00457{word-spacing:9.368676px;}
.ws14_c00457{word-spacing:10.439982px;}
.ws10_c00457{word-spacing:10.776078px;}
.ws1a_c00457{word-spacing:10.797084px;}
.wsf_c00457{word-spacing:10.804086px;}
.ws19_c00457{word-spacing:11.168190px;}
.ws18_c00457{word-spacing:16.538724px;}
.ws4_c00457{word-spacing:22.231350px;}
.ws3_c00457{word-spacing:22.315374px;}
.ws17_c00457{word-spacing:26.649612px;}
.wse_c00457{word-spacing:30.591738px;}
.ws1d_c00457{word-spacing:37.810800px;}
.ws5_c00457{word-spacing:38.861100px;}
._2_c00457{margin-left:-37.922832px;}
._1_c00457{margin-left:-1.015290px;}
._0_c00457{width:1.008288px;}
.fc0_c00457{color:rgb(0,0,0);}
.fs0_c00457{font-size:70.020000px;}
.y0_c00457{bottom:0.000000px;}
.y2_c00457{bottom:109.740968px;}
.y1_c00457{bottom:129.810450px;}
.y22_c00457{bottom:174.444699px;}
.y21_c00457{bottom:204.684587px;}
.y20_c00457{bottom:234.835199px;}
.y1f_c00457{bottom:265.075086px;}
.y1e_c00457{bottom:295.225698px;}
.y1d_c00457{bottom:325.465586px;}
.y1c_c00457{bottom:355.616198px;}
.y1b_c00457{bottom:385.856085px;}
.y1a_c00457{bottom:416.006697px;}
.y19_c00457{bottom:446.246585px;}
.y18_c00457{bottom:476.397197px;}
.y17_c00457{bottom:506.637084px;}
.y16_c00457{bottom:536.787696px;}
.y15_c00457{bottom:567.027584px;}
.y14_c00457{bottom:597.087170px;}
.y13_c00457{bottom:627.327057px;}
.y12_c00457{bottom:657.477669px;}
.y11_c00457{bottom:687.717557px;}
.y10_c00457{bottom:717.868169px;}
.yf_c00457{bottom:748.108056px;}
.ye_c00457{bottom:778.258668px;}
.yd_c00457{bottom:808.498556px;}
.yc_c00457{bottom:838.649168px;}
.yb_c00457{bottom:868.889055px;}
.ya_c00457{bottom:899.039667px;}
.y9_c00457{bottom:929.279555px;}
.y8_c00457{bottom:959.519442px;}
.y7_c00457{bottom:989.670054px;}
.y6_c00457{bottom:1019.909942px;}
.y5_c00457{bottom:1050.060553px;}
.y4_c00457{bottom:1080.300441px;}
.y3_c00457{bottom:1110.451053px;}
.h1_c00457{height:62.771836px;}
.h0_c00457{height:1263.000000px;}
.w0_c00457{width:892.500000px;}
.x0_c00457{left:0.000000px;}
.x2_c00457{left:82.710059px;}
.x1_c00457{left:431.730000px;}
@media print{
.v0_c00457{vertical-align:0.000000pt;}
.ls4_c00457{letter-spacing:-0.056016pt;}
.ls8_c00457{letter-spacing:-0.037344pt;}
.ls9_c00457{letter-spacing:-0.024896pt;}
.lsa_c00457{letter-spacing:-0.018672pt;}
.ls6_c00457{letter-spacing:-0.012448pt;}
.ls7_c00457{letter-spacing:-0.006224pt;}
.ls5_c00457{letter-spacing:0.000000pt;}
.ls2_c00457{letter-spacing:0.006224pt;}
.ls3_c00457{letter-spacing:0.012448pt;}
.ls0_c00457{letter-spacing:0.018672pt;}
.ls1_c00457{letter-spacing:0.068464pt;}
.ws0_c00457{word-spacing:0.000000pt;}
.ws8_c00457{word-spacing:0.006224pt;}
.wsc_c00457{word-spacing:0.012448pt;}
.ws13_c00457{word-spacing:0.024896pt;}
.wsb_c00457{word-spacing:0.298752pt;}
.ws2_c00457{word-spacing:0.317424pt;}
.ws6_c00457{word-spacing:0.342320pt;}
.ws7_c00457{word-spacing:0.653520pt;}
.ws1e_c00457{word-spacing:1.593344pt;}
.ws16_c00457{word-spacing:1.916992pt;}
.ws11_c00457{word-spacing:2.526944pt;}
.ws1_c00457{word-spacing:2.850592pt;}
.ws12_c00457{word-spacing:3.192912pt;}
.ws1b_c00457{word-spacing:3.833984pt;}
.ws1c_c00457{word-spacing:4.151408pt;}
.ws1f_c00457{word-spacing:4.170080pt;}
.wsa_c00457{word-spacing:4.182528pt;}
.ws9_c00457{word-spacing:5.128576pt;}
.ws15_c00457{word-spacing:8.004064pt;}
.wsd_c00457{word-spacing:8.327712pt;}
.ws14_c00457{word-spacing:9.279984pt;}
.ws10_c00457{word-spacing:9.578736pt;}
.ws1a_c00457{word-spacing:9.597408pt;}
.wsf_c00457{word-spacing:9.603632pt;}
.ws19_c00457{word-spacing:9.927280pt;}
.ws18_c00457{word-spacing:14.701088pt;}
.ws4_c00457{word-spacing:19.761200pt;}
.ws3_c00457{word-spacing:19.835888pt;}
.ws17_c00457{word-spacing:23.688544pt;}
.wse_c00457{word-spacing:27.192656pt;}
.ws1d_c00457{word-spacing:33.609600pt;}
.ws5_c00457{word-spacing:34.543200pt;}
._2_c00457{margin-left:-33.709184pt;}
._1_c00457{margin-left:-0.902480pt;}
._0_c00457{width:0.896256pt;}
.fs0_c00457{font-size:62.240000pt;}
.y0_c00457{bottom:0.000000pt;}
.y2_c00457{bottom:97.547527pt;}
.y1_c00457{bottom:115.387067pt;}
.y22_c00457{bottom:155.061955pt;}
.y21_c00457{bottom:181.941855pt;}
.y20_c00457{bottom:208.742399pt;}
.y1f_c00457{bottom:235.622299pt;}
.y1e_c00457{bottom:262.422843pt;}
.y1d_c00457{bottom:289.302743pt;}
.y1c_c00457{bottom:316.103287pt;}
.y1b_c00457{bottom:342.983187pt;}
.y1a_c00457{bottom:369.783731pt;}
.y19_c00457{bottom:396.663631pt;}
.y18_c00457{bottom:423.464175pt;}
.y17_c00457{bottom:450.344075pt;}
.y16_c00457{bottom:477.144619pt;}
.y15_c00457{bottom:504.024519pt;}
.y14_c00457{bottom:530.744151pt;}
.y13_c00457{bottom:557.624051pt;}
.y12_c00457{bottom:584.424595pt;}
.y11_c00457{bottom:611.304495pt;}
.y10_c00457{bottom:638.105039pt;}
.yf_c00457{bottom:664.984939pt;}
.ye_c00457{bottom:691.785483pt;}
.yd_c00457{bottom:718.665383pt;}
.yc_c00457{bottom:745.465927pt;}
.yb_c00457{bottom:772.345827pt;}
.ya_c00457{bottom:799.146371pt;}
.y9_c00457{bottom:826.026271pt;}
.y8_c00457{bottom:852.906171pt;}
.y7_c00457{bottom:879.706715pt;}
.y6_c00457{bottom:906.586615pt;}
.y5_c00457{bottom:933.387159pt;}
.y4_c00457{bottom:960.267059pt;}
.y3_c00457{bottom:987.067603pt;}
.h1_c00457{height:55.797187pt;}
.h0_c00457{height:1122.666667pt;}
.w0_c00457{width:793.333333pt;}
.x0_c00457{left:0.000000pt;}
.x2_c00457{left:73.520052pt;}
.x1_c00457{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_10f193c63a35064a665f88db.woff2')format("woff");}.ff1_c00458{font-family:ff1_c00458;line-height:1.106934;font-style:normal;font-weight:normal;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_e1f0b5e49494d78d81d991a9.woff2')format("woff");}.ff2_c00458{font-family:ff2_c00458;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00458{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00458{vertical-align:0.000000px;}
.v1_c00458{vertical-align:32.044182px;}
.ls7_c00458{letter-spacing:-0.335249px;}
.ls2_c00458{letter-spacing:-0.063018px;}
.ls4_c00458{letter-spacing:-0.049014px;}
.lsa_c00458{letter-spacing:-0.042012px;}
.ls9_c00458{letter-spacing:-0.035010px;}
.ls8_c00458{letter-spacing:-0.028008px;}
.ls6_c00458{letter-spacing:-0.014004px;}
.ls5_c00458{letter-spacing:-0.007002px;}
.ls3_c00458{letter-spacing:0.000000px;}
.ls0_c00458{letter-spacing:0.014004px;}
.ls1_c00458{letter-spacing:0.028008px;}
.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:-12.609098px;}
.ws8_c00458{word-spacing:-0.042012px;}
.ws1_c00458{word-spacing:0.000000px;}
.ws3_c00458{word-spacing:0.049014px;}
.ws13_c00458{word-spacing:0.385110px;}
.ws7_c00458{word-spacing:0.714204px;}
.wsc_c00458{word-spacing:1.106316px;}
.wsd_c00458{word-spacing:2.520720px;}
.ws11_c00458{word-spacing:3.241926px;}
.ws10_c00458{word-spacing:3.255930px;}
.ws4_c00458{word-spacing:3.592026px;}
.ws5_c00458{word-spacing:3.935124px;}
.ws6_c00458{word-spacing:3.963132px;}
.wsb_c00458{word-spacing:4.306230px;}
.wsa_c00458{word-spacing:4.341240px;}
.ws9_c00458{word-spacing:4.691340px;}
.ws2_c00458{word-spacing:10.832094px;}
.wsf_c00458{word-spacing:20.172762px;}
.wse_c00458{word-spacing:30.948840px;}
.ws12_c00458{word-spacing:39.225204px;}
._1_c00458{margin-left:-1.302372px;}
._0_c00458{width:1.022292px;}
.fc0_c00458{color:rgb(0,0,0);}
.fs1_c00458{font-size:46.562400px;}
.fs0_c00458{font-size:70.020000px;}
.y0_c00458{bottom:0.000000px;}
.y2_c00458{bottom:109.740968px;}
.y1_c00458{bottom:129.810450px;}
.y21_c00458{bottom:204.685482px;}
.y20_c00458{bottom:234.836094px;}
.y1f_c00458{bottom:265.075982px;}
.y1e_c00458{bottom:295.226594px;}
.y1d_c00458{bottom:325.466481px;}
.y1c_c00458{bottom:355.617093px;}
.y1b_c00458{bottom:385.856981px;}
.y1a_c00458{bottom:416.007592px;}
.y19_c00458{bottom:446.247480px;}
.y18_c00458{bottom:476.398092px;}
.y17_c00458{bottom:506.637979px;}
.y16_c00458{bottom:536.788591px;}
.y15_c00458{bottom:567.028479px;}
.y14_c00458{bottom:597.088065px;}
.y13_c00458{bottom:627.327953px;}
.y12_c00458{bottom:657.478565px;}
.y11_c00458{bottom:687.718452px;}
.y10_c00458{bottom:717.869064px;}
.yf_c00458{bottom:748.108951px;}
.ye_c00458{bottom:778.259564px;}
.yd_c00458{bottom:808.499451px;}
.yc_c00458{bottom:838.650063px;}
.yb_c00458{bottom:868.889950px;}
.ya_c00458{bottom:899.040562px;}
.y9_c00458{bottom:929.279555px;}
.y8_c00458{bottom:959.519442px;}
.y7_c00458{bottom:989.670054px;}
.y6_c00458{bottom:1019.909942px;}
.y5_c00458{bottom:1050.060553px;}
.y4_c00458{bottom:1080.300441px;}
.y3_c00458{bottom:1110.451053px;}
.h2_c00458{height:62.600889px;}
.h1_c00458{height:62.771836px;}
.h3_c00458{height:73.672968px;}
.h0_c00458{height:1263.000000px;}
.w0_c00458{width:892.500000px;}
.x0_c00458{left:0.000000px;}
.x2_c00458{left:82.710059px;}
.x1_c00458{left:431.730000px;}
@media print{
.v0_c00458{vertical-align:0.000000pt;}
.v1_c00458{vertical-align:28.483717pt;}
.ls7_c00458{letter-spacing:-0.297999pt;}
.ls2_c00458{letter-spacing:-0.056016pt;}
.ls4_c00458{letter-spacing:-0.043568pt;}
.lsa_c00458{letter-spacing:-0.037344pt;}
.ls9_c00458{letter-spacing:-0.031120pt;}
.ls8_c00458{letter-spacing:-0.024896pt;}
.ls6_c00458{letter-spacing:-0.012448pt;}
.ls5_c00458{letter-spacing:-0.006224pt;}
.ls3_c00458{letter-spacing:0.000000pt;}
.ls0_c00458{letter-spacing:0.012448pt;}
.ls1_c00458{letter-spacing:0.024896pt;}
.ws0_c00458{word-spacing:-11.208087pt;}
.ws8_c00458{word-spacing:-0.037344pt;}
.ws1_c00458{word-spacing:0.000000pt;}
.ws3_c00458{word-spacing:0.043568pt;}
.ws13_c00458{word-spacing:0.342320pt;}
.ws7_c00458{word-spacing:0.634848pt;}
.wsc_c00458{word-spacing:0.983392pt;}
.wsd_c00458{word-spacing:2.240640pt;}
.ws11_c00458{word-spacing:2.881712pt;}
.ws10_c00458{word-spacing:2.894160pt;}
.ws4_c00458{word-spacing:3.192912pt;}
.ws5_c00458{word-spacing:3.497888pt;}
.ws6_c00458{word-spacing:3.522784pt;}
.wsb_c00458{word-spacing:3.827760pt;}
.wsa_c00458{word-spacing:3.858880pt;}
.ws9_c00458{word-spacing:4.170080pt;}
.ws2_c00458{word-spacing:9.628528pt;}
.wsf_c00458{word-spacing:17.931344pt;}
.wse_c00458{word-spacing:27.510080pt;}
.ws12_c00458{word-spacing:34.866848pt;}
._1_c00458{margin-left:-1.157664pt;}
._0_c00458{width:0.908704pt;}
.fs1_c00458{font-size:41.388800pt;}
.fs0_c00458{font-size:62.240000pt;}
.y0_c00458{bottom:0.000000pt;}
.y2_c00458{bottom:97.547527pt;}
.y1_c00458{bottom:115.387067pt;}
.y21_c00458{bottom:181.942651pt;}
.y20_c00458{bottom:208.743195pt;}
.y1f_c00458{bottom:235.623095pt;}
.y1e_c00458{bottom:262.423639pt;}
.y1d_c00458{bottom:289.303539pt;}
.y1c_c00458{bottom:316.104083pt;}
.y1b_c00458{bottom:342.983983pt;}
.y1a_c00458{bottom:369.784527pt;}
.y19_c00458{bottom:396.664427pt;}
.y18_c00458{bottom:423.464971pt;}
.y17_c00458{bottom:450.344871pt;}
.y16_c00458{bottom:477.145415pt;}
.y15_c00458{bottom:504.025315pt;}
.y14_c00458{bottom:530.744947pt;}
.y13_c00458{bottom:557.624847pt;}
.y12_c00458{bottom:584.425391pt;}
.y11_c00458{bottom:611.305291pt;}
.y10_c00458{bottom:638.105835pt;}
.yf_c00458{bottom:664.985735pt;}
.ye_c00458{bottom:691.786279pt;}
.yd_c00458{bottom:718.666179pt;}
.yc_c00458{bottom:745.466723pt;}
.yb_c00458{bottom:772.346623pt;}
.ya_c00458{bottom:799.147167pt;}
.y9_c00458{bottom:826.026271pt;}
.y8_c00458{bottom:852.906171pt;}
.y7_c00458{bottom:879.706715pt;}
.y6_c00458{bottom:906.586615pt;}
.y5_c00458{bottom:933.387159pt;}
.y4_c00458{bottom:960.267059pt;}
.y3_c00458{bottom:987.067603pt;}
.h2_c00458{height:55.645234pt;}
.h1_c00458{height:55.797187pt;}
.h3_c00458{height:65.487083pt;}
.h0_c00458{height:1122.666667pt;}
.w0_c00458{width:793.333333pt;}
.x0_c00458{left:0.000000pt;}
.x2_c00458{left:73.520052pt;}
.x1_c00458{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4c04e42dbed816b793d25c57.woff2')format("woff");}.ff1_c00459{font-family:ff1_c00459;line-height:1.106934;font-style:normal;font-weight:normal;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_fe93ef209b7a229a6d0120f7.woff2')format("woff");}.ff2_c00459{font-family:ff2_c00459;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00459;src:url('chunks/assets/font_90cc9c636dd2df2bfe2aee14.woff2')format("woff");}.ff3_c00459{font-family:ff3_c00459;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00459{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00459{vertical-align:0.000000px;}
.v1_c00459{vertical-align:32.417532px;}
.ls7_c00459{letter-spacing:-0.159540px;}
.ls8_c00459{letter-spacing:-0.091166px;}
.ls9_c00459{letter-spacing:-0.075971px;}
.ls10_c00459{letter-spacing:-0.070020px;}
.ls5_c00459{letter-spacing:-0.063018px;}
.lse_c00459{letter-spacing:-0.042012px;}
.lsf_c00459{letter-spacing:-0.035010px;}
.lsa_c00459{letter-spacing:-0.028008px;}
.lsc_c00459{letter-spacing:-0.021006px;}
.lsd_c00459{letter-spacing:-0.014004px;}
.lsb_c00459{letter-spacing:-0.007002px;}
.ls6_c00459{letter-spacing:0.000000px;}
.ls1_c00459{letter-spacing:0.007002px;}
.ls3_c00459{letter-spacing:0.014004px;}
.ls4_c00459{letter-spacing:0.021006px;}
.ls2_c00459{letter-spacing:0.023281px;}
.ls0_c00459{letter-spacing:0.049014px;}
.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:-12.967628px;}
.ws9_c00459{word-spacing:-0.007002px;}
.ws1_c00459{word-spacing:0.000000px;}
.ws15_c00459{word-spacing:0.014004px;}
.ws3_c00459{word-spacing:0.045583px;}
.ws1c_c00459{word-spacing:0.056016px;}
.ws2_c00459{word-spacing:0.288691px;}
.ws17_c00459{word-spacing:0.350100px;}
.ws1b_c00459{word-spacing:0.385110px;}
.ws23_c00459{word-spacing:1.407402px;}
.ws24_c00459{word-spacing:1.435410px;}
.ws11_c00459{word-spacing:1.463418px;}
.ws10_c00459{word-spacing:1.778508px;}
.ws12_c00459{word-spacing:2.149614px;}
.ws22_c00459{word-spacing:3.213918px;}
.ws21_c00459{word-spacing:3.241926px;}
.ws7_c00459{word-spacing:5.762646px;}
.ws5_c00459{word-spacing:7.555158px;}
.ws6_c00459{word-spacing:7.569162px;}
.wsd_c00459{word-spacing:8.220348px;}
.ws20_c00459{word-spacing:8.283366px;}
.wsc_c00459{word-spacing:8.290368px;}
.ws1f_c00459{word-spacing:8.297370px;}
.ws26_c00459{word-spacing:8.619462px;}
.ws25_c00459{word-spacing:8.640468px;}
.wsb_c00459{word-spacing:9.711774px;}
.ws14_c00459{word-spacing:9.725778px;}
.ws13_c00459{word-spacing:9.732780px;}
.wsa_c00459{word-spacing:9.746784px;}
.ws19_c00459{word-spacing:10.089882px;}
.ws8_c00459{word-spacing:10.096884px;}
.ws27_c00459{word-spacing:10.460988px;}
.ws18_c00459{word-spacing:10.467990px;}
.ws1a_c00459{word-spacing:13.674906px;}
.ws1d_c00459{word-spacing:16.181622px;}
.ws4_c00459{word-spacing:16.216632px;}
.ws1e_c00459{word-spacing:16.230636px;}
.ws16_c00459{word-spacing:17.308944px;}
.wse_c00459{word-spacing:19.024434px;}
.wsf_c00459{word-spacing:19.080450px;}
._1_c00459{margin-left:-1.057302px;}
._0_c00459{width:1.162362px;}
.fc0_c00459{color:rgb(0,0,0);}
.fs2_c00459{font-size:46.562400px;}
.fs0_c00459{font-size:70.020000px;}
.fs1_c00459{font-size:75.971400px;}
.y0_c00459{bottom:0.000000px;}
.y2_c00459{bottom:109.740968px;}
.y1_c00459{bottom:129.810450px;}
.y23_c00459{bottom:156.717265px;}
.y22_c00459{bottom:186.867877px;}
.y21_c00459{bottom:217.107765px;}
.y20_c00459{bottom:247.258377px;}
.y1f_c00459{bottom:277.408989px;}
.y1e_c00459{bottom:307.559601px;}
.y1d_c00459{bottom:337.799488px;}
.y1c_c00459{bottom:367.950101px;}
.y1b_c00459{bottom:398.189988px;}
.y1a_c00459{bottom:428.339950px;}
.y19_c00459{bottom:458.579838px;}
.y18_c00459{bottom:488.726067px;}
.y17_c00459{bottom:518.965954px;}
.y16_c00459{bottom:549.116566px;}
.y15_c00459{bottom:579.356454px;}
.y14_c00459{bottom:609.507066px;}
.y13_c00459{bottom:639.746953px;}
.y12_c00459{bottom:669.897565px;}
.y11_c00459{bottom:700.137453px;}
.y10_c00459{bottom:730.377340px;}
.yf_c00459{bottom:760.527952px;}
.ye_c00459{bottom:790.767840px;}
.yd_c00459{bottom:820.918452px;}
.yc_c00459{bottom:851.158340px;}
.yb_c00459{bottom:881.308951px;}
.ya_c00459{bottom:911.548839px;}
.y9_c00459{bottom:941.699451px;}
.y8_c00459{bottom:971.939339px;}
.y7_c00459{bottom:1002.089950px;}
.y6_c00459{bottom:1032.329838px;}
.y5_c00459{bottom:1062.480450px;}
.y4_c00459{bottom:1087.230183px;}
.y3_c00459{bottom:1109.100450px;}
.h3_c00459{height:62.600889px;}
.h1_c00459{height:62.771836px;}
.h2_c00459{height:68.589413px;}
.h4_c00459{height:74.046318px;}
.h5_c00459{height:74.144462px;}
.h0_c00459{height:1263.000000px;}
.w0_c00459{width:892.500000px;}
.x0_c00459{left:0.000000px;}
.x2_c00459{left:82.710059px;}
.x1_c00459{left:431.730000px;}
@media print{
.v0_c00459{vertical-align:0.000000pt;}
.v1_c00459{vertical-align:28.815584pt;}
.ls7_c00459{letter-spacing:-0.141813pt;}
.ls8_c00459{letter-spacing:-0.081036pt;}
.ls9_c00459{letter-spacing:-0.067530pt;}
.ls10_c00459{letter-spacing:-0.062240pt;}
.ls5_c00459{letter-spacing:-0.056016pt;}
.lse_c00459{letter-spacing:-0.037344pt;}
.lsf_c00459{letter-spacing:-0.031120pt;}
.lsa_c00459{letter-spacing:-0.024896pt;}
.lsc_c00459{letter-spacing:-0.018672pt;}
.lsd_c00459{letter-spacing:-0.012448pt;}
.lsb_c00459{letter-spacing:-0.006224pt;}
.ls6_c00459{letter-spacing:0.000000pt;}
.ls1_c00459{letter-spacing:0.006224pt;}
.ls3_c00459{letter-spacing:0.012448pt;}
.ls4_c00459{letter-spacing:0.018672pt;}
.ls2_c00459{letter-spacing:0.020694pt;}
.ls0_c00459{letter-spacing:0.043568pt;}
.ws0_c00459{word-spacing:-11.526781pt;}
.ws9_c00459{word-spacing:-0.006224pt;}
.ws1_c00459{word-spacing:0.000000pt;}
.ws15_c00459{word-spacing:0.012448pt;}
.ws3_c00459{word-spacing:0.040518pt;}
.ws1c_c00459{word-spacing:0.049792pt;}
.ws2_c00459{word-spacing:0.256615pt;}
.ws17_c00459{word-spacing:0.311200pt;}
.ws1b_c00459{word-spacing:0.342320pt;}
.ws23_c00459{word-spacing:1.251024pt;}
.ws24_c00459{word-spacing:1.275920pt;}
.ws11_c00459{word-spacing:1.300816pt;}
.ws10_c00459{word-spacing:1.580896pt;}
.ws12_c00459{word-spacing:1.910768pt;}
.ws22_c00459{word-spacing:2.856816pt;}
.ws21_c00459{word-spacing:2.881712pt;}
.ws7_c00459{word-spacing:5.122352pt;}
.ws5_c00459{word-spacing:6.715696pt;}
.ws6_c00459{word-spacing:6.728144pt;}
.wsd_c00459{word-spacing:7.306976pt;}
.ws20_c00459{word-spacing:7.362992pt;}
.wsc_c00459{word-spacing:7.369216pt;}
.ws1f_c00459{word-spacing:7.375440pt;}
.ws26_c00459{word-spacing:7.661744pt;}
.ws25_c00459{word-spacing:7.680416pt;}
.wsb_c00459{word-spacing:8.632688pt;}
.ws14_c00459{word-spacing:8.645136pt;}
.ws13_c00459{word-spacing:8.651360pt;}
.wsa_c00459{word-spacing:8.663808pt;}
.ws19_c00459{word-spacing:8.968784pt;}
.ws8_c00459{word-spacing:8.975008pt;}
.ws27_c00459{word-spacing:9.298656pt;}
.ws18_c00459{word-spacing:9.304880pt;}
.ws1a_c00459{word-spacing:12.155472pt;}
.ws1d_c00459{word-spacing:14.383664pt;}
.ws4_c00459{word-spacing:14.414784pt;}
.ws1e_c00459{word-spacing:14.427232pt;}
.ws16_c00459{word-spacing:15.385728pt;}
.wse_c00459{word-spacing:16.910608pt;}
.wsf_c00459{word-spacing:16.960400pt;}
._1_c00459{margin-left:-0.939824pt;}
._0_c00459{width:1.033211pt;}
.fs2_c00459{font-size:41.388800pt;}
.fs0_c00459{font-size:62.240000pt;}
.fs1_c00459{font-size:67.530133pt;}
.y0_c00459{bottom:0.000000pt;}
.y2_c00459{bottom:97.547527pt;}
.y1_c00459{bottom:115.387067pt;}
.y23_c00459{bottom:139.304236pt;}
.y22_c00459{bottom:166.104780pt;}
.y21_c00459{bottom:192.984680pt;}
.y20_c00459{bottom:219.785224pt;}
.y1f_c00459{bottom:246.585768pt;}
.y1e_c00459{bottom:273.386312pt;}
.y1d_c00459{bottom:300.266212pt;}
.y1c_c00459{bottom:327.066756pt;}
.y1b_c00459{bottom:353.946656pt;}
.y1a_c00459{bottom:380.746623pt;}
.y19_c00459{bottom:407.626523pt;}
.y18_c00459{bottom:434.423171pt;}
.y17_c00459{bottom:461.303071pt;}
.y16_c00459{bottom:488.103615pt;}
.y15_c00459{bottom:514.983515pt;}
.y14_c00459{bottom:541.784059pt;}
.y13_c00459{bottom:568.663959pt;}
.y12_c00459{bottom:595.464503pt;}
.y11_c00459{bottom:622.344403pt;}
.y10_c00459{bottom:649.224303pt;}
.yf_c00459{bottom:676.024847pt;}
.ye_c00459{bottom:702.904747pt;}
.yd_c00459{bottom:729.705291pt;}
.yc_c00459{bottom:756.585191pt;}
.yb_c00459{bottom:783.385735pt;}
.ya_c00459{bottom:810.265635pt;}
.y9_c00459{bottom:837.066179pt;}
.y8_c00459{bottom:863.946079pt;}
.y7_c00459{bottom:890.746623pt;}
.y6_c00459{bottom:917.626523pt;}
.y5_c00459{bottom:944.427067pt;}
.y4_c00459{bottom:966.426830pt;}
.y3_c00459{bottom:985.867067pt;}
.h3_c00459{height:55.645234pt;}
.h1_c00459{height:55.797187pt;}
.h2_c00459{height:60.968367pt;}
.h4_c00459{height:65.818950pt;}
.h5_c00459{height:65.906189pt;}
.h0_c00459{height:1122.666667pt;}
.w0_c00459{width:793.333333pt;}
.x0_c00459{left:0.000000pt;}
.x2_c00459{left:73.520052pt;}
.x1_c00459{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8085a8e687cbeb239cb5729f.woff2')format("woff");}.ff1_c00460{font-family:ff1_c00460;line-height:1.106934;font-style:normal;font-weight:normal;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_d56b204ce95e47da5289ff6e.woff2')format("woff");}.ff2_c00460{font-family:ff2_c00460;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00460{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00460{vertical-align:0.000000px;}
.v1_c00460{vertical-align:32.047578px;}
.ls5_c00460{letter-spacing:-0.063018px;}
.lsc_c00460{letter-spacing:-0.042012px;}
.ls7_c00460{letter-spacing:-0.035010px;}
.lsa_c00460{letter-spacing:-0.028008px;}
.lsb_c00460{letter-spacing:-0.021006px;}
.ls8_c00460{letter-spacing:-0.014004px;}
.ls9_c00460{letter-spacing:-0.007002px;}
.ls6_c00460{letter-spacing:0.000000px;}
.ls1_c00460{letter-spacing:0.007002px;}
.ls4_c00460{letter-spacing:0.014004px;}
.ls0_c00460{letter-spacing:0.021006px;}
.ls2_c00460{letter-spacing:0.023281px;}
.ls3_c00460{letter-spacing:0.035010px;}
.lsd_c00460{letter-spacing:0.343098px;}
.lse_c00460{letter-spacing:5.384538px;}
.sc__c00460{text-shadow:none;}
.sc0_c00460{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00460{-webkit-text-stroke:0px transparent;}
.sc0_c00460{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00460{word-spacing:-19.500570px;}
.ws0_c00460{word-spacing:-12.967628px;}
.ws7_c00460{word-spacing:-0.007002px;}
.ws2_c00460{word-spacing:0.000000px;}
.ws18_c00460{word-spacing:0.007002px;}
.wsf_c00460{word-spacing:0.021006px;}
.ws1e_c00460{word-spacing:1.442412px;}
.ws1d_c00460{word-spacing:1.456416px;}
.ws9_c00460{word-spacing:1.792512px;}
.wsd_c00460{word-spacing:1.813518px;}
.wse_c00460{word-spacing:2.163618px;}
.wsc_c00460{word-spacing:2.856816px;}
.ws19_c00460{word-spacing:5.370534px;}
.wsb_c00460{word-spacing:5.377536px;}
.ws16_c00460{word-spacing:5.391540px;}
.ws17_c00460{word-spacing:5.398542px;}
.ws11_c00460{word-spacing:5.405544px;}
.ws1c_c00460{word-spacing:8.997570px;}
.ws1b_c00460{word-spacing:9.354672px;}
.ws1a_c00460{word-spacing:10.439982px;}
.ws15_c00460{word-spacing:12.610602px;}
.ws6_c00460{word-spacing:13.282794px;}
.ws12_c00460{word-spacing:13.317804px;}
.ws3_c00460{word-spacing:13.338810px;}
.ws5_c00460{word-spacing:13.681908px;}
.ws4_c00460{word-spacing:13.702914px;}
.ws10_c00460{word-spacing:15.824520px;}
.ws8_c00460{word-spacing:16.195626px;}
.wsa_c00460{word-spacing:17.294940px;}
.ws14_c00460{word-spacing:18.751356px;}
.ws13_c00460{word-spacing:19.073448px;}
._2_c00460{margin-left:-16.202628px;}
._4_c00460{margin-left:-6.049728px;}
._3_c00460{margin-left:-4.663332px;}
._1_c00460{margin-left:-1.127322px;}
._0_c00460{width:1.057302px;}
.fc0_c00460{color:rgb(0,0,0);}
.fs1_c00460{font-size:46.562400px;}
.fs0_c00460{font-size:70.020000px;}
.y0_c00460{bottom:0.000000px;}
.y2_c00460{bottom:109.740968px;}
.y1_c00460{bottom:129.810450px;}
.y21_c00460{bottom:204.688839px;}
.y20_c00460{bottom:234.839451px;}
.y1f_c00460{bottom:265.079339px;}
.y1e_c00460{bottom:295.229951px;}
.y1d_c00460{bottom:325.469838px;}
.y1c_c00460{bottom:355.619951px;}
.y1b_c00460{bottom:385.859838px;}
.y1a_c00460{bottom:416.010090px;}
.y19_c00460{bottom:446.249977px;}
.y18_c00460{bottom:476.400589px;}
.y17_c00460{bottom:506.640477px;}
.y16_c00460{bottom:536.791089px;}
.y15_c00460{bottom:567.030976px;}
.y14_c00460{bottom:597.090562px;}
.y13_c00460{bottom:627.328952px;}
.y12_c00460{bottom:657.479564px;}
.y11_c00460{bottom:687.719451px;}
.y10_c00460{bottom:717.870063px;}
.yf_c00460{bottom:748.109951px;}
.ye_c00460{bottom:778.260562px;}
.yd_c00460{bottom:808.498556px;}
.yc_c00460{bottom:838.649168px;}
.yb_c00460{bottom:868.889055px;}
.ya_c00460{bottom:899.039667px;}
.y9_c00460{bottom:929.279555px;}
.y8_c00460{bottom:959.519442px;}
.y7_c00460{bottom:989.670054px;}
.y6_c00460{bottom:1019.909942px;}
.y5_c00460{bottom:1050.060553px;}
.y4_c00460{bottom:1080.300441px;}
.y3_c00460{bottom:1110.451053px;}
.h2_c00460{height:62.600889px;}
.h1_c00460{height:62.771836px;}
.h3_c00460{height:73.676364px;}
.h4_c00460{height:73.788458px;}
.h6_c00460{height:74.144462px;}
.h5_c00460{height:74.144504px;}
.h0_c00460{height:1263.000000px;}
.w0_c00460{width:892.500000px;}
.x0_c00460{left:0.000000px;}
.x2_c00460{left:82.710059px;}
.x1_c00460{left:431.730000px;}
@media print{
.v0_c00460{vertical-align:0.000000pt;}
.v1_c00460{vertical-align:28.486736pt;}
.ls5_c00460{letter-spacing:-0.056016pt;}
.lsc_c00460{letter-spacing:-0.037344pt;}
.ls7_c00460{letter-spacing:-0.031120pt;}
.lsa_c00460{letter-spacing:-0.024896pt;}
.lsb_c00460{letter-spacing:-0.018672pt;}
.ls8_c00460{letter-spacing:-0.012448pt;}
.ls9_c00460{letter-spacing:-0.006224pt;}
.ls6_c00460{letter-spacing:0.000000pt;}
.ls1_c00460{letter-spacing:0.006224pt;}
.ls4_c00460{letter-spacing:0.012448pt;}
.ls0_c00460{letter-spacing:0.018672pt;}
.ls2_c00460{letter-spacing:0.020694pt;}
.ls3_c00460{letter-spacing:0.031120pt;}
.lsd_c00460{letter-spacing:0.304976pt;}
.lse_c00460{letter-spacing:4.786256pt;}
.ws1_c00460{word-spacing:-17.333840pt;}
.ws0_c00460{word-spacing:-11.526781pt;}
.ws7_c00460{word-spacing:-0.006224pt;}
.ws2_c00460{word-spacing:0.000000pt;}
.ws18_c00460{word-spacing:0.006224pt;}
.wsf_c00460{word-spacing:0.018672pt;}
.ws1e_c00460{word-spacing:1.282144pt;}
.ws1d_c00460{word-spacing:1.294592pt;}
.ws9_c00460{word-spacing:1.593344pt;}
.wsd_c00460{word-spacing:1.612016pt;}
.wse_c00460{word-spacing:1.923216pt;}
.wsc_c00460{word-spacing:2.539392pt;}
.ws19_c00460{word-spacing:4.773808pt;}
.wsb_c00460{word-spacing:4.780032pt;}
.ws16_c00460{word-spacing:4.792480pt;}
.ws17_c00460{word-spacing:4.798704pt;}
.ws11_c00460{word-spacing:4.804928pt;}
.ws1c_c00460{word-spacing:7.997840pt;}
.ws1b_c00460{word-spacing:8.315264pt;}
.ws1a_c00460{word-spacing:9.279984pt;}
.ws15_c00460{word-spacing:11.209424pt;}
.ws6_c00460{word-spacing:11.806928pt;}
.ws12_c00460{word-spacing:11.838048pt;}
.ws3_c00460{word-spacing:11.856720pt;}
.ws5_c00460{word-spacing:12.161696pt;}
.ws4_c00460{word-spacing:12.180368pt;}
.ws10_c00460{word-spacing:14.066240pt;}
.ws8_c00460{word-spacing:14.396112pt;}
.wsa_c00460{word-spacing:15.373280pt;}
.ws14_c00460{word-spacing:16.667872pt;}
.ws13_c00460{word-spacing:16.954176pt;}
._2_c00460{margin-left:-14.402336pt;}
._4_c00460{margin-left:-5.377536pt;}
._3_c00460{margin-left:-4.145184pt;}
._1_c00460{margin-left:-1.002064pt;}
._0_c00460{width:0.939824pt;}
.fs1_c00460{font-size:41.388800pt;}
.fs0_c00460{font-size:62.240000pt;}
.y0_c00460{bottom:0.000000pt;}
.y2_c00460{bottom:97.547527pt;}
.y1_c00460{bottom:115.387067pt;}
.y21_c00460{bottom:181.945635pt;}
.y20_c00460{bottom:208.746179pt;}
.y1f_c00460{bottom:235.626079pt;}
.y1e_c00460{bottom:262.426623pt;}
.y1d_c00460{bottom:289.306523pt;}
.y1c_c00460{bottom:316.106623pt;}
.y1b_c00460{bottom:342.986523pt;}
.y1a_c00460{bottom:369.786747pt;}
.y19_c00460{bottom:396.666647pt;}
.y18_c00460{bottom:423.467191pt;}
.y17_c00460{bottom:450.347091pt;}
.y16_c00460{bottom:477.147635pt;}
.y15_c00460{bottom:504.027535pt;}
.y14_c00460{bottom:530.747167pt;}
.y13_c00460{bottom:557.625735pt;}
.y12_c00460{bottom:584.426279pt;}
.y11_c00460{bottom:611.306179pt;}
.y10_c00460{bottom:638.106723pt;}
.yf_c00460{bottom:664.986623pt;}
.ye_c00460{bottom:691.787167pt;}
.yd_c00460{bottom:718.665383pt;}
.yc_c00460{bottom:745.465927pt;}
.yb_c00460{bottom:772.345827pt;}
.ya_c00460{bottom:799.146371pt;}
.y9_c00460{bottom:826.026271pt;}
.y8_c00460{bottom:852.906171pt;}
.y7_c00460{bottom:879.706715pt;}
.y6_c00460{bottom:906.586615pt;}
.y5_c00460{bottom:933.387159pt;}
.y4_c00460{bottom:960.267059pt;}
.y3_c00460{bottom:987.067603pt;}
.h2_c00460{height:55.645234pt;}
.h1_c00460{height:55.797187pt;}
.h3_c00460{height:65.490102pt;}
.h4_c00460{height:65.589740pt;}
.h6_c00460{height:65.906189pt;}
.h5_c00460{height:65.906226pt;}
.h0_c00460{height:1122.666667pt;}
.w0_c00460{width:793.333333pt;}
.x0_c00460{left:0.000000pt;}
.x2_c00460{left:73.520052pt;}
.x1_c00460{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7e041e0971887e08322bbc4d.woff2')format("woff");}.ff1_c00461{font-family:ff1_c00461;line-height:1.106934;font-style:normal;font-weight:normal;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_83ef1862d09c1d8b61fb95f4.woff2')format("woff");}.ff2_c00461{font-family:ff2_c00461;line-height:1.133301;font-style:normal;font-weight:normal;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_df53f9f7e663ab5bd6fcb095.woff2')format("woff");}.ff3_c00461{font-family:ff3_c00461;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00461{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00461{vertical-align:0.000000px;}
.v1_c00461{vertical-align:32.040036px;}
.ls4_c00461{letter-spacing:-0.063018px;}
.lsc_c00461{letter-spacing:-0.056016px;}
.lsb_c00461{letter-spacing:-0.049014px;}
.ls8_c00461{letter-spacing:-0.042012px;}
.lsa_c00461{letter-spacing:-0.035010px;}
.lsd_c00461{letter-spacing:-0.028008px;}
.ls6_c00461{letter-spacing:-0.021006px;}
.ls9_c00461{letter-spacing:-0.014004px;}
.ls7_c00461{letter-spacing:-0.007002px;}
.ls5_c00461{letter-spacing:0.000000px;}
.ls0_c00461{letter-spacing:0.007002px;}
.ls3_c00461{letter-spacing:0.014004px;}
.ls2_c00461{letter-spacing:0.021006px;}
.ls1_c00461{letter-spacing:0.023281px;}
.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:-12.967628px;}
.ws1b_c00461{word-spacing:-0.035010px;}
.ws12_c00461{word-spacing:-0.028008px;}
.ws1_c00461{word-spacing:0.000000px;}
.ws15_c00461{word-spacing:0.035010px;}
.ws3_c00461{word-spacing:0.364104px;}
.wsb_c00461{word-spacing:0.378108px;}
.ws16_c00461{word-spacing:0.399114px;}
.wsa_c00461{word-spacing:0.714204px;}
.ws1f_c00461{word-spacing:1.841526px;}
.ws2_c00461{word-spacing:3.578022px;}
.ws7_c00461{word-spacing:3.592026px;}
.ws21_c00461{word-spacing:3.620034px;}
.ws6_c00461{word-spacing:3.627036px;}
.wsc_c00461{word-spacing:3.928122px;}
.ws13_c00461{word-spacing:3.935124px;}
.ws22_c00461{word-spacing:4.327236px;}
.ws17_c00461{word-spacing:4.341240px;}
.ws8_c00461{word-spacing:4.677336px;}
.ws9_c00461{word-spacing:4.684338px;}
.ws1d_c00461{word-spacing:6.812946px;}
.ws14_c00461{word-spacing:9.683766px;}
.ws11_c00461{word-spacing:9.697770px;}
.ws10_c00461{word-spacing:9.739782px;}
.ws18_c00461{word-spacing:10.103886px;}
.ws1c_c00461{word-spacing:12.211488px;}
.ws4_c00461{word-spacing:12.953700px;}
.ws5_c00461{word-spacing:13.310802px;}
.wse_c00461{word-spacing:13.317804px;}
.wsf_c00461{word-spacing:13.324806px;}
.wsd_c00461{word-spacing:14.795226px;}
.ws20_c00461{word-spacing:18.380250px;}
.ws1e_c00461{word-spacing:23.743782px;}
.ws19_c00461{word-spacing:24.114888px;}
.ws1a_c00461{word-spacing:24.142896px;}
._1_c00461{margin-left:-1.351386px;}
._0_c00461{width:1.211346px;}
.fc0_c00461{color:rgb(0,0,0);}
.fs1_c00461{font-size:46.562400px;}
.fs0_c00461{font-size:70.020000px;}
.y0_c00461{bottom:0.000000px;}
.y2_c00461{bottom:109.740968px;}
.y1_c00461{bottom:129.810450px;}
.y22_c00461{bottom:174.448452px;}
.y21_c00461{bottom:204.688339px;}
.y20_c00461{bottom:234.838952px;}
.y1f_c00461{bottom:265.078839px;}
.y1e_c00461{bottom:295.229451px;}
.y1d_c00461{bottom:325.469338px;}
.y1c_c00461{bottom:355.619951px;}
.y1b_c00461{bottom:385.859838px;}
.y1a_c00461{bottom:416.007630px;}
.y19_c00461{bottom:446.247517px;}
.y18_c00461{bottom:476.398129px;}
.y17_c00461{bottom:506.638017px;}
.y16_c00461{bottom:536.788629px;}
.y15_c00461{bottom:567.028516px;}
.y14_c00461{bottom:597.088102px;}
.y13_c00461{bottom:627.327990px;}
.y12_c00461{bottom:657.478602px;}
.y11_c00461{bottom:687.718489px;}
.y10_c00461{bottom:717.869101px;}
.yf_c00461{bottom:748.108989px;}
.ye_c00461{bottom:778.259601px;}
.yd_c00461{bottom:808.499488px;}
.yc_c00461{bottom:838.650100px;}
.yb_c00461{bottom:868.889988px;}
.ya_c00461{bottom:899.039676px;}
.y9_c00461{bottom:929.279563px;}
.y8_c00461{bottom:959.519451px;}
.y7_c00461{bottom:989.670063px;}
.y6_c00461{bottom:1019.909951px;}
.y5_c00461{bottom:1050.060563px;}
.y4_c00461{bottom:1080.300441px;}
.y3_c00461{bottom:1110.451053px;}
.h3_c00461{height:62.600889px;}
.h1_c00461{height:62.771836px;}
.h2_c00461{height:73.782500px;}
.h4_c00461{height:74.031882px;}
.h5_c00461{height:74.040666px;}
.h0_c00461{height:1263.000000px;}
.w0_c00461{width:892.500000px;}
.x0_c00461{left:0.000000px;}
.x2_c00461{left:82.710059px;}
.x1_c00461{left:431.730000px;}
@media print{
.v0_c00461{vertical-align:0.000000pt;}
.v1_c00461{vertical-align:28.480032pt;}
.ls4_c00461{letter-spacing:-0.056016pt;}
.lsc_c00461{letter-spacing:-0.049792pt;}
.lsb_c00461{letter-spacing:-0.043568pt;}
.ls8_c00461{letter-spacing:-0.037344pt;}
.lsa_c00461{letter-spacing:-0.031120pt;}
.lsd_c00461{letter-spacing:-0.024896pt;}
.ls6_c00461{letter-spacing:-0.018672pt;}
.ls9_c00461{letter-spacing:-0.012448pt;}
.ls7_c00461{letter-spacing:-0.006224pt;}
.ls5_c00461{letter-spacing:0.000000pt;}
.ls0_c00461{letter-spacing:0.006224pt;}
.ls3_c00461{letter-spacing:0.012448pt;}
.ls2_c00461{letter-spacing:0.018672pt;}
.ls1_c00461{letter-spacing:0.020694pt;}
.ws0_c00461{word-spacing:-11.526781pt;}
.ws1b_c00461{word-spacing:-0.031120pt;}
.ws12_c00461{word-spacing:-0.024896pt;}
.ws1_c00461{word-spacing:0.000000pt;}
.ws15_c00461{word-spacing:0.031120pt;}
.ws3_c00461{word-spacing:0.323648pt;}
.wsb_c00461{word-spacing:0.336096pt;}
.ws16_c00461{word-spacing:0.354768pt;}
.wsa_c00461{word-spacing:0.634848pt;}
.ws1f_c00461{word-spacing:1.636912pt;}
.ws2_c00461{word-spacing:3.180464pt;}
.ws7_c00461{word-spacing:3.192912pt;}
.ws21_c00461{word-spacing:3.217808pt;}
.ws6_c00461{word-spacing:3.224032pt;}
.wsc_c00461{word-spacing:3.491664pt;}
.ws13_c00461{word-spacing:3.497888pt;}
.ws22_c00461{word-spacing:3.846432pt;}
.ws17_c00461{word-spacing:3.858880pt;}
.ws8_c00461{word-spacing:4.157632pt;}
.ws9_c00461{word-spacing:4.163856pt;}
.ws1d_c00461{word-spacing:6.055952pt;}
.ws14_c00461{word-spacing:8.607792pt;}
.ws11_c00461{word-spacing:8.620240pt;}
.ws10_c00461{word-spacing:8.657584pt;}
.ws18_c00461{word-spacing:8.981232pt;}
.ws1c_c00461{word-spacing:10.854656pt;}
.ws4_c00461{word-spacing:11.514400pt;}
.ws5_c00461{word-spacing:11.831824pt;}
.wse_c00461{word-spacing:11.838048pt;}
.wsf_c00461{word-spacing:11.844272pt;}
.wsd_c00461{word-spacing:13.151312pt;}
.ws20_c00461{word-spacing:16.338000pt;}
.ws1e_c00461{word-spacing:21.105584pt;}
.ws19_c00461{word-spacing:21.435456pt;}
.ws1a_c00461{word-spacing:21.460352pt;}
._1_c00461{margin-left:-1.201232pt;}
._0_c00461{width:1.076752pt;}
.fs1_c00461{font-size:41.388800pt;}
.fs0_c00461{font-size:62.240000pt;}
.y0_c00461{bottom:0.000000pt;}
.y2_c00461{bottom:97.547527pt;}
.y1_c00461{bottom:115.387067pt;}
.y22_c00461{bottom:155.065291pt;}
.y21_c00461{bottom:181.945191pt;}
.y20_c00461{bottom:208.745735pt;}
.y1f_c00461{bottom:235.625635pt;}
.y1e_c00461{bottom:262.426179pt;}
.y1d_c00461{bottom:289.306079pt;}
.y1c_c00461{bottom:316.106623pt;}
.y1b_c00461{bottom:342.986523pt;}
.y1a_c00461{bottom:369.784560pt;}
.y19_c00461{bottom:396.664460pt;}
.y18_c00461{bottom:423.465004pt;}
.y17_c00461{bottom:450.344904pt;}
.y16_c00461{bottom:477.145448pt;}
.y15_c00461{bottom:504.025348pt;}
.y14_c00461{bottom:530.744980pt;}
.y13_c00461{bottom:557.624880pt;}
.y12_c00461{bottom:584.425424pt;}
.y11_c00461{bottom:611.305324pt;}
.y10_c00461{bottom:638.105868pt;}
.yf_c00461{bottom:664.985768pt;}
.ye_c00461{bottom:691.786312pt;}
.yd_c00461{bottom:718.666212pt;}
.yc_c00461{bottom:745.466756pt;}
.yb_c00461{bottom:772.346656pt;}
.ya_c00461{bottom:799.146379pt;}
.y9_c00461{bottom:826.026279pt;}
.y8_c00461{bottom:852.906179pt;}
.y7_c00461{bottom:879.706723pt;}
.y6_c00461{bottom:906.586623pt;}
.y5_c00461{bottom:933.387167pt;}
.y4_c00461{bottom:960.267059pt;}
.y3_c00461{bottom:987.067603pt;}
.h3_c00461{height:55.645234pt;}
.h1_c00461{height:55.797187pt;}
.h2_c00461{height:65.584445pt;}
.h4_c00461{height:65.806118pt;}
.h5_c00461{height:65.813926pt;}
.h0_c00461{height:1122.666667pt;}
.w0_c00461{width:793.333333pt;}
.x0_c00461{left:0.000000pt;}
.x2_c00461{left:73.520052pt;}
.x1_c00461{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9d142caecd75d5597547ea6d.woff2')format("woff");}.ff1_c00462{font-family:ff1_c00462;line-height:1.106934;font-style:normal;font-weight:normal;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_f8225c2ed71b004d295174dc.woff2')format("woff");}.ff2_c00462{font-family:ff2_c00462;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00462{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00462{vertical-align:0.000000px;}
.v1_c00462{vertical-align:32.045580px;}
.ls3_c00462{letter-spacing:-0.063018px;}
.ls9_c00462{letter-spacing:-0.049014px;}
.lsb_c00462{letter-spacing:-0.042012px;}
.ls6_c00462{letter-spacing:-0.035010px;}
.ls5_c00462{letter-spacing:-0.028008px;}
.ls8_c00462{letter-spacing:-0.021006px;}
.ls7_c00462{letter-spacing:-0.014004px;}
.lsa_c00462{letter-spacing:-0.007002px;}
.ls4_c00462{letter-spacing:0.000000px;}
.ls0_c00462{letter-spacing:0.007002px;}
.ls2_c00462{letter-spacing:0.014004px;}
.ls1_c00462{letter-spacing:0.023281px;}
.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:-12.967628px;}
.ws1_c00462{word-spacing:0.000000px;}
.ws1f_c00462{word-spacing:0.014004px;}
.ws3_c00462{word-spacing:0.021006px;}
.ws19_c00462{word-spacing:0.028008px;}
.ws13_c00462{word-spacing:0.329094px;}
.wse_c00462{word-spacing:0.350100px;}
.ws14_c00462{word-spacing:0.378108px;}
.ws8_c00462{word-spacing:0.392112px;}
.ws1c_c00462{word-spacing:1.085310px;}
.ws4_c00462{word-spacing:1.442412px;}
.ws18_c00462{word-spacing:3.262932px;}
.ws15_c00462{word-spacing:3.620034px;}
.ws17_c00462{word-spacing:4.663332px;}
.wsf_c00462{word-spacing:6.819948px;}
.ws7_c00462{word-spacing:7.548156px;}
.ws11_c00462{word-spacing:8.633466px;}
.ws5_c00462{word-spacing:10.804086px;}
.ws1a_c00462{word-spacing:12.617604px;}
.ws1d_c00462{word-spacing:12.624606px;}
.ws1e_c00462{word-spacing:12.960702px;}
.ws16_c00462{word-spacing:14.046012px;}
.wsb_c00462{word-spacing:15.824520px;}
.wsc_c00462{word-spacing:15.845526px;}
.wsa_c00462{word-spacing:16.573734px;}
.ws9_c00462{word-spacing:16.580736px;}
.wsd_c00462{word-spacing:17.988138px;}
.ws12_c00462{word-spacing:24.128892px;}
.ws6_c00462{word-spacing:24.457986px;}
.ws1b_c00462{word-spacing:24.864102px;}
.ws2_c00462{word-spacing:25.935408px;}
.ws10_c00462{word-spacing:29.149326px;}
._0_c00462{margin-left:-1.120320px;}
._1_c00462{width:1.071306px;}
.fc0_c00462{color:rgb(0,0,0);}
.fs1_c00462{font-size:46.562400px;}
.fs0_c00462{font-size:70.020000px;}
.y0_c00462{bottom:0.000000px;}
.y2_c00462{bottom:109.740968px;}
.y1_c00462{bottom:129.810450px;}
.y20_c00462{bottom:153.209780px;}
.y1f_c00462{bottom:183.269366px;}
.y1e_c00462{bottom:213.509253px;}
.y1d_c00462{bottom:243.659865px;}
.y1c_c00462{bottom:273.899753px;}
.y1b_c00462{bottom:324.480670px;}
.y1a_c00462{bottom:354.809833px;}
.y19_c00462{bottom:384.960445px;}
.y18_c00462{bottom:435.450117px;}
.y17_c00462{bottom:465.779280px;}
.y16_c00462{bottom:495.929892px;}
.y15_c00462{bottom:526.169779px;}
.y14_c00462{bottom:556.320391px;}
.y13_c00462{bottom:586.560279px;}
.y12_c00462{bottom:616.710891px;}
.y11_c00462{bottom:646.950778px;}
.y10_c00462{bottom:697.441229px;}
.yf_c00462{bottom:727.681116px;}
.ye_c00462{bottom:757.921004px;}
.yd_c00462{bottom:787.980590px;}
.yc_c00462{bottom:838.650562px;}
.yb_c00462{bottom:868.889055px;}
.ya_c00462{bottom:899.039667px;}
.y9_c00462{bottom:929.279555px;}
.y8_c00462{bottom:959.519442px;}
.y7_c00462{bottom:989.670054px;}
.y6_c00462{bottom:1019.909942px;}
.y5_c00462{bottom:1050.060553px;}
.y4_c00462{bottom:1080.300441px;}
.y3_c00462{bottom:1110.451053px;}
.h3_c00462{height:62.600889px;}
.h1_c00462{height:62.771836px;}
.h4_c00462{height:73.665672px;}
.h5_c00462{height:73.667904px;}
.h2_c00462{height:73.788044px;}
.h0_c00462{height:1263.000000px;}
.w0_c00462{width:892.500000px;}
.x0_c00462{left:0.000000px;}
.x2_c00462{left:82.710059px;}
.x1_c00462{left:431.730000px;}
@media print{
.v0_c00462{vertical-align:0.000000pt;}
.v1_c00462{vertical-align:28.484960pt;}
.ls3_c00462{letter-spacing:-0.056016pt;}
.ls9_c00462{letter-spacing:-0.043568pt;}
.lsb_c00462{letter-spacing:-0.037344pt;}
.ls6_c00462{letter-spacing:-0.031120pt;}
.ls5_c00462{letter-spacing:-0.024896pt;}
.ls8_c00462{letter-spacing:-0.018672pt;}
.ls7_c00462{letter-spacing:-0.012448pt;}
.lsa_c00462{letter-spacing:-0.006224pt;}
.ls4_c00462{letter-spacing:0.000000pt;}
.ls0_c00462{letter-spacing:0.006224pt;}
.ls2_c00462{letter-spacing:0.012448pt;}
.ls1_c00462{letter-spacing:0.020694pt;}
.ws0_c00462{word-spacing:-11.526781pt;}
.ws1_c00462{word-spacing:0.000000pt;}
.ws1f_c00462{word-spacing:0.012448pt;}
.ws3_c00462{word-spacing:0.018672pt;}
.ws19_c00462{word-spacing:0.024896pt;}
.ws13_c00462{word-spacing:0.292528pt;}
.wse_c00462{word-spacing:0.311200pt;}
.ws14_c00462{word-spacing:0.336096pt;}
.ws8_c00462{word-spacing:0.348544pt;}
.ws1c_c00462{word-spacing:0.964720pt;}
.ws4_c00462{word-spacing:1.282144pt;}
.ws18_c00462{word-spacing:2.900384pt;}
.ws15_c00462{word-spacing:3.217808pt;}
.ws17_c00462{word-spacing:4.145184pt;}
.wsf_c00462{word-spacing:6.062176pt;}
.ws7_c00462{word-spacing:6.709472pt;}
.ws11_c00462{word-spacing:7.674192pt;}
.ws5_c00462{word-spacing:9.603632pt;}
.ws1a_c00462{word-spacing:11.215648pt;}
.ws1d_c00462{word-spacing:11.221872pt;}
.ws1e_c00462{word-spacing:11.520624pt;}
.ws16_c00462{word-spacing:12.485344pt;}
.wsb_c00462{word-spacing:14.066240pt;}
.wsc_c00462{word-spacing:14.084912pt;}
.wsa_c00462{word-spacing:14.732208pt;}
.ws9_c00462{word-spacing:14.738432pt;}
.wsd_c00462{word-spacing:15.989456pt;}
.ws12_c00462{word-spacing:21.447904pt;}
.ws6_c00462{word-spacing:21.740432pt;}
.ws1b_c00462{word-spacing:22.101424pt;}
.ws2_c00462{word-spacing:23.053696pt;}
.ws10_c00462{word-spacing:25.910512pt;}
._0_c00462{margin-left:-0.995840pt;}
._1_c00462{width:0.952272pt;}
.fs1_c00462{font-size:41.388800pt;}
.fs0_c00462{font-size:62.240000pt;}
.y0_c00462{bottom:0.000000pt;}
.y2_c00462{bottom:97.547527pt;}
.y1_c00462{bottom:115.387067pt;}
.y20_c00462{bottom:136.186471pt;}
.y1f_c00462{bottom:162.906103pt;}
.y1e_c00462{bottom:189.786003pt;}
.y1d_c00462{bottom:216.586547pt;}
.y1c_c00462{bottom:243.466447pt;}
.y1b_c00462{bottom:288.427263pt;}
.y1a_c00462{bottom:315.386519pt;}
.y19_c00462{bottom:342.187063pt;}
.y18_c00462{bottom:387.066771pt;}
.y17_c00462{bottom:414.026027pt;}
.y16_c00462{bottom:440.826571pt;}
.y15_c00462{bottom:467.706471pt;}
.y14_c00462{bottom:494.507015pt;}
.y13_c00462{bottom:521.386915pt;}
.y12_c00462{bottom:548.187459pt;}
.y11_c00462{bottom:575.067359pt;}
.y10_c00462{bottom:619.947759pt;}
.yf_c00462{bottom:646.827659pt;}
.ye_c00462{bottom:673.707559pt;}
.yd_c00462{bottom:700.427191pt;}
.yc_c00462{bottom:745.467167pt;}
.yb_c00462{bottom:772.345827pt;}
.ya_c00462{bottom:799.146371pt;}
.y9_c00462{bottom:826.026271pt;}
.y8_c00462{bottom:852.906171pt;}
.y7_c00462{bottom:879.706715pt;}
.y6_c00462{bottom:906.586615pt;}
.y5_c00462{bottom:933.387159pt;}
.y4_c00462{bottom:960.267059pt;}
.y3_c00462{bottom:987.067603pt;}
.h3_c00462{height:55.645234pt;}
.h1_c00462{height:55.797187pt;}
.h4_c00462{height:65.480598pt;}
.h5_c00462{height:65.482582pt;}
.h2_c00462{height:65.589373pt;}
.h0_c00462{height:1122.666667pt;}
.w0_c00462{width:793.333333pt;}
.x0_c00462{left:0.000000pt;}
.x2_c00462{left:73.520052pt;}
.x1_c00462{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_baab4f34b607c11c7e11c248.woff2')format("woff");}.ff1_c00463{font-family:ff1_c00463;line-height:1.106934;font-style:normal;font-weight:normal;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_c3ab6d58b3e1ac378d0491c5.woff2')format("woff");}.ff2_c00463{font-family:ff2_c00463;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00463{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00463{vertical-align:0.000000px;}
.v1_c00463{vertical-align:32.037678px;}
.ls6_c00463{letter-spacing:-0.063018px;}
.lsb_c00463{letter-spacing:-0.049014px;}
.lsd_c00463{letter-spacing:-0.042012px;}
.lsa_c00463{letter-spacing:-0.035010px;}
.lse_c00463{letter-spacing:-0.028008px;}
.ls8_c00463{letter-spacing:-0.021006px;}
.lsc_c00463{letter-spacing:-0.014004px;}
.ls9_c00463{letter-spacing:-0.007002px;}
.ls7_c00463{letter-spacing:0.000000px;}
.ls1_c00463{letter-spacing:0.007002px;}
.ls0_c00463{letter-spacing:0.014004px;}
.ls3_c00463{letter-spacing:0.021006px;}
.ls4_c00463{letter-spacing:0.023281px;}
.ls2_c00463{letter-spacing:0.035010px;}
.ls5_c00463{letter-spacing:0.336096px;}
.lsf_c00463{letter-spacing:0.343098px;}
.sc__c00463{text-shadow:none;}
.sc0_c00463{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00463{-webkit-text-stroke:0px transparent;}
.sc0_c00463{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00463{word-spacing:-19.472562px;}
.ws1_c00463{word-spacing:-19.465560px;}
.ws0_c00463{word-spacing:-12.967628px;}
.ws1d_c00463{word-spacing:-0.028008px;}
.ws3_c00463{word-spacing:0.000000px;}
.ws23_c00463{word-spacing:0.007002px;}
.ws12_c00463{word-spacing:0.035010px;}
.ws13_c00463{word-spacing:0.357102px;}
.ws28_c00463{word-spacing:0.364104px;}
.ws22_c00463{word-spacing:0.385110px;}
.wsc_c00463{word-spacing:0.721206px;}
.ws4_c00463{word-spacing:2.884824px;}
.ws7_c00463{word-spacing:3.262932px;}
.ws8_c00463{word-spacing:3.276936px;}
.wsf_c00463{word-spacing:3.914118px;}
.ws15_c00463{word-spacing:3.935124px;}
.ws20_c00463{word-spacing:3.956130px;}
.ws21_c00463{word-spacing:3.977136px;}
.ws14_c00463{word-spacing:3.984138px;}
.ws26_c00463{word-spacing:4.341240px;}
.ws25_c00463{word-spacing:5.034438px;}
.ws24_c00463{word-spacing:5.048442px;}
.ws10_c00463{word-spacing:6.084738px;}
.ws11_c00463{word-spacing:6.126750px;}
.wsa_c00463{word-spacing:6.448842px;}
.ws9_c00463{word-spacing:6.476850px;}
.ws6_c00463{word-spacing:6.833952px;}
.ws5_c00463{word-spacing:6.854958px;}
.ws2b_c00463{word-spacing:6.861960px;}
.ws19_c00463{word-spacing:7.905258px;}
.wse_c00463{word-spacing:9.746784px;}
.ws1a_c00463{word-spacing:10.061874px;}
.ws1b_c00463{word-spacing:10.075878px;}
.ws27_c00463{word-spacing:10.446984px;}
.ws16_c00463{word-spacing:11.868390px;}
.wsb_c00463{word-spacing:19.059444px;}
.ws1e_c00463{word-spacing:19.094454px;}
.ws1f_c00463{word-spacing:19.815660px;}
.wsd_c00463{word-spacing:20.515860px;}
.ws18_c00463{word-spacing:21.223062px;}
.ws17_c00463{word-spacing:23.393682px;}
.ws1c_c00463{word-spacing:24.850098px;}
.ws2a_c00463{word-spacing:27.727920px;}
.ws29_c00463{word-spacing:28.071018px;}
._0_c00463{margin-left:-1.008288px;}
._1_c00463{width:1.225350px;}
.fc0_c00463{color:rgb(0,0,0);}
.fs1_c00463{font-size:46.562400px;}
.fs0_c00463{font-size:70.020000px;}
.y0_c00463{bottom:0.000000px;}
.y2_c00463{bottom:109.740968px;}
.y1_c00463{bottom:129.810450px;}
.y20_c00463{bottom:153.210167px;}
.y1f_c00463{bottom:183.269753px;}
.y1e_c00463{bottom:233.850090px;}
.y1d_c00463{bottom:264.179253px;}
.y1c_c00463{bottom:294.329865px;}
.y1b_c00463{bottom:324.480477px;}
.y1a_c00463{bottom:375.149446px;}
.y19_c00463{bottom:405.389334px;}
.y18_c00463{bottom:435.539946px;}
.y17_c00463{bottom:465.779833px;}
.y16_c00463{bottom:495.930445px;}
.y15_c00463{bottom:546.420117px;}
.y14_c00463{bottom:576.749280px;}
.y13_c00463{bottom:606.899892px;}
.y12_c00463{bottom:637.139779px;}
.y11_c00463{bottom:667.290391px;}
.y10_c00463{bottom:697.530279px;}
.yf_c00463{bottom:727.680891px;}
.ye_c00463{bottom:757.920778px;}
.yd_c00463{bottom:808.411031px;}
.yc_c00463{bottom:838.650918px;}
.yb_c00463{bottom:868.890806px;}
.ya_c00463{bottom:899.041418px;}
.y9_c00463{bottom:929.281305px;}
.y8_c00463{bottom:959.521193px;}
.y7_c00463{bottom:989.671805px;}
.y6_c00463{bottom:1019.911692px;}
.y5_c00463{bottom:1050.062304px;}
.y4_c00463{bottom:1080.302192px;}
.y3_c00463{bottom:1110.361778px;}
.h2_c00463{height:62.600889px;}
.h1_c00463{height:62.771836px;}
.h3_c00463{height:73.666464px;}
.h5_c00463{height:74.030826px;}
.h4_c00463{height:74.033400px;}
.h0_c00463{height:1263.000000px;}
.w0_c00463{width:892.500000px;}
.x0_c00463{left:0.000000px;}
.x2_c00463{left:82.710059px;}
.x1_c00463{left:431.730000px;}
@media print{
.v0_c00463{vertical-align:0.000000pt;}
.v1_c00463{vertical-align:28.477936pt;}
.ls6_c00463{letter-spacing:-0.056016pt;}
.lsb_c00463{letter-spacing:-0.043568pt;}
.lsd_c00463{letter-spacing:-0.037344pt;}
.lsa_c00463{letter-spacing:-0.031120pt;}
.lse_c00463{letter-spacing:-0.024896pt;}
.ls8_c00463{letter-spacing:-0.018672pt;}
.lsc_c00463{letter-spacing:-0.012448pt;}
.ls9_c00463{letter-spacing:-0.006224pt;}
.ls7_c00463{letter-spacing:0.000000pt;}
.ls1_c00463{letter-spacing:0.006224pt;}
.ls0_c00463{letter-spacing:0.012448pt;}
.ls3_c00463{letter-spacing:0.018672pt;}
.ls4_c00463{letter-spacing:0.020694pt;}
.ls2_c00463{letter-spacing:0.031120pt;}
.ls5_c00463{letter-spacing:0.298752pt;}
.lsf_c00463{letter-spacing:0.304976pt;}
.ws2_c00463{word-spacing:-17.308944pt;}
.ws1_c00463{word-spacing:-17.302720pt;}
.ws0_c00463{word-spacing:-11.526781pt;}
.ws1d_c00463{word-spacing:-0.024896pt;}
.ws3_c00463{word-spacing:0.000000pt;}
.ws23_c00463{word-spacing:0.006224pt;}
.ws12_c00463{word-spacing:0.031120pt;}
.ws13_c00463{word-spacing:0.317424pt;}
.ws28_c00463{word-spacing:0.323648pt;}
.ws22_c00463{word-spacing:0.342320pt;}
.wsc_c00463{word-spacing:0.641072pt;}
.ws4_c00463{word-spacing:2.564288pt;}
.ws7_c00463{word-spacing:2.900384pt;}
.ws8_c00463{word-spacing:2.912832pt;}
.wsf_c00463{word-spacing:3.479216pt;}
.ws15_c00463{word-spacing:3.497888pt;}
.ws20_c00463{word-spacing:3.516560pt;}
.ws21_c00463{word-spacing:3.535232pt;}
.ws14_c00463{word-spacing:3.541456pt;}
.ws26_c00463{word-spacing:3.858880pt;}
.ws25_c00463{word-spacing:4.475056pt;}
.ws24_c00463{word-spacing:4.487504pt;}
.ws10_c00463{word-spacing:5.408656pt;}
.ws11_c00463{word-spacing:5.446000pt;}
.wsa_c00463{word-spacing:5.732304pt;}
.ws9_c00463{word-spacing:5.757200pt;}
.ws6_c00463{word-spacing:6.074624pt;}
.ws5_c00463{word-spacing:6.093296pt;}
.ws2b_c00463{word-spacing:6.099520pt;}
.ws19_c00463{word-spacing:7.026896pt;}
.wse_c00463{word-spacing:8.663808pt;}
.ws1a_c00463{word-spacing:8.943888pt;}
.ws1b_c00463{word-spacing:8.956336pt;}
.ws27_c00463{word-spacing:9.286208pt;}
.ws16_c00463{word-spacing:10.549680pt;}
.wsb_c00463{word-spacing:16.941728pt;}
.ws1e_c00463{word-spacing:16.972848pt;}
.ws1f_c00463{word-spacing:17.613920pt;}
.wsd_c00463{word-spacing:18.236320pt;}
.ws18_c00463{word-spacing:18.864944pt;}
.ws17_c00463{word-spacing:20.794384pt;}
.ws1c_c00463{word-spacing:22.088976pt;}
.ws2a_c00463{word-spacing:24.647040pt;}
.ws29_c00463{word-spacing:24.952016pt;}
._0_c00463{margin-left:-0.896256pt;}
._1_c00463{width:1.089200pt;}
.fs1_c00463{font-size:41.388800pt;}
.fs0_c00463{font-size:62.240000pt;}
.y0_c00463{bottom:0.000000pt;}
.y2_c00463{bottom:97.547527pt;}
.y1_c00463{bottom:115.387067pt;}
.y20_c00463{bottom:136.186815pt;}
.y1f_c00463{bottom:162.906447pt;}
.y1e_c00463{bottom:207.866747pt;}
.y1d_c00463{bottom:234.826003pt;}
.y1c_c00463{bottom:261.626547pt;}
.y1b_c00463{bottom:288.427091pt;}
.y1a_c00463{bottom:333.466175pt;}
.y19_c00463{bottom:360.346075pt;}
.y18_c00463{bottom:387.146619pt;}
.y17_c00463{bottom:414.026519pt;}
.y16_c00463{bottom:440.827063pt;}
.y15_c00463{bottom:485.706771pt;}
.y14_c00463{bottom:512.666027pt;}
.y13_c00463{bottom:539.466571pt;}
.y12_c00463{bottom:566.346471pt;}
.y11_c00463{bottom:593.147015pt;}
.y10_c00463{bottom:620.026915pt;}
.yf_c00463{bottom:646.827459pt;}
.ye_c00463{bottom:673.707359pt;}
.yd_c00463{bottom:718.587583pt;}
.yc_c00463{bottom:745.467483pt;}
.yb_c00463{bottom:772.347383pt;}
.ya_c00463{bottom:799.147927pt;}
.y9_c00463{bottom:826.027827pt;}
.y8_c00463{bottom:852.907727pt;}
.y7_c00463{bottom:879.708271pt;}
.y6_c00463{bottom:906.588171pt;}
.y5_c00463{bottom:933.388715pt;}
.y4_c00463{bottom:960.268615pt;}
.y3_c00463{bottom:986.988247pt;}
.h2_c00463{height:55.645234pt;}
.h1_c00463{height:55.797187pt;}
.h3_c00463{height:65.481302pt;}
.h5_c00463{height:65.805179pt;}
.h4_c00463{height:65.807467pt;}
.h0_c00463{height:1122.666667pt;}
.w0_c00463{width:793.333333pt;}
.x0_c00463{left:0.000000pt;}
.x2_c00463{left:73.520052pt;}
.x1_c00463{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1bd02e9dd285b0bcd8eb9753.woff2')format("woff");}.ff1_c00464{font-family:ff1_c00464;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00464;src:url('chunks/assets/font_71f4419739fd18aeb8508b0e.woff2')format("woff");}.ff2_c00464{font-family:ff2_c00464;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00464;src:url('chunks/assets/font_474c9aa43145de7addd98c16.woff2')format("woff");}.ff3_c00464{font-family:ff3_c00464;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00464{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00464{vertical-align:0.000000px;}
.v1_c00464{vertical-align:32.040468px;}
.ls6_c00464{letter-spacing:-0.063018px;}
.lsc_c00464{letter-spacing:-0.056016px;}
.lsb_c00464{letter-spacing:-0.049014px;}
.lsa_c00464{letter-spacing:-0.042012px;}
.lse_c00464{letter-spacing:-0.035010px;}
.ls10_c00464{letter-spacing:-0.028008px;}
.lsd_c00464{letter-spacing:-0.021006px;}
.ls9_c00464{letter-spacing:-0.014004px;}
.ls8_c00464{letter-spacing:-0.007002px;}
.ls7_c00464{letter-spacing:0.000000px;}
.ls3_c00464{letter-spacing:0.007002px;}
.ls2_c00464{letter-spacing:0.014004px;}
.ls5_c00464{letter-spacing:0.023281px;}
.ls4_c00464{letter-spacing:0.028008px;}
.ls1_c00464{letter-spacing:0.301086px;}
.lsf_c00464{letter-spacing:0.343098px;}
.ls0_c00464{letter-spacing:4.656330px;}
.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:-19.416546px;}
.ws1_c00464{word-spacing:-12.967628px;}
.ws1d_c00464{word-spacing:-0.007002px;}
.ws2_c00464{word-spacing:0.000000px;}
.ws2a_c00464{word-spacing:0.014004px;}
.ws7_c00464{word-spacing:0.042012px;}
.ws16_c00464{word-spacing:0.392112px;}
.ws10_c00464{word-spacing:0.700200px;}
.ws11_c00464{word-spacing:0.749214px;}
.ws8_c00464{word-spacing:1.421406px;}
.ws9_c00464{word-spacing:1.442412px;}
.ws1e_c00464{word-spacing:1.792512px;}
.ws18_c00464{word-spacing:2.156616px;}
.ws19_c00464{word-spacing:2.492712px;}
.ws22_c00464{word-spacing:2.499714px;}
.wsa_c00464{word-spacing:3.585024px;}
.ws3_c00464{word-spacing:4.663332px;}
.wsb_c00464{word-spacing:4.670334px;}
.wsc_c00464{word-spacing:4.684338px;}
.ws26_c00464{word-spacing:5.377536px;}
.ws12_c00464{word-spacing:5.762646px;}
.ws13_c00464{word-spacing:5.783652px;}
.ws15_c00464{word-spacing:6.798942px;}
.ws14_c00464{word-spacing:6.861960px;}
.ws1a_c00464{word-spacing:7.912260px;}
.wsd_c00464{word-spacing:11.154186px;}
.wse_c00464{word-spacing:11.168190px;}
.ws21_c00464{word-spacing:12.582594px;}
.ws27_c00464{word-spacing:15.474420px;}
.ws28_c00464{word-spacing:17.617032px;}
.ws29_c00464{word-spacing:17.645040px;}
.ws17_c00464{word-spacing:18.002142px;}
.ws6_c00464{word-spacing:18.695340px;}
.ws4_c00464{word-spacing:18.723348px;}
.wsf_c00464{word-spacing:18.737352px;}
.ws5_c00464{word-spacing:18.751356px;}
.ws23_c00464{word-spacing:23.386680px;}
.ws24_c00464{word-spacing:23.750784px;}
.ws1c_c00464{word-spacing:24.100884px;}
.ws1b_c00464{word-spacing:24.107886px;}
.ws25_c00464{word-spacing:24.836094px;}
.ws20_c00464{word-spacing:25.879392px;}
.ws1f_c00464{word-spacing:25.935408px;}
._3_c00464{margin-left:-2.163618px;}
._2_c00464{margin-left:-1.050300px;}
._0_c00464{width:1.190340px;}
._1_c00464{width:4.754358px;}
.fc0_c00464{color:rgb(0,0,0);}
.fs1_c00464{font-size:46.562400px;}
.fs0_c00464{font-size:70.020000px;}
.y0_c00464{bottom:0.000000px;}
.y2_c00464{bottom:109.740968px;}
.y1_c00464{bottom:129.810450px;}
.y20_c00464{bottom:173.548560px;}
.y1f_c00464{bottom:203.788448px;}
.y1e_c00464{bottom:233.939059px;}
.y1d_c00464{bottom:264.178947px;}
.y1c_c00464{bottom:294.329559px;}
.y1b_c00464{bottom:324.569446px;}
.y1a_c00464{bottom:354.809334px;}
.y19_c00464{bottom:384.959946px;}
.y18_c00464{bottom:415.199833px;}
.y17_c00464{bottom:445.350445px;}
.y16_c00464{bottom:475.590333px;}
.y15_c00464{bottom:505.740945px;}
.y14_c00464{bottom:556.230616px;}
.y13_c00464{bottom:586.559779px;}
.y12_c00464{bottom:616.710391px;}
.y11_c00464{bottom:646.950279px;}
.y10_c00464{bottom:677.100891px;}
.yf_c00464{bottom:707.340778px;}
.ye_c00464{bottom:757.830333px;}
.yd_c00464{bottom:788.070221px;}
.yc_c00464{bottom:818.310108px;}
.yb_c00464{bottom:848.460720px;}
.ya_c00464{bottom:878.700607px;}
.y9_c00464{bottom:908.851219px;}
.y8_c00464{bottom:939.091107px;}
.y7_c00464{bottom:969.241719px;}
.y6_c00464{bottom:999.481606px;}
.y5_c00464{bottom:1049.971278px;}
.y4_c00464{bottom:1080.300441px;}
.y3_c00464{bottom:1110.451053px;}
.h3_c00464{height:62.600889px;}
.h1_c00464{height:62.771836px;}
.h2_c00464{height:63.216299px;}
.h4_c00464{height:73.669254px;}
.h0_c00464{height:1263.000000px;}
.w0_c00464{width:892.500000px;}
.x0_c00464{left:0.000000px;}
.x2_c00464{left:82.710059px;}
.x1_c00464{left:431.730000px;}
@media print{
.v0_c00464{vertical-align:0.000000pt;}
.v1_c00464{vertical-align:28.480416pt;}
.ls6_c00464{letter-spacing:-0.056016pt;}
.lsc_c00464{letter-spacing:-0.049792pt;}
.lsb_c00464{letter-spacing:-0.043568pt;}
.lsa_c00464{letter-spacing:-0.037344pt;}
.lse_c00464{letter-spacing:-0.031120pt;}
.ls10_c00464{letter-spacing:-0.024896pt;}
.lsd_c00464{letter-spacing:-0.018672pt;}
.ls9_c00464{letter-spacing:-0.012448pt;}
.ls8_c00464{letter-spacing:-0.006224pt;}
.ls7_c00464{letter-spacing:0.000000pt;}
.ls3_c00464{letter-spacing:0.006224pt;}
.ls2_c00464{letter-spacing:0.012448pt;}
.ls5_c00464{letter-spacing:0.020694pt;}
.ls4_c00464{letter-spacing:0.024896pt;}
.ls1_c00464{letter-spacing:0.267632pt;}
.lsf_c00464{letter-spacing:0.304976pt;}
.ls0_c00464{letter-spacing:4.138960pt;}
.ws0_c00464{word-spacing:-17.259152pt;}
.ws1_c00464{word-spacing:-11.526781pt;}
.ws1d_c00464{word-spacing:-0.006224pt;}
.ws2_c00464{word-spacing:0.000000pt;}
.ws2a_c00464{word-spacing:0.012448pt;}
.ws7_c00464{word-spacing:0.037344pt;}
.ws16_c00464{word-spacing:0.348544pt;}
.ws10_c00464{word-spacing:0.622400pt;}
.ws11_c00464{word-spacing:0.665968pt;}
.ws8_c00464{word-spacing:1.263472pt;}
.ws9_c00464{word-spacing:1.282144pt;}
.ws1e_c00464{word-spacing:1.593344pt;}
.ws18_c00464{word-spacing:1.916992pt;}
.ws19_c00464{word-spacing:2.215744pt;}
.ws22_c00464{word-spacing:2.221968pt;}
.wsa_c00464{word-spacing:3.186688pt;}
.ws3_c00464{word-spacing:4.145184pt;}
.wsb_c00464{word-spacing:4.151408pt;}
.wsc_c00464{word-spacing:4.163856pt;}
.ws26_c00464{word-spacing:4.780032pt;}
.ws12_c00464{word-spacing:5.122352pt;}
.ws13_c00464{word-spacing:5.141024pt;}
.ws15_c00464{word-spacing:6.043504pt;}
.ws14_c00464{word-spacing:6.099520pt;}
.ws1a_c00464{word-spacing:7.033120pt;}
.wsd_c00464{word-spacing:9.914832pt;}
.wse_c00464{word-spacing:9.927280pt;}
.ws21_c00464{word-spacing:11.184528pt;}
.ws27_c00464{word-spacing:13.755040pt;}
.ws28_c00464{word-spacing:15.659584pt;}
.ws29_c00464{word-spacing:15.684480pt;}
.ws17_c00464{word-spacing:16.001904pt;}
.ws6_c00464{word-spacing:16.618080pt;}
.ws4_c00464{word-spacing:16.642976pt;}
.wsf_c00464{word-spacing:16.655424pt;}
.ws5_c00464{word-spacing:16.667872pt;}
.ws23_c00464{word-spacing:20.788160pt;}
.ws24_c00464{word-spacing:21.111808pt;}
.ws1c_c00464{word-spacing:21.423008pt;}
.ws1b_c00464{word-spacing:21.429232pt;}
.ws25_c00464{word-spacing:22.076528pt;}
.ws20_c00464{word-spacing:23.003904pt;}
.ws1f_c00464{word-spacing:23.053696pt;}
._3_c00464{margin-left:-1.923216pt;}
._2_c00464{margin-left:-0.933600pt;}
._0_c00464{width:1.058080pt;}
._1_c00464{width:4.226096pt;}
.fs1_c00464{font-size:41.388800pt;}
.fs0_c00464{font-size:62.240000pt;}
.y0_c00464{bottom:0.000000pt;}
.y2_c00464{bottom:97.547527pt;}
.y1_c00464{bottom:115.387067pt;}
.y20_c00464{bottom:154.265387pt;}
.y1f_c00464{bottom:181.145287pt;}
.y1e_c00464{bottom:207.945831pt;}
.y1d_c00464{bottom:234.825731pt;}
.y1c_c00464{bottom:261.626275pt;}
.y1b_c00464{bottom:288.506175pt;}
.y1a_c00464{bottom:315.386075pt;}
.y19_c00464{bottom:342.186619pt;}
.y18_c00464{bottom:369.066519pt;}
.y17_c00464{bottom:395.867063pt;}
.y16_c00464{bottom:422.746963pt;}
.y15_c00464{bottom:449.547507pt;}
.y14_c00464{bottom:494.427215pt;}
.y13_c00464{bottom:521.386471pt;}
.y12_c00464{bottom:548.187015pt;}
.y11_c00464{bottom:575.066915pt;}
.y10_c00464{bottom:601.867459pt;}
.yf_c00464{bottom:628.747359pt;}
.ye_c00464{bottom:673.626963pt;}
.yd_c00464{bottom:700.506863pt;}
.yc_c00464{bottom:727.386763pt;}
.yb_c00464{bottom:754.187307pt;}
.ya_c00464{bottom:781.067207pt;}
.y9_c00464{bottom:807.867751pt;}
.y8_c00464{bottom:834.747651pt;}
.y7_c00464{bottom:861.548195pt;}
.y6_c00464{bottom:888.428095pt;}
.y5_c00464{bottom:933.307803pt;}
.y4_c00464{bottom:960.267059pt;}
.y3_c00464{bottom:987.067603pt;}
.h3_c00464{height:55.645234pt;}
.h1_c00464{height:55.797187pt;}
.h2_c00464{height:56.192266pt;}
.h4_c00464{height:65.483782pt;}
.h0_c00464{height:1122.666667pt;}
.w0_c00464{width:793.333333pt;}
.x0_c00464{left:0.000000pt;}
.x2_c00464{left:73.520052pt;}
.x1_c00464{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d571e0c1b7f6df854097976c.woff2')format("woff");}.ff1_c00465{font-family:ff1_c00465;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00465;src:url('chunks/assets/font_f239d9b56dd2c3582385591e.woff2')format("woff");}.ff2_c00465{font-family:ff2_c00465;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00465{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00465{vertical-align:0.000000px;}
.v1_c00465{vertical-align:32.041584px;}
.ls7_c00465{letter-spacing:-0.063018px;}
.lsa_c00465{letter-spacing:-0.049014px;}
.lse_c00465{letter-spacing:-0.035010px;}
.lsd_c00465{letter-spacing:-0.028008px;}
.ls9_c00465{letter-spacing:-0.021006px;}
.lsb_c00465{letter-spacing:-0.014004px;}
.lsc_c00465{letter-spacing:-0.007002px;}
.ls8_c00465{letter-spacing:0.000000px;}
.ls4_c00465{letter-spacing:0.007002px;}
.ls2_c00465{letter-spacing:0.014004px;}
.ls1_c00465{letter-spacing:0.021006px;}
.ls0_c00465{letter-spacing:0.023281px;}
.ls3_c00465{letter-spacing:0.028008px;}
.ls6_c00465{letter-spacing:0.035010px;}
.ls5_c00465{letter-spacing:0.042012px;}
.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:-12.967628px;}
.ws1d_c00465{word-spacing:-0.056016px;}
.ws19_c00465{word-spacing:-0.042012px;}
.ws1f_c00465{word-spacing:-0.007002px;}
.ws1_c00465{word-spacing:0.000000px;}
.ws7_c00465{word-spacing:0.007002px;}
.ws14_c00465{word-spacing:0.021006px;}
.ws20_c00465{word-spacing:0.350100px;}
.ws22_c00465{word-spacing:2.128608px;}
.ws21_c00465{word-spacing:2.149614px;}
.ws11_c00465{word-spacing:2.513718px;}
.ws2_c00465{word-spacing:3.970134px;}
.ws4_c00465{word-spacing:4.320234px;}
.ws3_c00465{word-spacing:4.355244px;}
.ws18_c00465{word-spacing:4.677336px;}
.ws17_c00465{word-spacing:4.684338px;}
.ws16_c00465{word-spacing:5.027436px;}
.ws1e_c00465{word-spacing:5.034438px;}
.ws15_c00465{word-spacing:5.048442px;}
.wsa_c00465{word-spacing:5.391540px;}
.ws8_c00465{word-spacing:6.805944px;}
.ws9_c00465{word-spacing:6.854958px;}
.ws13_c00465{word-spacing:7.170048px;}
.ws12_c00465{word-spacing:7.212060px;}
.wsd_c00465{word-spacing:9.690768px;}
.wsc_c00465{word-spacing:9.711774px;}
.wsf_c00465{word-spacing:9.718776px;}
.wse_c00465{word-spacing:9.725778px;}
.ws10_c00465{word-spacing:10.089882px;}
.wsb_c00465{word-spacing:12.232494px;}
.ws24_c00465{word-spacing:13.268790px;}
.ws23_c00465{word-spacing:13.296798px;}
.ws5_c00465{word-spacing:13.310802px;}
.ws6_c00465{word-spacing:13.331808px;}
.ws1c_c00465{word-spacing:19.094454px;}
.ws1b_c00465{word-spacing:23.722776px;}
.ws1a_c00465{word-spacing:23.736780px;}
._2_c00465{margin-left:-5.538582px;}
._1_c00465{margin-left:-1.106316px;}
._0_c00465{width:1.533438px;}
.fc0_c00465{color:rgb(0,0,0);}
.fs1_c00465{font-size:46.562400px;}
.fs0_c00465{font-size:70.020000px;}
.y0_c00465{bottom:0.000000px;}
.y2_c00465{bottom:109.740968px;}
.y1_c00465{bottom:129.810450px;}
.y21_c00465{bottom:204.687952px;}
.y20_c00465{bottom:234.838564px;}
.y1f_c00465{bottom:265.078452px;}
.y1e_c00465{bottom:295.229064px;}
.y1d_c00465{bottom:325.468951px;}
.y1c_c00465{bottom:355.619563px;}
.y1b_c00465{bottom:385.859451px;}
.y1a_c00465{bottom:416.010063px;}
.y19_c00465{bottom:446.249950px;}
.y18_c00465{bottom:476.400562px;}
.y17_c00465{bottom:506.637480px;}
.y16_c00465{bottom:536.788092px;}
.y15_c00465{bottom:567.027980px;}
.y14_c00465{bottom:597.087566px;}
.y13_c00465{bottom:627.327453px;}
.y12_c00465{bottom:657.478065px;}
.y11_c00465{bottom:687.717953px;}
.y10_c00465{bottom:717.868565px;}
.yf_c00465{bottom:748.108452px;}
.ye_c00465{bottom:778.259064px;}
.yd_c00465{bottom:808.498952px;}
.yc_c00465{bottom:838.649564px;}
.yb_c00465{bottom:868.889451px;}
.ya_c00465{bottom:899.040063px;}
.y9_c00465{bottom:929.279951px;}
.y8_c00465{bottom:959.519838px;}
.y7_c00465{bottom:989.670054px;}
.y6_c00465{bottom:1019.909942px;}
.y5_c00465{bottom:1050.060553px;}
.y4_c00465{bottom:1080.300441px;}
.y3_c00465{bottom:1110.451053px;}
.h2_c00465{height:62.600889px;}
.h1_c00465{height:62.771836px;}
.h3_c00465{height:73.670370px;}
.h4_c00465{height:73.680666px;}
.h0_c00465{height:1263.000000px;}
.w0_c00465{width:892.500000px;}
.x0_c00465{left:0.000000px;}
.x2_c00465{left:82.710059px;}
.x1_c00465{left:431.730000px;}
@media print{
.v0_c00465{vertical-align:0.000000pt;}
.v1_c00465{vertical-align:28.481408pt;}
.ls7_c00465{letter-spacing:-0.056016pt;}
.lsa_c00465{letter-spacing:-0.043568pt;}
.lse_c00465{letter-spacing:-0.031120pt;}
.lsd_c00465{letter-spacing:-0.024896pt;}
.ls9_c00465{letter-spacing:-0.018672pt;}
.lsb_c00465{letter-spacing:-0.012448pt;}
.lsc_c00465{letter-spacing:-0.006224pt;}
.ls8_c00465{letter-spacing:0.000000pt;}
.ls4_c00465{letter-spacing:0.006224pt;}
.ls2_c00465{letter-spacing:0.012448pt;}
.ls1_c00465{letter-spacing:0.018672pt;}
.ls0_c00465{letter-spacing:0.020694pt;}
.ls3_c00465{letter-spacing:0.024896pt;}
.ls6_c00465{letter-spacing:0.031120pt;}
.ls5_c00465{letter-spacing:0.037344pt;}
.ws0_c00465{word-spacing:-11.526781pt;}
.ws1d_c00465{word-spacing:-0.049792pt;}
.ws19_c00465{word-spacing:-0.037344pt;}
.ws1f_c00465{word-spacing:-0.006224pt;}
.ws1_c00465{word-spacing:0.000000pt;}
.ws7_c00465{word-spacing:0.006224pt;}
.ws14_c00465{word-spacing:0.018672pt;}
.ws20_c00465{word-spacing:0.311200pt;}
.ws22_c00465{word-spacing:1.892096pt;}
.ws21_c00465{word-spacing:1.910768pt;}
.ws11_c00465{word-spacing:2.234416pt;}
.ws2_c00465{word-spacing:3.529008pt;}
.ws4_c00465{word-spacing:3.840208pt;}
.ws3_c00465{word-spacing:3.871328pt;}
.ws18_c00465{word-spacing:4.157632pt;}
.ws17_c00465{word-spacing:4.163856pt;}
.ws16_c00465{word-spacing:4.468832pt;}
.ws1e_c00465{word-spacing:4.475056pt;}
.ws15_c00465{word-spacing:4.487504pt;}
.wsa_c00465{word-spacing:4.792480pt;}
.ws8_c00465{word-spacing:6.049728pt;}
.ws9_c00465{word-spacing:6.093296pt;}
.ws13_c00465{word-spacing:6.373376pt;}
.ws12_c00465{word-spacing:6.410720pt;}
.wsd_c00465{word-spacing:8.614016pt;}
.wsc_c00465{word-spacing:8.632688pt;}
.wsf_c00465{word-spacing:8.638912pt;}
.wse_c00465{word-spacing:8.645136pt;}
.ws10_c00465{word-spacing:8.968784pt;}
.wsb_c00465{word-spacing:10.873328pt;}
.ws24_c00465{word-spacing:11.794480pt;}
.ws23_c00465{word-spacing:11.819376pt;}
.ws5_c00465{word-spacing:11.831824pt;}
.ws6_c00465{word-spacing:11.850496pt;}
.ws1c_c00465{word-spacing:16.972848pt;}
.ws1b_c00465{word-spacing:21.086912pt;}
.ws1a_c00465{word-spacing:21.099360pt;}
._2_c00465{margin-left:-4.923184pt;}
._1_c00465{margin-left:-0.983392pt;}
._0_c00465{width:1.363056pt;}
.fs1_c00465{font-size:41.388800pt;}
.fs0_c00465{font-size:62.240000pt;}
.y0_c00465{bottom:0.000000pt;}
.y2_c00465{bottom:97.547527pt;}
.y1_c00465{bottom:115.387067pt;}
.y21_c00465{bottom:181.944847pt;}
.y20_c00465{bottom:208.745391pt;}
.y1f_c00465{bottom:235.625291pt;}
.y1e_c00465{bottom:262.425835pt;}
.y1d_c00465{bottom:289.305735pt;}
.y1c_c00465{bottom:316.106279pt;}
.y1b_c00465{bottom:342.986179pt;}
.y1a_c00465{bottom:369.786723pt;}
.y19_c00465{bottom:396.666623pt;}
.y18_c00465{bottom:423.467167pt;}
.y17_c00465{bottom:450.344427pt;}
.y16_c00465{bottom:477.144971pt;}
.y15_c00465{bottom:504.024871pt;}
.y14_c00465{bottom:530.744503pt;}
.y13_c00465{bottom:557.624403pt;}
.y12_c00465{bottom:584.424947pt;}
.y11_c00465{bottom:611.304847pt;}
.y10_c00465{bottom:638.105391pt;}
.yf_c00465{bottom:664.985291pt;}
.ye_c00465{bottom:691.785835pt;}
.yd_c00465{bottom:718.665735pt;}
.yc_c00465{bottom:745.466279pt;}
.yb_c00465{bottom:772.346179pt;}
.ya_c00465{bottom:799.146723pt;}
.y9_c00465{bottom:826.026623pt;}
.y8_c00465{bottom:852.906523pt;}
.y7_c00465{bottom:879.706715pt;}
.y6_c00465{bottom:906.586615pt;}
.y5_c00465{bottom:933.387159pt;}
.y4_c00465{bottom:960.267059pt;}
.y3_c00465{bottom:987.067603pt;}
.h2_c00465{height:55.645234pt;}
.h1_c00465{height:55.797187pt;}
.h3_c00465{height:65.484774pt;}
.h4_c00465{height:65.493926pt;}
.h0_c00465{height:1122.666667pt;}
.w0_c00465{width:793.333333pt;}
.x0_c00465{left:0.000000pt;}
.x2_c00465{left:73.520052pt;}
.x1_c00465{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_160c12df72c7661248759389.woff2')format("woff");}.ff1_c00466{font-family:ff1_c00466;line-height:1.106934;font-style:normal;font-weight:normal;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_adacf285cb4c719e74de3eaa.woff2')format("woff");}.ff2_c00466{font-family:ff2_c00466;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00466{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00466{vertical-align:0.000000px;}
.v1_c00466{vertical-align:32.040036px;}
.ls3_c00466{letter-spacing:-0.063018px;}
.ls7_c00466{letter-spacing:-0.042012px;}
.lsa_c00466{letter-spacing:-0.035010px;}
.ls5_c00466{letter-spacing:-0.028008px;}
.ls9_c00466{letter-spacing:-0.021006px;}
.ls6_c00466{letter-spacing:-0.014004px;}
.ls8_c00466{letter-spacing:-0.007002px;}
.ls4_c00466{letter-spacing:0.000000px;}
.ls1_c00466{letter-spacing:0.007002px;}
.ls2_c00466{letter-spacing:0.014004px;}
.ls0_c00466{letter-spacing:0.023281px;}
.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:-12.967628px;}
.ws18_c00466{word-spacing:-0.358530px;}
.wsd_c00466{word-spacing:-0.014004px;}
.ws1_c00466{word-spacing:0.000000px;}
.ws9_c00466{word-spacing:0.007002px;}
.ws3_c00466{word-spacing:0.014004px;}
.ws21_c00466{word-spacing:0.021006px;}
.ws17_c00466{word-spacing:0.028008px;}
.ws4_c00466{word-spacing:0.357102px;}
.ws20_c00466{word-spacing:0.385110px;}
.ws11_c00466{word-spacing:1.778508px;}
.ws22_c00466{word-spacing:3.956130px;}
.ws2_c00466{word-spacing:5.412546px;}
.wsb_c00466{word-spacing:6.455844px;}
.ws1c_c00466{word-spacing:6.476850px;}
.wsc_c00466{word-spacing:6.490854px;}
.ws6_c00466{word-spacing:6.854958px;}
.ws5_c00466{word-spacing:6.868962px;}
.ws14_c00466{word-spacing:7.898256px;}
.ws13_c00466{word-spacing:7.912260px;}
.ws8_c00466{word-spacing:8.654472px;}
.ws19_c00466{word-spacing:8.990568px;}
.ws1d_c00466{word-spacing:9.739782px;}
.ws12_c00466{word-spacing:9.746784px;}
.ws1f_c00466{word-spacing:10.769076px;}
.ws1e_c00466{word-spacing:11.147184px;}
.wse_c00466{word-spacing:14.753214px;}
.ws24_c00466{word-spacing:15.838524px;}
.ws23_c00466{word-spacing:15.845526px;}
.wsa_c00466{word-spacing:20.151756px;}
.ws1b_c00466{word-spacing:21.251070px;}
.ws1a_c00466{word-spacing:21.972276px;}
.ws7_c00466{word-spacing:28.799226px;}
.ws10_c00466{word-spacing:32.034150px;}
.wsf_c00466{word-spacing:32.055156px;}
.ws15_c00466{word-spacing:34.568874px;}
.ws16_c00466{word-spacing:34.967988px;}
._1_c00466{margin-left:-1.134324px;}
._0_c00466{width:1.078308px;}
.fc0_c00466{color:rgb(0,0,0);}
.fs1_c00466{font-size:46.562400px;}
.fs0_c00466{font-size:70.020000px;}
.y0_c00466{bottom:0.000000px;}
.y2_c00466{bottom:109.740968px;}
.y1_c00466{bottom:129.810450px;}
.y21_c00466{bottom:163.827490px;}
.y20_c00466{bottom:193.978103px;}
.y1f_c00466{bottom:224.217990px;}
.y1e_c00466{bottom:254.368602px;}
.y1d_c00466{bottom:284.608490px;}
.y1c_c00466{bottom:314.759102px;}
.y1b_c00466{bottom:344.998989px;}
.y1a_c00466{bottom:375.149601px;}
.y19_c00466{bottom:405.389488px;}
.y18_c00466{bottom:435.540100px;}
.y17_c00466{bottom:465.779988px;}
.y16_c00466{bottom:495.931170px;}
.y15_c00466{bottom:526.171057px;}
.y14_c00466{bottom:556.321670px;}
.y13_c00466{bottom:586.561557px;}
.y12_c00466{bottom:616.712169px;}
.y11_c00466{bottom:667.201841px;}
.y10_c00466{bottom:697.531004px;}
.yf_c00466{bottom:727.590590px;}
.ye_c00466{bottom:778.260562px;}
.yd_c00466{bottom:808.499451px;}
.yc_c00466{bottom:838.650063px;}
.yb_c00466{bottom:868.889950px;}
.ya_c00466{bottom:899.040562px;}
.y9_c00466{bottom:929.279563px;}
.y8_c00466{bottom:959.519451px;}
.y7_c00466{bottom:989.670063px;}
.y6_c00466{bottom:1019.909951px;}
.y5_c00466{bottom:1050.060563px;}
.y4_c00466{bottom:1080.300441px;}
.y3_c00466{bottom:1110.451053px;}
.h4_c00466{height:62.600889px;}
.h1_c00466{height:62.771836px;}
.h5_c00466{height:73.672782px;}
.h2_c00466{height:73.782500px;}
.h3_c00466{height:73.786610px;}
.h6_c00466{height:74.140184px;}
.h0_c00466{height:1263.000000px;}
.w0_c00466{width:892.500000px;}
.x0_c00466{left:0.000000px;}
.x2_c00466{left:82.710059px;}
.x1_c00466{left:431.730000px;}
@media print{
.v0_c00466{vertical-align:0.000000pt;}
.v1_c00466{vertical-align:28.480032pt;}
.ls3_c00466{letter-spacing:-0.056016pt;}
.ls7_c00466{letter-spacing:-0.037344pt;}
.lsa_c00466{letter-spacing:-0.031120pt;}
.ls5_c00466{letter-spacing:-0.024896pt;}
.ls9_c00466{letter-spacing:-0.018672pt;}
.ls6_c00466{letter-spacing:-0.012448pt;}
.ls8_c00466{letter-spacing:-0.006224pt;}
.ls4_c00466{letter-spacing:0.000000pt;}
.ls1_c00466{letter-spacing:0.006224pt;}
.ls2_c00466{letter-spacing:0.012448pt;}
.ls0_c00466{letter-spacing:0.020694pt;}
.ws0_c00466{word-spacing:-11.526781pt;}
.ws18_c00466{word-spacing:-0.318694pt;}
.wsd_c00466{word-spacing:-0.012448pt;}
.ws1_c00466{word-spacing:0.000000pt;}
.ws9_c00466{word-spacing:0.006224pt;}
.ws3_c00466{word-spacing:0.012448pt;}
.ws21_c00466{word-spacing:0.018672pt;}
.ws17_c00466{word-spacing:0.024896pt;}
.ws4_c00466{word-spacing:0.317424pt;}
.ws20_c00466{word-spacing:0.342320pt;}
.ws11_c00466{word-spacing:1.580896pt;}
.ws22_c00466{word-spacing:3.516560pt;}
.ws2_c00466{word-spacing:4.811152pt;}
.wsb_c00466{word-spacing:5.738528pt;}
.ws1c_c00466{word-spacing:5.757200pt;}
.wsc_c00466{word-spacing:5.769648pt;}
.ws6_c00466{word-spacing:6.093296pt;}
.ws5_c00466{word-spacing:6.105744pt;}
.ws14_c00466{word-spacing:7.020672pt;}
.ws13_c00466{word-spacing:7.033120pt;}
.ws8_c00466{word-spacing:7.692864pt;}
.ws19_c00466{word-spacing:7.991616pt;}
.ws1d_c00466{word-spacing:8.657584pt;}
.ws12_c00466{word-spacing:8.663808pt;}
.ws1f_c00466{word-spacing:9.572512pt;}
.ws1e_c00466{word-spacing:9.908608pt;}
.wse_c00466{word-spacing:13.113968pt;}
.ws24_c00466{word-spacing:14.078688pt;}
.ws23_c00466{word-spacing:14.084912pt;}
.wsa_c00466{word-spacing:17.912672pt;}
.ws1b_c00466{word-spacing:18.889840pt;}
.ws1a_c00466{word-spacing:19.530912pt;}
.ws7_c00466{word-spacing:25.599312pt;}
.ws10_c00466{word-spacing:28.474800pt;}
.wsf_c00466{word-spacing:28.493472pt;}
.ws15_c00466{word-spacing:30.727888pt;}
.ws16_c00466{word-spacing:31.082656pt;}
._1_c00466{margin-left:-1.008288pt;}
._0_c00466{width:0.958496pt;}
.fs1_c00466{font-size:41.388800pt;}
.fs0_c00466{font-size:62.240000pt;}
.y0_c00466{bottom:0.000000pt;}
.y2_c00466{bottom:97.547527pt;}
.y1_c00466{bottom:115.387067pt;}
.y21_c00466{bottom:145.624436pt;}
.y20_c00466{bottom:172.424980pt;}
.y1f_c00466{bottom:199.304880pt;}
.y1e_c00466{bottom:226.105424pt;}
.y1d_c00466{bottom:252.985324pt;}
.y1c_c00466{bottom:279.785868pt;}
.y1b_c00466{bottom:306.665768pt;}
.y1a_c00466{bottom:333.466312pt;}
.y19_c00466{bottom:360.346212pt;}
.y18_c00466{bottom:387.146756pt;}
.y17_c00466{bottom:414.026656pt;}
.y16_c00466{bottom:440.827707pt;}
.y15_c00466{bottom:467.707607pt;}
.y14_c00466{bottom:494.508151pt;}
.y13_c00466{bottom:521.388051pt;}
.y12_c00466{bottom:548.188595pt;}
.y11_c00466{bottom:593.068303pt;}
.y10_c00466{bottom:620.027559pt;}
.yf_c00466{bottom:646.747191pt;}
.ye_c00466{bottom:691.787167pt;}
.yd_c00466{bottom:718.666179pt;}
.yc_c00466{bottom:745.466723pt;}
.yb_c00466{bottom:772.346623pt;}
.ya_c00466{bottom:799.147167pt;}
.y9_c00466{bottom:826.026279pt;}
.y8_c00466{bottom:852.906179pt;}
.y7_c00466{bottom:879.706723pt;}
.y6_c00466{bottom:906.586623pt;}
.y5_c00466{bottom:933.387167pt;}
.y4_c00466{bottom:960.267059pt;}
.y3_c00466{bottom:987.067603pt;}
.h4_c00466{height:55.645234pt;}
.h1_c00466{height:55.797187pt;}
.h5_c00466{height:65.486918pt;}
.h2_c00466{height:65.584445pt;}
.h3_c00466{height:65.588098pt;}
.h6_c00466{height:65.902386pt;}
.h0_c00466{height:1122.666667pt;}
.w0_c00466{width:793.333333pt;}
.x0_c00466{left:0.000000pt;}
.x2_c00466{left:73.520052pt;}
.x1_c00466{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_90acd7217223bf8224e05c50.woff2')format("woff");}.ff1_c00467{font-family:ff1_c00467;line-height:1.106934;font-style:normal;font-weight:normal;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_e1db775bd360c000716094a4.woff2')format("woff");}.ff2_c00467{font-family:ff2_c00467;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00467{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00467{vertical-align:0.000000px;}
.v1_c00467{vertical-align:32.042034px;}
.ls7_c00467{letter-spacing:-0.063018px;}
.lsf_c00467{letter-spacing:-0.049014px;}
.lsb_c00467{letter-spacing:-0.042012px;}
.lse_c00467{letter-spacing:-0.035010px;}
.lsd_c00467{letter-spacing:-0.028008px;}
.ls9_c00467{letter-spacing:-0.021006px;}
.lsa_c00467{letter-spacing:-0.014004px;}
.lsc_c00467{letter-spacing:-0.007002px;}
.ls8_c00467{letter-spacing:0.000000px;}
.ls0_c00467{letter-spacing:0.007002px;}
.ls1_c00467{letter-spacing:0.014004px;}
.ls4_c00467{letter-spacing:0.021006px;}
.ls3_c00467{letter-spacing:0.023281px;}
.ls5_c00467{letter-spacing:0.035010px;}
.ls6_c00467{letter-spacing:0.049014px;}
.ls2_c00467{letter-spacing:0.335214px;}
.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:-12.967628px;}
.ws21_c00467{word-spacing:-0.007002px;}
.ws1_c00467{word-spacing:0.000000px;}
.wsf_c00467{word-spacing:0.014004px;}
.ws1e_c00467{word-spacing:0.021006px;}
.ws6_c00467{word-spacing:0.028008px;}
.ws16_c00467{word-spacing:0.035010px;}
.ws1a_c00467{word-spacing:0.371106px;}
.ws4_c00467{word-spacing:0.700200px;}
.ws5_c00467{word-spacing:1.050300px;}
.ws9_c00467{word-spacing:1.064304px;}
.ws1f_c00467{word-spacing:1.078308px;}
.wsa_c00467{word-spacing:2.891826px;}
.ws3_c00467{word-spacing:3.241926px;}
.wsb_c00467{word-spacing:3.248928px;}
.wsd_c00467{word-spacing:3.599028px;}
.wsc_c00467{word-spacing:3.963132px;}
.ws14_c00467{word-spacing:4.320234px;}
.ws19_c00467{word-spacing:4.614318px;}
.ws18_c00467{word-spacing:4.628322px;}
.ws2_c00467{word-spacing:5.048442px;}
.ws20_c00467{word-spacing:7.583166px;}
.ws8_c00467{word-spacing:9.697770px;}
.ws7_c00467{word-spacing:9.711774px;}
.ws1d_c00467{word-spacing:10.082880px;}
.ws17_c00467{word-spacing:11.147184px;}
.ws1b_c00467{word-spacing:14.375106px;}
.ws1c_c00467{word-spacing:14.760216px;}
.wse_c00467{word-spacing:15.474420px;}
.ws12_c00467{word-spacing:18.688338px;}
.ws13_c00467{word-spacing:18.737352px;}
.ws11_c00467{word-spacing:20.158758px;}
.ws10_c00467{word-spacing:23.771790px;}
.ws15_c00467{word-spacing:27.377820px;}
._1_c00467{margin-left:-1.225350px;}
._0_c00467{width:1.204344px;}
.fc0_c00467{color:rgb(0,0,0);}
.fs1_c00467{font-size:46.562400px;}
.fs0_c00467{font-size:70.020000px;}
.y0_c00467{bottom:0.000000px;}
.y2_c00467{bottom:109.740968px;}
.y1_c00467{bottom:129.810450px;}
.y22_c00467{bottom:174.450563px;}
.y21_c00467{bottom:204.688452px;}
.y20_c00467{bottom:234.839064px;}
.y1f_c00467{bottom:265.078951px;}
.y1e_c00467{bottom:295.229563px;}
.y1d_c00467{bottom:325.469451px;}
.y1c_c00467{bottom:355.620063px;}
.y1b_c00467{bottom:385.859950px;}
.y1a_c00467{bottom:416.010562px;}
.y19_c00467{bottom:446.249451px;}
.y18_c00467{bottom:476.400063px;}
.y17_c00467{bottom:506.639950px;}
.y16_c00467{bottom:536.790562px;}
.y15_c00467{bottom:567.028092px;}
.y14_c00467{bottom:597.087678px;}
.y13_c00467{bottom:627.327565px;}
.y12_c00467{bottom:657.478178px;}
.y11_c00467{bottom:687.718065px;}
.y10_c00467{bottom:717.868677px;}
.yf_c00467{bottom:748.108564px;}
.ye_c00467{bottom:778.259176px;}
.yd_c00467{bottom:808.499064px;}
.yc_c00467{bottom:838.649676px;}
.yb_c00467{bottom:868.889563px;}
.ya_c00467{bottom:899.040175px;}
.y9_c00467{bottom:929.280063px;}
.y8_c00467{bottom:959.519951px;}
.y7_c00467{bottom:989.670562px;}
.y6_c00467{bottom:1019.909942px;}
.y5_c00467{bottom:1050.060553px;}
.y4_c00467{bottom:1080.300441px;}
.y3_c00467{bottom:1110.451053px;}
.h2_c00467{height:62.600889px;}
.h1_c00467{height:62.771836px;}
.h3_c00467{height:73.784498px;}
.h5_c00467{height:73.786460px;}
.h6_c00467{height:73.791056px;}
.h4_c00467{height:73.791896px;}
.h0_c00467{height:1263.000000px;}
.w0_c00467{width:892.500000px;}
.x0_c00467{left:0.000000px;}
.x2_c00467{left:82.710059px;}
.x1_c00467{left:431.730000px;}
@media print{
.v0_c00467{vertical-align:0.000000pt;}
.v1_c00467{vertical-align:28.481808pt;}
.ls7_c00467{letter-spacing:-0.056016pt;}
.lsf_c00467{letter-spacing:-0.043568pt;}
.lsb_c00467{letter-spacing:-0.037344pt;}
.lse_c00467{letter-spacing:-0.031120pt;}
.lsd_c00467{letter-spacing:-0.024896pt;}
.ls9_c00467{letter-spacing:-0.018672pt;}
.lsa_c00467{letter-spacing:-0.012448pt;}
.lsc_c00467{letter-spacing:-0.006224pt;}
.ls8_c00467{letter-spacing:0.000000pt;}
.ls0_c00467{letter-spacing:0.006224pt;}
.ls1_c00467{letter-spacing:0.012448pt;}
.ls4_c00467{letter-spacing:0.018672pt;}
.ls3_c00467{letter-spacing:0.020694pt;}
.ls5_c00467{letter-spacing:0.031120pt;}
.ls6_c00467{letter-spacing:0.043568pt;}
.ls2_c00467{letter-spacing:0.297968pt;}
.ws0_c00467{word-spacing:-11.526781pt;}
.ws21_c00467{word-spacing:-0.006224pt;}
.ws1_c00467{word-spacing:0.000000pt;}
.wsf_c00467{word-spacing:0.012448pt;}
.ws1e_c00467{word-spacing:0.018672pt;}
.ws6_c00467{word-spacing:0.024896pt;}
.ws16_c00467{word-spacing:0.031120pt;}
.ws1a_c00467{word-spacing:0.329872pt;}
.ws4_c00467{word-spacing:0.622400pt;}
.ws5_c00467{word-spacing:0.933600pt;}
.ws9_c00467{word-spacing:0.946048pt;}
.ws1f_c00467{word-spacing:0.958496pt;}
.wsa_c00467{word-spacing:2.570512pt;}
.ws3_c00467{word-spacing:2.881712pt;}
.wsb_c00467{word-spacing:2.887936pt;}
.wsd_c00467{word-spacing:3.199136pt;}
.wsc_c00467{word-spacing:3.522784pt;}
.ws14_c00467{word-spacing:3.840208pt;}
.ws19_c00467{word-spacing:4.101616pt;}
.ws18_c00467{word-spacing:4.114064pt;}
.ws2_c00467{word-spacing:4.487504pt;}
.ws20_c00467{word-spacing:6.740592pt;}
.ws8_c00467{word-spacing:8.620240pt;}
.ws7_c00467{word-spacing:8.632688pt;}
.ws1d_c00467{word-spacing:8.962560pt;}
.ws17_c00467{word-spacing:9.908608pt;}
.ws1b_c00467{word-spacing:12.777872pt;}
.ws1c_c00467{word-spacing:13.120192pt;}
.wse_c00467{word-spacing:13.755040pt;}
.ws12_c00467{word-spacing:16.611856pt;}
.ws13_c00467{word-spacing:16.655424pt;}
.ws11_c00467{word-spacing:17.918896pt;}
.ws10_c00467{word-spacing:21.130480pt;}
.ws15_c00467{word-spacing:24.335840pt;}
._1_c00467{margin-left:-1.089200pt;}
._0_c00467{width:1.070528pt;}
.fs1_c00467{font-size:41.388800pt;}
.fs0_c00467{font-size:62.240000pt;}
.y0_c00467{bottom:0.000000pt;}
.y2_c00467{bottom:97.547527pt;}
.y1_c00467{bottom:115.387067pt;}
.y22_c00467{bottom:155.067167pt;}
.y21_c00467{bottom:181.945291pt;}
.y20_c00467{bottom:208.745835pt;}
.y1f_c00467{bottom:235.625735pt;}
.y1e_c00467{bottom:262.426279pt;}
.y1d_c00467{bottom:289.306179pt;}
.y1c_c00467{bottom:316.106723pt;}
.y1b_c00467{bottom:342.986623pt;}
.y1a_c00467{bottom:369.787167pt;}
.y19_c00467{bottom:396.666179pt;}
.y18_c00467{bottom:423.466723pt;}
.y17_c00467{bottom:450.346623pt;}
.y16_c00467{bottom:477.147167pt;}
.y15_c00467{bottom:504.024971pt;}
.y14_c00467{bottom:530.744603pt;}
.y13_c00467{bottom:557.624503pt;}
.y12_c00467{bottom:584.425047pt;}
.y11_c00467{bottom:611.304947pt;}
.y10_c00467{bottom:638.105491pt;}
.yf_c00467{bottom:664.985391pt;}
.ye_c00467{bottom:691.785935pt;}
.yd_c00467{bottom:718.665835pt;}
.yc_c00467{bottom:745.466379pt;}
.yb_c00467{bottom:772.346279pt;}
.ya_c00467{bottom:799.146823pt;}
.y9_c00467{bottom:826.026723pt;}
.y8_c00467{bottom:852.906623pt;}
.y7_c00467{bottom:879.707167pt;}
.y6_c00467{bottom:906.586615pt;}
.y5_c00467{bottom:933.387159pt;}
.y4_c00467{bottom:960.267059pt;}
.y3_c00467{bottom:987.067603pt;}
.h2_c00467{height:55.645234pt;}
.h1_c00467{height:55.797187pt;}
.h3_c00467{height:65.586221pt;}
.h5_c00467{height:65.587965pt;}
.h6_c00467{height:65.592050pt;}
.h4_c00467{height:65.592797pt;}
.h0_c00467{height:1122.666667pt;}
.w0_c00467{width:793.333333pt;}
.x0_c00467{left:0.000000pt;}
.x2_c00467{left:73.520052pt;}
.x1_c00467{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e1a67c5a363ab92910e1179f.woff2')format("woff");}.ff1_c00468{font-family:ff1_c00468;line-height:1.106934;font-style:normal;font-weight:normal;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_c8640292454274d7968da493.woff2')format("woff");}.ff2_c00468{font-family:ff2_c00468;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00468{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00468{vertical-align:0.000000px;}
.v1_c00468{vertical-align:32.055948px;}
.lsa_c00468{letter-spacing:-0.091026px;}
.ls4_c00468{letter-spacing:-0.063018px;}
.ls9_c00468{letter-spacing:-0.049014px;}
.ls6_c00468{letter-spacing:-0.035010px;}
.ls7_c00468{letter-spacing:-0.028008px;}
.ls8_c00468{letter-spacing:-0.021006px;}
.lsc_c00468{letter-spacing:-0.014004px;}
.lsd_c00468{letter-spacing:-0.007002px;}
.ls5_c00468{letter-spacing:0.000000px;}
.ls2_c00468{letter-spacing:0.007002px;}
.ls1_c00468{letter-spacing:0.014004px;}
.ls0_c00468{letter-spacing:0.021006px;}
.ls3_c00468{letter-spacing:0.023281px;}
.lsf_c00468{letter-spacing:0.084024px;}
.lse_c00468{letter-spacing:0.441126px;}
.lsb_c00468{letter-spacing:0.707202px;}
.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:-19.906686px;}
.ws2_c00468{word-spacing:-19.549584px;}
.ws1_c00468{word-spacing:-12.967628px;}
.wsb_c00468{word-spacing:-0.028008px;}
.ws3_c00468{word-spacing:0.000000px;}
.ws1f_c00468{word-spacing:0.014004px;}
.ws1d_c00468{word-spacing:0.350100px;}
.ws16_c00468{word-spacing:0.371106px;}
.ws12_c00468{word-spacing:0.728208px;}
.ws13_c00468{word-spacing:1.071306px;}
.wsc_c00468{word-spacing:1.092312px;}
.wsd_c00468{word-spacing:1.155330px;}
.ws17_c00468{word-spacing:1.428408px;}
.ws1a_c00468{word-spacing:1.435410px;}
.wse_c00468{word-spacing:1.806516px;}
.wsf_c00468{word-spacing:2.520720px;}
.ws7_c00468{word-spacing:2.527722px;}
.ws8_c00468{word-spacing:4.334238px;}
.ws9_c00468{word-spacing:4.355244px;}
.ws18_c00468{word-spacing:6.112746px;}
.ws15_c00468{word-spacing:6.455844px;}
.ws14_c00468{word-spacing:6.469848px;}
.ws1e_c00468{word-spacing:8.290368px;}
.ws6_c00468{word-spacing:8.605458px;}
.ws4_c00468{word-spacing:8.661474px;}
.ws5_c00468{word-spacing:9.011574px;}
.ws1c_c00468{word-spacing:19.801656px;}
.ws1b_c00468{word-spacing:20.165760px;}
.wsa_c00468{word-spacing:21.251070px;}
.ws11_c00468{word-spacing:21.951270px;}
.ws10_c00468{word-spacing:21.965274px;}
.ws19_c00468{word-spacing:41.059728px;}
._0_c00468{margin-left:-1.113318px;}
._1_c00468{width:1.120320px;}
.fc0_c00468{color:rgb(0,0,0);}
.fs1_c00468{font-size:46.562400px;}
.fs0_c00468{font-size:70.020000px;}
.y0_c00468{bottom:0.000000px;}
.y2_c00468{bottom:109.740968px;}
.y1_c00468{bottom:129.810450px;}
.y23_c00468{bottom:154.288715px;}
.y22_c00468{bottom:184.528602px;}
.y21_c00468{bottom:214.768489px;}
.y20_c00468{bottom:244.919102px;}
.y1f_c00468{bottom:275.158989px;}
.y1e_c00468{bottom:305.309601px;}
.y1d_c00468{bottom:335.549488px;}
.y1c_c00468{bottom:365.700101px;}
.y1b_c00468{bottom:395.939988px;}
.y1a_c00468{bottom:426.090063px;}
.y19_c00468{bottom:456.329950px;}
.y18_c00468{bottom:486.480562px;}
.y17_c00468{bottom:516.716463px;}
.y16_c00468{bottom:546.867075px;}
.y15_c00468{bottom:577.106963px;}
.y14_c00468{bottom:607.166549px;}
.y13_c00468{bottom:637.406436px;}
.y12_c00468{bottom:667.557048px;}
.y11_c00468{bottom:697.796936px;}
.y10_c00468{bottom:727.947548px;}
.yf_c00468{bottom:758.187435px;}
.ye_c00468{bottom:788.338047px;}
.yd_c00468{bottom:818.577934px;}
.yc_c00468{bottom:848.728546px;}
.yb_c00468{bottom:878.968434px;}
.ya_c00468{bottom:909.119046px;}
.y9_c00468{bottom:939.358934px;}
.y8_c00468{bottom:959.519442px;}
.y7_c00468{bottom:989.670054px;}
.y6_c00468{bottom:1019.909942px;}
.y5_c00468{bottom:1050.060553px;}
.y4_c00468{bottom:1080.300441px;}
.y3_c00468{bottom:1110.451053px;}
.h3_c00468{height:62.600889px;}
.h1_c00468{height:62.771836px;}
.h2_c00468{height:73.798412px;}
.h4_c00468{height:74.144012px;}
.h0_c00468{height:1263.000000px;}
.w0_c00468{width:892.500000px;}
.x0_c00468{left:0.000000px;}
.x2_c00468{left:82.710059px;}
.x3_c00468{left:135.271035px;}
.x1_c00468{left:431.730000px;}
@media print{
.v0_c00468{vertical-align:0.000000pt;}
.v1_c00468{vertical-align:28.494176pt;}
.lsa_c00468{letter-spacing:-0.080912pt;}
.ls4_c00468{letter-spacing:-0.056016pt;}
.ls9_c00468{letter-spacing:-0.043568pt;}
.ls6_c00468{letter-spacing:-0.031120pt;}
.ls7_c00468{letter-spacing:-0.024896pt;}
.ls8_c00468{letter-spacing:-0.018672pt;}
.lsc_c00468{letter-spacing:-0.012448pt;}
.lsd_c00468{letter-spacing:-0.006224pt;}
.ls5_c00468{letter-spacing:0.000000pt;}
.ls2_c00468{letter-spacing:0.006224pt;}
.ls1_c00468{letter-spacing:0.012448pt;}
.ls0_c00468{letter-spacing:0.018672pt;}
.ls3_c00468{letter-spacing:0.020694pt;}
.lsf_c00468{letter-spacing:0.074688pt;}
.lse_c00468{letter-spacing:0.392112pt;}
.lsb_c00468{letter-spacing:0.628624pt;}
.ws0_c00468{word-spacing:-17.694832pt;}
.ws2_c00468{word-spacing:-17.377408pt;}
.ws1_c00468{word-spacing:-11.526781pt;}
.wsb_c00468{word-spacing:-0.024896pt;}
.ws3_c00468{word-spacing:0.000000pt;}
.ws1f_c00468{word-spacing:0.012448pt;}
.ws1d_c00468{word-spacing:0.311200pt;}
.ws16_c00468{word-spacing:0.329872pt;}
.ws12_c00468{word-spacing:0.647296pt;}
.ws13_c00468{word-spacing:0.952272pt;}
.wsc_c00468{word-spacing:0.970944pt;}
.wsd_c00468{word-spacing:1.026960pt;}
.ws17_c00468{word-spacing:1.269696pt;}
.ws1a_c00468{word-spacing:1.275920pt;}
.wse_c00468{word-spacing:1.605792pt;}
.wsf_c00468{word-spacing:2.240640pt;}
.ws7_c00468{word-spacing:2.246864pt;}
.ws8_c00468{word-spacing:3.852656pt;}
.ws9_c00468{word-spacing:3.871328pt;}
.ws18_c00468{word-spacing:5.433552pt;}
.ws15_c00468{word-spacing:5.738528pt;}
.ws14_c00468{word-spacing:5.750976pt;}
.ws1e_c00468{word-spacing:7.369216pt;}
.ws6_c00468{word-spacing:7.649296pt;}
.ws4_c00468{word-spacing:7.699088pt;}
.ws5_c00468{word-spacing:8.010288pt;}
.ws1c_c00468{word-spacing:17.601472pt;}
.ws1b_c00468{word-spacing:17.925120pt;}
.wsa_c00468{word-spacing:18.889840pt;}
.ws11_c00468{word-spacing:19.512240pt;}
.ws10_c00468{word-spacing:19.524688pt;}
.ws19_c00468{word-spacing:36.497536pt;}
._0_c00468{margin-left:-0.989616pt;}
._1_c00468{width:0.995840pt;}
.fs1_c00468{font-size:41.388800pt;}
.fs0_c00468{font-size:62.240000pt;}
.y0_c00468{bottom:0.000000pt;}
.y2_c00468{bottom:97.547527pt;}
.y1_c00468{bottom:115.387067pt;}
.y23_c00468{bottom:137.145524pt;}
.y22_c00468{bottom:164.025424pt;}
.y21_c00468{bottom:190.905324pt;}
.y20_c00468{bottom:217.705868pt;}
.y1f_c00468{bottom:244.585768pt;}
.y1e_c00468{bottom:271.386312pt;}
.y1d_c00468{bottom:298.266212pt;}
.y1c_c00468{bottom:325.066756pt;}
.y1b_c00468{bottom:351.946656pt;}
.y1a_c00468{bottom:378.746723pt;}
.y19_c00468{bottom:405.626623pt;}
.y18_c00468{bottom:432.427167pt;}
.y17_c00468{bottom:459.303523pt;}
.y16_c00468{bottom:486.104067pt;}
.y15_c00468{bottom:512.983967pt;}
.y14_c00468{bottom:539.703599pt;}
.y13_c00468{bottom:566.583499pt;}
.y12_c00468{bottom:593.384043pt;}
.y11_c00468{bottom:620.263943pt;}
.y10_c00468{bottom:647.064487pt;}
.yf_c00468{bottom:673.944387pt;}
.ye_c00468{bottom:700.744931pt;}
.yd_c00468{bottom:727.624831pt;}
.yc_c00468{bottom:754.425375pt;}
.yb_c00468{bottom:781.305275pt;}
.ya_c00468{bottom:808.105819pt;}
.y9_c00468{bottom:834.985719pt;}
.y8_c00468{bottom:852.906171pt;}
.y7_c00468{bottom:879.706715pt;}
.y6_c00468{bottom:906.586615pt;}
.y5_c00468{bottom:933.387159pt;}
.y4_c00468{bottom:960.267059pt;}
.y3_c00468{bottom:987.067603pt;}
.h3_c00468{height:55.645234pt;}
.h1_c00468{height:55.797187pt;}
.h2_c00468{height:65.598588pt;}
.h4_c00468{height:65.905789pt;}
.h0_c00468{height:1122.666667pt;}
.w0_c00468{width:793.333333pt;}
.x0_c00468{left:0.000000pt;}
.x2_c00468{left:73.520052pt;}
.x3_c00468{left:120.240920pt;}
.x1_c00468{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b36f46f3a3ba4088e4b5be38.woff2')format("woff");}.ff1_c00469{font-family:ff1_c00469;line-height:1.106934;font-style:normal;font-weight:normal;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_431d3a0052125467755da192.woff2')format("woff");}.ff2_c00469{font-family:ff2_c00469;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00469;src:url('chunks/assets/font_c88f886392a8ce59809d3267.woff2')format("woff");}.ff3_c00469{font-family:ff3_c00469;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00469{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00469{vertical-align:0.000000px;}
.v1_c00469{vertical-align:32.411574px;}
.ls6_c00469{letter-spacing:-0.119034px;}
.ls4_c00469{letter-spacing:-0.063018px;}
.lsb_c00469{letter-spacing:-0.042012px;}
.lsc_c00469{letter-spacing:-0.035010px;}
.ls7_c00469{letter-spacing:-0.022791px;}
.ls9_c00469{letter-spacing:-0.021006px;}
.ls8_c00469{letter-spacing:-0.014004px;}
.lsa_c00469{letter-spacing:-0.007002px;}
.ls5_c00469{letter-spacing:0.000000px;}
.ls3_c00469{letter-spacing:0.007002px;}
.ls1_c00469{letter-spacing:0.014004px;}
.ls0_c00469{letter-spacing:0.021006px;}
.ls2_c00469{letter-spacing:0.023281px;}
.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:-12.967628px;}
.ws1b_c00469{word-spacing:-0.021006px;}
.ws6_c00469{word-spacing:-0.007002px;}
.ws1_c00469{word-spacing:0.000000px;}
.ws5_c00469{word-spacing:0.007002px;}
.ws2_c00469{word-spacing:0.105030px;}
.ws3_c00469{word-spacing:0.151943px;}
.ws14_c00469{word-spacing:0.364104px;}
.wsc_c00469{word-spacing:0.378108px;}
.ws18_c00469{word-spacing:1.421406px;}
.ws17_c00469{word-spacing:1.435410px;}
.ws19_c00469{word-spacing:1.799514px;}
.wse_c00469{word-spacing:2.541726px;}
.ws10_c00469{word-spacing:2.884824px;}
.ws15_c00469{word-spacing:3.227922px;}
.ws16_c00469{word-spacing:3.241926px;}
.ws13_c00469{word-spacing:4.677336px;}
.ws8_c00469{word-spacing:4.698342px;}
.wsd_c00469{word-spacing:9.382680px;}
.ws4_c00469{word-spacing:10.797084px;}
.ws1a_c00469{word-spacing:11.140182px;}
.wsa_c00469{word-spacing:11.847384px;}
.ws9_c00469{word-spacing:11.882394px;}
.ws11_c00469{word-spacing:11.889396px;}
.wsb_c00469{word-spacing:11.903400px;}
.wsf_c00469{word-spacing:13.289796px;}
.ws7_c00469{word-spacing:15.145326px;}
.ws12_c00469{word-spacing:21.601170px;}
._1_c00469{margin-left:-1.276320px;}
._0_c00469{width:1.134324px;}
.fc0_c00469{color:rgb(0,0,0);}
.fs2_c00469{font-size:46.562400px;}
.fs0_c00469{font-size:70.020000px;}
.fs1_c00469{font-size:75.971400px;}
.y0_c00469{bottom:0.000000px;}
.y2_c00469{bottom:109.740968px;}
.y1_c00469{bottom:129.810450px;}
.y22_c00469{bottom:163.646616px;}
.y21_c00469{bottom:193.797228px;}
.y20_c00469{bottom:224.037115px;}
.y1f_c00469{bottom:254.187727px;}
.y1e_c00469{bottom:284.427615px;}
.y1d_c00469{bottom:314.578227px;}
.y1c_c00469{bottom:344.818114px;}
.y1b_c00469{bottom:374.968726px;}
.y1a_c00469{bottom:405.119338px;}
.y19_c00469{bottom:435.269950px;}
.y18_c00469{bottom:465.509838px;}
.y17_c00469{bottom:495.657556px;}
.y16_c00469{bottom:525.897444px;}
.y15_c00469{bottom:556.048056px;}
.y14_c00469{bottom:586.287943px;}
.y13_c00469{bottom:616.438555px;}
.y12_c00469{bottom:646.678443px;}
.y11_c00469{bottom:676.829055px;}
.y10_c00469{bottom:707.068942px;}
.yf_c00469{bottom:737.219554px;}
.ye_c00469{bottom:767.459442px;}
.yd_c00469{bottom:797.610054px;}
.yc_c00469{bottom:827.849941px;}
.yb_c00469{bottom:848.010450px;}
.ya_c00469{bottom:872.760450px;}
.y9_c00469{bottom:911.729042px;}
.y8_c00469{bottom:959.519442px;}
.y7_c00469{bottom:989.670054px;}
.y6_c00469{bottom:1019.909942px;}
.y5_c00469{bottom:1050.060553px;}
.y4_c00469{bottom:1080.300441px;}
.y3_c00469{bottom:1110.451053px;}
.h4_c00469{height:62.600889px;}
.h1_c00469{height:62.771836px;}
.h2_c00469{height:63.216299px;}
.h3_c00469{height:68.589413px;}
.h5_c00469{height:74.040360px;}
.h0_c00469{height:1263.000000px;}
.w0_c00469{width:892.500000px;}
.x0_c00469{left:0.000000px;}
.x2_c00469{left:82.710059px;}
.x3_c00469{left:135.270572px;}
.x1_c00469{left:431.730000px;}
@media print{
.v0_c00469{vertical-align:0.000000pt;}
.v1_c00469{vertical-align:28.810288pt;}
.ls6_c00469{letter-spacing:-0.105808pt;}
.ls4_c00469{letter-spacing:-0.056016pt;}
.lsb_c00469{letter-spacing:-0.037344pt;}
.lsc_c00469{letter-spacing:-0.031120pt;}
.ls7_c00469{letter-spacing:-0.020259pt;}
.ls9_c00469{letter-spacing:-0.018672pt;}
.ls8_c00469{letter-spacing:-0.012448pt;}
.lsa_c00469{letter-spacing:-0.006224pt;}
.ls5_c00469{letter-spacing:0.000000pt;}
.ls3_c00469{letter-spacing:0.006224pt;}
.ls1_c00469{letter-spacing:0.012448pt;}
.ls0_c00469{letter-spacing:0.018672pt;}
.ls2_c00469{letter-spacing:0.020694pt;}
.ws0_c00469{word-spacing:-11.526781pt;}
.ws1b_c00469{word-spacing:-0.018672pt;}
.ws6_c00469{word-spacing:-0.006224pt;}
.ws1_c00469{word-spacing:0.000000pt;}
.ws5_c00469{word-spacing:0.006224pt;}
.ws2_c00469{word-spacing:0.093360pt;}
.ws3_c00469{word-spacing:0.135060pt;}
.ws14_c00469{word-spacing:0.323648pt;}
.wsc_c00469{word-spacing:0.336096pt;}
.ws18_c00469{word-spacing:1.263472pt;}
.ws17_c00469{word-spacing:1.275920pt;}
.ws19_c00469{word-spacing:1.599568pt;}
.wse_c00469{word-spacing:2.259312pt;}
.ws10_c00469{word-spacing:2.564288pt;}
.ws15_c00469{word-spacing:2.869264pt;}
.ws16_c00469{word-spacing:2.881712pt;}
.ws13_c00469{word-spacing:4.157632pt;}
.ws8_c00469{word-spacing:4.176304pt;}
.wsd_c00469{word-spacing:8.340160pt;}
.ws4_c00469{word-spacing:9.597408pt;}
.ws1a_c00469{word-spacing:9.902384pt;}
.wsa_c00469{word-spacing:10.531008pt;}
.ws9_c00469{word-spacing:10.562128pt;}
.ws11_c00469{word-spacing:10.568352pt;}
.wsb_c00469{word-spacing:10.580800pt;}
.wsf_c00469{word-spacing:11.813152pt;}
.ws7_c00469{word-spacing:13.462512pt;}
.ws12_c00469{word-spacing:19.201040pt;}
._1_c00469{margin-left:-1.134506pt;}
._0_c00469{width:1.008288pt;}
.fs2_c00469{font-size:41.388800pt;}
.fs0_c00469{font-size:62.240000pt;}
.fs1_c00469{font-size:67.530133pt;}
.y0_c00469{bottom:0.000000pt;}
.y2_c00469{bottom:97.547527pt;}
.y1_c00469{bottom:115.387067pt;}
.y22_c00469{bottom:145.463659pt;}
.y21_c00469{bottom:172.264203pt;}
.y20_c00469{bottom:199.144103pt;}
.y1f_c00469{bottom:225.944647pt;}
.y1e_c00469{bottom:252.824547pt;}
.y1d_c00469{bottom:279.625091pt;}
.y1c_c00469{bottom:306.504991pt;}
.y1b_c00469{bottom:333.305535pt;}
.y1a_c00469{bottom:360.106079pt;}
.y19_c00469{bottom:386.906623pt;}
.y18_c00469{bottom:413.786523pt;}
.y17_c00469{bottom:440.584495pt;}
.y16_c00469{bottom:467.464395pt;}
.y15_c00469{bottom:494.264939pt;}
.y14_c00469{bottom:521.144839pt;}
.y13_c00469{bottom:547.945383pt;}
.y12_c00469{bottom:574.825283pt;}
.y11_c00469{bottom:601.625827pt;}
.y10_c00469{bottom:628.505727pt;}
.yf_c00469{bottom:655.306271pt;}
.ye_c00469{bottom:682.186171pt;}
.yd_c00469{bottom:708.986715pt;}
.yc_c00469{bottom:735.866615pt;}
.yb_c00469{bottom:753.787067pt;}
.ya_c00469{bottom:775.787067pt;}
.y9_c00469{bottom:810.425815pt;}
.y8_c00469{bottom:852.906171pt;}
.y7_c00469{bottom:879.706715pt;}
.y6_c00469{bottom:906.586615pt;}
.y5_c00469{bottom:933.387159pt;}
.y4_c00469{bottom:960.267059pt;}
.y3_c00469{bottom:987.067603pt;}
.h4_c00469{height:55.645234pt;}
.h1_c00469{height:55.797187pt;}
.h2_c00469{height:56.192266pt;}
.h3_c00469{height:60.968367pt;}
.h5_c00469{height:65.813654pt;}
.h0_c00469{height:1122.666667pt;}
.w0_c00469{width:793.333333pt;}
.x0_c00469{left:0.000000pt;}
.x2_c00469{left:73.520052pt;}
.x3_c00469{left:120.240508pt;}
.x1_c00469{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_91604f4a0d2e775e87bef925.woff2')format("woff");}.ff1_c00470{font-family:ff1_c00470;line-height:1.106934;font-style:normal;font-weight:normal;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_072a888e2600a12714bb8cbb.woff2')format("woff");}.ff2_c00470{font-family:ff2_c00470;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00470;src:url('chunks/assets/font_6431b42ff5bf79225c8c8e61.woff2')format("woff");}.ff3_c00470{font-family:ff3_c00470;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00470{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00470{vertical-align:0.000000px;}
.v1_c00470{vertical-align:32.407542px;}
.lsa_c00470{letter-spacing:-0.098763px;}
.lsb_c00470{letter-spacing:-0.083569px;}
.lse_c00470{letter-spacing:-0.077022px;}
.ls6_c00470{letter-spacing:-0.063018px;}
.ls10_c00470{letter-spacing:-0.049014px;}
.lsd_c00470{letter-spacing:-0.035010px;}
.lsf_c00470{letter-spacing:-0.028008px;}
.ls9_c00470{letter-spacing:-0.021006px;}
.lsc_c00470{letter-spacing:-0.014004px;}
.ls8_c00470{letter-spacing:-0.007002px;}
.ls7_c00470{letter-spacing:0.000000px;}
.ls3_c00470{letter-spacing:0.007002px;}
.ls1_c00470{letter-spacing:0.014004px;}
.ls0_c00470{letter-spacing:0.021006px;}
.ls2_c00470{letter-spacing:0.023281px;}
.ls5_c00470{letter-spacing:0.049014px;}
.ls4_c00470{letter-spacing:0.133038px;}
.sc__c00470{text-shadow:none;}
.sc0_c00470{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00470{-webkit-text-stroke:0px transparent;}
.sc0_c00470{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00470{word-spacing:-19.472562px;}
.ws0_c00470{word-spacing:-19.388538px;}
.ws1_c00470{word-spacing:-12.967628px;}
.ws25_c00470{word-spacing:-0.336096px;}
.ws1a_c00470{word-spacing:-0.035010px;}
.ws6_c00470{word-spacing:-0.028008px;}
.ws3_c00470{word-spacing:0.000000px;}
.ws9_c00470{word-spacing:0.212720px;}
.ws1c_c00470{word-spacing:0.322092px;}
.wsd_c00470{word-spacing:0.357102px;}
.ws7_c00470{word-spacing:0.364104px;}
.ws8_c00470{word-spacing:0.410246px;}
.ws1f_c00470{word-spacing:0.574164px;}
.ws20_c00470{word-spacing:0.658188px;}
.ws1e_c00470{word-spacing:1.085310px;}
.wsf_c00470{word-spacing:2.163618px;}
.ws1b_c00470{word-spacing:2.534724px;}
.ws23_c00470{word-spacing:2.541726px;}
.ws24_c00470{word-spacing:2.849814px;}
.ws17_c00470{word-spacing:3.585024px;}
.ws16_c00470{word-spacing:3.634038px;}
.ws14_c00470{word-spacing:4.670334px;}
.ws11_c00470{word-spacing:4.684338px;}
.ws13_c00470{word-spacing:4.698342px;}
.wsa_c00470{word-spacing:6.483852px;}
.ws15_c00470{word-spacing:7.198056px;}
.ws12_c00470{word-spacing:7.576164px;}
.ws21_c00470{word-spacing:10.089882px;}
.ws22_c00470{word-spacing:10.096884px;}
.wse_c00470{word-spacing:10.103886px;}
.ws19_c00470{word-spacing:10.425978px;}
.ws18_c00470{word-spacing:10.446984px;}
.ws5_c00470{word-spacing:11.126178px;}
.ws4_c00470{word-spacing:11.154186px;}
.ws1d_c00470{word-spacing:11.518290px;}
.ws10_c00470{word-spacing:14.389110px;}
.wsc_c00470{word-spacing:28.799226px;}
.wsb_c00470{word-spacing:29.170332px;}
._0_c00470{margin-left:-1.323378px;}
._1_c00470{width:1.211346px;}
.fc0_c00470{color:rgb(0,0,0);}
.fs2_c00470{font-size:46.562400px;}
.fs0_c00470{font-size:70.020000px;}
.fs1_c00470{font-size:75.971400px;}
.y0_c00470{bottom:0.000000px;}
.y2_c00470{bottom:109.740968px;}
.y1_c00470{bottom:129.810450px;}
.y22_c00470{bottom:160.950562px;}
.y21_c00470{bottom:191.185729px;}
.y20_c00470{bottom:221.336341px;}
.y1f_c00470{bottom:251.576229px;}
.y1e_c00470{bottom:281.726841px;}
.y1d_c00470{bottom:311.966728px;}
.y1c_c00470{bottom:342.117340px;}
.y1b_c00470{bottom:372.357228px;}
.y1a_c00470{bottom:402.507840px;}
.y19_c00470{bottom:432.658452px;}
.y18_c00470{bottom:462.898339px;}
.y17_c00470{bottom:493.048951px;}
.y16_c00470{bottom:523.288839px;}
.y15_c00470{bottom:553.439451px;}
.y14_c00470{bottom:583.679338px;}
.y13_c00470{bottom:613.829950px;}
.y12_c00470{bottom:644.069838px;}
.y11_c00470{bottom:674.218565px;}
.y10_c00470{bottom:704.458452px;}
.yf_c00470{bottom:734.609064px;}
.ye_c00470{bottom:764.848952px;}
.yd_c00470{bottom:794.999564px;}
.yc_c00470{bottom:825.239451px;}
.yb_c00470{bottom:855.390063px;}
.ya_c00470{bottom:885.629951px;}
.y9_c00470{bottom:915.780563px;}
.y8_c00470{bottom:946.020450px;}
.y7_c00470{bottom:970.770450px;}
.y6_c00470{bottom:1019.909942px;}
.y5_c00470{bottom:1050.060553px;}
.y4_c00470{bottom:1080.300441px;}
.y3_c00470{bottom:1110.451053px;}
.h4_c00470{height:62.600889px;}
.h1_c00470{height:62.771836px;}
.h3_c00470{height:63.216299px;}
.h2_c00470{height:68.589413px;}
.h6_c00470{height:73.688268px;}
.h5_c00470{height:74.036328px;}
.h0_c00470{height:1263.000000px;}
.w0_c00470{width:892.500000px;}
.x0_c00470{left:0.000000px;}
.x2_c00470{left:82.710059px;}
.x1_c00470{left:431.730000px;}
@media print{
.v0_c00470{vertical-align:0.000000pt;}
.v1_c00470{vertical-align:28.806704pt;}
.lsa_c00470{letter-spacing:-0.087789pt;}
.lsb_c00470{letter-spacing:-0.074283pt;}
.lse_c00470{letter-spacing:-0.068464pt;}
.ls6_c00470{letter-spacing:-0.056016pt;}
.ls10_c00470{letter-spacing:-0.043568pt;}
.lsd_c00470{letter-spacing:-0.031120pt;}
.lsf_c00470{letter-spacing:-0.024896pt;}
.ls9_c00470{letter-spacing:-0.018672pt;}
.lsc_c00470{letter-spacing:-0.012448pt;}
.ls8_c00470{letter-spacing:-0.006224pt;}
.ls7_c00470{letter-spacing:0.000000pt;}
.ls3_c00470{letter-spacing:0.006224pt;}
.ls1_c00470{letter-spacing:0.012448pt;}
.ls0_c00470{letter-spacing:0.018672pt;}
.ls2_c00470{letter-spacing:0.020694pt;}
.ls5_c00470{letter-spacing:0.043568pt;}
.ls4_c00470{letter-spacing:0.118256pt;}
.ws2_c00470{word-spacing:-17.308944pt;}
.ws0_c00470{word-spacing:-17.234256pt;}
.ws1_c00470{word-spacing:-11.526781pt;}
.ws25_c00470{word-spacing:-0.298752pt;}
.ws1a_c00470{word-spacing:-0.031120pt;}
.ws6_c00470{word-spacing:-0.024896pt;}
.ws3_c00470{word-spacing:0.000000pt;}
.ws9_c00470{word-spacing:0.189084pt;}
.ws1c_c00470{word-spacing:0.286304pt;}
.wsd_c00470{word-spacing:0.317424pt;}
.ws7_c00470{word-spacing:0.323648pt;}
.ws8_c00470{word-spacing:0.364663pt;}
.ws1f_c00470{word-spacing:0.510368pt;}
.ws20_c00470{word-spacing:0.585056pt;}
.ws1e_c00470{word-spacing:0.964720pt;}
.wsf_c00470{word-spacing:1.923216pt;}
.ws1b_c00470{word-spacing:2.253088pt;}
.ws23_c00470{word-spacing:2.259312pt;}
.ws24_c00470{word-spacing:2.533168pt;}
.ws17_c00470{word-spacing:3.186688pt;}
.ws16_c00470{word-spacing:3.230256pt;}
.ws14_c00470{word-spacing:4.151408pt;}
.ws11_c00470{word-spacing:4.163856pt;}
.ws13_c00470{word-spacing:4.176304pt;}
.wsa_c00470{word-spacing:5.763424pt;}
.ws15_c00470{word-spacing:6.398272pt;}
.ws12_c00470{word-spacing:6.734368pt;}
.ws21_c00470{word-spacing:8.968784pt;}
.ws22_c00470{word-spacing:8.975008pt;}
.wse_c00470{word-spacing:8.981232pt;}
.ws19_c00470{word-spacing:9.267536pt;}
.ws18_c00470{word-spacing:9.286208pt;}
.ws5_c00470{word-spacing:9.889936pt;}
.ws4_c00470{word-spacing:9.914832pt;}
.ws1d_c00470{word-spacing:10.238480pt;}
.ws10_c00470{word-spacing:12.790320pt;}
.wsc_c00470{word-spacing:25.599312pt;}
.wsb_c00470{word-spacing:25.929184pt;}
._0_c00470{margin-left:-1.176336pt;}
._1_c00470{width:1.076752pt;}
.fs2_c00470{font-size:41.388800pt;}
.fs0_c00470{font-size:62.240000pt;}
.fs1_c00470{font-size:67.530133pt;}
.y0_c00470{bottom:0.000000pt;}
.y2_c00470{bottom:97.547527pt;}
.y1_c00470{bottom:115.387067pt;}
.y22_c00470{bottom:143.067167pt;}
.y21_c00470{bottom:169.942871pt;}
.y20_c00470{bottom:196.743415pt;}
.y1f_c00470{bottom:223.623315pt;}
.y1e_c00470{bottom:250.423859pt;}
.y1d_c00470{bottom:277.303759pt;}
.y1c_c00470{bottom:304.104303pt;}
.y1b_c00470{bottom:330.984203pt;}
.y1a_c00470{bottom:357.784747pt;}
.y19_c00470{bottom:384.585291pt;}
.y18_c00470{bottom:411.465191pt;}
.y17_c00470{bottom:438.265735pt;}
.y16_c00470{bottom:465.145635pt;}
.y15_c00470{bottom:491.946179pt;}
.y14_c00470{bottom:518.826079pt;}
.y13_c00470{bottom:545.626623pt;}
.y12_c00470{bottom:572.506523pt;}
.y11_c00470{bottom:599.305391pt;}
.y10_c00470{bottom:626.185291pt;}
.yf_c00470{bottom:652.985835pt;}
.ye_c00470{bottom:679.865735pt;}
.yd_c00470{bottom:706.666279pt;}
.yc_c00470{bottom:733.546179pt;}
.yb_c00470{bottom:760.346723pt;}
.ya_c00470{bottom:787.226623pt;}
.y9_c00470{bottom:814.027167pt;}
.y8_c00470{bottom:840.907067pt;}
.y7_c00470{bottom:862.907067pt;}
.y6_c00470{bottom:906.586615pt;}
.y5_c00470{bottom:933.387159pt;}
.y4_c00470{bottom:960.267059pt;}
.y3_c00470{bottom:987.067603pt;}
.h4_c00470{height:55.645234pt;}
.h1_c00470{height:55.797187pt;}
.h3_c00470{height:56.192266pt;}
.h2_c00470{height:60.968367pt;}
.h6_c00470{height:65.500683pt;}
.h5_c00470{height:65.810070pt;}
.h0_c00470{height:1122.666667pt;}
.w0_c00470{width:793.333333pt;}
.x0_c00470{left:0.000000pt;}
.x2_c00470{left:73.520052pt;}
.x1_c00470{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1a95ca40e9b0b34e92f50713.woff2')format("woff");}.ff1_c00471{font-family:ff1_c00471;line-height:1.106934;font-style:normal;font-weight:normal;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_f2f4bd44cc395f4f2f4e731e.woff2')format("woff");}.ff2_c00471{font-family:ff2_c00471;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00471{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00471{vertical-align:0.000000px;}
.v1_c00471{vertical-align:32.044032px;}
.ls6_c00471{letter-spacing:-0.063018px;}
.lsc_c00471{letter-spacing:-0.056016px;}
.ls9_c00471{letter-spacing:-0.049014px;}
.ls8_c00471{letter-spacing:-0.035010px;}
.lsd_c00471{letter-spacing:-0.028008px;}
.lsb_c00471{letter-spacing:-0.021006px;}
.lsa_c00471{letter-spacing:-0.014004px;}
.lse_c00471{letter-spacing:-0.007002px;}
.ls7_c00471{letter-spacing:0.000000px;}
.ls3_c00471{letter-spacing:0.007002px;}
.ls0_c00471{letter-spacing:0.014004px;}
.ls5_c00471{letter-spacing:0.021006px;}
.ls2_c00471{letter-spacing:0.023281px;}
.ls1_c00471{letter-spacing:0.028008px;}
.ls4_c00471{letter-spacing:0.042012px;}
.lsf_c00471{letter-spacing:0.539154px;}
.sc__c00471{text-shadow:none;}
.sc0_c00471{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00471{-webkit-text-stroke:0px transparent;}
.sc0_c00471{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00471{word-spacing:-20.004714px;}
.ws0_c00471{word-spacing:-12.967628px;}
.ws1c_c00471{word-spacing:-0.035010px;}
.ws2_c00471{word-spacing:0.000000px;}
.ws8_c00471{word-spacing:0.021006px;}
.wsa_c00471{word-spacing:0.364104px;}
.ws5_c00471{word-spacing:0.392112px;}
.ws10_c00471{word-spacing:0.399114px;}
.ws23_c00471{word-spacing:1.421406px;}
.ws24_c00471{word-spacing:1.435410px;}
.ws6_c00471{word-spacing:2.478708px;}
.ws16_c00471{word-spacing:2.877822px;}
.ws11_c00471{word-spacing:3.241926px;}
.ws13_c00471{word-spacing:3.963132px;}
.ws12_c00471{word-spacing:3.977136px;}
.ws3_c00471{word-spacing:4.649328px;}
.ws4_c00471{word-spacing:4.698342px;}
.ws1a_c00471{word-spacing:5.041440px;}
.ws15_c00471{word-spacing:5.342526px;}
.ws14_c00471{word-spacing:5.391540px;}
.wsc_c00471{word-spacing:5.405544px;}
.ws1b_c00471{word-spacing:6.861960px;}
.ws22_c00471{word-spacing:7.184052px;}
.ws21_c00471{word-spacing:7.198056px;}
.wsf_c00471{word-spacing:7.576164px;}
.ws7_c00471{word-spacing:9.018576px;}
.ws20_c00471{word-spacing:9.375678px;}
.ws1f_c00471{word-spacing:9.732780px;}
.ws1e_c00471{word-spacing:10.047870px;}
.wsb_c00471{word-spacing:10.061874px;}
.ws1d_c00471{word-spacing:10.418976px;}
.wsd_c00471{word-spacing:11.518290px;}
.wse_c00471{word-spacing:11.525292px;}
.ws19_c00471{word-spacing:13.303800px;}
.ws17_c00471{word-spacing:18.324234px;}
.ws18_c00471{word-spacing:18.338238px;}
.ws9_c00471{word-spacing:52.199910px;}
._2_c00471{margin-left:-52.332948px;}
._0_c00471{margin-left:-1.043298px;}
._1_c00471{width:1.316376px;}
.fc0_c00471{color:rgb(0,0,0);}
.fs1_c00471{font-size:46.562400px;}
.fs0_c00471{font-size:70.020000px;}
.y0_c00471{bottom:0.000000px;}
.y2_c00471{bottom:109.740968px;}
.y1_c00471{bottom:129.810450px;}
.y22_c00471{bottom:174.448564px;}
.y21_c00471{bottom:204.688452px;}
.y20_c00471{bottom:234.839064px;}
.y1f_c00471{bottom:265.078951px;}
.y1e_c00471{bottom:295.229563px;}
.y1d_c00471{bottom:325.469451px;}
.y1c_c00471{bottom:355.620063px;}
.y1b_c00471{bottom:385.859950px;}
.y1a_c00471{bottom:416.010562px;}
.y19_c00471{bottom:446.247979px;}
.y18_c00471{bottom:476.398592px;}
.y17_c00471{bottom:506.638479px;}
.y16_c00471{bottom:536.789091px;}
.y15_c00471{bottom:567.028978px;}
.y14_c00471{bottom:597.088565px;}
.y13_c00471{bottom:627.328452px;}
.y12_c00471{bottom:657.479064px;}
.y11_c00471{bottom:687.718952px;}
.y10_c00471{bottom:717.869563px;}
.yf_c00471{bottom:748.109451px;}
.ye_c00471{bottom:778.260063px;}
.yd_c00471{bottom:808.499950px;}
.yc_c00471{bottom:838.650562px;}
.yb_c00471{bottom:868.890063px;}
.ya_c00471{bottom:899.040675px;}
.y9_c00471{bottom:929.280563px;}
.y8_c00471{bottom:959.519442px;}
.y7_c00471{bottom:989.670054px;}
.y6_c00471{bottom:1019.909942px;}
.y5_c00471{bottom:1050.060553px;}
.y4_c00471{bottom:1080.300441px;}
.y3_c00471{bottom:1110.451053px;}
.h2_c00471{height:62.600889px;}
.h1_c00471{height:62.771836px;}
.h4_c00471{height:73.670334px;}
.h3_c00471{height:73.672818px;}
.h5_c00471{height:73.792346px;}
.h0_c00471{height:1263.000000px;}
.w0_c00471{width:892.500000px;}
.x0_c00471{left:0.000000px;}
.x2_c00471{left:82.710059px;}
.x1_c00471{left:431.730000px;}
@media print{
.v0_c00471{vertical-align:0.000000pt;}
.v1_c00471{vertical-align:28.483584pt;}
.ls6_c00471{letter-spacing:-0.056016pt;}
.lsc_c00471{letter-spacing:-0.049792pt;}
.ls9_c00471{letter-spacing:-0.043568pt;}
.ls8_c00471{letter-spacing:-0.031120pt;}
.lsd_c00471{letter-spacing:-0.024896pt;}
.lsb_c00471{letter-spacing:-0.018672pt;}
.lsa_c00471{letter-spacing:-0.012448pt;}
.lse_c00471{letter-spacing:-0.006224pt;}
.ls7_c00471{letter-spacing:0.000000pt;}
.ls3_c00471{letter-spacing:0.006224pt;}
.ls0_c00471{letter-spacing:0.012448pt;}
.ls5_c00471{letter-spacing:0.018672pt;}
.ls2_c00471{letter-spacing:0.020694pt;}
.ls1_c00471{letter-spacing:0.024896pt;}
.ls4_c00471{letter-spacing:0.037344pt;}
.lsf_c00471{letter-spacing:0.479248pt;}
.ws1_c00471{word-spacing:-17.781968pt;}
.ws0_c00471{word-spacing:-11.526781pt;}
.ws1c_c00471{word-spacing:-0.031120pt;}
.ws2_c00471{word-spacing:0.000000pt;}
.ws8_c00471{word-spacing:0.018672pt;}
.wsa_c00471{word-spacing:0.323648pt;}
.ws5_c00471{word-spacing:0.348544pt;}
.ws10_c00471{word-spacing:0.354768pt;}
.ws23_c00471{word-spacing:1.263472pt;}
.ws24_c00471{word-spacing:1.275920pt;}
.ws6_c00471{word-spacing:2.203296pt;}
.ws16_c00471{word-spacing:2.558064pt;}
.ws11_c00471{word-spacing:2.881712pt;}
.ws13_c00471{word-spacing:3.522784pt;}
.ws12_c00471{word-spacing:3.535232pt;}
.ws3_c00471{word-spacing:4.132736pt;}
.ws4_c00471{word-spacing:4.176304pt;}
.ws1a_c00471{word-spacing:4.481280pt;}
.ws15_c00471{word-spacing:4.748912pt;}
.ws14_c00471{word-spacing:4.792480pt;}
.wsc_c00471{word-spacing:4.804928pt;}
.ws1b_c00471{word-spacing:6.099520pt;}
.ws22_c00471{word-spacing:6.385824pt;}
.ws21_c00471{word-spacing:6.398272pt;}
.wsf_c00471{word-spacing:6.734368pt;}
.ws7_c00471{word-spacing:8.016512pt;}
.ws20_c00471{word-spacing:8.333936pt;}
.ws1f_c00471{word-spacing:8.651360pt;}
.ws1e_c00471{word-spacing:8.931440pt;}
.wsb_c00471{word-spacing:8.943888pt;}
.ws1d_c00471{word-spacing:9.261312pt;}
.wsd_c00471{word-spacing:10.238480pt;}
.wse_c00471{word-spacing:10.244704pt;}
.ws19_c00471{word-spacing:11.825600pt;}
.ws17_c00471{word-spacing:16.288208pt;}
.ws18_c00471{word-spacing:16.300656pt;}
.ws9_c00471{word-spacing:46.399920pt;}
._2_c00471{margin-left:-46.518176pt;}
._0_c00471{margin-left:-0.927376pt;}
._1_c00471{width:1.170112pt;}
.fs1_c00471{font-size:41.388800pt;}
.fs0_c00471{font-size:62.240000pt;}
.y0_c00471{bottom:0.000000pt;}
.y2_c00471{bottom:97.547527pt;}
.y1_c00471{bottom:115.387067pt;}
.y22_c00471{bottom:155.065391pt;}
.y21_c00471{bottom:181.945291pt;}
.y20_c00471{bottom:208.745835pt;}
.y1f_c00471{bottom:235.625735pt;}
.y1e_c00471{bottom:262.426279pt;}
.y1d_c00471{bottom:289.306179pt;}
.y1c_c00471{bottom:316.106723pt;}
.y1b_c00471{bottom:342.986623pt;}
.y1a_c00471{bottom:369.787167pt;}
.y19_c00471{bottom:396.664871pt;}
.y18_c00471{bottom:423.465415pt;}
.y17_c00471{bottom:450.345315pt;}
.y16_c00471{bottom:477.145859pt;}
.y15_c00471{bottom:504.025759pt;}
.y14_c00471{bottom:530.745391pt;}
.y13_c00471{bottom:557.625291pt;}
.y12_c00471{bottom:584.425835pt;}
.y11_c00471{bottom:611.305735pt;}
.y10_c00471{bottom:638.106279pt;}
.yf_c00471{bottom:664.986179pt;}
.ye_c00471{bottom:691.786723pt;}
.yd_c00471{bottom:718.666623pt;}
.yc_c00471{bottom:745.467167pt;}
.yb_c00471{bottom:772.346723pt;}
.ya_c00471{bottom:799.147267pt;}
.y9_c00471{bottom:826.027167pt;}
.y8_c00471{bottom:852.906171pt;}
.y7_c00471{bottom:879.706715pt;}
.y6_c00471{bottom:906.586615pt;}
.y5_c00471{bottom:933.387159pt;}
.y4_c00471{bottom:960.267059pt;}
.y3_c00471{bottom:987.067603pt;}
.h2_c00471{height:55.645234pt;}
.h1_c00471{height:55.797187pt;}
.h4_c00471{height:65.484742pt;}
.h3_c00471{height:65.486950pt;}
.h5_c00471{height:65.593196pt;}
.h0_c00471{height:1122.666667pt;}
.w0_c00471{width:793.333333pt;}
.x0_c00471{left:0.000000pt;}
.x2_c00471{left:73.520052pt;}
.x1_c00471{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_61034d78c8dded4fffeb7eed.woff2')format("woff");}.ff1_c00472{font-family:ff1_c00472;line-height:1.106934;font-style:normal;font-weight:normal;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_cfaec6f286e14d17d90061b4.woff2')format("woff");}.ff2_c00472{font-family:ff2_c00472;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00472{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00472{vertical-align:0.000000px;}
.v1_c00472{vertical-align:32.040036px;}
.ls6_c00472{letter-spacing:-0.063018px;}
.ls9_c00472{letter-spacing:-0.042012px;}
.lsc_c00472{letter-spacing:-0.035010px;}
.lsb_c00472{letter-spacing:-0.028008px;}
.lsa_c00472{letter-spacing:-0.021006px;}
.ls8_c00472{letter-spacing:-0.014004px;}
.lsd_c00472{letter-spacing:-0.007002px;}
.ls7_c00472{letter-spacing:0.000000px;}
.ls3_c00472{letter-spacing:0.007002px;}
.ls1_c00472{letter-spacing:0.014004px;}
.ls5_c00472{letter-spacing:0.021006px;}
.ls0_c00472{letter-spacing:0.023281px;}
.ls4_c00472{letter-spacing:0.035010px;}
.lse_c00472{letter-spacing:0.343098px;}
.ls2_c00472{letter-spacing:0.693198px;}
.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:-12.967628px;}
.wse_c00472{word-spacing:-0.007002px;}
.ws1_c00472{word-spacing:0.000000px;}
.ws26_c00472{word-spacing:0.021006px;}
.ws3_c00472{word-spacing:0.028008px;}
.ws1e_c00472{word-spacing:0.385110px;}
.ws14_c00472{word-spacing:0.700200px;}
.ws8_c00472{word-spacing:0.735210px;}
.ws11_c00472{word-spacing:1.050300px;}
.ws7_c00472{word-spacing:1.078308px;}
.ws4_c00472{word-spacing:1.449414px;}
.ws9_c00472{word-spacing:1.463418px;}
.ws2_c00472{word-spacing:3.241926px;}
.ws12_c00472{word-spacing:4.313232px;}
.ws13_c00472{word-spacing:4.334238px;}
.ws16_c00472{word-spacing:5.055444px;}
.ws6_c00472{word-spacing:7.170048px;}
.ws5_c00472{word-spacing:7.198056px;}
.ws23_c00472{word-spacing:7.905258px;}
.ws15_c00472{word-spacing:7.933266px;}
.ws20_c00472{word-spacing:8.297370px;}
.ws1d_c00472{word-spacing:8.612460px;}
.ws1c_c00472{word-spacing:8.661474px;}
.ws19_c00472{word-spacing:8.969562px;}
.ws18_c00472{word-spacing:9.312660px;}
.wsd_c00472{word-spacing:10.425978px;}
.wsc_c00472{word-spacing:10.776078px;}
.ws17_c00472{word-spacing:14.403114px;}
.wsb_c00472{word-spacing:16.223634px;}
.ws24_c00472{word-spacing:22.693482px;}
.ws25_c00472{word-spacing:23.050584px;}
.wsf_c00472{word-spacing:23.757786px;}
.ws10_c00472{word-spacing:23.785794px;}
.wsa_c00472{word-spacing:36.718488px;}
.ws1b_c00472{word-spacing:39.939408px;}
.ws1a_c00472{word-spacing:39.974418px;}
.ws22_c00472{word-spacing:41.367816px;}
.ws1f_c00472{word-spacing:41.395824px;}
.ws21_c00472{word-spacing:41.402826px;}
._1_c00472{margin-left:-1.127322px;}
._0_c00472{width:1.071306px;}
._2_c00472{width:23.561730px;}
.fc0_c00472{color:rgb(0,0,0);}
.fs1_c00472{font-size:46.562400px;}
.fs0_c00472{font-size:70.020000px;}
.y0_c00472{bottom:0.000000px;}
.y2_c00472{bottom:109.740968px;}
.y1_c00472{bottom:129.810450px;}
.y21_c00472{bottom:204.689838px;}
.y20_c00472{bottom:234.835208px;}
.y1f_c00472{bottom:265.075095px;}
.y1e_c00472{bottom:295.225707px;}
.y1d_c00472{bottom:325.465595px;}
.y1c_c00472{bottom:355.616207px;}
.y1b_c00472{bottom:385.856094px;}
.y1a_c00472{bottom:416.006706px;}
.y19_c00472{bottom:446.246594px;}
.y18_c00472{bottom:476.397206px;}
.y17_c00472{bottom:506.637093px;}
.y16_c00472{bottom:536.787705px;}
.y15_c00472{bottom:567.027593px;}
.y14_c00472{bottom:597.087179px;}
.y13_c00472{bottom:627.327066px;}
.y12_c00472{bottom:657.477678px;}
.y11_c00472{bottom:687.717566px;}
.y10_c00472{bottom:717.868178px;}
.yf_c00472{bottom:748.108065px;}
.ye_c00472{bottom:778.258677px;}
.yd_c00472{bottom:808.498565px;}
.yc_c00472{bottom:838.649177px;}
.yb_c00472{bottom:868.889064px;}
.ya_c00472{bottom:899.039676px;}
.y9_c00472{bottom:929.279563px;}
.y8_c00472{bottom:959.519451px;}
.y7_c00472{bottom:989.670063px;}
.y6_c00472{bottom:1019.909951px;}
.y5_c00472{bottom:1050.060563px;}
.y4_c00472{bottom:1080.300441px;}
.y3_c00472{bottom:1110.451053px;}
.h2_c00472{height:62.600889px;}
.h1_c00472{height:62.771836px;}
.h3_c00472{height:73.668822px;}
.h4_c00472{height:74.049756px;}
.h0_c00472{height:1263.000000px;}
.w0_c00472{width:892.500000px;}
.x0_c00472{left:0.000000px;}
.x2_c00472{left:82.710059px;}
.x1_c00472{left:431.730000px;}
@media print{
.v0_c00472{vertical-align:0.000000pt;}
.v1_c00472{vertical-align:28.480032pt;}
.ls6_c00472{letter-spacing:-0.056016pt;}
.ls9_c00472{letter-spacing:-0.037344pt;}
.lsc_c00472{letter-spacing:-0.031120pt;}
.lsb_c00472{letter-spacing:-0.024896pt;}
.lsa_c00472{letter-spacing:-0.018672pt;}
.ls8_c00472{letter-spacing:-0.012448pt;}
.lsd_c00472{letter-spacing:-0.006224pt;}
.ls7_c00472{letter-spacing:0.000000pt;}
.ls3_c00472{letter-spacing:0.006224pt;}
.ls1_c00472{letter-spacing:0.012448pt;}
.ls5_c00472{letter-spacing:0.018672pt;}
.ls0_c00472{letter-spacing:0.020694pt;}
.ls4_c00472{letter-spacing:0.031120pt;}
.lse_c00472{letter-spacing:0.304976pt;}
.ls2_c00472{letter-spacing:0.616176pt;}
.ws0_c00472{word-spacing:-11.526781pt;}
.wse_c00472{word-spacing:-0.006224pt;}
.ws1_c00472{word-spacing:0.000000pt;}
.ws26_c00472{word-spacing:0.018672pt;}
.ws3_c00472{word-spacing:0.024896pt;}
.ws1e_c00472{word-spacing:0.342320pt;}
.ws14_c00472{word-spacing:0.622400pt;}
.ws8_c00472{word-spacing:0.653520pt;}
.ws11_c00472{word-spacing:0.933600pt;}
.ws7_c00472{word-spacing:0.958496pt;}
.ws4_c00472{word-spacing:1.288368pt;}
.ws9_c00472{word-spacing:1.300816pt;}
.ws2_c00472{word-spacing:2.881712pt;}
.ws12_c00472{word-spacing:3.833984pt;}
.ws13_c00472{word-spacing:3.852656pt;}
.ws16_c00472{word-spacing:4.493728pt;}
.ws6_c00472{word-spacing:6.373376pt;}
.ws5_c00472{word-spacing:6.398272pt;}
.ws23_c00472{word-spacing:7.026896pt;}
.ws15_c00472{word-spacing:7.051792pt;}
.ws20_c00472{word-spacing:7.375440pt;}
.ws1d_c00472{word-spacing:7.655520pt;}
.ws1c_c00472{word-spacing:7.699088pt;}
.ws19_c00472{word-spacing:7.972944pt;}
.ws18_c00472{word-spacing:8.277920pt;}
.wsd_c00472{word-spacing:9.267536pt;}
.wsc_c00472{word-spacing:9.578736pt;}
.ws17_c00472{word-spacing:12.802768pt;}
.wsb_c00472{word-spacing:14.421008pt;}
.ws24_c00472{word-spacing:20.171984pt;}
.ws25_c00472{word-spacing:20.489408pt;}
.wsf_c00472{word-spacing:21.118032pt;}
.ws10_c00472{word-spacing:21.142928pt;}
.wsa_c00472{word-spacing:32.638656pt;}
.ws1b_c00472{word-spacing:35.501696pt;}
.ws1a_c00472{word-spacing:35.532816pt;}
.ws22_c00472{word-spacing:36.771392pt;}
.ws1f_c00472{word-spacing:36.796288pt;}
.ws21_c00472{word-spacing:36.802512pt;}
._1_c00472{margin-left:-1.002064pt;}
._0_c00472{width:0.952272pt;}
._2_c00472{width:20.943760pt;}
.fs1_c00472{font-size:41.388800pt;}
.fs0_c00472{font-size:62.240000pt;}
.y0_c00472{bottom:0.000000pt;}
.y2_c00472{bottom:97.547527pt;}
.y1_c00472{bottom:115.387067pt;}
.y21_c00472{bottom:181.946523pt;}
.y20_c00472{bottom:208.742407pt;}
.y1f_c00472{bottom:235.622307pt;}
.y1e_c00472{bottom:262.422851pt;}
.y1d_c00472{bottom:289.302751pt;}
.y1c_c00472{bottom:316.103295pt;}
.y1b_c00472{bottom:342.983195pt;}
.y1a_c00472{bottom:369.783739pt;}
.y19_c00472{bottom:396.663639pt;}
.y18_c00472{bottom:423.464183pt;}
.y17_c00472{bottom:450.344083pt;}
.y16_c00472{bottom:477.144627pt;}
.y15_c00472{bottom:504.024527pt;}
.y14_c00472{bottom:530.744159pt;}
.y13_c00472{bottom:557.624059pt;}
.y12_c00472{bottom:584.424603pt;}
.y11_c00472{bottom:611.304503pt;}
.y10_c00472{bottom:638.105047pt;}
.yf_c00472{bottom:664.984947pt;}
.ye_c00472{bottom:691.785491pt;}
.yd_c00472{bottom:718.665391pt;}
.yc_c00472{bottom:745.465935pt;}
.yb_c00472{bottom:772.345835pt;}
.ya_c00472{bottom:799.146379pt;}
.y9_c00472{bottom:826.026279pt;}
.y8_c00472{bottom:852.906179pt;}
.y7_c00472{bottom:879.706723pt;}
.y6_c00472{bottom:906.586623pt;}
.y5_c00472{bottom:933.387167pt;}
.y4_c00472{bottom:960.267059pt;}
.y3_c00472{bottom:987.067603pt;}
.h2_c00472{height:55.645234pt;}
.h1_c00472{height:55.797187pt;}
.h3_c00472{height:65.483398pt;}
.h4_c00472{height:65.822006pt;}
.h0_c00472{height:1122.666667pt;}
.w0_c00472{width:793.333333pt;}
.x0_c00472{left:0.000000pt;}
.x2_c00472{left:73.520052pt;}
.x1_c00472{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4dc80cb51c635a873b59ad9d.woff2')format("woff");}.ff1_c00473{font-family:ff1_c00473;line-height:1.106934;font-style:normal;font-weight:normal;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_896f219af842b4acc26abe9b.woff2')format("woff");}.ff2_c00473{font-family:ff2_c00473;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00473{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00473{vertical-align:0.000000px;}
.v1_c00473{vertical-align:32.053572px;}
.ls4_c00473{letter-spacing:-0.063018px;}
.ls6_c00473{letter-spacing:-0.056016px;}
.lsc_c00473{letter-spacing:-0.042012px;}
.lsa_c00473{letter-spacing:-0.035010px;}
.ls9_c00473{letter-spacing:-0.028008px;}
.ls7_c00473{letter-spacing:-0.021006px;}
.ls8_c00473{letter-spacing:-0.014004px;}
.lsb_c00473{letter-spacing:-0.007002px;}
.ls5_c00473{letter-spacing:0.000000px;}
.ls0_c00473{letter-spacing:0.007002px;}
.ls1_c00473{letter-spacing:0.014004px;}
.ls2_c00473{letter-spacing:0.023281px;}
.ls3_c00473{letter-spacing:0.035010px;}
.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:-12.967628px;}
.ws6_c00473{word-spacing:-0.014004px;}
.ws1_c00473{word-spacing:0.000000px;}
.ws14_c00473{word-spacing:0.021006px;}
.wsa_c00473{word-spacing:0.336096px;}
.ws1f_c00473{word-spacing:1.778508px;}
.ws20_c00473{word-spacing:1.806516px;}
.ws19_c00473{word-spacing:3.262932px;}
.ws24_c00473{word-spacing:3.578022px;}
.ws13_c00473{word-spacing:3.606030px;}
.wse_c00473{word-spacing:4.670334px;}
.ws15_c00473{word-spacing:4.677336px;}
.wsd_c00473{word-spacing:5.391540px;}
.wsc_c00473{word-spacing:5.419548px;}
.ws9_c00473{word-spacing:5.783652px;}
.ws3_c00473{word-spacing:6.126750px;}
.ws2_c00473{word-spacing:6.161760px;}
.ws17_c00473{word-spacing:8.290368px;}
.ws18_c00473{word-spacing:8.591454px;}
.ws16_c00473{word-spacing:8.619462px;}
.ws10_c00473{word-spacing:9.347670px;}
.wsf_c00473{word-spacing:9.354672px;}
.ws5_c00473{word-spacing:9.375678px;}
.ws1b_c00473{word-spacing:9.711774px;}
.ws1a_c00473{word-spacing:9.725778px;}
.ws22_c00473{word-spacing:10.467990px;}
.ws11_c00473{word-spacing:12.232494px;}
.ws4_c00473{word-spacing:12.960702px;}
.ws23_c00473{word-spacing:12.967704px;}
.ws1c_c00473{word-spacing:14.431122px;}
.ws12_c00473{word-spacing:14.767218px;}
.ws8_c00473{word-spacing:15.495426px;}
.ws1e_c00473{word-spacing:21.552156px;}
.ws1d_c00473{word-spacing:21.615174px;}
.ws7_c00473{word-spacing:23.736780px;}
.wsb_c00473{word-spacing:24.450984px;}
.ws21_c00473{word-spacing:29.149326px;}
._1_c00473{margin-left:-1.330380px;}
._0_c00473{width:1.001286px;}
.fc0_c00473{color:rgb(0,0,0);}
.fs1_c00473{font-size:46.562400px;}
.fs0_c00473{font-size:70.020000px;}
.y0_c00473{bottom:0.000000px;}
.y2_c00473{bottom:109.740968px;}
.y1_c00473{bottom:129.810450px;}
.y22_c00473{bottom:174.448092px;}
.y21_c00473{bottom:204.687979px;}
.y20_c00473{bottom:234.838591px;}
.y1f_c00473{bottom:265.078479px;}
.y1e_c00473{bottom:295.229091px;}
.y1d_c00473{bottom:325.468978px;}
.y1c_c00473{bottom:355.619590px;}
.y1b_c00473{bottom:385.859478px;}
.y1a_c00473{bottom:416.010090px;}
.y19_c00473{bottom:446.249977px;}
.y18_c00473{bottom:476.400589px;}
.y17_c00473{bottom:506.640477px;}
.y16_c00473{bottom:536.791089px;}
.y15_c00473{bottom:567.030976px;}
.y14_c00473{bottom:597.090562px;}
.y13_c00473{bottom:627.327057px;}
.y12_c00473{bottom:657.477669px;}
.y11_c00473{bottom:687.717557px;}
.y10_c00473{bottom:717.868169px;}
.yf_c00473{bottom:748.108056px;}
.ye_c00473{bottom:778.258668px;}
.yd_c00473{bottom:808.498556px;}
.yc_c00473{bottom:838.649168px;}
.yb_c00473{bottom:868.889055px;}
.ya_c00473{bottom:899.039667px;}
.y9_c00473{bottom:929.279555px;}
.y8_c00473{bottom:959.519442px;}
.y7_c00473{bottom:989.670054px;}
.y6_c00473{bottom:1019.909942px;}
.y5_c00473{bottom:1050.060553px;}
.y4_c00473{bottom:1080.300441px;}
.y3_c00473{bottom:1110.451053px;}
.h2_c00473{height:62.600889px;}
.h1_c00473{height:62.771836px;}
.h3_c00473{height:73.682358px;}
.h0_c00473{height:1263.000000px;}
.w0_c00473{width:892.500000px;}
.x0_c00473{left:0.000000px;}
.x2_c00473{left:82.710059px;}
.x1_c00473{left:431.730000px;}
@media print{
.v0_c00473{vertical-align:0.000000pt;}
.v1_c00473{vertical-align:28.492064pt;}
.ls4_c00473{letter-spacing:-0.056016pt;}
.ls6_c00473{letter-spacing:-0.049792pt;}
.lsc_c00473{letter-spacing:-0.037344pt;}
.lsa_c00473{letter-spacing:-0.031120pt;}
.ls9_c00473{letter-spacing:-0.024896pt;}
.ls7_c00473{letter-spacing:-0.018672pt;}
.ls8_c00473{letter-spacing:-0.012448pt;}
.lsb_c00473{letter-spacing:-0.006224pt;}
.ls5_c00473{letter-spacing:0.000000pt;}
.ls0_c00473{letter-spacing:0.006224pt;}
.ls1_c00473{letter-spacing:0.012448pt;}
.ls2_c00473{letter-spacing:0.020694pt;}
.ls3_c00473{letter-spacing:0.031120pt;}
.ws0_c00473{word-spacing:-11.526781pt;}
.ws6_c00473{word-spacing:-0.012448pt;}
.ws1_c00473{word-spacing:0.000000pt;}
.ws14_c00473{word-spacing:0.018672pt;}
.wsa_c00473{word-spacing:0.298752pt;}
.ws1f_c00473{word-spacing:1.580896pt;}
.ws20_c00473{word-spacing:1.605792pt;}
.ws19_c00473{word-spacing:2.900384pt;}
.ws24_c00473{word-spacing:3.180464pt;}
.ws13_c00473{word-spacing:3.205360pt;}
.wse_c00473{word-spacing:4.151408pt;}
.ws15_c00473{word-spacing:4.157632pt;}
.wsd_c00473{word-spacing:4.792480pt;}
.wsc_c00473{word-spacing:4.817376pt;}
.ws9_c00473{word-spacing:5.141024pt;}
.ws3_c00473{word-spacing:5.446000pt;}
.ws2_c00473{word-spacing:5.477120pt;}
.ws17_c00473{word-spacing:7.369216pt;}
.ws18_c00473{word-spacing:7.636848pt;}
.ws16_c00473{word-spacing:7.661744pt;}
.ws10_c00473{word-spacing:8.309040pt;}
.wsf_c00473{word-spacing:8.315264pt;}
.ws5_c00473{word-spacing:8.333936pt;}
.ws1b_c00473{word-spacing:8.632688pt;}
.ws1a_c00473{word-spacing:8.645136pt;}
.ws22_c00473{word-spacing:9.304880pt;}
.ws11_c00473{word-spacing:10.873328pt;}
.ws4_c00473{word-spacing:11.520624pt;}
.ws23_c00473{word-spacing:11.526848pt;}
.ws1c_c00473{word-spacing:12.827664pt;}
.ws12_c00473{word-spacing:13.126416pt;}
.ws8_c00473{word-spacing:13.773712pt;}
.ws1e_c00473{word-spacing:19.157472pt;}
.ws1d_c00473{word-spacing:19.213488pt;}
.ws7_c00473{word-spacing:21.099360pt;}
.wsb_c00473{word-spacing:21.734208pt;}
.ws21_c00473{word-spacing:25.910512pt;}
._1_c00473{margin-left:-1.182560pt;}
._0_c00473{width:0.890032pt;}
.fs1_c00473{font-size:41.388800pt;}
.fs0_c00473{font-size:62.240000pt;}
.y0_c00473{bottom:0.000000pt;}
.y2_c00473{bottom:97.547527pt;}
.y1_c00473{bottom:115.387067pt;}
.y22_c00473{bottom:155.064971pt;}
.y21_c00473{bottom:181.944871pt;}
.y20_c00473{bottom:208.745415pt;}
.y1f_c00473{bottom:235.625315pt;}
.y1e_c00473{bottom:262.425859pt;}
.y1d_c00473{bottom:289.305759pt;}
.y1c_c00473{bottom:316.106303pt;}
.y1b_c00473{bottom:342.986203pt;}
.y1a_c00473{bottom:369.786747pt;}
.y19_c00473{bottom:396.666647pt;}
.y18_c00473{bottom:423.467191pt;}
.y17_c00473{bottom:450.347091pt;}
.y16_c00473{bottom:477.147635pt;}
.y15_c00473{bottom:504.027535pt;}
.y14_c00473{bottom:530.747167pt;}
.y13_c00473{bottom:557.624051pt;}
.y12_c00473{bottom:584.424595pt;}
.y11_c00473{bottom:611.304495pt;}
.y10_c00473{bottom:638.105039pt;}
.yf_c00473{bottom:664.984939pt;}
.ye_c00473{bottom:691.785483pt;}
.yd_c00473{bottom:718.665383pt;}
.yc_c00473{bottom:745.465927pt;}
.yb_c00473{bottom:772.345827pt;}
.ya_c00473{bottom:799.146371pt;}
.y9_c00473{bottom:826.026271pt;}
.y8_c00473{bottom:852.906171pt;}
.y7_c00473{bottom:879.706715pt;}
.y6_c00473{bottom:906.586615pt;}
.y5_c00473{bottom:933.387159pt;}
.y4_c00473{bottom:960.267059pt;}
.y3_c00473{bottom:987.067603pt;}
.h2_c00473{height:55.645234pt;}
.h1_c00473{height:55.797187pt;}
.h3_c00473{height:65.495430pt;}
.h0_c00473{height:1122.666667pt;}
.w0_c00473{width:793.333333pt;}
.x0_c00473{left:0.000000pt;}
.x2_c00473{left:73.520052pt;}
.x1_c00473{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e6675a3d4fc833ff24a3915b.woff2')format("woff");}.ff1_c00474{font-family:ff1_c00474;line-height:1.106934;font-style:normal;font-weight:normal;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_ddec1ea73cdb6d0c4e37c81c.woff2')format("woff");}.ff2_c00474{font-family:ff2_c00474;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00474{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00474{vertical-align:0.000000px;}
.v1_c00474{vertical-align:32.041584px;}
.ls5_c00474{letter-spacing:-0.063018px;}
.lsa_c00474{letter-spacing:-0.042012px;}
.lsd_c00474{letter-spacing:-0.035010px;}
.ls8_c00474{letter-spacing:-0.028008px;}
.ls7_c00474{letter-spacing:-0.021006px;}
.lsc_c00474{letter-spacing:-0.014004px;}
.ls9_c00474{letter-spacing:-0.007002px;}
.ls6_c00474{letter-spacing:0.000000px;}
.ls4_c00474{letter-spacing:0.007002px;}
.ls0_c00474{letter-spacing:0.014004px;}
.ls2_c00474{letter-spacing:0.021006px;}
.ls1_c00474{letter-spacing:0.023281px;}
.ls3_c00474{letter-spacing:0.035010px;}
.lsb_c00474{letter-spacing:0.343098px;}
.sc__c00474{text-shadow:none;}
.sc0_c00474{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00474{-webkit-text-stroke:0px transparent;}
.sc0_c00474{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00474{word-spacing:-19.437552px;}
.ws0_c00474{word-spacing:-12.967628px;}
.ws2_c00474{word-spacing:0.000000px;}
.ws27_c00474{word-spacing:0.007002px;}
.ws1a_c00474{word-spacing:0.014004px;}
.wsd_c00474{word-spacing:0.021006px;}
.ws1f_c00474{word-spacing:0.028008px;}
.ws4_c00474{word-spacing:0.329094px;}
.ws7_c00474{word-spacing:0.385110px;}
.ws18_c00474{word-spacing:0.721206px;}
.ws22_c00474{word-spacing:0.735210px;}
.ws20_c00474{word-spacing:0.742212px;}
.ws21_c00474{word-spacing:1.078308px;}
.ws23_c00474{word-spacing:2.905830px;}
.ws17_c00474{word-spacing:4.656330px;}
.ws16_c00474{word-spacing:4.670334px;}
.wsf_c00474{word-spacing:6.091740px;}
.wse_c00474{word-spacing:6.105744px;}
.ws24_c00474{word-spacing:6.126750px;}
.ws6_c00474{word-spacing:6.833952px;}
.ws5_c00474{word-spacing:6.854958px;}
.ws26_c00474{word-spacing:8.262360px;}
.ws25_c00474{word-spacing:8.276364px;}
.ws19_c00474{word-spacing:10.096884px;}
.ws14_c00474{word-spacing:10.776078px;}
.ws1d_c00474{word-spacing:10.790082px;}
.ws13_c00474{word-spacing:10.804086px;}
.ws3_c00474{word-spacing:12.246498px;}
.ws1c_c00474{word-spacing:12.260502px;}
.ws1b_c00474{word-spacing:12.603600px;}
.ws1e_c00474{word-spacing:13.681908px;}
.wsb_c00474{word-spacing:15.481422px;}
.wsc_c00474{word-spacing:15.488424px;}
.ws10_c00474{word-spacing:16.216632px;}
.ws12_c00474{word-spacing:17.231922px;}
.ws11_c00474{word-spacing:17.280936px;}
.ws8_c00474{word-spacing:26.278506px;}
.wsa_c00474{word-spacing:26.607600px;}
.ws9_c00474{word-spacing:26.670618px;}
.ws15_c00474{word-spacing:28.057014px;}
._1_c00474{margin-left:-1.169334px;}
._0_c00474{width:1.022292px;}
._2_c00474{width:12.939696px;}
.fc0_c00474{color:rgb(0,0,0);}
.fs1_c00474{font-size:46.562400px;}
.fs0_c00474{font-size:70.020000px;}
.y0_c00474{bottom:0.000000px;}
.y2_c00474{bottom:109.740968px;}
.y1_c00474{bottom:129.810450px;}
.y21_c00474{bottom:187.140339px;}
.y20_c00474{bottom:217.380227px;}
.y1f_c00474{bottom:247.530838px;}
.y1e_c00474{bottom:277.770726px;}
.y1d_c00474{bottom:307.921338px;}
.y1c_c00474{bottom:338.161226px;}
.y1b_c00474{bottom:385.858839px;}
.y1a_c00474{bottom:416.009451px;}
.y19_c00474{bottom:446.249338px;}
.y18_c00474{bottom:476.399950px;}
.y17_c00474{bottom:506.639838px;}
.y16_c00474{bottom:536.790450px;}
.y15_c00474{bottom:567.027980px;}
.y14_c00474{bottom:597.087566px;}
.y13_c00474{bottom:627.327453px;}
.y12_c00474{bottom:657.478065px;}
.y11_c00474{bottom:687.717953px;}
.y10_c00474{bottom:717.868565px;}
.yf_c00474{bottom:748.108452px;}
.ye_c00474{bottom:778.259064px;}
.yd_c00474{bottom:808.498952px;}
.yc_c00474{bottom:838.649564px;}
.yb_c00474{bottom:868.889451px;}
.ya_c00474{bottom:899.040063px;}
.y9_c00474{bottom:929.279951px;}
.y8_c00474{bottom:959.519838px;}
.y7_c00474{bottom:989.670054px;}
.y6_c00474{bottom:1019.909942px;}
.y5_c00474{bottom:1050.060553px;}
.y4_c00474{bottom:1080.300441px;}
.y3_c00474{bottom:1110.451053px;}
.h2_c00474{height:62.600889px;}
.h1_c00474{height:62.771836px;}
.h3_c00474{height:73.670370px;}
.h5_c00474{height:73.789508px;}
.h4_c00474{height:73.792346px;}
.h0_c00474{height:1263.000000px;}
.w0_c00474{width:892.500000px;}
.x0_c00474{left:0.000000px;}
.x2_c00474{left:82.710059px;}
.x1_c00474{left:431.730000px;}
@media print{
.v0_c00474{vertical-align:0.000000pt;}
.v1_c00474{vertical-align:28.481408pt;}
.ls5_c00474{letter-spacing:-0.056016pt;}
.lsa_c00474{letter-spacing:-0.037344pt;}
.lsd_c00474{letter-spacing:-0.031120pt;}
.ls8_c00474{letter-spacing:-0.024896pt;}
.ls7_c00474{letter-spacing:-0.018672pt;}
.lsc_c00474{letter-spacing:-0.012448pt;}
.ls9_c00474{letter-spacing:-0.006224pt;}
.ls6_c00474{letter-spacing:0.000000pt;}
.ls4_c00474{letter-spacing:0.006224pt;}
.ls0_c00474{letter-spacing:0.012448pt;}
.ls2_c00474{letter-spacing:0.018672pt;}
.ls1_c00474{letter-spacing:0.020694pt;}
.ls3_c00474{letter-spacing:0.031120pt;}
.lsb_c00474{letter-spacing:0.304976pt;}
.ws1_c00474{word-spacing:-17.277824pt;}
.ws0_c00474{word-spacing:-11.526781pt;}
.ws2_c00474{word-spacing:0.000000pt;}
.ws27_c00474{word-spacing:0.006224pt;}
.ws1a_c00474{word-spacing:0.012448pt;}
.wsd_c00474{word-spacing:0.018672pt;}
.ws1f_c00474{word-spacing:0.024896pt;}
.ws4_c00474{word-spacing:0.292528pt;}
.ws7_c00474{word-spacing:0.342320pt;}
.ws18_c00474{word-spacing:0.641072pt;}
.ws22_c00474{word-spacing:0.653520pt;}
.ws20_c00474{word-spacing:0.659744pt;}
.ws21_c00474{word-spacing:0.958496pt;}
.ws23_c00474{word-spacing:2.582960pt;}
.ws17_c00474{word-spacing:4.138960pt;}
.ws16_c00474{word-spacing:4.151408pt;}
.wsf_c00474{word-spacing:5.414880pt;}
.wse_c00474{word-spacing:5.427328pt;}
.ws24_c00474{word-spacing:5.446000pt;}
.ws6_c00474{word-spacing:6.074624pt;}
.ws5_c00474{word-spacing:6.093296pt;}
.ws26_c00474{word-spacing:7.344320pt;}
.ws25_c00474{word-spacing:7.356768pt;}
.ws19_c00474{word-spacing:8.975008pt;}
.ws14_c00474{word-spacing:9.578736pt;}
.ws1d_c00474{word-spacing:9.591184pt;}
.ws13_c00474{word-spacing:9.603632pt;}
.ws3_c00474{word-spacing:10.885776pt;}
.ws1c_c00474{word-spacing:10.898224pt;}
.ws1b_c00474{word-spacing:11.203200pt;}
.ws1e_c00474{word-spacing:12.161696pt;}
.wsb_c00474{word-spacing:13.761264pt;}
.wsc_c00474{word-spacing:13.767488pt;}
.ws10_c00474{word-spacing:14.414784pt;}
.ws12_c00474{word-spacing:15.317264pt;}
.ws11_c00474{word-spacing:15.360832pt;}
.ws8_c00474{word-spacing:23.358672pt;}
.wsa_c00474{word-spacing:23.651200pt;}
.ws9_c00474{word-spacing:23.707216pt;}
.ws15_c00474{word-spacing:24.939568pt;}
._1_c00474{margin-left:-1.039408pt;}
._0_c00474{width:0.908704pt;}
._2_c00474{width:11.501952pt;}
.fs1_c00474{font-size:41.388800pt;}
.fs0_c00474{font-size:62.240000pt;}
.y0_c00474{bottom:0.000000pt;}
.y2_c00474{bottom:97.547527pt;}
.y1_c00474{bottom:115.387067pt;}
.y21_c00474{bottom:166.346968pt;}
.y20_c00474{bottom:193.226868pt;}
.y1f_c00474{bottom:220.027412pt;}
.y1e_c00474{bottom:246.907312pt;}
.y1d_c00474{bottom:273.707856pt;}
.y1c_c00474{bottom:300.587756pt;}
.y1b_c00474{bottom:342.985635pt;}
.y1a_c00474{bottom:369.786179pt;}
.y19_c00474{bottom:396.666079pt;}
.y18_c00474{bottom:423.466623pt;}
.y17_c00474{bottom:450.346523pt;}
.y16_c00474{bottom:477.147067pt;}
.y15_c00474{bottom:504.024871pt;}
.y14_c00474{bottom:530.744503pt;}
.y13_c00474{bottom:557.624403pt;}
.y12_c00474{bottom:584.424947pt;}
.y11_c00474{bottom:611.304847pt;}
.y10_c00474{bottom:638.105391pt;}
.yf_c00474{bottom:664.985291pt;}
.ye_c00474{bottom:691.785835pt;}
.yd_c00474{bottom:718.665735pt;}
.yc_c00474{bottom:745.466279pt;}
.yb_c00474{bottom:772.346179pt;}
.ya_c00474{bottom:799.146723pt;}
.y9_c00474{bottom:826.026623pt;}
.y8_c00474{bottom:852.906523pt;}
.y7_c00474{bottom:879.706715pt;}
.y6_c00474{bottom:906.586615pt;}
.y5_c00474{bottom:933.387159pt;}
.y4_c00474{bottom:960.267059pt;}
.y3_c00474{bottom:987.067603pt;}
.h2_c00474{height:55.645234pt;}
.h1_c00474{height:55.797187pt;}
.h3_c00474{height:65.484774pt;}
.h5_c00474{height:65.590674pt;}
.h4_c00474{height:65.593196pt;}
.h0_c00474{height:1122.666667pt;}
.w0_c00474{width:793.333333pt;}
.x0_c00474{left:0.000000pt;}
.x2_c00474{left:73.520052pt;}
.x1_c00474{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a983577696d0c8614e353d0e.woff2')format("woff");}.ff1_c00475{font-family:ff1_c00475;line-height:1.106934;font-style:normal;font-weight:normal;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_7a26d735dc78e279cf16f39b.woff2')format("woff");}.ff2_c00475{font-family:ff2_c00475;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00475{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00475{vertical-align:0.000000px;}
.v1_c00475{vertical-align:32.044032px;}
.ls3_c00475{letter-spacing:-0.063018px;}
.lsb_c00475{letter-spacing:-0.042012px;}
.ls7_c00475{letter-spacing:-0.035010px;}
.lsa_c00475{letter-spacing:-0.028008px;}
.ls6_c00475{letter-spacing:-0.021006px;}
.ls5_c00475{letter-spacing:-0.014004px;}
.ls9_c00475{letter-spacing:-0.007002px;}
.ls4_c00475{letter-spacing:0.000000px;}
.ls1_c00475{letter-spacing:0.007002px;}
.ls0_c00475{letter-spacing:0.014004px;}
.ls2_c00475{letter-spacing:0.023281px;}
.ls8_c00475{letter-spacing:0.105030px;}
.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:-12.967628px;}
.ws8_c00475{word-spacing:-0.028008px;}
.ws16_c00475{word-spacing:-0.007002px;}
.ws1_c00475{word-spacing:0.000000px;}
.ws1f_c00475{word-spacing:0.021006px;}
.ws12_c00475{word-spacing:0.028008px;}
.ws10_c00475{word-spacing:0.350100px;}
.ws19_c00475{word-spacing:1.085310px;}
.ws6_c00475{word-spacing:1.428408px;}
.ws11_c00475{word-spacing:1.456416px;}
.ws5_c00475{word-spacing:1.778508px;}
.ws7_c00475{word-spacing:2.163618px;}
.wse_c00475{word-spacing:2.898828px;}
.wsa_c00475{word-spacing:3.213918px;}
.ws1c_c00475{word-spacing:3.234924px;}
.ws9_c00475{word-spacing:3.262932px;}
.ws1b_c00475{word-spacing:3.599028px;}
.ws1a_c00475{word-spacing:3.613032px;}
.ws1d_c00475{word-spacing:4.649328px;}
.wsd_c00475{word-spacing:4.670334px;}
.ws4_c00475{word-spacing:6.476850px;}
.ws22_c00475{word-spacing:6.819948px;}
.ws1e_c00475{word-spacing:10.082880px;}
.ws18_c00475{word-spacing:10.818090px;}
.wsf_c00475{word-spacing:14.753214px;}
.ws3_c00475{word-spacing:14.760216px;}
.ws2_c00475{word-spacing:15.089310px;}
.ws15_c00475{word-spacing:15.495426px;}
.ws21_c00475{word-spacing:17.280936px;}
.ws20_c00475{word-spacing:20.501856px;}
.ws17_c00475{word-spacing:20.865960px;}
.wsb_c00475{word-spacing:28.442124px;}
.wsc_c00475{word-spacing:28.820232px;}
.ws13_c00475{word-spacing:58.655754px;}
.ws14_c00475{word-spacing:58.683762px;}
._0_c00475{margin-left:-1.071306px;}
._1_c00475{width:1.323378px;}
._2_c00475{width:28.029006px;}
.fc0_c00475{color:rgb(0,0,0);}
.fs1_c00475{font-size:46.562400px;}
.fs0_c00475{font-size:70.020000px;}
.y0_c00475{bottom:0.000000px;}
.y2_c00475{bottom:109.740968px;}
.y1_c00475{bottom:129.810450px;}
.y21_c00475{bottom:152.126841px;}
.y20_c00475{bottom:182.366728px;}
.y1f_c00475{bottom:212.517340px;}
.y1e_c00475{bottom:242.757228px;}
.y1d_c00475{bottom:272.907840px;}
.y1c_c00475{bottom:303.147727px;}
.y1b_c00475{bottom:333.298339px;}
.y1a_c00475{bottom:363.538227px;}
.y19_c00475{bottom:393.688839px;}
.y18_c00475{bottom:423.928726px;}
.y17_c00475{bottom:454.079338px;}
.y16_c00475{bottom:484.319226px;}
.y15_c00475{bottom:514.469838px;}
.y14_c00475{bottom:544.620590px;}
.y13_c00475{bottom:574.771202px;}
.y12_c00475{bottom:605.011089px;}
.y11_c00475{bottom:652.710464px;}
.y10_c00475{bottom:682.861075px;}
.yf_c00475{bottom:730.558551px;}
.ye_c00475{bottom:760.798439px;}
.yd_c00475{bottom:790.949051px;}
.yc_c00475{bottom:821.188938px;}
.yb_c00475{bottom:851.339550px;}
.ya_c00475{bottom:881.579438px;}
.y9_c00475{bottom:911.730050px;}
.y8_c00475{bottom:959.519442px;}
.y7_c00475{bottom:989.670054px;}
.y6_c00475{bottom:1019.909942px;}
.y5_c00475{bottom:1050.060553px;}
.y4_c00475{bottom:1080.300441px;}
.y3_c00475{bottom:1110.451053px;}
.h2_c00475{height:62.600889px;}
.h1_c00475{height:62.771836px;}
.h5_c00475{height:73.668228px;}
.h3_c00475{height:73.786496px;}
.h4_c00475{height:74.036382px;}
.h0_c00475{height:1263.000000px;}
.w0_c00475{width:892.500000px;}
.x0_c00475{left:0.000000px;}
.x2_c00475{left:82.710059px;}
.x1_c00475{left:431.730000px;}
@media print{
.v0_c00475{vertical-align:0.000000pt;}
.v1_c00475{vertical-align:28.483584pt;}
.ls3_c00475{letter-spacing:-0.056016pt;}
.lsb_c00475{letter-spacing:-0.037344pt;}
.ls7_c00475{letter-spacing:-0.031120pt;}
.lsa_c00475{letter-spacing:-0.024896pt;}
.ls6_c00475{letter-spacing:-0.018672pt;}
.ls5_c00475{letter-spacing:-0.012448pt;}
.ls9_c00475{letter-spacing:-0.006224pt;}
.ls4_c00475{letter-spacing:0.000000pt;}
.ls1_c00475{letter-spacing:0.006224pt;}
.ls0_c00475{letter-spacing:0.012448pt;}
.ls2_c00475{letter-spacing:0.020694pt;}
.ls8_c00475{letter-spacing:0.093360pt;}
.ws0_c00475{word-spacing:-11.526781pt;}
.ws8_c00475{word-spacing:-0.024896pt;}
.ws16_c00475{word-spacing:-0.006224pt;}
.ws1_c00475{word-spacing:0.000000pt;}
.ws1f_c00475{word-spacing:0.018672pt;}
.ws12_c00475{word-spacing:0.024896pt;}
.ws10_c00475{word-spacing:0.311200pt;}
.ws19_c00475{word-spacing:0.964720pt;}
.ws6_c00475{word-spacing:1.269696pt;}
.ws11_c00475{word-spacing:1.294592pt;}
.ws5_c00475{word-spacing:1.580896pt;}
.ws7_c00475{word-spacing:1.923216pt;}
.wse_c00475{word-spacing:2.576736pt;}
.wsa_c00475{word-spacing:2.856816pt;}
.ws1c_c00475{word-spacing:2.875488pt;}
.ws9_c00475{word-spacing:2.900384pt;}
.ws1b_c00475{word-spacing:3.199136pt;}
.ws1a_c00475{word-spacing:3.211584pt;}
.ws1d_c00475{word-spacing:4.132736pt;}
.wsd_c00475{word-spacing:4.151408pt;}
.ws4_c00475{word-spacing:5.757200pt;}
.ws22_c00475{word-spacing:6.062176pt;}
.ws1e_c00475{word-spacing:8.962560pt;}
.ws18_c00475{word-spacing:9.616080pt;}
.wsf_c00475{word-spacing:13.113968pt;}
.ws3_c00475{word-spacing:13.120192pt;}
.ws2_c00475{word-spacing:13.412720pt;}
.ws15_c00475{word-spacing:13.773712pt;}
.ws21_c00475{word-spacing:15.360832pt;}
.ws20_c00475{word-spacing:18.223872pt;}
.ws17_c00475{word-spacing:18.547520pt;}
.wsb_c00475{word-spacing:25.281888pt;}
.wsc_c00475{word-spacing:25.617984pt;}
.ws13_c00475{word-spacing:52.138448pt;}
.ws14_c00475{word-spacing:52.163344pt;}
._0_c00475{margin-left:-0.952272pt;}
._1_c00475{width:1.176336pt;}
._2_c00475{width:24.914672pt;}
.fs1_c00475{font-size:41.388800pt;}
.fs0_c00475{font-size:62.240000pt;}
.y0_c00475{bottom:0.000000pt;}
.y2_c00475{bottom:97.547527pt;}
.y1_c00475{bottom:115.387067pt;}
.y21_c00475{bottom:135.223859pt;}
.y20_c00475{bottom:162.103759pt;}
.y1f_c00475{bottom:188.904303pt;}
.y1e_c00475{bottom:215.784203pt;}
.y1d_c00475{bottom:242.584747pt;}
.y1c_c00475{bottom:269.464647pt;}
.y1b_c00475{bottom:296.265191pt;}
.y1a_c00475{bottom:323.145091pt;}
.y19_c00475{bottom:349.945635pt;}
.y18_c00475{bottom:376.825535pt;}
.y17_c00475{bottom:403.626079pt;}
.y16_c00475{bottom:430.505979pt;}
.y15_c00475{bottom:457.306523pt;}
.y14_c00475{bottom:484.107191pt;}
.y13_c00475{bottom:510.907735pt;}
.y12_c00475{bottom:537.787635pt;}
.y11_c00475{bottom:580.187079pt;}
.y10_c00475{bottom:606.987623pt;}
.yf_c00475{bottom:649.385379pt;}
.ye_c00475{bottom:676.265279pt;}
.yd_c00475{bottom:703.065823pt;}
.yc_c00475{bottom:729.945723pt;}
.yb_c00475{bottom:756.746267pt;}
.ya_c00475{bottom:783.626167pt;}
.y9_c00475{bottom:810.426711pt;}
.y8_c00475{bottom:852.906171pt;}
.y7_c00475{bottom:879.706715pt;}
.y6_c00475{bottom:906.586615pt;}
.y5_c00475{bottom:933.387159pt;}
.y4_c00475{bottom:960.267059pt;}
.y3_c00475{bottom:987.067603pt;}
.h2_c00475{height:55.645234pt;}
.h1_c00475{height:55.797187pt;}
.h5_c00475{height:65.482870pt;}
.h3_c00475{height:65.587997pt;}
.h4_c00475{height:65.810118pt;}
.h0_c00475{height:1122.666667pt;}
.w0_c00475{width:793.333333pt;}
.x0_c00475{left:0.000000pt;}
.x2_c00475{left:73.520052pt;}
.x1_c00475{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4139c1ef27fd07d26d8bca44.woff2')format("woff");}.ff1_c00476{font-family:ff1_c00476;line-height:1.106934;font-style:normal;font-weight:normal;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_097bd5b280eae9b06fefec07.woff2')format("woff");}.ff2_c00476{font-family:ff2_c00476;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00476{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00476{vertical-align:0.000000px;}
.v1_c00476{vertical-align:32.403402px;}
.lsc_c00476{letter-spacing:-0.335249px;}
.ls4_c00476{letter-spacing:-0.063018px;}
.ls6_c00476{letter-spacing:-0.056016px;}
.lsd_c00476{letter-spacing:-0.042012px;}
.lsb_c00476{letter-spacing:-0.035010px;}
.ls9_c00476{letter-spacing:-0.028008px;}
.ls7_c00476{letter-spacing:-0.021006px;}
.ls8_c00476{letter-spacing:-0.014004px;}
.lsa_c00476{letter-spacing:-0.007002px;}
.ls5_c00476{letter-spacing:0.000000px;}
.ls1_c00476{letter-spacing:0.007002px;}
.ls3_c00476{letter-spacing:0.014004px;}
.ls2_c00476{letter-spacing:0.023281px;}
.ls0_c00476{letter-spacing:0.042012px;}
.sc__c00476{text-shadow:none;}
.sc0_c00476{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00476{-webkit-text-stroke:0px transparent;}
.sc0_c00476{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00476{word-spacing:-12.967628px;}
.ws0_c00476{word-spacing:-12.609098px;}
.ws10_c00476{word-spacing:-0.007002px;}
.ws2_c00476{word-spacing:0.000000px;}
.ws5_c00476{word-spacing:0.014004px;}
.wsb_c00476{word-spacing:0.378108px;}
.ws1b_c00476{word-spacing:0.385110px;}
.ws7_c00476{word-spacing:0.714204px;}
.ws12_c00476{word-spacing:1.057302px;}
.ws11_c00476{word-spacing:1.071306px;}
.ws13_c00476{word-spacing:1.092312px;}
.ws1d_c00476{word-spacing:1.799514px;}
.ws1c_c00476{word-spacing:1.820520px;}
.ws14_c00476{word-spacing:2.170620px;}
.ws6_c00476{word-spacing:3.227922px;}
.ws1f_c00476{word-spacing:3.234924px;}
.ws1e_c00476{word-spacing:3.571020px;}
.ws1a_c00476{word-spacing:4.677336px;}
.ws4_c00476{word-spacing:5.048442px;}
.ws3_c00476{word-spacing:5.083452px;}
.ws18_c00476{word-spacing:5.398542px;}
.wse_c00476{word-spacing:6.063732px;}
.wsd_c00476{word-spacing:6.105744px;}
.wsc_c00476{word-spacing:6.833952px;}
.ws20_c00476{word-spacing:7.548156px;}
.ws17_c00476{word-spacing:7.926264px;}
.ws16_c00476{word-spacing:8.640468px;}
.ws15_c00476{word-spacing:8.661474px;}
.wsa_c00476{word-spacing:11.889396px;}
.ws19_c00476{word-spacing:21.622176px;}
.wsf_c00476{word-spacing:21.944268px;}
.ws9_c00476{word-spacing:25.186194px;}
.ws8_c00476{word-spacing:25.193196px;}
._1_c00476{margin-left:-1.127322px;}
._0_c00476{width:1.155330px;}
.fc0_c00476{color:rgb(0,0,0);}
.fs1_c00476{font-size:46.562400px;}
.fs0_c00476{font-size:70.020000px;}
.y0_c00476{bottom:0.000000px;}
.y2_c00476{bottom:109.740968px;}
.y1_c00476{bottom:129.810450px;}
.y20_c00476{bottom:175.078727px;}
.y1f_c00476{bottom:205.229338px;}
.y1e_c00476{bottom:235.379951px;}
.y1d_c00476{bottom:265.619838px;}
.y1c_c00476{bottom:295.767453px;}
.y1b_c00476{bottom:326.007340px;}
.y1a_c00476{bottom:356.157952px;}
.y19_c00476{bottom:386.397840px;}
.y18_c00476{bottom:416.548452px;}
.y17_c00476{bottom:446.788339px;}
.y16_c00476{bottom:476.938951px;}
.y15_c00476{bottom:507.178839px;}
.y14_c00476{bottom:537.329451px;}
.y13_c00476{bottom:567.569338px;}
.y12_c00476{bottom:597.719950px;}
.y11_c00476{bottom:627.959838px;}
.y10_c00476{bottom:658.109600px;}
.yf_c00476{bottom:688.349487px;}
.ye_c00476{bottom:718.500099px;}
.yd_c00476{bottom:748.739987px;}
.yc_c00476{bottom:797.790747px;}
.yb_c00476{bottom:851.340293px;}
.ya_c00476{bottom:881.580180px;}
.y9_c00476{bottom:911.730792px;}
.y8_c00476{bottom:941.970679px;}
.y7_c00476{bottom:972.210567px;}
.y6_c00476{bottom:1019.909942px;}
.y5_c00476{bottom:1050.060553px;}
.y4_c00476{bottom:1080.300441px;}
.y3_c00476{bottom:1110.451053px;}
.h2_c00476{height:62.600889px;}
.h1_c00476{height:62.771836px;}
.h3_c00476{height:74.032188px;}
.h4_c00476{height:74.154452px;}
.h0_c00476{height:1263.000000px;}
.w0_c00476{width:892.500000px;}
.x0_c00476{left:0.000000px;}
.x2_c00476{left:82.710059px;}
.x1_c00476{left:431.730000px;}
@media print{
.v0_c00476{vertical-align:0.000000pt;}
.v1_c00476{vertical-align:28.803024pt;}
.lsc_c00476{letter-spacing:-0.297999pt;}
.ls4_c00476{letter-spacing:-0.056016pt;}
.ls6_c00476{letter-spacing:-0.049792pt;}
.lsd_c00476{letter-spacing:-0.037344pt;}
.lsb_c00476{letter-spacing:-0.031120pt;}
.ls9_c00476{letter-spacing:-0.024896pt;}
.ls7_c00476{letter-spacing:-0.018672pt;}
.ls8_c00476{letter-spacing:-0.012448pt;}
.lsa_c00476{letter-spacing:-0.006224pt;}
.ls5_c00476{letter-spacing:0.000000pt;}
.ls1_c00476{letter-spacing:0.006224pt;}
.ls3_c00476{letter-spacing:0.012448pt;}
.ls2_c00476{letter-spacing:0.020694pt;}
.ls0_c00476{letter-spacing:0.037344pt;}
.ws1_c00476{word-spacing:-11.526781pt;}
.ws0_c00476{word-spacing:-11.208087pt;}
.ws10_c00476{word-spacing:-0.006224pt;}
.ws2_c00476{word-spacing:0.000000pt;}
.ws5_c00476{word-spacing:0.012448pt;}
.wsb_c00476{word-spacing:0.336096pt;}
.ws1b_c00476{word-spacing:0.342320pt;}
.ws7_c00476{word-spacing:0.634848pt;}
.ws12_c00476{word-spacing:0.939824pt;}
.ws11_c00476{word-spacing:0.952272pt;}
.ws13_c00476{word-spacing:0.970944pt;}
.ws1d_c00476{word-spacing:1.599568pt;}
.ws1c_c00476{word-spacing:1.618240pt;}
.ws14_c00476{word-spacing:1.929440pt;}
.ws6_c00476{word-spacing:2.869264pt;}
.ws1f_c00476{word-spacing:2.875488pt;}
.ws1e_c00476{word-spacing:3.174240pt;}
.ws1a_c00476{word-spacing:4.157632pt;}
.ws4_c00476{word-spacing:4.487504pt;}
.ws3_c00476{word-spacing:4.518624pt;}
.ws18_c00476{word-spacing:4.798704pt;}
.wse_c00476{word-spacing:5.389984pt;}
.wsd_c00476{word-spacing:5.427328pt;}
.wsc_c00476{word-spacing:6.074624pt;}
.ws20_c00476{word-spacing:6.709472pt;}
.ws17_c00476{word-spacing:7.045568pt;}
.ws16_c00476{word-spacing:7.680416pt;}
.ws15_c00476{word-spacing:7.699088pt;}
.wsa_c00476{word-spacing:10.568352pt;}
.ws19_c00476{word-spacing:19.219712pt;}
.wsf_c00476{word-spacing:19.506016pt;}
.ws9_c00476{word-spacing:22.387728pt;}
.ws8_c00476{word-spacing:22.393952pt;}
._1_c00476{margin-left:-1.002064pt;}
._0_c00476{width:1.026960pt;}
.fs1_c00476{font-size:41.388800pt;}
.fs0_c00476{font-size:62.240000pt;}
.y0_c00476{bottom:0.000000pt;}
.y2_c00476{bottom:97.547527pt;}
.y1_c00476{bottom:115.387067pt;}
.y20_c00476{bottom:155.625535pt;}
.y1f_c00476{bottom:182.426079pt;}
.y1e_c00476{bottom:209.226623pt;}
.y1d_c00476{bottom:236.106523pt;}
.y1c_c00476{bottom:262.904403pt;}
.y1b_c00476{bottom:289.784303pt;}
.y1a_c00476{bottom:316.584847pt;}
.y19_c00476{bottom:343.464747pt;}
.y18_c00476{bottom:370.265291pt;}
.y17_c00476{bottom:397.145191pt;}
.y16_c00476{bottom:423.945735pt;}
.y15_c00476{bottom:450.825635pt;}
.y14_c00476{bottom:477.626179pt;}
.y13_c00476{bottom:504.506079pt;}
.y12_c00476{bottom:531.306623pt;}
.y11_c00476{bottom:558.186523pt;}
.y10_c00476{bottom:584.986311pt;}
.yf_c00476{bottom:611.866211pt;}
.ye_c00476{bottom:638.666755pt;}
.yd_c00476{bottom:665.546655pt;}
.yc_c00476{bottom:709.147331pt;}
.yb_c00476{bottom:756.746927pt;}
.ya_c00476{bottom:783.626827pt;}
.y9_c00476{bottom:810.427371pt;}
.y8_c00476{bottom:837.307271pt;}
.y7_c00476{bottom:864.187171pt;}
.y6_c00476{bottom:906.586615pt;}
.y5_c00476{bottom:933.387159pt;}
.y4_c00476{bottom:960.267059pt;}
.y3_c00476{bottom:987.067603pt;}
.h2_c00476{height:55.645234pt;}
.h1_c00476{height:55.797187pt;}
.h3_c00476{height:65.806390pt;}
.h4_c00476{height:65.915068pt;}
.h0_c00476{height:1122.666667pt;}
.w0_c00476{width:793.333333pt;}
.x0_c00476{left:0.000000pt;}
.x2_c00476{left:73.520052pt;}
.x1_c00476{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fbd7974f32f501fb3af44f68.woff2')format("woff");}.ff1_c00477{font-family:ff1_c00477;line-height:1.106934;font-style:normal;font-weight:normal;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_a75d5b54133c900992cfee21.woff2')format("woff");}.ff2_c00477{font-family:ff2_c00477;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00477{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00477{vertical-align:0.000000px;}
.v1_c00477{vertical-align:32.041584px;}
.lsd_c00477{letter-spacing:-0.077022px;}
.ls9_c00477{letter-spacing:-0.063018px;}
.ls13_c00477{letter-spacing:-0.056016px;}
.ls11_c00477{letter-spacing:-0.049014px;}
.ls12_c00477{letter-spacing:-0.042012px;}
.ls10_c00477{letter-spacing:-0.035010px;}
.lsb_c00477{letter-spacing:-0.028008px;}
.lse_c00477{letter-spacing:-0.021006px;}
.lsc_c00477{letter-spacing:-0.014004px;}
.lsf_c00477{letter-spacing:-0.007002px;}
.lsa_c00477{letter-spacing:0.000000px;}
.ls1_c00477{letter-spacing:0.007002px;}
.ls5_c00477{letter-spacing:0.014004px;}
.ls4_c00477{letter-spacing:0.021006px;}
.ls3_c00477{letter-spacing:0.023281px;}
.ls6_c00477{letter-spacing:0.028008px;}
.ls2_c00477{letter-spacing:0.035010px;}
.ls7_c00477{letter-spacing:0.042012px;}
.ls0_c00477{letter-spacing:0.301086px;}
.ls14_c00477{letter-spacing:0.343098px;}
.ls8_c00477{letter-spacing:3.935124px;}
.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;}
}
.ws2_c00477{word-spacing:-19.458558px;}
.ws0_c00477{word-spacing:-19.437552px;}
.ws1_c00477{word-spacing:-12.967628px;}
.ws15_c00477{word-spacing:-0.035010px;}
.ws3_c00477{word-spacing:0.000000px;}
.ws17_c00477{word-spacing:0.028008px;}
.ws16_c00477{word-spacing:0.329094px;}
.ws28_c00477{word-spacing:0.350100px;}
.ws21_c00477{word-spacing:0.364104px;}
.ws22_c00477{word-spacing:0.679194px;}
.wsd_c00477{word-spacing:0.714204px;}
.ws12_c00477{word-spacing:0.728208px;}
.wse_c00477{word-spacing:1.029294px;}
.ws1b_c00477{word-spacing:1.092312px;}
.ws23_c00477{word-spacing:1.099314px;}
.ws11_c00477{word-spacing:1.113318px;}
.ws20_c00477{word-spacing:1.120320px;}
.ws1a_c00477{word-spacing:1.435410px;}
.ws1d_c00477{word-spacing:1.442412px;}
.wsb_c00477{word-spacing:1.449414px;}
.wsc_c00477{word-spacing:1.491426px;}
.wsf_c00477{word-spacing:1.778508px;}
.ws10_c00477{word-spacing:1.820520px;}
.ws25_c00477{word-spacing:1.834524px;}
.ws19_c00477{word-spacing:2.891826px;}
.ws2d_c00477{word-spacing:3.956130px;}
.ws8_c00477{word-spacing:4.005144px;}
.ws2f_c00477{word-spacing:4.012146px;}
.wsa_c00477{word-spacing:4.299228px;}
.ws2e_c00477{word-spacing:4.313232px;}
.ws9_c00477{word-spacing:4.320234px;}
.ws7_c00477{word-spacing:4.383252px;}
.ws24_c00477{word-spacing:4.698342px;}
.ws2c_c00477{word-spacing:5.062446px;}
.ws2b_c00477{word-spacing:5.391540px;}
.ws18_c00477{word-spacing:5.734638px;}
.ws6_c00477{word-spacing:7.919262px;}
.ws5_c00477{word-spacing:8.290368px;}
.ws4_c00477{word-spacing:8.297370px;}
.ws2a_c00477{word-spacing:8.619462px;}
.ws29_c00477{word-spacing:8.675478px;}
.ws13_c00477{word-spacing:9.382680px;}
.ws14_c00477{word-spacing:10.390968px;}
.ws27_c00477{word-spacing:12.904686px;}
.ws26_c00477{word-spacing:12.995712px;}
.ws1c_c00477{word-spacing:25.921404px;}
.ws1f_c00477{word-spacing:25.928406px;}
.ws1e_c00477{word-spacing:25.942410px;}
._1_c00477{margin-left:-1.379394px;}
._0_c00477{width:1.197342px;}
.fc0_c00477{color:rgb(0,0,0);}
.fs1_c00477{font-size:46.562400px;}
.fs0_c00477{font-size:70.020000px;}
.y0_c00477{bottom:0.000000px;}
.y2_c00477{bottom:109.740968px;}
.y1_c00477{bottom:129.810450px;}
.y22_c00477{bottom:174.447565px;}
.y21_c00477{bottom:204.687453px;}
.y20_c00477{bottom:234.838065px;}
.y1f_c00477{bottom:265.077952px;}
.y1e_c00477{bottom:295.228564px;}
.y1d_c00477{bottom:325.468452px;}
.y1c_c00477{bottom:355.619064px;}
.y1b_c00477{bottom:385.858951px;}
.y1a_c00477{bottom:416.009563px;}
.y19_c00477{bottom:446.249451px;}
.y18_c00477{bottom:476.400063px;}
.y17_c00477{bottom:506.639950px;}
.y16_c00477{bottom:536.790562px;}
.y15_c00477{bottom:567.027980px;}
.y14_c00477{bottom:597.087566px;}
.y13_c00477{bottom:627.327453px;}
.y12_c00477{bottom:657.478065px;}
.y11_c00477{bottom:687.717953px;}
.y10_c00477{bottom:717.868565px;}
.yf_c00477{bottom:748.108452px;}
.ye_c00477{bottom:778.259064px;}
.yd_c00477{bottom:808.498952px;}
.yc_c00477{bottom:838.649564px;}
.yb_c00477{bottom:868.889451px;}
.ya_c00477{bottom:899.040063px;}
.y9_c00477{bottom:929.279951px;}
.y8_c00477{bottom:959.519838px;}
.y7_c00477{bottom:989.670054px;}
.y6_c00477{bottom:1019.909942px;}
.y5_c00477{bottom:1050.060553px;}
.y4_c00477{bottom:1080.300441px;}
.y3_c00477{bottom:1110.451053px;}
.h2_c00477{height:62.600889px;}
.h1_c00477{height:62.771836px;}
.h3_c00477{height:73.670370px;}
.h4_c00477{height:73.678668px;}
.h0_c00477{height:1263.000000px;}
.w0_c00477{width:892.500000px;}
.x0_c00477{left:0.000000px;}
.x2_c00477{left:82.710059px;}
.x1_c00477{left:431.730000px;}
@media print{
.v0_c00477{vertical-align:0.000000pt;}
.v1_c00477{vertical-align:28.481408pt;}
.lsd_c00477{letter-spacing:-0.068464pt;}
.ls9_c00477{letter-spacing:-0.056016pt;}
.ls13_c00477{letter-spacing:-0.049792pt;}
.ls11_c00477{letter-spacing:-0.043568pt;}
.ls12_c00477{letter-spacing:-0.037344pt;}
.ls10_c00477{letter-spacing:-0.031120pt;}
.lsb_c00477{letter-spacing:-0.024896pt;}
.lse_c00477{letter-spacing:-0.018672pt;}
.lsc_c00477{letter-spacing:-0.012448pt;}
.lsf_c00477{letter-spacing:-0.006224pt;}
.lsa_c00477{letter-spacing:0.000000pt;}
.ls1_c00477{letter-spacing:0.006224pt;}
.ls5_c00477{letter-spacing:0.012448pt;}
.ls4_c00477{letter-spacing:0.018672pt;}
.ls3_c00477{letter-spacing:0.020694pt;}
.ls6_c00477{letter-spacing:0.024896pt;}
.ls2_c00477{letter-spacing:0.031120pt;}
.ls7_c00477{letter-spacing:0.037344pt;}
.ls0_c00477{letter-spacing:0.267632pt;}
.ls14_c00477{letter-spacing:0.304976pt;}
.ls8_c00477{letter-spacing:3.497888pt;}
.ws2_c00477{word-spacing:-17.296496pt;}
.ws0_c00477{word-spacing:-17.277824pt;}
.ws1_c00477{word-spacing:-11.526781pt;}
.ws15_c00477{word-spacing:-0.031120pt;}
.ws3_c00477{word-spacing:0.000000pt;}
.ws17_c00477{word-spacing:0.024896pt;}
.ws16_c00477{word-spacing:0.292528pt;}
.ws28_c00477{word-spacing:0.311200pt;}
.ws21_c00477{word-spacing:0.323648pt;}
.ws22_c00477{word-spacing:0.603728pt;}
.wsd_c00477{word-spacing:0.634848pt;}
.ws12_c00477{word-spacing:0.647296pt;}
.wse_c00477{word-spacing:0.914928pt;}
.ws1b_c00477{word-spacing:0.970944pt;}
.ws23_c00477{word-spacing:0.977168pt;}
.ws11_c00477{word-spacing:0.989616pt;}
.ws20_c00477{word-spacing:0.995840pt;}
.ws1a_c00477{word-spacing:1.275920pt;}
.ws1d_c00477{word-spacing:1.282144pt;}
.wsb_c00477{word-spacing:1.288368pt;}
.wsc_c00477{word-spacing:1.325712pt;}
.wsf_c00477{word-spacing:1.580896pt;}
.ws10_c00477{word-spacing:1.618240pt;}
.ws25_c00477{word-spacing:1.630688pt;}
.ws19_c00477{word-spacing:2.570512pt;}
.ws2d_c00477{word-spacing:3.516560pt;}
.ws8_c00477{word-spacing:3.560128pt;}
.ws2f_c00477{word-spacing:3.566352pt;}
.wsa_c00477{word-spacing:3.821536pt;}
.ws2e_c00477{word-spacing:3.833984pt;}
.ws9_c00477{word-spacing:3.840208pt;}
.ws7_c00477{word-spacing:3.896224pt;}
.ws24_c00477{word-spacing:4.176304pt;}
.ws2c_c00477{word-spacing:4.499952pt;}
.ws2b_c00477{word-spacing:4.792480pt;}
.ws18_c00477{word-spacing:5.097456pt;}
.ws6_c00477{word-spacing:7.039344pt;}
.ws5_c00477{word-spacing:7.369216pt;}
.ws4_c00477{word-spacing:7.375440pt;}
.ws2a_c00477{word-spacing:7.661744pt;}
.ws29_c00477{word-spacing:7.711536pt;}
.ws13_c00477{word-spacing:8.340160pt;}
.ws14_c00477{word-spacing:9.236416pt;}
.ws27_c00477{word-spacing:11.470832pt;}
.ws26_c00477{word-spacing:11.551744pt;}
.ws1c_c00477{word-spacing:23.041248pt;}
.ws1f_c00477{word-spacing:23.047472pt;}
.ws1e_c00477{word-spacing:23.059920pt;}
._1_c00477{margin-left:-1.226128pt;}
._0_c00477{width:1.064304pt;}
.fs1_c00477{font-size:41.388800pt;}
.fs0_c00477{font-size:62.240000pt;}
.y0_c00477{bottom:0.000000pt;}
.y2_c00477{bottom:97.547527pt;}
.y1_c00477{bottom:115.387067pt;}
.y22_c00477{bottom:155.064503pt;}
.y21_c00477{bottom:181.944403pt;}
.y20_c00477{bottom:208.744947pt;}
.y1f_c00477{bottom:235.624847pt;}
.y1e_c00477{bottom:262.425391pt;}
.y1d_c00477{bottom:289.305291pt;}
.y1c_c00477{bottom:316.105835pt;}
.y1b_c00477{bottom:342.985735pt;}
.y1a_c00477{bottom:369.786279pt;}
.y19_c00477{bottom:396.666179pt;}
.y18_c00477{bottom:423.466723pt;}
.y17_c00477{bottom:450.346623pt;}
.y16_c00477{bottom:477.147167pt;}
.y15_c00477{bottom:504.024871pt;}
.y14_c00477{bottom:530.744503pt;}
.y13_c00477{bottom:557.624403pt;}
.y12_c00477{bottom:584.424947pt;}
.y11_c00477{bottom:611.304847pt;}
.y10_c00477{bottom:638.105391pt;}
.yf_c00477{bottom:664.985291pt;}
.ye_c00477{bottom:691.785835pt;}
.yd_c00477{bottom:718.665735pt;}
.yc_c00477{bottom:745.466279pt;}
.yb_c00477{bottom:772.346179pt;}
.ya_c00477{bottom:799.146723pt;}
.y9_c00477{bottom:826.026623pt;}
.y8_c00477{bottom:852.906523pt;}
.y7_c00477{bottom:879.706715pt;}
.y6_c00477{bottom:906.586615pt;}
.y5_c00477{bottom:933.387159pt;}
.y4_c00477{bottom:960.267059pt;}
.y3_c00477{bottom:987.067603pt;}
.h2_c00477{height:55.645234pt;}
.h1_c00477{height:55.797187pt;}
.h3_c00477{height:65.484774pt;}
.h4_c00477{height:65.492150pt;}
.h0_c00477{height:1122.666667pt;}
.w0_c00477{width:793.333333pt;}
.x0_c00477{left:0.000000pt;}
.x2_c00477{left:73.520052pt;}
.x1_c00477{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a4ed4623875700f50f14d9d3.woff2')format("woff");}.ff1_c00478{font-family:ff1_c00478;line-height:1.106934;font-style:normal;font-weight:normal;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_04585dd0dcf384e0864e2be7.woff2')format("woff");}.ff2_c00478{font-family:ff2_c00478;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00478{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00478{vertical-align:0.000000px;}
.v1_c00478{vertical-align:32.041584px;}
.lsb_c00478{letter-spacing:-0.335249px;}
.ls4_c00478{letter-spacing:-0.063018px;}
.lsc_c00478{letter-spacing:-0.042012px;}
.ls8_c00478{letter-spacing:-0.035010px;}
.ls6_c00478{letter-spacing:-0.028008px;}
.lsa_c00478{letter-spacing:-0.021006px;}
.ls7_c00478{letter-spacing:-0.014004px;}
.ls9_c00478{letter-spacing:-0.007002px;}
.ls5_c00478{letter-spacing:0.000000px;}
.ls3_c00478{letter-spacing:0.007002px;}
.ls2_c00478{letter-spacing:0.021006px;}
.ls1_c00478{letter-spacing:0.023281px;}
.ls0_c00478{letter-spacing:0.035010px;}
.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;}
}
.ws2_c00478{word-spacing:-19.451556px;}
.ws1_c00478{word-spacing:-12.967628px;}
.ws0_c00478{word-spacing:-12.609098px;}
.ws23_c00478{word-spacing:-0.392112px;}
.ws1f_c00478{word-spacing:-0.007002px;}
.ws3_c00478{word-spacing:0.000000px;}
.wsa_c00478{word-spacing:0.007002px;}
.ws22_c00478{word-spacing:0.028008px;}
.ws21_c00478{word-spacing:0.336096px;}
.wsb_c00478{word-spacing:0.358530px;}
.ws24_c00478{word-spacing:0.378108px;}
.ws5_c00478{word-spacing:0.735210px;}
.ws4_c00478{word-spacing:1.064304px;}
.ws15_c00478{word-spacing:1.078308px;}
.ws14_c00478{word-spacing:1.099314px;}
.ws1e_c00478{word-spacing:2.870820px;}
.ws1d_c00478{word-spacing:2.884824px;}
.ws16_c00478{word-spacing:3.599028px;}
.ws7_c00478{word-spacing:3.613032px;}
.ws20_c00478{word-spacing:5.041440px;}
.ws1c_c00478{word-spacing:6.833952px;}
.ws1b_c00478{word-spacing:7.905258px;}
.wse_c00478{word-spacing:8.276364px;}
.ws1a_c00478{word-spacing:8.290368px;}
.ws13_c00478{word-spacing:8.962560px;}
.ws19_c00478{word-spacing:8.990568px;}
.ws6_c00478{word-spacing:10.748070px;}
.ws18_c00478{word-spacing:12.239496px;}
.wsf_c00478{word-spacing:18.723348px;}
.ws10_c00478{word-spacing:18.730350px;}
.ws11_c00478{word-spacing:20.515860px;}
.ws12_c00478{word-spacing:20.536866px;}
.ws17_c00478{word-spacing:30.598740px;}
.ws8_c00478{word-spacing:39.603312px;}
.ws9_c00478{word-spacing:39.617316px;}
.wsc_c00478{word-spacing:48.978990px;}
.wsd_c00478{word-spacing:56.184048px;}
._0_c00478{margin-left:-1.008288px;}
._1_c00478{width:1.001286px;}
.fc0_c00478{color:rgb(0,0,0);}
.fs1_c00478{font-size:46.562400px;}
.fs0_c00478{font-size:70.020000px;}
.y0_c00478{bottom:0.000000px;}
.y2_c00478{bottom:109.740968px;}
.y1_c00478{bottom:129.810450px;}
.y22_c00478{bottom:174.448951px;}
.y21_c00478{bottom:204.688839px;}
.y20_c00478{bottom:234.839451px;}
.y1f_c00478{bottom:265.079339px;}
.y1e_c00478{bottom:295.229951px;}
.y1d_c00478{bottom:325.469838px;}
.y1c_c00478{bottom:355.619563px;}
.y1b_c00478{bottom:385.859451px;}
.y1a_c00478{bottom:416.010063px;}
.y19_c00478{bottom:446.249950px;}
.y18_c00478{bottom:476.400562px;}
.y17_c00478{bottom:506.637480px;}
.y16_c00478{bottom:536.788092px;}
.y15_c00478{bottom:567.027980px;}
.y14_c00478{bottom:597.087566px;}
.y13_c00478{bottom:627.327453px;}
.y12_c00478{bottom:657.478065px;}
.y11_c00478{bottom:687.717953px;}
.y10_c00478{bottom:717.868565px;}
.yf_c00478{bottom:748.108452px;}
.ye_c00478{bottom:778.259064px;}
.yd_c00478{bottom:808.498952px;}
.yc_c00478{bottom:838.649564px;}
.yb_c00478{bottom:868.889451px;}
.ya_c00478{bottom:899.040063px;}
.y9_c00478{bottom:929.279951px;}
.y8_c00478{bottom:959.519838px;}
.y7_c00478{bottom:989.670054px;}
.y6_c00478{bottom:1019.909942px;}
.y5_c00478{bottom:1050.060553px;}
.y4_c00478{bottom:1080.300441px;}
.y3_c00478{bottom:1110.451053px;}
.h2_c00478{height:62.600889px;}
.h1_c00478{height:62.771836px;}
.h3_c00478{height:73.670370px;}
.h4_c00478{height:73.794344px;}
.h5_c00478{height:74.032332px;}
.h6_c00478{height:74.034780px;}
.h0_c00478{height:1263.000000px;}
.w0_c00478{width:892.500000px;}
.x0_c00478{left:0.000000px;}
.x2_c00478{left:82.710059px;}
.x1_c00478{left:431.730000px;}
@media print{
.v0_c00478{vertical-align:0.000000pt;}
.v1_c00478{vertical-align:28.481408pt;}
.lsb_c00478{letter-spacing:-0.297999pt;}
.ls4_c00478{letter-spacing:-0.056016pt;}
.lsc_c00478{letter-spacing:-0.037344pt;}
.ls8_c00478{letter-spacing:-0.031120pt;}
.ls6_c00478{letter-spacing:-0.024896pt;}
.lsa_c00478{letter-spacing:-0.018672pt;}
.ls7_c00478{letter-spacing:-0.012448pt;}
.ls9_c00478{letter-spacing:-0.006224pt;}
.ls5_c00478{letter-spacing:0.000000pt;}
.ls3_c00478{letter-spacing:0.006224pt;}
.ls2_c00478{letter-spacing:0.018672pt;}
.ls1_c00478{letter-spacing:0.020694pt;}
.ls0_c00478{letter-spacing:0.031120pt;}
.ws2_c00478{word-spacing:-17.290272pt;}
.ws1_c00478{word-spacing:-11.526781pt;}
.ws0_c00478{word-spacing:-11.208087pt;}
.ws23_c00478{word-spacing:-0.348544pt;}
.ws1f_c00478{word-spacing:-0.006224pt;}
.ws3_c00478{word-spacing:0.000000pt;}
.wsa_c00478{word-spacing:0.006224pt;}
.ws22_c00478{word-spacing:0.024896pt;}
.ws21_c00478{word-spacing:0.298752pt;}
.wsb_c00478{word-spacing:0.318694pt;}
.ws24_c00478{word-spacing:0.336096pt;}
.ws5_c00478{word-spacing:0.653520pt;}
.ws4_c00478{word-spacing:0.946048pt;}
.ws15_c00478{word-spacing:0.958496pt;}
.ws14_c00478{word-spacing:0.977168pt;}
.ws1e_c00478{word-spacing:2.551840pt;}
.ws1d_c00478{word-spacing:2.564288pt;}
.ws16_c00478{word-spacing:3.199136pt;}
.ws7_c00478{word-spacing:3.211584pt;}
.ws20_c00478{word-spacing:4.481280pt;}
.ws1c_c00478{word-spacing:6.074624pt;}
.ws1b_c00478{word-spacing:7.026896pt;}
.wse_c00478{word-spacing:7.356768pt;}
.ws1a_c00478{word-spacing:7.369216pt;}
.ws13_c00478{word-spacing:7.966720pt;}
.ws19_c00478{word-spacing:7.991616pt;}
.ws6_c00478{word-spacing:9.553840pt;}
.ws18_c00478{word-spacing:10.879552pt;}
.wsf_c00478{word-spacing:16.642976pt;}
.ws10_c00478{word-spacing:16.649200pt;}
.ws11_c00478{word-spacing:18.236320pt;}
.ws12_c00478{word-spacing:18.254992pt;}
.ws17_c00478{word-spacing:27.198880pt;}
.ws8_c00478{word-spacing:35.202944pt;}
.ws9_c00478{word-spacing:35.215392pt;}
.wsc_c00478{word-spacing:43.536880pt;}
.wsd_c00478{word-spacing:49.941376pt;}
._0_c00478{margin-left:-0.896256pt;}
._1_c00478{width:0.890032pt;}
.fs1_c00478{font-size:41.388800pt;}
.fs0_c00478{font-size:62.240000pt;}
.y0_c00478{bottom:0.000000pt;}
.y2_c00478{bottom:97.547527pt;}
.y1_c00478{bottom:115.387067pt;}
.y22_c00478{bottom:155.065735pt;}
.y21_c00478{bottom:181.945635pt;}
.y20_c00478{bottom:208.746179pt;}
.y1f_c00478{bottom:235.626079pt;}
.y1e_c00478{bottom:262.426623pt;}
.y1d_c00478{bottom:289.306523pt;}
.y1c_c00478{bottom:316.106279pt;}
.y1b_c00478{bottom:342.986179pt;}
.y1a_c00478{bottom:369.786723pt;}
.y19_c00478{bottom:396.666623pt;}
.y18_c00478{bottom:423.467167pt;}
.y17_c00478{bottom:450.344427pt;}
.y16_c00478{bottom:477.144971pt;}
.y15_c00478{bottom:504.024871pt;}
.y14_c00478{bottom:530.744503pt;}
.y13_c00478{bottom:557.624403pt;}
.y12_c00478{bottom:584.424947pt;}
.y11_c00478{bottom:611.304847pt;}
.y10_c00478{bottom:638.105391pt;}
.yf_c00478{bottom:664.985291pt;}
.ye_c00478{bottom:691.785835pt;}
.yd_c00478{bottom:718.665735pt;}
.yc_c00478{bottom:745.466279pt;}
.yb_c00478{bottom:772.346179pt;}
.ya_c00478{bottom:799.146723pt;}
.y9_c00478{bottom:826.026623pt;}
.y8_c00478{bottom:852.906523pt;}
.y7_c00478{bottom:879.706715pt;}
.y6_c00478{bottom:906.586615pt;}
.y5_c00478{bottom:933.387159pt;}
.y4_c00478{bottom:960.267059pt;}
.y3_c00478{bottom:987.067603pt;}
.h2_c00478{height:55.645234pt;}
.h1_c00478{height:55.797187pt;}
.h3_c00478{height:65.484774pt;}
.h4_c00478{height:65.594972pt;}
.h5_c00478{height:65.806518pt;}
.h6_c00478{height:65.808694pt;}
.h0_c00478{height:1122.666667pt;}
.w0_c00478{width:793.333333pt;}
.x0_c00478{left:0.000000pt;}
.x2_c00478{left:73.520052pt;}
.x1_c00478{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c2deb5078a565a2a4684bf64.woff2')format("woff");}.ff1_c00479{font-family:ff1_c00479;line-height:1.106934;font-style:normal;font-weight:normal;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_35208466c4d932d61b020fbc.woff2')format("woff");}.ff2_c00479{font-family:ff2_c00479;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00479{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00479{vertical-align:0.000000px;}
.v1_c00479{vertical-align:32.041584px;}
.lsa_c00479{letter-spacing:-0.070020px;}
.ls6_c00479{letter-spacing:-0.063018px;}
.lsb_c00479{letter-spacing:-0.056016px;}
.lse_c00479{letter-spacing:-0.049014px;}
.lsf_c00479{letter-spacing:-0.042012px;}
.ls9_c00479{letter-spacing:-0.035010px;}
.ls8_c00479{letter-spacing:-0.028008px;}
.ls10_c00479{letter-spacing:-0.021006px;}
.lsd_c00479{letter-spacing:-0.014004px;}
.lsc_c00479{letter-spacing:-0.007002px;}
.ls7_c00479{letter-spacing:0.000000px;}
.ls0_c00479{letter-spacing:0.007002px;}
.ls4_c00479{letter-spacing:0.014004px;}
.ls3_c00479{letter-spacing:0.023281px;}
.ls1_c00479{letter-spacing:0.028008px;}
.ls5_c00479{letter-spacing:0.035010px;}
.ls2_c00479{letter-spacing:0.049014px;}
.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:-19.514574px;}
.ws1_c00479{word-spacing:-12.967628px;}
.ws1e_c00479{word-spacing:-0.021006px;}
.ws2_c00479{word-spacing:0.000000px;}
.ws26_c00479{word-spacing:0.021006px;}
.ws16_c00479{word-spacing:0.371106px;}
.ws27_c00479{word-spacing:0.378108px;}
.ws8_c00479{word-spacing:0.413118px;}
.ws24_c00479{word-spacing:1.092312px;}
.ws25_c00479{word-spacing:1.463418px;}
.ws1a_c00479{word-spacing:2.506716px;}
.ws13_c00479{word-spacing:2.513718px;}
.ws19_c00479{word-spacing:2.548728px;}
.ws11_c00479{word-spacing:2.877822px;}
.ws10_c00479{word-spacing:3.269934px;}
.ws12_c00479{word-spacing:3.977136px;}
.ws23_c00479{word-spacing:5.349528px;}
.ws22_c00479{word-spacing:5.391540px;}
.ws1c_c00479{word-spacing:6.469848px;}
.ws1d_c00479{word-spacing:7.205058px;}
.ws15_c00479{word-spacing:7.569162px;}
.ws14_c00479{word-spacing:7.583166px;}
.ws18_c00479{word-spacing:8.241354px;}
.ws1f_c00479{word-spacing:8.612460px;}
.wsc_c00479{word-spacing:8.983566px;}
.wsb_c00479{word-spacing:8.997570px;}
.wsa_c00479{word-spacing:10.075878px;}
.ws9_c00479{word-spacing:10.124892px;}
.ws1b_c00479{word-spacing:10.783080px;}
.ws3_c00479{word-spacing:10.811088px;}
.ws5_c00479{word-spacing:11.175192px;}
.ws6_c00479{word-spacing:11.497284px;}
.ws7_c00479{word-spacing:11.539296px;}
.ws21_c00479{word-spacing:12.561588px;}
.ws20_c00479{word-spacing:12.974706px;}
.ws4_c00479{word-spacing:15.124320px;}
.ws17_c00479{word-spacing:16.559730px;}
.wsd_c00479{word-spacing:16.909830px;}
.wsf_c00479{word-spacing:34.575876px;}
.wse_c00479{word-spacing:34.596882px;}
._1_c00479{margin-left:-1.365390px;}
._0_c00479{width:1.001286px;}
.fc0_c00479{color:rgb(0,0,0);}
.fs1_c00479{font-size:46.562400px;}
.fs0_c00479{font-size:70.020000px;}
.y0_c00479{bottom:0.000000px;}
.y2_c00479{bottom:109.740968px;}
.y1_c00479{bottom:129.810450px;}
.y22_c00479{bottom:174.448065px;}
.y21_c00479{bottom:204.687952px;}
.y20_c00479{bottom:234.838564px;}
.y1f_c00479{bottom:265.078452px;}
.y1e_c00479{bottom:295.229064px;}
.y1d_c00479{bottom:325.468951px;}
.y1c_c00479{bottom:355.619563px;}
.y1b_c00479{bottom:385.859451px;}
.y1a_c00479{bottom:416.010063px;}
.y19_c00479{bottom:446.249950px;}
.y18_c00479{bottom:476.400562px;}
.y17_c00479{bottom:506.637979px;}
.y16_c00479{bottom:536.788591px;}
.y15_c00479{bottom:567.028479px;}
.y14_c00479{bottom:597.088065px;}
.y13_c00479{bottom:627.327953px;}
.y12_c00479{bottom:657.478565px;}
.y11_c00479{bottom:687.718452px;}
.y10_c00479{bottom:717.869064px;}
.yf_c00479{bottom:748.108951px;}
.ye_c00479{bottom:778.259564px;}
.yd_c00479{bottom:808.499451px;}
.yc_c00479{bottom:838.650063px;}
.yb_c00479{bottom:868.889950px;}
.ya_c00479{bottom:899.040562px;}
.y9_c00479{bottom:929.280450px;}
.y8_c00479{bottom:967.530132px;}
.y7_c00479{bottom:989.670054px;}
.y6_c00479{bottom:1019.909942px;}
.y5_c00479{bottom:1050.060553px;}
.y4_c00479{bottom:1080.300441px;}
.y3_c00479{bottom:1110.451053px;}
.h3_c00479{height:41.742464px;}
.h4_c00479{height:62.600889px;}
.h1_c00479{height:62.771836px;}
.h5_c00479{height:73.678668px;}
.h2_c00479{height:73.784048px;}
.h0_c00479{height:1263.000000px;}
.w0_c00479{width:892.500000px;}
.x0_c00479{left:0.000000px;}
.x2_c00479{left:82.710059px;}
.x1_c00479{left:431.730000px;}
@media print{
.v0_c00479{vertical-align:0.000000pt;}
.v1_c00479{vertical-align:28.481408pt;}
.lsa_c00479{letter-spacing:-0.062240pt;}
.ls6_c00479{letter-spacing:-0.056016pt;}
.lsb_c00479{letter-spacing:-0.049792pt;}
.lse_c00479{letter-spacing:-0.043568pt;}
.lsf_c00479{letter-spacing:-0.037344pt;}
.ls9_c00479{letter-spacing:-0.031120pt;}
.ls8_c00479{letter-spacing:-0.024896pt;}
.ls10_c00479{letter-spacing:-0.018672pt;}
.lsd_c00479{letter-spacing:-0.012448pt;}
.lsc_c00479{letter-spacing:-0.006224pt;}
.ls7_c00479{letter-spacing:0.000000pt;}
.ls0_c00479{letter-spacing:0.006224pt;}
.ls4_c00479{letter-spacing:0.012448pt;}
.ls3_c00479{letter-spacing:0.020694pt;}
.ls1_c00479{letter-spacing:0.024896pt;}
.ls5_c00479{letter-spacing:0.031120pt;}
.ls2_c00479{letter-spacing:0.043568pt;}
.ws0_c00479{word-spacing:-17.346288pt;}
.ws1_c00479{word-spacing:-11.526781pt;}
.ws1e_c00479{word-spacing:-0.018672pt;}
.ws2_c00479{word-spacing:0.000000pt;}
.ws26_c00479{word-spacing:0.018672pt;}
.ws16_c00479{word-spacing:0.329872pt;}
.ws27_c00479{word-spacing:0.336096pt;}
.ws8_c00479{word-spacing:0.367216pt;}
.ws24_c00479{word-spacing:0.970944pt;}
.ws25_c00479{word-spacing:1.300816pt;}
.ws1a_c00479{word-spacing:2.228192pt;}
.ws13_c00479{word-spacing:2.234416pt;}
.ws19_c00479{word-spacing:2.265536pt;}
.ws11_c00479{word-spacing:2.558064pt;}
.ws10_c00479{word-spacing:2.906608pt;}
.ws12_c00479{word-spacing:3.535232pt;}
.ws23_c00479{word-spacing:4.755136pt;}
.ws22_c00479{word-spacing:4.792480pt;}
.ws1c_c00479{word-spacing:5.750976pt;}
.ws1d_c00479{word-spacing:6.404496pt;}
.ws15_c00479{word-spacing:6.728144pt;}
.ws14_c00479{word-spacing:6.740592pt;}
.ws18_c00479{word-spacing:7.325648pt;}
.ws1f_c00479{word-spacing:7.655520pt;}
.wsc_c00479{word-spacing:7.985392pt;}
.wsb_c00479{word-spacing:7.997840pt;}
.wsa_c00479{word-spacing:8.956336pt;}
.ws9_c00479{word-spacing:8.999904pt;}
.ws1b_c00479{word-spacing:9.584960pt;}
.ws3_c00479{word-spacing:9.609856pt;}
.ws5_c00479{word-spacing:9.933504pt;}
.ws6_c00479{word-spacing:10.219808pt;}
.ws7_c00479{word-spacing:10.257152pt;}
.ws21_c00479{word-spacing:11.165856pt;}
.ws20_c00479{word-spacing:11.533072pt;}
.ws4_c00479{word-spacing:13.443840pt;}
.ws17_c00479{word-spacing:14.719760pt;}
.wsd_c00479{word-spacing:15.030960pt;}
.wsf_c00479{word-spacing:30.734112pt;}
.wse_c00479{word-spacing:30.752784pt;}
._1_c00479{margin-left:-1.213680pt;}
._0_c00479{width:0.890032pt;}
.fs1_c00479{font-size:41.388800pt;}
.fs0_c00479{font-size:62.240000pt;}
.y0_c00479{bottom:0.000000pt;}
.y2_c00479{bottom:97.547527pt;}
.y1_c00479{bottom:115.387067pt;}
.y22_c00479{bottom:155.064947pt;}
.y21_c00479{bottom:181.944847pt;}
.y20_c00479{bottom:208.745391pt;}
.y1f_c00479{bottom:235.625291pt;}
.y1e_c00479{bottom:262.425835pt;}
.y1d_c00479{bottom:289.305735pt;}
.y1c_c00479{bottom:316.106279pt;}
.y1b_c00479{bottom:342.986179pt;}
.y1a_c00479{bottom:369.786723pt;}
.y19_c00479{bottom:396.666623pt;}
.y18_c00479{bottom:423.467167pt;}
.y17_c00479{bottom:450.344871pt;}
.y16_c00479{bottom:477.145415pt;}
.y15_c00479{bottom:504.025315pt;}
.y14_c00479{bottom:530.744947pt;}
.y13_c00479{bottom:557.624847pt;}
.y12_c00479{bottom:584.425391pt;}
.y11_c00479{bottom:611.305291pt;}
.y10_c00479{bottom:638.105835pt;}
.yf_c00479{bottom:664.985735pt;}
.ye_c00479{bottom:691.786279pt;}
.yd_c00479{bottom:718.666179pt;}
.yc_c00479{bottom:745.466723pt;}
.yb_c00479{bottom:772.346623pt;}
.ya_c00479{bottom:799.147167pt;}
.y9_c00479{bottom:826.027067pt;}
.y8_c00479{bottom:860.026784pt;}
.y7_c00479{bottom:879.706715pt;}
.y6_c00479{bottom:906.586615pt;}
.y5_c00479{bottom:933.387159pt;}
.y4_c00479{bottom:960.267059pt;}
.y3_c00479{bottom:987.067603pt;}
.h3_c00479{height:37.104412pt;}
.h4_c00479{height:55.645234pt;}
.h1_c00479{height:55.797187pt;}
.h5_c00479{height:65.492150pt;}
.h2_c00479{height:65.585821pt;}
.h0_c00479{height:1122.666667pt;}
.w0_c00479{width:793.333333pt;}
.x0_c00479{left:0.000000pt;}
.x2_c00479{left:73.520052pt;}
.x1_c00479{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8e9b063d06cff95fa5e87cc3.woff2')format("woff");}.ff1_c00480{font-family:ff1_c00480;line-height:1.106934;font-style:normal;font-weight:normal;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_ceb3c8bbf9e4b3b0bc88cf6e.woff2')format("woff");}.ff2_c00480{font-family:ff2_c00480;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00480{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00480{vertical-align:0.000000px;}
.v1_c00480{vertical-align:32.040036px;}
.lsc_c00480{letter-spacing:-0.084024px;}
.ls5_c00480{letter-spacing:-0.063018px;}
.ls9_c00480{letter-spacing:-0.056016px;}
.lsb_c00480{letter-spacing:-0.049014px;}
.lse_c00480{letter-spacing:-0.042012px;}
.lsf_c00480{letter-spacing:-0.035010px;}
.ls7_c00480{letter-spacing:-0.028008px;}
.lsa_c00480{letter-spacing:-0.021006px;}
.lsd_c00480{letter-spacing:-0.014004px;}
.ls8_c00480{letter-spacing:-0.007002px;}
.ls6_c00480{letter-spacing:0.000000px;}
.ls2_c00480{letter-spacing:0.007002px;}
.ls1_c00480{letter-spacing:0.014004px;}
.ls3_c00480{letter-spacing:0.021006px;}
.ls0_c00480{letter-spacing:0.023281px;}
.ls4_c00480{letter-spacing:0.049014px;}
.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:-12.967628px;}
.ws1_c00480{word-spacing:0.000000px;}
.ws12_c00480{word-spacing:0.007002px;}
.ws4_c00480{word-spacing:0.042012px;}
.ws7_c00480{word-spacing:0.070020px;}
.wse_c00480{word-spacing:0.336096px;}
.ws15_c00480{word-spacing:0.371106px;}
.ws1f_c00480{word-spacing:0.378108px;}
.ws6_c00480{word-spacing:0.392112px;}
.wsf_c00480{word-spacing:1.792512px;}
.ws8_c00480{word-spacing:2.520720px;}
.ws9_c00480{word-spacing:2.562732px;}
.ws19_c00480{word-spacing:4.292226px;}
.ws1a_c00480{word-spacing:4.362246px;}
.wsa_c00480{word-spacing:7.534152px;}
.ws1c_c00480{word-spacing:7.933266px;}
.ws18_c00480{word-spacing:7.940268px;}
.ws3_c00480{word-spacing:8.276364px;}
.ws2_c00480{word-spacing:8.297370px;}
.ws1e_c00480{word-spacing:8.626464px;}
.ws1d_c00480{word-spacing:10.818090px;}
.wsb_c00480{word-spacing:11.161188px;}
.ws1b_c00480{word-spacing:14.060016px;}
.ws13_c00480{word-spacing:15.866532px;}
.ws17_c00480{word-spacing:16.902828px;}
.ws5_c00480{word-spacing:16.923834px;}
.ws16_c00480{word-spacing:19.780650px;}
.ws10_c00480{word-spacing:23.337666px;}
.ws11_c00480{word-spacing:23.792796px;}
.ws14_c00480{word-spacing:28.043010px;}
.wsd_c00480{word-spacing:35.605170px;}
.wsc_c00480{word-spacing:35.619174px;}
._1_c00480{margin-left:-1.141326px;}
._0_c00480{width:1.162332px;}
._2_c00480{width:24.149898px;}
.fc0_c00480{color:rgb(0,0,0);}
.fs1_c00480{font-size:46.562400px;}
.fs0_c00480{font-size:70.020000px;}
.y0_c00480{bottom:0.000000px;}
.y2_c00480{bottom:109.740968px;}
.y1_c00480{bottom:129.810450px;}
.y1f_c00480{bottom:228.539790px;}
.y1e_c00480{bottom:258.779677px;}
.y1d_c00480{bottom:288.930290px;}
.y1c_c00480{bottom:319.170177px;}
.y1b_c00480{bottom:349.320789px;}
.y1a_c00480{bottom:379.560676px;}
.y19_c00480{bottom:409.711288px;}
.y18_c00480{bottom:458.937741px;}
.y17_c00480{bottom:489.088353px;}
.y16_c00480{bottom:519.328240px;}
.y15_c00480{bottom:549.478852px;}
.y14_c00480{bottom:579.629464px;}
.y13_c00480{bottom:609.780076px;}
.y12_c00480{bottom:640.019964px;}
.y11_c00480{bottom:670.170576px;}
.y10_c00480{bottom:700.410463px;}
.yf_c00480{bottom:730.561076px;}
.ye_c00480{bottom:778.258677px;}
.yd_c00480{bottom:808.498565px;}
.yc_c00480{bottom:838.649177px;}
.yb_c00480{bottom:868.889064px;}
.ya_c00480{bottom:899.039676px;}
.y9_c00480{bottom:929.279563px;}
.y8_c00480{bottom:959.519451px;}
.y7_c00480{bottom:989.670063px;}
.y6_c00480{bottom:1019.909951px;}
.y5_c00480{bottom:1050.060563px;}
.y4_c00480{bottom:1080.300441px;}
.y3_c00480{bottom:1110.451053px;}
.h2_c00480{height:62.600889px;}
.h1_c00480{height:62.771836px;}
.h3_c00480{height:73.668822px;}
.h5_c00480{height:73.680222px;}
.h4_c00480{height:74.036478px;}
.h0_c00480{height:1263.000000px;}
.w0_c00480{width:892.500000px;}
.x0_c00480{left:0.000000px;}
.x2_c00480{left:82.710059px;}
.x1_c00480{left:431.730000px;}
@media print{
.v0_c00480{vertical-align:0.000000pt;}
.v1_c00480{vertical-align:28.480032pt;}
.lsc_c00480{letter-spacing:-0.074688pt;}
.ls5_c00480{letter-spacing:-0.056016pt;}
.ls9_c00480{letter-spacing:-0.049792pt;}
.lsb_c00480{letter-spacing:-0.043568pt;}
.lse_c00480{letter-spacing:-0.037344pt;}
.lsf_c00480{letter-spacing:-0.031120pt;}
.ls7_c00480{letter-spacing:-0.024896pt;}
.lsa_c00480{letter-spacing:-0.018672pt;}
.lsd_c00480{letter-spacing:-0.012448pt;}
.ls8_c00480{letter-spacing:-0.006224pt;}
.ls6_c00480{letter-spacing:0.000000pt;}
.ls2_c00480{letter-spacing:0.006224pt;}
.ls1_c00480{letter-spacing:0.012448pt;}
.ls3_c00480{letter-spacing:0.018672pt;}
.ls0_c00480{letter-spacing:0.020694pt;}
.ls4_c00480{letter-spacing:0.043568pt;}
.ws0_c00480{word-spacing:-11.526781pt;}
.ws1_c00480{word-spacing:0.000000pt;}
.ws12_c00480{word-spacing:0.006224pt;}
.ws4_c00480{word-spacing:0.037344pt;}
.ws7_c00480{word-spacing:0.062240pt;}
.wse_c00480{word-spacing:0.298752pt;}
.ws15_c00480{word-spacing:0.329872pt;}
.ws1f_c00480{word-spacing:0.336096pt;}
.ws6_c00480{word-spacing:0.348544pt;}
.wsf_c00480{word-spacing:1.593344pt;}
.ws8_c00480{word-spacing:2.240640pt;}
.ws9_c00480{word-spacing:2.277984pt;}
.ws19_c00480{word-spacing:3.815312pt;}
.ws1a_c00480{word-spacing:3.877552pt;}
.wsa_c00480{word-spacing:6.697024pt;}
.ws1c_c00480{word-spacing:7.051792pt;}
.ws18_c00480{word-spacing:7.058016pt;}
.ws3_c00480{word-spacing:7.356768pt;}
.ws2_c00480{word-spacing:7.375440pt;}
.ws1e_c00480{word-spacing:7.667968pt;}
.ws1d_c00480{word-spacing:9.616080pt;}
.wsb_c00480{word-spacing:9.921056pt;}
.ws1b_c00480{word-spacing:12.497792pt;}
.ws13_c00480{word-spacing:14.103584pt;}
.ws17_c00480{word-spacing:15.024736pt;}
.ws5_c00480{word-spacing:15.043408pt;}
.ws16_c00480{word-spacing:17.582800pt;}
.ws10_c00480{word-spacing:20.744592pt;}
.ws11_c00480{word-spacing:21.149152pt;}
.ws14_c00480{word-spacing:24.927120pt;}
.wsd_c00480{word-spacing:31.649040pt;}
.wsc_c00480{word-spacing:31.661488pt;}
._1_c00480{margin-left:-1.014512pt;}
._0_c00480{width:1.033184pt;}
._2_c00480{width:21.466576pt;}
.fs1_c00480{font-size:41.388800pt;}
.fs0_c00480{font-size:62.240000pt;}
.y0_c00480{bottom:0.000000pt;}
.y2_c00480{bottom:97.547527pt;}
.y1_c00480{bottom:115.387067pt;}
.y1f_c00480{bottom:203.146480pt;}
.y1e_c00480{bottom:230.026380pt;}
.y1d_c00480{bottom:256.826924pt;}
.y1c_c00480{bottom:283.706824pt;}
.y1b_c00480{bottom:310.507368pt;}
.y1a_c00480{bottom:337.387268pt;}
.y19_c00480{bottom:364.187812pt;}
.y18_c00480{bottom:407.944659pt;}
.y17_c00480{bottom:434.745203pt;}
.y16_c00480{bottom:461.625103pt;}
.y15_c00480{bottom:488.425647pt;}
.y14_c00480{bottom:515.226191pt;}
.y13_c00480{bottom:542.026735pt;}
.y12_c00480{bottom:568.906635pt;}
.y11_c00480{bottom:595.707179pt;}
.y10_c00480{bottom:622.587079pt;}
.yf_c00480{bottom:649.387623pt;}
.ye_c00480{bottom:691.785491pt;}
.yd_c00480{bottom:718.665391pt;}
.yc_c00480{bottom:745.465935pt;}
.yb_c00480{bottom:772.345835pt;}
.ya_c00480{bottom:799.146379pt;}
.y9_c00480{bottom:826.026279pt;}
.y8_c00480{bottom:852.906179pt;}
.y7_c00480{bottom:879.706723pt;}
.y6_c00480{bottom:906.586623pt;}
.y5_c00480{bottom:933.387167pt;}
.y4_c00480{bottom:960.267059pt;}
.y3_c00480{bottom:987.067603pt;}
.h2_c00480{height:55.645234pt;}
.h1_c00480{height:55.797187pt;}
.h3_c00480{height:65.483398pt;}
.h5_c00480{height:65.493531pt;}
.h4_c00480{height:65.810203pt;}
.h0_c00480{height:1122.666667pt;}
.w0_c00480{width:793.333333pt;}
.x0_c00480{left:0.000000pt;}
.x2_c00480{left:73.520052pt;}
.x1_c00480{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_24d90c1534fbc05bf32777b1.woff2')format("woff");}.ff1_c00481{font-family:ff1_c00481;line-height:1.106934;font-style:normal;font-weight:normal;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_55c8b4011f511d58cae48f7e.woff2')format("woff");}.ff2_c00481{font-family:ff2_c00481;line-height:1.104492;font-style:normal;font-weight:normal;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_e3d415b850b8a67b6599f2d4.woff2')format("woff");}.ff3_c00481{font-family:ff3_c00481;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00481{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00481{vertical-align:0.000000px;}
.v1_c00481{vertical-align:32.040036px;}
.lse_c00481{letter-spacing:-0.182331px;}
.lsf_c00481{letter-spacing:-0.151943px;}
.ls5_c00481{letter-spacing:-0.063018px;}
.lsb_c00481{letter-spacing:-0.056016px;}
.ls8_c00481{letter-spacing:-0.042012px;}
.ls7_c00481{letter-spacing:-0.035010px;}
.lsc_c00481{letter-spacing:-0.028008px;}
.lsa_c00481{letter-spacing:-0.021006px;}
.ls9_c00481{letter-spacing:-0.014004px;}
.lsd_c00481{letter-spacing:-0.007002px;}
.ls6_c00481{letter-spacing:0.000000px;}
.ls2_c00481{letter-spacing:0.007002px;}
.ls3_c00481{letter-spacing:0.014004px;}
.ls1_c00481{letter-spacing:0.021006px;}
.ls0_c00481{letter-spacing:0.023281px;}
.ls4_c00481{letter-spacing:0.028008px;}
.sc__c00481{text-shadow:none;}
.sc0_c00481{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00481{-webkit-text-stroke:0px transparent;}
.sc0_c00481{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00481{word-spacing:-19.479564px;}
.ws0_c00481{word-spacing:-12.967628px;}
.ws16_c00481{word-spacing:-0.045583px;}
.ws2_c00481{word-spacing:0.000000px;}
.wsa_c00481{word-spacing:0.021006px;}
.ws7_c00481{word-spacing:0.042012px;}
.ws5_c00481{word-spacing:0.357102px;}
.wsc_c00481{word-spacing:0.371106px;}
.ws13_c00481{word-spacing:0.378108px;}
.ws1e_c00481{word-spacing:0.385110px;}
.ws17_c00481{word-spacing:0.463426px;}
.ws12_c00481{word-spacing:1.043298px;}
.wsf_c00481{word-spacing:1.785510px;}
.wse_c00481{word-spacing:3.227922px;}
.ws3_c00481{word-spacing:4.341240px;}
.ws4_c00481{word-spacing:4.348242px;}
.ws14_c00481{word-spacing:5.006430px;}
.ws15_c00481{word-spacing:5.034438px;}
.ws1a_c00481{word-spacing:5.398542px;}
.ws11_c00481{word-spacing:5.405544px;}
.ws19_c00481{word-spacing:8.633466px;}
.ws10_c00481{word-spacing:10.825092px;}
.ws1b_c00481{word-spacing:14.039010px;}
.ws18_c00481{word-spacing:15.502428px;}
.ws1d_c00481{word-spacing:15.796512px;}
.ws1c_c00481{word-spacing:15.831522px;}
.ws6_c00481{word-spacing:18.730350px;}
.wsd_c00481{word-spacing:32.041152px;}
.ws8_c00481{word-spacing:45.688050px;}
.ws9_c00481{word-spacing:45.702054px;}
.wsb_c00481{word-spacing:72.015570px;}
._3_c00481{margin-left:-72.092592px;}
._2_c00481{margin-left:-45.274932px;}
._1_c00481{margin-left:-1.162332px;}
._0_c00481{width:1.232352px;}
.fc0_c00481{color:rgb(0,0,0);}
.fs1_c00481{font-size:46.562400px;}
.fs0_c00481{font-size:70.020000px;}
.fs2_c00481{font-size:75.971400px;}
.y0_c00481{bottom:0.000000px;}
.y2_c00481{bottom:109.740968px;}
.y1_c00481{bottom:129.810450px;}
.y1d_c00481{bottom:221.429564px;}
.y1c_c00481{bottom:251.669451px;}
.y1b_c00481{bottom:281.820063px;}
.y1a_c00481{bottom:312.059951px;}
.y19_c00481{bottom:342.210563px;}
.y18_c00481{bottom:372.450450px;}
.y17_c00481{bottom:411.870600px;}
.y16_c00481{bottom:460.918452px;}
.y15_c00481{bottom:491.158339px;}
.y14_c00481{bottom:521.308951px;}
.y13_c00481{bottom:551.548839px;}
.y12_c00481{bottom:581.699451px;}
.y11_c00481{bottom:611.939338px;}
.y10_c00481{bottom:642.089950px;}
.yf_c00481{bottom:672.329838px;}
.ye_c00481{bottom:702.479302px;}
.yd_c00481{bottom:732.719190px;}
.yc_c00481{bottom:762.869802px;}
.yb_c00481{bottom:793.020414px;}
.ya_c00481{bottom:842.160676px;}
.y9_c00481{bottom:872.400564px;}
.y8_c00481{bottom:921.540527px;}
.y7_c00481{bottom:951.691139px;}
.y6_c00481{bottom:1000.920527px;}
.y5_c00481{bottom:1031.071139px;}
.y4_c00481{bottom:1080.300441px;}
.y3_c00481{bottom:1110.451053px;}
.h2_c00481{height:62.600889px;}
.h1_c00481{height:62.771836px;}
.h8_c00481{height:68.589413px;}
.h4_c00481{height:73.668480px;}
.h3_c00481{height:73.668822px;}
.h6_c00481{height:74.027880px;}
.h5_c00481{height:74.028480px;}
.h7_c00481{height:74.033376px;}
.h0_c00481{height:1263.000000px;}
.w0_c00481{width:892.500000px;}
.x0_c00481{left:0.000000px;}
.x2_c00481{left:82.710059px;}
.x1_c00481{left:431.730000px;}
@media print{
.v0_c00481{vertical-align:0.000000pt;}
.v1_c00481{vertical-align:28.480032pt;}
.lse_c00481{letter-spacing:-0.162072pt;}
.lsf_c00481{letter-spacing:-0.135060pt;}
.ls5_c00481{letter-spacing:-0.056016pt;}
.lsb_c00481{letter-spacing:-0.049792pt;}
.ls8_c00481{letter-spacing:-0.037344pt;}
.ls7_c00481{letter-spacing:-0.031120pt;}
.lsc_c00481{letter-spacing:-0.024896pt;}
.lsa_c00481{letter-spacing:-0.018672pt;}
.ls9_c00481{letter-spacing:-0.012448pt;}
.lsd_c00481{letter-spacing:-0.006224pt;}
.ls6_c00481{letter-spacing:0.000000pt;}
.ls2_c00481{letter-spacing:0.006224pt;}
.ls3_c00481{letter-spacing:0.012448pt;}
.ls1_c00481{letter-spacing:0.018672pt;}
.ls0_c00481{letter-spacing:0.020694pt;}
.ls4_c00481{letter-spacing:0.024896pt;}
.ws1_c00481{word-spacing:-17.315168pt;}
.ws0_c00481{word-spacing:-11.526781pt;}
.ws16_c00481{word-spacing:-0.040518pt;}
.ws2_c00481{word-spacing:0.000000pt;}
.wsa_c00481{word-spacing:0.018672pt;}
.ws7_c00481{word-spacing:0.037344pt;}
.ws5_c00481{word-spacing:0.317424pt;}
.wsc_c00481{word-spacing:0.329872pt;}
.ws13_c00481{word-spacing:0.336096pt;}
.ws1e_c00481{word-spacing:0.342320pt;}
.ws17_c00481{word-spacing:0.411934pt;}
.ws12_c00481{word-spacing:0.927376pt;}
.wsf_c00481{word-spacing:1.587120pt;}
.wse_c00481{word-spacing:2.869264pt;}
.ws3_c00481{word-spacing:3.858880pt;}
.ws4_c00481{word-spacing:3.865104pt;}
.ws14_c00481{word-spacing:4.450160pt;}
.ws15_c00481{word-spacing:4.475056pt;}
.ws1a_c00481{word-spacing:4.798704pt;}
.ws11_c00481{word-spacing:4.804928pt;}
.ws19_c00481{word-spacing:7.674192pt;}
.ws10_c00481{word-spacing:9.622304pt;}
.ws1b_c00481{word-spacing:12.479120pt;}
.ws18_c00481{word-spacing:13.779936pt;}
.ws1d_c00481{word-spacing:14.041344pt;}
.ws1c_c00481{word-spacing:14.072464pt;}
.ws6_c00481{word-spacing:16.649200pt;}
.wsd_c00481{word-spacing:28.481024pt;}
.ws8_c00481{word-spacing:40.611600pt;}
.ws9_c00481{word-spacing:40.624048pt;}
.wsb_c00481{word-spacing:64.013840pt;}
._3_c00481{margin-left:-64.082304pt;}
._2_c00481{margin-left:-40.244384pt;}
._1_c00481{margin-left:-1.033184pt;}
._0_c00481{width:1.095424pt;}
.fs1_c00481{font-size:41.388800pt;}
.fs0_c00481{font-size:62.240000pt;}
.fs2_c00481{font-size:67.530133pt;}
.y0_c00481{bottom:0.000000pt;}
.y2_c00481{bottom:97.547527pt;}
.y1_c00481{bottom:115.387067pt;}
.y1d_c00481{bottom:196.826279pt;}
.y1c_c00481{bottom:223.706179pt;}
.y1b_c00481{bottom:250.506723pt;}
.y1a_c00481{bottom:277.386623pt;}
.y19_c00481{bottom:304.187167pt;}
.y18_c00481{bottom:331.067067pt;}
.y17_c00481{bottom:366.107200pt;}
.y16_c00481{bottom:409.705291pt;}
.y15_c00481{bottom:436.585191pt;}
.y14_c00481{bottom:463.385735pt;}
.y13_c00481{bottom:490.265635pt;}
.y12_c00481{bottom:517.066179pt;}
.y11_c00481{bottom:543.946079pt;}
.y10_c00481{bottom:570.746623pt;}
.yf_c00481{bottom:597.626523pt;}
.ye_c00481{bottom:624.426047pt;}
.yd_c00481{bottom:651.305947pt;}
.yc_c00481{bottom:678.106491pt;}
.yb_c00481{bottom:704.907035pt;}
.ya_c00481{bottom:748.587268pt;}
.y9_c00481{bottom:775.467168pt;}
.y8_c00481{bottom:819.147135pt;}
.y7_c00481{bottom:845.947679pt;}
.y6_c00481{bottom:889.707135pt;}
.y5_c00481{bottom:916.507679pt;}
.y4_c00481{bottom:960.267059pt;}
.y3_c00481{bottom:987.067603pt;}
.h2_c00481{height:55.645234pt;}
.h1_c00481{height:55.797187pt;}
.h8_c00481{height:60.968367pt;}
.h4_c00481{height:65.483094pt;}
.h3_c00481{height:65.483398pt;}
.h6_c00481{height:65.802560pt;}
.h5_c00481{height:65.803094pt;}
.h7_c00481{height:65.807446pt;}
.h0_c00481{height:1122.666667pt;}
.w0_c00481{width:793.333333pt;}
.x0_c00481{left:0.000000pt;}
.x2_c00481{left:73.520052pt;}
.x1_c00481{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a73e9805274653d0757d636e.woff2')format("woff");}.ff1_c00482{font-family:ff1_c00482;line-height:1.106934;font-style:normal;font-weight:normal;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_197d6d0b987102613416fe25.woff2')format("woff");}.ff2_c00482{font-family:ff2_c00482;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00482{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00482{vertical-align:0.000000px;}
.v1_c00482{vertical-align:32.043168px;}
.ls3_c00482{letter-spacing:-0.063018px;}
.ls8_c00482{letter-spacing:-0.056016px;}
.lsc_c00482{letter-spacing:-0.049014px;}
.lsa_c00482{letter-spacing:-0.042012px;}
.ls7_c00482{letter-spacing:-0.035010px;}
.ls6_c00482{letter-spacing:-0.028008px;}
.ls9_c00482{letter-spacing:-0.021006px;}
.lsb_c00482{letter-spacing:-0.014004px;}
.ls5_c00482{letter-spacing:-0.007002px;}
.ls4_c00482{letter-spacing:0.000000px;}
.ls0_c00482{letter-spacing:0.007002px;}
.ls2_c00482{letter-spacing:0.023281px;}
.ls1_c00482{letter-spacing:0.028008px;}
.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:-19.409544px;}
.ws1_c00482{word-spacing:-12.967628px;}
.ws22_c00482{word-spacing:-0.315090px;}
.ws2_c00482{word-spacing:0.000000px;}
.ws13_c00482{word-spacing:0.007002px;}
.ws5_c00482{word-spacing:0.021006px;}
.ws27_c00482{word-spacing:2.149614px;}
.ws1f_c00482{word-spacing:2.499714px;}
.ws20_c00482{word-spacing:2.520720px;}
.wsd_c00482{word-spacing:3.269934px;}
.ws1b_c00482{word-spacing:3.606030px;}
.ws1a_c00482{word-spacing:3.620034px;}
.wsc_c00482{word-spacing:4.313232px;}
.wsb_c00482{word-spacing:4.348242px;}
.ws21_c00482{word-spacing:4.677336px;}
.ws11_c00482{word-spacing:5.034438px;}
.ws19_c00482{word-spacing:5.048442px;}
.ws12_c00482{word-spacing:5.083452px;}
.ws15_c00482{word-spacing:6.133752px;}
.ws14_c00482{word-spacing:6.154758px;}
.ws26_c00482{word-spacing:6.462846px;}
.ws25_c00482{word-spacing:6.504858px;}
.ws1d_c00482{word-spacing:8.640468px;}
.ws1c_c00482{word-spacing:8.661474px;}
.ws23_c00482{word-spacing:9.011574px;}
.ws10_c00482{word-spacing:9.711774px;}
.ws8_c00482{word-spacing:10.089882px;}
.wsf_c00482{word-spacing:10.776078px;}
.ws6_c00482{word-spacing:10.783080px;}
.ws3_c00482{word-spacing:10.790082px;}
.wse_c00482{word-spacing:10.818090px;}
.ws7_c00482{word-spacing:10.839096px;}
.ws4_c00482{word-spacing:11.175192px;}
.ws18_c00482{word-spacing:11.896398px;}
.wsa_c00482{word-spacing:13.296798px;}
.ws24_c00482{word-spacing:14.032008px;}
.ws1e_c00482{word-spacing:16.545726px;}
.ws9_c00482{word-spacing:18.737352px;}
.ws16_c00482{word-spacing:25.879392px;}
.ws17_c00482{word-spacing:26.656614px;}
._0_c00482{margin-left:-10.797084px;}
._2_c00482{margin-left:-1.134324px;}
._1_c00482{width:1.036296px;}
.fc0_c00482{color:rgb(0,0,0);}
.fs1_c00482{font-size:46.562400px;}
.fs0_c00482{font-size:70.020000px;}
.y0_c00482{bottom:0.000000px;}
.y2_c00482{bottom:109.740968px;}
.y1_c00482{bottom:129.810450px;}
.y20_c00482{bottom:177.957804px;}
.y1f_c00482{bottom:208.197692px;}
.y1e_c00482{bottom:238.348303px;}
.y1d_c00482{bottom:268.588191px;}
.y1c_c00482{bottom:298.738803px;}
.y1b_c00482{bottom:328.978690px;}
.y1a_c00482{bottom:359.129302px;}
.y19_c00482{bottom:389.369190px;}
.y18_c00482{bottom:419.519802px;}
.y17_c00482{bottom:449.670414px;}
.y16_c00482{bottom:498.808951px;}
.y15_c00482{bottom:529.048839px;}
.y14_c00482{bottom:559.199451px;}
.y13_c00482{bottom:589.439338px;}
.y12_c00482{bottom:619.589950px;}
.y11_c00482{bottom:649.829838px;}
.y10_c00482{bottom:679.980450px;}
.yf_c00482{bottom:729.209658px;}
.ye_c00482{bottom:759.360270px;}
.yd_c00482{bottom:789.600158px;}
.yc_c00482{bottom:819.750770px;}
.yb_c00482{bottom:849.990657px;}
.ya_c00482{bottom:880.141269px;}
.y9_c00482{bottom:910.381157px;}
.y8_c00482{bottom:940.440743px;}
.y7_c00482{bottom:970.680630px;}
.y6_c00482{bottom:1000.920517px;}
.y5_c00482{bottom:1031.071130px;}
.y4_c00482{bottom:1080.300441px;}
.y3_c00482{bottom:1110.451053px;}
.h1_c00482{height:62.771836px;}
.h2_c00482{height:73.785632px;}
.h3_c00482{height:74.148458px;}
.h0_c00482{height:1263.000000px;}
.w0_c00482{width:892.500000px;}
.x0_c00482{left:0.000000px;}
.x2_c00482{left:82.710059px;}
.x1_c00482{left:431.730000px;}
@media print{
.v0_c00482{vertical-align:0.000000pt;}
.v1_c00482{vertical-align:28.482816pt;}
.ls3_c00482{letter-spacing:-0.056016pt;}
.ls8_c00482{letter-spacing:-0.049792pt;}
.lsc_c00482{letter-spacing:-0.043568pt;}
.lsa_c00482{letter-spacing:-0.037344pt;}
.ls7_c00482{letter-spacing:-0.031120pt;}
.ls6_c00482{letter-spacing:-0.024896pt;}
.ls9_c00482{letter-spacing:-0.018672pt;}
.lsb_c00482{letter-spacing:-0.012448pt;}
.ls5_c00482{letter-spacing:-0.006224pt;}
.ls4_c00482{letter-spacing:0.000000pt;}
.ls0_c00482{letter-spacing:0.006224pt;}
.ls2_c00482{letter-spacing:0.020694pt;}
.ls1_c00482{letter-spacing:0.024896pt;}
.ws0_c00482{word-spacing:-17.252928pt;}
.ws1_c00482{word-spacing:-11.526781pt;}
.ws22_c00482{word-spacing:-0.280080pt;}
.ws2_c00482{word-spacing:0.000000pt;}
.ws13_c00482{word-spacing:0.006224pt;}
.ws5_c00482{word-spacing:0.018672pt;}
.ws27_c00482{word-spacing:1.910768pt;}
.ws1f_c00482{word-spacing:2.221968pt;}
.ws20_c00482{word-spacing:2.240640pt;}
.wsd_c00482{word-spacing:2.906608pt;}
.ws1b_c00482{word-spacing:3.205360pt;}
.ws1a_c00482{word-spacing:3.217808pt;}
.wsc_c00482{word-spacing:3.833984pt;}
.wsb_c00482{word-spacing:3.865104pt;}
.ws21_c00482{word-spacing:4.157632pt;}
.ws11_c00482{word-spacing:4.475056pt;}
.ws19_c00482{word-spacing:4.487504pt;}
.ws12_c00482{word-spacing:4.518624pt;}
.ws15_c00482{word-spacing:5.452224pt;}
.ws14_c00482{word-spacing:5.470896pt;}
.ws26_c00482{word-spacing:5.744752pt;}
.ws25_c00482{word-spacing:5.782096pt;}
.ws1d_c00482{word-spacing:7.680416pt;}
.ws1c_c00482{word-spacing:7.699088pt;}
.ws23_c00482{word-spacing:8.010288pt;}
.ws10_c00482{word-spacing:8.632688pt;}
.ws8_c00482{word-spacing:8.968784pt;}
.wsf_c00482{word-spacing:9.578736pt;}
.ws6_c00482{word-spacing:9.584960pt;}
.ws3_c00482{word-spacing:9.591184pt;}
.wse_c00482{word-spacing:9.616080pt;}
.ws7_c00482{word-spacing:9.634752pt;}
.ws4_c00482{word-spacing:9.933504pt;}
.ws18_c00482{word-spacing:10.574576pt;}
.wsa_c00482{word-spacing:11.819376pt;}
.ws24_c00482{word-spacing:12.472896pt;}
.ws1e_c00482{word-spacing:14.707312pt;}
.ws9_c00482{word-spacing:16.655424pt;}
.ws16_c00482{word-spacing:23.003904pt;}
.ws17_c00482{word-spacing:23.694768pt;}
._0_c00482{margin-left:-9.597408pt;}
._2_c00482{margin-left:-1.008288pt;}
._1_c00482{width:0.921152pt;}
.fs1_c00482{font-size:41.388800pt;}
.fs0_c00482{font-size:62.240000pt;}
.y0_c00482{bottom:0.000000pt;}
.y2_c00482{bottom:97.547527pt;}
.y1_c00482{bottom:115.387067pt;}
.y20_c00482{bottom:158.184715pt;}
.y1f_c00482{bottom:185.064615pt;}
.y1e_c00482{bottom:211.865159pt;}
.y1d_c00482{bottom:238.745059pt;}
.y1c_c00482{bottom:265.545603pt;}
.y1b_c00482{bottom:292.425503pt;}
.y1a_c00482{bottom:319.226047pt;}
.y19_c00482{bottom:346.105947pt;}
.y18_c00482{bottom:372.906491pt;}
.y17_c00482{bottom:399.707035pt;}
.y16_c00482{bottom:443.385735pt;}
.y15_c00482{bottom:470.265635pt;}
.y14_c00482{bottom:497.066179pt;}
.y13_c00482{bottom:523.946079pt;}
.y12_c00482{bottom:550.746623pt;}
.y11_c00482{bottom:577.626523pt;}
.y10_c00482{bottom:604.427067pt;}
.yf_c00482{bottom:648.186363pt;}
.ye_c00482{bottom:674.986907pt;}
.yd_c00482{bottom:701.866807pt;}
.yc_c00482{bottom:728.667351pt;}
.yb_c00482{bottom:755.547251pt;}
.ya_c00482{bottom:782.347795pt;}
.y9_c00482{bottom:809.227695pt;}
.y8_c00482{bottom:835.947327pt;}
.y7_c00482{bottom:862.827227pt;}
.y6_c00482{bottom:889.707127pt;}
.y5_c00482{bottom:916.507671pt;}
.y4_c00482{bottom:960.267059pt;}
.y3_c00482{bottom:987.067603pt;}
.h1_c00482{height:55.797187pt;}
.h2_c00482{height:65.587228pt;}
.h3_c00482{height:65.909740pt;}
.h0_c00482{height:1122.666667pt;}
.w0_c00482{width:793.333333pt;}
.x0_c00482{left:0.000000pt;}
.x2_c00482{left:73.520052pt;}
.x1_c00482{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5d75f0e3cc3e593094730f36.woff2')format("woff");}.ff1_c00483{font-family:ff1_c00483;line-height:1.106934;font-style:normal;font-weight:normal;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_135b0887d5f4b39ddc63fc36.woff2')format("woff");}.ff2_c00483{font-family:ff2_c00483;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00483{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00483{vertical-align:0.000000px;}
.v1_c00483{vertical-align:32.044032px;}
.ls5_c00483{letter-spacing:-0.063018px;}
.ls8_c00483{letter-spacing:-0.049014px;}
.lsc_c00483{letter-spacing:-0.042012px;}
.lse_c00483{letter-spacing:-0.035010px;}
.lsd_c00483{letter-spacing:-0.028008px;}
.lsa_c00483{letter-spacing:-0.021006px;}
.ls7_c00483{letter-spacing:-0.014004px;}
.lsf_c00483{letter-spacing:-0.007002px;}
.ls6_c00483{letter-spacing:0.000000px;}
.ls0_c00483{letter-spacing:0.007002px;}
.ls3_c00483{letter-spacing:0.014004px;}
.ls1_c00483{letter-spacing:0.023281px;}
.ls4_c00483{letter-spacing:0.042012px;}
.ls9_c00483{letter-spacing:0.133038px;}
.lsb_c00483{letter-spacing:0.343098px;}
.ls2_c00483{letter-spacing:0.448128px;}
.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:-12.967628px;}
.ws28_c00483{word-spacing:-0.378108px;}
.ws24_c00483{word-spacing:-0.056016px;}
.ws1_c00483{word-spacing:0.000000px;}
.ws15_c00483{word-spacing:0.021006px;}
.ws10_c00483{word-spacing:0.035010px;}
.ws22_c00483{word-spacing:0.707202px;}
.ws18_c00483{word-spacing:0.721206px;}
.ws8_c00483{word-spacing:2.527722px;}
.ws9_c00483{word-spacing:2.548728px;}
.ws19_c00483{word-spacing:2.849814px;}
.ws1a_c00483{word-spacing:2.870820px;}
.ws2_c00483{word-spacing:2.877822px;}
.ws13_c00483{word-spacing:5.020434px;}
.ws14_c00483{word-spacing:5.055444px;}
.ws17_c00483{word-spacing:5.398542px;}
.ws16_c00483{word-spacing:5.405544px;}
.wse_c00483{word-spacing:5.741640px;}
.ws26_c00483{word-spacing:5.783652px;}
.wsf_c00483{word-spacing:5.790654px;}
.ws7_c00483{word-spacing:6.098742px;}
.ws6_c00483{word-spacing:6.105744px;}
.ws3_c00483{word-spacing:6.154758px;}
.ws11_c00483{word-spacing:6.840954px;}
.ws23_c00483{word-spacing:6.868962px;}
.wsd_c00483{word-spacing:9.620748px;}
.wsc_c00483{word-spacing:10.082880px;}
.ws27_c00483{word-spacing:10.411974px;}
.wsa_c00483{word-spacing:10.425978px;}
.wsb_c00483{word-spacing:10.439290px;}
.ws1f_c00483{word-spacing:11.154186px;}
.ws20_c00483{word-spacing:12.260502px;}
.ws21_c00483{word-spacing:12.274506px;}
.ws1c_c00483{word-spacing:12.960702px;}
.ws1b_c00483{word-spacing:12.974706px;}
.ws25_c00483{word-spacing:16.923834px;}
.ws12_c00483{word-spacing:24.135894px;}
.ws1d_c00483{word-spacing:38.539008px;}
.ws1e_c00483{word-spacing:38.826090px;}
.ws4_c00483{word-spacing:39.225204px;}
.ws5_c00483{word-spacing:39.246210px;}
._2_c00483{margin-left:-1.176336px;}
._0_c00483{width:1.309374px;}
._1_c00483{width:5.909688px;}
.fc0_c00483{color:rgb(0,0,0);}
.fs1_c00483{font-size:46.562400px;}
.fs0_c00483{font-size:70.020000px;}
.y0_c00483{bottom:0.000000px;}
.y2_c00483{bottom:109.740968px;}
.y1_c00483{bottom:129.810450px;}
.y22_c00483{bottom:174.448951px;}
.y21_c00483{bottom:204.688839px;}
.y20_c00483{bottom:234.839451px;}
.y1f_c00483{bottom:265.079339px;}
.y1e_c00483{bottom:295.229951px;}
.y1d_c00483{bottom:325.469838px;}
.y1c_c00483{bottom:355.618951px;}
.y1b_c00483{bottom:385.858839px;}
.y1a_c00483{bottom:416.009451px;}
.y19_c00483{bottom:446.249338px;}
.y18_c00483{bottom:476.399950px;}
.y17_c00483{bottom:506.639838px;}
.y16_c00483{bottom:536.788629px;}
.y15_c00483{bottom:567.028516px;}
.y14_c00483{bottom:597.088102px;}
.y13_c00483{bottom:627.327990px;}
.y12_c00483{bottom:657.478602px;}
.y11_c00483{bottom:687.718489px;}
.y10_c00483{bottom:717.869101px;}
.yf_c00483{bottom:748.108989px;}
.ye_c00483{bottom:778.259601px;}
.yd_c00483{bottom:808.499488px;}
.yc_c00483{bottom:838.650100px;}
.yb_c00483{bottom:868.889988px;}
.ya_c00483{bottom:899.040675px;}
.y9_c00483{bottom:929.280563px;}
.y8_c00483{bottom:959.519442px;}
.y7_c00483{bottom:989.670054px;}
.y6_c00483{bottom:1019.909942px;}
.y5_c00483{bottom:1050.060553px;}
.y4_c00483{bottom:1080.300441px;}
.y3_c00483{bottom:1110.451053px;}
.h2_c00483{height:62.600889px;}
.h1_c00483{height:62.771836px;}
.h3_c00483{height:73.786496px;}
.h4_c00483{height:74.027886px;}
.h6_c00483{height:74.034780px;}
.h5_c00483{height:74.149748px;}
.h0_c00483{height:1263.000000px;}
.w0_c00483{width:892.500000px;}
.x0_c00483{left:0.000000px;}
.x2_c00483{left:82.710059px;}
.x1_c00483{left:431.730000px;}
@media print{
.v0_c00483{vertical-align:0.000000pt;}
.v1_c00483{vertical-align:28.483584pt;}
.ls5_c00483{letter-spacing:-0.056016pt;}
.ls8_c00483{letter-spacing:-0.043568pt;}
.lsc_c00483{letter-spacing:-0.037344pt;}
.lse_c00483{letter-spacing:-0.031120pt;}
.lsd_c00483{letter-spacing:-0.024896pt;}
.lsa_c00483{letter-spacing:-0.018672pt;}
.ls7_c00483{letter-spacing:-0.012448pt;}
.lsf_c00483{letter-spacing:-0.006224pt;}
.ls6_c00483{letter-spacing:0.000000pt;}
.ls0_c00483{letter-spacing:0.006224pt;}
.ls3_c00483{letter-spacing:0.012448pt;}
.ls1_c00483{letter-spacing:0.020694pt;}
.ls4_c00483{letter-spacing:0.037344pt;}
.ls9_c00483{letter-spacing:0.118256pt;}
.lsb_c00483{letter-spacing:0.304976pt;}
.ls2_c00483{letter-spacing:0.398336pt;}
.ws0_c00483{word-spacing:-11.526781pt;}
.ws28_c00483{word-spacing:-0.336096pt;}
.ws24_c00483{word-spacing:-0.049792pt;}
.ws1_c00483{word-spacing:0.000000pt;}
.ws15_c00483{word-spacing:0.018672pt;}
.ws10_c00483{word-spacing:0.031120pt;}
.ws22_c00483{word-spacing:0.628624pt;}
.ws18_c00483{word-spacing:0.641072pt;}
.ws8_c00483{word-spacing:2.246864pt;}
.ws9_c00483{word-spacing:2.265536pt;}
.ws19_c00483{word-spacing:2.533168pt;}
.ws1a_c00483{word-spacing:2.551840pt;}
.ws2_c00483{word-spacing:2.558064pt;}
.ws13_c00483{word-spacing:4.462608pt;}
.ws14_c00483{word-spacing:4.493728pt;}
.ws17_c00483{word-spacing:4.798704pt;}
.ws16_c00483{word-spacing:4.804928pt;}
.wse_c00483{word-spacing:5.103680pt;}
.ws26_c00483{word-spacing:5.141024pt;}
.wsf_c00483{word-spacing:5.147248pt;}
.ws7_c00483{word-spacing:5.421104pt;}
.ws6_c00483{word-spacing:5.427328pt;}
.ws3_c00483{word-spacing:5.470896pt;}
.ws11_c00483{word-spacing:6.080848pt;}
.ws23_c00483{word-spacing:6.105744pt;}
.wsd_c00483{word-spacing:8.551776pt;}
.wsc_c00483{word-spacing:8.962560pt;}
.ws27_c00483{word-spacing:9.255088pt;}
.wsa_c00483{word-spacing:9.267536pt;}
.wsb_c00483{word-spacing:9.279369pt;}
.ws1f_c00483{word-spacing:9.914832pt;}
.ws20_c00483{word-spacing:10.898224pt;}
.ws21_c00483{word-spacing:10.910672pt;}
.ws1c_c00483{word-spacing:11.520624pt;}
.ws1b_c00483{word-spacing:11.533072pt;}
.ws25_c00483{word-spacing:15.043408pt;}
.ws12_c00483{word-spacing:21.454128pt;}
.ws1d_c00483{word-spacing:34.256896pt;}
.ws1e_c00483{word-spacing:34.512080pt;}
.ws4_c00483{word-spacing:34.866848pt;}
.ws5_c00483{word-spacing:34.885520pt;}
._2_c00483{margin-left:-1.045632pt;}
._0_c00483{width:1.163888pt;}
._1_c00483{width:5.253056pt;}
.fs1_c00483{font-size:41.388800pt;}
.fs0_c00483{font-size:62.240000pt;}
.y0_c00483{bottom:0.000000pt;}
.y2_c00483{bottom:97.547527pt;}
.y1_c00483{bottom:115.387067pt;}
.y22_c00483{bottom:155.065735pt;}
.y21_c00483{bottom:181.945635pt;}
.y20_c00483{bottom:208.746179pt;}
.y1f_c00483{bottom:235.626079pt;}
.y1e_c00483{bottom:262.426623pt;}
.y1d_c00483{bottom:289.306523pt;}
.y1c_c00483{bottom:316.105735pt;}
.y1b_c00483{bottom:342.985635pt;}
.y1a_c00483{bottom:369.786179pt;}
.y19_c00483{bottom:396.666079pt;}
.y18_c00483{bottom:423.466623pt;}
.y17_c00483{bottom:450.346523pt;}
.y16_c00483{bottom:477.145448pt;}
.y15_c00483{bottom:504.025348pt;}
.y14_c00483{bottom:530.744980pt;}
.y13_c00483{bottom:557.624880pt;}
.y12_c00483{bottom:584.425424pt;}
.y11_c00483{bottom:611.305324pt;}
.y10_c00483{bottom:638.105868pt;}
.yf_c00483{bottom:664.985768pt;}
.ye_c00483{bottom:691.786312pt;}
.yd_c00483{bottom:718.666212pt;}
.yc_c00483{bottom:745.466756pt;}
.yb_c00483{bottom:772.346656pt;}
.ya_c00483{bottom:799.147267pt;}
.y9_c00483{bottom:826.027167pt;}
.y8_c00483{bottom:852.906171pt;}
.y7_c00483{bottom:879.706715pt;}
.y6_c00483{bottom:906.586615pt;}
.y5_c00483{bottom:933.387159pt;}
.y4_c00483{bottom:960.267059pt;}
.y3_c00483{bottom:987.067603pt;}
.h2_c00483{height:55.645234pt;}
.h1_c00483{height:55.797187pt;}
.h3_c00483{height:65.587997pt;}
.h4_c00483{height:65.802566pt;}
.h6_c00483{height:65.808694pt;}
.h5_c00483{height:65.910887pt;}
.h0_c00483{height:1122.666667pt;}
.w0_c00483{width:793.333333pt;}
.x0_c00483{left:0.000000pt;}
.x2_c00483{left:73.520052pt;}
.x1_c00483{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_adb6eea9846343145f25ef8c.woff2')format("woff");}.ff1_c00484{font-family:ff1_c00484;line-height:1.106934;font-style:normal;font-weight:normal;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_163883dd0be6344bcc528a4b.woff2')format("woff");}.ff2_c00484{font-family:ff2_c00484;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00484{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00484{vertical-align:0.000000px;}
.v1_c00484{vertical-align:32.399586px;}
.ls10_c00484{letter-spacing:-0.448128px;}
.lse_c00484{letter-spacing:-0.098028px;}
.ls8_c00484{letter-spacing:-0.063018px;}
.lsf_c00484{letter-spacing:-0.056016px;}
.ls11_c00484{letter-spacing:-0.035010px;}
.lsb_c00484{letter-spacing:-0.028008px;}
.lsd_c00484{letter-spacing:-0.021006px;}
.lsa_c00484{letter-spacing:-0.014004px;}
.lsc_c00484{letter-spacing:-0.007002px;}
.ls9_c00484{letter-spacing:0.000000px;}
.ls0_c00484{letter-spacing:0.007002px;}
.ls4_c00484{letter-spacing:0.014004px;}
.ls5_c00484{letter-spacing:0.021006px;}
.ls2_c00484{letter-spacing:0.023281px;}
.ls1_c00484{letter-spacing:0.028008px;}
.ls3_c00484{letter-spacing:0.035010px;}
.ls7_c00484{letter-spacing:0.042012px;}
.ls6_c00484{letter-spacing:19.052442px;}
.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:-12.967628px;}
.ws4_c00484{word-spacing:-0.021006px;}
.ws1_c00484{word-spacing:0.000000px;}
.ws1c_c00484{word-spacing:0.007002px;}
.ws6_c00484{word-spacing:0.014004px;}
.wsb_c00484{word-spacing:0.336096px;}
.ws7_c00484{word-spacing:0.371106px;}
.ws8_c00484{word-spacing:0.721206px;}
.ws1a_c00484{word-spacing:1.778508px;}
.ws1b_c00484{word-spacing:2.163618px;}
.ws21_c00484{word-spacing:3.970134px;}
.wsc_c00484{word-spacing:4.313232px;}
.ws5_c00484{word-spacing:4.677336px;}
.wsa_c00484{word-spacing:5.349528px;}
.ws16_c00484{word-spacing:6.441840px;}
.ws17_c00484{word-spacing:6.518862px;}
.ws20_c00484{word-spacing:7.569162px;}
.ws1f_c00484{word-spacing:7.583166px;}
.ws3_c00484{word-spacing:8.241354px;}
.ws9_c00484{word-spacing:8.269362px;}
.wsd_c00484{word-spacing:8.626464px;}
.ws26_c00484{word-spacing:10.741068px;}
.ws25_c00484{word-spacing:10.790082px;}
.ws2_c00484{word-spacing:11.861388px;}
.ws22_c00484{word-spacing:12.624606px;}
.ws11_c00484{word-spacing:14.403114px;}
.ws12_c00484{word-spacing:14.844240px;}
.ws13_c00484{word-spacing:15.089310px;}
.ws14_c00484{word-spacing:15.096312px;}
.ws15_c00484{word-spacing:15.131322px;}
.ws18_c00484{word-spacing:18.723348px;}
.ws10_c00484{word-spacing:20.144754px;}
.ws19_c00484{word-spacing:20.508858px;}
.wse_c00484{word-spacing:20.872962px;}
.wsf_c00484{word-spacing:21.244068px;}
.ws1e_c00484{word-spacing:26.964702px;}
.ws1d_c00484{word-spacing:26.999712px;}
.ws23_c00484{word-spacing:28.442124px;}
.ws24_c00484{word-spacing:28.806228px;}
._0_c00484{margin-left:-1.099314px;}
._1_c00484{width:1.288368px;}
.fc0_c00484{color:rgb(0,0,0);}
.fs1_c00484{font-size:46.562400px;}
.fs0_c00484{font-size:70.020000px;}
.y0_c00484{bottom:0.000000px;}
.y2_c00484{bottom:109.740968px;}
.y1_c00484{bottom:129.810450px;}
.y22_c00484{bottom:171.568992px;}
.y21_c00484{bottom:201.808879px;}
.y20_c00484{bottom:231.868465px;}
.y1f_c00484{bottom:265.078951px;}
.y1e_c00484{bottom:295.229563px;}
.y1d_c00484{bottom:325.469451px;}
.y1c_c00484{bottom:355.620063px;}
.y1b_c00484{bottom:385.859950px;}
.y1a_c00484{bottom:416.010562px;}
.y19_c00484{bottom:446.249338px;}
.y18_c00484{bottom:476.399950px;}
.y17_c00484{bottom:506.639838px;}
.y16_c00484{bottom:536.790976px;}
.y15_c00484{bottom:567.030864px;}
.y14_c00484{bottom:597.089064px;}
.y13_c00484{bottom:627.328952px;}
.y12_c00484{bottom:657.479564px;}
.y11_c00484{bottom:687.719451px;}
.y10_c00484{bottom:717.870063px;}
.yf_c00484{bottom:748.109951px;}
.ye_c00484{bottom:778.260562px;}
.yd_c00484{bottom:808.498452px;}
.yc_c00484{bottom:838.649064px;}
.yb_c00484{bottom:868.888951px;}
.ya_c00484{bottom:899.039563px;}
.y9_c00484{bottom:929.279451px;}
.y8_c00484{bottom:959.519339px;}
.y7_c00484{bottom:989.669950px;}
.y6_c00484{bottom:1019.909838px;}
.y5_c00484{bottom:1050.060553px;}
.y4_c00484{bottom:1080.300441px;}
.y3_c00484{bottom:1110.451053px;}
.h2_c00484{height:62.600889px;}
.h1_c00484{height:62.771836px;}
.h7_c00484{height:73.673232px;}
.h4_c00484{height:73.676778px;}
.h6_c00484{height:74.026680px;}
.h3_c00484{height:74.028372px;}
.h5_c00484{height:74.034330px;}
.h0_c00484{height:1263.000000px;}
.w0_c00484{width:892.500000px;}
.x0_c00484{left:0.000000px;}
.x2_c00484{left:82.710059px;}
.x1_c00484{left:431.730000px;}
@media print{
.v0_c00484{vertical-align:0.000000pt;}
.v1_c00484{vertical-align:28.799632pt;}
.ls10_c00484{letter-spacing:-0.398336pt;}
.lse_c00484{letter-spacing:-0.087136pt;}
.ls8_c00484{letter-spacing:-0.056016pt;}
.lsf_c00484{letter-spacing:-0.049792pt;}
.ls11_c00484{letter-spacing:-0.031120pt;}
.lsb_c00484{letter-spacing:-0.024896pt;}
.lsd_c00484{letter-spacing:-0.018672pt;}
.lsa_c00484{letter-spacing:-0.012448pt;}
.lsc_c00484{letter-spacing:-0.006224pt;}
.ls9_c00484{letter-spacing:0.000000pt;}
.ls0_c00484{letter-spacing:0.006224pt;}
.ls4_c00484{letter-spacing:0.012448pt;}
.ls5_c00484{letter-spacing:0.018672pt;}
.ls2_c00484{letter-spacing:0.020694pt;}
.ls1_c00484{letter-spacing:0.024896pt;}
.ls3_c00484{letter-spacing:0.031120pt;}
.ls7_c00484{letter-spacing:0.037344pt;}
.ls6_c00484{letter-spacing:16.935504pt;}
.ws0_c00484{word-spacing:-11.526781pt;}
.ws4_c00484{word-spacing:-0.018672pt;}
.ws1_c00484{word-spacing:0.000000pt;}
.ws1c_c00484{word-spacing:0.006224pt;}
.ws6_c00484{word-spacing:0.012448pt;}
.wsb_c00484{word-spacing:0.298752pt;}
.ws7_c00484{word-spacing:0.329872pt;}
.ws8_c00484{word-spacing:0.641072pt;}
.ws1a_c00484{word-spacing:1.580896pt;}
.ws1b_c00484{word-spacing:1.923216pt;}
.ws21_c00484{word-spacing:3.529008pt;}
.wsc_c00484{word-spacing:3.833984pt;}
.ws5_c00484{word-spacing:4.157632pt;}
.wsa_c00484{word-spacing:4.755136pt;}
.ws16_c00484{word-spacing:5.726080pt;}
.ws17_c00484{word-spacing:5.794544pt;}
.ws20_c00484{word-spacing:6.728144pt;}
.ws1f_c00484{word-spacing:6.740592pt;}
.ws3_c00484{word-spacing:7.325648pt;}
.ws9_c00484{word-spacing:7.350544pt;}
.wsd_c00484{word-spacing:7.667968pt;}
.ws26_c00484{word-spacing:9.547616pt;}
.ws25_c00484{word-spacing:9.591184pt;}
.ws2_c00484{word-spacing:10.543456pt;}
.ws22_c00484{word-spacing:11.221872pt;}
.ws11_c00484{word-spacing:12.802768pt;}
.ws12_c00484{word-spacing:13.194880pt;}
.ws13_c00484{word-spacing:13.412720pt;}
.ws14_c00484{word-spacing:13.418944pt;}
.ws15_c00484{word-spacing:13.450064pt;}
.ws18_c00484{word-spacing:16.642976pt;}
.ws10_c00484{word-spacing:17.906448pt;}
.ws19_c00484{word-spacing:18.230096pt;}
.wse_c00484{word-spacing:18.553744pt;}
.wsf_c00484{word-spacing:18.883616pt;}
.ws1e_c00484{word-spacing:23.968624pt;}
.ws1d_c00484{word-spacing:23.999744pt;}
.ws23_c00484{word-spacing:25.281888pt;}
.ws24_c00484{word-spacing:25.605536pt;}
._0_c00484{margin-left:-0.977168pt;}
._1_c00484{width:1.145216pt;}
.fs1_c00484{font-size:41.388800pt;}
.fs0_c00484{font-size:62.240000pt;}
.y0_c00484{bottom:0.000000pt;}
.y2_c00484{bottom:97.547527pt;}
.y1_c00484{bottom:115.387067pt;}
.y22_c00484{bottom:152.505771pt;}
.y21_c00484{bottom:179.385671pt;}
.y20_c00484{bottom:206.105303pt;}
.y1f_c00484{bottom:235.625735pt;}
.y1e_c00484{bottom:262.426279pt;}
.y1d_c00484{bottom:289.306179pt;}
.y1c_c00484{bottom:316.106723pt;}
.y1b_c00484{bottom:342.986623pt;}
.y1a_c00484{bottom:369.787167pt;}
.y19_c00484{bottom:396.666079pt;}
.y18_c00484{bottom:423.466623pt;}
.y17_c00484{bottom:450.346523pt;}
.y16_c00484{bottom:477.147535pt;}
.y15_c00484{bottom:504.027435pt;}
.y14_c00484{bottom:530.745835pt;}
.y13_c00484{bottom:557.625735pt;}
.y12_c00484{bottom:584.426279pt;}
.y11_c00484{bottom:611.306179pt;}
.y10_c00484{bottom:638.106723pt;}
.yf_c00484{bottom:664.986623pt;}
.ye_c00484{bottom:691.787167pt;}
.yd_c00484{bottom:718.665291pt;}
.yc_c00484{bottom:745.465835pt;}
.yb_c00484{bottom:772.345735pt;}
.ya_c00484{bottom:799.146279pt;}
.y9_c00484{bottom:826.026179pt;}
.y8_c00484{bottom:852.906079pt;}
.y7_c00484{bottom:879.706623pt;}
.y6_c00484{bottom:906.586523pt;}
.y5_c00484{bottom:933.387159pt;}
.y4_c00484{bottom:960.267059pt;}
.y3_c00484{bottom:987.067603pt;}
.h2_c00484{height:55.645234pt;}
.h1_c00484{height:55.797187pt;}
.h7_c00484{height:65.487318pt;}
.h4_c00484{height:65.490470pt;}
.h6_c00484{height:65.801494pt;}
.h3_c00484{height:65.802998pt;}
.h5_c00484{height:65.808294pt;}
.h0_c00484{height:1122.666667pt;}
.w0_c00484{width:793.333333pt;}
.x0_c00484{left:0.000000pt;}
.x2_c00484{left:73.520052pt;}
.x1_c00484{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_50a5f45fb8971705b7a797f9.woff2')format("woff");}.ff1_c00485{font-family:ff1_c00485;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00485;src:url('chunks/assets/font_40c680d4bd907c7da982b0bc.woff2')format("woff");}.ff2_c00485{font-family:ff2_c00485;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00485{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00485{vertical-align:-32.040000px;}
.v0_c00485{vertical-align:0.000000px;}
.v1_c00485{vertical-align:32.403294px;}
.lsf_c00485{letter-spacing:-0.112032px;}
.ls8_c00485{letter-spacing:-0.063018px;}
.lse_c00485{letter-spacing:-0.049014px;}
.ls11_c00485{letter-spacing:-0.042012px;}
.lsa_c00485{letter-spacing:-0.035010px;}
.lsd_c00485{letter-spacing:-0.021006px;}
.lsb_c00485{letter-spacing:-0.014004px;}
.lsc_c00485{letter-spacing:-0.007002px;}
.ls9_c00485{letter-spacing:0.000000px;}
.ls1_c00485{letter-spacing:0.007002px;}
.ls4_c00485{letter-spacing:0.014004px;}
.ls0_c00485{letter-spacing:0.021006px;}
.ls6_c00485{letter-spacing:0.023281px;}
.ls2_c00485{letter-spacing:0.028008px;}
.ls3_c00485{letter-spacing:0.056016px;}
.ls5_c00485{letter-spacing:0.154044px;}
.ls7_c00485{letter-spacing:0.168048px;}
.ls10_c00485{letter-spacing:0.259074px;}
.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:-12.967628px;}
.ws19_c00485{word-spacing:-0.182052px;}
.ws11_c00485{word-spacing:-0.168048px;}
.wsd_c00485{word-spacing:-0.070020px;}
.ws16_c00485{word-spacing:-0.035010px;}
.wse_c00485{word-spacing:-0.028008px;}
.ws12_c00485{word-spacing:-0.014004px;}
.ws1_c00485{word-spacing:0.000000px;}
.ws17_c00485{word-spacing:0.007002px;}
.wsc_c00485{word-spacing:0.021006px;}
.wsf_c00485{word-spacing:0.035010px;}
.ws15_c00485{word-spacing:0.084024px;}
.ws13_c00485{word-spacing:0.098028px;}
.ws10_c00485{word-spacing:0.329094px;}
.ws18_c00485{word-spacing:0.392112px;}
.ws14_c00485{word-spacing:0.406116px;}
.ws5_c00485{word-spacing:3.942126px;}
.ws1d_c00485{word-spacing:4.698342px;}
.ws1e_c00485{word-spacing:4.712346px;}
.ws7_c00485{word-spacing:7.184052px;}
.ws8_c00485{word-spacing:7.198056px;}
.wsa_c00485{word-spacing:8.955558px;}
.wsb_c00485{word-spacing:9.004572px;}
.ws9_c00485{word-spacing:9.018576px;}
.ws6_c00485{word-spacing:11.875392px;}
.ws4_c00485{word-spacing:17.280936px;}
.ws3_c00485{word-spacing:17.603028px;}
.ws2_c00485{word-spacing:17.659044px;}
.ws1c_c00485{word-spacing:21.272076px;}
.ws1b_c00485{word-spacing:21.594168px;}
.ws1a_c00485{word-spacing:42.124032px;}
._1_c00485{margin-left:-1.099314px;}
._0_c00485{width:1.015290px;}
.fc0_c00485{color:rgb(0,0,0);}
.fs1_c00485{font-size:46.562400px;}
.fs0_c00485{font-size:70.020000px;}
.y0_c00485{bottom:0.000000px;}
.y2_c00485{bottom:109.740968px;}
.y1_c00485{bottom:129.810450px;}
.y20_c00485{bottom:160.499451px;}
.y1f_c00485{bottom:190.650063px;}
.y1e_c00485{bottom:220.889951px;}
.y1d_c00485{bottom:251.040563px;}
.y1c_c00485{bottom:281.276787px;}
.y1b_c00485{bottom:311.427399px;}
.y1a_c00485{bottom:341.667286px;}
.y19_c00485{bottom:371.817898px;}
.y18_c00485{bottom:402.057786px;}
.y17_c00485{bottom:432.208398px;}
.y16_c00485{bottom:462.448285px;}
.y15_c00485{bottom:492.598898px;}
.y14_c00485{bottom:522.749509px;}
.y13_c00485{bottom:552.900121px;}
.y12_c00485{bottom:583.140009px;}
.y11_c00485{bottom:642.449627px;}
.y10_c00485{bottom:674.130175px;}
.yf_c00485{bottom:705.719699px;}
.ye_c00485{bottom:738.930184px;}
.yd_c00485{bottom:771.960369px;}
.yc_c00485{bottom:805.079829px;}
.yb_c00485{bottom:838.290315px;}
.ya_c00485{bottom:871.320499px;}
.y9_c00485{bottom:904.439959px;}
.y8_c00485{bottom:959.519442px;}
.y7_c00485{bottom:989.670054px;}
.y6_c00485{bottom:1019.909942px;}
.y5_c00485{bottom:1050.060553px;}
.y4_c00485{bottom:1080.300441px;}
.y3_c00485{bottom:1110.451053px;}
.h2_c00485{height:62.600889px;}
.h1_c00485{height:62.771836px;}
.h4_c00485{height:73.683438px;}
.h3_c00485{height:74.145758px;}
.h0_c00485{height:1263.000000px;}
.w0_c00485{width:892.500000px;}
.x0_c00485{left:0.000000px;}
.x2_c00485{left:82.710059px;}
.x1_c00485{left:431.730000px;}
@media print{
.v2_c00485{vertical-align:-28.480000pt;}
.v0_c00485{vertical-align:0.000000pt;}
.v1_c00485{vertical-align:28.802928pt;}
.lsf_c00485{letter-spacing:-0.099584pt;}
.ls8_c00485{letter-spacing:-0.056016pt;}
.lse_c00485{letter-spacing:-0.043568pt;}
.ls11_c00485{letter-spacing:-0.037344pt;}
.lsa_c00485{letter-spacing:-0.031120pt;}
.lsd_c00485{letter-spacing:-0.018672pt;}
.lsb_c00485{letter-spacing:-0.012448pt;}
.lsc_c00485{letter-spacing:-0.006224pt;}
.ls9_c00485{letter-spacing:0.000000pt;}
.ls1_c00485{letter-spacing:0.006224pt;}
.ls4_c00485{letter-spacing:0.012448pt;}
.ls0_c00485{letter-spacing:0.018672pt;}
.ls6_c00485{letter-spacing:0.020694pt;}
.ls2_c00485{letter-spacing:0.024896pt;}
.ls3_c00485{letter-spacing:0.049792pt;}
.ls5_c00485{letter-spacing:0.136928pt;}
.ls7_c00485{letter-spacing:0.149376pt;}
.ls10_c00485{letter-spacing:0.230288pt;}
.ws0_c00485{word-spacing:-11.526781pt;}
.ws19_c00485{word-spacing:-0.161824pt;}
.ws11_c00485{word-spacing:-0.149376pt;}
.wsd_c00485{word-spacing:-0.062240pt;}
.ws16_c00485{word-spacing:-0.031120pt;}
.wse_c00485{word-spacing:-0.024896pt;}
.ws12_c00485{word-spacing:-0.012448pt;}
.ws1_c00485{word-spacing:0.000000pt;}
.ws17_c00485{word-spacing:0.006224pt;}
.wsc_c00485{word-spacing:0.018672pt;}
.wsf_c00485{word-spacing:0.031120pt;}
.ws15_c00485{word-spacing:0.074688pt;}
.ws13_c00485{word-spacing:0.087136pt;}
.ws10_c00485{word-spacing:0.292528pt;}
.ws18_c00485{word-spacing:0.348544pt;}
.ws14_c00485{word-spacing:0.360992pt;}
.ws5_c00485{word-spacing:3.504112pt;}
.ws1d_c00485{word-spacing:4.176304pt;}
.ws1e_c00485{word-spacing:4.188752pt;}
.ws7_c00485{word-spacing:6.385824pt;}
.ws8_c00485{word-spacing:6.398272pt;}
.wsa_c00485{word-spacing:7.960496pt;}
.wsb_c00485{word-spacing:8.004064pt;}
.ws9_c00485{word-spacing:8.016512pt;}
.ws6_c00485{word-spacing:10.555904pt;}
.ws4_c00485{word-spacing:15.360832pt;}
.ws3_c00485{word-spacing:15.647136pt;}
.ws2_c00485{word-spacing:15.696928pt;}
.ws1c_c00485{word-spacing:18.908512pt;}
.ws1b_c00485{word-spacing:19.194816pt;}
.ws1a_c00485{word-spacing:37.443584pt;}
._1_c00485{margin-left:-0.977168pt;}
._0_c00485{width:0.902480pt;}
.fs1_c00485{font-size:41.388800pt;}
.fs0_c00485{font-size:62.240000pt;}
.y0_c00485{bottom:0.000000pt;}
.y2_c00485{bottom:97.547527pt;}
.y1_c00485{bottom:115.387067pt;}
.y20_c00485{bottom:142.666179pt;}
.y1f_c00485{bottom:169.466723pt;}
.y1e_c00485{bottom:196.346623pt;}
.y1d_c00485{bottom:223.147167pt;}
.y1c_c00485{bottom:250.023811pt;}
.y1b_c00485{bottom:276.824355pt;}
.y1a_c00485{bottom:303.704255pt;}
.y19_c00485{bottom:330.504799pt;}
.y18_c00485{bottom:357.384699pt;}
.y17_c00485{bottom:384.185243pt;}
.y16_c00485{bottom:411.065143pt;}
.y15_c00485{bottom:437.865687pt;}
.y14_c00485{bottom:464.666231pt;}
.y13_c00485{bottom:491.466775pt;}
.y12_c00485{bottom:518.346675pt;}
.y11_c00485{bottom:571.066335pt;}
.y10_c00485{bottom:599.226823pt;}
.yf_c00485{bottom:627.306399pt;}
.ye_c00485{bottom:656.826831pt;}
.yd_c00485{bottom:686.186995pt;}
.yc_c00485{bottom:715.626515pt;}
.yb_c00485{bottom:745.146947pt;}
.ya_c00485{bottom:774.507111pt;}
.y9_c00485{bottom:803.946631pt;}
.y8_c00485{bottom:852.906171pt;}
.y7_c00485{bottom:879.706715pt;}
.y6_c00485{bottom:906.586615pt;}
.y5_c00485{bottom:933.387159pt;}
.y4_c00485{bottom:960.267059pt;}
.y3_c00485{bottom:987.067603pt;}
.h2_c00485{height:55.645234pt;}
.h1_c00485{height:55.797187pt;}
.h4_c00485{height:65.496390pt;}
.h3_c00485{height:65.907340pt;}
.h0_c00485{height:1122.666667pt;}
.w0_c00485{width:793.333333pt;}
.x0_c00485{left:0.000000pt;}
.x2_c00485{left:73.520052pt;}
.x1_c00485{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_653ecbb9304286e05094194c.woff2')format("woff");}.ff1_c00486{font-family:ff1_c00486;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00486;src:url('chunks/assets/font_3d7d37569daa4542483c6ee0.woff2')format("woff");}.ff2_c00486{font-family:ff2_c00486;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00486{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00486{vertical-align:0.000000px;}
.v1_c00486{vertical-align:32.043078px;}
.lsc_c00486{letter-spacing:-0.308088px;}
.ls5_c00486{letter-spacing:-0.063018px;}
.lsd_c00486{letter-spacing:-0.049014px;}
.ls7_c00486{letter-spacing:-0.042012px;}
.lsa_c00486{letter-spacing:-0.035010px;}
.ls8_c00486{letter-spacing:-0.028008px;}
.lse_c00486{letter-spacing:-0.021006px;}
.ls9_c00486{letter-spacing:-0.014004px;}
.lsb_c00486{letter-spacing:-0.007002px;}
.ls6_c00486{letter-spacing:0.000000px;}
.ls0_c00486{letter-spacing:0.007002px;}
.ls1_c00486{letter-spacing:0.021006px;}
.ls2_c00486{letter-spacing:0.023281px;}
.ls3_c00486{letter-spacing:0.077022px;}
.ls4_c00486{letter-spacing:0.140040px;}
.sc__c00486{text-shadow:none;}
.sc0_c00486{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00486{-webkit-text-stroke:0px transparent;}
.sc0_c00486{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00486{word-spacing:-19.416546px;}
.ws0_c00486{word-spacing:-12.967628px;}
.ws19_c00486{word-spacing:-0.154044px;}
.ws17_c00486{word-spacing:-0.014004px;}
.ws2_c00486{word-spacing:0.000000px;}
.ws13_c00486{word-spacing:0.007002px;}
.ws14_c00486{word-spacing:0.014004px;}
.wsc_c00486{word-spacing:0.021006px;}
.ws4_c00486{word-spacing:1.106316px;}
.ws6_c00486{word-spacing:2.135610px;}
.ws16_c00486{word-spacing:2.156616px;}
.ws7_c00486{word-spacing:2.163618px;}
.ws1c_c00486{word-spacing:2.534724px;}
.ws1b_c00486{word-spacing:2.548728px;}
.ws1d_c00486{word-spacing:2.555730px;}
.ws1a_c00486{word-spacing:5.412546px;}
.ws24_c00486{word-spacing:8.976564px;}
.ws23_c00486{word-spacing:9.375678px;}
.ws22_c00486{word-spacing:11.497284px;}
.ws20_c00486{word-spacing:12.239496px;}
.ws11_c00486{word-spacing:14.053014px;}
.wsa_c00486{word-spacing:14.739210px;}
.ws12_c00486{word-spacing:18.345240px;}
.ws3_c00486{word-spacing:18.751356px;}
.wsf_c00486{word-spacing:19.073448px;}
.ws10_c00486{word-spacing:19.374534px;}
.ws21_c00486{word-spacing:19.430550px;}
.ws5_c00486{word-spacing:19.787652px;}
.ws1e_c00486{word-spacing:20.144754px;}
.ws1f_c00486{word-spacing:20.193768px;}
.wsb_c00486{word-spacing:20.487852px;}
.ws18_c00486{word-spacing:22.231350px;}
.ws8_c00486{word-spacing:22.679478px;}
.wse_c00486{word-spacing:23.414688px;}
.wsd_c00486{word-spacing:23.421690px;}
.ws15_c00486{word-spacing:32.062158px;}
.ws9_c00486{word-spacing:35.297082px;}
._2_c00486{margin-left:-22.322376px;}
._1_c00486{margin-left:-1.225350px;}
._0_c00486{width:1.148328px;}
.fc0_c00486{color:rgb(0,0,0);}
.fs1_c00486{font-size:46.562400px;}
.fs0_c00486{font-size:70.020000px;}
.y0_c00486{bottom:0.000000px;}
.y2_c00486{bottom:109.740968px;}
.y1_c00486{bottom:129.810450px;}
.y1f_c00486{bottom:160.048965px;}
.y1e_c00486{bottom:190.199577px;}
.y1d_c00486{bottom:220.439464px;}
.y1c_c00486{bottom:250.590076px;}
.y1b_c00486{bottom:280.829964px;}
.y1a_c00486{bottom:310.980576px;}
.y19_c00486{bottom:341.220463px;}
.y18_c00486{bottom:371.371075px;}
.y17_c00486{bottom:419.072966px;}
.y16_c00486{bottom:449.312853px;}
.y15_c00486{bottom:497.012228px;}
.y14_c00486{bottom:527.071813px;}
.y13_c00486{bottom:557.311701px;}
.y12_c00486{bottom:605.011076px;}
.y11_c00486{bottom:652.710077px;}
.y10_c00486{bottom:682.860688px;}
.yf_c00486{bottom:713.100576px;}
.ye_c00486{bottom:743.251188px;}
.yd_c00486{bottom:773.491075px;}
.yc_c00486{bottom:821.189681px;}
.yb_c00486{bottom:851.340293px;}
.ya_c00486{bottom:881.580180px;}
.y9_c00486{bottom:911.730792px;}
.y8_c00486{bottom:941.970679px;}
.y7_c00486{bottom:972.210567px;}
.y6_c00486{bottom:1002.361179px;}
.y5_c00486{bottom:1032.601066px;}
.y4_c00486{bottom:1080.300441px;}
.y3_c00486{bottom:1110.451053px;}
.h2_c00486{height:62.600889px;}
.h1_c00486{height:62.771836px;}
.h4_c00486{height:73.670280px;}
.h3_c00486{height:73.671864px;}
.h5_c00486{height:74.018724px;}
.h0_c00486{height:1263.000000px;}
.w0_c00486{width:892.500000px;}
.x0_c00486{left:0.000000px;}
.x2_c00486{left:82.710059px;}
.x1_c00486{left:431.730000px;}
@media print{
.v0_c00486{vertical-align:0.000000pt;}
.v1_c00486{vertical-align:28.482736pt;}
.lsc_c00486{letter-spacing:-0.273856pt;}
.ls5_c00486{letter-spacing:-0.056016pt;}
.lsd_c00486{letter-spacing:-0.043568pt;}
.ls7_c00486{letter-spacing:-0.037344pt;}
.lsa_c00486{letter-spacing:-0.031120pt;}
.ls8_c00486{letter-spacing:-0.024896pt;}
.lse_c00486{letter-spacing:-0.018672pt;}
.ls9_c00486{letter-spacing:-0.012448pt;}
.lsb_c00486{letter-spacing:-0.006224pt;}
.ls6_c00486{letter-spacing:0.000000pt;}
.ls0_c00486{letter-spacing:0.006224pt;}
.ls1_c00486{letter-spacing:0.018672pt;}
.ls2_c00486{letter-spacing:0.020694pt;}
.ls3_c00486{letter-spacing:0.068464pt;}
.ls4_c00486{letter-spacing:0.124480pt;}
.ws1_c00486{word-spacing:-17.259152pt;}
.ws0_c00486{word-spacing:-11.526781pt;}
.ws19_c00486{word-spacing:-0.136928pt;}
.ws17_c00486{word-spacing:-0.012448pt;}
.ws2_c00486{word-spacing:0.000000pt;}
.ws13_c00486{word-spacing:0.006224pt;}
.ws14_c00486{word-spacing:0.012448pt;}
.wsc_c00486{word-spacing:0.018672pt;}
.ws4_c00486{word-spacing:0.983392pt;}
.ws6_c00486{word-spacing:1.898320pt;}
.ws16_c00486{word-spacing:1.916992pt;}
.ws7_c00486{word-spacing:1.923216pt;}
.ws1c_c00486{word-spacing:2.253088pt;}
.ws1b_c00486{word-spacing:2.265536pt;}
.ws1d_c00486{word-spacing:2.271760pt;}
.ws1a_c00486{word-spacing:4.811152pt;}
.ws24_c00486{word-spacing:7.979168pt;}
.ws23_c00486{word-spacing:8.333936pt;}
.ws22_c00486{word-spacing:10.219808pt;}
.ws20_c00486{word-spacing:10.879552pt;}
.ws11_c00486{word-spacing:12.491568pt;}
.wsa_c00486{word-spacing:13.101520pt;}
.ws12_c00486{word-spacing:16.306880pt;}
.ws3_c00486{word-spacing:16.667872pt;}
.wsf_c00486{word-spacing:16.954176pt;}
.ws10_c00486{word-spacing:17.221808pt;}
.ws21_c00486{word-spacing:17.271600pt;}
.ws5_c00486{word-spacing:17.589024pt;}
.ws1e_c00486{word-spacing:17.906448pt;}
.ws1f_c00486{word-spacing:17.950016pt;}
.wsb_c00486{word-spacing:18.211424pt;}
.ws18_c00486{word-spacing:19.761200pt;}
.ws8_c00486{word-spacing:20.159536pt;}
.wse_c00486{word-spacing:20.813056pt;}
.wsd_c00486{word-spacing:20.819280pt;}
.ws15_c00486{word-spacing:28.499696pt;}
.ws9_c00486{word-spacing:31.375184pt;}
._2_c00486{margin-left:-19.842112pt;}
._1_c00486{margin-left:-1.089200pt;}
._0_c00486{width:1.020736pt;}
.fs1_c00486{font-size:41.388800pt;}
.fs0_c00486{font-size:62.240000pt;}
.y0_c00486{bottom:0.000000pt;}
.y2_c00486{bottom:97.547527pt;}
.y1_c00486{bottom:115.387067pt;}
.y1f_c00486{bottom:142.265747pt;}
.y1e_c00486{bottom:169.066291pt;}
.y1d_c00486{bottom:195.946191pt;}
.y1c_c00486{bottom:222.746735pt;}
.y1b_c00486{bottom:249.626635pt;}
.y1a_c00486{bottom:276.427179pt;}
.y19_c00486{bottom:303.307079pt;}
.y18_c00486{bottom:330.107623pt;}
.y17_c00486{bottom:372.509303pt;}
.y16_c00486{bottom:399.389203pt;}
.y15_c00486{bottom:441.788647pt;}
.y14_c00486{bottom:468.508279pt;}
.y13_c00486{bottom:495.388179pt;}
.y12_c00486{bottom:537.787623pt;}
.y11_c00486{bottom:580.186735pt;}
.y10_c00486{bottom:606.987279pt;}
.yf_c00486{bottom:633.867179pt;}
.ye_c00486{bottom:660.667723pt;}
.yd_c00486{bottom:687.547623pt;}
.yc_c00486{bottom:729.946383pt;}
.yb_c00486{bottom:756.746927pt;}
.ya_c00486{bottom:783.626827pt;}
.y9_c00486{bottom:810.427371pt;}
.y8_c00486{bottom:837.307271pt;}
.y7_c00486{bottom:864.187171pt;}
.y6_c00486{bottom:890.987715pt;}
.y5_c00486{bottom:917.867615pt;}
.y4_c00486{bottom:960.267059pt;}
.y3_c00486{bottom:987.067603pt;}
.h2_c00486{height:55.645234pt;}
.h1_c00486{height:55.797187pt;}
.h4_c00486{height:65.484694pt;}
.h3_c00486{height:65.486102pt;}
.h5_c00486{height:65.794422pt;}
.h0_c00486{height:1122.666667pt;}
.w0_c00486{width:793.333333pt;}
.x0_c00486{left:0.000000pt;}
.x2_c00486{left:73.520052pt;}
.x1_c00486{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b6f12a64cc65f86e38a71d86.woff2')format("woff");}.ff1_c00487{font-family:ff1_c00487;line-height:1.106934;font-style:normal;font-weight:normal;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_4fb0f365c397bfa427bc0862.woff2')format("woff");}.ff2_c00487{font-family:ff2_c00487;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00487{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00487{vertical-align:0.000000px;}
.v1_c00487{vertical-align:32.039532px;}
.ls6_c00487{letter-spacing:-0.063018px;}
.lse_c00487{letter-spacing:-0.056016px;}
.lsb_c00487{letter-spacing:-0.042012px;}
.ls9_c00487{letter-spacing:-0.035010px;}
.ls8_c00487{letter-spacing:-0.028008px;}
.lsd_c00487{letter-spacing:-0.021006px;}
.lsa_c00487{letter-spacing:-0.014004px;}
.lsc_c00487{letter-spacing:-0.007002px;}
.ls7_c00487{letter-spacing:0.000000px;}
.ls5_c00487{letter-spacing:0.007002px;}
.ls0_c00487{letter-spacing:0.023281px;}
.ls1_c00487{letter-spacing:0.028008px;}
.ls2_c00487{letter-spacing:0.182052px;}
.ls3_c00487{letter-spacing:0.259074px;}
.ls4_c00487{letter-spacing:0.341214px;}
.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:-12.967628px;}
.wse_c00487{word-spacing:-0.014004px;}
.ws1_c00487{word-spacing:0.000000px;}
.ws6_c00487{word-spacing:0.028008px;}
.ws20_c00487{word-spacing:0.049014px;}
.ws4_c00487{word-spacing:0.343098px;}
.ws24_c00487{word-spacing:0.371106px;}
.ws7_c00487{word-spacing:0.714204px;}
.ws15_c00487{word-spacing:0.742212px;}
.ws11_c00487{word-spacing:1.085310px;}
.ws19_c00487{word-spacing:1.757502px;}
.ws18_c00487{word-spacing:1.806516px;}
.ws14_c00487{word-spacing:2.884824px;}
.ws5_c00487{word-spacing:3.963132px;}
.ws1e_c00487{word-spacing:4.327236px;}
.ws1f_c00487{word-spacing:4.341240px;}
.ws3_c00487{word-spacing:5.062446px;}
.ws12_c00487{word-spacing:6.847956px;}
.ws13_c00487{word-spacing:6.861960px;}
.wsa_c00487{word-spacing:9.025578px;}
.ws9_c00487{word-spacing:9.368676px;}
.wsd_c00487{word-spacing:11.168190px;}
.ws10_c00487{word-spacing:12.232494px;}
.wsf_c00487{word-spacing:12.253500px;}
.ws8_c00487{word-spacing:12.946698px;}
.wsb_c00487{word-spacing:12.960702px;}
.ws16_c00487{word-spacing:15.467418px;}
.ws17_c00487{word-spacing:15.474420px;}
.ws2_c00487{word-spacing:17.294940px;}
.ws22_c00487{word-spacing:19.822662px;}
.ws21_c00487{word-spacing:20.872962px;}
.ws1d_c00487{word-spacing:23.750784px;}
.ws1c_c00487{word-spacing:23.799798px;}
.ws23_c00487{word-spacing:26.621604px;}
.ws1b_c00487{word-spacing:33.924690px;}
.ws1a_c00487{word-spacing:34.211772px;}
.wsc_c00487{word-spacing:36.361386px;}
._1_c00487{margin-left:-1.260360px;}
._0_c00487{width:1.029294px;}
.fc0_c00487{color:rgb(0,0,0);}
.fs1_c00487{font-size:46.562400px;}
.fs0_c00487{font-size:70.020000px;}
.y0_c00487{bottom:0.000000px;}
.y2_c00487{bottom:109.740968px;}
.y1_c00487{bottom:129.810450px;}
.y1f_c00487{bottom:177.510702px;}
.y1e_c00487{bottom:207.750589px;}
.y1d_c00487{bottom:237.901201px;}
.y1c_c00487{bottom:268.141089px;}
.y1b_c00487{bottom:315.840463px;}
.y1a_c00487{bottom:345.991075px;}
.y19_c00487{bottom:393.687854px;}
.y18_c00487{bottom:423.927741px;}
.y17_c00487{bottom:454.078353px;}
.y16_c00487{bottom:484.318241px;}
.y15_c00487{bottom:514.468852px;}
.y14_c00487{bottom:544.619464px;}
.y13_c00487{bottom:574.770076px;}
.y12_c00487{bottom:605.009964px;}
.y11_c00487{bottom:635.160576px;}
.y10_c00487{bottom:665.400464px;}
.yf_c00487{bottom:695.551076px;}
.ye_c00487{bottom:743.250301px;}
.yd_c00487{bottom:773.490189px;}
.yc_c00487{bottom:803.640801px;}
.yb_c00487{bottom:833.880689px;}
.ya_c00487{bottom:864.031300px;}
.y9_c00487{bottom:894.271188px;}
.y8_c00487{bottom:924.511076px;}
.y7_c00487{bottom:972.210567px;}
.y6_c00487{bottom:1002.361179px;}
.y5_c00487{bottom:1050.060553px;}
.y4_c00487{bottom:1080.300441px;}
.y3_c00487{bottom:1110.451053px;}
.h2_c00487{height:62.600889px;}
.h1_c00487{height:62.771836px;}
.h3_c00487{height:73.668318px;}
.h6_c00487{height:74.027778px;}
.h4_c00487{height:74.143058px;}
.h5_c00487{height:74.153450px;}
.h0_c00487{height:1263.000000px;}
.w0_c00487{width:892.500000px;}
.x0_c00487{left:0.000000px;}
.x2_c00487{left:82.710059px;}
.x1_c00487{left:431.730000px;}
@media print{
.v0_c00487{vertical-align:0.000000pt;}
.v1_c00487{vertical-align:28.479584pt;}
.ls6_c00487{letter-spacing:-0.056016pt;}
.lse_c00487{letter-spacing:-0.049792pt;}
.lsb_c00487{letter-spacing:-0.037344pt;}
.ls9_c00487{letter-spacing:-0.031120pt;}
.ls8_c00487{letter-spacing:-0.024896pt;}
.lsd_c00487{letter-spacing:-0.018672pt;}
.lsa_c00487{letter-spacing:-0.012448pt;}
.lsc_c00487{letter-spacing:-0.006224pt;}
.ls7_c00487{letter-spacing:0.000000pt;}
.ls5_c00487{letter-spacing:0.006224pt;}
.ls0_c00487{letter-spacing:0.020694pt;}
.ls1_c00487{letter-spacing:0.024896pt;}
.ls2_c00487{letter-spacing:0.161824pt;}
.ls3_c00487{letter-spacing:0.230288pt;}
.ls4_c00487{letter-spacing:0.303301pt;}
.ws0_c00487{word-spacing:-11.526781pt;}
.wse_c00487{word-spacing:-0.012448pt;}
.ws1_c00487{word-spacing:0.000000pt;}
.ws6_c00487{word-spacing:0.024896pt;}
.ws20_c00487{word-spacing:0.043568pt;}
.ws4_c00487{word-spacing:0.304976pt;}
.ws24_c00487{word-spacing:0.329872pt;}
.ws7_c00487{word-spacing:0.634848pt;}
.ws15_c00487{word-spacing:0.659744pt;}
.ws11_c00487{word-spacing:0.964720pt;}
.ws19_c00487{word-spacing:1.562224pt;}
.ws18_c00487{word-spacing:1.605792pt;}
.ws14_c00487{word-spacing:2.564288pt;}
.ws5_c00487{word-spacing:3.522784pt;}
.ws1e_c00487{word-spacing:3.846432pt;}
.ws1f_c00487{word-spacing:3.858880pt;}
.ws3_c00487{word-spacing:4.499952pt;}
.ws12_c00487{word-spacing:6.087072pt;}
.ws13_c00487{word-spacing:6.099520pt;}
.wsa_c00487{word-spacing:8.022736pt;}
.ws9_c00487{word-spacing:8.327712pt;}
.wsd_c00487{word-spacing:9.927280pt;}
.ws10_c00487{word-spacing:10.873328pt;}
.wsf_c00487{word-spacing:10.892000pt;}
.ws8_c00487{word-spacing:11.508176pt;}
.wsb_c00487{word-spacing:11.520624pt;}
.ws16_c00487{word-spacing:13.748816pt;}
.ws17_c00487{word-spacing:13.755040pt;}
.ws2_c00487{word-spacing:15.373280pt;}
.ws22_c00487{word-spacing:17.620144pt;}
.ws21_c00487{word-spacing:18.553744pt;}
.ws1d_c00487{word-spacing:21.111808pt;}
.ws1c_c00487{word-spacing:21.155376pt;}
.ws23_c00487{word-spacing:23.663648pt;}
.ws1b_c00487{word-spacing:30.155280pt;}
.ws1a_c00487{word-spacing:30.410464pt;}
.wsc_c00487{word-spacing:32.321232pt;}
._1_c00487{margin-left:-1.120320pt;}
._0_c00487{width:0.914928pt;}
.fs1_c00487{font-size:41.388800pt;}
.fs0_c00487{font-size:62.240000pt;}
.y0_c00487{bottom:0.000000pt;}
.y2_c00487{bottom:97.547527pt;}
.y1_c00487{bottom:115.387067pt;}
.y1f_c00487{bottom:157.787291pt;}
.y1e_c00487{bottom:184.667191pt;}
.y1d_c00487{bottom:211.467735pt;}
.y1c_c00487{bottom:238.347635pt;}
.y1b_c00487{bottom:280.747079pt;}
.y1a_c00487{bottom:307.547623pt;}
.y19_c00487{bottom:349.944759pt;}
.y18_c00487{bottom:376.824659pt;}
.y17_c00487{bottom:403.625203pt;}
.y16_c00487{bottom:430.505103pt;}
.y15_c00487{bottom:457.305647pt;}
.y14_c00487{bottom:484.106191pt;}
.y13_c00487{bottom:510.906735pt;}
.y12_c00487{bottom:537.786635pt;}
.y11_c00487{bottom:564.587179pt;}
.y10_c00487{bottom:591.467079pt;}
.yf_c00487{bottom:618.267623pt;}
.ye_c00487{bottom:660.666935pt;}
.yd_c00487{bottom:687.546835pt;}
.yc_c00487{bottom:714.347379pt;}
.yb_c00487{bottom:741.227279pt;}
.ya_c00487{bottom:768.027823pt;}
.y9_c00487{bottom:794.907723pt;}
.y8_c00487{bottom:821.787623pt;}
.y7_c00487{bottom:864.187171pt;}
.y6_c00487{bottom:890.987715pt;}
.y5_c00487{bottom:933.387159pt;}
.y4_c00487{bottom:960.267059pt;}
.y3_c00487{bottom:987.067603pt;}
.h2_c00487{height:55.645234pt;}
.h1_c00487{height:55.797187pt;}
.h3_c00487{height:65.482950pt;}
.h6_c00487{height:65.802470pt;}
.h4_c00487{height:65.904940pt;}
.h5_c00487{height:65.914178pt;}
.h0_c00487{height:1122.666667pt;}
.w0_c00487{width:793.333333pt;}
.x0_c00487{left:0.000000pt;}
.x2_c00487{left:73.520052pt;}
.x1_c00487{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_81a9ab1e2110ec2de0697ebb.woff2')format("woff");}.ff1_c00488{font-family:ff1_c00488;line-height:1.106934;font-style:normal;font-weight:normal;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_445a8bc64c7bbb5d0dab988b.woff2')format("woff");}.ff2_c00488{font-family:ff2_c00488;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00488;src:url('chunks/assets/font_906b254729ed269bbecab278.woff2')format("woff");}.ff3_c00488{font-family:ff3_c00488;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00488{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00488{vertical-align:0.000000px;}
.v1_c00488{vertical-align:32.399586px;}
.ls12_c00488{letter-spacing:-0.410246px;}
.ls11_c00488{letter-spacing:-0.182331px;}
.ls10_c00488{letter-spacing:-0.070020px;}
.ls5_c00488{letter-spacing:-0.063018px;}
.ls9_c00488{letter-spacing:-0.056016px;}
.ls13_c00488{letter-spacing:-0.049014px;}
.lsc_c00488{letter-spacing:-0.042012px;}
.lsa_c00488{letter-spacing:-0.035010px;}
.ls7_c00488{letter-spacing:-0.028008px;}
.ls8_c00488{letter-spacing:-0.021006px;}
.lse_c00488{letter-spacing:-0.014004px;}
.lsf_c00488{letter-spacing:-0.007002px;}
.ls6_c00488{letter-spacing:0.000000px;}
.ls4_c00488{letter-spacing:0.014004px;}
.ls1_c00488{letter-spacing:0.023281px;}
.ls2_c00488{letter-spacing:0.035010px;}
.ls0_c00488{letter-spacing:0.084024px;}
.ls3_c00488{letter-spacing:0.098028px;}
.lsb_c00488{letter-spacing:0.343098px;}
.lsd_c00488{letter-spacing:6.105744px;}
.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:-12.967628px;}
.wsd_c00488{word-spacing:-0.045583px;}
.ws13_c00488{word-spacing:-0.014004px;}
.ws1_c00488{word-spacing:0.000000px;}
.ws1e_c00488{word-spacing:0.329094px;}
.ws1f_c00488{word-spacing:0.357102px;}
.ws3_c00488{word-spacing:0.364104px;}
.ws19_c00488{word-spacing:0.371106px;}
.ws4_c00488{word-spacing:0.399114px;}
.wsc_c00488{word-spacing:0.413118px;}
.wse_c00488{word-spacing:0.448231px;}
.ws1a_c00488{word-spacing:0.714204px;}
.ws1b_c00488{word-spacing:1.449414px;}
.ws2_c00488{word-spacing:1.456416px;}
.ws1c_c00488{word-spacing:1.806516px;}
.ws17_c00488{word-spacing:4.705344px;}
.ws23_c00488{word-spacing:5.762646px;}
.ws8_c00488{word-spacing:6.105744px;}
.ws9_c00488{word-spacing:6.119748px;}
.ws14_c00488{word-spacing:7.212060px;}
.ws1d_c00488{word-spacing:11.518290px;}
.ws16_c00488{word-spacing:11.532294px;}
.ws15_c00488{word-spacing:11.546298px;}
.ws12_c00488{word-spacing:12.589596px;}
.ws10_c00488{word-spacing:15.369390px;}
.ws11_c00488{word-spacing:15.383394px;}
.wsf_c00488{word-spacing:15.789510px;}
.ws18_c00488{word-spacing:16.559730px;}
.ws6_c00488{word-spacing:18.737352px;}
.ws5_c00488{word-spacing:18.744354px;}
.ws20_c00488{word-spacing:18.758358px;}
.wsa_c00488{word-spacing:24.478992px;}
.wsb_c00488{word-spacing:24.836094px;}
.ws21_c00488{word-spacing:26.649612px;}
.ws22_c00488{word-spacing:27.041724px;}
.ws7_c00488{word-spacing:36.025290px;}
._3_c00488{margin-left:-5.139468px;}
._1_c00488{margin-left:-1.134324px;}
._0_c00488{width:1.456416px;}
._2_c00488{width:18.690300px;}
.fc0_c00488{color:rgb(0,0,0);}
.fs1_c00488{font-size:46.562400px;}
.fs3_c00488{font-size:64.067400px;}
.fs0_c00488{font-size:70.020000px;}
.fs2_c00488{font-size:75.971400px;}
.y0_c00488{bottom:0.000000px;}
.y2_c00488{bottom:109.740968px;}
.y1_c00488{bottom:129.810450px;}
.y21_c00488{bottom:158.607952px;}
.y20_c00488{bottom:188.847840px;}
.y1f_c00488{bottom:218.998452px;}
.y1e_c00488{bottom:249.238339px;}
.y1d_c00488{bottom:279.388951px;}
.y1c_c00488{bottom:309.628839px;}
.y1b_c00488{bottom:339.779451px;}
.y1a_c00488{bottom:370.019339px;}
.y19_c00488{bottom:400.169951px;}
.y18_c00488{bottom:430.409838px;}
.y17_c00488{bottom:460.558564px;}
.y16_c00488{bottom:490.798452px;}
.y15_c00488{bottom:520.949064px;}
.y14_c00488{bottom:551.188952px;}
.y13_c00488{bottom:581.339563px;}
.y12_c00488{bottom:611.579451px;}
.y11_c00488{bottom:641.730063px;}
.y10_c00488{bottom:671.969950px;}
.yf_c00488{bottom:702.120563px;}
.ye_c00488{bottom:732.360450px;}
.yd_c00488{bottom:761.250450px;}
.yc_c00488{bottom:784.740450px;}
.yb_c00488{bottom:833.881701px;}
.ya_c00488{bottom:881.581075px;}
.y9_c00488{bottom:929.279451px;}
.y8_c00488{bottom:959.519339px;}
.y7_c00488{bottom:989.669950px;}
.y6_c00488{bottom:1019.909838px;}
.y5_c00488{bottom:1050.060553px;}
.y4_c00488{bottom:1080.300441px;}
.y3_c00488{bottom:1110.451053px;}
.h7_c00488{height:57.842101px;}
.h4_c00488{height:62.600889px;}
.h1_c00488{height:62.771836px;}
.h3_c00488{height:63.216299px;}
.h6_c00488{height:68.589413px;}
.h5_c00488{height:73.673382px;}
.h8_c00488{height:74.036328px;}
.h2_c00488{height:74.142050px;}
.h0_c00488{height:1263.000000px;}
.w0_c00488{width:892.500000px;}
.x0_c00488{left:0.000000px;}
.x2_c00488{left:82.710059px;}
.x1_c00488{left:431.730000px;}
@media print{
.v0_c00488{vertical-align:0.000000pt;}
.v1_c00488{vertical-align:28.799632pt;}
.ls12_c00488{letter-spacing:-0.364663pt;}
.ls11_c00488{letter-spacing:-0.162072pt;}
.ls10_c00488{letter-spacing:-0.062240pt;}
.ls5_c00488{letter-spacing:-0.056016pt;}
.ls9_c00488{letter-spacing:-0.049792pt;}
.ls13_c00488{letter-spacing:-0.043568pt;}
.lsc_c00488{letter-spacing:-0.037344pt;}
.lsa_c00488{letter-spacing:-0.031120pt;}
.ls7_c00488{letter-spacing:-0.024896pt;}
.ls8_c00488{letter-spacing:-0.018672pt;}
.lse_c00488{letter-spacing:-0.012448pt;}
.lsf_c00488{letter-spacing:-0.006224pt;}
.ls6_c00488{letter-spacing:0.000000pt;}
.ls4_c00488{letter-spacing:0.012448pt;}
.ls1_c00488{letter-spacing:0.020694pt;}
.ls2_c00488{letter-spacing:0.031120pt;}
.ls0_c00488{letter-spacing:0.074688pt;}
.ls3_c00488{letter-spacing:0.087136pt;}
.lsb_c00488{letter-spacing:0.304976pt;}
.lsd_c00488{letter-spacing:5.427328pt;}
.ws0_c00488{word-spacing:-11.526781pt;}
.wsd_c00488{word-spacing:-0.040518pt;}
.ws13_c00488{word-spacing:-0.012448pt;}
.ws1_c00488{word-spacing:0.000000pt;}
.ws1e_c00488{word-spacing:0.292528pt;}
.ws1f_c00488{word-spacing:0.317424pt;}
.ws3_c00488{word-spacing:0.323648pt;}
.ws19_c00488{word-spacing:0.329872pt;}
.ws4_c00488{word-spacing:0.354768pt;}
.wsc_c00488{word-spacing:0.367216pt;}
.wse_c00488{word-spacing:0.398428pt;}
.ws1a_c00488{word-spacing:0.634848pt;}
.ws1b_c00488{word-spacing:1.288368pt;}
.ws2_c00488{word-spacing:1.294592pt;}
.ws1c_c00488{word-spacing:1.605792pt;}
.ws17_c00488{word-spacing:4.182528pt;}
.ws23_c00488{word-spacing:5.122352pt;}
.ws8_c00488{word-spacing:5.427328pt;}
.ws9_c00488{word-spacing:5.439776pt;}
.ws14_c00488{word-spacing:6.410720pt;}
.ws1d_c00488{word-spacing:10.238480pt;}
.ws16_c00488{word-spacing:10.250928pt;}
.ws15_c00488{word-spacing:10.263376pt;}
.ws12_c00488{word-spacing:11.190752pt;}
.ws10_c00488{word-spacing:13.661680pt;}
.ws11_c00488{word-spacing:13.674128pt;}
.wsf_c00488{word-spacing:14.035120pt;}
.ws18_c00488{word-spacing:14.719760pt;}
.ws6_c00488{word-spacing:16.655424pt;}
.ws5_c00488{word-spacing:16.661648pt;}
.ws20_c00488{word-spacing:16.674096pt;}
.wsa_c00488{word-spacing:21.759104pt;}
.wsb_c00488{word-spacing:22.076528pt;}
.ws21_c00488{word-spacing:23.688544pt;}
.ws22_c00488{word-spacing:24.037088pt;}
.ws7_c00488{word-spacing:32.022480pt;}
._3_c00488{margin-left:-4.568416pt;}
._1_c00488{margin-left:-1.008288pt;}
._0_c00488{width:1.294592pt;}
._2_c00488{width:16.613600pt;}
.fs1_c00488{font-size:41.388800pt;}
.fs3_c00488{font-size:56.948800pt;}
.fs0_c00488{font-size:62.240000pt;}
.fs2_c00488{font-size:67.530133pt;}
.y0_c00488{bottom:0.000000pt;}
.y2_c00488{bottom:97.547527pt;}
.y1_c00488{bottom:115.387067pt;}
.y21_c00488{bottom:140.984847pt;}
.y20_c00488{bottom:167.864747pt;}
.y1f_c00488{bottom:194.665291pt;}
.y1e_c00488{bottom:221.545191pt;}
.y1d_c00488{bottom:248.345735pt;}
.y1c_c00488{bottom:275.225635pt;}
.y1b_c00488{bottom:302.026179pt;}
.y1a_c00488{bottom:328.906079pt;}
.y19_c00488{bottom:355.706623pt;}
.y18_c00488{bottom:382.586523pt;}
.y17_c00488{bottom:409.385391pt;}
.y16_c00488{bottom:436.265291pt;}
.y15_c00488{bottom:463.065835pt;}
.y14_c00488{bottom:489.945735pt;}
.y13_c00488{bottom:516.746279pt;}
.y12_c00488{bottom:543.626179pt;}
.y11_c00488{bottom:570.426723pt;}
.y10_c00488{bottom:597.306623pt;}
.yf_c00488{bottom:624.107167pt;}
.ye_c00488{bottom:650.987067pt;}
.yd_c00488{bottom:676.667067pt;}
.yc_c00488{bottom:697.547067pt;}
.yb_c00488{bottom:741.228179pt;}
.ya_c00488{bottom:783.627623pt;}
.y9_c00488{bottom:826.026179pt;}
.y8_c00488{bottom:852.906079pt;}
.y7_c00488{bottom:879.706623pt;}
.y6_c00488{bottom:906.586523pt;}
.y5_c00488{bottom:933.387159pt;}
.y4_c00488{bottom:960.267059pt;}
.y3_c00488{bottom:987.067603pt;}
.h7_c00488{height:51.415201pt;}
.h4_c00488{height:55.645234pt;}
.h1_c00488{height:55.797187pt;}
.h3_c00488{height:56.192266pt;}
.h6_c00488{height:60.968367pt;}
.h5_c00488{height:65.487451pt;}
.h8_c00488{height:65.810070pt;}
.h2_c00488{height:65.904044pt;}
.h0_c00488{height:1122.666667pt;}
.w0_c00488{width:793.333333pt;}
.x0_c00488{left:0.000000pt;}
.x2_c00488{left:73.520052pt;}
.x1_c00488{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_97e1b9c72c79ee6ddd3c4930.woff2')format("woff");}.ff1_c00489{font-family:ff1_c00489;line-height:1.106934;font-style:normal;font-weight:normal;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_4efb7e7a0c5d04d3ef514297.woff2')format("woff");}.ff2_c00489{font-family:ff2_c00489;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00489{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00489{vertical-align:0.000000px;}
.v1_c00489{vertical-align:32.049576px;}
.lse_c00489{letter-spacing:-0.070020px;}
.ls4_c00489{letter-spacing:-0.063018px;}
.ls9_c00489{letter-spacing:-0.056016px;}
.lsd_c00489{letter-spacing:-0.042012px;}
.ls8_c00489{letter-spacing:-0.035010px;}
.ls6_c00489{letter-spacing:-0.028008px;}
.lsa_c00489{letter-spacing:-0.021006px;}
.ls7_c00489{letter-spacing:-0.014004px;}
.lsc_c00489{letter-spacing:-0.007002px;}
.ls5_c00489{letter-spacing:0.000000px;}
.ls3_c00489{letter-spacing:0.007002px;}
.ls2_c00489{letter-spacing:0.014004px;}
.ls1_c00489{letter-spacing:0.023281px;}
.ls0_c00489{letter-spacing:0.028008px;}
.lsf_c00489{letter-spacing:0.049014px;}
.lsb_c00489{letter-spacing:0.343098px;}
.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:-19.430550px;}
.ws1_c00489{word-spacing:-12.967628px;}
.ws2_c00489{word-spacing:0.000000px;}
.ws15_c00489{word-spacing:0.021006px;}
.wsb_c00489{word-spacing:0.042012px;}
.ws21_c00489{word-spacing:0.056016px;}
.wsf_c00489{word-spacing:0.364104px;}
.ws5_c00489{word-spacing:2.156616px;}
.ws11_c00489{word-spacing:2.877822px;}
.ws14_c00489{word-spacing:5.048442px;}
.ws3_c00489{word-spacing:5.720634px;}
.ws4_c00489{word-spacing:5.776650px;}
.ws8_c00489{word-spacing:6.854958px;}
.ws16_c00489{word-spacing:7.184052px;}
.ws10_c00489{word-spacing:7.919262px;}
.ws1a_c00489{word-spacing:8.990568px;}
.ws25_c00489{word-spacing:9.025578px;}
.ws1b_c00489{word-spacing:9.340668px;}
.ws26_c00489{word-spacing:9.396684px;}
.ws13_c00489{word-spacing:9.711774px;}
.ws12_c00489{word-spacing:10.096884px;}
.ws23_c00489{word-spacing:11.525292px;}
.ws18_c00489{word-spacing:13.331808px;}
.ws19_c00489{word-spacing:13.653900px;}
.ws24_c00489{word-spacing:18.002142px;}
.wsd_c00489{word-spacing:18.359244px;}
.wsc_c00489{word-spacing:18.366246px;}
.wse_c00489{word-spacing:18.373248px;}
.ws17_c00489{word-spacing:19.465560px;}
.wsa_c00489{word-spacing:20.886966px;}
.ws1f_c00489{word-spacing:21.244068px;}
.ws9_c00489{word-spacing:21.251070px;}
.ws1e_c00489{word-spacing:21.258072px;}
.ws20_c00489{word-spacing:21.594168px;}
.ws1d_c00489{word-spacing:23.022576px;}
.ws1c_c00489{word-spacing:23.029578px;}
.ws7_c00489{word-spacing:24.464988px;}
.ws6_c00489{word-spacing:24.499998px;}
.ws22_c00489{word-spacing:79.927830px;}
._2_c00489{margin-left:-7.268076px;}
._1_c00489{margin-left:-1.022292px;}
._0_c00489{width:1.302372px;}
.fc0_c00489{color:rgb(0,0,0);}
.fs1_c00489{font-size:46.562400px;}
.fs0_c00489{font-size:70.020000px;}
.y0_c00489{bottom:0.000000px;}
.y2_c00489{bottom:109.740968px;}
.y1_c00489{bottom:129.810450px;}
.y21_c00489{bottom:204.688839px;}
.y20_c00489{bottom:234.839451px;}
.y1f_c00489{bottom:265.079339px;}
.y1e_c00489{bottom:295.229951px;}
.y1d_c00489{bottom:325.469838px;}
.y1c_c00489{bottom:355.618591px;}
.y1b_c00489{bottom:385.858479px;}
.y1a_c00489{bottom:416.009091px;}
.y19_c00489{bottom:446.248978px;}
.y18_c00489{bottom:476.399590px;}
.y17_c00489{bottom:506.639478px;}
.y16_c00489{bottom:536.790090px;}
.y15_c00489{bottom:567.029977px;}
.y14_c00489{bottom:597.089563px;}
.y13_c00489{bottom:627.329451px;}
.y12_c00489{bottom:657.480063px;}
.y11_c00489{bottom:687.719950px;}
.y10_c00489{bottom:717.870563px;}
.yf_c00489{bottom:748.108056px;}
.ye_c00489{bottom:778.258668px;}
.yd_c00489{bottom:808.498556px;}
.yc_c00489{bottom:838.649168px;}
.yb_c00489{bottom:868.889055px;}
.ya_c00489{bottom:899.039667px;}
.y9_c00489{bottom:929.279555px;}
.y8_c00489{bottom:959.519442px;}
.y7_c00489{bottom:989.670054px;}
.y6_c00489{bottom:1019.909942px;}
.y5_c00489{bottom:1050.060553px;}
.y4_c00489{bottom:1080.300441px;}
.y3_c00489{bottom:1110.451053px;}
.h2_c00489{height:62.600889px;}
.h1_c00489{height:62.771836px;}
.h3_c00489{height:73.678362px;}
.h4_c00489{height:74.036220px;}
.h0_c00489{height:1263.000000px;}
.w0_c00489{width:892.500000px;}
.x0_c00489{left:0.000000px;}
.x2_c00489{left:82.710059px;}
.x1_c00489{left:431.730000px;}
@media print{
.v0_c00489{vertical-align:0.000000pt;}
.v1_c00489{vertical-align:28.488512pt;}
.lse_c00489{letter-spacing:-0.062240pt;}
.ls4_c00489{letter-spacing:-0.056016pt;}
.ls9_c00489{letter-spacing:-0.049792pt;}
.lsd_c00489{letter-spacing:-0.037344pt;}
.ls8_c00489{letter-spacing:-0.031120pt;}
.ls6_c00489{letter-spacing:-0.024896pt;}
.lsa_c00489{letter-spacing:-0.018672pt;}
.ls7_c00489{letter-spacing:-0.012448pt;}
.lsc_c00489{letter-spacing:-0.006224pt;}
.ls5_c00489{letter-spacing:0.000000pt;}
.ls3_c00489{letter-spacing:0.006224pt;}
.ls2_c00489{letter-spacing:0.012448pt;}
.ls1_c00489{letter-spacing:0.020694pt;}
.ls0_c00489{letter-spacing:0.024896pt;}
.lsf_c00489{letter-spacing:0.043568pt;}
.lsb_c00489{letter-spacing:0.304976pt;}
.ws0_c00489{word-spacing:-17.271600pt;}
.ws1_c00489{word-spacing:-11.526781pt;}
.ws2_c00489{word-spacing:0.000000pt;}
.ws15_c00489{word-spacing:0.018672pt;}
.wsb_c00489{word-spacing:0.037344pt;}
.ws21_c00489{word-spacing:0.049792pt;}
.wsf_c00489{word-spacing:0.323648pt;}
.ws5_c00489{word-spacing:1.916992pt;}
.ws11_c00489{word-spacing:2.558064pt;}
.ws14_c00489{word-spacing:4.487504pt;}
.ws3_c00489{word-spacing:5.085008pt;}
.ws4_c00489{word-spacing:5.134800pt;}
.ws8_c00489{word-spacing:6.093296pt;}
.ws16_c00489{word-spacing:6.385824pt;}
.ws10_c00489{word-spacing:7.039344pt;}
.ws1a_c00489{word-spacing:7.991616pt;}
.ws25_c00489{word-spacing:8.022736pt;}
.ws1b_c00489{word-spacing:8.302816pt;}
.ws26_c00489{word-spacing:8.352608pt;}
.ws13_c00489{word-spacing:8.632688pt;}
.ws12_c00489{word-spacing:8.975008pt;}
.ws23_c00489{word-spacing:10.244704pt;}
.ws18_c00489{word-spacing:11.850496pt;}
.ws19_c00489{word-spacing:12.136800pt;}
.ws24_c00489{word-spacing:16.001904pt;}
.wsd_c00489{word-spacing:16.319328pt;}
.wsc_c00489{word-spacing:16.325552pt;}
.wse_c00489{word-spacing:16.331776pt;}
.ws17_c00489{word-spacing:17.302720pt;}
.wsa_c00489{word-spacing:18.566192pt;}
.ws1f_c00489{word-spacing:18.883616pt;}
.ws9_c00489{word-spacing:18.889840pt;}
.ws1e_c00489{word-spacing:18.896064pt;}
.ws20_c00489{word-spacing:19.194816pt;}
.ws1d_c00489{word-spacing:20.464512pt;}
.ws1c_c00489{word-spacing:20.470736pt;}
.ws7_c00489{word-spacing:21.746656pt;}
.ws6_c00489{word-spacing:21.777776pt;}
.ws22_c00489{word-spacing:71.046960pt;}
._2_c00489{margin-left:-6.460512pt;}
._1_c00489{margin-left:-0.908704pt;}
._0_c00489{width:1.157664pt;}
.fs1_c00489{font-size:41.388800pt;}
.fs0_c00489{font-size:62.240000pt;}
.y0_c00489{bottom:0.000000pt;}
.y2_c00489{bottom:97.547527pt;}
.y1_c00489{bottom:115.387067pt;}
.y21_c00489{bottom:181.945635pt;}
.y20_c00489{bottom:208.746179pt;}
.y1f_c00489{bottom:235.626079pt;}
.y1e_c00489{bottom:262.426623pt;}
.y1d_c00489{bottom:289.306523pt;}
.y1c_c00489{bottom:316.105415pt;}
.y1b_c00489{bottom:342.985315pt;}
.y1a_c00489{bottom:369.785859pt;}
.y19_c00489{bottom:396.665759pt;}
.y18_c00489{bottom:423.466303pt;}
.y17_c00489{bottom:450.346203pt;}
.y16_c00489{bottom:477.146747pt;}
.y15_c00489{bottom:504.026647pt;}
.y14_c00489{bottom:530.746279pt;}
.y13_c00489{bottom:557.626179pt;}
.y12_c00489{bottom:584.426723pt;}
.y11_c00489{bottom:611.306623pt;}
.y10_c00489{bottom:638.107167pt;}
.yf_c00489{bottom:664.984939pt;}
.ye_c00489{bottom:691.785483pt;}
.yd_c00489{bottom:718.665383pt;}
.yc_c00489{bottom:745.465927pt;}
.yb_c00489{bottom:772.345827pt;}
.ya_c00489{bottom:799.146371pt;}
.y9_c00489{bottom:826.026271pt;}
.y8_c00489{bottom:852.906171pt;}
.y7_c00489{bottom:879.706715pt;}
.y6_c00489{bottom:906.586615pt;}
.y5_c00489{bottom:933.387159pt;}
.y4_c00489{bottom:960.267059pt;}
.y3_c00489{bottom:987.067603pt;}
.h2_c00489{height:55.645234pt;}
.h1_c00489{height:55.797187pt;}
.h3_c00489{height:65.491878pt;}
.h4_c00489{height:65.809974pt;}
.h0_c00489{height:1122.666667pt;}
.w0_c00489{width:793.333333pt;}
.x0_c00489{left:0.000000pt;}
.x2_c00489{left:73.520052pt;}
.x1_c00489{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5f43d601f908c7bf49a312cc.woff2')format("woff");}.ff1_c00490{font-family:ff1_c00490;line-height:1.106934;font-style:normal;font-weight:normal;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_23af955b133804d1974d12be.woff2')format("woff");}.ff2_c00490{font-family:ff2_c00490;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00490{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00490{vertical-align:-32.040000px;}
.v0_c00490{vertical-align:0.000000px;}
.v2_c00490{vertical-align:32.043996px;}
.ls6_c00490{letter-spacing:-0.063018px;}
.lsc_c00490{letter-spacing:-0.056016px;}
.lsd_c00490{letter-spacing:-0.042012px;}
.lsb_c00490{letter-spacing:-0.035010px;}
.ls8_c00490{letter-spacing:-0.028008px;}
.lsa_c00490{letter-spacing:-0.021006px;}
.ls9_c00490{letter-spacing:-0.014004px;}
.lse_c00490{letter-spacing:-0.007002px;}
.ls7_c00490{letter-spacing:0.000000px;}
.ls3_c00490{letter-spacing:0.007002px;}
.ls1_c00490{letter-spacing:0.014004px;}
.ls0_c00490{letter-spacing:0.023281px;}
.ls4_c00490{letter-spacing:0.028008px;}
.ls5_c00490{letter-spacing:0.035010px;}
.ls2_c00490{letter-spacing:0.049014px;}
.lsf_c00490{letter-spacing:0.084024px;}
.ls10_c00490{letter-spacing:0.343098px;}
.sc__c00490{text-shadow:none;}
.sc0_c00490{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00490{-webkit-text-stroke:0px transparent;}
.sc0_c00490{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00490{word-spacing:-19.549584px;}
.ws1_c00490{word-spacing:-19.430550px;}
.ws0_c00490{word-spacing:-12.967628px;}
.ws19_c00490{word-spacing:-0.049014px;}
.ws17_c00490{word-spacing:-0.042012px;}
.ws1a_c00490{word-spacing:-0.007002px;}
.ws3_c00490{word-spacing:0.000000px;}
.ws10_c00490{word-spacing:0.007002px;}
.wsf_c00490{word-spacing:0.014004px;}
.ws8_c00490{word-spacing:0.021006px;}
.ws15_c00490{word-spacing:0.028008px;}
.ws16_c00490{word-spacing:0.294084px;}
.ws18_c00490{word-spacing:0.364104px;}
.ws1c_c00490{word-spacing:0.399114px;}
.ws1f_c00490{word-spacing:2.163618px;}
.ws12_c00490{word-spacing:2.541726px;}
.ws20_c00490{word-spacing:4.691340px;}
.ws9_c00490{word-spacing:5.027436px;}
.ws1d_c00490{word-spacing:6.147756px;}
.ws4_c00490{word-spacing:7.576164px;}
.wsa_c00490{word-spacing:8.290368px;}
.ws13_c00490{word-spacing:10.467990px;}
.ws1b_c00490{word-spacing:10.783080px;}
.ws7_c00490{word-spacing:10.804086px;}
.ws11_c00490{word-spacing:12.610602px;}
.wsd_c00490{word-spacing:12.897684px;}
.ws6_c00490{word-spacing:13.653900px;}
.wse_c00490{word-spacing:13.660902px;}
.ws5_c00490{word-spacing:14.011002px;}
.wsc_c00490{word-spacing:14.417118px;}
.wsb_c00490{word-spacing:14.445126px;}
.ws14_c00490{word-spacing:18.016146px;}
.ws1e_c00490{word-spacing:18.359244px;}
._1_c00490{margin-left:-1.267362px;}
._0_c00490{width:1.001286px;}
.fc0_c00490{color:rgb(0,0,0);}
.fs1_c00490{font-size:46.562400px;}
.fs0_c00490{font-size:70.020000px;}
.y0_c00490{bottom:0.000000px;}
.y2_c00490{bottom:109.740968px;}
.y1_c00490{bottom:129.810450px;}
.y22_c00490{bottom:174.449564px;}
.y21_c00490{bottom:204.689451px;}
.y20_c00490{bottom:234.840063px;}
.y1f_c00490{bottom:265.079951px;}
.y1e_c00490{bottom:295.230563px;}
.y1d_c00490{bottom:325.468951px;}
.y1c_c00490{bottom:355.619563px;}
.y1b_c00490{bottom:385.859451px;}
.y1a_c00490{bottom:416.010063px;}
.y19_c00490{bottom:446.249950px;}
.y18_c00490{bottom:476.400562px;}
.y17_c00490{bottom:506.639865px;}
.y16_c00490{bottom:536.790477px;}
.y15_c00490{bottom:567.030365px;}
.y14_c00490{bottom:597.089950px;}
.y13_c00490{bottom:627.329838px;}
.y12_c00490{bottom:657.478677px;}
.y11_c00490{bottom:687.718565px;}
.y10_c00490{bottom:717.869177px;}
.yf_c00490{bottom:748.109064px;}
.ye_c00490{bottom:778.259676px;}
.yd_c00490{bottom:808.499564px;}
.yc_c00490{bottom:838.650176px;}
.yb_c00490{bottom:868.890063px;}
.ya_c00490{bottom:899.040675px;}
.y9_c00490{bottom:929.280563px;}
.y8_c00490{bottom:959.519451px;}
.y7_c00490{bottom:989.670063px;}
.y6_c00490{bottom:1019.909951px;}
.y5_c00490{bottom:1050.060563px;}
.y4_c00490{bottom:1088.310450px;}
.y3_c00490{bottom:1110.451053px;}
.h2_c00490{height:41.742464px;}
.h3_c00490{height:62.600889px;}
.h1_c00490{height:62.771836px;}
.h6_c00490{height:73.671126px;}
.h4_c00490{height:73.672782px;}
.h7_c00490{height:73.788458px;}
.h5_c00490{height:74.035878px;}
.h0_c00490{height:1263.000000px;}
.w0_c00490{width:892.500000px;}
.x0_c00490{left:0.000000px;}
.x2_c00490{left:82.710059px;}
.x1_c00490{left:431.730000px;}
@media print{
.v1_c00490{vertical-align:-28.480000pt;}
.v0_c00490{vertical-align:0.000000pt;}
.v2_c00490{vertical-align:28.483552pt;}
.ls6_c00490{letter-spacing:-0.056016pt;}
.lsc_c00490{letter-spacing:-0.049792pt;}
.lsd_c00490{letter-spacing:-0.037344pt;}
.lsb_c00490{letter-spacing:-0.031120pt;}
.ls8_c00490{letter-spacing:-0.024896pt;}
.lsa_c00490{letter-spacing:-0.018672pt;}
.ls9_c00490{letter-spacing:-0.012448pt;}
.lse_c00490{letter-spacing:-0.006224pt;}
.ls7_c00490{letter-spacing:0.000000pt;}
.ls3_c00490{letter-spacing:0.006224pt;}
.ls1_c00490{letter-spacing:0.012448pt;}
.ls0_c00490{letter-spacing:0.020694pt;}
.ls4_c00490{letter-spacing:0.024896pt;}
.ls5_c00490{letter-spacing:0.031120pt;}
.ls2_c00490{letter-spacing:0.043568pt;}
.lsf_c00490{letter-spacing:0.074688pt;}
.ls10_c00490{letter-spacing:0.304976pt;}
.ws2_c00490{word-spacing:-17.377408pt;}
.ws1_c00490{word-spacing:-17.271600pt;}
.ws0_c00490{word-spacing:-11.526781pt;}
.ws19_c00490{word-spacing:-0.043568pt;}
.ws17_c00490{word-spacing:-0.037344pt;}
.ws1a_c00490{word-spacing:-0.006224pt;}
.ws3_c00490{word-spacing:0.000000pt;}
.ws10_c00490{word-spacing:0.006224pt;}
.wsf_c00490{word-spacing:0.012448pt;}
.ws8_c00490{word-spacing:0.018672pt;}
.ws15_c00490{word-spacing:0.024896pt;}
.ws16_c00490{word-spacing:0.261408pt;}
.ws18_c00490{word-spacing:0.323648pt;}
.ws1c_c00490{word-spacing:0.354768pt;}
.ws1f_c00490{word-spacing:1.923216pt;}
.ws12_c00490{word-spacing:2.259312pt;}
.ws20_c00490{word-spacing:4.170080pt;}
.ws9_c00490{word-spacing:4.468832pt;}
.ws1d_c00490{word-spacing:5.464672pt;}
.ws4_c00490{word-spacing:6.734368pt;}
.wsa_c00490{word-spacing:7.369216pt;}
.ws13_c00490{word-spacing:9.304880pt;}
.ws1b_c00490{word-spacing:9.584960pt;}
.ws7_c00490{word-spacing:9.603632pt;}
.ws11_c00490{word-spacing:11.209424pt;}
.wsd_c00490{word-spacing:11.464608pt;}
.ws6_c00490{word-spacing:12.136800pt;}
.wse_c00490{word-spacing:12.143024pt;}
.ws5_c00490{word-spacing:12.454224pt;}
.wsc_c00490{word-spacing:12.815216pt;}
.wsb_c00490{word-spacing:12.840112pt;}
.ws14_c00490{word-spacing:16.014352pt;}
.ws1e_c00490{word-spacing:16.319328pt;}
._1_c00490{margin-left:-1.126544pt;}
._0_c00490{width:0.890032pt;}
.fs1_c00490{font-size:41.388800pt;}
.fs0_c00490{font-size:62.240000pt;}
.y0_c00490{bottom:0.000000pt;}
.y2_c00490{bottom:97.547527pt;}
.y1_c00490{bottom:115.387067pt;}
.y22_c00490{bottom:155.066279pt;}
.y21_c00490{bottom:181.946179pt;}
.y20_c00490{bottom:208.746723pt;}
.y1f_c00490{bottom:235.626623pt;}
.y1e_c00490{bottom:262.427167pt;}
.y1d_c00490{bottom:289.305735pt;}
.y1c_c00490{bottom:316.106279pt;}
.y1b_c00490{bottom:342.986179pt;}
.y1a_c00490{bottom:369.786723pt;}
.y19_c00490{bottom:396.666623pt;}
.y18_c00490{bottom:423.467167pt;}
.y17_c00490{bottom:450.346547pt;}
.y16_c00490{bottom:477.147091pt;}
.y15_c00490{bottom:504.026991pt;}
.y14_c00490{bottom:530.746623pt;}
.y13_c00490{bottom:557.626523pt;}
.y12_c00490{bottom:584.425491pt;}
.y11_c00490{bottom:611.305391pt;}
.y10_c00490{bottom:638.105935pt;}
.yf_c00490{bottom:664.985835pt;}
.ye_c00490{bottom:691.786379pt;}
.yd_c00490{bottom:718.666279pt;}
.yc_c00490{bottom:745.466823pt;}
.yb_c00490{bottom:772.346723pt;}
.ya_c00490{bottom:799.147267pt;}
.y9_c00490{bottom:826.027167pt;}
.y8_c00490{bottom:852.906179pt;}
.y7_c00490{bottom:879.706723pt;}
.y6_c00490{bottom:906.586623pt;}
.y5_c00490{bottom:933.387167pt;}
.y4_c00490{bottom:967.387067pt;}
.y3_c00490{bottom:987.067603pt;}
.h2_c00490{height:37.104412pt;}
.h3_c00490{height:55.645234pt;}
.h1_c00490{height:55.797187pt;}
.h6_c00490{height:65.485446pt;}
.h4_c00490{height:65.486918pt;}
.h7_c00490{height:65.589741pt;}
.h5_c00490{height:65.809670pt;}
.h0_c00490{height:1122.666667pt;}
.w0_c00490{width:793.333333pt;}
.x0_c00490{left:0.000000pt;}
.x2_c00490{left:73.520052pt;}
.x1_c00490{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8b7cbd071522856f42790e6f.woff2')format("woff");}.ff1_c00491{font-family:ff1_c00491;line-height:1.106934;font-style:normal;font-weight:normal;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_bdd507bdec81f8b6bfdb67c9.woff2')format("woff");}.ff2_c00491{font-family:ff2_c00491;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00491{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00491{vertical-align:-32.040000px;}
.v0_c00491{vertical-align:0.000000px;}
.v1_c00491{vertical-align:32.041584px;}
.ls5_c00491{letter-spacing:-0.063018px;}
.lsa_c00491{letter-spacing:-0.042012px;}
.ls8_c00491{letter-spacing:-0.035010px;}
.ls7_c00491{letter-spacing:-0.028008px;}
.lsb_c00491{letter-spacing:-0.021006px;}
.lsc_c00491{letter-spacing:-0.014004px;}
.ls9_c00491{letter-spacing:-0.007002px;}
.ls6_c00491{letter-spacing:0.000000px;}
.ls3_c00491{letter-spacing:0.007002px;}
.ls0_c00491{letter-spacing:0.014004px;}
.ls4_c00491{letter-spacing:0.021006px;}
.ls2_c00491{letter-spacing:0.023281px;}
.ls1_c00491{letter-spacing:0.028008px;}
.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:-12.967628px;}
.ws5_c00491{word-spacing:-0.042012px;}
.ws1b_c00491{word-spacing:-0.014004px;}
.ws1_c00491{word-spacing:0.000000px;}
.wse_c00491{word-spacing:0.007002px;}
.ws16_c00491{word-spacing:0.014004px;}
.ws3_c00491{word-spacing:0.021006px;}
.wsc_c00491{word-spacing:0.028008px;}
.ws15_c00491{word-spacing:1.470420px;}
.ws11_c00491{word-spacing:1.820520px;}
.ws1f_c00491{word-spacing:2.898828px;}
.ws21_c00491{word-spacing:3.220920px;}
.ws20_c00491{word-spacing:3.227922px;}
.ws1a_c00491{word-spacing:3.248928px;}
.ws1e_c00491{word-spacing:3.262932px;}
.ws8_c00491{word-spacing:4.299228px;}
.ws9_c00491{word-spacing:4.313232px;}
.ws2_c00491{word-spacing:4.691340px;}
.wsb_c00491{word-spacing:5.755644px;}
.wsa_c00491{word-spacing:5.776650px;}
.wsd_c00491{word-spacing:6.098742px;}
.ws6_c00491{word-spacing:9.340668px;}
.ws7_c00491{word-spacing:9.375678px;}
.ws10_c00491{word-spacing:9.732780px;}
.ws13_c00491{word-spacing:11.161188px;}
.ws12_c00491{word-spacing:11.497284px;}
.wsf_c00491{word-spacing:12.253500px;}
.ws1d_c00491{word-spacing:12.974706px;}
.ws18_c00491{word-spacing:13.709916px;}
.ws14_c00491{word-spacing:14.067018px;}
.ws4_c00491{word-spacing:15.810516px;}
.ws1c_c00491{word-spacing:17.638038px;}
.ws17_c00491{word-spacing:21.923262px;}
.ws19_c00491{word-spacing:26.292510px;}
._1_c00491{margin-left:-1.048266px;}
._0_c00491{width:1.281366px;}
.fc0_c00491{color:rgb(0,0,0);}
.fs1_c00491{font-size:46.562400px;}
.fs0_c00491{font-size:70.020000px;}
.y0_c00491{bottom:0.000000px;}
.y2_c00491{bottom:109.740968px;}
.y1_c00491{bottom:129.810450px;}
.y22_c00491{bottom:174.445982px;}
.y21_c00491{bottom:204.685869px;}
.y20_c00491{bottom:234.836481px;}
.y1f_c00491{bottom:265.076369px;}
.y1e_c00491{bottom:295.226981px;}
.y1d_c00491{bottom:325.466868px;}
.y1c_c00491{bottom:355.617480px;}
.y1b_c00491{bottom:385.857368px;}
.y1a_c00491{bottom:416.007980px;}
.y19_c00491{bottom:446.247867px;}
.y18_c00491{bottom:476.398479px;}
.y17_c00491{bottom:506.638367px;}
.y16_c00491{bottom:536.788978px;}
.y15_c00491{bottom:567.028866px;}
.y14_c00491{bottom:597.088452px;}
.y13_c00491{bottom:627.328340px;}
.y12_c00491{bottom:657.478952px;}
.y11_c00491{bottom:687.718839px;}
.y10_c00491{bottom:717.869451px;}
.yf_c00491{bottom:748.109339px;}
.ye_c00491{bottom:778.259951px;}
.yd_c00491{bottom:808.499838px;}
.yc_c00491{bottom:838.649564px;}
.yb_c00491{bottom:868.889451px;}
.ya_c00491{bottom:899.040063px;}
.y9_c00491{bottom:929.279951px;}
.y8_c00491{bottom:959.519838px;}
.y7_c00491{bottom:989.670054px;}
.y6_c00491{bottom:1019.909942px;}
.y5_c00491{bottom:1050.060553px;}
.y4_c00491{bottom:1080.300441px;}
.y3_c00491{bottom:1110.451053px;}
.h2_c00491{height:62.600889px;}
.h1_c00491{height:62.771836px;}
.h3_c00491{height:73.670370px;}
.h4_c00491{height:74.032332px;}
.h0_c00491{height:1263.000000px;}
.w0_c00491{width:892.500000px;}
.x0_c00491{left:0.000000px;}
.x2_c00491{left:82.710059px;}
.x1_c00491{left:431.730000px;}
@media print{
.v2_c00491{vertical-align:-28.480000pt;}
.v0_c00491{vertical-align:0.000000pt;}
.v1_c00491{vertical-align:28.481408pt;}
.ls5_c00491{letter-spacing:-0.056016pt;}
.lsa_c00491{letter-spacing:-0.037344pt;}
.ls8_c00491{letter-spacing:-0.031120pt;}
.ls7_c00491{letter-spacing:-0.024896pt;}
.lsb_c00491{letter-spacing:-0.018672pt;}
.lsc_c00491{letter-spacing:-0.012448pt;}
.ls9_c00491{letter-spacing:-0.006224pt;}
.ls6_c00491{letter-spacing:0.000000pt;}
.ls3_c00491{letter-spacing:0.006224pt;}
.ls0_c00491{letter-spacing:0.012448pt;}
.ls4_c00491{letter-spacing:0.018672pt;}
.ls2_c00491{letter-spacing:0.020694pt;}
.ls1_c00491{letter-spacing:0.024896pt;}
.ws0_c00491{word-spacing:-11.526781pt;}
.ws5_c00491{word-spacing:-0.037344pt;}
.ws1b_c00491{word-spacing:-0.012448pt;}
.ws1_c00491{word-spacing:0.000000pt;}
.wse_c00491{word-spacing:0.006224pt;}
.ws16_c00491{word-spacing:0.012448pt;}
.ws3_c00491{word-spacing:0.018672pt;}
.wsc_c00491{word-spacing:0.024896pt;}
.ws15_c00491{word-spacing:1.307040pt;}
.ws11_c00491{word-spacing:1.618240pt;}
.ws1f_c00491{word-spacing:2.576736pt;}
.ws21_c00491{word-spacing:2.863040pt;}
.ws20_c00491{word-spacing:2.869264pt;}
.ws1a_c00491{word-spacing:2.887936pt;}
.ws1e_c00491{word-spacing:2.900384pt;}
.ws8_c00491{word-spacing:3.821536pt;}
.ws9_c00491{word-spacing:3.833984pt;}
.ws2_c00491{word-spacing:4.170080pt;}
.wsb_c00491{word-spacing:5.116128pt;}
.wsa_c00491{word-spacing:5.134800pt;}
.wsd_c00491{word-spacing:5.421104pt;}
.ws6_c00491{word-spacing:8.302816pt;}
.ws7_c00491{word-spacing:8.333936pt;}
.ws10_c00491{word-spacing:8.651360pt;}
.ws13_c00491{word-spacing:9.921056pt;}
.ws12_c00491{word-spacing:10.219808pt;}
.wsf_c00491{word-spacing:10.892000pt;}
.ws1d_c00491{word-spacing:11.533072pt;}
.ws18_c00491{word-spacing:12.186592pt;}
.ws14_c00491{word-spacing:12.504016pt;}
.ws4_c00491{word-spacing:14.053792pt;}
.ws1c_c00491{word-spacing:15.678256pt;}
.ws17_c00491{word-spacing:19.487344pt;}
.ws19_c00491{word-spacing:23.371120pt;}
._1_c00491{margin-left:-0.931792pt;}
._0_c00491{width:1.138992pt;}
.fs1_c00491{font-size:41.388800pt;}
.fs0_c00491{font-size:62.240000pt;}
.y0_c00491{bottom:0.000000pt;}
.y2_c00491{bottom:97.547527pt;}
.y1_c00491{bottom:115.387067pt;}
.y22_c00491{bottom:155.063095pt;}
.y21_c00491{bottom:181.942995pt;}
.y20_c00491{bottom:208.743539pt;}
.y1f_c00491{bottom:235.623439pt;}
.y1e_c00491{bottom:262.423983pt;}
.y1d_c00491{bottom:289.303883pt;}
.y1c_c00491{bottom:316.104427pt;}
.y1b_c00491{bottom:342.984327pt;}
.y1a_c00491{bottom:369.784871pt;}
.y19_c00491{bottom:396.664771pt;}
.y18_c00491{bottom:423.465315pt;}
.y17_c00491{bottom:450.345215pt;}
.y16_c00491{bottom:477.145759pt;}
.y15_c00491{bottom:504.025659pt;}
.y14_c00491{bottom:530.745291pt;}
.y13_c00491{bottom:557.625191pt;}
.y12_c00491{bottom:584.425735pt;}
.y11_c00491{bottom:611.305635pt;}
.y10_c00491{bottom:638.106179pt;}
.yf_c00491{bottom:664.986079pt;}
.ye_c00491{bottom:691.786623pt;}
.yd_c00491{bottom:718.666523pt;}
.yc_c00491{bottom:745.466279pt;}
.yb_c00491{bottom:772.346179pt;}
.ya_c00491{bottom:799.146723pt;}
.y9_c00491{bottom:826.026623pt;}
.y8_c00491{bottom:852.906523pt;}
.y7_c00491{bottom:879.706715pt;}
.y6_c00491{bottom:906.586615pt;}
.y5_c00491{bottom:933.387159pt;}
.y4_c00491{bottom:960.267059pt;}
.y3_c00491{bottom:987.067603pt;}
.h2_c00491{height:55.645234pt;}
.h1_c00491{height:55.797187pt;}
.h3_c00491{height:65.484774pt;}
.h4_c00491{height:65.806518pt;}
.h0_c00491{height:1122.666667pt;}
.w0_c00491{width:793.333333pt;}
.x0_c00491{left:0.000000pt;}
.x2_c00491{left:73.520052pt;}
.x1_c00491{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1bbc505efdc17d6792a92f50.woff2')format("woff");}.ff1_c00492{font-family:ff1_c00492;line-height:1.106934;font-style:normal;font-weight:normal;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_0cfa2681378590985ac672d0.woff2')format("woff");}.ff2_c00492{font-family:ff2_c00492;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00492{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00492{vertical-align:0.000000px;}
.v1_c00492{vertical-align:32.041584px;}
.lsb_c00492{letter-spacing:-0.091026px;}
.lse_c00492{letter-spacing:-0.070020px;}
.ls3_c00492{letter-spacing:-0.063018px;}
.lsd_c00492{letter-spacing:-0.056016px;}
.ls9_c00492{letter-spacing:-0.049014px;}
.ls5_c00492{letter-spacing:-0.042012px;}
.lsc_c00492{letter-spacing:-0.035010px;}
.lsa_c00492{letter-spacing:-0.028008px;}
.ls6_c00492{letter-spacing:-0.021006px;}
.ls8_c00492{letter-spacing:-0.014004px;}
.ls7_c00492{letter-spacing:-0.007002px;}
.ls4_c00492{letter-spacing:0.000000px;}
.ls1_c00492{letter-spacing:0.007002px;}
.ls2_c00492{letter-spacing:0.014004px;}
.ls0_c00492{letter-spacing:0.023281px;}
.lsf_c00492{letter-spacing:0.343098px;}
.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:-12.967628px;}
.ws11_c00492{word-spacing:-0.028008px;}
.ws1_c00492{word-spacing:0.000000px;}
.ws19_c00492{word-spacing:0.014004px;}
.ws9_c00492{word-spacing:0.049014px;}
.ws12_c00492{word-spacing:0.077022px;}
.ws17_c00492{word-spacing:0.336096px;}
.ws1c_c00492{word-spacing:1.085310px;}
.ws16_c00492{word-spacing:1.120320px;}
.ws7_c00492{word-spacing:1.834524px;}
.ws8_c00492{word-spacing:2.513718px;}
.ws2_c00492{word-spacing:2.548728px;}
.ws14_c00492{word-spacing:3.213918px;}
.wsf_c00492{word-spacing:3.248928px;}
.ws13_c00492{word-spacing:3.290940px;}
.ws10_c00492{word-spacing:4.313232px;}
.ws1a_c00492{word-spacing:4.663332px;}
.ws5_c00492{word-spacing:5.027436px;}
.ws4_c00492{word-spacing:5.034438px;}
.ws3_c00492{word-spacing:5.048442px;}
.wsd_c00492{word-spacing:6.098742px;}
.wsc_c00492{word-spacing:6.112746px;}
.ws6_c00492{word-spacing:6.476850px;}
.ws1d_c00492{word-spacing:7.212060px;}
.ws1e_c00492{word-spacing:9.382680px;}
.ws18_c00492{word-spacing:9.732780px;}
.ws1f_c00492{word-spacing:15.124320px;}
.wse_c00492{word-spacing:15.460416px;}
.wsb_c00492{word-spacing:15.474420px;}
.ws15_c00492{word-spacing:27.734922px;}
.ws1b_c00492{word-spacing:30.934836px;}
.wsa_c00492{word-spacing:41.052726px;}
._1_c00492{margin-left:-1.351386px;}
._0_c00492{width:1.057302px;}
._2_c00492{width:4.033152px;}
._3_c00492{width:31.046868px;}
.fc0_c00492{color:rgb(0,0,0);}
.fs1_c00492{font-size:46.562400px;}
.fs0_c00492{font-size:70.020000px;}
.y0_c00492{bottom:0.000000px;}
.y2_c00492{bottom:109.740968px;}
.y1_c00492{bottom:129.810450px;}
.y22_c00492{bottom:174.449214px;}
.y21_c00492{bottom:204.689102px;}
.y20_c00492{bottom:234.839714px;}
.y1f_c00492{bottom:265.079601px;}
.y1e_c00492{bottom:295.230213px;}
.y1d_c00492{bottom:325.470101px;}
.y1c_c00492{bottom:355.620713px;}
.y1b_c00492{bottom:385.859451px;}
.y1a_c00492{bottom:416.010063px;}
.y19_c00492{bottom:446.249950px;}
.y18_c00492{bottom:476.400562px;}
.y17_c00492{bottom:506.640365px;}
.y16_c00492{bottom:536.790976px;}
.y15_c00492{bottom:567.030864px;}
.y14_c00492{bottom:597.089563px;}
.y13_c00492{bottom:627.329451px;}
.y12_c00492{bottom:657.480063px;}
.y11_c00492{bottom:687.719950px;}
.y10_c00492{bottom:717.870563px;}
.yf_c00492{bottom:748.108452px;}
.ye_c00492{bottom:778.259064px;}
.yd_c00492{bottom:808.498952px;}
.yc_c00492{bottom:838.649564px;}
.yb_c00492{bottom:868.889451px;}
.ya_c00492{bottom:899.040063px;}
.y9_c00492{bottom:929.279951px;}
.y8_c00492{bottom:959.519838px;}
.y7_c00492{bottom:989.670054px;}
.y6_c00492{bottom:1019.909942px;}
.y5_c00492{bottom:1050.060553px;}
.y4_c00492{bottom:1080.300441px;}
.y3_c00492{bottom:1110.451053px;}
.h2_c00492{height:62.600889px;}
.h1_c00492{height:62.771836px;}
.h6_c00492{height:73.669128px;}
.h3_c00492{height:73.670370px;}
.h7_c00492{height:73.673382px;}
.h4_c00492{height:73.676778px;}
.h5_c00492{height:74.032332px;}
.h0_c00492{height:1263.000000px;}
.w0_c00492{width:892.500000px;}
.x0_c00492{left:0.000000px;}
.x2_c00492{left:82.710059px;}
.x1_c00492{left:431.730000px;}
@media print{
.v0_c00492{vertical-align:0.000000pt;}
.v1_c00492{vertical-align:28.481408pt;}
.lsb_c00492{letter-spacing:-0.080912pt;}
.lse_c00492{letter-spacing:-0.062240pt;}
.ls3_c00492{letter-spacing:-0.056016pt;}
.lsd_c00492{letter-spacing:-0.049792pt;}
.ls9_c00492{letter-spacing:-0.043568pt;}
.ls5_c00492{letter-spacing:-0.037344pt;}
.lsc_c00492{letter-spacing:-0.031120pt;}
.lsa_c00492{letter-spacing:-0.024896pt;}
.ls6_c00492{letter-spacing:-0.018672pt;}
.ls8_c00492{letter-spacing:-0.012448pt;}
.ls7_c00492{letter-spacing:-0.006224pt;}
.ls4_c00492{letter-spacing:0.000000pt;}
.ls1_c00492{letter-spacing:0.006224pt;}
.ls2_c00492{letter-spacing:0.012448pt;}
.ls0_c00492{letter-spacing:0.020694pt;}
.lsf_c00492{letter-spacing:0.304976pt;}
.ws0_c00492{word-spacing:-11.526781pt;}
.ws11_c00492{word-spacing:-0.024896pt;}
.ws1_c00492{word-spacing:0.000000pt;}
.ws19_c00492{word-spacing:0.012448pt;}
.ws9_c00492{word-spacing:0.043568pt;}
.ws12_c00492{word-spacing:0.068464pt;}
.ws17_c00492{word-spacing:0.298752pt;}
.ws1c_c00492{word-spacing:0.964720pt;}
.ws16_c00492{word-spacing:0.995840pt;}
.ws7_c00492{word-spacing:1.630688pt;}
.ws8_c00492{word-spacing:2.234416pt;}
.ws2_c00492{word-spacing:2.265536pt;}
.ws14_c00492{word-spacing:2.856816pt;}
.wsf_c00492{word-spacing:2.887936pt;}
.ws13_c00492{word-spacing:2.925280pt;}
.ws10_c00492{word-spacing:3.833984pt;}
.ws1a_c00492{word-spacing:4.145184pt;}
.ws5_c00492{word-spacing:4.468832pt;}
.ws4_c00492{word-spacing:4.475056pt;}
.ws3_c00492{word-spacing:4.487504pt;}
.wsd_c00492{word-spacing:5.421104pt;}
.wsc_c00492{word-spacing:5.433552pt;}
.ws6_c00492{word-spacing:5.757200pt;}
.ws1d_c00492{word-spacing:6.410720pt;}
.ws1e_c00492{word-spacing:8.340160pt;}
.ws18_c00492{word-spacing:8.651360pt;}
.ws1f_c00492{word-spacing:13.443840pt;}
.wse_c00492{word-spacing:13.742592pt;}
.wsb_c00492{word-spacing:13.755040pt;}
.ws15_c00492{word-spacing:24.653264pt;}
.ws1b_c00492{word-spacing:27.497632pt;}
.wsa_c00492{word-spacing:36.491312pt;}
._1_c00492{margin-left:-1.201232pt;}
._0_c00492{width:0.939824pt;}
._2_c00492{width:3.585024pt;}
._3_c00492{width:27.597216pt;}
.fs1_c00492{font-size:41.388800pt;}
.fs0_c00492{font-size:62.240000pt;}
.y0_c00492{bottom:0.000000pt;}
.y2_c00492{bottom:97.547527pt;}
.y1_c00492{bottom:115.387067pt;}
.y22_c00492{bottom:155.065968pt;}
.y21_c00492{bottom:181.945868pt;}
.y20_c00492{bottom:208.746412pt;}
.y1f_c00492{bottom:235.626312pt;}
.y1e_c00492{bottom:262.426856pt;}
.y1d_c00492{bottom:289.306756pt;}
.y1c_c00492{bottom:316.107300pt;}
.y1b_c00492{bottom:342.986179pt;}
.y1a_c00492{bottom:369.786723pt;}
.y19_c00492{bottom:396.666623pt;}
.y18_c00492{bottom:423.467167pt;}
.y17_c00492{bottom:450.346991pt;}
.y16_c00492{bottom:477.147535pt;}
.y15_c00492{bottom:504.027435pt;}
.y14_c00492{bottom:530.746279pt;}
.y13_c00492{bottom:557.626179pt;}
.y12_c00492{bottom:584.426723pt;}
.y11_c00492{bottom:611.306623pt;}
.y10_c00492{bottom:638.107167pt;}
.yf_c00492{bottom:664.985291pt;}
.ye_c00492{bottom:691.785835pt;}
.yd_c00492{bottom:718.665735pt;}
.yc_c00492{bottom:745.466279pt;}
.yb_c00492{bottom:772.346179pt;}
.ya_c00492{bottom:799.146723pt;}
.y9_c00492{bottom:826.026623pt;}
.y8_c00492{bottom:852.906523pt;}
.y7_c00492{bottom:879.706715pt;}
.y6_c00492{bottom:906.586615pt;}
.y5_c00492{bottom:933.387159pt;}
.y4_c00492{bottom:960.267059pt;}
.y3_c00492{bottom:987.067603pt;}
.h2_c00492{height:55.645234pt;}
.h1_c00492{height:55.797187pt;}
.h6_c00492{height:65.483670pt;}
.h3_c00492{height:65.484774pt;}
.h7_c00492{height:65.487451pt;}
.h4_c00492{height:65.490470pt;}
.h5_c00492{height:65.806518pt;}
.h0_c00492{height:1122.666667pt;}
.w0_c00492{width:793.333333pt;}
.x0_c00492{left:0.000000pt;}
.x2_c00492{left:73.520052pt;}
.x1_c00492{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3b23f57fbfc20a9d1ed08719.woff2')format("woff");}.ff1_c00493{font-family:ff1_c00493;line-height:1.106934;font-style:normal;font-weight:normal;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_f06e4762a07a85597c32f426.woff2')format("woff");}.ff2_c00493{font-family:ff2_c00493;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00493{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00493{vertical-align:0.000000px;}
.v1_c00493{vertical-align:32.045580px;}
.ls6_c00493{letter-spacing:-0.063018px;}
.ls9_c00493{letter-spacing:-0.056016px;}
.lsd_c00493{letter-spacing:-0.049014px;}
.lsc_c00493{letter-spacing:-0.042012px;}
.ls8_c00493{letter-spacing:-0.035010px;}
.lsf_c00493{letter-spacing:-0.028008px;}
.lsb_c00493{letter-spacing:-0.021006px;}
.lse_c00493{letter-spacing:-0.014004px;}
.lsa_c00493{letter-spacing:-0.007002px;}
.ls7_c00493{letter-spacing:0.000000px;}
.ls3_c00493{letter-spacing:0.014004px;}
.ls0_c00493{letter-spacing:0.021006px;}
.ls2_c00493{letter-spacing:0.023281px;}
.ls1_c00493{letter-spacing:0.042012px;}
.ls5_c00493{letter-spacing:0.049014px;}
.ls4_c00493{letter-spacing:0.336096px;}
.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:-12.967628px;}
.ws15_c00493{word-spacing:-0.350100px;}
.ws21_c00493{word-spacing:-0.028008px;}
.ws1_c00493{word-spacing:0.000000px;}
.wse_c00493{word-spacing:0.007002px;}
.ws29_c00493{word-spacing:0.014004px;}
.ws14_c00493{word-spacing:0.035010px;}
.ws19_c00493{word-spacing:0.686196px;}
.ws8_c00493{word-spacing:1.113318px;}
.ws12_c00493{word-spacing:1.792512px;}
.ws11_c00493{word-spacing:1.806516px;}
.ws16_c00493{word-spacing:2.506716px;}
.ws28_c00493{word-spacing:3.178908px;}
.ws27_c00493{word-spacing:3.248928px;}
.wsd_c00493{word-spacing:4.691340px;}
.ws1c_c00493{word-spacing:5.783652px;}
.ws3_c00493{word-spacing:6.441840px;}
.ws4_c00493{word-spacing:6.469848px;}
.ws24_c00493{word-spacing:6.833952px;}
.ws10_c00493{word-spacing:6.854958px;}
.ws26_c00493{word-spacing:7.184052px;}
.ws25_c00493{word-spacing:7.198056px;}
.ws17_c00493{word-spacing:7.233066px;}
.ws18_c00493{word-spacing:7.240068px;}
.ws1b_c00493{word-spacing:7.555158px;}
.ws1a_c00493{word-spacing:7.604172px;}
.wsa_c00493{word-spacing:8.983566px;}
.ws9_c00493{word-spacing:9.361674px;}
.ws22_c00493{word-spacing:9.732780px;}
.wsf_c00493{word-spacing:9.746784px;}
.ws1e_c00493{word-spacing:12.631608px;}
.ws2_c00493{word-spacing:14.781222px;}
.ws23_c00493{word-spacing:16.566732px;}
.ws5_c00493{word-spacing:17.645040px;}
.ws13_c00493{word-spacing:17.967132px;}
.wsc_c00493{word-spacing:21.902256px;}
.wsb_c00493{word-spacing:21.965274px;}
.ws7_c00493{word-spacing:23.750784px;}
.ws6_c00493{word-spacing:24.149898px;}
.ws1d_c00493{word-spacing:24.843096px;}
.ws1f_c00493{word-spacing:26.999712px;}
.ws20_c00493{word-spacing:27.027720px;}
._2_c00493{margin-left:-1.001286px;}
._0_c00493{width:1.141326px;}
._1_c00493{width:6.553872px;}
.fc0_c00493{color:rgb(0,0,0);}
.fs1_c00493{font-size:46.562400px;}
.fs0_c00493{font-size:70.020000px;}
.y0_c00493{bottom:0.000000px;}
.y2_c00493{bottom:109.740968px;}
.y1_c00493{bottom:129.810450px;}
.y22_c00493{bottom:156.989951px;}
.y21_c00493{bottom:187.140563px;}
.y20_c00493{bottom:217.379951px;}
.y1f_c00493{bottom:247.530563px;}
.y1e_c00493{bottom:277.767606px;}
.y1d_c00493{bottom:307.918218px;}
.y1c_c00493{bottom:338.158106px;}
.y1b_c00493{bottom:385.857480px;}
.y1a_c00493{bottom:416.008092px;}
.y19_c00493{bottom:446.247979px;}
.y18_c00493{bottom:476.398592px;}
.y17_c00493{bottom:506.638479px;}
.y16_c00493{bottom:536.789091px;}
.y15_c00493{bottom:567.028978px;}
.y14_c00493{bottom:597.088565px;}
.y13_c00493{bottom:627.328452px;}
.y12_c00493{bottom:657.479064px;}
.y11_c00493{bottom:687.718952px;}
.y10_c00493{bottom:717.869563px;}
.yf_c00493{bottom:748.109451px;}
.ye_c00493{bottom:778.260063px;}
.yd_c00493{bottom:808.499950px;}
.yc_c00493{bottom:838.650562px;}
.yb_c00493{bottom:868.889055px;}
.ya_c00493{bottom:899.039667px;}
.y9_c00493{bottom:929.279555px;}
.y8_c00493{bottom:959.519442px;}
.y7_c00493{bottom:989.670054px;}
.y6_c00493{bottom:1019.909942px;}
.y5_c00493{bottom:1050.060553px;}
.y4_c00493{bottom:1080.300441px;}
.y3_c00493{bottom:1110.451053px;}
.h2_c00493{height:62.600889px;}
.h1_c00493{height:62.771836px;}
.h5_c00493{height:73.670784px;}
.h3_c00493{height:73.674366px;}
.h4_c00493{height:73.680162px;}
.h0_c00493{height:1263.000000px;}
.w0_c00493{width:892.500000px;}
.x0_c00493{left:0.000000px;}
.x2_c00493{left:82.710059px;}
.x1_c00493{left:431.730000px;}
@media print{
.v0_c00493{vertical-align:0.000000pt;}
.v1_c00493{vertical-align:28.484960pt;}
.ls6_c00493{letter-spacing:-0.056016pt;}
.ls9_c00493{letter-spacing:-0.049792pt;}
.lsd_c00493{letter-spacing:-0.043568pt;}
.lsc_c00493{letter-spacing:-0.037344pt;}
.ls8_c00493{letter-spacing:-0.031120pt;}
.lsf_c00493{letter-spacing:-0.024896pt;}
.lsb_c00493{letter-spacing:-0.018672pt;}
.lse_c00493{letter-spacing:-0.012448pt;}
.lsa_c00493{letter-spacing:-0.006224pt;}
.ls7_c00493{letter-spacing:0.000000pt;}
.ls3_c00493{letter-spacing:0.012448pt;}
.ls0_c00493{letter-spacing:0.018672pt;}
.ls2_c00493{letter-spacing:0.020694pt;}
.ls1_c00493{letter-spacing:0.037344pt;}
.ls5_c00493{letter-spacing:0.043568pt;}
.ls4_c00493{letter-spacing:0.298752pt;}
.ws0_c00493{word-spacing:-11.526781pt;}
.ws15_c00493{word-spacing:-0.311200pt;}
.ws21_c00493{word-spacing:-0.024896pt;}
.ws1_c00493{word-spacing:0.000000pt;}
.wse_c00493{word-spacing:0.006224pt;}
.ws29_c00493{word-spacing:0.012448pt;}
.ws14_c00493{word-spacing:0.031120pt;}
.ws19_c00493{word-spacing:0.609952pt;}
.ws8_c00493{word-spacing:0.989616pt;}
.ws12_c00493{word-spacing:1.593344pt;}
.ws11_c00493{word-spacing:1.605792pt;}
.ws16_c00493{word-spacing:2.228192pt;}
.ws28_c00493{word-spacing:2.825696pt;}
.ws27_c00493{word-spacing:2.887936pt;}
.wsd_c00493{word-spacing:4.170080pt;}
.ws1c_c00493{word-spacing:5.141024pt;}
.ws3_c00493{word-spacing:5.726080pt;}
.ws4_c00493{word-spacing:5.750976pt;}
.ws24_c00493{word-spacing:6.074624pt;}
.ws10_c00493{word-spacing:6.093296pt;}
.ws26_c00493{word-spacing:6.385824pt;}
.ws25_c00493{word-spacing:6.398272pt;}
.ws17_c00493{word-spacing:6.429392pt;}
.ws18_c00493{word-spacing:6.435616pt;}
.ws1b_c00493{word-spacing:6.715696pt;}
.ws1a_c00493{word-spacing:6.759264pt;}
.wsa_c00493{word-spacing:7.985392pt;}
.ws9_c00493{word-spacing:8.321488pt;}
.ws22_c00493{word-spacing:8.651360pt;}
.wsf_c00493{word-spacing:8.663808pt;}
.ws1e_c00493{word-spacing:11.228096pt;}
.ws2_c00493{word-spacing:13.138864pt;}
.ws23_c00493{word-spacing:14.725984pt;}
.ws5_c00493{word-spacing:15.684480pt;}
.ws13_c00493{word-spacing:15.970784pt;}
.wsc_c00493{word-spacing:19.468672pt;}
.wsb_c00493{word-spacing:19.524688pt;}
.ws7_c00493{word-spacing:21.111808pt;}
.ws6_c00493{word-spacing:21.466576pt;}
.ws1d_c00493{word-spacing:22.082752pt;}
.ws1f_c00493{word-spacing:23.999744pt;}
.ws20_c00493{word-spacing:24.024640pt;}
._2_c00493{margin-left:-0.890032pt;}
._0_c00493{width:1.014512pt;}
._1_c00493{width:5.825664pt;}
.fs1_c00493{font-size:41.388800pt;}
.fs0_c00493{font-size:62.240000pt;}
.y0_c00493{bottom:0.000000pt;}
.y2_c00493{bottom:97.547527pt;}
.y1_c00493{bottom:115.387067pt;}
.y22_c00493{bottom:139.546623pt;}
.y21_c00493{bottom:166.347167pt;}
.y20_c00493{bottom:193.226623pt;}
.y1f_c00493{bottom:220.027167pt;}
.y1e_c00493{bottom:246.904539pt;}
.y1d_c00493{bottom:273.705083pt;}
.y1c_c00493{bottom:300.584983pt;}
.y1b_c00493{bottom:342.984427pt;}
.y1a_c00493{bottom:369.784971pt;}
.y19_c00493{bottom:396.664871pt;}
.y18_c00493{bottom:423.465415pt;}
.y17_c00493{bottom:450.345315pt;}
.y16_c00493{bottom:477.145859pt;}
.y15_c00493{bottom:504.025759pt;}
.y14_c00493{bottom:530.745391pt;}
.y13_c00493{bottom:557.625291pt;}
.y12_c00493{bottom:584.425835pt;}
.y11_c00493{bottom:611.305735pt;}
.y10_c00493{bottom:638.106279pt;}
.yf_c00493{bottom:664.986179pt;}
.ye_c00493{bottom:691.786723pt;}
.yd_c00493{bottom:718.666623pt;}
.yc_c00493{bottom:745.467167pt;}
.yb_c00493{bottom:772.345827pt;}
.ya_c00493{bottom:799.146371pt;}
.y9_c00493{bottom:826.026271pt;}
.y8_c00493{bottom:852.906171pt;}
.y7_c00493{bottom:879.706715pt;}
.y6_c00493{bottom:906.586615pt;}
.y5_c00493{bottom:933.387159pt;}
.y4_c00493{bottom:960.267059pt;}
.y3_c00493{bottom:987.067603pt;}
.h2_c00493{height:55.645234pt;}
.h1_c00493{height:55.797187pt;}
.h5_c00493{height:65.485142pt;}
.h3_c00493{height:65.488326pt;}
.h4_c00493{height:65.493478pt;}
.h0_c00493{height:1122.666667pt;}
.w0_c00493{width:793.333333pt;}
.x0_c00493{left:0.000000pt;}
.x2_c00493{left:73.520052pt;}
.x1_c00493{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6dcd9aac84c3fce1846b0a6b.woff2')format("woff");}.ff1_c00494{font-family:ff1_c00494;line-height:1.106934;font-style:normal;font-weight:normal;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_5871cb7efc086d10afabd61b.woff2')format("woff");}.ff2_c00494{font-family:ff2_c00494;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00494{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00494{vertical-align:0.000000px;}
.ls6_c00494{letter-spacing:-0.113957px;}
.ls4_c00494{letter-spacing:-0.063018px;}
.lsb_c00494{letter-spacing:-0.042012px;}
.lsa_c00494{letter-spacing:-0.035010px;}
.ls8_c00494{letter-spacing:-0.030389px;}
.lsd_c00494{letter-spacing:-0.028008px;}
.lsc_c00494{letter-spacing:-0.021006px;}
.lse_c00494{letter-spacing:-0.014004px;}
.ls7_c00494{letter-spacing:-0.007597px;}
.ls9_c00494{letter-spacing:-0.007002px;}
.ls5_c00494{letter-spacing:0.000000px;}
.ls1_c00494{letter-spacing:0.007002px;}
.ls3_c00494{letter-spacing:0.014004px;}
.ls2_c00494{letter-spacing:0.021006px;}
.ls0_c00494{letter-spacing:0.037986px;}
.sc__c00494{text-shadow:none;}
.sc0_c00494{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00494{-webkit-text-stroke:0px transparent;}
.sc0_c00494{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00494{word-spacing:-0.113957px;}
.ws0_c00494{word-spacing:0.000000px;}
.ws19_c00494{word-spacing:0.007002px;}
.ws12_c00494{word-spacing:0.014004px;}
.ws5_c00494{word-spacing:0.021006px;}
.ws2_c00494{word-spacing:0.159540px;}
.wsf_c00494{word-spacing:0.322092px;}
.wsa_c00494{word-spacing:0.364104px;}
.ws4_c00494{word-spacing:0.700200px;}
.ws6_c00494{word-spacing:1.435410px;}
.ws9_c00494{word-spacing:1.463418px;}
.ws13_c00494{word-spacing:6.861960px;}
.ws18_c00494{word-spacing:7.527150px;}
.ws17_c00494{word-spacing:7.555158px;}
.ws16_c00494{word-spacing:7.562160px;}
.ws7_c00494{word-spacing:13.667904px;}
.ws8_c00494{word-spacing:13.709916px;}
.ws11_c00494{word-spacing:15.089310px;}
.ws10_c00494{word-spacing:15.138324px;}
.wsc_c00494{word-spacing:17.624034px;}
.wsb_c00494{word-spacing:17.659044px;}
.wsd_c00494{word-spacing:19.815660px;}
.wse_c00494{word-spacing:19.822662px;}
.ws14_c00494{word-spacing:21.608172px;}
.ws15_c00494{word-spacing:21.965274px;}
.ws3_c00494{word-spacing:24.114888px;}
._1_c00494{margin-left:-1.139571px;}
._0_c00494{width:1.329499px;}
.fc0_c00494{color:rgb(0,0,0);}
.fs0_c00494{font-size:70.020000px;}
.fs1_c00494{font-size:75.971400px;}
.y0_c00494{bottom:0.000000px;}
.y2_c00494{bottom:109.740968px;}
.y1_c00494{bottom:129.810450px;}
.y1e_c00494{bottom:203.609586px;}
.y1d_c00494{bottom:233.849474px;}
.y1c_c00494{bottom:264.089361px;}
.y1b_c00494{bottom:294.329248px;}
.y1a_c00494{bottom:344.818920px;}
.y19_c00494{bottom:375.058807px;}
.y18_c00494{bottom:405.298695px;}
.y17_c00494{bottom:435.449307px;}
.y16_c00494{bottom:465.689194px;}
.y15_c00494{bottom:516.178866px;}
.y14_c00494{bottom:546.418753px;}
.y13_c00494{bottom:576.658641px;}
.y12_c00494{bottom:606.809253px;}
.y11_c00494{bottom:657.389950px;}
.y10_c00494{bottom:687.720864px;}
.yf_c00494{bottom:717.780450px;}
.ye_c00494{bottom:758.730222px;}
.yd_c00494{bottom:797.971349px;}
.yc_c00494{bottom:819.750450px;}
.yb_c00494{bottom:868.889055px;}
.ya_c00494{bottom:899.039667px;}
.y9_c00494{bottom:929.279555px;}
.y8_c00494{bottom:959.519442px;}
.y7_c00494{bottom:989.670054px;}
.y6_c00494{bottom:1019.909942px;}
.y5_c00494{bottom:1050.060553px;}
.y4_c00494{bottom:1080.300441px;}
.y3_c00494{bottom:1110.451053px;}
.h1_c00494{height:62.771836px;}
.h2_c00494{height:68.589413px;}
.h0_c00494{height:1263.000000px;}
.w0_c00494{width:892.500000px;}
.x0_c00494{left:0.000000px;}
.x2_c00494{left:82.710059px;}
.x1_c00494{left:431.730000px;}
@media print{
.v0_c00494{vertical-align:0.000000pt;}
.ls6_c00494{letter-spacing:-0.101295pt;}
.ls4_c00494{letter-spacing:-0.056016pt;}
.lsb_c00494{letter-spacing:-0.037344pt;}
.lsa_c00494{letter-spacing:-0.031120pt;}
.ls8_c00494{letter-spacing:-0.027012pt;}
.lsd_c00494{letter-spacing:-0.024896pt;}
.lsc_c00494{letter-spacing:-0.018672pt;}
.lse_c00494{letter-spacing:-0.012448pt;}
.ls7_c00494{letter-spacing:-0.006753pt;}
.ls9_c00494{letter-spacing:-0.006224pt;}
.ls5_c00494{letter-spacing:0.000000pt;}
.ls1_c00494{letter-spacing:0.006224pt;}
.ls3_c00494{letter-spacing:0.012448pt;}
.ls2_c00494{letter-spacing:0.018672pt;}
.ls0_c00494{letter-spacing:0.033765pt;}
.ws1_c00494{word-spacing:-0.101295pt;}
.ws0_c00494{word-spacing:0.000000pt;}
.ws19_c00494{word-spacing:0.006224pt;}
.ws12_c00494{word-spacing:0.012448pt;}
.ws5_c00494{word-spacing:0.018672pt;}
.ws2_c00494{word-spacing:0.141813pt;}
.wsf_c00494{word-spacing:0.286304pt;}
.wsa_c00494{word-spacing:0.323648pt;}
.ws4_c00494{word-spacing:0.622400pt;}
.ws6_c00494{word-spacing:1.275920pt;}
.ws9_c00494{word-spacing:1.300816pt;}
.ws13_c00494{word-spacing:6.099520pt;}
.ws18_c00494{word-spacing:6.690800pt;}
.ws17_c00494{word-spacing:6.715696pt;}
.ws16_c00494{word-spacing:6.721920pt;}
.ws7_c00494{word-spacing:12.149248pt;}
.ws8_c00494{word-spacing:12.186592pt;}
.ws11_c00494{word-spacing:13.412720pt;}
.ws10_c00494{word-spacing:13.456288pt;}
.wsc_c00494{word-spacing:15.665808pt;}
.wsb_c00494{word-spacing:15.696928pt;}
.wsd_c00494{word-spacing:17.613920pt;}
.wse_c00494{word-spacing:17.620144pt;}
.ws14_c00494{word-spacing:19.207264pt;}
.ws15_c00494{word-spacing:19.524688pt;}
.ws3_c00494{word-spacing:21.435456pt;}
._1_c00494{margin-left:-1.012952pt;}
._0_c00494{width:1.181777pt;}
.fs0_c00494{font-size:62.240000pt;}
.fs1_c00494{font-size:67.530133pt;}
.y0_c00494{bottom:0.000000pt;}
.y2_c00494{bottom:97.547527pt;}
.y1_c00494{bottom:115.387067pt;}
.y1e_c00494{bottom:180.986299pt;}
.y1d_c00494{bottom:207.866199pt;}
.y1c_c00494{bottom:234.746099pt;}
.y1b_c00494{bottom:261.625999pt;}
.y1a_c00494{bottom:306.505707pt;}
.y19_c00494{bottom:333.385607pt;}
.y18_c00494{bottom:360.265507pt;}
.y17_c00494{bottom:387.066051pt;}
.y16_c00494{bottom:413.945951pt;}
.y15_c00494{bottom:458.825659pt;}
.y14_c00494{bottom:485.705559pt;}
.y13_c00494{bottom:512.585459pt;}
.y12_c00494{bottom:539.386003pt;}
.y11_c00494{bottom:584.346623pt;}
.y10_c00494{bottom:611.307435pt;}
.yf_c00494{bottom:638.027067pt;}
.ye_c00494{bottom:674.426864pt;}
.yd_c00494{bottom:709.307866pt;}
.yc_c00494{bottom:728.667067pt;}
.yb_c00494{bottom:772.345827pt;}
.ya_c00494{bottom:799.146371pt;}
.y9_c00494{bottom:826.026271pt;}
.y8_c00494{bottom:852.906171pt;}
.y7_c00494{bottom:879.706715pt;}
.y6_c00494{bottom:906.586615pt;}
.y5_c00494{bottom:933.387159pt;}
.y4_c00494{bottom:960.267059pt;}
.y3_c00494{bottom:987.067603pt;}
.h1_c00494{height:55.797187pt;}
.h2_c00494{height:60.968367pt;}
.h0_c00494{height:1122.666667pt;}
.w0_c00494{width:793.333333pt;}
.x0_c00494{left:0.000000pt;}
.x2_c00494{left:73.520052pt;}
.x1_c00494{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_824144ff41aa7b8a3c74d9ef.woff2')format("woff");}.ff1_c00495{font-family:ff1_c00495;line-height:1.106934;font-style:normal;font-weight:normal;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_c3c988af039b64a1a6daa870.woff2')format("woff");}.ff2_c00495{font-family:ff2_c00495;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00495;src:url('chunks/assets/font_e4b7c5cf3814818267a3bce1.woff2')format("woff");}.ff3_c00495{font-family:ff3_c00495;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00495{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00495{vertical-align:0.000000px;}
.v1_c00495{vertical-align:32.398686px;}
.ls5_c00495{letter-spacing:-0.063018px;}
.lsd_c00495{letter-spacing:-0.049014px;}
.lsc_c00495{letter-spacing:-0.042012px;}
.lsa_c00495{letter-spacing:-0.035010px;}
.ls9_c00495{letter-spacing:-0.028008px;}
.lsb_c00495{letter-spacing:-0.021006px;}
.ls8_c00495{letter-spacing:-0.014004px;}
.ls7_c00495{letter-spacing:-0.007002px;}
.ls6_c00495{letter-spacing:0.000000px;}
.ls1_c00495{letter-spacing:0.007002px;}
.ls4_c00495{letter-spacing:0.021006px;}
.ls2_c00495{letter-spacing:0.023281px;}
.ls0_c00495{letter-spacing:0.028008px;}
.ls3_c00495{letter-spacing:0.129151px;}
.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:-12.967628px;}
.ws15_c00495{word-spacing:-0.106360px;}
.ws1a_c00495{word-spacing:-0.007002px;}
.ws1_c00495{word-spacing:0.000000px;}
.ws1b_c00495{word-spacing:0.014004px;}
.ws14_c00495{word-spacing:0.028008px;}
.ws7_c00495{word-spacing:0.357102px;}
.ws1e_c00495{word-spacing:1.085310px;}
.ws17_c00495{word-spacing:1.113318px;}
.ws16_c00495{word-spacing:1.407402px;}
.ws6_c00495{word-spacing:3.220920px;}
.ws2_c00495{word-spacing:3.234924px;}
.ws5_c00495{word-spacing:3.255930px;}
.ws1d_c00495{word-spacing:3.984138px;}
.ws21_c00495{word-spacing:4.320234px;}
.ws20_c00495{word-spacing:4.355244px;}
.ws22_c00495{word-spacing:4.663332px;}
.ws12_c00495{word-spacing:5.384538px;}
.wsd_c00495{word-spacing:6.105744px;}
.wse_c00495{word-spacing:6.119748px;}
.ws19_c00495{word-spacing:7.919262px;}
.ws18_c00495{word-spacing:7.940268px;}
.wsf_c00495{word-spacing:8.983566px;}
.wsc_c00495{word-spacing:10.460988px;}
.ws9_c00495{word-spacing:10.790082px;}
.ws8_c00495{word-spacing:10.818090px;}
.wsb_c00495{word-spacing:13.324806px;}
.wsa_c00495{word-spacing:13.688910px;}
.ws11_c00495{word-spacing:15.467418px;}
.ws10_c00495{word-spacing:15.481422px;}
.ws1f_c00495{word-spacing:17.287938px;}
.ws4_c00495{word-spacing:20.522862px;}
.ws1c_c00495{word-spacing:21.244068px;}
.ws3_c00495{word-spacing:25.515288px;}
.ws13_c00495{word-spacing:27.377820px;}
._1_c00495{margin-left:-1.267362px;}
._0_c00495{width:1.141326px;}
.fc0_c00495{color:rgb(0,0,0);}
.fs1_c00495{font-size:46.562400px;}
.fs0_c00495{font-size:70.020000px;}
.fs2_c00495{font-size:75.971400px;}
.y0_c00495{bottom:0.000000px;}
.y2_c00495{bottom:109.740968px;}
.y1_c00495{bottom:129.810450px;}
.y20_c00495{bottom:171.027215px;}
.y1f_c00495{bottom:201.267102px;}
.y1e_c00495{bottom:231.417714px;}
.y1d_c00495{bottom:263.817718px;}
.y1c_c00495{bottom:294.057606px;}
.y1b_c00495{bottom:324.208218px;}
.y1a_c00495{bottom:354.358830px;}
.y19_c00495{bottom:384.509442px;}
.y18_c00495{bottom:414.749329px;}
.y17_c00495{bottom:447.060058px;}
.y16_c00495{bottom:479.460063px;}
.y15_c00495{bottom:509.699950px;}
.y14_c00495{bottom:539.850563px;}
.y13_c00495{bottom:570.090450px;}
.y12_c00495{bottom:594.840450px;}
.y11_c00495{bottom:646.858808px;}
.y10_c00495{bottom:677.098695px;}
.yf_c00495{bottom:707.338583px;}
.ye_c00495{bottom:737.489195px;}
.yd_c00495{bottom:787.978866px;}
.yc_c00495{bottom:818.309779px;}
.yb_c00495{bottom:848.460392px;}
.ya_c00495{bottom:878.700279px;}
.y9_c00495{bottom:908.850891px;}
.y8_c00495{bottom:939.090779px;}
.y7_c00495{bottom:989.580779px;}
.y6_c00495{bottom:1019.909942px;}
.y5_c00495{bottom:1050.060553px;}
.y4_c00495{bottom:1080.300441px;}
.y3_c00495{bottom:1110.451053px;}
.h2_c00495{height:62.600889px;}
.h1_c00495{height:62.771836px;}
.h5_c00495{height:63.216299px;}
.h4_c00495{height:68.589413px;}
.h3_c00495{height:74.027472px;}
.h0_c00495{height:1263.000000px;}
.w0_c00495{width:892.500000px;}
.x0_c00495{left:0.000000px;}
.x2_c00495{left:82.710059px;}
.x1_c00495{left:431.730000px;}
@media print{
.v0_c00495{vertical-align:0.000000pt;}
.v1_c00495{vertical-align:28.798832pt;}
.ls5_c00495{letter-spacing:-0.056016pt;}
.lsd_c00495{letter-spacing:-0.043568pt;}
.lsc_c00495{letter-spacing:-0.037344pt;}
.lsa_c00495{letter-spacing:-0.031120pt;}
.ls9_c00495{letter-spacing:-0.024896pt;}
.lsb_c00495{letter-spacing:-0.018672pt;}
.ls8_c00495{letter-spacing:-0.012448pt;}
.ls7_c00495{letter-spacing:-0.006224pt;}
.ls6_c00495{letter-spacing:0.000000pt;}
.ls1_c00495{letter-spacing:0.006224pt;}
.ls4_c00495{letter-spacing:0.018672pt;}
.ls2_c00495{letter-spacing:0.020694pt;}
.ls0_c00495{letter-spacing:0.024896pt;}
.ls3_c00495{letter-spacing:0.114801pt;}
.ws0_c00495{word-spacing:-11.526781pt;}
.ws15_c00495{word-spacing:-0.094542pt;}
.ws1a_c00495{word-spacing:-0.006224pt;}
.ws1_c00495{word-spacing:0.000000pt;}
.ws1b_c00495{word-spacing:0.012448pt;}
.ws14_c00495{word-spacing:0.024896pt;}
.ws7_c00495{word-spacing:0.317424pt;}
.ws1e_c00495{word-spacing:0.964720pt;}
.ws17_c00495{word-spacing:0.989616pt;}
.ws16_c00495{word-spacing:1.251024pt;}
.ws6_c00495{word-spacing:2.863040pt;}
.ws2_c00495{word-spacing:2.875488pt;}
.ws5_c00495{word-spacing:2.894160pt;}
.ws1d_c00495{word-spacing:3.541456pt;}
.ws21_c00495{word-spacing:3.840208pt;}
.ws20_c00495{word-spacing:3.871328pt;}
.ws22_c00495{word-spacing:4.145184pt;}
.ws12_c00495{word-spacing:4.786256pt;}
.wsd_c00495{word-spacing:5.427328pt;}
.wse_c00495{word-spacing:5.439776pt;}
.ws19_c00495{word-spacing:7.039344pt;}
.ws18_c00495{word-spacing:7.058016pt;}
.wsf_c00495{word-spacing:7.985392pt;}
.wsc_c00495{word-spacing:9.298656pt;}
.ws9_c00495{word-spacing:9.591184pt;}
.ws8_c00495{word-spacing:9.616080pt;}
.wsb_c00495{word-spacing:11.844272pt;}
.wsa_c00495{word-spacing:12.167920pt;}
.ws11_c00495{word-spacing:13.748816pt;}
.ws10_c00495{word-spacing:13.761264pt;}
.ws1f_c00495{word-spacing:15.367056pt;}
.ws4_c00495{word-spacing:18.242544pt;}
.ws1c_c00495{word-spacing:18.883616pt;}
.ws3_c00495{word-spacing:22.680256pt;}
.ws13_c00495{word-spacing:24.335840pt;}
._1_c00495{margin-left:-1.126544pt;}
._0_c00495{width:1.014512pt;}
.fs1_c00495{font-size:41.388800pt;}
.fs0_c00495{font-size:62.240000pt;}
.fs2_c00495{font-size:67.530133pt;}
.y0_c00495{bottom:0.000000pt;}
.y2_c00495{bottom:97.547527pt;}
.y1_c00495{bottom:115.387067pt;}
.y20_c00495{bottom:152.024191pt;}
.y1f_c00495{bottom:178.904091pt;}
.y1e_c00495{bottom:205.704635pt;}
.y1d_c00495{bottom:234.504639pt;}
.y1c_c00495{bottom:261.384539pt;}
.y1b_c00495{bottom:288.185083pt;}
.y1a_c00495{bottom:314.985627pt;}
.y19_c00495{bottom:341.786171pt;}
.y18_c00495{bottom:368.666071pt;}
.y17_c00495{bottom:397.386719pt;}
.y16_c00495{bottom:426.186723pt;}
.y15_c00495{bottom:453.066623pt;}
.y14_c00495{bottom:479.867167pt;}
.y13_c00495{bottom:506.747067pt;}
.y12_c00495{bottom:528.747067pt;}
.y11_c00495{bottom:574.985607pt;}
.y10_c00495{bottom:601.865507pt;}
.yf_c00495{bottom:628.745407pt;}
.ye_c00495{bottom:655.545951pt;}
.yd_c00495{bottom:700.425659pt;}
.yc_c00495{bottom:727.386471pt;}
.yb_c00495{bottom:754.187015pt;}
.ya_c00495{bottom:781.066915pt;}
.y9_c00495{bottom:807.867459pt;}
.y8_c00495{bottom:834.747359pt;}
.y7_c00495{bottom:879.627359pt;}
.y6_c00495{bottom:906.586615pt;}
.y5_c00495{bottom:933.387159pt;}
.y4_c00495{bottom:960.267059pt;}
.y3_c00495{bottom:987.067603pt;}
.h2_c00495{height:55.645234pt;}
.h1_c00495{height:55.797187pt;}
.h5_c00495{height:56.192266pt;}
.h4_c00495{height:60.968367pt;}
.h3_c00495{height:65.802198pt;}
.h0_c00495{height:1122.666667pt;}
.w0_c00495{width:793.333333pt;}
.x0_c00495{left:0.000000pt;}
.x2_c00495{left:73.520052pt;}
.x1_c00495{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_598a6421596cc168d9fe66fd.woff2')format("woff");}.ff1_c00496{font-family:ff1_c00496;line-height:1.106934;font-style:normal;font-weight:normal;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_3dd503c0ac59d2c05e5f0039.woff2')format("woff");}.ff2_c00496{font-family:ff2_c00496;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00496{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00496{vertical-align:-32.400000px;}
.v0_c00496{vertical-align:0.000000px;}
.v1_c00496{vertical-align:32.411124px;}
.ls10_c00496{letter-spacing:-0.084024px;}
.ls7_c00496{letter-spacing:-0.063018px;}
.lsb_c00496{letter-spacing:-0.042012px;}
.lsf_c00496{letter-spacing:-0.035010px;}
.ls9_c00496{letter-spacing:-0.028008px;}
.lsd_c00496{letter-spacing:-0.021006px;}
.lse_c00496{letter-spacing:-0.014004px;}
.lsa_c00496{letter-spacing:-0.007002px;}
.ls8_c00496{letter-spacing:0.000000px;}
.ls0_c00496{letter-spacing:0.007002px;}
.ls4_c00496{letter-spacing:0.014004px;}
.ls3_c00496{letter-spacing:0.021006px;}
.ls5_c00496{letter-spacing:0.023281px;}
.ls6_c00496{letter-spacing:0.028008px;}
.ls2_c00496{letter-spacing:0.063018px;}
.ls1_c00496{letter-spacing:6.091740px;}
.lsc_c00496{letter-spacing:11.868390px;}
.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:-19.402542px;}
.ws1_c00496{word-spacing:-12.967628px;}
.ws19_c00496{word-spacing:-0.035010px;}
.ws23_c00496{word-spacing:-0.014004px;}
.ws2_c00496{word-spacing:0.000000px;}
.ws1e_c00496{word-spacing:0.021006px;}
.ws7_c00496{word-spacing:0.336096px;}
.ws11_c00496{word-spacing:0.385110px;}
.ws6_c00496{word-spacing:0.749214px;}
.ws27_c00496{word-spacing:2.156616px;}
.ws28_c00496{word-spacing:2.443698px;}
.ws24_c00496{word-spacing:2.499714px;}
.ws25_c00496{word-spacing:2.534724px;}
.ws1f_c00496{word-spacing:3.963132px;}
.ws29_c00496{word-spacing:4.656330px;}
.ws15_c00496{word-spacing:4.677336px;}
.ws16_c00496{word-spacing:4.691340px;}
.ws1c_c00496{word-spacing:5.034438px;}
.ws1b_c00496{word-spacing:5.090454px;}
.ws14_c00496{word-spacing:6.105744px;}
.wsb_c00496{word-spacing:6.119748px;}
.ws3_c00496{word-spacing:6.133752px;}
.wsc_c00496{word-spacing:6.140754px;}
.ws26_c00496{word-spacing:6.854958px;}
.ws21_c00496{word-spacing:7.198056px;}
.ws1d_c00496{word-spacing:7.520148px;}
.ws5_c00496{word-spacing:7.548156px;}
.ws4_c00496{word-spacing:7.555158px;}
.ws13_c00496{word-spacing:9.697770px;}
.ws12_c00496{word-spacing:10.054872px;}
.ws18_c00496{word-spacing:10.068876px;}
.ws17_c00496{word-spacing:10.075878px;}
.ws20_c00496{word-spacing:10.110888px;}
.ws22_c00496{word-spacing:10.790082px;}
.wsd_c00496{word-spacing:10.797084px;}
.ws8_c00496{word-spacing:11.910402px;}
.ws1a_c00496{word-spacing:14.046012px;}
.ws9_c00496{word-spacing:24.464988px;}
.wsa_c00496{word-spacing:26.285508px;}
.wse_c00496{word-spacing:39.526290px;}
.ws10_c00496{word-spacing:39.568302px;}
.wsf_c00496{word-spacing:40.030434px;}
._1_c00496{margin-left:-1.008288px;}
._0_c00496{width:1.001286px;}
.fc0_c00496{color:rgb(0,0,0);}
.fs1_c00496{font-size:46.562400px;}
.fs0_c00496{font-size:70.020000px;}
.y0_c00496{bottom:0.000000px;}
.y2_c00496{bottom:109.740968px;}
.y1_c00496{bottom:129.810450px;}
.y22_c00496{bottom:163.557619px;}
.y21_c00496{bottom:193.708232px;}
.y20_c00496{bottom:223.948119px;}
.y1f_c00496{bottom:254.098731px;}
.y1e_c00496{bottom:286.498736px;}
.y1d_c00496{bottom:318.898740px;}
.y1c_c00496{bottom:349.049352px;}
.y1b_c00496{bottom:379.289240px;}
.y1a_c00496{bottom:409.439852px;}
.y19_c00496{bottom:439.679739px;}
.y18_c00496{bottom:472.079744px;}
.y17_c00496{bottom:504.390472px;}
.y16_c00496{bottom:534.630360px;}
.y15_c00496{bottom:564.870248px;}
.y14_c00496{bottom:594.929833px;}
.y13_c00496{bottom:627.329838px;}
.y12_c00496{bottom:657.477669px;}
.y11_c00496{bottom:687.717557px;}
.y10_c00496{bottom:717.868169px;}
.yf_c00496{bottom:748.108056px;}
.ye_c00496{bottom:778.258668px;}
.yd_c00496{bottom:808.498556px;}
.yc_c00496{bottom:838.649168px;}
.yb_c00496{bottom:868.889055px;}
.ya_c00496{bottom:899.039667px;}
.y9_c00496{bottom:929.279555px;}
.y8_c00496{bottom:959.519442px;}
.y7_c00496{bottom:989.670054px;}
.y6_c00496{bottom:1019.909942px;}
.y5_c00496{bottom:1050.060553px;}
.y4_c00496{bottom:1080.300441px;}
.y3_c00496{bottom:1110.451053px;}
.h2_c00496{height:62.600889px;}
.h1_c00496{height:62.771836px;}
.h3_c00496{height:74.039910px;}
.h0_c00496{height:1263.000000px;}
.w0_c00496{width:892.500000px;}
.x0_c00496{left:0.000000px;}
.x2_c00496{left:82.710059px;}
.x3_c00496{left:93.511017px;}
.x1_c00496{left:431.730000px;}
@media print{
.v2_c00496{vertical-align:-28.800000pt;}
.v0_c00496{vertical-align:0.000000pt;}
.v1_c00496{vertical-align:28.809888pt;}
.ls10_c00496{letter-spacing:-0.074688pt;}
.ls7_c00496{letter-spacing:-0.056016pt;}
.lsb_c00496{letter-spacing:-0.037344pt;}
.lsf_c00496{letter-spacing:-0.031120pt;}
.ls9_c00496{letter-spacing:-0.024896pt;}
.lsd_c00496{letter-spacing:-0.018672pt;}
.lse_c00496{letter-spacing:-0.012448pt;}
.lsa_c00496{letter-spacing:-0.006224pt;}
.ls8_c00496{letter-spacing:0.000000pt;}
.ls0_c00496{letter-spacing:0.006224pt;}
.ls4_c00496{letter-spacing:0.012448pt;}
.ls3_c00496{letter-spacing:0.018672pt;}
.ls5_c00496{letter-spacing:0.020694pt;}
.ls6_c00496{letter-spacing:0.024896pt;}
.ls2_c00496{letter-spacing:0.056016pt;}
.ls1_c00496{letter-spacing:5.414880pt;}
.lsc_c00496{letter-spacing:10.549680pt;}
.ws0_c00496{word-spacing:-17.246704pt;}
.ws1_c00496{word-spacing:-11.526781pt;}
.ws19_c00496{word-spacing:-0.031120pt;}
.ws23_c00496{word-spacing:-0.012448pt;}
.ws2_c00496{word-spacing:0.000000pt;}
.ws1e_c00496{word-spacing:0.018672pt;}
.ws7_c00496{word-spacing:0.298752pt;}
.ws11_c00496{word-spacing:0.342320pt;}
.ws6_c00496{word-spacing:0.665968pt;}
.ws27_c00496{word-spacing:1.916992pt;}
.ws28_c00496{word-spacing:2.172176pt;}
.ws24_c00496{word-spacing:2.221968pt;}
.ws25_c00496{word-spacing:2.253088pt;}
.ws1f_c00496{word-spacing:3.522784pt;}
.ws29_c00496{word-spacing:4.138960pt;}
.ws15_c00496{word-spacing:4.157632pt;}
.ws16_c00496{word-spacing:4.170080pt;}
.ws1c_c00496{word-spacing:4.475056pt;}
.ws1b_c00496{word-spacing:4.524848pt;}
.ws14_c00496{word-spacing:5.427328pt;}
.wsb_c00496{word-spacing:5.439776pt;}
.ws3_c00496{word-spacing:5.452224pt;}
.wsc_c00496{word-spacing:5.458448pt;}
.ws26_c00496{word-spacing:6.093296pt;}
.ws21_c00496{word-spacing:6.398272pt;}
.ws1d_c00496{word-spacing:6.684576pt;}
.ws5_c00496{word-spacing:6.709472pt;}
.ws4_c00496{word-spacing:6.715696pt;}
.ws13_c00496{word-spacing:8.620240pt;}
.ws12_c00496{word-spacing:8.937664pt;}
.ws18_c00496{word-spacing:8.950112pt;}
.ws17_c00496{word-spacing:8.956336pt;}
.ws20_c00496{word-spacing:8.987456pt;}
.ws22_c00496{word-spacing:9.591184pt;}
.wsd_c00496{word-spacing:9.597408pt;}
.ws8_c00496{word-spacing:10.587024pt;}
.ws1a_c00496{word-spacing:12.485344pt;}
.ws9_c00496{word-spacing:21.746656pt;}
.wsa_c00496{word-spacing:23.364896pt;}
.wse_c00496{word-spacing:35.134480pt;}
.ws10_c00496{word-spacing:35.171824pt;}
.wsf_c00496{word-spacing:35.582608pt;}
._1_c00496{margin-left:-0.896256pt;}
._0_c00496{width:0.890032pt;}
.fs1_c00496{font-size:41.388800pt;}
.fs0_c00496{font-size:62.240000pt;}
.y0_c00496{bottom:0.000000pt;}
.y2_c00496{bottom:97.547527pt;}
.y1_c00496{bottom:115.387067pt;}
.y22_c00496{bottom:145.384551pt;}
.y21_c00496{bottom:172.185095pt;}
.y20_c00496{bottom:199.064995pt;}
.y1f_c00496{bottom:225.865539pt;}
.y1e_c00496{bottom:254.665543pt;}
.y1d_c00496{bottom:283.465547pt;}
.y1c_c00496{bottom:310.266091pt;}
.y1b_c00496{bottom:337.145991pt;}
.y1a_c00496{bottom:363.946535pt;}
.y19_c00496{bottom:390.826435pt;}
.y18_c00496{bottom:419.626439pt;}
.y17_c00496{bottom:448.347087pt;}
.y16_c00496{bottom:475.226987pt;}
.y15_c00496{bottom:502.106887pt;}
.y14_c00496{bottom:528.826519pt;}
.y13_c00496{bottom:557.626523pt;}
.y12_c00496{bottom:584.424595pt;}
.y11_c00496{bottom:611.304495pt;}
.y10_c00496{bottom:638.105039pt;}
.yf_c00496{bottom:664.984939pt;}
.ye_c00496{bottom:691.785483pt;}
.yd_c00496{bottom:718.665383pt;}
.yc_c00496{bottom:745.465927pt;}
.yb_c00496{bottom:772.345827pt;}
.ya_c00496{bottom:799.146371pt;}
.y9_c00496{bottom:826.026271pt;}
.y8_c00496{bottom:852.906171pt;}
.y7_c00496{bottom:879.706715pt;}
.y6_c00496{bottom:906.586615pt;}
.y5_c00496{bottom:933.387159pt;}
.y4_c00496{bottom:960.267059pt;}
.y3_c00496{bottom:987.067603pt;}
.h2_c00496{height:55.645234pt;}
.h1_c00496{height:55.797187pt;}
.h3_c00496{height:65.813254pt;}
.h0_c00496{height:1122.666667pt;}
.w0_c00496{width:793.333333pt;}
.x0_c00496{left:0.000000pt;}
.x2_c00496{left:73.520052pt;}
.x3_c00496{left:83.120904pt;}
.x1_c00496{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d596f4fdd8ebc753e99f7f51.woff2')format("woff");}.ff1_c00497{font-family:ff1_c00497;line-height:1.106934;font-style:normal;font-weight:normal;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_62b90f318bceb7c95392d0a2.woff2')format("woff");}.ff2_c00497{font-family:ff2_c00497;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00497{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00497{vertical-align:0.000000px;}
.v1_c00497{vertical-align:32.042034px;}
.ls8_c00497{letter-spacing:-0.335249px;}
.ls4_c00497{letter-spacing:-0.063018px;}
.lsb_c00497{letter-spacing:-0.056016px;}
.ls7_c00497{letter-spacing:-0.035010px;}
.lsc_c00497{letter-spacing:-0.028008px;}
.ls9_c00497{letter-spacing:-0.021006px;}
.ls6_c00497{letter-spacing:-0.014004px;}
.lsa_c00497{letter-spacing:-0.007002px;}
.ls5_c00497{letter-spacing:0.000000px;}
.ls1_c00497{letter-spacing:0.014004px;}
.ls3_c00497{letter-spacing:0.023281px;}
.ls0_c00497{letter-spacing:0.028008px;}
.ls2_c00497{letter-spacing:0.049014px;}
.sc__c00497{text-shadow:none;}
.sc0_c00497{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00497{-webkit-text-stroke:0px transparent;}
.sc0_c00497{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00497{word-spacing:-12.967628px;}
.ws0_c00497{word-spacing:-12.609098px;}
.ws7_c00497{word-spacing:-0.014004px;}
.ws1d_c00497{word-spacing:-0.007002px;}
.ws2_c00497{word-spacing:0.000000px;}
.wse_c00497{word-spacing:0.315090px;}
.ws1e_c00497{word-spacing:0.343098px;}
.ws19_c00497{word-spacing:0.728208px;}
.ws18_c00497{word-spacing:1.015290px;}
.ws6_c00497{word-spacing:1.036296px;}
.ws9_c00497{word-spacing:1.442412px;}
.ws5_c00497{word-spacing:1.463418px;}
.wsc_c00497{word-spacing:1.806516px;}
.ws10_c00497{word-spacing:2.156616px;}
.ws8_c00497{word-spacing:2.520720px;}
.ws1a_c00497{word-spacing:2.527722px;}
.ws4_c00497{word-spacing:2.863818px;}
.wsf_c00497{word-spacing:4.670334px;}
.ws1b_c00497{word-spacing:7.191054px;}
.wsd_c00497{word-spacing:7.569162px;}
.wsa_c00497{word-spacing:7.940268px;}
.ws12_c00497{word-spacing:10.769076px;}
.ws17_c00497{word-spacing:12.253500px;}
.ws13_c00497{word-spacing:14.802228px;}
.ws15_c00497{word-spacing:17.645040px;}
.ws14_c00497{word-spacing:17.680050px;}
.ws11_c00497{word-spacing:19.444554px;}
.wsb_c00497{word-spacing:21.244068px;}
.ws1c_c00497{word-spacing:22.686480px;}
.ws16_c00497{word-spacing:24.121890px;}
.ws3_c00497{word-spacing:27.720918px;}
._1_c00497{margin-left:-1.036296px;}
._0_c00497{width:1.386396px;}
.fc0_c00497{color:rgb(0,0,0);}
.fs1_c00497{font-size:46.562400px;}
.fs0_c00497{font-size:70.020000px;}
.y0_c00497{bottom:0.000000px;}
.y2_c00497{bottom:109.740968px;}
.y1_c00497{bottom:129.810450px;}
.y22_c00497{bottom:161.309588px;}
.y21_c00497{bottom:193.709592px;}
.y20_c00497{bottom:223.949480px;}
.y1f_c00497{bottom:254.100092px;}
.y1e_c00497{bottom:284.339979px;}
.y1d_c00497{bottom:314.490591px;}
.y1c_c00497{bottom:346.890596px;}
.y1b_c00497{bottom:379.286967px;}
.y1a_c00497{bottom:409.437579px;}
.y19_c00497{bottom:439.677467px;}
.y18_c00497{bottom:469.828079px;}
.y17_c00497{bottom:500.067966px;}
.y16_c00497{bottom:530.218578px;}
.y15_c00497{bottom:560.458465px;}
.y14_c00497{bottom:590.518051px;}
.y13_c00497{bottom:620.757939px;}
.y12_c00497{bottom:650.908551px;}
.y11_c00497{bottom:681.148438px;}
.y10_c00497{bottom:713.548443px;}
.yf_c00497{bottom:743.699055px;}
.ye_c00497{bottom:773.938942px;}
.yd_c00497{bottom:804.089555px;}
.yc_c00497{bottom:834.329442px;}
.yb_c00497{bottom:864.480054px;}
.ya_c00497{bottom:894.719942px;}
.y9_c00497{bottom:924.870554px;}
.y8_c00497{bottom:955.110441px;}
.y7_c00497{bottom:987.510445px;}
.y6_c00497{bottom:1019.909942px;}
.y5_c00497{bottom:1050.060553px;}
.y4_c00497{bottom:1080.300441px;}
.y3_c00497{bottom:1110.451053px;}
.h2_c00497{height:62.600889px;}
.h1_c00497{height:62.771836px;}
.h3_c00497{height:73.670820px;}
.h4_c00497{height:73.682718px;}
.h0_c00497{height:1263.000000px;}
.w0_c00497{width:892.500000px;}
.x0_c00497{left:0.000000px;}
.x2_c00497{left:82.710059px;}
.x3_c00497{left:93.510270px;}
.x1_c00497{left:431.730000px;}
@media print{
.v0_c00497{vertical-align:0.000000pt;}
.v1_c00497{vertical-align:28.481808pt;}
.ls8_c00497{letter-spacing:-0.297999pt;}
.ls4_c00497{letter-spacing:-0.056016pt;}
.lsb_c00497{letter-spacing:-0.049792pt;}
.ls7_c00497{letter-spacing:-0.031120pt;}
.lsc_c00497{letter-spacing:-0.024896pt;}
.ls9_c00497{letter-spacing:-0.018672pt;}
.ls6_c00497{letter-spacing:-0.012448pt;}
.lsa_c00497{letter-spacing:-0.006224pt;}
.ls5_c00497{letter-spacing:0.000000pt;}
.ls1_c00497{letter-spacing:0.012448pt;}
.ls3_c00497{letter-spacing:0.020694pt;}
.ls0_c00497{letter-spacing:0.024896pt;}
.ls2_c00497{letter-spacing:0.043568pt;}
.ws1_c00497{word-spacing:-11.526781pt;}
.ws0_c00497{word-spacing:-11.208087pt;}
.ws7_c00497{word-spacing:-0.012448pt;}
.ws1d_c00497{word-spacing:-0.006224pt;}
.ws2_c00497{word-spacing:0.000000pt;}
.wse_c00497{word-spacing:0.280080pt;}
.ws1e_c00497{word-spacing:0.304976pt;}
.ws19_c00497{word-spacing:0.647296pt;}
.ws18_c00497{word-spacing:0.902480pt;}
.ws6_c00497{word-spacing:0.921152pt;}
.ws9_c00497{word-spacing:1.282144pt;}
.ws5_c00497{word-spacing:1.300816pt;}
.wsc_c00497{word-spacing:1.605792pt;}
.ws10_c00497{word-spacing:1.916992pt;}
.ws8_c00497{word-spacing:2.240640pt;}
.ws1a_c00497{word-spacing:2.246864pt;}
.ws4_c00497{word-spacing:2.545616pt;}
.wsf_c00497{word-spacing:4.151408pt;}
.ws1b_c00497{word-spacing:6.392048pt;}
.wsd_c00497{word-spacing:6.728144pt;}
.wsa_c00497{word-spacing:7.058016pt;}
.ws12_c00497{word-spacing:9.572512pt;}
.ws17_c00497{word-spacing:10.892000pt;}
.ws13_c00497{word-spacing:13.157536pt;}
.ws15_c00497{word-spacing:15.684480pt;}
.ws14_c00497{word-spacing:15.715600pt;}
.ws11_c00497{word-spacing:17.284048pt;}
.wsb_c00497{word-spacing:18.883616pt;}
.ws1c_c00497{word-spacing:20.165760pt;}
.ws16_c00497{word-spacing:21.441680pt;}
.ws3_c00497{word-spacing:24.640816pt;}
._1_c00497{margin-left:-0.921152pt;}
._0_c00497{width:1.232352pt;}
.fs1_c00497{font-size:41.388800pt;}
.fs0_c00497{font-size:62.240000pt;}
.y0_c00497{bottom:0.000000pt;}
.y2_c00497{bottom:97.547527pt;}
.y1_c00497{bottom:115.387067pt;}
.y22_c00497{bottom:143.386300pt;}
.y21_c00497{bottom:172.186304pt;}
.y20_c00497{bottom:199.066204pt;}
.y1f_c00497{bottom:225.866748pt;}
.y1e_c00497{bottom:252.746648pt;}
.y1d_c00497{bottom:279.547192pt;}
.y1c_c00497{bottom:308.347196pt;}
.y1b_c00497{bottom:337.143971pt;}
.y1a_c00497{bottom:363.944515pt;}
.y19_c00497{bottom:390.824415pt;}
.y18_c00497{bottom:417.624959pt;}
.y17_c00497{bottom:444.504859pt;}
.y16_c00497{bottom:471.305403pt;}
.y15_c00497{bottom:498.185303pt;}
.y14_c00497{bottom:524.904935pt;}
.y13_c00497{bottom:551.784835pt;}
.y12_c00497{bottom:578.585379pt;}
.y11_c00497{bottom:605.465279pt;}
.y10_c00497{bottom:634.265283pt;}
.yf_c00497{bottom:661.065827pt;}
.ye_c00497{bottom:687.945727pt;}
.yd_c00497{bottom:714.746271pt;}
.yc_c00497{bottom:741.626171pt;}
.yb_c00497{bottom:768.426715pt;}
.ya_c00497{bottom:795.306615pt;}
.y9_c00497{bottom:822.107159pt;}
.y8_c00497{bottom:848.987059pt;}
.y7_c00497{bottom:877.787063pt;}
.y6_c00497{bottom:906.586615pt;}
.y5_c00497{bottom:933.387159pt;}
.y4_c00497{bottom:960.267059pt;}
.y3_c00497{bottom:987.067603pt;}
.h2_c00497{height:55.645234pt;}
.h1_c00497{height:55.797187pt;}
.h3_c00497{height:65.485174pt;}
.h4_c00497{height:65.495750pt;}
.h0_c00497{height:1122.666667pt;}
.w0_c00497{width:793.333333pt;}
.x0_c00497{left:0.000000pt;}
.x2_c00497{left:73.520052pt;}
.x3_c00497{left:83.120240pt;}
.x1_c00497{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_74348287251da61c9bce6277.woff2')format("woff");}.ff1_c00498{font-family:ff1_c00498;line-height:1.106934;font-style:normal;font-weight:normal;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_013f9a60cbb22f58605f89fd.woff2')format("woff");}.ff2_c00498{font-family:ff2_c00498;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00498{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00498{vertical-align:0.000000px;}
.v1_c00498{vertical-align:32.042034px;}
.ls4_c00498{letter-spacing:-0.063018px;}
.ls8_c00498{letter-spacing:-0.049014px;}
.lsd_c00498{letter-spacing:-0.042012px;}
.lsc_c00498{letter-spacing:-0.035010px;}
.lsa_c00498{letter-spacing:-0.028008px;}
.ls9_c00498{letter-spacing:-0.021006px;}
.ls6_c00498{letter-spacing:-0.014004px;}
.ls7_c00498{letter-spacing:-0.007002px;}
.ls5_c00498{letter-spacing:0.000000px;}
.ls1_c00498{letter-spacing:0.014004px;}
.ls2_c00498{letter-spacing:0.021006px;}
.ls0_c00498{letter-spacing:0.023281px;}
.ls3_c00498{letter-spacing:0.035010px;}
.lsb_c00498{letter-spacing:0.343098px;}
.sc__c00498{text-shadow:none;}
.sc0_c00498{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00498{-webkit-text-stroke:0px transparent;}
.sc0_c00498{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00498{word-spacing:-19.465560px;}
.ws0_c00498{word-spacing:-12.967628px;}
.wse_c00498{word-spacing:-0.007002px;}
.ws2_c00498{word-spacing:0.000000px;}
.wsd_c00498{word-spacing:0.007002px;}
.wsc_c00498{word-spacing:0.014004px;}
.ws1b_c00498{word-spacing:0.028008px;}
.ws6_c00498{word-spacing:0.035010px;}
.ws8_c00498{word-spacing:0.728208px;}
.ws3_c00498{word-spacing:1.442412px;}
.ws5_c00498{word-spacing:2.513718px;}
.ws1e_c00498{word-spacing:5.405544px;}
.wsb_c00498{word-spacing:6.826950px;}
.ws17_c00498{word-spacing:6.847956px;}
.wsa_c00498{word-spacing:7.919262px;}
.ws9_c00498{word-spacing:7.926264px;}
.ws7_c00498{word-spacing:9.711774px;}
.ws18_c00498{word-spacing:9.718776px;}
.ws1c_c00498{word-spacing:10.790082px;}
.ws1d_c00498{word-spacing:10.811088px;}
.wsf_c00498{word-spacing:11.490282px;}
.ws10_c00498{word-spacing:11.518290px;}
.ws4_c00498{word-spacing:12.589596px;}
.ws12_c00498{word-spacing:15.082308px;}
.ws11_c00498{word-spacing:15.117318px;}
.ws13_c00498{word-spacing:17.624034px;}
.ws19_c00498{word-spacing:19.388538px;}
.ws1a_c00498{word-spacing:19.437552px;}
.ws14_c00498{word-spacing:23.778792px;}
.ws16_c00498{word-spacing:33.084450px;}
.ws15_c00498{word-spacing:33.091452px;}
._1_c00498{margin-left:-1.449414px;}
._0_c00498{width:1.169334px;}
.fc0_c00498{color:rgb(0,0,0);}
.fs1_c00498{font-size:46.562400px;}
.fs0_c00498{font-size:70.020000px;}
.y0_c00498{bottom:0.000000px;}
.y2_c00498{bottom:109.740968px;}
.y1_c00498{bottom:129.810450px;}
.y22_c00498{bottom:150.419979px;}
.y21_c00498{bottom:180.570591px;}
.y20_c00498{bottom:212.970596px;}
.y1f_c00498{bottom:245.368735px;}
.y1e_c00498{bottom:275.519347px;}
.y1d_c00498{bottom:305.759235px;}
.y1c_c00498{bottom:335.909847px;}
.y1b_c00498{bottom:366.149734px;}
.y1a_c00498{bottom:396.300346px;}
.y19_c00498{bottom:426.540234px;}
.y18_c00498{bottom:458.940238px;}
.y17_c00498{bottom:491.340243px;}
.y16_c00498{bottom:521.490855px;}
.y15_c00498{bottom:551.730742px;}
.y14_c00498{bottom:583.950445px;}
.y13_c00498{bottom:616.349329px;}
.y12_c00498{bottom:646.589217px;}
.y11_c00498{bottom:676.739829px;}
.y10_c00498{bottom:706.979716px;}
.yf_c00498{bottom:739.379721px;}
.ye_c00498{bottom:771.689550px;}
.yd_c00498{bottom:801.929438px;}
.yc_c00498{bottom:834.329442px;}
.yb_c00498{bottom:864.480054px;}
.ya_c00498{bottom:894.719942px;}
.y9_c00498{bottom:924.870554px;}
.y8_c00498{bottom:955.110441px;}
.y7_c00498{bottom:987.510445px;}
.y6_c00498{bottom:1019.909942px;}
.y5_c00498{bottom:1050.060553px;}
.y4_c00498{bottom:1080.300441px;}
.y3_c00498{bottom:1110.451053px;}
.h2_c00498{height:62.600889px;}
.h1_c00498{height:62.771836px;}
.h3_c00498{height:73.670820px;}
.h6_c00498{height:73.789322px;}
.h4_c00498{height:74.032986px;}
.h5_c00498{height:74.033268px;}
.h0_c00498{height:1263.000000px;}
.w0_c00498{width:892.500000px;}
.x0_c00498{left:0.000000px;}
.x2_c00498{left:82.710059px;}
.x1_c00498{left:431.730000px;}
@media print{
.v0_c00498{vertical-align:0.000000pt;}
.v1_c00498{vertical-align:28.481808pt;}
.ls4_c00498{letter-spacing:-0.056016pt;}
.ls8_c00498{letter-spacing:-0.043568pt;}
.lsd_c00498{letter-spacing:-0.037344pt;}
.lsc_c00498{letter-spacing:-0.031120pt;}
.lsa_c00498{letter-spacing:-0.024896pt;}
.ls9_c00498{letter-spacing:-0.018672pt;}
.ls6_c00498{letter-spacing:-0.012448pt;}
.ls7_c00498{letter-spacing:-0.006224pt;}
.ls5_c00498{letter-spacing:0.000000pt;}
.ls1_c00498{letter-spacing:0.012448pt;}
.ls2_c00498{letter-spacing:0.018672pt;}
.ls0_c00498{letter-spacing:0.020694pt;}
.ls3_c00498{letter-spacing:0.031120pt;}
.lsb_c00498{letter-spacing:0.304976pt;}
.ws1_c00498{word-spacing:-17.302720pt;}
.ws0_c00498{word-spacing:-11.526781pt;}
.wse_c00498{word-spacing:-0.006224pt;}
.ws2_c00498{word-spacing:0.000000pt;}
.wsd_c00498{word-spacing:0.006224pt;}
.wsc_c00498{word-spacing:0.012448pt;}
.ws1b_c00498{word-spacing:0.024896pt;}
.ws6_c00498{word-spacing:0.031120pt;}
.ws8_c00498{word-spacing:0.647296pt;}
.ws3_c00498{word-spacing:1.282144pt;}
.ws5_c00498{word-spacing:2.234416pt;}
.ws1e_c00498{word-spacing:4.804928pt;}
.wsb_c00498{word-spacing:6.068400pt;}
.ws17_c00498{word-spacing:6.087072pt;}
.wsa_c00498{word-spacing:7.039344pt;}
.ws9_c00498{word-spacing:7.045568pt;}
.ws7_c00498{word-spacing:8.632688pt;}
.ws18_c00498{word-spacing:8.638912pt;}
.ws1c_c00498{word-spacing:9.591184pt;}
.ws1d_c00498{word-spacing:9.609856pt;}
.wsf_c00498{word-spacing:10.213584pt;}
.ws10_c00498{word-spacing:10.238480pt;}
.ws4_c00498{word-spacing:11.190752pt;}
.ws12_c00498{word-spacing:13.406496pt;}
.ws11_c00498{word-spacing:13.437616pt;}
.ws13_c00498{word-spacing:15.665808pt;}
.ws19_c00498{word-spacing:17.234256pt;}
.ws1a_c00498{word-spacing:17.277824pt;}
.ws14_c00498{word-spacing:21.136704pt;}
.ws16_c00498{word-spacing:29.408400pt;}
.ws15_c00498{word-spacing:29.414624pt;}
._1_c00498{margin-left:-1.288368pt;}
._0_c00498{width:1.039408pt;}
.fs1_c00498{font-size:41.388800pt;}
.fs0_c00498{font-size:62.240000pt;}
.y0_c00498{bottom:0.000000pt;}
.y2_c00498{bottom:97.547527pt;}
.y1_c00498{bottom:115.387067pt;}
.y22_c00498{bottom:133.706648pt;}
.y21_c00498{bottom:160.507192pt;}
.y20_c00498{bottom:189.307196pt;}
.y1f_c00498{bottom:218.105543pt;}
.y1e_c00498{bottom:244.906087pt;}
.y1d_c00498{bottom:271.785987pt;}
.y1c_c00498{bottom:298.586531pt;}
.y1b_c00498{bottom:325.466431pt;}
.y1a_c00498{bottom:352.266975pt;}
.y19_c00498{bottom:379.146875pt;}
.y18_c00498{bottom:407.946879pt;}
.y17_c00498{bottom:436.746883pt;}
.y16_c00498{bottom:463.547427pt;}
.y15_c00498{bottom:490.427327pt;}
.y14_c00498{bottom:519.067063pt;}
.y13_c00498{bottom:547.866071pt;}
.y12_c00498{bottom:574.745971pt;}
.y11_c00498{bottom:601.546515pt;}
.y10_c00498{bottom:628.426415pt;}
.yf_c00498{bottom:657.226419pt;}
.ye_c00498{bottom:685.946267pt;}
.yd_c00498{bottom:712.826167pt;}
.yc_c00498{bottom:741.626171pt;}
.yb_c00498{bottom:768.426715pt;}
.ya_c00498{bottom:795.306615pt;}
.y9_c00498{bottom:822.107159pt;}
.y8_c00498{bottom:848.987059pt;}
.y7_c00498{bottom:877.787063pt;}
.y6_c00498{bottom:906.586615pt;}
.y5_c00498{bottom:933.387159pt;}
.y4_c00498{bottom:960.267059pt;}
.y3_c00498{bottom:987.067603pt;}
.h2_c00498{height:55.645234pt;}
.h1_c00498{height:55.797187pt;}
.h3_c00498{height:65.485174pt;}
.h6_c00498{height:65.590509pt;}
.h4_c00498{height:65.807099pt;}
.h5_c00498{height:65.807350pt;}
.h0_c00498{height:1122.666667pt;}
.w0_c00498{width:793.333333pt;}
.x0_c00498{left:0.000000pt;}
.x2_c00498{left:73.520052pt;}
.x1_c00498{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d852d38313097fa57a646650.woff2')format("woff");}.ff1_c00499{font-family:ff1_c00499;line-height:1.106934;font-style:normal;font-weight:normal;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_e2df3546ba1b303ce933095d.woff2')format("woff");}.ff2_c00499{font-family:ff2_c00499;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00499{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00499{vertical-align:0.000000px;}
.v1_c00499{vertical-align:32.046066px;}
.ls6_c00499{letter-spacing:-0.063018px;}
.lse_c00499{letter-spacing:-0.049014px;}
.ls8_c00499{letter-spacing:-0.042012px;}
.ls9_c00499{letter-spacing:-0.028008px;}
.lsd_c00499{letter-spacing:-0.021006px;}
.lsc_c00499{letter-spacing:-0.014004px;}
.lsa_c00499{letter-spacing:-0.007002px;}
.ls7_c00499{letter-spacing:0.000000px;}
.ls0_c00499{letter-spacing:0.007002px;}
.ls2_c00499{letter-spacing:0.014004px;}
.ls5_c00499{letter-spacing:0.021006px;}
.ls3_c00499{letter-spacing:0.023281px;}
.ls1_c00499{letter-spacing:0.028008px;}
.ls4_c00499{letter-spacing:0.070020px;}
.lsb_c00499{letter-spacing:0.119034px;}
.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:-19.584594px;}
.ws1_c00499{word-spacing:-12.967628px;}
.ws11_c00499{word-spacing:-0.084024px;}
.ws7_c00499{word-spacing:-0.021006px;}
.ws1c_c00499{word-spacing:-0.007002px;}
.ws2_c00499{word-spacing:0.000000px;}
.ws1b_c00499{word-spacing:0.007002px;}
.ws6_c00499{word-spacing:0.014004px;}
.ws1f_c00499{word-spacing:0.028008px;}
.ws1d_c00499{word-spacing:0.035010px;}
.ws1e_c00499{word-spacing:0.343098px;}
.ws20_c00499{word-spacing:0.350100px;}
.ws10_c00499{word-spacing:0.357102px;}
.ws14_c00499{word-spacing:0.693198px;}
.ws15_c00499{word-spacing:1.757502px;}
.ws1a_c00499{word-spacing:1.799514px;}
.ws13_c00499{word-spacing:2.149614px;}
.ws17_c00499{word-spacing:2.492712px;}
.ws12_c00499{word-spacing:2.520720px;}
.ws8_c00499{word-spacing:3.921120px;}
.ws16_c00499{word-spacing:3.970134px;}
.ws9_c00499{word-spacing:4.313232px;}
.wsa_c00499{word-spacing:5.020434px;}
.wsb_c00499{word-spacing:5.034438px;}
.ws3_c00499{word-spacing:5.748642px;}
.ws4_c00499{word-spacing:5.790654px;}
.ws19_c00499{word-spacing:7.527150px;}
.ws18_c00499{word-spacing:7.548156px;}
.wsf_c00499{word-spacing:7.898256px;}
.ws5_c00499{word-spacing:9.011574px;}
.wsc_c00499{word-spacing:9.347670px;}
.wsd_c00499{word-spacing:9.354672px;}
.wse_c00499{word-spacing:21.573162px;}
._1_c00499{margin-left:-1.316376px;}
._0_c00499{width:1.043298px;}
.fc0_c00499{color:rgb(0,0,0);}
.fs1_c00499{font-size:46.562400px;}
.fs0_c00499{font-size:70.020000px;}
.y0_c00499{bottom:0.000000px;}
.y2_c00499{bottom:109.740968px;}
.y1_c00499{bottom:129.810450px;}
.y21_c00499{bottom:182.819721px;}
.y20_c00499{bottom:215.128326px;}
.y1f_c00499{bottom:247.528330px;}
.y1e_c00499{bottom:277.768218px;}
.y1d_c00499{bottom:307.918830px;}
.y1c_c00499{bottom:338.158717px;}
.y1b_c00499{bottom:368.309329px;}
.y1a_c00499{bottom:398.549217px;}
.y19_c00499{bottom:428.699829px;}
.y18_c00499{bottom:458.939717px;}
.y17_c00499{bottom:491.339721px;}
.y16_c00499{bottom:523.649960px;}
.y15_c00499{bottom:553.889847px;}
.y14_c00499{bottom:583.949433px;}
.y13_c00499{bottom:614.189321px;}
.y12_c00499{bottom:644.429208px;}
.y11_c00499{bottom:674.579820px;}
.y10_c00499{bottom:706.979825px;}
.yf_c00499{bottom:739.379829px;}
.ye_c00499{bottom:771.690558px;}
.yd_c00499{bottom:801.930446px;}
.yc_c00499{bottom:834.328933px;}
.yb_c00499{bottom:864.479545px;}
.ya_c00499{bottom:894.719433px;}
.y9_c00499{bottom:924.870045px;}
.y8_c00499{bottom:955.109933px;}
.y7_c00499{bottom:987.509937px;}
.y6_c00499{bottom:1019.909942px;}
.y5_c00499{bottom:1050.060553px;}
.y4_c00499{bottom:1080.300441px;}
.y3_c00499{bottom:1110.451053px;}
.h2_c00499{height:62.600889px;}
.h1_c00499{height:62.771836px;}
.h3_c00499{height:73.674852px;}
.h4_c00499{height:74.144426px;}
.h5_c00499{height:74.150960px;}
.h0_c00499{height:1263.000000px;}
.w0_c00499{width:892.500000px;}
.x0_c00499{left:0.000000px;}
.x2_c00499{left:82.710059px;}
.x1_c00499{left:431.730000px;}
@media print{
.v0_c00499{vertical-align:0.000000pt;}
.v1_c00499{vertical-align:28.485392pt;}
.ls6_c00499{letter-spacing:-0.056016pt;}
.lse_c00499{letter-spacing:-0.043568pt;}
.ls8_c00499{letter-spacing:-0.037344pt;}
.ls9_c00499{letter-spacing:-0.024896pt;}
.lsd_c00499{letter-spacing:-0.018672pt;}
.lsc_c00499{letter-spacing:-0.012448pt;}
.lsa_c00499{letter-spacing:-0.006224pt;}
.ls7_c00499{letter-spacing:0.000000pt;}
.ls0_c00499{letter-spacing:0.006224pt;}
.ls2_c00499{letter-spacing:0.012448pt;}
.ls5_c00499{letter-spacing:0.018672pt;}
.ls3_c00499{letter-spacing:0.020694pt;}
.ls1_c00499{letter-spacing:0.024896pt;}
.ls4_c00499{letter-spacing:0.062240pt;}
.lsb_c00499{letter-spacing:0.105808pt;}
.ws0_c00499{word-spacing:-17.408528pt;}
.ws1_c00499{word-spacing:-11.526781pt;}
.ws11_c00499{word-spacing:-0.074688pt;}
.ws7_c00499{word-spacing:-0.018672pt;}
.ws1c_c00499{word-spacing:-0.006224pt;}
.ws2_c00499{word-spacing:0.000000pt;}
.ws1b_c00499{word-spacing:0.006224pt;}
.ws6_c00499{word-spacing:0.012448pt;}
.ws1f_c00499{word-spacing:0.024896pt;}
.ws1d_c00499{word-spacing:0.031120pt;}
.ws1e_c00499{word-spacing:0.304976pt;}
.ws20_c00499{word-spacing:0.311200pt;}
.ws10_c00499{word-spacing:0.317424pt;}
.ws14_c00499{word-spacing:0.616176pt;}
.ws15_c00499{word-spacing:1.562224pt;}
.ws1a_c00499{word-spacing:1.599568pt;}
.ws13_c00499{word-spacing:1.910768pt;}
.ws17_c00499{word-spacing:2.215744pt;}
.ws12_c00499{word-spacing:2.240640pt;}
.ws8_c00499{word-spacing:3.485440pt;}
.ws16_c00499{word-spacing:3.529008pt;}
.ws9_c00499{word-spacing:3.833984pt;}
.wsa_c00499{word-spacing:4.462608pt;}
.wsb_c00499{word-spacing:4.475056pt;}
.ws3_c00499{word-spacing:5.109904pt;}
.ws4_c00499{word-spacing:5.147248pt;}
.ws19_c00499{word-spacing:6.690800pt;}
.ws18_c00499{word-spacing:6.709472pt;}
.wsf_c00499{word-spacing:7.020672pt;}
.ws5_c00499{word-spacing:8.010288pt;}
.wsc_c00499{word-spacing:8.309040pt;}
.wsd_c00499{word-spacing:8.315264pt;}
.wse_c00499{word-spacing:19.176144pt;}
._1_c00499{margin-left:-1.170112pt;}
._0_c00499{width:0.927376pt;}
.fs1_c00499{font-size:41.388800pt;}
.fs0_c00499{font-size:62.240000pt;}
.y0_c00499{bottom:0.000000pt;}
.y2_c00499{bottom:97.547527pt;}
.y1_c00499{bottom:115.387067pt;}
.y21_c00499{bottom:162.506419pt;}
.y20_c00499{bottom:191.225179pt;}
.y1f_c00499{bottom:220.025183pt;}
.y1e_c00499{bottom:246.905083pt;}
.y1d_c00499{bottom:273.705627pt;}
.y1c_c00499{bottom:300.585527pt;}
.y1b_c00499{bottom:327.386071pt;}
.y1a_c00499{bottom:354.265971pt;}
.y19_c00499{bottom:381.066515pt;}
.y18_c00499{bottom:407.946415pt;}
.y17_c00499{bottom:436.746419pt;}
.y16_c00499{bottom:465.466631pt;}
.y15_c00499{bottom:492.346531pt;}
.y14_c00499{bottom:519.066163pt;}
.y13_c00499{bottom:545.946063pt;}
.y12_c00499{bottom:572.825963pt;}
.y11_c00499{bottom:599.626507pt;}
.y10_c00499{bottom:628.426511pt;}
.yf_c00499{bottom:657.226515pt;}
.ye_c00499{bottom:685.947163pt;}
.yd_c00499{bottom:712.827063pt;}
.yc_c00499{bottom:741.625719pt;}
.yb_c00499{bottom:768.426263pt;}
.ya_c00499{bottom:795.306163pt;}
.y9_c00499{bottom:822.106707pt;}
.y8_c00499{bottom:848.986607pt;}
.y7_c00499{bottom:877.786611pt;}
.y6_c00499{bottom:906.586615pt;}
.y5_c00499{bottom:933.387159pt;}
.y4_c00499{bottom:960.267059pt;}
.y3_c00499{bottom:987.067603pt;}
.h2_c00499{height:55.645234pt;}
.h1_c00499{height:55.797187pt;}
.h3_c00499{height:65.488758pt;}
.h4_c00499{height:65.906156pt;}
.h5_c00499{height:65.911965pt;}
.h0_c00499{height:1122.666667pt;}
.w0_c00499{width:793.333333pt;}
.x0_c00499{left:0.000000pt;}
.x2_c00499{left:73.520052pt;}
.x1_c00499{left:383.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f3a354c88ba0cda4ff4ad670.woff2')format("woff");}.ff1_c00001{font-family:ff1_c00001;line-height:1.106934;font-style:normal;font-weight:normal;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_0183b125df93989bf8b623f7.woff2')format("woff");}.ff2_c00001{font-family:ff2_c00001;line-height:1.104492;font-style:normal;font-weight:normal;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_0ed3248828c9d672c6bc55d7.woff2')format("woff");}.ff3_c00001{font-family:ff3_c00001;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00001;src:url('chunks/assets/font_c70f65a84f046c0e1112c407.woff2')format("woff");}.ff4_c00001{font-family:ff4_c00001;line-height:0.889648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00001;src:url('chunks/assets/font_63336564a80ceb7b760c34a6.woff2')format("woff");}.ff5_c00001{font-family:ff5_c00001;line-height:0.892090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00001;src:url('chunks/assets/font_c2d0a549e34b9efc7f727297.woff2')format("woff");}.ff6_c00001{font-family:ff6_c00001;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00001;src:url('chunks/assets/font_51437792748af6fea7e17a24.woff2')format("woff");}.ff7_c00001{font-family:ff7_c00001;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00001;src:url('chunks/assets/font_83ef1862d09c1d8b61fb95f4.woff2')format("woff");}.ff8_c00001{font-family:ff8_c00001;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00001{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3_c00001{vertical-align:-52.560000px;}
.v4_c00001{vertical-align:-40.680600px;}
.v2_c00001{vertical-align:-32.040000px;}
.v0_c00001{vertical-align:0.000000px;}
.v1_c00001{vertical-align:32.043642px;}
.ls7a_c00001{letter-spacing:-0.595827px;}
.ls54_c00001{letter-spacing:-0.518946px;}
.ls82_c00001{letter-spacing:-0.429252px;}
.ls6f_c00001{letter-spacing:-0.352371px;}
.ls15_c00001{letter-spacing:-0.335249px;}
.ls77_c00001{letter-spacing:-0.249863px;}
.ls5a_c00001{letter-spacing:-0.160169px;}
.ls71_c00001{letter-spacing:-0.147355px;}
.ls14_c00001{letter-spacing:-0.147042px;}
.ls35_c00001{letter-spacing:-0.140040px;}
.ls63_c00001{letter-spacing:-0.134542px;}
.ls66_c00001{letter-spacing:-0.121728px;}
.ls36_c00001{letter-spacing:-0.119034px;}
.ls84_c00001{letter-spacing:-0.115321px;}
.ls34_c00001{letter-spacing:-0.113957px;}
.ls32_c00001{letter-spacing:-0.105030px;}
.ls6a_c00001{letter-spacing:-0.102508px;}
.ls33_c00001{letter-spacing:-0.098763px;}
.ls1d_c00001{letter-spacing:-0.098028px;}
.ls37_c00001{letter-spacing:-0.091026px;}
.ls47_c00001{letter-spacing:-0.089694px;}
.ls1e_c00001{letter-spacing:-0.084024px;}
.ls6d_c00001{letter-spacing:-0.083288px;}
.ls13_c00001{letter-spacing:-0.077022px;}
.ls6b_c00001{letter-spacing:-0.076881px;}
.ls64_c00001{letter-spacing:-0.070474px;}
.ls23_c00001{letter-spacing:-0.070020px;}
.ls5b_c00001{letter-spacing:-0.064067px;}
.ls2_c00001{letter-spacing:-0.063018px;}
.ls61_c00001{letter-spacing:-0.057661px;}
.ls12_c00001{letter-spacing:-0.056016px;}
.ls52_c00001{letter-spacing:-0.051254px;}
.ls5_c00001{letter-spacing:-0.049014px;}
.ls50_c00001{letter-spacing:-0.044847px;}
.ls9_c00001{letter-spacing:-0.042012px;}
.ls2a_c00001{letter-spacing:-0.040926px;}
.ls46_c00001{letter-spacing:-0.038440px;}
.ls11_c00001{letter-spacing:-0.035010px;}
.ls4b_c00001{letter-spacing:-0.032034px;}
.ls4_c00001{letter-spacing:-0.028008px;}
.ls4a_c00001{letter-spacing:-0.025627px;}
.lsb_c00001{letter-spacing:-0.021006px;}
.ls53_c00001{letter-spacing:-0.019220px;}
.ls2f_c00001{letter-spacing:-0.015194px;}
.ls8_c00001{letter-spacing:-0.014004px;}
.ls49_c00001{letter-spacing:-0.012813px;}
.ls7_c00001{letter-spacing:-0.007002px;}
.ls48_c00001{letter-spacing:-0.006407px;}
.ls3_c00001{letter-spacing:0.000000px;}
.ls3c_c00001{letter-spacing:0.006407px;}
.lsd_c00001{letter-spacing:0.007002px;}
.ls25_c00001{letter-spacing:0.007597px;}
.ls3f_c00001{letter-spacing:0.012813px;}
.lsc_c00001{letter-spacing:0.014004px;}
.ls3e_c00001{letter-spacing:0.019220px;}
.ls1_c00001{letter-spacing:0.021006px;}
.ls0_c00001{letter-spacing:0.023281px;}
.ls40_c00001{letter-spacing:0.025627px;}
.lse_c00001{letter-spacing:0.028008px;}
.ls44_c00001{letter-spacing:0.032034px;}
.ls21_c00001{letter-spacing:0.035010px;}
.ls45_c00001{letter-spacing:0.038440px;}
.ls20_c00001{letter-spacing:0.042012px;}
.ls43_c00001{letter-spacing:0.044847px;}
.ls27_c00001{letter-spacing:0.049014px;}
.ls4e_c00001{letter-spacing:0.051254px;}
.ls42_c00001{letter-spacing:0.057661px;}
.ls29_c00001{letter-spacing:0.063018px;}
.ls59_c00001{letter-spacing:0.064067px;}
.ls1c_c00001{letter-spacing:0.070020px;}
.ls41_c00001{letter-spacing:0.070474px;}
.ls4d_c00001{letter-spacing:0.076881px;}
.ls5c_c00001{letter-spacing:0.083288px;}
.ls10_c00001{letter-spacing:0.083394px;}
.ls17_c00001{letter-spacing:0.084024px;}
.ls3d_c00001{letter-spacing:0.089694px;}
.ls6c_c00001{letter-spacing:0.096101px;}
.ls1b_c00001{letter-spacing:0.098028px;}
.ls62_c00001{letter-spacing:0.102508px;}
.ls4c_c00001{letter-spacing:0.108915px;}
.ls68_c00001{letter-spacing:0.115321px;}
.lsf_c00001{letter-spacing:0.119034px;}
.ls58_c00001{letter-spacing:0.121728px;}
.ls5f_c00001{letter-spacing:0.128135px;}
.ls4f_c00001{letter-spacing:0.134542px;}
.ls22_c00001{letter-spacing:0.140040px;}
.ls78_c00001{letter-spacing:0.140948px;}
.ls16_c00001{letter-spacing:0.147042px;}
.ls57_c00001{letter-spacing:0.147355px;}
.ls7d_c00001{letter-spacing:0.153762px;}
.ls7c_c00001{letter-spacing:0.166575px;}
.ls79_c00001{letter-spacing:0.172982px;}
.ls69_c00001{letter-spacing:0.192202px;}
.ls31_c00001{letter-spacing:0.196056px;}
.ls60_c00001{letter-spacing:0.198609px;}
.ls6e_c00001{letter-spacing:0.205016px;}
.ls24_c00001{letter-spacing:0.217062px;}
.ls56_c00001{letter-spacing:0.224236px;}
.ls55_c00001{letter-spacing:0.230643px;}
.ls51_c00001{letter-spacing:0.243456px;}
.ls7e_c00001{letter-spacing:0.256270px;}
.ls80_c00001{letter-spacing:0.262676px;}
.ls2b_c00001{letter-spacing:0.266076px;}
.ls7b_c00001{letter-spacing:0.269083px;}
.ls1a_c00001{letter-spacing:0.280080px;}
.ls83_c00001{letter-spacing:0.281897px;}
.ls73_c00001{letter-spacing:0.288303px;}
.ls28_c00001{letter-spacing:0.294084px;}
.ls7f_c00001{letter-spacing:0.294710px;}
.ls5e_c00001{letter-spacing:0.307524px;}
.ls67_c00001{letter-spacing:0.313930px;}
.ls76_c00001{letter-spacing:0.333150px;}
.ls2d_c00001{letter-spacing:0.336096px;}
.ls26_c00001{letter-spacing:0.336762px;}
.ls70_c00001{letter-spacing:0.339557px;}
.lsa_c00001{letter-spacing:0.343098px;}
.ls75_c00001{letter-spacing:0.352371px;}
.ls72_c00001{letter-spacing:0.358777px;}
.ls65_c00001{letter-spacing:0.365184px;}
.ls81_c00001{letter-spacing:0.371591px;}
.ls5d_c00001{letter-spacing:0.397218px;}
.ls6_c00001{letter-spacing:0.539154px;}
.ls1f_c00001{letter-spacing:0.707202px;}
.ls74_c00001{letter-spacing:0.730368px;}
.ls3b_c00001{letter-spacing:1.414404px;}
.ls19_c00001{letter-spacing:1.771506px;}
.ls2e_c00001{letter-spacing:3.213918px;}
.ls30_c00001{letter-spacing:3.227922px;}
.ls3a_c00001{letter-spacing:4.656330px;}
.ls2c_c00001{letter-spacing:12.040830px;}
.ls18_c00001{letter-spacing:18.695340px;}
.ls39_c00001{letter-spacing:1167.094440px;}
.ls38_c00001{letter-spacing:1193.734440px;}
.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;}
}
.ws241_c00001{word-spacing:-64.067400px;}
.wsc6_c00001{word-spacing:-19.605600px;}
.ws10a_c00001{word-spacing:-19.563588px;}
.ws126_c00001{word-spacing:-19.549584px;}
.ws31_c00001{word-spacing:-19.535580px;}
.ws1a5_c00001{word-spacing:-19.493568px;}
.wsdf_c00001{word-spacing:-19.465560px;}
.ws219_c00001{word-spacing:-19.444554px;}
.wsf1_c00001{word-spacing:-19.437552px;}
.ws138_c00001{word-spacing:-19.402542px;}
.ws75_c00001{word-spacing:-19.381536px;}
.ws32_c00001{word-spacing:-19.367532px;}
.ws2cb_c00001{word-spacing:-18.182328px;}
.ws243_c00001{word-spacing:-17.945279px;}
.ws2cf_c00001{word-spacing:-17.919652px;}
.ws29f_c00001{word-spacing:-17.887618px;}
.ws2c7_c00001{word-spacing:-17.881211px;}
.ws271_c00001{word-spacing:-17.874805px;}
.ws2a0_c00001{word-spacing:-17.868398px;}
.ws286_c00001{word-spacing:-17.855584px;}
.ws272_c00001{word-spacing:-17.842771px;}
.ws294_c00001{word-spacing:-17.823551px;}
.ws21c_c00001{word-spacing:-17.817144px;}
.ws2a1_c00001{word-spacing:-17.804330px;}
.ws266_c00001{word-spacing:-17.797924px;}
.ws290_c00001{word-spacing:-17.778703px;}
.ws0_c00001{word-spacing:-12.967628px;}
.ws15_c00001{word-spacing:-12.609098px;}
.ws2b6_c00001{word-spacing:-1.249314px;}
.ws280_c00001{word-spacing:-0.916164px;}
.ws2b4_c00001{word-spacing:-0.877723px;}
.ws2b8_c00001{word-spacing:-0.871317px;}
.ws2ae_c00001{word-spacing:-0.858503px;}
.ws2ba_c00001{word-spacing:-0.852096px;}
.ws2ca_c00001{word-spacing:-0.813656px;}
.ws2d0_c00001{word-spacing:-0.800843px;}
.ws26d_c00001{word-spacing:-0.749589px;}
.ws26f_c00001{word-spacing:-0.743182px;}
.ws28c_c00001{word-spacing:-0.717555px;}
.ws2c3_c00001{word-spacing:-0.685521px;}
.ws2c6_c00001{word-spacing:-0.672708px;}
.ws274_c00001{word-spacing:-0.666301px;}
.ws2bd_c00001{word-spacing:-0.659894px;}
.ws2c5_c00001{word-spacing:-0.653487px;}
.ws2aa_c00001{word-spacing:-0.647081px;}
.ws292_c00001{word-spacing:-0.640674px;}
.ws2a4_c00001{word-spacing:-0.634267px;}
.ws2d6_c00001{word-spacing:-0.627861px;}
.ws2d3_c00001{word-spacing:-0.621454px;}
.ws2a2_c00001{word-spacing:-0.615047px;}
.ws2cc_c00001{word-spacing:-0.608640px;}
.ws2d1_c00001{word-spacing:-0.602234px;}
.ws270_c00001{word-spacing:-0.595827px;}
.ws25e_c00001{word-spacing:-0.589420px;}
.ws27f_c00001{word-spacing:-0.583013px;}
.ws28e_c00001{word-spacing:-0.576607px;}
.ws267_c00001{word-spacing:-0.570200px;}
.ws22b_c00001{word-spacing:-0.563793px;}
.ws26a_c00001{word-spacing:-0.557386px;}
.ws235_c00001{word-spacing:-0.550980px;}
.ws26b_c00001{word-spacing:-0.544573px;}
.ws221_c00001{word-spacing:-0.538166px;}
.ws24c_c00001{word-spacing:-0.531759px;}
.ws263_c00001{word-spacing:-0.525353px;}
.ws26e_c00001{word-spacing:-0.518946px;}
.ws279_c00001{word-spacing:-0.512539px;}
.ws240_c00001{word-spacing:-0.506132px;}
.ws250_c00001{word-spacing:-0.499726px;}
.ws257_c00001{word-spacing:-0.493319px;}
.ws2bb_c00001{word-spacing:-0.486912px;}
.ws2a6_c00001{word-spacing:-0.480506px;}
.ws298_c00001{word-spacing:-0.474099px;}
.ws24b_c00001{word-spacing:-0.467692px;}
.ws2be_c00001{word-spacing:-0.461285px;}
.ws27c_c00001{word-spacing:-0.454879px;}
.ws2b5_c00001{word-spacing:-0.448472px;}
.ws2d5_c00001{word-spacing:-0.442065px;}
.ws2a7_c00001{word-spacing:-0.435658px;}
.ws2c1_c00001{word-spacing:-0.429252px;}
.ws2c9_c00001{word-spacing:-0.416438px;}
.ws24a_c00001{word-spacing:-0.403625px;}
.ws1bc_c00001{word-spacing:-0.399114px;}
.ws297_c00001{word-spacing:-0.390811px;}
.ws218_c00001{word-spacing:-0.385110px;}
.ws2af_c00001{word-spacing:-0.365184px;}
.wse7_c00001{word-spacing:-0.350100px;}
.ws215_c00001{word-spacing:-0.336096px;}
.ws2d4_c00001{word-spacing:-0.333150px;}
.ws2c8_c00001{word-spacing:-0.307524px;}
.ws284_c00001{word-spacing:-0.294710px;}
.ws28b_c00001{word-spacing:-0.288303px;}
.ws2b9_c00001{word-spacing:-0.281897px;}
.ws299_c00001{word-spacing:-0.275490px;}
.ws283_c00001{word-spacing:-0.269083px;}
.ws295_c00001{word-spacing:-0.262676px;}
.ws2bf_c00001{word-spacing:-0.256270px;}
.ws20e_c00001{word-spacing:-0.252072px;}
.ws2a8_c00001{word-spacing:-0.249863px;}
.ws281_c00001{word-spacing:-0.243456px;}
.ws268_c00001{word-spacing:-0.237049px;}
.ws276_c00001{word-spacing:-0.230643px;}
.ws2ab_c00001{word-spacing:-0.224236px;}
.ws233_c00001{word-spacing:-0.217829px;}
.ws27d_c00001{word-spacing:-0.211422px;}
.ws22f_c00001{word-spacing:-0.205016px;}
.ws269_c00001{word-spacing:-0.198609px;}
.ws232_c00001{word-spacing:-0.192202px;}
.ws222_c00001{word-spacing:-0.185795px;}
.ws247_c00001{word-spacing:-0.179389px;}
.ws23f_c00001{word-spacing:-0.172982px;}
.ws21e_c00001{word-spacing:-0.166575px;}
.ws34_c00001{word-spacing:-0.161046px;}
.ws234_c00001{word-spacing:-0.160169px;}
.ws220_c00001{word-spacing:-0.153762px;}
.ws23e_c00001{word-spacing:-0.147355px;}
.ws27e_c00001{word-spacing:-0.140948px;}
.ws26c_c00001{word-spacing:-0.134542px;}
.ws236_c00001{word-spacing:-0.128135px;}
.ws24f_c00001{word-spacing:-0.121728px;}
.ws2a5_c00001{word-spacing:-0.115321px;}
.ws28d_c00001{word-spacing:-0.108915px;}
.ws289_c00001{word-spacing:-0.102508px;}
.ws27a_c00001{word-spacing:-0.096101px;}
.ws296_c00001{word-spacing:-0.089694px;}
.ws29e_c00001{word-spacing:-0.083288px;}
.ws2c4_c00001{word-spacing:-0.076881px;}
.ws21f_c00001{word-spacing:-0.070474px;}
.ws242_c00001{word-spacing:-0.064067px;}
.ws29a_c00001{word-spacing:-0.057661px;}
.ws20f_c00001{word-spacing:-0.056016px;}
.wsec_c00001{word-spacing:-0.049014px;}
.ws2d7_c00001{word-spacing:-0.044847px;}
.ws217_c00001{word-spacing:-0.042012px;}
.ws2d2_c00001{word-spacing:-0.038440px;}
.ws9_c00001{word-spacing:-0.035010px;}
.ws1a_c00001{word-spacing:-0.028008px;}
.ws293_c00001{word-spacing:-0.025627px;}
.ws64_c00001{word-spacing:-0.021006px;}
.wsa_c00001{word-spacing:-0.014004px;}
.ws5_c00001{word-spacing:-0.007002px;}
.ws1_c00001{word-spacing:0.000000px;}
.ws14_c00001{word-spacing:0.007002px;}
.ws19_c00001{word-spacing:0.014004px;}
.ws18_c00001{word-spacing:0.021006px;}
.ws2c0_c00001{word-spacing:0.025627px;}
.ws4_c00001{word-spacing:0.028008px;}
.ws8_c00001{word-spacing:0.035010px;}
.ws1c_c00001{word-spacing:0.042012px;}
.ws5c_c00001{word-spacing:0.049014px;}
.ws15f_c00001{word-spacing:0.056016px;}
.ws2cd_c00001{word-spacing:0.057661px;}
.ws216_c00001{word-spacing:0.070020px;}
.ws2c2_c00001{word-spacing:0.070474px;}
.ws275_c00001{word-spacing:0.076881px;}
.ws214_c00001{word-spacing:0.077022px;}
.ws2ad_c00001{word-spacing:0.083288px;}
.ws2a3_c00001{word-spacing:0.089694px;}
.ws291_c00001{word-spacing:0.096101px;}
.ws2b0_c00001{word-spacing:0.102508px;}
.ws282_c00001{word-spacing:0.108915px;}
.wse6_c00001{word-spacing:0.121554px;}
.ws29b_c00001{word-spacing:0.121728px;}
.ws29d_c00001{word-spacing:0.128135px;}
.ws28f_c00001{word-spacing:0.134542px;}
.ws287_c00001{word-spacing:0.140948px;}
.ws278_c00001{word-spacing:0.147355px;}
.ws29c_c00001{word-spacing:0.153762px;}
.ws2b2_c00001{word-spacing:0.160169px;}
.ws285_c00001{word-spacing:0.166575px;}
.ws22c_c00001{word-spacing:0.172982px;}
.ws225_c00001{word-spacing:0.179389px;}
.ws27b_c00001{word-spacing:0.185795px;}
.ws253_c00001{word-spacing:0.192202px;}
.ws23b_c00001{word-spacing:0.198609px;}
.ws254_c00001{word-spacing:0.205016px;}
.ws28a_c00001{word-spacing:0.211422px;}
.ws176_c00001{word-spacing:0.212720px;}
.ws288_c00001{word-spacing:0.217829px;}
.ws21b_c00001{word-spacing:0.224064px;}
.ws2ac_c00001{word-spacing:0.224236px;}
.ws2a9_c00001{word-spacing:0.230643px;}
.ws21d_c00001{word-spacing:0.237049px;}
.ws1be_c00001{word-spacing:0.243108px;}
.ws273_c00001{word-spacing:0.243456px;}
.ws2ce_c00001{word-spacing:0.269083px;}
.ws87_c00001{word-spacing:0.273078px;}
.ws210_c00001{word-spacing:0.280080px;}
.ws2b7_c00001{word-spacing:0.288303px;}
.ws2b3_c00001{word-spacing:0.301117px;}
.ws1d4_c00001{word-spacing:0.322092px;}
.ws164_c00001{word-spacing:0.329094px;}
.ws19d_c00001{word-spacing:0.336096px;}
.ws18f_c00001{word-spacing:0.343098px;}
.ws2b1_c00001{word-spacing:0.345964px;}
.ws1b_c00001{word-spacing:0.350100px;}
.wsb_c00001{word-spacing:0.357102px;}
.ws277_c00001{word-spacing:0.358777px;}
.ws6c_c00001{word-spacing:0.364104px;}
.ws2_c00001{word-spacing:0.371106px;}
.ws1bd_c00001{word-spacing:0.372260px;}
.wsa2_c00001{word-spacing:0.378108px;}
.ws2c_c00001{word-spacing:0.385110px;}
.ws3_c00001{word-spacing:0.392112px;}
.wsb2_c00001{word-spacing:0.406116px;}
.wsce_c00001{word-spacing:0.413118px;}
.ws20c_c00001{word-spacing:0.441126px;}
.ws2bc_c00001{word-spacing:0.448472px;}
.ws1dd_c00001{word-spacing:0.483138px;}
.ws18e_c00001{word-spacing:0.693198px;}
.wsb3_c00001{word-spacing:0.700200px;}
.wsf2_c00001{word-spacing:0.707202px;}
.ws1bb_c00001{word-spacing:0.714204px;}
.ws10e_c00001{word-spacing:0.721206px;}
.ws7e_c00001{word-spacing:0.728208px;}
.wsfa_c00001{word-spacing:0.735210px;}
.ws124_c00001{word-spacing:0.742212px;}
.ws15e_c00001{word-spacing:0.749214px;}
.wsbe_c00001{word-spacing:0.756216px;}
.ws166_c00001{word-spacing:0.994284px;}
.ws206_c00001{word-spacing:1.050300px;}
.ws163_c00001{word-spacing:1.057302px;}
.ws88_c00001{word-spacing:1.064304px;}
.ws140_c00001{word-spacing:1.071306px;}
.ws17f_c00001{word-spacing:1.078308px;}
.ws1f_c00001{word-spacing:1.085310px;}
.ws7a_c00001{word-spacing:1.092312px;}
.ws17b_c00001{word-spacing:1.386396px;}
.wsb0_c00001{word-spacing:1.407402px;}
.ws2e_c00001{word-spacing:1.414404px;}
.ws15a_c00001{word-spacing:1.421406px;}
.ws100_c00001{word-spacing:1.428408px;}
.ws61_c00001{word-spacing:1.435410px;}
.ws1a1_c00001{word-spacing:1.442412px;}
.ws69_c00001{word-spacing:1.449414px;}
.ws1d_c00001{word-spacing:1.456416px;}
.ws2d_c00001{word-spacing:1.463418px;}
.ws46_c00001{word-spacing:1.470420px;}
.ws16a_c00001{word-spacing:1.750500px;}
.wsf9_c00001{word-spacing:1.757502px;}
.ws114_c00001{word-spacing:1.778508px;}
.ws83_c00001{word-spacing:1.785510px;}
.ws7_c00001{word-spacing:1.792512px;}
.ws82_c00001{word-spacing:1.799514px;}
.ws6a_c00001{word-spacing:1.806516px;}
.ws3d_c00001{word-spacing:1.813518px;}
.ws80_c00001{word-spacing:1.820520px;}
.ws20d_c00001{word-spacing:1.827522px;}
.ws101_c00001{word-spacing:1.834524px;}
.ws238_c00001{word-spacing:1.973276px;}
.ws237_c00001{word-spacing:1.992496px;}
.ws239_c00001{word-spacing:1.998903px;}
.ws154_c00001{word-spacing:2.135610px;}
.ws149_c00001{word-spacing:2.142612px;}
.ws19c_c00001{word-spacing:2.149614px;}
.ws155_c00001{word-spacing:2.156616px;}
.wse_c00001{word-spacing:2.163618px;}
.ws5b_c00001{word-spacing:2.170620px;}
.wsc9_c00001{word-spacing:2.177622px;}
.ws113_c00001{word-spacing:2.184624px;}
.ws231_c00001{word-spacing:2.338460px;}
.ws230_c00001{word-spacing:2.364087px;}
.ws175_c00001{word-spacing:2.492712px;}
.ws86_c00001{word-spacing:2.499714px;}
.wsf3_c00001{word-spacing:2.513718px;}
.ws13a_c00001{word-spacing:2.520720px;}
.ws93_c00001{word-spacing:2.527722px;}
.ws17_c00001{word-spacing:2.534724px;}
.ws12c_c00001{word-spacing:2.541726px;}
.ws12d_c00001{word-spacing:2.548728px;}
.ws1d5_c00001{word-spacing:2.842812px;}
.ws14d_c00001{word-spacing:2.849814px;}
.ws161_c00001{word-spacing:2.856816px;}
.ws139_c00001{word-spacing:2.863818px;}
.ws91_c00001{word-spacing:2.870820px;}
.wsaf_c00001{word-spacing:2.877822px;}
.ws1bf_c00001{word-spacing:2.884824px;}
.ws7d_c00001{word-spacing:2.891826px;}
.ws127_c00001{word-spacing:2.905830px;}
.ws54_c00001{word-spacing:3.129894px;}
.ws184_c00001{word-spacing:3.178908px;}
.ws1a0_c00001{word-spacing:3.199914px;}
.ws6_c00001{word-spacing:3.206916px;}
.ws67_c00001{word-spacing:3.213918px;}
.wsa7_c00001{word-spacing:3.220920px;}
.ws1ae_c00001{word-spacing:3.227922px;}
.ws17c_c00001{word-spacing:3.234924px;}
.wsf5_c00001{word-spacing:3.241926px;}
.ws53_c00001{word-spacing:3.248928px;}
.wsf_c00001{word-spacing:3.255930px;}
.wsf4_c00001{word-spacing:3.262932px;}
.wsa8_c00001{word-spacing:3.269934px;}
.ws17d_c00001{word-spacing:3.283938px;}
.ws129_c00001{word-spacing:3.557016px;}
.ws27_c00001{word-spacing:3.564018px;}
.ws28_c00001{word-spacing:3.571020px;}
.wsed_c00001{word-spacing:3.578022px;}
.ws20_c00001{word-spacing:3.592026px;}
.ws12a_c00001{word-spacing:3.599028px;}
.ws21_c00001{word-spacing:3.606030px;}
.ws81_c00001{word-spacing:3.613032px;}
.ws1af_c00001{word-spacing:3.620034px;}
.ws1d9_c00001{word-spacing:3.627036px;}
.ws23_c00001{word-spacing:3.921120px;}
.ws3b_c00001{word-spacing:3.949128px;}
.ws22_c00001{word-spacing:3.956130px;}
.ws17a_c00001{word-spacing:3.963132px;}
.ws1dc_c00001{word-spacing:3.970134px;}
.ws30_c00001{word-spacing:3.977136px;}
.ws26_c00001{word-spacing:3.984138px;}
.ws3a_c00001{word-spacing:3.991140px;}
.ws22d_c00001{word-spacing:4.100314px;}
.ws22e_c00001{word-spacing:4.138754px;}
.ws97_c00001{word-spacing:4.299228px;}
.wsaa_c00001{word-spacing:4.306230px;}
.ws102_c00001{word-spacing:4.313232px;}
.ws111_c00001{word-spacing:4.320234px;}
.ws18b_c00001{word-spacing:4.327236px;}
.wsbf_c00001{word-spacing:4.334238px;}
.ws76_c00001{word-spacing:4.348242px;}
.ws23c_c00001{word-spacing:4.484718px;}
.ws77_c00001{word-spacing:4.649328px;}
.ws1f7_c00001{word-spacing:4.656330px;}
.ws188_c00001{word-spacing:4.663332px;}
.ws130_c00001{word-spacing:4.670334px;}
.ws141_c00001{word-spacing:4.677336px;}
.ws167_c00001{word-spacing:4.691340px;}
.ws8c_c00001{word-spacing:4.698342px;}
.ws1f8_c00001{word-spacing:4.726350px;}
.ws23d_c00001{word-spacing:4.862716px;}
.ws1eb_c00001{word-spacing:5.006430px;}
.ws4b_c00001{word-spacing:5.013432px;}
.ws156_c00001{word-spacing:5.020434px;}
.ws10_c00001{word-spacing:5.027436px;}
.ws1ee_c00001{word-spacing:5.034438px;}
.ws6f_c00001{word-spacing:5.048442px;}
.ws6e_c00001{word-spacing:5.055444px;}
.wsc5_c00001{word-spacing:5.384538px;}
.ws39_c00001{word-spacing:5.391540px;}
.wsc4_c00001{word-spacing:5.398542px;}
.ws71_c00001{word-spacing:5.405544px;}
.ws38_c00001{word-spacing:5.412546px;}
.ws78_c00001{word-spacing:5.419548px;}
.ws1e9_c00001{word-spacing:5.426550px;}
.ws170_c00001{word-spacing:5.440554px;}
.wse0_c00001{word-spacing:5.531580px;}
.ws117_c00001{word-spacing:5.678622px;}
.ws4a_c00001{word-spacing:5.741640px;}
.ws116_c00001{word-spacing:5.748642px;}
.ws183_c00001{word-spacing:5.755644px;}
.ws49_c00001{word-spacing:5.762646px;}
.ws92_c00001{word-spacing:5.769648px;}
.ws73_c00001{word-spacing:5.776650px;}
.ws79_c00001{word-spacing:5.783652px;}
.ws96_c00001{word-spacing:5.790654px;}
.ws95_c00001{word-spacing:5.797656px;}
.ws1d8_c00001{word-spacing:5.804658px;}
.ws74_c00001{word-spacing:5.811660px;}
.ws258_c00001{word-spacing:5.939048px;}
.ws259_c00001{word-spacing:5.951861px;}
.ws9c_c00001{word-spacing:6.077736px;}
.wsa6_c00001{word-spacing:6.098742px;}
.wscb_c00001{word-spacing:6.105744px;}
.ws157_c00001{word-spacing:6.112746px;}
.wscc_c00001{word-spacing:6.119748px;}
.ws1db_c00001{word-spacing:6.126750px;}
.ws1da_c00001{word-spacing:6.133752px;}
.ws9b_c00001{word-spacing:6.140754px;}
.ws1ed_c00001{word-spacing:6.147756px;}
.wscd_c00001{word-spacing:6.161760px;}
.ws228_c00001{word-spacing:6.259385px;}
.ws227_c00001{word-spacing:6.297825px;}
.ws1f1_c00001{word-spacing:6.434838px;}
.ws122_c00001{word-spacing:6.441840px;}
.wsde_c00001{word-spacing:6.455844px;}
.ws108_c00001{word-spacing:6.462846px;}
.ws16b_c00001{word-spacing:6.469848px;}
.wsfe_c00001{word-spacing:6.476850px;}
.ws112_c00001{word-spacing:6.483852px;}
.wsbc_c00001{word-spacing:6.490854px;}
.ws110_c00001{word-spacing:6.497856px;}
.ws174_c00001{word-spacing:6.504858px;}
.wsfd_c00001{word-spacing:6.518862px;}
.ws21a_c00001{word-spacing:6.532866px;}
.ws226_c00001{word-spacing:6.611756px;}
.ws195_c00001{word-spacing:6.798942px;}
.wsb9_c00001{word-spacing:6.805944px;}
.ws11f_c00001{word-spacing:6.812946px;}
.ws120_c00001{word-spacing:6.819948px;}
.wse1_c00001{word-spacing:6.826950px;}
.wse2_c00001{word-spacing:6.833952px;}
.wsac_c00001{word-spacing:6.840954px;}
.ws59_c00001{word-spacing:6.847956px;}
.wse5_c00001{word-spacing:6.854958px;}
.ws58_c00001{word-spacing:6.861960px;}
.ws1f2_c00001{word-spacing:6.868962px;}
.ws1e6_c00001{word-spacing:7.156044px;}
.wsa0_c00001{word-spacing:7.177050px;}
.ws106_c00001{word-spacing:7.184052px;}
.ws7b_c00001{word-spacing:7.191054px;}
.ws1ea_c00001{word-spacing:7.198056px;}
.ws52_c00001{word-spacing:7.205058px;}
.ws3f_c00001{word-spacing:7.212060px;}
.ws40_c00001{word-spacing:7.219062px;}
.ws165_c00001{word-spacing:7.226064px;}
.ws23a_c00001{word-spacing:7.386971px;}
.ws11e_c00001{word-spacing:7.541154px;}
.ws4c_c00001{word-spacing:7.548156px;}
.ws132_c00001{word-spacing:7.555158px;}
.ws68_c00001{word-spacing:7.562160px;}
.ws131_c00001{word-spacing:7.569162px;}
.ws123_c00001{word-spacing:7.576164px;}
.ws4d_c00001{word-spacing:7.583166px;}
.ws48_c00001{word-spacing:7.625178px;}
.ws65_c00001{word-spacing:7.877250px;}
.ws1e4_c00001{word-spacing:7.891254px;}
.ws66_c00001{word-spacing:7.905258px;}
.wsa3_c00001{word-spacing:7.919262px;}
.ws47_c00001{word-spacing:7.926264px;}
.ws1e3_c00001{word-spacing:7.933266px;}
.ws1f3_c00001{word-spacing:8.255358px;}
.wsd7_c00001{word-spacing:8.269362px;}
.wsbb_c00001{word-spacing:8.276364px;}
.ws1b4_c00001{word-spacing:8.290368px;}
.ws18c_c00001{word-spacing:8.297370px;}
.ws209_c00001{word-spacing:8.304372px;}
.ws1d0_c00001{word-spacing:8.311374px;}
.ws1b5_c00001{word-spacing:8.332380px;}
.ws145_c00001{word-spacing:8.605458px;}
.ws1b0_c00001{word-spacing:8.612460px;}
.ws189_c00001{word-spacing:8.626464px;}
.ws5e_c00001{word-spacing:8.640468px;}
.wsa1_c00001{word-spacing:8.647470px;}
.ws13b_c00001{word-spacing:8.661474px;}
.ws36_c00001{word-spacing:8.668476px;}
.ws1c4_c00001{word-spacing:8.969562px;}
.ws1c5_c00001{word-spacing:8.976564px;}
.ws1e8_c00001{word-spacing:8.983566px;}
.ws171_c00001{word-spacing:8.990568px;}
.ws2a_c00001{word-spacing:8.997570px;}
.ws29_c00001{word-spacing:9.004572px;}
.wsd8_c00001{word-spacing:9.011574px;}
.ws14c_c00001{word-spacing:9.018576px;}
.wsc8_c00001{word-spacing:9.025578px;}
.ws244_c00001{word-spacing:9.155231px;}
.ws245_c00001{word-spacing:9.187265px;}
.ws246_c00001{word-spacing:9.244926px;}
.ws135_c00001{word-spacing:9.284652px;}
.wsf0_c00001{word-spacing:9.333666px;}
.ws7c_c00001{word-spacing:9.354672px;}
.ws204_c00001{word-spacing:9.361674px;}
.ws33_c00001{word-spacing:9.368676px;}
.ws94_c00001{word-spacing:9.375678px;}
.ws1fb_c00001{word-spacing:9.382680px;}
.ws182_c00001{word-spacing:9.704772px;}
.wsc3_c00001{word-spacing:9.718776px;}
.ws1e2_c00001{word-spacing:9.725778px;}
.ws25_c00001{word-spacing:9.732780px;}
.ws20b_c00001{word-spacing:9.739782px;}
.ws24_c00001{word-spacing:9.781794px;}
.ws25a_c00001{word-spacing:9.892007px;}
.ws25b_c00001{word-spacing:9.904820px;}
.ws162_c00001{word-spacing:10.061874px;}
.ws12b_c00001{word-spacing:10.068876px;}
.ws13c_c00001{word-spacing:10.082880px;}
.wsd9_c00001{word-spacing:10.089882px;}
.ws13d_c00001{word-spacing:10.096884px;}
.ws1a8_c00001{word-spacing:10.110888px;}
.ws1ad_c00001{word-spacing:10.390968px;}
.ws16c_c00001{word-spacing:10.411974px;}
.ws16d_c00001{word-spacing:10.425978px;}
.ws62_c00001{word-spacing:10.432980px;}
.ws98_c00001{word-spacing:10.439982px;}
.wsb8_c00001{word-spacing:10.446984px;}
.ws1a7_c00001{word-spacing:10.453986px;}
.wsd3_c00001{word-spacing:10.460988px;}
.ws1f9_c00001{word-spacing:10.769076px;}
.ws1b9_c00001{word-spacing:10.783080px;}
.ws99_c00001{word-spacing:10.790082px;}
.ws1ba_c00001{word-spacing:10.797084px;}
.wsd5_c00001{word-spacing:10.804086px;}
.ws223_c00001{word-spacing:10.981152px;}
.ws224_c00001{word-spacing:11.013186px;}
.wsa5_c00001{word-spacing:11.105172px;}
.wsc1_c00001{word-spacing:11.112174px;}
.ws1f6_c00001{word-spacing:11.140182px;}
.ws42_c00001{word-spacing:11.147184px;}
.ws153_c00001{word-spacing:11.154186px;}
.wsc2_c00001{word-spacing:11.161188px;}
.wsef_c00001{word-spacing:11.168190px;}
.ws1cf_c00001{word-spacing:11.182194px;}
.wsc0_c00001{word-spacing:11.476278px;}
.ws125_c00001{word-spacing:11.497284px;}
.wsa4_c00001{word-spacing:11.511288px;}
.ws187_c00001{word-spacing:11.518290px;}
.wsb4_c00001{word-spacing:11.525292px;}
.ws1e5_c00001{word-spacing:11.532294px;}
.ws1d3_c00001{word-spacing:11.819376px;}
.ws3c_c00001{word-spacing:11.861388px;}
.ws115_c00001{word-spacing:11.875392px;}
.ws1a6_c00001{word-spacing:11.882394px;}
.ws1ef_c00001{word-spacing:11.889396px;}
.wsc7_c00001{word-spacing:11.896398px;}
.ws37_c00001{word-spacing:11.903400px;}
.ws1f0_c00001{word-spacing:12.218490px;}
.wsad_c00001{word-spacing:12.225492px;}
.wsae_c00001{word-spacing:12.232494px;}
.ws57_c00001{word-spacing:12.239496px;}
.ws63_c00001{word-spacing:12.246498px;}
.ws16f_c00001{word-spacing:12.253500px;}
.ws1d7_c00001{word-spacing:12.260502px;}
.wsd0_c00001{word-spacing:12.281508px;}
.ws1e0_c00001{word-spacing:12.526578px;}
.ws202_c00001{word-spacing:12.561588px;}
.ws89_c00001{word-spacing:12.575592px;}
.ws1e1_c00001{word-spacing:12.582594px;}
.ws12_c00001{word-spacing:12.589596px;}
.ws186_c00001{word-spacing:12.596598px;}
.ws201_c00001{word-spacing:12.610602px;}
.wscf_c00001{word-spacing:12.617604px;}
.ws185_c00001{word-spacing:12.939696px;}
.ws18d_c00001{word-spacing:12.946698px;}
.ws10f_c00001{word-spacing:12.953700px;}
.ws13_c00001{word-spacing:12.967704px;}
.ws133_c00001{word-spacing:12.974706px;}
.ws1b3_c00001{word-spacing:13.261788px;}
.ws12e_c00001{word-spacing:13.282794px;}
.ws203_c00001{word-spacing:13.296798px;}
.ws72_c00001{word-spacing:13.303800px;}
.ws12f_c00001{word-spacing:13.317804px;}
.ws11d_c00001{word-spacing:13.324806px;}
.ws134_c00001{word-spacing:13.331808px;}
.ws5d_c00001{word-spacing:13.646898px;}
.ws1b2_c00001{word-spacing:13.653900px;}
.ws5a_c00001{word-spacing:13.674906px;}
.wsee_c00001{word-spacing:13.681908px;}
.ws1e_c00001{word-spacing:13.688910px;}
.wsa9_c00001{word-spacing:13.695912px;}
.ws261_c00001{word-spacing:13.857779px;}
.ws159_c00001{word-spacing:14.025006px;}
.ws160_c00001{word-spacing:14.032008px;}
.ws1a3_c00001{word-spacing:14.039010px;}
.ws107_c00001{word-spacing:14.053014px;}
.ws260_c00001{word-spacing:14.210149px;}
.ws25f_c00001{word-spacing:14.229370px;}
.ws262_c00001{word-spacing:14.261403px;}
.wsb6_c00001{word-spacing:14.389110px;}
.wsea_c00001{word-spacing:14.403114px;}
.wseb_c00001{word-spacing:14.410116px;}
.ws199_c00001{word-spacing:14.417118px;}
.ws213_c00001{word-spacing:14.431122px;}
.ws19f_c00001{word-spacing:14.732208px;}
.ws1fc_c00001{word-spacing:14.767218px;}
.ws19e_c00001{word-spacing:14.774220px;}
.ws1b8_c00001{word-spacing:14.781222px;}
.ws15d_c00001{word-spacing:15.075306px;}
.ws15c_c00001{word-spacing:15.089310px;}
.ws178_c00001{word-spacing:15.096312px;}
.ws177_c00001{word-spacing:15.103314px;}
.ws4e_c00001{word-spacing:15.117318px;}
.wse8_c00001{word-spacing:15.124320px;}
.ws4f_c00001{word-spacing:15.138324px;}
.wse9_c00001{word-spacing:15.152328px;}
.wsb5_c00001{word-spacing:15.467418px;}
.ws11_c00001{word-spacing:15.481422px;}
.ws179_c00001{word-spacing:15.488424px;}
.ws1fe_c00001{word-spacing:15.509430px;}
.ws14a_c00001{word-spacing:15.523434px;}
.ws1cc_c00001{word-spacing:15.824520px;}
.wsb7_c00001{word-spacing:15.831522px;}
.ws196_c00001{word-spacing:15.852528px;}
.ws197_c00001{word-spacing:15.866532px;}
.ws14b_c00001{word-spacing:15.873534px;}
.ws198_c00001{word-spacing:15.992568px;}
.ws25c_c00001{word-spacing:16.004037px;}
.ws25d_c00001{word-spacing:16.029663px;}
.ws208_c00001{word-spacing:16.181622px;}
.ws20a_c00001{word-spacing:16.188624px;}
.ws1cd_c00001{word-spacing:16.195626px;}
.ws10d_c00001{word-spacing:16.209630px;}
.ws35_c00001{word-spacing:16.216632px;}
.ws14e_c00001{word-spacing:16.545726px;}
.wsd1_c00001{word-spacing:16.559730px;}
.wsd2_c00001{word-spacing:16.566732px;}
.ws6b_c00001{word-spacing:16.587738px;}
.ws9a_c00001{word-spacing:16.902828px;}
.wsdb_c00001{word-spacing:16.916832px;}
.ws1a2_c00001{word-spacing:16.923834px;}
.ws169_c00001{word-spacing:16.930836px;}
.wsda_c00001{word-spacing:16.937838px;}
.ws168_c00001{word-spacing:16.951842px;}
.ws8d_c00001{word-spacing:17.252928px;}
.ws265_c00001{word-spacing:17.426333px;}
.ws264_c00001{word-spacing:17.439146px;}
.ws1ec_c00001{word-spacing:17.610030px;}
.ws1c0_c00001{word-spacing:17.617032px;}
.ws19b_c00001{word-spacing:17.624034px;}
.ws109_c00001{word-spacing:17.631036px;}
.ws19a_c00001{word-spacing:17.638038px;}
.ws6d_c00001{word-spacing:17.652042px;}
.ws1fa_c00001{word-spacing:17.659044px;}
.ws146_c00001{word-spacing:17.939124px;}
.wsf7_c00001{word-spacing:17.974134px;}
.wsf8_c00001{word-spacing:17.988138px;}
.ws1b1_c00001{word-spacing:17.995140px;}
.ws191_c00001{word-spacing:18.009144px;}
.ws192_c00001{word-spacing:18.030150px;}
.ws147_c00001{word-spacing:18.366246px;}
.ws194_c00001{word-spacing:18.380250px;}
.ws193_c00001{word-spacing:18.387252px;}
.ws104_c00001{word-spacing:18.660330px;}
.ws43_c00001{word-spacing:18.688338px;}
.wsdd_c00001{word-spacing:18.702342px;}
.ws44_c00001{word-spacing:18.718085px;}
.wsbd_c00001{word-spacing:18.723348px;}
.ws105_c00001{word-spacing:18.730350px;}
.ws45_c00001{word-spacing:18.737352px;}
.ws1c6_c00001{word-spacing:19.038438px;}
.ws190_c00001{word-spacing:19.059444px;}
.ws1c7_c00001{word-spacing:19.122462px;}
.ws50_c00001{word-spacing:19.416546px;}
.wsb1_c00001{word-spacing:19.423548px;}
.ws56_c00001{word-spacing:19.430550px;}
.ws51_c00001{word-spacing:19.437552px;}
.wsf6_c00001{word-spacing:19.451556px;}
.ws1c1_c00001{word-spacing:19.458558px;}
.ws1ce_c00001{word-spacing:19.773648px;}
.wsab_c00001{word-spacing:19.801656px;}
.ws11b_c00001{word-spacing:19.808658px;}
.ws11c_c00001{word-spacing:19.822662px;}
.ws18a_c00001{word-spacing:19.829664px;}
.ws248_c00001{word-spacing:19.944182px;}
.ws249_c00001{word-spacing:19.969809px;}
.ws17e_c00001{word-spacing:20.151756px;}
.ws55_c00001{word-spacing:20.165760px;}
.wsd_c00001{word-spacing:20.508858px;}
.wsc_c00001{word-spacing:20.536866px;}
.ws143_c00001{word-spacing:20.865960px;}
.ws1d1_c00001{word-spacing:20.872962px;}
.ws1d2_c00001{word-spacing:20.879964px;}
.ws142_c00001{word-spacing:20.893968px;}
.ws1d6_c00001{word-spacing:20.914974px;}
.ws24e_c00001{word-spacing:20.969260px;}
.ws24d_c00001{word-spacing:21.078175px;}
.ws158_c00001{word-spacing:21.209058px;}
.ws119_c00001{word-spacing:21.223062px;}
.ws8a_c00001{word-spacing:21.237066px;}
.ws148_c00001{word-spacing:21.244068px;}
.ws8b_c00001{word-spacing:21.251070px;}
.ws118_c00001{word-spacing:21.286080px;}
.ws121_c00001{word-spacing:21.580164px;}
.ws128_c00001{word-spacing:21.587166px;}
.ws5f_c00001{word-spacing:21.601170px;}
.ws13f_c00001{word-spacing:21.937266px;}
.ws16e_c00001{word-spacing:21.958272px;}
.ws9d_c00001{word-spacing:21.965274px;}
.ws7f_c00001{word-spacing:21.979278px;}
.ws11a_c00001{word-spacing:22.343382px;}
.ws70_c00001{word-spacing:22.665474px;}
.ws200_c00001{word-spacing:22.672476px;}
.ws181_c00001{word-spacing:22.686480px;}
.wsca_c00001{word-spacing:22.700484px;}
.ws180_c00001{word-spacing:22.735494px;}
.ws207_c00001{word-spacing:23.029578px;}
.ws136_c00001{word-spacing:23.393682px;}
.ws1e7_c00001{word-spacing:23.400684px;}
.ws1ac_c00001{word-spacing:24.079878px;}
.ws212_c00001{word-spacing:24.121890px;}
.ws3e_c00001{word-spacing:24.478992px;}
.ws211_c00001{word-spacing:24.507000px;}
.ws1c8_c00001{word-spacing:24.815088px;}
.ws151_c00001{word-spacing:24.829092px;}
.ws84_c00001{word-spacing:24.843096px;}
.ws2f_c00001{word-spacing:24.850098px;}
.ws1fd_c00001{word-spacing:25.165188px;}
.ws85_c00001{word-spacing:25.179192px;}
.ws152_c00001{word-spacing:25.186194px;}
.ws205_c00001{word-spacing:25.200198px;}
.ws16_c00001{word-spacing:25.214202px;}
.ws229_c00001{word-spacing:25.357877px;}
.ws22a_c00001{word-spacing:25.364284px;}
.ws103_c00001{word-spacing:25.578306px;}
.ws10c_c00001{word-spacing:25.585308px;}
.ws1ff_c00001{word-spacing:25.935408px;}
.wse4_c00001{word-spacing:26.285508px;}
.wse3_c00001{word-spacing:26.628606px;}
.wsd4_c00001{word-spacing:26.649612px;}
.ws1ca_c00001{word-spacing:26.950698px;}
.ws15b_c00001{word-spacing:26.957700px;}
.ws1c9_c00001{word-spacing:26.964702px;}
.ws1f4_c00001{word-spacing:27.342810px;}
.wsfc_c00001{word-spacing:27.349812px;}
.ws172_c00001{word-spacing:27.377820px;}
.ws173_c00001{word-spacing:27.678906px;}
.ws1f5_c00001{word-spacing:27.713916px;}
.ws9f_c00001{word-spacing:27.734922px;}
.ws90_c00001{word-spacing:27.748926px;}
.ws252_c00001{word-spacing:27.907759px;}
.ws14f_c00001{word-spacing:28.043010px;}
.ws8f_c00001{word-spacing:28.078020px;}
.ws150_c00001{word-spacing:28.085022px;}
.ws251_c00001{word-spacing:28.221690px;}
.wsff_c00001{word-spacing:28.393110px;}
.ws60_c00001{word-spacing:28.428120px;}
.ws1ab_c00001{word-spacing:28.463130px;}
.ws9e_c00001{word-spacing:28.813230px;}
.ws2b_c00001{word-spacing:29.170332px;}
.ws1a9_c00001{word-spacing:31.333950px;}
.ws1aa_c00001{word-spacing:31.340952px;}
.ws1b7_c00001{word-spacing:31.684050px;}
.ws1b6_c00001{word-spacing:31.691052px;}
.ws41_c00001{word-spacing:32.020146px;}
.ws13e_c00001{word-spacing:32.748354px;}
.ws1a4_c00001{word-spacing:32.755356px;}
.ws144_c00001{word-spacing:33.833664px;}
.ws137_c00001{word-spacing:35.290080px;}
.wsfb_c00001{word-spacing:35.619174px;}
.wsd6_c00001{word-spacing:35.647182px;}
.ws8e_c00001{word-spacing:36.340380px;}
.ws1cb_c00001{word-spacing:36.732492px;}
.ws10b_c00001{word-spacing:37.775790px;}
.wsba_c00001{word-spacing:39.575304px;}
.wsdc_c00001{word-spacing:42.131034px;}
.ws1de_c00001{word-spacing:43.559442px;}
.ws1df_c00001{word-spacing:43.594452px;}
.ws1c3_c00001{word-spacing:46.080162px;}
.ws1c2_c00001{word-spacing:46.402254px;}
.ws255_c00001{word-spacing:54.482917px;}
.ws256_c00001{word-spacing:54.892948px;}
._6_c00001{margin-left:-42.383106px;}
._8_c00001{margin-left:-37.047582px;}
._b_c00001{margin-left:-33.945696px;}
._2_c00001{margin-left:-24.324948px;}
._4_c00001{margin-left:-18.596214px;}
._5_c00001{margin-left:-7.856244px;}
._9_c00001{margin-left:-6.476850px;}
._c_c00001{margin-left:-3.282005px;}
._1_c00001{margin-left:-1.344384px;}
._0_c00001{width:1.652472px;}
._3_c00001{width:3.816090px;}
._7_c00001{width:5.476759px;}
._a_c00001{width:21.734208px;}
.fc0_c00001{color:rgb(0,0,0);}
.fs1_c00001{font-size:46.562400px;}
.fs6_c00001{font-size:49.713600px;}
.fs2_c00001{font-size:52.515000px;}
.fs4_c00001{font-size:58.466400px;}
.fs5_c00001{font-size:61.267800px;}
.fs7_c00001{font-size:64.067400px;}
.fs0_c00001{font-size:70.020000px;}
.fs3_c00001{font-size:75.971400px;}
.y0_c00001{bottom:0.000000px;}
.y2_c00001{bottom:109.740968px;}
.y1_c00001{bottom:129.810450px;}
.y42_c00001{bottom:152.130712px;}
.y7e_c00001{bottom:152.578215px;}
.y20f_c00001{bottom:152.579101px;}
.y188_c00001{bottom:152.579951px;}
.y281_c00001{bottom:153.207633px;}
.y1ca_c00001{bottom:153.209780px;}
.y1e2_c00001{bottom:154.108516px;}
.y29b_c00001{bottom:155.099838px;}
.y302_c00001{bottom:158.789563px;}
.y2dc_c00001{bottom:160.678943px;}
.y151_c00001{bottom:160.860563px;}
.y22f_c00001{bottom:161.754848px;}
.y26c_c00001{bottom:162.928160px;}
.y179_c00001{bottom:166.530450px;}
.y2c1_c00001{bottom:169.319451px;}
.y2f6_c00001{bottom:169.409120px;}
.y326_c00001{bottom:170.040873px;}
.y250_c00001{bottom:173.366873px;}
.y28d_c00001{bottom:173.546693px;}
.y9a_c00001{bottom:174.446481px;}
.y1bc_c00001{bottom:174.447480px;}
.yc1_c00001{bottom:174.447952px;}
.y60_c00001{bottom:174.448452px;}
.y158_c00001{bottom:174.448951px;}
.y92_c00001{bottom:174.449451px;}
.yd8_c00001{bottom:174.449564px;}
.yfd_c00001{bottom:174.450063px;}
.y4b7_c00001{bottom:174.801912px;}
.yf4_c00001{bottom:177.600563px;}
.y1fb_c00001{bottom:178.589951px;}
.y2db_c00001{bottom:180.839451px;}
.y47e_c00001{bottom:182.094383px;}
.y4ca_c00001{bottom:182.180874px;}
.y21_c00001{bottom:182.368339px;}
.y41_c00001{bottom:182.369101px;}
.y7d_c00001{bottom:182.818103px;}
.y20e_c00001{bottom:182.818989px;}
.y187_c00001{bottom:182.819838px;}
.y280_c00001{bottom:183.267219px;}
.y1c9_c00001{bottom:183.269366px;}
.y22e_c00001{bottom:183.625103px;}
.y1e1_c00001{bottom:184.259128px;}
.y362_c00001{bottom:184.527462px;}
.y3c0_c00001{bottom:184.974016px;}
.y45a_c00001{bottom:185.062611px;}
.y3f0_c00001{bottom:185.063907px;}
.y315_c00001{bottom:185.340968px;}
.y301_c00001{bottom:189.029451px;}
.y2c0_c00001{bottom:189.388934px;}
.y2f5_c00001{bottom:189.478602px;}
.y325_c00001{bottom:190.110356px;}
.y150_c00001{bottom:191.099451px;}
.y4ae_c00001{bottom:192.350278px;}
.y48e_c00001{bottom:192.353481px;}
.y485_c00001{bottom:192.355083px;}
.y406_c00001{bottom:192.358008px;}
.y3d9_c00001{bottom:192.358033px;}
.y26b_c00001{bottom:193.078772px;}
.y29a_c00001{bottom:193.260450px;}
.y42e_c00001{bottom:195.143617px;}
.y178_c00001{bottom:199.375955px;}
.y19c_c00001{bottom:199.560562px;}
.y2da_c00001{bottom:200.999960px;}
.y3a7_c00001{bottom:202.434487px;}
.y43f_c00001{bottom:202.437316px;}
.y4a0_c00001{bottom:202.522274px;}
.y24f_c00001{bottom:203.606760px;}
.y28c_c00001{bottom:203.786580px;}
.y99_c00001{bottom:204.686368px;}
.y1bb_c00001{bottom:204.687367px;}
.yc0_c00001{bottom:204.687840px;}
.y13a_c00001{bottom:204.687952px;}
.y361_c00001{bottom:204.687970px;}
.y5f_c00001{bottom:204.688339px;}
.y157_c00001{bottom:204.688839px;}
.y125_c00001{bottom:204.689102px;}
.y91_c00001{bottom:204.689339px;}
.yd7_c00001{bottom:204.689451px;}
.y110_c00001{bottom:204.689838px;}
.yfc_c00001{bottom:204.689951px;}
.y44d_c00001{bottom:205.312715px;}
.y314_c00001{bottom:205.407291px;}
.y22d_c00001{bottom:205.495359px;}
.yf3_c00001{bottom:207.840450px;}
.y1fa_c00001{bottom:208.740563px;}
.y2bf_c00001{bottom:209.549442px;}
.y2f4_c00001{bottom:209.639111px;}
.y41f_c00001{bottom:209.722154px;}
.y47d_c00001{bottom:209.725051px;}
.y4f0_c00001{bottom:209.726653px;}
.y4c9_c00001{bottom:209.811542px;}
.y324_c00001{bottom:210.270864px;}
.y20_c00001{bottom:212.518951px;}
.y40_c00001{bottom:212.519714px;}
.y3bf_c00001{bottom:212.694378px;}
.y3ef_c00001{bottom:212.694575px;}
.y186_c00001{bottom:212.968065px;}
.y7c_c00001{bottom:212.968715px;}
.y20d_c00001{bottom:212.969601px;}
.y1c8_c00001{bottom:213.509253px;}
.y1e0_c00001{bottom:214.499016px;}
.y510_c00001{bottom:215.395322px;}
.y300_c00001{bottom:219.180063px;}
.y4b6_c00001{bottom:219.982242px;}
.y520_c00001{bottom:220.071936px;}
.y500_c00001{bottom:220.073844px;}
.y2d9_c00001{bottom:221.069442px;}
.y14f_c00001{bottom:221.250063px;}
.y42d_c00001{bottom:222.863979px;}
.y26a_c00001{bottom:223.318659px;}
.y360_c00001{bottom:224.757453px;}
.y313_c00001{bottom:225.567800px;}
.yf2_c00001{bottom:227.010578px;}
.y22c_c00001{bottom:227.455099px;}
.y177_c00001{bottom:229.615842px;}
.y2be_c00001{bottom:229.709951px;}
.y2f3_c00001{bottom:229.799619px;}
.y19b_c00001{bottom:229.800977px;}
.y3a6_c00001{bottom:230.154849px;}
.y459_c00001{bottom:230.242942px;}
.y43e_c00001{bottom:230.247372px;}
.y24e_c00001{bottom:233.846648px;}
.y27f_c00001{bottom:233.847917px;}
.y28b_c00001{bottom:233.937192px;}
.y2aa_c00001{bottom:234.569442px;}
.y98_c00001{bottom:234.836980px;}
.y1ac_c00001{bottom:234.837480px;}
.y1ba_c00001{bottom:234.837979px;}
.ybf_c00001{bottom:234.838452px;}
.y139_c00001{bottom:234.838564px;}
.y5e_c00001{bottom:234.838952px;}
.y10f_c00001{bottom:234.839064px;}
.y156_c00001{bottom:234.839451px;}
.y124_c00001{bottom:234.839714px;}
.y90_c00001{bottom:234.839951px;}
.yd6_c00001{bottom:234.840063px;}
.yb4_c00001{bottom:234.840563px;}
.y48d_c00001{bottom:237.444118px;}
.y484_c00001{bottom:237.445719px;}
.y3d8_c00001{bottom:237.448669px;}
.y4ad_c00001{bottom:237.530609px;}
.y41e_c00001{bottom:237.532210px;}
.y47c_c00001{bottom:237.535108px;}
.y4ef_c00001{bottom:237.536710px;}
.y405_c00001{bottom:237.538339px;}
.y1f9_c00001{bottom:238.980450px;}
.y323_c00001{bottom:240.330643px;}
.y2d8_c00001{bottom:241.229951px;}
.y1f_c00001{bottom:242.758839px;}
.y3f_c00001{bottom:242.759601px;}
.y185_c00001{bottom:243.207952px;}
.y7b_c00001{bottom:243.208602px;}
.y20c_c00001{bottom:243.209488px;}
.y50f_c00001{bottom:243.295073px;}
.y1c7_c00001{bottom:243.659865px;}
.y1df_c00001{bottom:244.558602px;}
.y35f_c00001{bottom:244.917961px;}
.y34d_c00001{bottom:245.366945px;}
.y312_c00001{bottom:245.728308px;}
.y464_c00001{bottom:247.525123px;}
.y4d9_c00001{bottom:247.612910px;}
.y49f_c00001{bottom:247.702604px;}
.yf1_c00001{bottom:248.880450px;}
.y22b_c00001{bottom:249.325354px;}
.y2ff_c00001{bottom:249.419950px;}
.y2bd_c00001{bottom:249.779433px;}
.y2f2_c00001{bottom:249.869102px;}
.y42c_c00001{bottom:250.494647px;}
.y14e_c00001{bottom:251.489951px;}
.y269_c00001{bottom:253.469271px;}
.y2a0_c00001{bottom:253.470531px;}
.y2a9_c00001{bottom:254.729951px;}
.y4c8_c00001{bottom:255.081567px;}
.y3ee_c00001{bottom:257.785211px;}
.y458_c00001{bottom:257.873610px;}
.y3be_c00001{bottom:257.874708px;}
.y176_c00001{bottom:259.766454px;}
.y19a_c00001{bottom:259.860563px;}
.y2d7_c00001{bottom:261.390459px;}
.y24d_c00001{bottom:263.997260px;}
.y27e_c00001{bottom:264.177080px;}
.yfb_c00001{bottom:265.075086px;}
.y97_c00001{bottom:265.076868px;}
.y1ab_c00001{bottom:265.077367px;}
.y1b9_c00001{bottom:265.077867px;}
.yb3_c00001{bottom:265.077952px;}
.ybe_c00001{bottom:265.078339px;}
.y138_c00001{bottom:265.078452px;}
.y35e_c00001{bottom:265.078470px;}
.y5d_c00001{bottom:265.078839px;}
.y10e_c00001{bottom:265.078951px;}
.y155_c00001{bottom:265.079339px;}
.y123_c00001{bottom:265.079601px;}
.y8f_c00001{bottom:265.079838px;}
.yd5_c00001{bottom:265.079951px;}
.y44c_c00001{bottom:265.162878px;}
.y41d_c00001{bottom:265.252572px;}
.y48c_c00001{bottom:265.254174px;}
.y483_c00001{bottom:265.255776px;}
.y3d7_c00001{bottom:265.258726px;}
.y34c_c00001{bottom:265.527453px;}
.y1f8_c00001{bottom:265.710450px;}
.y311_c00001{bottom:265.797791px;}
.y2bc_c00001{bottom:269.939942px;}
.y2f1_c00001{bottom:270.029610px;}
.y322_c00001{bottom:270.570531px;}
.y22a_c00001{bottom:271.195610px;}
.y1e_c00001{bottom:272.909451px;}
.y3e_c00001{bottom:272.910213px;}
.y184_c00001{bottom:273.358564px;}
.y7a_c00001{bottom:273.359214px;}
.y20b_c00001{bottom:273.360101px;}
.y1c6_c00001{bottom:273.899753px;}
.y1de_c00001{bottom:274.798489px;}
.y3a5_c00001{bottom:275.245485px;}
.y49e_c00001{bottom:275.333272px;}
.y43d_c00001{bottom:275.338008px;}
.y374_c00001{bottom:277.407215px;}
.y2fe_c00001{bottom:279.570563px;}
.y38e_c00001{bottom:279.655159px;}
.y2d6_c00001{bottom:281.550968px;}
.y14d_c00001{bottom:281.640562px;}
.yf0_c00001{bottom:281.728339px;}
.y4ac_c00001{bottom:282.621245px;}
.y47b_c00001{bottom:282.625744px;}
.y4ee_c00001{bottom:282.627346px;}
.y404_c00001{bottom:282.628975px;}
.y4c7_c00001{bottom:282.712235px;}
.y268_c00001{bottom:283.709159px;}
.y29f_c00001{bottom:283.710419px;}
.y2a8_c00001{bottom:284.880563px;}
.y35d_c00001{bottom:285.147952px;}
.y3ed_c00001{bottom:285.505574px;}
.y34b_c00001{bottom:285.596936px;}
.y310_c00001{bottom:285.958299px;}
.y50e_c00001{bottom:288.385709px;}
.y175_c00001{bottom:290.006341px;}
.y199_c00001{bottom:290.099451px;}
.y2bb_c00001{bottom:290.100450px;}
.y2f0_c00001{bottom:290.190119px;}
.y1f7_c00001{bottom:291.808092px;}
.y4b5_c00001{bottom:292.793240px;}
.y44b_c00001{bottom:292.883240px;}
.y4ff_c00001{bottom:292.884842px;}
.y229_c00001{bottom:293.065865px;}
.y27d_c00001{bottom:294.327692px;}
.yfa_c00001{bottom:295.225698px;}
.y96_c00001{bottom:295.227480px;}
.y1aa_c00001{bottom:295.227979px;}
.y1b8_c00001{bottom:295.228479px;}
.yb2_c00001{bottom:295.228564px;}
.ybd_c00001{bottom:295.228951px;}
.y137_c00001{bottom:295.229064px;}
.y5c_c00001{bottom:295.229451px;}
.y10d_c00001{bottom:295.229563px;}
.y8e_c00001{bottom:295.229951px;}
.y122_c00001{bottom:295.230213px;}
.yd4_c00001{bottom:295.230563px;}
.y321_c00001{bottom:300.721143px;}
.y2d5_c00001{bottom:301.620450px;}
.y3bd_c00001{bottom:302.965345px;}
.y4d8_c00001{bottom:303.053635px;}
.y457_c00001{bottom:303.053940px;}
.y1d_c00001{bottom:303.149338px;}
.y3d_c00001{bottom:303.150101px;}
.y183_c00001{bottom:303.598452px;}
.y79_c00001{bottom:303.599102px;}
.y20a_c00001{bottom:303.599988px;}
.y1dd_c00001{bottom:304.949101px;}
.y35c_c00001{bottom:305.308461px;}
.y34a_c00001{bottom:305.757444px;}
.y30f_c00001{bottom:306.118808px;}
.y373_c00001{bottom:307.557826px;}
.y2fd_c00001{bottom:309.810450px;}
.y41c_c00001{bottom:310.251913px;}
.y4d2_c00001{bottom:310.253514px;}
.y42b_c00001{bottom:310.255116px;}
.y3d6_c00001{bottom:310.258066px;}
.y2ef_c00001{bottom:310.259601px;}
.y4ab_c00001{bottom:310.341607px;}
.y48b_c00001{bottom:310.344810px;}
.y47a_c00001{bottom:310.346106px;}
.y4ed_c00001{bottom:310.347708px;}
.y403_c00001{bottom:310.349337px;}
.y2b8_c00001{bottom:310.979451px;}
.y14c_c00001{bottom:311.880450px;}
.yef_c00001{bottom:311.968227px;}
.y3ec_c00001{bottom:313.315630px;}
.y267_c00001{bottom:313.859771px;}
.y29e_c00001{bottom:313.861031px;}
.y24c_c00001{bottom:314.577957px;}
.y228_c00001{bottom:314.936121px;}
.y174_c00001{bottom:320.156953px;}
.y198_c00001{bottom:320.250063px;}
.y49d_c00001{bottom:320.423908px;}
.y3a4_c00001{bottom:320.425816px;}
.y43c_c00001{bottom:320.428644px;}
.y4b4_c00001{bottom:320.513603px;}
.y1f6_c00001{bottom:322.047979px;}
.y2d4_c00001{bottom:322.590468px;}
.y2a7_c00001{bottom:323.130450px;}
.y1c5_c00001{bottom:324.478304px;}
.y27c_c00001{bottom:324.567579px;}
.y38d_c00001{bottom:324.925184px;}
.yf9_c00001{bottom:325.465586px;}
.y95_c00001{bottom:325.467367px;}
.y1a9_c00001{bottom:325.467867px;}
.y1b7_c00001{bottom:325.468367px;}
.yb1_c00001{bottom:325.468452px;}
.ybc_c00001{bottom:325.468839px;}
.y136_c00001{bottom:325.468951px;}
.y35b_c00001{bottom:325.468969px;}
.y5b_c00001{bottom:325.469338px;}
.yd3_c00001{bottom:325.469451px;}
.y8d_c00001{bottom:325.469838px;}
.y121_c00001{bottom:325.470101px;}
.y349_c00001{bottom:325.917953px;}
.y30e_c00001{bottom:326.188290px;}
.y4c6_c00001{bottom:327.802871px;}
.y2ee_c00001{bottom:330.329084px;}
.y3bc_c00001{bottom:330.685707px;}
.y2fb_c00001{bottom:330.689950px;}
.y320_c00001{bottom:330.961030px;}
.y14b_c00001{bottom:331.050578px;}
.y2b7_c00001{bottom:331.139960px;}
.y1c_c00001{bottom:333.299950px;}
.y3c_c00001{bottom:333.300713px;}
.y50d_c00001{bottom:333.476345px;}
.y182_c00001{bottom:333.749064px;}
.y78_c00001{bottom:333.749713px;}
.y209_c00001{bottom:333.750600px;}
.y1dc_c00001{bottom:335.188989px;}
.y339_c00001{bottom:335.996782px;}
.y227_c00001{bottom:336.806376px;}
.y372_c00001{bottom:337.797714px;}
.y44a_c00001{bottom:337.973877px;}
.y4fe_c00001{bottom:337.975478px;}
.y41b_c00001{bottom:338.061969px;}
.y4d1_c00001{bottom:338.063571px;}
.y42a_c00001{bottom:338.065173px;}
.y3d5_c00001{bottom:338.068123px;}
.yee_c00001{bottom:342.118839px;}
.y2d3_c00001{bottom:342.659950px;}
.y29d_c00001{bottom:344.100918px;}
.y35a_c00001{bottom:345.538452px;}
.y348_c00001{bottom:345.987435px;}
.y30d_c00001{bottom:346.348799px;}
.y456_c00001{bottom:348.234271px;}
.y463_c00001{bottom:348.235872px;}
.y43b_c00001{bottom:348.238701px;}
.y49c_c00001{bottom:348.323659px;}
.y3a3_c00001{bottom:348.325567px;}
.y173_c00001{bottom:350.396841px;}
.y2ed_c00001{bottom:350.489592px;}
.y197_c00001{bottom:350.489950px;}
.y2fa_c00001{bottom:350.850459px;}
.y31f_c00001{bottom:351.121539px;}
.y2b6_c00001{bottom:351.300468px;}
.y1f5_c00001{bottom:352.198591px;}
.y208_c00001{bottom:352.920219px;}
.y14a_c00001{bottom:352.920450px;}
.y1c4_c00001{bottom:354.718191px;}
.y27b_c00001{bottom:354.807467px;}
.y479_c00001{bottom:355.436742px;}
.y4ec_c00001{bottom:355.438344px;}
.y402_c00001{bottom:355.439973px;}
.y4aa_c00001{bottom:355.521937px;}
.y4c5_c00001{bottom:355.523233px;}
.y482_c00001{bottom:355.525141px;}
.yf8_c00001{bottom:355.616198px;}
.y8c_c00001{bottom:355.617979px;}
.y1a8_c00001{bottom:355.618479px;}
.y1b6_c00001{bottom:355.618979px;}
.yb0_c00001{bottom:355.619064px;}
.y154_c00001{bottom:355.619091px;}
.ybb_c00001{bottom:355.619451px;}
.y135_c00001{bottom:355.619563px;}
.y5a_c00001{bottom:355.619951px;}
.yd2_c00001{bottom:355.620063px;}
.y120_c00001{bottom:355.620713px;}
.y338_c00001{bottom:356.157291px;}
.y3eb_c00001{bottom:358.314970px;}
.y3bb_c00001{bottom:358.316375px;}
.y226_c00001{bottom:358.676631px;}
.y2fc_c00001{bottom:360.929838px;}
.y50c_c00001{bottom:361.196707px;}
.y2d2_c00001{bottom:362.820459px;}
.y3b_c00001{bottom:363.538839px;}
.y1b_c00001{bottom:363.539838px;}
.y181_c00001{bottom:363.988951px;}
.y77_c00001{bottom:363.989601px;}
.y266_c00001{bottom:364.349442px;}
.y24b_c00001{bottom:365.158655px;}
.y1db_c00001{bottom:365.339601px;}
.y41a_c00001{bottom:365.692637px;}
.y4fd_c00001{bottom:365.695841px;}
.y359_c00001{bottom:365.698960px;}
.y51f_c00001{bottom:365.783628px;}
.y449_c00001{bottom:365.783933px;}
.y347_c00001{bottom:366.147943px;}
.y30c_c00001{bottom:366.509307px;}
.y371_c00001{bottom:367.948326px;}
.y207_c00001{bottom:368.040600px;}
.y38c_c00001{bottom:370.195209px;}
.y29c_c00001{bottom:370.470450px;}
.y2ec_c00001{bottom:370.650101px;}
.y2f9_c00001{bottom:370.919941px;}
.y31e_c00001{bottom:371.191021px;}
.y2b5_c00001{bottom:371.369951px;}
.yed_c00001{bottom:372.358726px;}
.y337_c00001{bottom:376.317799px;}
.y225_c00001{bottom:380.546887px;}
.y172_c00001{bottom:380.547453px;}
.y196_c00001{bottom:380.640562px;}
.y2ba_c00001{bottom:381.088727px;}
.y1f4_c00001{bottom:382.438479px;}
.y2d1_c00001{bottom:382.980967px;}
.y4d0_c00001{bottom:383.243901px;}
.y3d4_c00001{bottom:383.248453px;}
.y4a9_c00001{bottom:383.331994px;}
.y4c4_c00001{bottom:383.333290px;}
.y429_c00001{bottom:383.335197px;}
.y478_c00001{bottom:383.336493px;}
.y4eb_c00001{bottom:383.338095px;}
.y401_c00001{bottom:383.339724px;}
.yf7_c00001{bottom:385.856085px;}
.y11f_c00001{bottom:385.857093px;}
.y8b_c00001{bottom:385.857867px;}
.y1a7_c00001{bottom:385.858366px;}
.y1b5_c00001{bottom:385.858866px;}
.yaf_c00001{bottom:385.858951px;}
.y153_c00001{bottom:385.858978px;}
.yba_c00001{bottom:385.859338px;}
.y134_c00001{bottom:385.859451px;}
.y358_c00001{bottom:385.859469px;}
.y59_c00001{bottom:385.859838px;}
.yd1_c00001{bottom:385.859950px;}
.y3ea_c00001{bottom:386.125027px;}
.y346_c00001{bottom:386.308452px;}
.y30b_c00001{bottom:386.578790px;}
.y31d_c00001{bottom:387.570450px;}
.y2eb_c00001{bottom:390.719583px;}
.y2f8_c00001{bottom:391.080450px;}
.y2b4_c00001{bottom:391.530459px;}
.y462_c00001{bottom:393.235212px;}
.y3a2_c00001{bottom:393.324907px;}
.y43a_c00001{bottom:393.329337px;}
.y49b_c00001{bottom:393.414295px;}
.y4fc_c00001{bottom:393.416203px;}
.y3a_c00001{bottom:393.689451px;}
.y1a_c00001{bottom:393.690450px;}
.y180_c00001{bottom:394.139563px;}
.y206_c00001{bottom:394.139590px;}
.y76_c00001{bottom:394.140213px;}
.y265_c00001{bottom:394.678605px;}
.y24a_c00001{bottom:395.487818px;}
.y1da_c00001{bottom:395.579488px;}
.y336_c00001{bottom:396.387282px;}
.y38b_c00001{bottom:397.825877px;}
.y370_c00001{bottom:398.188213px;}
.y481_c00001{bottom:400.705471px;}
.y224_c00001{bottom:402.506627px;}
.yec_c00001{bottom:402.509338px;}
.y2d0_c00001{bottom:403.050450px;}
.y3ba_c00001{bottom:403.496705px;}
.y27a_c00001{bottom:405.297138px;}
.y1c3_c00001{bottom:405.388164px;}
.y357_c00001{bottom:405.928951px;}
.y345_c00001{bottom:406.377935px;}
.y30a_c00001{bottom:406.739298px;}
.y171_c00001{bottom:410.787340px;}
.y419_c00001{bottom:410.872968px;}
.y448_c00001{bottom:410.874569px;}
.y195_c00001{bottom:410.878065px;}
.y2ea_c00001{bottom:410.880092px;}
.y51e_c00001{bottom:410.963958px;}
.y4cf_c00001{bottom:410.964264px;}
.y428_c00001{bottom:410.965865px;}
.y3d3_c00001{bottom:410.968815px;}
.y2b3_c00001{bottom:411.690967px;}
.y1f3_c00001{bottom:412.498065px;}
.y19_c00001{bottom:415.110600px;}
.yf6_c00001{bottom:416.006697px;}
.y11e_c00001{bottom:416.007705px;}
.y8a_c00001{bottom:416.008479px;}
.y1a6_c00001{bottom:416.008979px;}
.y58_c00001{bottom:416.009451px;}
.y1b4_c00001{bottom:416.009478px;}
.yae_c00001{bottom:416.009563px;}
.y152_c00001{bottom:416.009590px;}
.yb9_c00001{bottom:416.009951px;}
.y133_c00001{bottom:416.010063px;}
.yd0_c00001{bottom:416.010562px;}
.y335_c00001{bottom:416.547791px;}
.y461_c00001{bottom:421.045269px;}
.y50b_c00001{bottom:421.046871px;}
.y4d7_c00001{bottom:421.134658px;}
.y3a1_c00001{bottom:421.134963px;}
.y39_c00001{bottom:423.929338px;}
.y223_c00001{bottom:424.376882px;}
.y17f_c00001{bottom:424.379451px;}
.y205_c00001{bottom:424.379478px;}
.y75_c00001{bottom:424.380101px;}
.y264_c00001{bottom:424.829217px;}
.y249_c00001{bottom:425.638430px;}
.y1d9_c00001{bottom:425.730100px;}
.y356_c00001{bottom:426.089460px;}
.y344_c00001{bottom:426.538443px;}
.y2cf_c00001{bottom:426.720450px;}
.y309_c00001{bottom:426.899807px;}
.y4c3_c00001{bottom:428.332630px;}
.y477_c00001{bottom:428.335834px;}
.y4ea_c00001{bottom:428.337435px;}
.y36f_c00001{bottom:428.338825px;}
.y400_c00001{bottom:428.339064px;}
.y2f7_c00001{bottom:428.340600px;}
.y4a8_c00001{bottom:428.422630px;}
.y480_c00001{bottom:428.425834px;}
.y2e9_c00001{bottom:431.040600px;}
.y3e9_c00001{bottom:431.215663px;}
.y3b9_c00001{bottom:431.217068px;}
.y2b9_c00001{bottom:431.669424px;}
.y2b2_c00001{bottom:431.760450px;}
.yeb_c00001{bottom:432.659950px;}
.y279_c00001{bottom:435.537026px;}
.y1c2_c00001{bottom:435.538776px;}
.y334_c00001{bottom:436.708299px;}
.y418_c00001{bottom:438.593330px;}
.y49a_c00001{bottom:438.594626px;}
.y447_c00001{bottom:438.594932px;}
.y4fb_c00001{bottom:438.596533px;}
.y439_c00001{bottom:438.599362px;}
.y170_c00001{bottom:440.937952px;}
.y194_c00001{bottom:441.028677px;}
.y1f2_c00001{bottom:442.737952px;}
.y38a_c00001{bottom:442.916513px;}
.yf5_c00001{bottom:446.246585px;}
.y222_c00001{bottom:446.247138px;}
.y11d_c00001{bottom:446.247593px;}
.ycf_c00001{bottom:446.247979px;}
.y89_c00001{bottom:446.248366px;}
.y1a5_c00001{bottom:446.248866px;}
.y57_c00001{bottom:446.249338px;}
.y1b3_c00001{bottom:446.249365px;}
.yad_c00001{bottom:446.249451px;}
.y10c_c00001{bottom:446.249478px;}
.yb8_c00001{bottom:446.249838px;}
.y132_c00001{bottom:446.249950px;}
.y355_c00001{bottom:446.249968px;}
.y343_c00001{bottom:446.698952px;}
.y308_c00001{bottom:447.060315px;}
.y50a_c00001{bottom:448.767233px;}
.y18_c00001{bottom:450.206976px;}
.y38_c00001{bottom:454.079950px;}
.y17e_c00001{bottom:454.530063px;}
.y204_c00001{bottom:454.530090px;}
.y74_c00001{bottom:454.530713px;}
.y263_c00001{bottom:455.069105px;}
.y248_c00001{bottom:455.878317px;}
.y1d8_c00001{bottom:455.969988px;}
.y51d_c00001{bottom:456.054594px;}
.y3ff_c00001{bottom:456.059427px;}
.y4c2_c00001{bottom:456.142687px;}
.y4ce_c00001{bottom:456.144594px;}
.y476_c00001{bottom:456.145890px;}
.y427_c00001{bottom:456.146196px;}
.y4e9_c00001{bottom:456.147492px;}
.y3d2_c00001{bottom:456.149146px;}
.y333_c00001{bottom:456.777782px;}
.y36e_c00001{bottom:458.578713px;}
.y3e8_c00001{bottom:458.936025px;}
.yea_c00001{bottom:462.899838px;}
.y278_c00001{bottom:465.776913px;}
.y455_c00001{bottom:466.134303px;}
.y460_c00001{bottom:466.135905px;}
.y499_c00001{bottom:466.225294px;}
.y3a0_c00001{bottom:466.225600px;}
.y438_c00001{bottom:466.230030px;}
.y354_c00001{bottom:466.319451px;}
.y342_c00001{bottom:466.768434px;}
.y307_c00001{bottom:467.129797px;}
.y221_c00001{bottom:468.117393px;}
.y389_c00001{bottom:470.547181px;}
.y16f_c00001{bottom:471.177840px;}
.y193_c00001{bottom:471.268564px;}
.y1f1_c00001{bottom:472.888564px;}
.y2e8_c00001{bottom:473.070450px;}
.y4a7_c00001{bottom:473.513266px;}
.y3b8_c00001{bottom:476.307704px;}
.yb7_c00001{bottom:476.397197px;}
.y11c_c00001{bottom:476.398205px;}
.yce_c00001{bottom:476.398592px;}
.y88_c00001{bottom:476.398978px;}
.y1a4_c00001{bottom:476.399478px;}
.y56_c00001{bottom:476.399950px;}
.y1b2_c00001{bottom:476.399977px;}
.yac_c00001{bottom:476.400063px;}
.y10b_c00001{bottom:476.400090px;}
.y131_c00001{bottom:476.400562px;}
.y332_c00001{bottom:476.938290px;}
.y294_c00001{bottom:481.439194px;}
.y17_c00001{bottom:482.517705px;}
.y446_c00001{bottom:483.685568px;}
.y4c1_c00001{bottom:483.773355px;}
.y417_c00001{bottom:483.773660px;}
.y51c_c00001{bottom:483.774956px;}
.y4cd_c00001{bottom:483.775262px;}
.y4fa_c00001{bottom:483.776864px;}
.y3fe_c00001{bottom:483.779789px;}
.y3d1_c00001{bottom:483.779814px;}
.y37_c00001{bottom:484.319838px;}
.y73_c00001{bottom:484.769370px;}
.y17d_c00001{bottom:484.769950px;}
.y203_c00001{bottom:484.769977px;}
.y262_c00001{bottom:485.308992px;}
.y1c1_c00001{bottom:486.028448px;}
.y247_c00001{bottom:486.028929px;}
.y1d7_c00001{bottom:486.116905px;}
.y353_c00001{bottom:486.479959px;}
.y341_c00001{bottom:486.928942px;}
.y306_c00001{bottom:487.290306px;}
.y36d_c00001{bottom:488.729325px;}
.y220_c00001{bottom:489.987649px;}
.ye9_c00001{bottom:493.048564px;}
.y454_c00001{bottom:493.944360px;}
.y39f_c00001{bottom:493.945962px;}
.y509_c00001{bottom:493.947564px;}
.y277_c00001{bottom:495.927525px;}
.y331_c00001{bottom:497.098799px;}
.y388_c00001{bottom:498.357238px;}
.y426_c00001{bottom:501.145536px;}
.y4a6_c00001{bottom:501.233629px;}
.y475_c00001{bottom:501.236526px;}
.y48a_c00001{bottom:501.236832px;}
.y4e8_c00001{bottom:501.238128px;}
.y16e_c00001{bottom:501.328452px;}
.y192_c00001{bottom:501.419176px;}
.y1f0_c00001{bottom:503.128452px;}
.y3e7_c00001{bottom:504.206050px;}
.y3b7_c00001{bottom:504.207455px;}
.yb6_c00001{bottom:506.637084px;}
.y11b_c00001{bottom:506.638092px;}
.y130_c00001{bottom:506.638367px;}
.ycd_c00001{bottom:506.638479px;}
.y87_c00001{bottom:506.638866px;}
.y1a3_c00001{bottom:506.639365px;}
.y55_c00001{bottom:506.639838px;}
.y1b1_c00001{bottom:506.639865px;}
.yab_c00001{bottom:506.639950px;}
.y10a_c00001{bottom:506.639977px;}
.y352_c00001{bottom:506.640468px;}
.y340_c00001{bottom:507.089451px;}
.y305_c00001{bottom:507.450814px;}
.y2b1_c00001{bottom:510.420450px;}
.y498_c00001{bottom:511.315930px;}
.y437_c00001{bottom:511.320666px;}
.y416_c00001{bottom:511.404328px;}
.y445_c00001{bottom:511.405930px;}
.y4f9_c00001{bottom:511.407532px;}
.y293_c00001{bottom:511.589807px;}
.y21f_c00001{bottom:511.857904px;}
.y16_c00001{bottom:512.757592px;}
.y36_c00001{bottom:514.467727px;}
.y72_c00001{bottom:514.919982px;}
.y17c_c00001{bottom:514.920562px;}
.y202_c00001{bottom:514.920589px;}
.y261_c00001{bottom:515.459604px;}
.y246_c00001{bottom:516.268817px;}
.y1d6_c00001{bottom:516.356793px;}
.y1c0_c00001{bottom:516.357611px;}
.y330_c00001{bottom:517.168281px;}
.y36c_c00001{bottom:518.969212px;}
.ye8_c00001{bottom:523.288452px;}
.y276_c00001{bottom:526.167413px;}
.y351_c00001{bottom:526.709950px;}
.y33f_c00001{bottom:527.158933px;}
.y304_c00001{bottom:527.520297px;}
.y4c0_c00001{bottom:528.863991px;}
.y3d0_c00001{bottom:528.864297px;}
.y4a5_c00001{bottom:528.953991px;}
.y51b_c00001{bottom:528.955287px;}
.y425_c00001{bottom:528.955593px;}
.y474_c00001{bottom:528.956889px;}
.y3fd_c00001{bottom:528.960120px;}
.y16d_c00001{bottom:531.479064px;}
.y191_c00001{bottom:531.659064px;}
.y3b6_c00001{bottom:531.838123px;}
.y1ef_c00001{bottom:533.279064px;}
.y21e_c00001{bottom:533.728160px;}
.yb5_c00001{bottom:536.787696px;}
.y11a_c00001{bottom:536.788704px;}
.y12f_c00001{bottom:536.788978px;}
.ycc_c00001{bottom:536.789091px;}
.y86_c00001{bottom:536.789478px;}
.y1a2_c00001{bottom:536.789977px;}
.y1b0_c00001{bottom:536.790477px;}
.yaa_c00001{bottom:536.790562px;}
.y109_c00001{bottom:536.790589px;}
.y54_c00001{bottom:536.790976px;}
.y32f_c00001{bottom:537.328790px;}
.y453_c00001{bottom:539.124691px;}
.y45f_c00001{bottom:539.126292px;}
.y497_c00001{bottom:539.215681px;}
.y39e_c00001{bottom:539.215987px;}
.y508_c00001{bottom:539.217588px;}
.y436_c00001{bottom:539.220417px;}
.y15_c00001{bottom:542.908205px;}
.y387_c00001{bottom:543.537568px;}
.y303_c00001{bottom:543.810450px;}
.y35_c00001{bottom:544.618339px;}
.y71_c00001{bottom:545.159870px;}
.y17b_c00001{bottom:545.160450px;}
.y201_c00001{bottom:545.160477px;}
.y489_c00001{bottom:546.327468px;}
.y4e7_c00001{bottom:546.328764px;}
.y245_c00001{bottom:546.419429px;}
.y1d5_c00001{bottom:546.507405px;}
.y1bf_c00001{bottom:546.508223px;}
.y350_c00001{bottom:546.870459px;}
.y33e_c00001{bottom:547.319442px;}
.y36b_c00001{bottom:549.119825px;}
.y3e6_c00001{bottom:549.205390px;}
.ye7_c00001{bottom:553.439064px;}
.y21d_c00001{bottom:555.598415px;}
.y275_c00001{bottom:556.318025px;}
.y4bf_c00001{bottom:556.674048px;}
.y415_c00001{bottom:556.674353px;}
.y4cc_c00001{bottom:556.675955px;}
.y4f8_c00001{bottom:556.677557px;}
.y32e_c00001{bottom:557.489298px;}
.y292_c00001{bottom:558.480450px;}
.y16c_c00001{bottom:561.629676px;}
.y190_c00001{bottom:561.809676px;}
.y1ee_c00001{bottom:563.518951px;}
.y17a_c00001{bottom:564.330450px;}
.y260_c00001{bottom:565.949276px;}
.y452_c00001{bottom:566.845053px;}
.y4b3_c00001{bottom:566.846349px;}
.y39d_c00001{bottom:566.846655px;}
.ya9_c00001{bottom:567.027584px;}
.y149_c00001{bottom:567.027593px;}
.y119_c00001{bottom:567.028592px;}
.y12e_c00001{bottom:567.028866px;}
.ycb_c00001{bottom:567.028978px;}
.y85_c00001{bottom:567.029365px;}
.y1a1_c00001{bottom:567.029865px;}
.y1af_c00001{bottom:567.030365px;}
.y108_c00001{bottom:567.030477px;}
.y53_c00001{bottom:567.030864px;}
.y34f_c00001{bottom:567.030967px;}
.y33d_c00001{bottom:567.479950px;}
.y3cf_c00001{bottom:574.134321px;}
.y51a_c00001{bottom:574.135617px;}
.y3fc_c00001{bottom:574.135923px;}
.y473_c00001{bottom:574.137219px;}
.y488_c00001{bottom:574.227219px;}
.y4e6_c00001{bottom:574.228515px;}
.y34_c00001{bottom:574.768951px;}
.y14_c00001{bottom:575.218934px;}
.y70_c00001{bottom:575.219456px;}
.y200_c00001{bottom:575.220063px;}
.y244_c00001{bottom:576.659316px;}
.y1d4_c00001{bottom:576.747292px;}
.y1be_c00001{bottom:576.748110px;}
.y3b5_c00001{bottom:576.928759px;}
.y21c_c00001{bottom:577.558155px;}
.y32d_c00001{bottom:577.558781px;}
.y36a_c00001{bottom:579.359712px;}
.ye6_c00001{bottom:583.678951px;}
.y496_c00001{bottom:584.215021px;}
.y444_c00001{bottom:584.215327px;}
.y45e_c00001{bottom:584.216928px;}
.y435_c00001{bottom:584.219757px;}
.y414_c00001{bottom:584.305021px;}
.y4f7_c00001{bottom:584.308224px;}
.y274_c00001{bottom:586.557912px;}
.y33c_c00001{bottom:587.549433px;}
.y386_c00001{bottom:588.717899px;}
.y16b_c00001{bottom:591.869563px;}
.y18f_c00001{bottom:592.049563px;}
.y1ed_c00001{bottom:593.669563px;}
.y4b2_c00001{bottom:594.385721px;}
.y3e5_c00001{bottom:594.475415px;}
.y34e_c00001{bottom:595.110450px;}
.y25f_c00001{bottom:596.278439px;}
.y52_c00001{bottom:597.087066px;}
.ya8_c00001{bottom:597.087170px;}
.y148_c00001{bottom:597.087179px;}
.y118_c00001{bottom:597.088178px;}
.y12d_c00001{bottom:597.088452px;}
.yca_c00001{bottom:597.088565px;}
.y84_c00001{bottom:597.088951px;}
.y1a0_c00001{bottom:597.089451px;}
.y1ae_c00001{bottom:597.089950px;}
.y107_c00001{bottom:597.090063px;}
.y32c_c00001{bottom:597.719289px;}
.y21b_c00001{bottom:599.428411px;}
.y4be_c00001{bottom:601.854378px;}
.y519_c00001{bottom:601.855980px;}
.y3fb_c00001{bottom:601.856285px;}
.y472_c00001{bottom:601.857581px;}
.y3b4_c00001{bottom:604.649121px;}
.y33_c00001{bottom:605.008839px;}
.y6f_c00001{bottom:605.459343px;}
.y1ff_c00001{bottom:605.459950px;}
.y1bd_c00001{bottom:606.807696px;}
.y243_c00001{bottom:606.809928px;}
.y1d3_c00001{bottom:606.897904px;}
.y13_c00001{bottom:607.618938px;}
.y33b_c00001{bottom:607.709942px;}
.y369_c00001{bottom:609.510324px;}
.y451_c00001{bottom:611.935689px;}
.y45d_c00001{bottom:611.937291px;}
.y495_c00001{bottom:612.025078px;}
.y443_c00001{bottom:612.025383px;}
.y39c_c00001{bottom:612.026985px;}
.ye5_c00001{bottom:613.829563px;}
.y273_c00001{bottom:616.708524px;}
.y32b_c00001{bottom:617.879797px;}
.y3ce_c00001{bottom:619.224957px;}
.y487_c00001{bottom:619.226559px;}
.y4e5_c00001{bottom:619.227855px;}
.y21a_c00001{bottom:621.298666px;}
.y16a_c00001{bottom:622.109451px;}
.y18e_c00001{bottom:622.200176px;}
.y1ec_c00001{bottom:623.909451px;}
.y25e_c00001{bottom:626.429051px;}
.y51_c00001{bottom:627.326953px;}
.ya7_c00001{bottom:627.327057px;}
.y147_c00001{bottom:627.327066px;}
.y117_c00001{bottom:627.328065px;}
.y12c_c00001{bottom:627.328340px;}
.yc9_c00001{bottom:627.328452px;}
.y83_c00001{bottom:627.328839px;}
.y19f_c00001{bottom:627.329338px;}
.y1ad_c00001{bottom:627.329838px;}
.y106_c00001{bottom:627.329950px;}
.y413_c00001{bottom:629.395657px;}
.y4f6_c00001{bottom:629.398861px;}
.y4cb_c00001{bottom:629.486953px;}
.y434_c00001{bottom:629.489782px;}
.y385_c00001{bottom:633.898229px;}
.y32_c00001{bottom:635.159451px;}
.y6e_c00001{bottom:635.609955px;}
.y1fe_c00001{bottom:635.610563px;}
.y33a_c00001{bottom:635.880450px;}
.y28a_c00001{bottom:637.047584px;}
.y1d2_c00001{bottom:637.137792px;}
.y12_c00001{bottom:637.858825px;}
.y32a_c00001{bottom:638.040306px;}
.y3e4_c00001{bottom:639.655746px;}
.y450_c00001{bottom:639.656051px;}
.y368_c00001{bottom:639.750211px;}
.y219_c00001{bottom:643.168922px;}
.ye4_c00001{bottom:644.069451px;}
.y4bd_c00001{bottom:646.945014px;}
.y518_c00001{bottom:646.946616px;}
.y424_c00001{bottom:646.946921px;}
.y471_c00001{bottom:646.948218px;}
.y272_c00001{bottom:646.948412px;}
.y3cd_c00001{bottom:647.035014px;}
.y3fa_c00001{bottom:647.036616px;}
.y299_c00001{bottom:649.020391px;}
.y3b3_c00001{bottom:649.919146px;}
.y169_c00001{bottom:652.260063px;}
.y18d_c00001{bottom:652.440063px;}
.y1eb_c00001{bottom:654.060063px;}
.y25d_c00001{bottom:656.668938px;}
.y4d6_c00001{bottom:657.115714px;}
.y412_c00001{bottom:657.116020px;}
.y39b_c00001{bottom:657.117621px;}
.y4f5_c00001{bottom:657.119223px;}
.y433_c00001{bottom:657.120450px;}
.y242_c00001{bottom:657.299600px;}
.y50_c00001{bottom:657.477565px;}
.ya6_c00001{bottom:657.477669px;}
.y146_c00001{bottom:657.477678px;}
.y116_c00001{bottom:657.478677px;}
.y12b_c00001{bottom:657.478952px;}
.yc8_c00001{bottom:657.479064px;}
.y82_c00001{bottom:657.479451px;}
.y19e_c00001{bottom:657.479950px;}
.y105_c00001{bottom:657.480562px;}
.y329_c00001{bottom:658.109789px;}
.y384_c00001{bottom:661.528897px;}
.y4e4_c00001{bottom:664.497880px;}
.y218_c00001{bottom:665.039177px;}
.y31_c00001{bottom:665.399338px;}
.y6d_c00001{bottom:665.849843px;}
.y1fd_c00001{bottom:665.850450px;}
.y289_c00001{bottom:667.287471px;}
.y1d1_c00001{bottom:667.288404px;}
.y11_c00001{bottom:668.009437px;}
.y2ce_c00001{bottom:669.809951px;}
.y367_c00001{bottom:669.900824px;}
.y2a6_c00001{bottom:672.509865px;}
.ye3_c00001{bottom:674.220063px;}
.y4bc_c00001{bottom:674.575682px;}
.y486_c00001{bottom:674.577589px;}
.y517_c00001{bottom:674.666978px;}
.y3f9_c00001{bottom:674.667284px;}
.y470_c00001{bottom:674.668580px;}
.y271_c00001{bottom:677.099024px;}
.y3b2_c00001{bottom:677.549814px;}
.y328_c00001{bottom:678.270297px;}
.y298_c00001{bottom:679.260279px;}
.y168_c00001{bottom:682.499950px;}
.y18c_c00001{bottom:682.590675px;}
.y1ea_c00001{bottom:684.299950px;}
.y3e3_c00001{bottom:684.836076px;}
.y432_c00001{bottom:684.836382px;}
.y507_c00001{bottom:684.839585px;}
.y494_c00001{bottom:684.925771px;}
.y442_c00001{bottom:684.926076px;}
.y1fc_c00001{bottom:685.020450px;}
.y25c_c00001{bottom:686.819550px;}
.y217_c00001{bottom:686.909433px;}
.y241_c00001{bottom:687.628763px;}
.y4f_c00001{bottom:687.717453px;}
.ya5_c00001{bottom:687.717557px;}
.y145_c00001{bottom:687.717566px;}
.y115_c00001{bottom:687.718565px;}
.y12a_c00001{bottom:687.718839px;}
.yc7_c00001{bottom:687.718952px;}
.y81_c00001{bottom:687.719338px;}
.y19d_c00001{bottom:687.719838px;}
.y2cd_c00001{bottom:689.879433px;}
.y366_c00001{bottom:690.061332px;}
.y3cc_c00001{bottom:692.125650px;}
.y4e3_c00001{bottom:692.128548px;}
.y327_c00001{bottom:694.560450px;}
.y30_c00001{bottom:695.549950px;}
.y6c_c00001{bottom:696.000455px;}
.y288_c00001{bottom:697.527359px;}
.y1d0_c00001{bottom:697.528291px;}
.y10_c00001{bottom:698.249325px;}
.y411_c00001{bottom:702.296350px;}
.y423_c00001{bottom:702.297952px;}
.y4bb_c00001{bottom:702.385739px;}
.y39a_c00001{bottom:702.387646px;}
.y46f_c00001{bottom:702.388942px;}
.y4f4_c00001{bottom:702.389248px;}
.y2a5_c00001{bottom:702.660477px;}
.ye2_c00001{bottom:704.459950px;}
.y383_c00001{bottom:706.709228px;}
.y270_c00001{bottom:707.338911px;}
.y2e7_c00001{bottom:707.878065px;}
.y216_c00001{bottom:708.779688px;}
.y297_c00001{bottom:709.410891px;}
.y2cc_c00001{bottom:710.039941px;}
.y365_c00001{bottom:710.221840px;}
.y3e2_c00001{bottom:712.556438px;}
.y167_c00001{bottom:712.650562px;}
.y18b_c00001{bottom:712.830563px;}
.y1e9_c00001{bottom:714.450562px;}
.y240_c00001{bottom:717.779375px;}
.y4e_c00001{bottom:717.868065px;}
.ya4_c00001{bottom:717.868169px;}
.y144_c00001{bottom:717.868178px;}
.y114_c00001{bottom:717.869177px;}
.y129_c00001{bottom:717.869451px;}
.yc6_c00001{bottom:717.869563px;}
.y80_c00001{bottom:717.869950px;}
.y516_c00001{bottom:719.847309px;}
.y3f8_c00001{bottom:719.847614px;}
.y3cb_c00001{bottom:719.935707px;}
.y2b0_c00001{bottom:721.649960px;}
.y3b1_c00001{bottom:722.640450px;}
.y2f_c00001{bottom:725.789838px;}
.y6b_c00001{bottom:726.240342px;}
.y31c_c00001{bottom:727.139951px;}
.y287_c00001{bottom:727.677971px;}
.y1cf_c00001{bottom:727.678903px;}
.y2e6_c00001{bottom:727.947548px;}
.yf_c00001{bottom:728.399937px;}
.y4b1_c00001{bottom:730.016407px;}
.y410_c00001{bottom:730.016712px;}
.y506_c00001{bottom:730.019916px;}
.y493_c00001{bottom:730.106101px;}
.y431_c00001{bottom:730.106407px;}
.y399_c00001{bottom:730.108008px;}
.y4f3_c00001{bottom:730.109610px;}
.y2cb_c00001{bottom:730.200450px;}
.y364_c00001{bottom:730.291323px;}
.y215_c00001{bottom:730.649944px;}
.y2a4_c00001{bottom:732.900365px;}
.y382_c00001{bottom:734.429590px;}
.ye1_c00001{bottom:734.610563px;}
.y4a4_c00001{bottom:737.305981px;}
.y4e2_c00001{bottom:737.308878px;}
.y25b_c00001{bottom:737.400248px;}
.y26f_c00001{bottom:737.489523px;}
.y296_c00001{bottom:739.650779px;}
.y2af_c00001{bottom:741.810468px;}
.y166_c00001{bottom:742.890450px;}
.y18a_c00001{bottom:743.070450px;}
.y1e8_c00001{bottom:744.690450px;}
.y363_c00001{bottom:746.490450px;}
.y31b_c00001{bottom:747.209433px;}
.y4ba_c00001{bottom:747.476375px;}
.y45c_c00001{bottom:747.478282px;}
.y46e_c00001{bottom:747.479578px;}
.y515_c00001{bottom:747.567671px;}
.y3f7_c00001{bottom:747.567977px;}
.y23f_c00001{bottom:748.019262px;}
.y4d_c00001{bottom:748.107953px;}
.ya3_c00001{bottom:748.108056px;}
.y143_c00001{bottom:748.108065px;}
.y113_c00001{bottom:748.109064px;}
.y128_c00001{bottom:748.109339px;}
.yc5_c00001{bottom:748.109451px;}
.y7f_c00001{bottom:748.109838px;}
.y3b0_c00001{bottom:750.357806px;}
.y2ca_c00001{bottom:751.080119px;}
.y214_c00001{bottom:752.609684px;}
.y2e_c00001{bottom:755.940450px;}
.y6a_c00001{bottom:756.390954px;}
.y3e1_c00001{bottom:757.736769px;}
.y44f_c00001{bottom:757.737075px;}
.y286_c00001{bottom:757.917858px;}
.y1ce_c00001{bottom:757.918791px;}
.ye_c00001{bottom:758.639825px;}
.y2ae_c00001{bottom:761.970977px;}
.y165_c00001{bottom:762.060578px;}
.y2a3_c00001{bottom:763.050976px;}
.ye0_c00001{bottom:764.850450px;}
.y3ca_c00001{bottom:765.026343px;}
.y4a3_c00001{bottom:765.116037px;}
.y4e1_c00001{bottom:765.118935px;}
.y31a_c00001{bottom:767.369942px;}
.y25a_c00001{bottom:767.729411px;}
.y189_c00001{bottom:767.819450px;}
.y2e5_c00001{bottom:768.268565px;}
.y1e7_c00001{bottom:769.440450px;}
.y2c9_c00001{bottom:771.240627px;}
.y213_c00001{bottom:774.479939px;}
.y4f2_c00001{bottom:775.108950px;}
.y505_c00001{bottom:775.110552px;}
.y2d_c00001{bottom:775.110600px;}
.y4b9_c00001{bottom:775.196737px;}
.y40f_c00001{bottom:775.197043px;}
.y398_c00001{bottom:775.198644px;}
.y46d_c00001{bottom:775.199941px;}
.y23e_c00001{bottom:778.169874px;}
.y4c_c00001{bottom:778.258564px;}
.ya2_c00001{bottom:778.258668px;}
.y142_c00001{bottom:778.258677px;}
.y104_c00001{bottom:778.259064px;}
.y94_c00001{bottom:778.259176px;}
.y112_c00001{bottom:778.259676px;}
.y127_c00001{bottom:778.259951px;}
.yc4_c00001{bottom:778.260063px;}
.y381_c00001{bottom:779.520226px;}
.y2ad_c00001{bottom:782.040459px;}
.y164_c00001{bottom:783.930450px;}
.y69_c00001{bottom:786.630842px;}
.y319_c00001{bottom:787.530306px;}
.y285_c00001{bottom:788.068470px;}
.y1cd_c00001{bottom:788.069403px;}
.y2e4_c00001{bottom:788.338047px;}
.yd_c00001{bottom:788.790436px;}
.ydf_c00001{bottom:789.600450px;}
.y2c8_c00001{bottom:791.310109px;}
.y45b_c00001{bottom:792.568918px;}
.y514_c00001{bottom:792.658307px;}
.y3f6_c00001{bottom:792.658613px;}
.y3c9_c00001{bottom:792.746705px;}
.y2a2_c00001{bottom:793.290864px;}
.y3af_c00001{bottom:795.448442px;}
.y212_c00001{bottom:796.350195px;}
.y259_c00001{bottom:797.880022px;}
.y295_c00001{bottom:798.150450px;}
.y2ac_c00001{bottom:802.200968px;}
.y4d5_c00001{bottom:802.827405px;}
.y3e0_c00001{bottom:802.917099px;}
.y40e_c00001{bottom:802.917405px;}
.y4f1_c00001{bottom:802.919007px;}
.y68_c00001{bottom:806.700324px;}
.y380_c00001{bottom:807.240588px;}
.y318_c00001{bottom:807.599789px;}
.y23d_c00001{bottom:808.409762px;}
.y4b_c00001{bottom:808.498452px;}
.ya1_c00001{bottom:808.498556px;}
.y141_c00001{bottom:808.498565px;}
.y103_c00001{bottom:808.498952px;}
.y93_c00001{bottom:808.499064px;}
.y111_c00001{bottom:808.499564px;}
.y126_c00001{bottom:808.499838px;}
.yc3_c00001{bottom:808.499950px;}
.y4e0_c00001{bottom:810.118275px;}
.y2c_c00001{bottom:810.209055px;}
.y2c7_c00001{bottom:811.470618px;}
.y163_c00001{bottom:816.780171px;}
.y211_c00001{bottom:818.220450px;}
.y284_c00001{bottom:818.308358px;}
.y1cc_c00001{bottom:818.309290px;}
.y1e6_c00001{bottom:818.580581px;}
.y441_c00001{bottom:820.287679px;}
.y397_c00001{bottom:820.289281px;}
.y46c_c00001{bottom:820.290577px;}
.y504_c00001{bottom:820.290882px;}
.y513_c00001{bottom:820.378669px;}
.y3f5_c00001{bottom:820.378975px;}
.yc_c00001{bottom:821.190441px;}
.y317_c00001{bottom:827.760297px;}
.y258_c00001{bottom:828.119910px;}
.y291_c00001{bottom:828.659064px;}
.y2ab_c00001{bottom:830.280450px;}
.y4d4_c00001{bottom:830.547767px;}
.y44e_c00001{bottom:830.548073px;}
.y2a1_c00001{bottom:831.450450px;}
.y2c6_c00001{bottom:831.540101px;}
.y3c8_c00001{bottom:837.837341px;}
.y4a2_c00001{bottom:837.927036px;}
.y4df_c00001{bottom:837.928332px;}
.y23c_c00001{bottom:838.560373px;}
.y4a_c00001{bottom:838.649064px;}
.ya0_c00001{bottom:838.649168px;}
.y140_c00001{bottom:838.649177px;}
.y102_c00001{bottom:838.649564px;}
.y67_c00001{bottom:838.649676px;}
.yde_c00001{bottom:838.650176px;}
.yc2_c00001{bottom:838.650562px;}
.y3ae_c00001{bottom:840.718467px;}
.y210_c00001{bottom:840.720450px;}
.y2b_c00001{bottom:842.609060px;}
.y316_c00001{bottom:844.050450px;}
.y162_c00001{bottom:847.020059px;}
.y492_c00001{bottom:848.007736px;}
.y40d_c00001{bottom:848.008041px;}
.y3df_c00001{bottom:848.097430px;}
.y440_c00001{bottom:848.097736px;}
.y396_c00001{bottom:848.099337px;}
.y46b_c00001{bottom:848.100633px;}
.y503_c00001{bottom:848.100939px;}
.y26e_c00001{bottom:848.369694px;}
.y283_c00001{bottom:848.458970px;}
.y1cb_c00001{bottom:848.459902px;}
.y2e3_c00001{bottom:848.728546px;}
.y1e5_c00001{bottom:848.731192px;}
.y2c5_c00001{bottom:851.609583px;}
.y37f_c00001{bottom:852.420919px;}
.yb_c00001{bottom:853.590445px;}
.y290_c00001{bottom:858.809676px;}
.y3f4_c00001{bottom:865.469611px;}
.y3c7_c00001{bottom:865.557704px;}
.y4de_c00001{bottom:865.559000px;}
.y49_c00001{bottom:868.888951px;}
.y9f_c00001{bottom:868.889055px;}
.y13f_c00001{bottom:868.889064px;}
.y101_c00001{bottom:868.889451px;}
.y66_c00001{bottom:868.889563px;}
.ydd_c00001{bottom:868.890063px;}
.y2c4_c00001{bottom:871.770092px;}
.y2a_c00001{bottom:872.848947px;}
.y4d3_c00001{bottom:875.728098px;}
.y491_c00001{bottom:875.817792px;}
.y40c_c00001{bottom:875.818098px;}
.y161_c00001{bottom:877.170670px;}
.y257_c00001{bottom:878.609582px;}
.y26d_c00001{bottom:878.698857px;}
.y1e4_c00001{bottom:878.971080px;}
.y23b_c00001{bottom:879.150968px;}
.y37e_c00001{bottom:880.141281px;}
.y3ad_c00001{bottom:885.898798px;}
.ya_c00001{bottom:885.989689px;}
.y28f_c00001{bottom:889.049563px;}
.y2c3_c00001{bottom:891.930600px;}
.y3de_c00001{bottom:893.188066px;}
.y3f3_c00001{bottom:893.189973px;}
.y46a_c00001{bottom:893.191269px;}
.y502_c00001{bottom:893.191575px;}
.y3c6_c00001{bottom:893.278066px;}
.y512_c00001{bottom:893.279362px;}
.y395_c00001{bottom:893.279668px;}
.y48_c00001{bottom:899.039563px;}
.y9e_c00001{bottom:899.039667px;}
.y13e_c00001{bottom:899.039676px;}
.y100_c00001{bottom:899.040063px;}
.y65_c00001{bottom:899.040175px;}
.y1e3_c00001{bottom:899.040562px;}
.ydc_c00001{bottom:899.040675px;}
.y23a_c00001{bottom:899.220450px;}
.y29_c00001{bottom:902.999559px;}
.y490_c00001{bottom:903.448460px;}
.y160_c00001{bottom:907.410558px;}
.y256_c00001{bottom:908.849469px;}
.y28e_c00001{bottom:909.119046px;}
.y4dd_c00001{bottom:910.829025px;}
.y239_c00001{bottom:918.299589px;}
.y9_c00001{bottom:918.300418px;}
.y4b0_c00001{bottom:920.908428px;}
.y40b_c00001{bottom:920.908734px;}
.y394_c00001{bottom:920.910336px;}
.y3dd_c00001{bottom:920.998123px;}
.y430_c00001{bottom:920.998428px;}
.y422_c00001{bottom:921.000030px;}
.y469_c00001{bottom:921.001326px;}
.y501_c00001{bottom:921.001632px;}
.y2c2_c00001{bottom:922.080450px;}
.y37d_c00001{bottom:925.231917px;}
.y47_c00001{bottom:929.279451px;}
.y9d_c00001{bottom:929.279555px;}
.y13d_c00001{bottom:929.279563px;}
.yff_c00001{bottom:929.279951px;}
.y64_c00001{bottom:929.280063px;}
.ydb_c00001{bottom:929.280563px;}
.y3ac_c00001{bottom:930.989434px;}
.y238_c00001{bottom:932.518922px;}
.y28_c00001{bottom:933.239447px;}
.y15f_c00001{bottom:937.561170px;}
.y3c5_c00001{bottom:938.368702px;}
.y511_c00001{bottom:938.369998px;}
.y47f_c00001{bottom:938.370304px;}
.y4dc_c00001{bottom:938.459693px;}
.y255_c00001{bottom:939.089357px;}
.y4af_c00001{bottom:948.539096px;}
.y3dc_c00001{bottom:948.628791px;}
.y40a_c00001{bottom:948.629096px;}
.y2e2_c00001{bottom:949.440063px;}
.y8_c00001{bottom:950.700423px;}
.y37c_c00001{bottom:953.041974px;}
.y237_c00001{bottom:954.389177px;}
.y282_c00001{bottom:959.430167px;}
.y46_c00001{bottom:959.519339px;}
.y9c_c00001{bottom:959.519442px;}
.y13c_c00001{bottom:959.519451px;}
.yfe_c00001{bottom:959.519838px;}
.y63_c00001{bottom:959.519951px;}
.y524_c00001{bottom:961.590450px;}
.y27_c00001{bottom:963.390059px;}
.y421_c00001{bottom:965.999370px;}
.y468_c00001{bottom:966.000666px;}
.y3f2_c00001{bottom:966.000972px;}
.y3c4_c00001{bottom:966.089064px;}
.y4db_c00001{bottom:966.090360px;}
.y393_c00001{bottom:966.090666px;}
.y15e_c00001{bottom:967.801057px;}
.y254_c00001{bottom:969.239969px;}
.y2e1_c00001{bottom:969.509546px;}
.y3ab_c00001{bottom:976.169764px;}
.y236_c00001{bottom:976.259433px;}
.y48f_c00001{bottom:976.259459px;}
.y523_c00001{bottom:979.860252px;}
.y7_c00001{bottom:983.100427px;}
.y45_c00001{bottom:989.669950px;}
.y9b_c00001{bottom:989.670054px;}
.y13b_c00001{bottom:989.670063px;}
.y62_c00001{bottom:989.670562px;}
.y37b_c00001{bottom:989.941593px;}
.y26_c00001{bottom:993.629946px;}
.y3db_c00001{bottom:993.719427px;}
.y409_c00001{bottom:993.809427px;}
.y467_c00001{bottom:993.810723px;}
.y3f1_c00001{bottom:993.811028px;}
.y15d_c00001{bottom:997.951669px;}
.y235_c00001{bottom:998.129688px;}
.y253_c00001{bottom:999.479856px;}
.y522_c00001{bottom:1000.020761px;}
.y2e0_c00001{bottom:1009.830563px;}
.y3c3_c00001{bottom:1011.179701px;}
.y4da_c00001{bottom:1011.180997px;}
.y392_c00001{bottom:1011.270997px;}
.y6_c00001{bottom:1015.500432px;}
.y44_c00001{bottom:1019.909838px;}
.y61_c00001{bottom:1019.909942px;}
.yda_c00001{bottom:1019.909951px;}
.y234_c00001{bottom:1019.999944px;}
.y521_c00001{bottom:1020.090243px;}
.y3aa_c00001{bottom:1021.439789px;}
.y3da_c00001{bottom:1021.529483px;}
.y408_c00001{bottom:1021.529789px;}
.y25_c00001{bottom:1026.029951px;}
.y37a_c00001{bottom:1026.841212px;}
.y15c_c00001{bottom:1028.191557px;}
.y252_c00001{bottom:1029.630468px;}
.y2df_c00001{bottom:1029.900045px;}
.y4b8_c00001{bottom:1038.989452px;}
.y420_c00001{bottom:1038.989757px;}
.y3c2_c00001{bottom:1039.079452px;}
.y466_c00001{bottom:1039.080748px;}
.y391_c00001{bottom:1039.081053px;}
.y233_c00001{bottom:1041.959684px;}
.y5_c00001{bottom:1047.900437px;}
.y43_c00001{bottom:1050.060553px;}
.yd9_c00001{bottom:1050.060563px;}
.y24_c00001{bottom:1056.180563px;}
.y4a1_c00001{bottom:1056.449725px;}
.y15b_c00001{bottom:1058.342169px;}
.y232_c00001{bottom:1063.829939px;}
.y379_c00001{bottom:1063.830525px;}
.y3a9_c00001{bottom:1066.620120px;}
.y407_c00001{bottom:1066.620425px;}
.y465_c00001{bottom:1066.709814px;}
.y42f_c00001{bottom:1066.710120px;}
.y2de_c00001{bottom:1070.221062px;}
.y251_c00001{bottom:1080.211166px;}
.y4_c00001{bottom:1080.300441px;}
.y390_c00001{bottom:1084.080393px;}
.y3c1_c00001{bottom:1084.170088px;}
.y231_c00001{bottom:1085.700195px;}
.y23_c00001{bottom:1086.420450px;}
.y15a_c00001{bottom:1088.582056px;}
.y2dd_c00001{bottom:1090.290545px;}
.y378_c00001{bottom:1100.640450px;}
.y230_c00001{bottom:1107.570450px;}
.y22_c00001{bottom:1107.750450px;}
.y159_c00001{bottom:1108.651539px;}
.y3_c00001{bottom:1110.451053px;}
.y3a8_c00001{bottom:1111.800450px;}
.y38f_c00001{bottom:1111.890450px;}
.y377_c00001{bottom:1119.360450px;}
.y376_c00001{bottom:1157.611137px;}
.y375_c00001{bottom:1194.600450px;}
.h48_c00001{height:41.628786px;}
.h49_c00001{height:41.742464px;}
.h47_c00001{height:44.567466px;}
.h5_c00001{height:47.078877px;}
.h53_c00001{height:54.098549px;}
.h46_c00001{height:54.925625px;}
.h51_c00001{height:57.279008px;}
.h4e_c00001{height:57.435423px;}
.h50_c00001{height:57.453531px;}
.h4f_c00001{height:57.460037px;}
.h2_c00001{height:62.600889px;}
.h1_c00001{height:62.771836px;}
.h52_c00001{height:62.772628px;}
.h36_c00001{height:62.781376px;}
.hc_c00001{height:63.216299px;}
.h20_c00001{height:68.589413px;}
.h39_c00001{height:73.666680px;}
.h2d_c00001{height:73.668822px;}
.h24_c00001{height:73.670370px;}
.h1f_c00001{height:73.670784px;}
.h15_c00001{height:73.670820px;}
.h41_c00001{height:73.671918px;}
.h3_c00001{height:73.672428px;}
.h27_c00001{height:73.672674px;}
.h1c_c00001{height:73.672782px;}
.h43_c00001{height:73.672968px;}
.h26_c00001{height:73.673232px;}
.h11_c00001{height:73.673706px;}
.h4a_c00001{height:73.674108px;}
.h1a_c00001{height:73.674366px;}
.h31_c00001{height:73.675230px;}
.h2f_c00001{height:73.675380px;}
.h2c_c00001{height:73.677120px;}
.h37_c00001{height:73.678326px;}
.h1b_c00001{height:73.678668px;}
.h18_c00001{height:73.678776px;}
.h2e_c00001{height:73.680216px;}
.h17_c00001{height:73.680252px;}
.h4_c00001{height:73.682682px;}
.h2a_c00001{height:73.682814px;}
.h23_c00001{height:73.690242px;}
.h1d_c00001{height:73.782500px;}
.h4c_c00001{height:73.783640px;}
.h1e_c00001{height:73.784462px;}
.hf_c00001{height:73.784498px;}
.h38_c00001{height:73.786460px;}
.h29_c00001{height:73.786496px;}
.h9_c00001{height:73.787858px;}
.h8_c00001{height:73.788908px;}
.h40_c00001{height:73.791050px;}
.hd_c00001{height:74.026680px;}
.ha_c00001{height:74.028372px;}
.h33_c00001{height:74.029902px;}
.h14_c00001{height:74.030784px;}
.h10_c00001{height:74.031882px;}
.h45_c00001{height:74.032224px;}
.h3e_c00001{height:74.032782px;}
.he_c00001{height:74.033382px;}
.h30_c00001{height:74.033916px;}
.h32_c00001{height:74.034222px;}
.h28_c00001{height:74.034330px;}
.h6_c00001{height:74.034366px;}
.h25_c00001{height:74.034930px;}
.h12_c00001{height:74.036928px;}
.h22_c00001{height:74.037228px;}
.h3a_c00001{height:74.037912px;}
.h44_c00001{height:74.038218px;}
.h13_c00001{height:74.038668px;}
.h7_c00001{height:74.039676px;}
.h3f_c00001{height:74.040666px;}
.h35_c00001{height:74.041908px;}
.hb_c00001{height:74.042322px;}
.h19_c00001{height:74.042400px;}
.h42_c00001{height:74.042964px;}
.h34_c00001{height:74.046768px;}
.h4d_c00001{height:74.141690px;}
.h3c_c00001{height:74.142050px;}
.h2b_c00001{height:74.147594px;}
.h16_c00001{height:74.148158px;}
.h21_c00001{height:74.150006px;}
.h3d_c00001{height:74.150606px;}
.h3b_c00001{height:74.154344px;}
.h4b_c00001{height:74.155100px;}
.h0_c00001{height:1263.000000px;}
.w0_c00001{width:892.500000px;}
.x0_c00001{left:0.000000px;}
.x1b_c00001{left:66.330000px;}
.x2_c00001{left:82.710059px;}
.x4_c00001{left:93.510585px;}
.x3_c00001{left:114.030468px;}
.x5_c00001{left:135.270572px;}
.xf_c00001{left:357.210000px;}
.x13_c00001{left:377.370000px;}
.x10_c00001{left:397.980301px;}
.xe_c00001{left:400.320720px;}
.x1_c00001{left:431.730000px;}
.x15_c00001{left:446.400099px;}
.x7_c00001{left:532.350000px;}
.x17_c00001{left:544.860000px;}
.x9_c00001{left:547.560000px;}
.x16_c00001{left:553.680000px;}
.x6_c00001{left:579.420000px;}
.x18_c00001{left:583.470000px;}
.x1a_c00001{left:594.000000px;}
.x19_c00001{left:609.570000px;}
.x8_c00001{left:613.620000px;}
.xc_c00001{left:619.920000px;}
.xa_c00001{left:629.550000px;}
.x14_c00001{left:643.860000px;}
.xb_c00001{left:658.890000px;}
.x11_c00001{left:673.740000px;}
.x12_c00001{left:690.840000px;}
.xd_c00001{left:700.200000px;}
@media print{
.v3_c00001{vertical-align:-46.720000pt;}
.v4_c00001{vertical-align:-36.160533pt;}
.v2_c00001{vertical-align:-28.480000pt;}
.v0_c00001{vertical-align:0.000000pt;}
.v1_c00001{vertical-align:28.483237pt;}
.ls7a_c00001{letter-spacing:-0.529624pt;}
.ls54_c00001{letter-spacing:-0.461285pt;}
.ls82_c00001{letter-spacing:-0.381557pt;}
.ls6f_c00001{letter-spacing:-0.313218pt;}
.ls15_c00001{letter-spacing:-0.297999pt;}
.ls77_c00001{letter-spacing:-0.222100pt;}
.ls5a_c00001{letter-spacing:-0.142372pt;}
.ls71_c00001{letter-spacing:-0.130982pt;}
.ls14_c00001{letter-spacing:-0.130704pt;}
.ls35_c00001{letter-spacing:-0.124480pt;}
.ls63_c00001{letter-spacing:-0.119592pt;}
.ls66_c00001{letter-spacing:-0.108203pt;}
.ls36_c00001{letter-spacing:-0.105808pt;}
.ls84_c00001{letter-spacing:-0.102508pt;}
.ls34_c00001{letter-spacing:-0.101295pt;}
.ls32_c00001{letter-spacing:-0.093360pt;}
.ls6a_c00001{letter-spacing:-0.091118pt;}
.ls33_c00001{letter-spacing:-0.087789pt;}
.ls1d_c00001{letter-spacing:-0.087136pt;}
.ls37_c00001{letter-spacing:-0.080912pt;}
.ls47_c00001{letter-spacing:-0.079728pt;}
.ls1e_c00001{letter-spacing:-0.074688pt;}
.ls6d_c00001{letter-spacing:-0.074033pt;}
.ls13_c00001{letter-spacing:-0.068464pt;}
.ls6b_c00001{letter-spacing:-0.068339pt;}
.ls64_c00001{letter-spacing:-0.062644pt;}
.ls23_c00001{letter-spacing:-0.062240pt;}
.ls5b_c00001{letter-spacing:-0.056949pt;}
.ls2_c00001{letter-spacing:-0.056016pt;}
.ls61_c00001{letter-spacing:-0.051254pt;}
.ls12_c00001{letter-spacing:-0.049792pt;}
.ls52_c00001{letter-spacing:-0.045559pt;}
.ls5_c00001{letter-spacing:-0.043568pt;}
.ls50_c00001{letter-spacing:-0.039864pt;}
.ls9_c00001{letter-spacing:-0.037344pt;}
.ls2a_c00001{letter-spacing:-0.036379pt;}
.ls46_c00001{letter-spacing:-0.034169pt;}
.ls11_c00001{letter-spacing:-0.031120pt;}
.ls4b_c00001{letter-spacing:-0.028474pt;}
.ls4_c00001{letter-spacing:-0.024896pt;}
.ls4a_c00001{letter-spacing:-0.022780pt;}
.lsb_c00001{letter-spacing:-0.018672pt;}
.ls53_c00001{letter-spacing:-0.017085pt;}
.ls2f_c00001{letter-spacing:-0.013506pt;}
.ls8_c00001{letter-spacing:-0.012448pt;}
.ls49_c00001{letter-spacing:-0.011390pt;}
.ls7_c00001{letter-spacing:-0.006224pt;}
.ls48_c00001{letter-spacing:-0.005695pt;}
.ls3_c00001{letter-spacing:0.000000pt;}
.ls3c_c00001{letter-spacing:0.005695pt;}
.lsd_c00001{letter-spacing:0.006224pt;}
.ls25_c00001{letter-spacing:0.006753pt;}
.ls3f_c00001{letter-spacing:0.011390pt;}
.lsc_c00001{letter-spacing:0.012448pt;}
.ls3e_c00001{letter-spacing:0.017085pt;}
.ls1_c00001{letter-spacing:0.018672pt;}
.ls0_c00001{letter-spacing:0.020694pt;}
.ls40_c00001{letter-spacing:0.022780pt;}
.lse_c00001{letter-spacing:0.024896pt;}
.ls44_c00001{letter-spacing:0.028474pt;}
.ls21_c00001{letter-spacing:0.031120pt;}
.ls45_c00001{letter-spacing:0.034169pt;}
.ls20_c00001{letter-spacing:0.037344pt;}
.ls43_c00001{letter-spacing:0.039864pt;}
.ls27_c00001{letter-spacing:0.043568pt;}
.ls4e_c00001{letter-spacing:0.045559pt;}
.ls42_c00001{letter-spacing:0.051254pt;}
.ls29_c00001{letter-spacing:0.056016pt;}
.ls59_c00001{letter-spacing:0.056949pt;}
.ls1c_c00001{letter-spacing:0.062240pt;}
.ls41_c00001{letter-spacing:0.062644pt;}
.ls4d_c00001{letter-spacing:0.068339pt;}
.ls5c_c00001{letter-spacing:0.074033pt;}
.ls10_c00001{letter-spacing:0.074128pt;}
.ls17_c00001{letter-spacing:0.074688pt;}
.ls3d_c00001{letter-spacing:0.079728pt;}
.ls6c_c00001{letter-spacing:0.085423pt;}
.ls1b_c00001{letter-spacing:0.087136pt;}
.ls62_c00001{letter-spacing:0.091118pt;}
.ls4c_c00001{letter-spacing:0.096813pt;}
.ls68_c00001{letter-spacing:0.102508pt;}
.lsf_c00001{letter-spacing:0.105808pt;}
.ls58_c00001{letter-spacing:0.108203pt;}
.ls5f_c00001{letter-spacing:0.113898pt;}
.ls4f_c00001{letter-spacing:0.119592pt;}
.ls22_c00001{letter-spacing:0.124480pt;}
.ls78_c00001{letter-spacing:0.125287pt;}
.ls16_c00001{letter-spacing:0.130704pt;}
.ls57_c00001{letter-spacing:0.130982pt;}
.ls7d_c00001{letter-spacing:0.136677pt;}
.ls7c_c00001{letter-spacing:0.148067pt;}
.ls79_c00001{letter-spacing:0.153762pt;}
.ls69_c00001{letter-spacing:0.170846pt;}
.ls31_c00001{letter-spacing:0.174272pt;}
.ls60_c00001{letter-spacing:0.176541pt;}
.ls6e_c00001{letter-spacing:0.182236pt;}
.ls24_c00001{letter-spacing:0.192944pt;}
.ls56_c00001{letter-spacing:0.199321pt;}
.ls55_c00001{letter-spacing:0.205016pt;}
.ls51_c00001{letter-spacing:0.216405pt;}
.ls7e_c00001{letter-spacing:0.227795pt;}
.ls80_c00001{letter-spacing:0.233490pt;}
.ls2b_c00001{letter-spacing:0.236512pt;}
.ls7b_c00001{letter-spacing:0.239185pt;}
.ls1a_c00001{letter-spacing:0.248960pt;}
.ls83_c00001{letter-spacing:0.250575pt;}
.ls73_c00001{letter-spacing:0.256270pt;}
.ls28_c00001{letter-spacing:0.261408pt;}
.ls7f_c00001{letter-spacing:0.261964pt;}
.ls5e_c00001{letter-spacing:0.273354pt;}
.ls67_c00001{letter-spacing:0.279049pt;}
.ls76_c00001{letter-spacing:0.296134pt;}
.ls2d_c00001{letter-spacing:0.298752pt;}
.ls26_c00001{letter-spacing:0.299344pt;}
.ls70_c00001{letter-spacing:0.301829pt;}
.lsa_c00001{letter-spacing:0.304976pt;}
.ls75_c00001{letter-spacing:0.313218pt;}
.ls72_c00001{letter-spacing:0.318913pt;}
.ls65_c00001{letter-spacing:0.324608pt;}
.ls81_c00001{letter-spacing:0.330303pt;}
.ls5d_c00001{letter-spacing:0.353083pt;}
.ls6_c00001{letter-spacing:0.479248pt;}
.ls1f_c00001{letter-spacing:0.628624pt;}
.ls74_c00001{letter-spacing:0.649216pt;}
.ls3b_c00001{letter-spacing:1.257248pt;}
.ls19_c00001{letter-spacing:1.574672pt;}
.ls2e_c00001{letter-spacing:2.856816pt;}
.ls30_c00001{letter-spacing:2.869264pt;}
.ls3a_c00001{letter-spacing:4.138960pt;}
.ls2c_c00001{letter-spacing:10.702960pt;}
.ls18_c00001{letter-spacing:16.618080pt;}
.ls39_c00001{letter-spacing:1037.417280pt;}
.ls38_c00001{letter-spacing:1061.097280pt;}
.ws241_c00001{word-spacing:-56.948800pt;}
.wsc6_c00001{word-spacing:-17.427200pt;}
.ws10a_c00001{word-spacing:-17.389856pt;}
.ws126_c00001{word-spacing:-17.377408pt;}
.ws31_c00001{word-spacing:-17.364960pt;}
.ws1a5_c00001{word-spacing:-17.327616pt;}
.wsdf_c00001{word-spacing:-17.302720pt;}
.ws219_c00001{word-spacing:-17.284048pt;}
.wsf1_c00001{word-spacing:-17.277824pt;}
.ws138_c00001{word-spacing:-17.246704pt;}
.ws75_c00001{word-spacing:-17.228032pt;}
.ws32_c00001{word-spacing:-17.215584pt;}
.ws2cb_c00001{word-spacing:-16.162069pt;}
.ws243_c00001{word-spacing:-15.951359pt;}
.ws2cf_c00001{word-spacing:-15.928579pt;}
.ws29f_c00001{word-spacing:-15.900105pt;}
.ws2c7_c00001{word-spacing:-15.894410pt;}
.ws271_c00001{word-spacing:-15.888715pt;}
.ws2a0_c00001{word-spacing:-15.883020pt;}
.ws286_c00001{word-spacing:-15.871631pt;}
.ws272_c00001{word-spacing:-15.860241pt;}
.ws294_c00001{word-spacing:-15.843156pt;}
.ws21c_c00001{word-spacing:-15.837461pt;}
.ws2a1_c00001{word-spacing:-15.826072pt;}
.ws266_c00001{word-spacing:-15.820377pt;}
.ws290_c00001{word-spacing:-15.803292pt;}
.ws0_c00001{word-spacing:-11.526781pt;}
.ws15_c00001{word-spacing:-11.208087pt;}
.ws2b6_c00001{word-spacing:-1.110502pt;}
.ws280_c00001{word-spacing:-0.814368pt;}
.ws2b4_c00001{word-spacing:-0.780199pt;}
.ws2b8_c00001{word-spacing:-0.774504pt;}
.ws2ae_c00001{word-spacing:-0.763114pt;}
.ws2ba_c00001{word-spacing:-0.757419pt;}
.ws2ca_c00001{word-spacing:-0.723250pt;}
.ws2d0_c00001{word-spacing:-0.711860pt;}
.ws26d_c00001{word-spacing:-0.666301pt;}
.ws26f_c00001{word-spacing:-0.660606pt;}
.ws28c_c00001{word-spacing:-0.637827pt;}
.ws2c3_c00001{word-spacing:-0.609352pt;}
.ws2c6_c00001{word-spacing:-0.597962pt;}
.ws274_c00001{word-spacing:-0.592268pt;}
.ws2bd_c00001{word-spacing:-0.586573pt;}
.ws2c5_c00001{word-spacing:-0.580878pt;}
.ws2aa_c00001{word-spacing:-0.575183pt;}
.ws292_c00001{word-spacing:-0.569488pt;}
.ws2a4_c00001{word-spacing:-0.563793pt;}
.ws2d6_c00001{word-spacing:-0.558098pt;}
.ws2d3_c00001{word-spacing:-0.552403pt;}
.ws2a2_c00001{word-spacing:-0.546708pt;}
.ws2cc_c00001{word-spacing:-0.541014pt;}
.ws2d1_c00001{word-spacing:-0.535319pt;}
.ws270_c00001{word-spacing:-0.529624pt;}
.ws25e_c00001{word-spacing:-0.523929pt;}
.ws27f_c00001{word-spacing:-0.518234pt;}
.ws28e_c00001{word-spacing:-0.512539pt;}
.ws267_c00001{word-spacing:-0.506844pt;}
.ws22b_c00001{word-spacing:-0.501149pt;}
.ws26a_c00001{word-spacing:-0.495455pt;}
.ws235_c00001{word-spacing:-0.489760pt;}
.ws26b_c00001{word-spacing:-0.484065pt;}
.ws221_c00001{word-spacing:-0.478370pt;}
.ws24c_c00001{word-spacing:-0.472675pt;}
.ws263_c00001{word-spacing:-0.466980pt;}
.ws26e_c00001{word-spacing:-0.461285pt;}
.ws279_c00001{word-spacing:-0.455590pt;}
.ws240_c00001{word-spacing:-0.449896pt;}
.ws250_c00001{word-spacing:-0.444201pt;}
.ws257_c00001{word-spacing:-0.438506pt;}
.ws2bb_c00001{word-spacing:-0.432811pt;}
.ws2a6_c00001{word-spacing:-0.427116pt;}
.ws298_c00001{word-spacing:-0.421421pt;}
.ws24b_c00001{word-spacing:-0.415726pt;}
.ws2be_c00001{word-spacing:-0.410031pt;}
.ws27c_c00001{word-spacing:-0.404336pt;}
.ws2b5_c00001{word-spacing:-0.398642pt;}
.ws2d5_c00001{word-spacing:-0.392947pt;}
.ws2a7_c00001{word-spacing:-0.387252pt;}
.ws2c1_c00001{word-spacing:-0.381557pt;}
.ws2c9_c00001{word-spacing:-0.370167pt;}
.ws24a_c00001{word-spacing:-0.358777pt;}
.ws1bc_c00001{word-spacing:-0.354768pt;}
.ws297_c00001{word-spacing:-0.347388pt;}
.ws218_c00001{word-spacing:-0.342320pt;}
.ws2af_c00001{word-spacing:-0.324608pt;}
.wse7_c00001{word-spacing:-0.311200pt;}
.ws215_c00001{word-spacing:-0.298752pt;}
.ws2d4_c00001{word-spacing:-0.296134pt;}
.ws2c8_c00001{word-spacing:-0.273354pt;}
.ws284_c00001{word-spacing:-0.261964pt;}
.ws28b_c00001{word-spacing:-0.256270pt;}
.ws2b9_c00001{word-spacing:-0.250575pt;}
.ws299_c00001{word-spacing:-0.244880pt;}
.ws283_c00001{word-spacing:-0.239185pt;}
.ws295_c00001{word-spacing:-0.233490pt;}
.ws2bf_c00001{word-spacing:-0.227795pt;}
.ws20e_c00001{word-spacing:-0.224064pt;}
.ws2a8_c00001{word-spacing:-0.222100pt;}
.ws281_c00001{word-spacing:-0.216405pt;}
.ws268_c00001{word-spacing:-0.210711pt;}
.ws276_c00001{word-spacing:-0.205016pt;}
.ws2ab_c00001{word-spacing:-0.199321pt;}
.ws233_c00001{word-spacing:-0.193626pt;}
.ws27d_c00001{word-spacing:-0.187931pt;}
.ws22f_c00001{word-spacing:-0.182236pt;}
.ws269_c00001{word-spacing:-0.176541pt;}
.ws232_c00001{word-spacing:-0.170846pt;}
.ws222_c00001{word-spacing:-0.165152pt;}
.ws247_c00001{word-spacing:-0.159457pt;}
.ws23f_c00001{word-spacing:-0.153762pt;}
.ws21e_c00001{word-spacing:-0.148067pt;}
.ws34_c00001{word-spacing:-0.143152pt;}
.ws234_c00001{word-spacing:-0.142372pt;}
.ws220_c00001{word-spacing:-0.136677pt;}
.ws23e_c00001{word-spacing:-0.130982pt;}
.ws27e_c00001{word-spacing:-0.125287pt;}
.ws26c_c00001{word-spacing:-0.119592pt;}
.ws236_c00001{word-spacing:-0.113898pt;}
.ws24f_c00001{word-spacing:-0.108203pt;}
.ws2a5_c00001{word-spacing:-0.102508pt;}
.ws28d_c00001{word-spacing:-0.096813pt;}
.ws289_c00001{word-spacing:-0.091118pt;}
.ws27a_c00001{word-spacing:-0.085423pt;}
.ws296_c00001{word-spacing:-0.079728pt;}
.ws29e_c00001{word-spacing:-0.074033pt;}
.ws2c4_c00001{word-spacing:-0.068339pt;}
.ws21f_c00001{word-spacing:-0.062644pt;}
.ws242_c00001{word-spacing:-0.056949pt;}
.ws29a_c00001{word-spacing:-0.051254pt;}
.ws20f_c00001{word-spacing:-0.049792pt;}
.wsec_c00001{word-spacing:-0.043568pt;}
.ws2d7_c00001{word-spacing:-0.039864pt;}
.ws217_c00001{word-spacing:-0.037344pt;}
.ws2d2_c00001{word-spacing:-0.034169pt;}
.ws9_c00001{word-spacing:-0.031120pt;}
.ws1a_c00001{word-spacing:-0.024896pt;}
.ws293_c00001{word-spacing:-0.022780pt;}
.ws64_c00001{word-spacing:-0.018672pt;}
.wsa_c00001{word-spacing:-0.012448pt;}
.ws5_c00001{word-spacing:-0.006224pt;}
.ws1_c00001{word-spacing:0.000000pt;}
.ws14_c00001{word-spacing:0.006224pt;}
.ws19_c00001{word-spacing:0.012448pt;}
.ws18_c00001{word-spacing:0.018672pt;}
.ws2c0_c00001{word-spacing:0.022780pt;}
.ws4_c00001{word-spacing:0.024896pt;}
.ws8_c00001{word-spacing:0.031120pt;}
.ws1c_c00001{word-spacing:0.037344pt;}
.ws5c_c00001{word-spacing:0.043568pt;}
.ws15f_c00001{word-spacing:0.049792pt;}
.ws2cd_c00001{word-spacing:0.051254pt;}
.ws216_c00001{word-spacing:0.062240pt;}
.ws2c2_c00001{word-spacing:0.062644pt;}
.ws275_c00001{word-spacing:0.068339pt;}
.ws214_c00001{word-spacing:0.068464pt;}
.ws2ad_c00001{word-spacing:0.074033pt;}
.ws2a3_c00001{word-spacing:0.079728pt;}
.ws291_c00001{word-spacing:0.085423pt;}
.ws2b0_c00001{word-spacing:0.091118pt;}
.ws282_c00001{word-spacing:0.096813pt;}
.wse6_c00001{word-spacing:0.108048pt;}
.ws29b_c00001{word-spacing:0.108203pt;}
.ws29d_c00001{word-spacing:0.113898pt;}
.ws28f_c00001{word-spacing:0.119592pt;}
.ws287_c00001{word-spacing:0.125287pt;}
.ws278_c00001{word-spacing:0.130982pt;}
.ws29c_c00001{word-spacing:0.136677pt;}
.ws2b2_c00001{word-spacing:0.142372pt;}
.ws285_c00001{word-spacing:0.148067pt;}
.ws22c_c00001{word-spacing:0.153762pt;}
.ws225_c00001{word-spacing:0.159457pt;}
.ws27b_c00001{word-spacing:0.165152pt;}
.ws253_c00001{word-spacing:0.170846pt;}
.ws23b_c00001{word-spacing:0.176541pt;}
.ws254_c00001{word-spacing:0.182236pt;}
.ws28a_c00001{word-spacing:0.187931pt;}
.ws176_c00001{word-spacing:0.189084pt;}
.ws288_c00001{word-spacing:0.193626pt;}
.ws21b_c00001{word-spacing:0.199168pt;}
.ws2ac_c00001{word-spacing:0.199321pt;}
.ws2a9_c00001{word-spacing:0.205016pt;}
.ws21d_c00001{word-spacing:0.210711pt;}
.ws1be_c00001{word-spacing:0.216096pt;}
.ws273_c00001{word-spacing:0.216405pt;}
.ws2ce_c00001{word-spacing:0.239185pt;}
.ws87_c00001{word-spacing:0.242736pt;}
.ws210_c00001{word-spacing:0.248960pt;}
.ws2b7_c00001{word-spacing:0.256270pt;}
.ws2b3_c00001{word-spacing:0.267659pt;}
.ws1d4_c00001{word-spacing:0.286304pt;}
.ws164_c00001{word-spacing:0.292528pt;}
.ws19d_c00001{word-spacing:0.298752pt;}
.ws18f_c00001{word-spacing:0.304976pt;}
.ws2b1_c00001{word-spacing:0.307524pt;}
.ws1b_c00001{word-spacing:0.311200pt;}
.wsb_c00001{word-spacing:0.317424pt;}
.ws277_c00001{word-spacing:0.318913pt;}
.ws6c_c00001{word-spacing:0.323648pt;}
.ws2_c00001{word-spacing:0.329872pt;}
.ws1bd_c00001{word-spacing:0.330898pt;}
.wsa2_c00001{word-spacing:0.336096pt;}
.ws2c_c00001{word-spacing:0.342320pt;}
.ws3_c00001{word-spacing:0.348544pt;}
.wsb2_c00001{word-spacing:0.360992pt;}
.wsce_c00001{word-spacing:0.367216pt;}
.ws20c_c00001{word-spacing:0.392112pt;}
.ws2bc_c00001{word-spacing:0.398642pt;}
.ws1dd_c00001{word-spacing:0.429456pt;}
.ws18e_c00001{word-spacing:0.616176pt;}
.wsb3_c00001{word-spacing:0.622400pt;}
.wsf2_c00001{word-spacing:0.628624pt;}
.ws1bb_c00001{word-spacing:0.634848pt;}
.ws10e_c00001{word-spacing:0.641072pt;}
.ws7e_c00001{word-spacing:0.647296pt;}
.wsfa_c00001{word-spacing:0.653520pt;}
.ws124_c00001{word-spacing:0.659744pt;}
.ws15e_c00001{word-spacing:0.665968pt;}
.wsbe_c00001{word-spacing:0.672192pt;}
.ws166_c00001{word-spacing:0.883808pt;}
.ws206_c00001{word-spacing:0.933600pt;}
.ws163_c00001{word-spacing:0.939824pt;}
.ws88_c00001{word-spacing:0.946048pt;}
.ws140_c00001{word-spacing:0.952272pt;}
.ws17f_c00001{word-spacing:0.958496pt;}
.ws1f_c00001{word-spacing:0.964720pt;}
.ws7a_c00001{word-spacing:0.970944pt;}
.ws17b_c00001{word-spacing:1.232352pt;}
.wsb0_c00001{word-spacing:1.251024pt;}
.ws2e_c00001{word-spacing:1.257248pt;}
.ws15a_c00001{word-spacing:1.263472pt;}
.ws100_c00001{word-spacing:1.269696pt;}
.ws61_c00001{word-spacing:1.275920pt;}
.ws1a1_c00001{word-spacing:1.282144pt;}
.ws69_c00001{word-spacing:1.288368pt;}
.ws1d_c00001{word-spacing:1.294592pt;}
.ws2d_c00001{word-spacing:1.300816pt;}
.ws46_c00001{word-spacing:1.307040pt;}
.ws16a_c00001{word-spacing:1.556000pt;}
.wsf9_c00001{word-spacing:1.562224pt;}
.ws114_c00001{word-spacing:1.580896pt;}
.ws83_c00001{word-spacing:1.587120pt;}
.ws7_c00001{word-spacing:1.593344pt;}
.ws82_c00001{word-spacing:1.599568pt;}
.ws6a_c00001{word-spacing:1.605792pt;}
.ws3d_c00001{word-spacing:1.612016pt;}
.ws80_c00001{word-spacing:1.618240pt;}
.ws20d_c00001{word-spacing:1.624464pt;}
.ws101_c00001{word-spacing:1.630688pt;}
.ws238_c00001{word-spacing:1.754023pt;}
.ws237_c00001{word-spacing:1.771108pt;}
.ws239_c00001{word-spacing:1.776803pt;}
.ws154_c00001{word-spacing:1.898320pt;}
.ws149_c00001{word-spacing:1.904544pt;}
.ws19c_c00001{word-spacing:1.910768pt;}
.ws155_c00001{word-spacing:1.916992pt;}
.wse_c00001{word-spacing:1.923216pt;}
.ws5b_c00001{word-spacing:1.929440pt;}
.wsc9_c00001{word-spacing:1.935664pt;}
.ws113_c00001{word-spacing:1.941888pt;}
.ws231_c00001{word-spacing:2.078631pt;}
.ws230_c00001{word-spacing:2.101411pt;}
.ws175_c00001{word-spacing:2.215744pt;}
.ws86_c00001{word-spacing:2.221968pt;}
.wsf3_c00001{word-spacing:2.234416pt;}
.ws13a_c00001{word-spacing:2.240640pt;}
.ws93_c00001{word-spacing:2.246864pt;}
.ws17_c00001{word-spacing:2.253088pt;}
.ws12c_c00001{word-spacing:2.259312pt;}
.ws12d_c00001{word-spacing:2.265536pt;}
.ws1d5_c00001{word-spacing:2.526944pt;}
.ws14d_c00001{word-spacing:2.533168pt;}
.ws161_c00001{word-spacing:2.539392pt;}
.ws139_c00001{word-spacing:2.545616pt;}
.ws91_c00001{word-spacing:2.551840pt;}
.wsaf_c00001{word-spacing:2.558064pt;}
.ws1bf_c00001{word-spacing:2.564288pt;}
.ws7d_c00001{word-spacing:2.570512pt;}
.ws127_c00001{word-spacing:2.582960pt;}
.ws54_c00001{word-spacing:2.782128pt;}
.ws184_c00001{word-spacing:2.825696pt;}
.ws1a0_c00001{word-spacing:2.844368pt;}
.ws6_c00001{word-spacing:2.850592pt;}
.ws67_c00001{word-spacing:2.856816pt;}
.wsa7_c00001{word-spacing:2.863040pt;}
.ws1ae_c00001{word-spacing:2.869264pt;}
.ws17c_c00001{word-spacing:2.875488pt;}
.wsf5_c00001{word-spacing:2.881712pt;}
.ws53_c00001{word-spacing:2.887936pt;}
.wsf_c00001{word-spacing:2.894160pt;}
.wsf4_c00001{word-spacing:2.900384pt;}
.wsa8_c00001{word-spacing:2.906608pt;}
.ws17d_c00001{word-spacing:2.919056pt;}
.ws129_c00001{word-spacing:3.161792pt;}
.ws27_c00001{word-spacing:3.168016pt;}
.ws28_c00001{word-spacing:3.174240pt;}
.wsed_c00001{word-spacing:3.180464pt;}
.ws20_c00001{word-spacing:3.192912pt;}
.ws12a_c00001{word-spacing:3.199136pt;}
.ws21_c00001{word-spacing:3.205360pt;}
.ws81_c00001{word-spacing:3.211584pt;}
.ws1af_c00001{word-spacing:3.217808pt;}
.ws1d9_c00001{word-spacing:3.224032pt;}
.ws23_c00001{word-spacing:3.485440pt;}
.ws3b_c00001{word-spacing:3.510336pt;}
.ws22_c00001{word-spacing:3.516560pt;}
.ws17a_c00001{word-spacing:3.522784pt;}
.ws1dc_c00001{word-spacing:3.529008pt;}
.ws30_c00001{word-spacing:3.535232pt;}
.ws26_c00001{word-spacing:3.541456pt;}
.ws3a_c00001{word-spacing:3.547680pt;}
.ws22d_c00001{word-spacing:3.644723pt;}
.ws22e_c00001{word-spacing:3.678892pt;}
.ws97_c00001{word-spacing:3.821536pt;}
.wsaa_c00001{word-spacing:3.827760pt;}
.ws102_c00001{word-spacing:3.833984pt;}
.ws111_c00001{word-spacing:3.840208pt;}
.ws18b_c00001{word-spacing:3.846432pt;}
.wsbf_c00001{word-spacing:3.852656pt;}
.ws76_c00001{word-spacing:3.865104pt;}
.ws23c_c00001{word-spacing:3.986416pt;}
.ws77_c00001{word-spacing:4.132736pt;}
.ws1f7_c00001{word-spacing:4.138960pt;}
.ws188_c00001{word-spacing:4.145184pt;}
.ws130_c00001{word-spacing:4.151408pt;}
.ws141_c00001{word-spacing:4.157632pt;}
.ws167_c00001{word-spacing:4.170080pt;}
.ws8c_c00001{word-spacing:4.176304pt;}
.ws1f8_c00001{word-spacing:4.201200pt;}
.ws23d_c00001{word-spacing:4.322414pt;}
.ws1eb_c00001{word-spacing:4.450160pt;}
.ws4b_c00001{word-spacing:4.456384pt;}
.ws156_c00001{word-spacing:4.462608pt;}
.ws10_c00001{word-spacing:4.468832pt;}
.ws1ee_c00001{word-spacing:4.475056pt;}
.ws6f_c00001{word-spacing:4.487504pt;}
.ws6e_c00001{word-spacing:4.493728pt;}
.wsc5_c00001{word-spacing:4.786256pt;}
.ws39_c00001{word-spacing:4.792480pt;}
.wsc4_c00001{word-spacing:4.798704pt;}
.ws71_c00001{word-spacing:4.804928pt;}
.ws38_c00001{word-spacing:4.811152pt;}
.ws78_c00001{word-spacing:4.817376pt;}
.ws1e9_c00001{word-spacing:4.823600pt;}
.ws170_c00001{word-spacing:4.836048pt;}
.wse0_c00001{word-spacing:4.916960pt;}
.ws117_c00001{word-spacing:5.047664pt;}
.ws4a_c00001{word-spacing:5.103680pt;}
.ws116_c00001{word-spacing:5.109904pt;}
.ws183_c00001{word-spacing:5.116128pt;}
.ws49_c00001{word-spacing:5.122352pt;}
.ws92_c00001{word-spacing:5.128576pt;}
.ws73_c00001{word-spacing:5.134800pt;}
.ws79_c00001{word-spacing:5.141024pt;}
.ws96_c00001{word-spacing:5.147248pt;}
.ws95_c00001{word-spacing:5.153472pt;}
.ws1d8_c00001{word-spacing:5.159696pt;}
.ws74_c00001{word-spacing:5.165920pt;}
.ws258_c00001{word-spacing:5.279154pt;}
.ws259_c00001{word-spacing:5.290544pt;}
.ws9c_c00001{word-spacing:5.402432pt;}
.wsa6_c00001{word-spacing:5.421104pt;}
.wscb_c00001{word-spacing:5.427328pt;}
.ws157_c00001{word-spacing:5.433552pt;}
.wscc_c00001{word-spacing:5.439776pt;}
.ws1db_c00001{word-spacing:5.446000pt;}
.ws1da_c00001{word-spacing:5.452224pt;}
.ws9b_c00001{word-spacing:5.458448pt;}
.ws1ed_c00001{word-spacing:5.464672pt;}
.wscd_c00001{word-spacing:5.477120pt;}
.ws228_c00001{word-spacing:5.563898pt;}
.ws227_c00001{word-spacing:5.598067pt;}
.ws1f1_c00001{word-spacing:5.719856pt;}
.ws122_c00001{word-spacing:5.726080pt;}
.wsde_c00001{word-spacing:5.738528pt;}
.ws108_c00001{word-spacing:5.744752pt;}
.ws16b_c00001{word-spacing:5.750976pt;}
.wsfe_c00001{word-spacing:5.757200pt;}
.ws112_c00001{word-spacing:5.763424pt;}
.wsbc_c00001{word-spacing:5.769648pt;}
.ws110_c00001{word-spacing:5.775872pt;}
.ws174_c00001{word-spacing:5.782096pt;}
.wsfd_c00001{word-spacing:5.794544pt;}
.ws21a_c00001{word-spacing:5.806992pt;}
.ws226_c00001{word-spacing:5.877116pt;}
.ws195_c00001{word-spacing:6.043504pt;}
.wsb9_c00001{word-spacing:6.049728pt;}
.ws11f_c00001{word-spacing:6.055952pt;}
.ws120_c00001{word-spacing:6.062176pt;}
.wse1_c00001{word-spacing:6.068400pt;}
.wse2_c00001{word-spacing:6.074624pt;}
.wsac_c00001{word-spacing:6.080848pt;}
.ws59_c00001{word-spacing:6.087072pt;}
.wse5_c00001{word-spacing:6.093296pt;}
.ws58_c00001{word-spacing:6.099520pt;}
.ws1f2_c00001{word-spacing:6.105744pt;}
.ws1e6_c00001{word-spacing:6.360928pt;}
.wsa0_c00001{word-spacing:6.379600pt;}
.ws106_c00001{word-spacing:6.385824pt;}
.ws7b_c00001{word-spacing:6.392048pt;}
.ws1ea_c00001{word-spacing:6.398272pt;}
.ws52_c00001{word-spacing:6.404496pt;}
.ws3f_c00001{word-spacing:6.410720pt;}
.ws40_c00001{word-spacing:6.416944pt;}
.ws165_c00001{word-spacing:6.423168pt;}
.ws23a_c00001{word-spacing:6.566197pt;}
.ws11e_c00001{word-spacing:6.703248pt;}
.ws4c_c00001{word-spacing:6.709472pt;}
.ws132_c00001{word-spacing:6.715696pt;}
.ws68_c00001{word-spacing:6.721920pt;}
.ws131_c00001{word-spacing:6.728144pt;}
.ws123_c00001{word-spacing:6.734368pt;}
.ws4d_c00001{word-spacing:6.740592pt;}
.ws48_c00001{word-spacing:6.777936pt;}
.ws65_c00001{word-spacing:7.002000pt;}
.ws1e4_c00001{word-spacing:7.014448pt;}
.ws66_c00001{word-spacing:7.026896pt;}
.wsa3_c00001{word-spacing:7.039344pt;}
.ws47_c00001{word-spacing:7.045568pt;}
.ws1e3_c00001{word-spacing:7.051792pt;}
.ws1f3_c00001{word-spacing:7.338096pt;}
.wsd7_c00001{word-spacing:7.350544pt;}
.wsbb_c00001{word-spacing:7.356768pt;}
.ws1b4_c00001{word-spacing:7.369216pt;}
.ws18c_c00001{word-spacing:7.375440pt;}
.ws209_c00001{word-spacing:7.381664pt;}
.ws1d0_c00001{word-spacing:7.387888pt;}
.ws1b5_c00001{word-spacing:7.406560pt;}
.ws145_c00001{word-spacing:7.649296pt;}
.ws1b0_c00001{word-spacing:7.655520pt;}
.ws189_c00001{word-spacing:7.667968pt;}
.ws5e_c00001{word-spacing:7.680416pt;}
.wsa1_c00001{word-spacing:7.686640pt;}
.ws13b_c00001{word-spacing:7.699088pt;}
.ws36_c00001{word-spacing:7.705312pt;}
.ws1c4_c00001{word-spacing:7.972944pt;}
.ws1c5_c00001{word-spacing:7.979168pt;}
.ws1e8_c00001{word-spacing:7.985392pt;}
.ws171_c00001{word-spacing:7.991616pt;}
.ws2a_c00001{word-spacing:7.997840pt;}
.ws29_c00001{word-spacing:8.004064pt;}
.wsd8_c00001{word-spacing:8.010288pt;}
.ws14c_c00001{word-spacing:8.016512pt;}
.wsc8_c00001{word-spacing:8.022736pt;}
.ws244_c00001{word-spacing:8.137984pt;}
.ws245_c00001{word-spacing:8.166458pt;}
.ws246_c00001{word-spacing:8.217712pt;}
.ws135_c00001{word-spacing:8.253024pt;}
.wsf0_c00001{word-spacing:8.296592pt;}
.ws7c_c00001{word-spacing:8.315264pt;}
.ws204_c00001{word-spacing:8.321488pt;}
.ws33_c00001{word-spacing:8.327712pt;}
.ws94_c00001{word-spacing:8.333936pt;}
.ws1fb_c00001{word-spacing:8.340160pt;}
.ws182_c00001{word-spacing:8.626464pt;}
.wsc3_c00001{word-spacing:8.638912pt;}
.ws1e2_c00001{word-spacing:8.645136pt;}
.ws25_c00001{word-spacing:8.651360pt;}
.ws20b_c00001{word-spacing:8.657584pt;}
.ws24_c00001{word-spacing:8.694928pt;}
.ws25a_c00001{word-spacing:8.792895pt;}
.ws25b_c00001{word-spacing:8.804284pt;}
.ws162_c00001{word-spacing:8.943888pt;}
.ws12b_c00001{word-spacing:8.950112pt;}
.ws13c_c00001{word-spacing:8.962560pt;}
.wsd9_c00001{word-spacing:8.968784pt;}
.ws13d_c00001{word-spacing:8.975008pt;}
.ws1a8_c00001{word-spacing:8.987456pt;}
.ws1ad_c00001{word-spacing:9.236416pt;}
.ws16c_c00001{word-spacing:9.255088pt;}
.ws16d_c00001{word-spacing:9.267536pt;}
.ws62_c00001{word-spacing:9.273760pt;}
.ws98_c00001{word-spacing:9.279984pt;}
.wsb8_c00001{word-spacing:9.286208pt;}
.ws1a7_c00001{word-spacing:9.292432pt;}
.wsd3_c00001{word-spacing:9.298656pt;}
.ws1f9_c00001{word-spacing:9.572512pt;}
.ws1b9_c00001{word-spacing:9.584960pt;}
.ws99_c00001{word-spacing:9.591184pt;}
.ws1ba_c00001{word-spacing:9.597408pt;}
.wsd5_c00001{word-spacing:9.603632pt;}
.ws223_c00001{word-spacing:9.761024pt;}
.ws224_c00001{word-spacing:9.789499pt;}
.wsa5_c00001{word-spacing:9.871264pt;}
.wsc1_c00001{word-spacing:9.877488pt;}
.ws1f6_c00001{word-spacing:9.902384pt;}
.ws42_c00001{word-spacing:9.908608pt;}
.ws153_c00001{word-spacing:9.914832pt;}
.wsc2_c00001{word-spacing:9.921056pt;}
.wsef_c00001{word-spacing:9.927280pt;}
.ws1cf_c00001{word-spacing:9.939728pt;}
.wsc0_c00001{word-spacing:10.201136pt;}
.ws125_c00001{word-spacing:10.219808pt;}
.wsa4_c00001{word-spacing:10.232256pt;}
.ws187_c00001{word-spacing:10.238480pt;}
.wsb4_c00001{word-spacing:10.244704pt;}
.ws1e5_c00001{word-spacing:10.250928pt;}
.ws1d3_c00001{word-spacing:10.506112pt;}
.ws3c_c00001{word-spacing:10.543456pt;}
.ws115_c00001{word-spacing:10.555904pt;}
.ws1a6_c00001{word-spacing:10.562128pt;}
.ws1ef_c00001{word-spacing:10.568352pt;}
.wsc7_c00001{word-spacing:10.574576pt;}
.ws37_c00001{word-spacing:10.580800pt;}
.ws1f0_c00001{word-spacing:10.860880pt;}
.wsad_c00001{word-spacing:10.867104pt;}
.wsae_c00001{word-spacing:10.873328pt;}
.ws57_c00001{word-spacing:10.879552pt;}
.ws63_c00001{word-spacing:10.885776pt;}
.ws16f_c00001{word-spacing:10.892000pt;}
.ws1d7_c00001{word-spacing:10.898224pt;}
.wsd0_c00001{word-spacing:10.916896pt;}
.ws1e0_c00001{word-spacing:11.134736pt;}
.ws202_c00001{word-spacing:11.165856pt;}
.ws89_c00001{word-spacing:11.178304pt;}
.ws1e1_c00001{word-spacing:11.184528pt;}
.ws12_c00001{word-spacing:11.190752pt;}
.ws186_c00001{word-spacing:11.196976pt;}
.ws201_c00001{word-spacing:11.209424pt;}
.wscf_c00001{word-spacing:11.215648pt;}
.ws185_c00001{word-spacing:11.501952pt;}
.ws18d_c00001{word-spacing:11.508176pt;}
.ws10f_c00001{word-spacing:11.514400pt;}
.ws13_c00001{word-spacing:11.526848pt;}
.ws133_c00001{word-spacing:11.533072pt;}
.ws1b3_c00001{word-spacing:11.788256pt;}
.ws12e_c00001{word-spacing:11.806928pt;}
.ws203_c00001{word-spacing:11.819376pt;}
.ws72_c00001{word-spacing:11.825600pt;}
.ws12f_c00001{word-spacing:11.838048pt;}
.ws11d_c00001{word-spacing:11.844272pt;}
.ws134_c00001{word-spacing:11.850496pt;}
.ws5d_c00001{word-spacing:12.130576pt;}
.ws1b2_c00001{word-spacing:12.136800pt;}
.ws5a_c00001{word-spacing:12.155472pt;}
.wsee_c00001{word-spacing:12.161696pt;}
.ws1e_c00001{word-spacing:12.167920pt;}
.wsa9_c00001{word-spacing:12.174144pt;}
.ws261_c00001{word-spacing:12.318025pt;}
.ws159_c00001{word-spacing:12.466672pt;}
.ws160_c00001{word-spacing:12.472896pt;}
.ws1a3_c00001{word-spacing:12.479120pt;}
.ws107_c00001{word-spacing:12.491568pt;}
.ws260_c00001{word-spacing:12.631244pt;}
.ws25f_c00001{word-spacing:12.648328pt;}
.ws262_c00001{word-spacing:12.676803pt;}
.wsb6_c00001{word-spacing:12.790320pt;}
.wsea_c00001{word-spacing:12.802768pt;}
.wseb_c00001{word-spacing:12.808992pt;}
.ws199_c00001{word-spacing:12.815216pt;}
.ws213_c00001{word-spacing:12.827664pt;}
.ws19f_c00001{word-spacing:13.095296pt;}
.ws1fc_c00001{word-spacing:13.126416pt;}
.ws19e_c00001{word-spacing:13.132640pt;}
.ws1b8_c00001{word-spacing:13.138864pt;}
.ws15d_c00001{word-spacing:13.400272pt;}
.ws15c_c00001{word-spacing:13.412720pt;}
.ws178_c00001{word-spacing:13.418944pt;}
.ws177_c00001{word-spacing:13.425168pt;}
.ws4e_c00001{word-spacing:13.437616pt;}
.wse8_c00001{word-spacing:13.443840pt;}
.ws4f_c00001{word-spacing:13.456288pt;}
.wse9_c00001{word-spacing:13.468736pt;}
.wsb5_c00001{word-spacing:13.748816pt;}
.ws11_c00001{word-spacing:13.761264pt;}
.ws179_c00001{word-spacing:13.767488pt;}
.ws1fe_c00001{word-spacing:13.786160pt;}
.ws14a_c00001{word-spacing:13.798608pt;}
.ws1cc_c00001{word-spacing:14.066240pt;}
.wsb7_c00001{word-spacing:14.072464pt;}
.ws196_c00001{word-spacing:14.091136pt;}
.ws197_c00001{word-spacing:14.103584pt;}
.ws14b_c00001{word-spacing:14.109808pt;}
.ws198_c00001{word-spacing:14.215616pt;}
.ws25c_c00001{word-spacing:14.225810pt;}
.ws25d_c00001{word-spacing:14.248590pt;}
.ws208_c00001{word-spacing:14.383664pt;}
.ws20a_c00001{word-spacing:14.389888pt;}
.ws1cd_c00001{word-spacing:14.396112pt;}
.ws10d_c00001{word-spacing:14.408560pt;}
.ws35_c00001{word-spacing:14.414784pt;}
.ws14e_c00001{word-spacing:14.707312pt;}
.wsd1_c00001{word-spacing:14.719760pt;}
.wsd2_c00001{word-spacing:14.725984pt;}
.ws6b_c00001{word-spacing:14.744656pt;}
.ws9a_c00001{word-spacing:15.024736pt;}
.wsdb_c00001{word-spacing:15.037184pt;}
.ws1a2_c00001{word-spacing:15.043408pt;}
.ws169_c00001{word-spacing:15.049632pt;}
.wsda_c00001{word-spacing:15.055856pt;}
.ws168_c00001{word-spacing:15.068304pt;}
.ws8d_c00001{word-spacing:15.335936pt;}
.ws265_c00001{word-spacing:15.490074pt;}
.ws264_c00001{word-spacing:15.501463pt;}
.ws1ec_c00001{word-spacing:15.653360pt;}
.ws1c0_c00001{word-spacing:15.659584pt;}
.ws19b_c00001{word-spacing:15.665808pt;}
.ws109_c00001{word-spacing:15.672032pt;}
.ws19a_c00001{word-spacing:15.678256pt;}
.ws6d_c00001{word-spacing:15.690704pt;}
.ws1fa_c00001{word-spacing:15.696928pt;}
.ws146_c00001{word-spacing:15.945888pt;}
.wsf7_c00001{word-spacing:15.977008pt;}
.wsf8_c00001{word-spacing:15.989456pt;}
.ws1b1_c00001{word-spacing:15.995680pt;}
.ws191_c00001{word-spacing:16.008128pt;}
.ws192_c00001{word-spacing:16.026800pt;}
.ws147_c00001{word-spacing:16.325552pt;}
.ws194_c00001{word-spacing:16.338000pt;}
.ws193_c00001{word-spacing:16.344224pt;}
.ws104_c00001{word-spacing:16.586960pt;}
.ws43_c00001{word-spacing:16.611856pt;}
.wsdd_c00001{word-spacing:16.624304pt;}
.ws44_c00001{word-spacing:16.638298pt;}
.wsbd_c00001{word-spacing:16.642976pt;}
.ws105_c00001{word-spacing:16.649200pt;}
.ws45_c00001{word-spacing:16.655424pt;}
.ws1c6_c00001{word-spacing:16.923056pt;}
.ws190_c00001{word-spacing:16.941728pt;}
.ws1c7_c00001{word-spacing:16.997744pt;}
.ws50_c00001{word-spacing:17.259152pt;}
.wsb1_c00001{word-spacing:17.265376pt;}
.ws56_c00001{word-spacing:17.271600pt;}
.ws51_c00001{word-spacing:17.277824pt;}
.wsf6_c00001{word-spacing:17.290272pt;}
.ws1c1_c00001{word-spacing:17.296496pt;}
.ws1ce_c00001{word-spacing:17.576576pt;}
.wsab_c00001{word-spacing:17.601472pt;}
.ws11b_c00001{word-spacing:17.607696pt;}
.ws11c_c00001{word-spacing:17.620144pt;}
.ws18a_c00001{word-spacing:17.626368pt;}
.ws248_c00001{word-spacing:17.728161pt;}
.ws249_c00001{word-spacing:17.750941pt;}
.ws17e_c00001{word-spacing:17.912672pt;}
.ws55_c00001{word-spacing:17.925120pt;}
.wsd_c00001{word-spacing:18.230096pt;}
.wsc_c00001{word-spacing:18.254992pt;}
.ws143_c00001{word-spacing:18.547520pt;}
.ws1d1_c00001{word-spacing:18.553744pt;}
.ws1d2_c00001{word-spacing:18.559968pt;}
.ws142_c00001{word-spacing:18.572416pt;}
.ws1d6_c00001{word-spacing:18.591088pt;}
.ws24e_c00001{word-spacing:18.639342pt;}
.ws24d_c00001{word-spacing:18.736155pt;}
.ws158_c00001{word-spacing:18.852496pt;}
.ws119_c00001{word-spacing:18.864944pt;}
.ws8a_c00001{word-spacing:18.877392pt;}
.ws148_c00001{word-spacing:18.883616pt;}
.ws8b_c00001{word-spacing:18.889840pt;}
.ws118_c00001{word-spacing:18.920960pt;}
.ws121_c00001{word-spacing:19.182368pt;}
.ws128_c00001{word-spacing:19.188592pt;}
.ws5f_c00001{word-spacing:19.201040pt;}
.ws13f_c00001{word-spacing:19.499792pt;}
.ws16e_c00001{word-spacing:19.518464pt;}
.ws9d_c00001{word-spacing:19.524688pt;}
.ws7f_c00001{word-spacing:19.537136pt;}
.ws11a_c00001{word-spacing:19.860784pt;}
.ws70_c00001{word-spacing:20.147088pt;}
.ws200_c00001{word-spacing:20.153312pt;}
.ws181_c00001{word-spacing:20.165760pt;}
.wsca_c00001{word-spacing:20.178208pt;}
.ws180_c00001{word-spacing:20.209328pt;}
.ws207_c00001{word-spacing:20.470736pt;}
.ws136_c00001{word-spacing:20.794384pt;}
.ws1e7_c00001{word-spacing:20.800608pt;}
.ws1ac_c00001{word-spacing:21.404336pt;}
.ws212_c00001{word-spacing:21.441680pt;}
.ws3e_c00001{word-spacing:21.759104pt;}
.ws211_c00001{word-spacing:21.784000pt;}
.ws1c8_c00001{word-spacing:22.057856pt;}
.ws151_c00001{word-spacing:22.070304pt;}
.ws84_c00001{word-spacing:22.082752pt;}
.ws2f_c00001{word-spacing:22.088976pt;}
.ws1fd_c00001{word-spacing:22.369056pt;}
.ws85_c00001{word-spacing:22.381504pt;}
.ws152_c00001{word-spacing:22.387728pt;}
.ws205_c00001{word-spacing:22.400176pt;}
.ws16_c00001{word-spacing:22.412624pt;}
.ws229_c00001{word-spacing:22.540335pt;}
.ws22a_c00001{word-spacing:22.546030pt;}
.ws103_c00001{word-spacing:22.736272pt;}
.ws10c_c00001{word-spacing:22.742496pt;}
.ws1ff_c00001{word-spacing:23.053696pt;}
.wse4_c00001{word-spacing:23.364896pt;}
.wse3_c00001{word-spacing:23.669872pt;}
.wsd4_c00001{word-spacing:23.688544pt;}
.ws1ca_c00001{word-spacing:23.956176pt;}
.ws15b_c00001{word-spacing:23.962400pt;}
.ws1c9_c00001{word-spacing:23.968624pt;}
.ws1f4_c00001{word-spacing:24.304720pt;}
.wsfc_c00001{word-spacing:24.310944pt;}
.ws172_c00001{word-spacing:24.335840pt;}
.ws173_c00001{word-spacing:24.603472pt;}
.ws1f5_c00001{word-spacing:24.634592pt;}
.ws9f_c00001{word-spacing:24.653264pt;}
.ws90_c00001{word-spacing:24.665712pt;}
.ws252_c00001{word-spacing:24.806897pt;}
.ws14f_c00001{word-spacing:24.927120pt;}
.ws8f_c00001{word-spacing:24.958240pt;}
.ws150_c00001{word-spacing:24.964464pt;}
.ws251_c00001{word-spacing:25.085946pt;}
.wsff_c00001{word-spacing:25.238320pt;}
.ws60_c00001{word-spacing:25.269440pt;}
.ws1ab_c00001{word-spacing:25.300560pt;}
.ws9e_c00001{word-spacing:25.611760pt;}
.ws2b_c00001{word-spacing:25.929184pt;}
.ws1a9_c00001{word-spacing:27.852400pt;}
.ws1aa_c00001{word-spacing:27.858624pt;}
.ws1b7_c00001{word-spacing:28.163600pt;}
.ws1b6_c00001{word-spacing:28.169824pt;}
.ws41_c00001{word-spacing:28.462352pt;}
.ws13e_c00001{word-spacing:29.109648pt;}
.ws1a4_c00001{word-spacing:29.115872pt;}
.ws144_c00001{word-spacing:30.074368pt;}
.ws137_c00001{word-spacing:31.368960pt;}
.wsfb_c00001{word-spacing:31.661488pt;}
.wsd6_c00001{word-spacing:31.686384pt;}
.ws8e_c00001{word-spacing:32.302560pt;}
.ws1cb_c00001{word-spacing:32.651104pt;}
.ws10b_c00001{word-spacing:33.578480pt;}
.wsba_c00001{word-spacing:35.178048pt;}
.wsdc_c00001{word-spacing:37.449808pt;}
.ws1de_c00001{word-spacing:38.719504pt;}
.ws1df_c00001{word-spacing:38.750624pt;}
.ws1c3_c00001{word-spacing:40.960144pt;}
.ws1c2_c00001{word-spacing:41.246448pt;}
.ws255_c00001{word-spacing:48.429260pt;}
.ws256_c00001{word-spacing:48.793732pt;}
._6_c00001{margin-left:-37.673872pt;}
._8_c00001{margin-left:-32.931184pt;}
._b_c00001{margin-left:-30.173952pt;}
._2_c00001{margin-left:-21.622176pt;}
._4_c00001{margin-left:-16.529968pt;}
._5_c00001{margin-left:-6.983328pt;}
._9_c00001{margin-left:-5.757200pt;}
._c_c00001{margin-left:-2.917338pt;}
._1_c00001{margin-left:-1.195008pt;}
._0_c00001{width:1.468864pt;}
._3_c00001{width:3.392080pt;}
._7_c00001{width:4.868230pt;}
._a_c00001{width:19.319296pt;}
.fs1_c00001{font-size:41.388800pt;}
.fs6_c00001{font-size:44.189867pt;}
.fs2_c00001{font-size:46.680000pt;}
.fs4_c00001{font-size:51.970133pt;}
.fs5_c00001{font-size:54.460267pt;}
.fs7_c00001{font-size:56.948800pt;}
.fs0_c00001{font-size:62.240000pt;}
.fs3_c00001{font-size:67.530133pt;}
.y0_c00001{bottom:0.000000pt;}
.y2_c00001{bottom:97.547527pt;}
.y1_c00001{bottom:115.387067pt;}
.y42_c00001{bottom:135.227300pt;}
.y7e_c00001{bottom:135.625080pt;}
.y20f_c00001{bottom:135.625868pt;}
.y188_c00001{bottom:135.626623pt;}
.y281_c00001{bottom:136.184563pt;}
.y1ca_c00001{bottom:136.186471pt;}
.y1e2_c00001{bottom:136.985348pt;}
.y29b_c00001{bottom:137.866523pt;}
.y302_c00001{bottom:141.146279pt;}
.y2dc_c00001{bottom:142.825727pt;}
.y151_c00001{bottom:142.987167pt;}
.y22f_c00001{bottom:143.782087pt;}
.y26c_c00001{bottom:144.825031pt;}
.y179_c00001{bottom:148.027067pt;}
.y2c1_c00001{bottom:150.506179pt;}
.y2f6_c00001{bottom:150.585884pt;}
.y326_c00001{bottom:151.147443pt;}
.y250_c00001{bottom:154.103887pt;}
.y28d_c00001{bottom:154.263727pt;}
.y9a_c00001{bottom:155.063539pt;}
.y1bc_c00001{bottom:155.064427pt;}
.yc1_c00001{bottom:155.064847pt;}
.y60_c00001{bottom:155.065291pt;}
.y158_c00001{bottom:155.065735pt;}
.y92_c00001{bottom:155.066179pt;}
.yd8_c00001{bottom:155.066279pt;}
.yfd_c00001{bottom:155.066723pt;}
.y4b7_c00001{bottom:155.379477pt;}
.yf4_c00001{bottom:157.867167pt;}
.y1fb_c00001{bottom:158.746623pt;}
.y2db_c00001{bottom:160.746179pt;}
.y47e_c00001{bottom:161.861674pt;}
.y4ca_c00001{bottom:161.938555pt;}
.y21_c00001{bottom:162.105191pt;}
.y41_c00001{bottom:162.105868pt;}
.y7d_c00001{bottom:162.504980pt;}
.y20e_c00001{bottom:162.505768pt;}
.y187_c00001{bottom:162.506523pt;}
.y280_c00001{bottom:162.904195pt;}
.y1c9_c00001{bottom:162.906103pt;}
.y22e_c00001{bottom:163.222314pt;}
.y1e1_c00001{bottom:163.785892pt;}
.y362_c00001{bottom:164.024411pt;}
.y3c0_c00001{bottom:164.421347pt;}
.y45a_c00001{bottom:164.500099pt;}
.y3f0_c00001{bottom:164.501251pt;}
.y315_c00001{bottom:164.747527pt;}
.y301_c00001{bottom:168.026179pt;}
.y2c0_c00001{bottom:168.345719pt;}
.y2f5_c00001{bottom:168.425424pt;}
.y325_c00001{bottom:168.986983pt;}
.y150_c00001{bottom:169.866179pt;}
.y4ae_c00001{bottom:170.978025pt;}
.y48e_c00001{bottom:170.980872pt;}
.y485_c00001{bottom:170.982296pt;}
.y406_c00001{bottom:170.984896pt;}
.y3d9_c00001{bottom:170.984918pt;}
.y26b_c00001{bottom:171.625575pt;}
.y29a_c00001{bottom:171.787067pt;}
.y42e_c00001{bottom:173.460993pt;}
.y178_c00001{bottom:177.223071pt;}
.y19c_c00001{bottom:177.387167pt;}
.y2da_c00001{bottom:178.666631pt;}
.y3a7_c00001{bottom:179.941766pt;}
.y43f_c00001{bottom:179.944281pt;}
.y4a0_c00001{bottom:180.019799pt;}
.y24f_c00001{bottom:180.983787pt;}
.y28c_c00001{bottom:181.143627pt;}
.y99_c00001{bottom:181.943439pt;}
.y1bb_c00001{bottom:181.944327pt;}
.yc0_c00001{bottom:181.944747pt;}
.y13a_c00001{bottom:181.944847pt;}
.y361_c00001{bottom:181.944863pt;}
.y5f_c00001{bottom:181.945191pt;}
.y157_c00001{bottom:181.945635pt;}
.y125_c00001{bottom:181.945868pt;}
.y91_c00001{bottom:181.946079pt;}
.yd7_c00001{bottom:181.946179pt;}
.y110_c00001{bottom:181.946523pt;}
.yfc_c00001{bottom:181.946623pt;}
.y44d_c00001{bottom:182.500191pt;}
.y314_c00001{bottom:182.584259pt;}
.y22d_c00001{bottom:182.662541pt;}
.yf3_c00001{bottom:184.747067pt;}
.y1fa_c00001{bottom:185.547167pt;}
.y2bf_c00001{bottom:186.266171pt;}
.y2f4_c00001{bottom:186.345876pt;}
.y41f_c00001{bottom:186.419692pt;}
.y47d_c00001{bottom:186.422268pt;}
.y4f0_c00001{bottom:186.423692pt;}
.y4c9_c00001{bottom:186.499149pt;}
.y324_c00001{bottom:186.907435pt;}
.y20_c00001{bottom:188.905735pt;}
.y40_c00001{bottom:188.906412pt;}
.y3bf_c00001{bottom:189.061669pt;}
.y3ef_c00001{bottom:189.061845pt;}
.y186_c00001{bottom:189.304947pt;}
.y7c_c00001{bottom:189.305524pt;}
.y20d_c00001{bottom:189.306312pt;}
.y1c8_c00001{bottom:189.786003pt;}
.y1e0_c00001{bottom:190.665792pt;}
.y510_c00001{bottom:191.462508pt;}
.y300_c00001{bottom:194.826723pt;}
.y4b6_c00001{bottom:195.539771pt;}
.y520_c00001{bottom:195.619499pt;}
.y500_c00001{bottom:195.621194pt;}
.y2d9_c00001{bottom:196.506171pt;}
.y14f_c00001{bottom:196.666723pt;}
.y42d_c00001{bottom:198.101315pt;}
.y26a_c00001{bottom:198.505475pt;}
.y360_c00001{bottom:199.784403pt;}
.y313_c00001{bottom:200.504711pt;}
.yf2_c00001{bottom:201.787181pt;}
.y22c_c00001{bottom:202.182310pt;}
.y177_c00001{bottom:204.102971pt;}
.y2be_c00001{bottom:204.186623pt;}
.y2f3_c00001{bottom:204.266328pt;}
.y19b_c00001{bottom:204.267535pt;}
.y3a6_c00001{bottom:204.582088pt;}
.y459_c00001{bottom:204.660393pt;}
.y43e_c00001{bottom:204.664331pt;}
.y24e_c00001{bottom:207.863687pt;}
.y27f_c00001{bottom:207.864815pt;}
.y28b_c00001{bottom:207.944171pt;}
.y2aa_c00001{bottom:208.506171pt;}
.y98_c00001{bottom:208.743983pt;}
.y1ac_c00001{bottom:208.744427pt;}
.y1ba_c00001{bottom:208.744871pt;}
.ybf_c00001{bottom:208.745291pt;}
.y139_c00001{bottom:208.745391pt;}
.y5e_c00001{bottom:208.745735pt;}
.y10f_c00001{bottom:208.745835pt;}
.y156_c00001{bottom:208.746179pt;}
.y124_c00001{bottom:208.746412pt;}
.y90_c00001{bottom:208.746623pt;}
.yd6_c00001{bottom:208.746723pt;}
.yb4_c00001{bottom:208.747167pt;}
.y48d_c00001{bottom:211.061438pt;}
.y484_c00001{bottom:211.062862pt;}
.y3d8_c00001{bottom:211.065484pt;}
.y4ad_c00001{bottom:211.138319pt;}
.y41e_c00001{bottom:211.139742pt;}
.y47c_c00001{bottom:211.142318pt;}
.y4ef_c00001{bottom:211.143742pt;}
.y405_c00001{bottom:211.145190pt;}
.y1f9_c00001{bottom:212.427067pt;}
.y323_c00001{bottom:213.627239pt;}
.y2d8_c00001{bottom:214.426623pt;}
.y1f_c00001{bottom:215.785635pt;}
.y3f_c00001{bottom:215.786312pt;}
.y185_c00001{bottom:216.184847pt;}
.y7b_c00001{bottom:216.185424pt;}
.y20c_c00001{bottom:216.186212pt;}
.y50f_c00001{bottom:216.262287pt;}
.y1c7_c00001{bottom:216.586547pt;}
.y1df_c00001{bottom:217.385424pt;}
.y35f_c00001{bottom:217.704855pt;}
.y34d_c00001{bottom:218.103951pt;}
.y312_c00001{bottom:218.425163pt;}
.y464_c00001{bottom:220.022331pt;}
.y4d9_c00001{bottom:220.100364pt;}
.y49f_c00001{bottom:220.180093pt;}
.yf1_c00001{bottom:221.227067pt;}
.y22b_c00001{bottom:221.622537pt;}
.y2ff_c00001{bottom:221.706623pt;}
.y2bd_c00001{bottom:222.026163pt;}
.y2f2_c00001{bottom:222.105868pt;}
.y42c_c00001{bottom:222.661908pt;}
.y14e_c00001{bottom:223.546623pt;}
.y269_c00001{bottom:225.306019pt;}
.y2a0_c00001{bottom:225.307139pt;}
.y2a9_c00001{bottom:226.426623pt;}
.y4c8_c00001{bottom:226.739171pt;}
.y3ee_c00001{bottom:229.142410pt;}
.y458_c00001{bottom:229.220986pt;}
.y3be_c00001{bottom:229.221963pt;}
.y176_c00001{bottom:230.903515pt;}
.y19a_c00001{bottom:230.987167pt;}
.y2d7_c00001{bottom:232.347075pt;}
.y24d_c00001{bottom:234.664231pt;}
.y27e_c00001{bottom:234.824071pt;}
.yfb_c00001{bottom:235.622299pt;}
.y97_c00001{bottom:235.623883pt;}
.y1ab_c00001{bottom:235.624327pt;}
.y1b9_c00001{bottom:235.624771pt;}
.yb3_c00001{bottom:235.624847pt;}
.ybe_c00001{bottom:235.625191pt;}
.y138_c00001{bottom:235.625291pt;}
.y35e_c00001{bottom:235.625307pt;}
.y5d_c00001{bottom:235.625635pt;}
.y10e_c00001{bottom:235.625735pt;}
.y155_c00001{bottom:235.626079pt;}
.y123_c00001{bottom:235.626312pt;}
.y8f_c00001{bottom:235.626523pt;}
.yd5_c00001{bottom:235.626623pt;}
.y44c_c00001{bottom:235.700336pt;}
.y41d_c00001{bottom:235.780064pt;}
.y48c_c00001{bottom:235.781488pt;}
.y483_c00001{bottom:235.782912pt;}
.y3d7_c00001{bottom:235.785534pt;}
.y34c_c00001{bottom:236.024403pt;}
.y1f8_c00001{bottom:236.187067pt;}
.y311_c00001{bottom:236.264703pt;}
.y2bc_c00001{bottom:239.946615pt;}
.y2f1_c00001{bottom:240.026320pt;}
.y322_c00001{bottom:240.507139pt;}
.y22a_c00001{bottom:241.062764pt;}
.y1e_c00001{bottom:242.586179pt;}
.y3e_c00001{bottom:242.586856pt;}
.y184_c00001{bottom:242.985391pt;}
.y7a_c00001{bottom:242.985968pt;}
.y20b_c00001{bottom:242.986756pt;}
.y1c6_c00001{bottom:243.466447pt;}
.y1de_c00001{bottom:244.265324pt;}
.y3a5_c00001{bottom:244.662654pt;}
.y49e_c00001{bottom:244.740686pt;}
.y43d_c00001{bottom:244.744896pt;}
.y374_c00001{bottom:246.584191pt;}
.y2fe_c00001{bottom:248.507167pt;}
.y38e_c00001{bottom:248.582364pt;}
.y2d6_c00001{bottom:250.267527pt;}
.y14d_c00001{bottom:250.347167pt;}
.yf0_c00001{bottom:250.425191pt;}
.y4ac_c00001{bottom:251.218884pt;}
.y47b_c00001{bottom:251.222884pt;}
.y4ee_c00001{bottom:251.224307pt;}
.y404_c00001{bottom:251.225756pt;}
.y4c7_c00001{bottom:251.299764pt;}
.y268_c00001{bottom:252.185919pt;}
.y29f_c00001{bottom:252.187039pt;}
.y2a8_c00001{bottom:253.227167pt;}
.y35d_c00001{bottom:253.464847pt;}
.y3ed_c00001{bottom:253.782732pt;}
.y34b_c00001{bottom:253.863943pt;}
.y310_c00001{bottom:254.185155pt;}
.y50e_c00001{bottom:256.342852pt;}
.y175_c00001{bottom:257.783415pt;}
.y199_c00001{bottom:257.866179pt;}
.y2bb_c00001{bottom:257.867067pt;}
.y2f0_c00001{bottom:257.946772pt;}
.y1f7_c00001{bottom:259.384971pt;}
.y4b5_c00001{bottom:260.260658pt;}
.y44b_c00001{bottom:260.340658pt;}
.y4ff_c00001{bottom:260.342082pt;}
.y229_c00001{bottom:260.502991pt;}
.y27d_c00001{bottom:261.624615pt;}
.yfa_c00001{bottom:262.422843pt;}
.y96_c00001{bottom:262.424427pt;}
.y1aa_c00001{bottom:262.424871pt;}
.y1b8_c00001{bottom:262.425315pt;}
.yb2_c00001{bottom:262.425391pt;}
.ybd_c00001{bottom:262.425735pt;}
.y137_c00001{bottom:262.425835pt;}
.y5c_c00001{bottom:262.426179pt;}
.y10d_c00001{bottom:262.426279pt;}
.y8e_c00001{bottom:262.426623pt;}
.y122_c00001{bottom:262.426856pt;}
.yd4_c00001{bottom:262.427167pt;}
.y321_c00001{bottom:267.307683pt;}
.y2d5_c00001{bottom:268.107067pt;}
.y3bd_c00001{bottom:269.302529pt;}
.y4d8_c00001{bottom:269.381008pt;}
.y457_c00001{bottom:269.381280pt;}
.y1d_c00001{bottom:269.466079pt;}
.y3d_c00001{bottom:269.466756pt;}
.y183_c00001{bottom:269.865291pt;}
.y79_c00001{bottom:269.865868pt;}
.y20a_c00001{bottom:269.866656pt;}
.y1dd_c00001{bottom:271.065868pt;}
.y35c_c00001{bottom:271.385299pt;}
.y34a_c00001{bottom:271.784395pt;}
.y30f_c00001{bottom:272.105607pt;}
.y373_c00001{bottom:273.384735pt;}
.y2fd_c00001{bottom:275.387067pt;}
.y41c_c00001{bottom:275.779478pt;}
.y4d2_c00001{bottom:275.780902pt;}
.y42b_c00001{bottom:275.782325pt;}
.y3d6_c00001{bottom:275.784948pt;}
.y2ef_c00001{bottom:275.786312pt;}
.y4ab_c00001{bottom:275.859206pt;}
.y48b_c00001{bottom:275.862054pt;}
.y47a_c00001{bottom:275.863206pt;}
.y4ed_c00001{bottom:275.864629pt;}
.y403_c00001{bottom:275.866078pt;}
.y2b8_c00001{bottom:276.426179pt;}
.y14c_c00001{bottom:277.227067pt;}
.yef_c00001{bottom:277.305091pt;}
.y3ec_c00001{bottom:278.502783pt;}
.y267_c00001{bottom:278.986463pt;}
.y29e_c00001{bottom:278.987583pt;}
.y24c_c00001{bottom:279.624851pt;}
.y228_c00001{bottom:279.943218pt;}
.y174_c00001{bottom:284.583959pt;}
.y198_c00001{bottom:284.666723pt;}
.y49d_c00001{bottom:284.821252pt;}
.y3a4_c00001{bottom:284.822947pt;}
.y43c_c00001{bottom:284.825462pt;}
.y4b4_c00001{bottom:284.900980pt;}
.y1f6_c00001{bottom:286.264871pt;}
.y2d4_c00001{bottom:286.747083pt;}
.y2a7_c00001{bottom:287.227067pt;}
.y1c5_c00001{bottom:288.425159pt;}
.y27c_c00001{bottom:288.504515pt;}
.y38d_c00001{bottom:288.822386pt;}
.yf9_c00001{bottom:289.302743pt;}
.y95_c00001{bottom:289.304327pt;}
.y1a9_c00001{bottom:289.304771pt;}
.y1b7_c00001{bottom:289.305215pt;}
.yb1_c00001{bottom:289.305291pt;}
.ybc_c00001{bottom:289.305635pt;}
.y136_c00001{bottom:289.305735pt;}
.y35b_c00001{bottom:289.305751pt;}
.y5b_c00001{bottom:289.306079pt;}
.yd3_c00001{bottom:289.306179pt;}
.y8d_c00001{bottom:289.306523pt;}
.y121_c00001{bottom:289.306756pt;}
.y349_c00001{bottom:289.704847pt;}
.y30e_c00001{bottom:289.945147pt;}
.y4c6_c00001{bottom:291.380330pt;}
.y2ee_c00001{bottom:293.625852pt;}
.y3bc_c00001{bottom:293.942851pt;}
.y2fb_c00001{bottom:293.946623pt;}
.y320_c00001{bottom:294.187583pt;}
.y14b_c00001{bottom:294.267181pt;}
.y2b7_c00001{bottom:294.346631pt;}
.y1c_c00001{bottom:296.266623pt;}
.y3c_c00001{bottom:296.267300pt;}
.y50d_c00001{bottom:296.423418pt;}
.y182_c00001{bottom:296.665835pt;}
.y78_c00001{bottom:296.666412pt;}
.y209_c00001{bottom:296.667200pt;}
.y1dc_c00001{bottom:297.945768pt;}
.y339_c00001{bottom:298.663807pt;}
.y227_c00001{bottom:299.383445pt;}
.y372_c00001{bottom:300.264635pt;}
.y44a_c00001{bottom:300.421224pt;}
.y4fe_c00001{bottom:300.422647pt;}
.y41b_c00001{bottom:300.499528pt;}
.y4d1_c00001{bottom:300.500952pt;}
.y42a_c00001{bottom:300.502376pt;}
.y3d5_c00001{bottom:300.504998pt;}
.yee_c00001{bottom:304.105635pt;}
.y2d3_c00001{bottom:304.586623pt;}
.y29d_c00001{bottom:305.867483pt;}
.y35a_c00001{bottom:307.145291pt;}
.y348_c00001{bottom:307.544387pt;}
.y30d_c00001{bottom:307.865599pt;}
.y456_c00001{bottom:309.541574pt;}
.y463_c00001{bottom:309.542998pt;}
.y43b_c00001{bottom:309.545512pt;}
.y49c_c00001{bottom:309.621031pt;}
.y3a3_c00001{bottom:309.622726pt;}
.y173_c00001{bottom:311.463859pt;}
.y2ed_c00001{bottom:311.546304pt;}
.y197_c00001{bottom:311.546623pt;}
.y2fa_c00001{bottom:311.867075pt;}
.y31f_c00001{bottom:312.108035pt;}
.y2b6_c00001{bottom:312.267083pt;}
.y1f5_c00001{bottom:313.065415pt;}
.y208_c00001{bottom:313.706861pt;}
.y14a_c00001{bottom:313.707067pt;}
.y1c4_c00001{bottom:315.305059pt;}
.y27b_c00001{bottom:315.384415pt;}
.y479_c00001{bottom:315.943771pt;}
.y4ec_c00001{bottom:315.945195pt;}
.y402_c00001{bottom:315.946643pt;}
.y4aa_c00001{bottom:316.019500pt;}
.y4c5_c00001{bottom:316.020652pt;}
.y482_c00001{bottom:316.022347pt;}
.yf8_c00001{bottom:316.103287pt;}
.y8c_c00001{bottom:316.104871pt;}
.y1a8_c00001{bottom:316.105315pt;}
.y1b6_c00001{bottom:316.105759pt;}
.yb0_c00001{bottom:316.105835pt;}
.y154_c00001{bottom:316.105859pt;}
.ybb_c00001{bottom:316.106179pt;}
.y135_c00001{bottom:316.106279pt;}
.y5a_c00001{bottom:316.106623pt;}
.yd2_c00001{bottom:316.106723pt;}
.y120_c00001{bottom:316.107300pt;}
.y338_c00001{bottom:316.584259pt;}
.y3eb_c00001{bottom:318.502196pt;}
.y3bb_c00001{bottom:318.503444pt;}
.y226_c00001{bottom:318.823672pt;}
.y2fc_c00001{bottom:320.826523pt;}
.y50c_c00001{bottom:321.063740pt;}
.y2d2_c00001{bottom:322.507075pt;}
.y3b_c00001{bottom:323.145635pt;}
.y1b_c00001{bottom:323.146523pt;}
.y181_c00001{bottom:323.545735pt;}
.y77_c00001{bottom:323.546312pt;}
.y266_c00001{bottom:323.866171pt;}
.y24b_c00001{bottom:324.585471pt;}
.y1db_c00001{bottom:324.746312pt;}
.y41a_c00001{bottom:325.060122pt;}
.y4fd_c00001{bottom:325.062969pt;}
.y359_c00001{bottom:325.065743pt;}
.y51f_c00001{bottom:325.141002pt;}
.y449_c00001{bottom:325.141274pt;}
.y347_c00001{bottom:325.464839pt;}
.y30c_c00001{bottom:325.786051pt;}
.y371_c00001{bottom:327.065179pt;}
.y207_c00001{bottom:327.147200pt;}
.y38c_c00001{bottom:329.062408pt;}
.y29c_c00001{bottom:329.307067pt;}
.y2ec_c00001{bottom:329.466756pt;}
.y2f9_c00001{bottom:329.706615pt;}
.y31e_c00001{bottom:329.947575pt;}
.y2b5_c00001{bottom:330.106623pt;}
.yed_c00001{bottom:330.985535pt;}
.y337_c00001{bottom:334.504711pt;}
.y225_c00001{bottom:338.263900pt;}
.y172_c00001{bottom:338.264403pt;}
.y196_c00001{bottom:338.347167pt;}
.y2ba_c00001{bottom:338.745535pt;}
.y1f4_c00001{bottom:339.945315pt;}
.y2d1_c00001{bottom:340.427527pt;}
.y4d0_c00001{bottom:340.661246pt;}
.y3d4_c00001{bottom:340.665292pt;}
.y4a9_c00001{bottom:340.739550pt;}
.y4c4_c00001{bottom:340.740702pt;}
.y429_c00001{bottom:340.742398pt;}
.y478_c00001{bottom:340.743550pt;}
.y4eb_c00001{bottom:340.744973pt;}
.y401_c00001{bottom:340.746422pt;}
.yf7_c00001{bottom:342.983187pt;}
.y11f_c00001{bottom:342.984083pt;}
.y8b_c00001{bottom:342.984771pt;}
.y1a7_c00001{bottom:342.985215pt;}
.y1b5_c00001{bottom:342.985659pt;}
.yaf_c00001{bottom:342.985735pt;}
.y153_c00001{bottom:342.985759pt;}
.yba_c00001{bottom:342.986079pt;}
.y134_c00001{bottom:342.986179pt;}
.y358_c00001{bottom:342.986195pt;}
.y59_c00001{bottom:342.986523pt;}
.yd1_c00001{bottom:342.986623pt;}
.y3ea_c00001{bottom:343.222246pt;}
.y346_c00001{bottom:343.385291pt;}
.y30b_c00001{bottom:343.625591pt;}
.y31d_c00001{bottom:344.507067pt;}
.y2eb_c00001{bottom:347.306296pt;}
.y2f8_c00001{bottom:347.627067pt;}
.y2b4_c00001{bottom:348.027075pt;}
.y462_c00001{bottom:349.542411pt;}
.y3a2_c00001{bottom:349.622139pt;}
.y43a_c00001{bottom:349.626078pt;}
.y49b_c00001{bottom:349.701596pt;}
.y4fc_c00001{bottom:349.703291pt;}
.y3a_c00001{bottom:349.946179pt;}
.y1a_c00001{bottom:349.947067pt;}
.y180_c00001{bottom:350.346279pt;}
.y206_c00001{bottom:350.346303pt;}
.y76_c00001{bottom:350.346856pt;}
.y265_c00001{bottom:350.825427pt;}
.y24a_c00001{bottom:351.544727pt;}
.y1da_c00001{bottom:351.626212pt;}
.y336_c00001{bottom:352.344251pt;}
.y38b_c00001{bottom:353.623002pt;}
.y370_c00001{bottom:353.945079pt;}
.y481_c00001{bottom:356.182641pt;}
.y224_c00001{bottom:357.783668pt;}
.yec_c00001{bottom:357.786079pt;}
.y2d0_c00001{bottom:358.267067pt;}
.y3ba_c00001{bottom:358.663738pt;}
.y27a_c00001{bottom:360.264123pt;}
.y1c3_c00001{bottom:360.345035pt;}
.y357_c00001{bottom:360.825735pt;}
.y345_c00001{bottom:361.224831pt;}
.y30a_c00001{bottom:361.546043pt;}
.y171_c00001{bottom:365.144303pt;}
.y419_c00001{bottom:365.220416pt;}
.y448_c00001{bottom:365.221839pt;}
.y195_c00001{bottom:365.224947pt;}
.y2ea_c00001{bottom:365.226748pt;}
.y51e_c00001{bottom:365.301296pt;}
.y4cf_c00001{bottom:365.301568pt;}
.y428_c00001{bottom:365.302991pt;}
.y3d3_c00001{bottom:365.305614pt;}
.y2b3_c00001{bottom:365.947527pt;}
.y1f3_c00001{bottom:366.664947pt;}
.y19_c00001{bottom:368.987200pt;}
.yf6_c00001{bottom:369.783731pt;}
.y11e_c00001{bottom:369.784627pt;}
.y8a_c00001{bottom:369.785315pt;}
.y1a6_c00001{bottom:369.785759pt;}
.y58_c00001{bottom:369.786179pt;}
.y1b4_c00001{bottom:369.786203pt;}
.yae_c00001{bottom:369.786279pt;}
.y152_c00001{bottom:369.786303pt;}
.yb9_c00001{bottom:369.786623pt;}
.y133_c00001{bottom:369.786723pt;}
.yd0_c00001{bottom:369.787167pt;}
.y335_c00001{bottom:370.264703pt;}
.y461_c00001{bottom:374.262461pt;}
.y50b_c00001{bottom:374.263885pt;}
.y4d7_c00001{bottom:374.341918pt;}
.y3a1_c00001{bottom:374.342190pt;}
.y39_c00001{bottom:376.826079pt;}
.y223_c00001{bottom:377.223895pt;}
.y17f_c00001{bottom:377.226179pt;}
.y205_c00001{bottom:377.226203pt;}
.y75_c00001{bottom:377.226756pt;}
.y264_c00001{bottom:377.625971pt;}
.y249_c00001{bottom:378.345271pt;}
.y1d9_c00001{bottom:378.426756pt;}
.y356_c00001{bottom:378.746187pt;}
.y344_c00001{bottom:379.145283pt;}
.y2cf_c00001{bottom:379.307067pt;}
.y309_c00001{bottom:379.466495pt;}
.y4c3_c00001{bottom:380.740116pt;}
.y477_c00001{bottom:380.742963pt;}
.y4ea_c00001{bottom:380.744387pt;}
.y36f_c00001{bottom:380.745623pt;}
.y400_c00001{bottom:380.745835pt;}
.y2f7_c00001{bottom:380.747200pt;}
.y4a8_c00001{bottom:380.820116pt;}
.y480_c00001{bottom:380.822963pt;}
.y2e9_c00001{bottom:383.147200pt;}
.y3e9_c00001{bottom:383.302812pt;}
.y3b9_c00001{bottom:383.304060pt;}
.y2b9_c00001{bottom:383.706155pt;}
.y2b2_c00001{bottom:383.787067pt;}
.yeb_c00001{bottom:384.586623pt;}
.y279_c00001{bottom:387.144023pt;}
.y1c2_c00001{bottom:387.145579pt;}
.y334_c00001{bottom:388.185155pt;}
.y418_c00001{bottom:389.860738pt;}
.y49a_c00001{bottom:389.861890pt;}
.y447_c00001{bottom:389.862161pt;}
.y4fb_c00001{bottom:389.863585pt;}
.y439_c00001{bottom:389.866100pt;}
.y170_c00001{bottom:391.944847pt;}
.y194_c00001{bottom:392.025491pt;}
.y1f2_c00001{bottom:393.544847pt;}
.y38a_c00001{bottom:393.703567pt;}
.yf5_c00001{bottom:396.663631pt;}
.y222_c00001{bottom:396.664123pt;}
.y11d_c00001{bottom:396.664527pt;}
.ycf_c00001{bottom:396.664871pt;}
.y89_c00001{bottom:396.665215pt;}
.y1a5_c00001{bottom:396.665659pt;}
.y57_c00001{bottom:396.666079pt;}
.y1b3_c00001{bottom:396.666103pt;}
.yad_c00001{bottom:396.666179pt;}
.y10c_c00001{bottom:396.666203pt;}
.yb8_c00001{bottom:396.666523pt;}
.y132_c00001{bottom:396.666623pt;}
.y355_c00001{bottom:396.666639pt;}
.y343_c00001{bottom:397.065735pt;}
.y308_c00001{bottom:397.386947pt;}
.y50a_c00001{bottom:398.904207pt;}
.y18_c00001{bottom:400.183979pt;}
.y38_c00001{bottom:403.626623pt;}
.y17e_c00001{bottom:404.026723pt;}
.y204_c00001{bottom:404.026747pt;}
.y74_c00001{bottom:404.027300pt;}
.y263_c00001{bottom:404.505871pt;}
.y248_c00001{bottom:405.225171pt;}
.y1d8_c00001{bottom:405.306656pt;}
.y51d_c00001{bottom:405.381861pt;}
.y3ff_c00001{bottom:405.386157pt;}
.y4c2_c00001{bottom:405.460166pt;}
.y4ce_c00001{bottom:405.461861pt;}
.y476_c00001{bottom:405.463014pt;}
.y427_c00001{bottom:405.463285pt;}
.y4e9_c00001{bottom:405.464437pt;}
.y3d2_c00001{bottom:405.465908pt;}
.y333_c00001{bottom:406.024695pt;}
.y36e_c00001{bottom:407.625523pt;}
.y3e8_c00001{bottom:407.943134pt;}
.yea_c00001{bottom:411.466523pt;}
.y278_c00001{bottom:414.023923pt;}
.y455_c00001{bottom:414.341603pt;}
.y460_c00001{bottom:414.343027pt;}
.y499_c00001{bottom:414.422483pt;}
.y3a0_c00001{bottom:414.422755pt;}
.y438_c00001{bottom:414.426693pt;}
.y354_c00001{bottom:414.506179pt;}
.y342_c00001{bottom:414.905275pt;}
.y307_c00001{bottom:415.226487pt;}
.y221_c00001{bottom:416.104350pt;}
.y389_c00001{bottom:418.264161pt;}
.y16f_c00001{bottom:418.824747pt;}
.y193_c00001{bottom:418.905391pt;}
.y1f1_c00001{bottom:420.345391pt;}
.y2e8_c00001{bottom:420.507067pt;}
.y4a7_c00001{bottom:420.900681pt;}
.y3b8_c00001{bottom:423.384626pt;}
.yb7_c00001{bottom:423.464175pt;}
.y11c_c00001{bottom:423.465071pt;}
.yce_c00001{bottom:423.465415pt;}
.y88_c00001{bottom:423.465759pt;}
.y1a4_c00001{bottom:423.466203pt;}
.y56_c00001{bottom:423.466623pt;}
.y1b2_c00001{bottom:423.466647pt;}
.yac_c00001{bottom:423.466723pt;}
.y10b_c00001{bottom:423.466747pt;}
.y131_c00001{bottom:423.467167pt;}
.y332_c00001{bottom:423.945147pt;}
.y294_c00001{bottom:427.945951pt;}
.y17_c00001{bottom:428.904627pt;}
.y446_c00001{bottom:429.942727pt;}
.y4c1_c00001{bottom:430.020760pt;}
.y417_c00001{bottom:430.021031pt;}
.y51c_c00001{bottom:430.022184pt;}
.y4cd_c00001{bottom:430.022455pt;}
.y4fa_c00001{bottom:430.023879pt;}
.y3fe_c00001{bottom:430.026479pt;}
.y3d1_c00001{bottom:430.026501pt;}
.y37_c00001{bottom:430.506523pt;}
.y73_c00001{bottom:430.906107pt;}
.y17d_c00001{bottom:430.906623pt;}
.y203_c00001{bottom:430.906647pt;}
.y262_c00001{bottom:431.385771pt;}
.y1c1_c00001{bottom:432.025287pt;}
.y247_c00001{bottom:432.025715pt;}
.y1d7_c00001{bottom:432.103916pt;}
.y353_c00001{bottom:432.426631pt;}
.y341_c00001{bottom:432.825727pt;}
.y306_c00001{bottom:433.146939pt;}
.y36d_c00001{bottom:434.426067pt;}
.y220_c00001{bottom:435.544577pt;}
.ye9_c00001{bottom:438.265391pt;}
.y454_c00001{bottom:439.061653pt;}
.y39f_c00001{bottom:439.063077pt;}
.y509_c00001{bottom:439.064501pt;}
.y277_c00001{bottom:440.824467pt;}
.y331_c00001{bottom:441.865599pt;}
.y388_c00001{bottom:442.984211pt;}
.y426_c00001{bottom:445.462699pt;}
.y4a6_c00001{bottom:445.541003pt;}
.y475_c00001{bottom:445.543579pt;}
.y48a_c00001{bottom:445.543851pt;}
.y4e8_c00001{bottom:445.545003pt;}
.y16e_c00001{bottom:445.625291pt;}
.y192_c00001{bottom:445.705935pt;}
.y1f0_c00001{bottom:447.225291pt;}
.y3e7_c00001{bottom:448.183156pt;}
.y3b7_c00001{bottom:448.184404pt;}
.yb6_c00001{bottom:450.344075pt;}
.y11b_c00001{bottom:450.344971pt;}
.y130_c00001{bottom:450.345215pt;}
.ycd_c00001{bottom:450.345315pt;}
.y87_c00001{bottom:450.345659pt;}
.y1a3_c00001{bottom:450.346103pt;}
.y55_c00001{bottom:450.346523pt;}
.y1b1_c00001{bottom:450.346547pt;}
.yab_c00001{bottom:450.346623pt;}
.y10a_c00001{bottom:450.346647pt;}
.y352_c00001{bottom:450.347083pt;}
.y340_c00001{bottom:450.746179pt;}
.y305_c00001{bottom:451.067391pt;}
.y2b1_c00001{bottom:453.707067pt;}
.y498_c00001{bottom:454.503049pt;}
.y437_c00001{bottom:454.507259pt;}
.y416_c00001{bottom:454.581625pt;}
.y445_c00001{bottom:454.583049pt;}
.y4f9_c00001{bottom:454.584473pt;}
.y293_c00001{bottom:454.746495pt;}
.y21f_c00001{bottom:454.984804pt;}
.y16_c00001{bottom:455.784527pt;}
.y36_c00001{bottom:457.304647pt;}
.y72_c00001{bottom:457.706651pt;}
.y17c_c00001{bottom:457.707167pt;}
.y202_c00001{bottom:457.707191pt;}
.y261_c00001{bottom:458.186315pt;}
.y246_c00001{bottom:458.905615pt;}
.y1d6_c00001{bottom:458.983816pt;}
.y1c0_c00001{bottom:458.984543pt;}
.y330_c00001{bottom:459.705139pt;}
.y36c_c00001{bottom:461.305967pt;}
.ye8_c00001{bottom:465.145291pt;}
.y276_c00001{bottom:467.704367pt;}
.y351_c00001{bottom:468.186623pt;}
.y33f_c00001{bottom:468.585719pt;}
.y304_c00001{bottom:468.906931pt;}
.y4c0_c00001{bottom:470.101325pt;}
.y3d0_c00001{bottom:470.101597pt;}
.y4a5_c00001{bottom:470.181325pt;}
.y51b_c00001{bottom:470.182477pt;}
.y425_c00001{bottom:470.182749pt;}
.y474_c00001{bottom:470.183901pt;}
.y3fd_c00001{bottom:470.186773pt;}
.y16d_c00001{bottom:472.425835pt;}
.y191_c00001{bottom:472.585835pt;}
.y3b6_c00001{bottom:472.744998pt;}
.y1ef_c00001{bottom:474.025835pt;}
.y21e_c00001{bottom:474.425031pt;}
.yb5_c00001{bottom:477.144619pt;}
.y11a_c00001{bottom:477.145515pt;}
.y12f_c00001{bottom:477.145759pt;}
.ycc_c00001{bottom:477.145859pt;}
.y86_c00001{bottom:477.146203pt;}
.y1a2_c00001{bottom:477.146647pt;}
.y1b0_c00001{bottom:477.147091pt;}
.yaa_c00001{bottom:477.147167pt;}
.y109_c00001{bottom:477.147191pt;}
.y54_c00001{bottom:477.147535pt;}
.y32f_c00001{bottom:477.625591pt;}
.y453_c00001{bottom:479.221947pt;}
.y45f_c00001{bottom:479.223371pt;}
.y497_c00001{bottom:479.302828pt;}
.y39e_c00001{bottom:479.303099pt;}
.y508_c00001{bottom:479.304523pt;}
.y436_c00001{bottom:479.307037pt;}
.y15_c00001{bottom:482.585071pt;}
.y387_c00001{bottom:483.144505pt;}
.y303_c00001{bottom:483.387067pt;}
.y35_c00001{bottom:484.105191pt;}
.y71_c00001{bottom:484.586551pt;}
.y17b_c00001{bottom:484.587067pt;}
.y201_c00001{bottom:484.587091pt;}
.y489_c00001{bottom:485.624416pt;}
.y4e7_c00001{bottom:485.625568pt;}
.y245_c00001{bottom:485.706159pt;}
.y1d5_c00001{bottom:485.784360pt;}
.y1bf_c00001{bottom:485.785087pt;}
.y350_c00001{bottom:486.107075pt;}
.y33e_c00001{bottom:486.506171pt;}
.y36b_c00001{bottom:488.106511pt;}
.y3e6_c00001{bottom:488.182569pt;}
.ye7_c00001{bottom:491.945835pt;}
.y21d_c00001{bottom:493.865258pt;}
.y275_c00001{bottom:494.504911pt;}
.y4bf_c00001{bottom:494.821376pt;}
.y415_c00001{bottom:494.821647pt;}
.y4cc_c00001{bottom:494.823071pt;}
.y4f8_c00001{bottom:494.824495pt;}
.y32e_c00001{bottom:495.546043pt;}
.y292_c00001{bottom:496.427067pt;}
.y16c_c00001{bottom:499.226379pt;}
.y190_c00001{bottom:499.386379pt;}
.y1ee_c00001{bottom:500.905735pt;}
.y17a_c00001{bottom:501.627067pt;}
.y260_c00001{bottom:503.066023pt;}
.y452_c00001{bottom:503.862269pt;}
.y4b3_c00001{bottom:503.863421pt;}
.y39d_c00001{bottom:503.863693pt;}
.ya9_c00001{bottom:504.024519pt;}
.y149_c00001{bottom:504.024527pt;}
.y119_c00001{bottom:504.025415pt;}
.y12e_c00001{bottom:504.025659pt;}
.ycb_c00001{bottom:504.025759pt;}
.y85_c00001{bottom:504.026103pt;}
.y1a1_c00001{bottom:504.026547pt;}
.y1af_c00001{bottom:504.026991pt;}
.y108_c00001{bottom:504.027091pt;}
.y53_c00001{bottom:504.027435pt;}
.y34f_c00001{bottom:504.027527pt;}
.y33d_c00001{bottom:504.426623pt;}
.y3cf_c00001{bottom:510.341619pt;}
.y51a_c00001{bottom:510.342771pt;}
.y3fc_c00001{bottom:510.343043pt;}
.y473_c00001{bottom:510.344195pt;}
.y488_c00001{bottom:510.424195pt;}
.y4e6_c00001{bottom:510.425347pt;}
.y34_c00001{bottom:510.905735pt;}
.y14_c00001{bottom:511.305719pt;}
.y70_c00001{bottom:511.306183pt;}
.y200_c00001{bottom:511.306723pt;}
.y244_c00001{bottom:512.586059pt;}
.y1d4_c00001{bottom:512.664260pt;}
.y1be_c00001{bottom:512.664987pt;}
.y3b5_c00001{bottom:512.825563pt;}
.y21c_c00001{bottom:513.385027pt;}
.y32d_c00001{bottom:513.385583pt;}
.y36a_c00001{bottom:514.986411pt;}
.ye6_c00001{bottom:518.825735pt;}
.y496_c00001{bottom:519.302241pt;}
.y444_c00001{bottom:519.302513pt;}
.y45e_c00001{bottom:519.303936pt;}
.y435_c00001{bottom:519.306451pt;}
.y414_c00001{bottom:519.382241pt;}
.y4f7_c00001{bottom:519.385088pt;}
.y274_c00001{bottom:521.384811pt;}
.y33c_c00001{bottom:522.266163pt;}
.y386_c00001{bottom:523.304799pt;}
.y16b_c00001{bottom:526.106279pt;}
.y18f_c00001{bottom:526.266279pt;}
.y1ed_c00001{bottom:527.706279pt;}
.y4b2_c00001{bottom:528.342863pt;}
.y3e5_c00001{bottom:528.422591pt;}
.y34e_c00001{bottom:528.987067pt;}
.y25f_c00001{bottom:530.025279pt;}
.y52_c00001{bottom:530.744059pt;}
.ya8_c00001{bottom:530.744151pt;}
.y148_c00001{bottom:530.744159pt;}
.y118_c00001{bottom:530.745047pt;}
.y12d_c00001{bottom:530.745291pt;}
.yca_c00001{bottom:530.745391pt;}
.y84_c00001{bottom:530.745735pt;}
.y1a0_c00001{bottom:530.746179pt;}
.y1ae_c00001{bottom:530.746623pt;}
.y107_c00001{bottom:530.746723pt;}
.y32c_c00001{bottom:531.306035pt;}
.y21b_c00001{bottom:532.825254pt;}
.y4be_c00001{bottom:534.981669pt;}
.y519_c00001{bottom:534.983093pt;}
.y3fb_c00001{bottom:534.983365pt;}
.y472_c00001{bottom:534.984517pt;}
.y3b4_c00001{bottom:537.465885pt;}
.y33_c00001{bottom:537.785635pt;}
.y6f_c00001{bottom:538.186083pt;}
.y1ff_c00001{bottom:538.186623pt;}
.y1bd_c00001{bottom:539.384619pt;}
.y243_c00001{bottom:539.386603pt;}
.y1d3_c00001{bottom:539.464804pt;}
.y13_c00001{bottom:540.105723pt;}
.y33b_c00001{bottom:540.186615pt;}
.y369_c00001{bottom:541.786955pt;}
.y451_c00001{bottom:543.942835pt;}
.y45d_c00001{bottom:543.944258pt;}
.y495_c00001{bottom:544.022291pt;}
.y443_c00001{bottom:544.022563pt;}
.y39c_c00001{bottom:544.023987pt;}
.ye5_c00001{bottom:545.626279pt;}
.y273_c00001{bottom:548.185355pt;}
.y32b_c00001{bottom:549.226487pt;}
.y3ce_c00001{bottom:550.422184pt;}
.y487_c00001{bottom:550.423608pt;}
.y4e5_c00001{bottom:550.424760pt;}
.y21a_c00001{bottom:552.265481pt;}
.y16a_c00001{bottom:552.986179pt;}
.y18e_c00001{bottom:553.066823pt;}
.y1ec_c00001{bottom:554.586179pt;}
.y25e_c00001{bottom:556.825823pt;}
.y51_c00001{bottom:557.623959pt;}
.ya7_c00001{bottom:557.624051pt;}
.y147_c00001{bottom:557.624059pt;}
.y117_c00001{bottom:557.624947pt;}
.y12c_c00001{bottom:557.625191pt;}
.yc9_c00001{bottom:557.625291pt;}
.y83_c00001{bottom:557.625635pt;}
.y19f_c00001{bottom:557.626079pt;}
.y1ad_c00001{bottom:557.626523pt;}
.y106_c00001{bottom:557.626623pt;}
.y413_c00001{bottom:559.462806pt;}
.y4f6_c00001{bottom:559.465654pt;}
.y4cb_c00001{bottom:559.543958pt;}
.y434_c00001{bottom:559.546473pt;}
.y385_c00001{bottom:563.465093pt;}
.y32_c00001{bottom:564.586179pt;}
.y6e_c00001{bottom:564.986627pt;}
.y1fe_c00001{bottom:564.987167pt;}
.y33a_c00001{bottom:565.227067pt;}
.y28a_c00001{bottom:566.264519pt;}
.y1d2_c00001{bottom:566.344704pt;}
.y12_c00001{bottom:566.985623pt;}
.y32a_c00001{bottom:567.146939pt;}
.y3e4_c00001{bottom:568.582885pt;}
.y450_c00001{bottom:568.583157pt;}
.y368_c00001{bottom:568.666855pt;}
.y219_c00001{bottom:571.705708pt;}
.ye4_c00001{bottom:572.506179pt;}
.y4bd_c00001{bottom:575.062235pt;}
.y518_c00001{bottom:575.063659pt;}
.y424_c00001{bottom:575.063930pt;}
.y471_c00001{bottom:575.065082pt;}
.y272_c00001{bottom:575.065255pt;}
.y3cd_c00001{bottom:575.142235pt;}
.y3fa_c00001{bottom:575.143659pt;}
.y299_c00001{bottom:576.907015pt;}
.y3b3_c00001{bottom:577.705908pt;}
.y169_c00001{bottom:579.786723pt;}
.y18d_c00001{bottom:579.946723pt;}
.y1eb_c00001{bottom:581.386723pt;}
.y25d_c00001{bottom:583.705723pt;}
.y4d6_c00001{bottom:584.102857pt;}
.y412_c00001{bottom:584.103128pt;}
.y39b_c00001{bottom:584.104552pt;}
.y4f5_c00001{bottom:584.105976pt;}
.y433_c00001{bottom:584.107067pt;}
.y242_c00001{bottom:584.266311pt;}
.y50_c00001{bottom:584.424503pt;}
.ya6_c00001{bottom:584.424595pt;}
.y146_c00001{bottom:584.424603pt;}
.y116_c00001{bottom:584.425491pt;}
.y12b_c00001{bottom:584.425735pt;}
.yc8_c00001{bottom:584.425835pt;}
.y82_c00001{bottom:584.426179pt;}
.y19e_c00001{bottom:584.426623pt;}
.y105_c00001{bottom:584.427167pt;}
.y329_c00001{bottom:584.986479pt;}
.y384_c00001{bottom:588.025686pt;}
.y4e4_c00001{bottom:590.664782pt;}
.y218_c00001{bottom:591.145935pt;}
.y31_c00001{bottom:591.466079pt;}
.y6d_c00001{bottom:591.866527pt;}
.y1fd_c00001{bottom:591.867067pt;}
.y289_c00001{bottom:593.144419pt;}
.y1d1_c00001{bottom:593.145248pt;}
.y11_c00001{bottom:593.786167pt;}
.y2ce_c00001{bottom:595.386623pt;}
.y367_c00001{bottom:595.467399pt;}
.y2a6_c00001{bottom:597.786547pt;}
.ye3_c00001{bottom:599.306723pt;}
.y4bc_c00001{bottom:599.622829pt;}
.y486_c00001{bottom:599.624524pt;}
.y517_c00001{bottom:599.703981pt;}
.y3f9_c00001{bottom:599.704252pt;}
.y470_c00001{bottom:599.705404pt;}
.y271_c00001{bottom:601.865799pt;}
.y3b2_c00001{bottom:602.266501pt;}
.y328_c00001{bottom:602.906931pt;}
.y298_c00001{bottom:603.786915pt;}
.y168_c00001{bottom:606.666623pt;}
.y18c_c00001{bottom:606.747267pt;}
.y1ea_c00001{bottom:608.266623pt;}
.y3e3_c00001{bottom:608.743179pt;}
.y432_c00001{bottom:608.743451pt;}
.y507_c00001{bottom:608.746298pt;}
.y494_c00001{bottom:608.822907pt;}
.y442_c00001{bottom:608.823179pt;}
.y1fc_c00001{bottom:608.907067pt;}
.y25c_c00001{bottom:610.506267pt;}
.y217_c00001{bottom:610.586162pt;}
.y241_c00001{bottom:611.225567pt;}
.y4f_c00001{bottom:611.304403pt;}
.ya5_c00001{bottom:611.304495pt;}
.y145_c00001{bottom:611.304503pt;}
.y115_c00001{bottom:611.305391pt;}
.y12a_c00001{bottom:611.305635pt;}
.yc7_c00001{bottom:611.305735pt;}
.y81_c00001{bottom:611.306079pt;}
.y19d_c00001{bottom:611.306523pt;}
.y2cd_c00001{bottom:613.226163pt;}
.y366_c00001{bottom:613.387851pt;}
.y3cc_c00001{bottom:615.222800pt;}
.y4e3_c00001{bottom:615.225376pt;}
.y327_c00001{bottom:617.387067pt;}
.y30_c00001{bottom:618.266623pt;}
.y6c_c00001{bottom:618.667071pt;}
.y288_c00001{bottom:620.024319pt;}
.y1d0_c00001{bottom:620.025148pt;}
.y10_c00001{bottom:620.666067pt;}
.y411_c00001{bottom:624.263422pt;}
.y423_c00001{bottom:624.264846pt;}
.y4bb_c00001{bottom:624.342879pt;}
.y39a_c00001{bottom:624.344574pt;}
.y46f_c00001{bottom:624.345726pt;}
.y4f4_c00001{bottom:624.345998pt;}
.y2a5_c00001{bottom:624.587091pt;}
.ye2_c00001{bottom:626.186623pt;}
.y383_c00001{bottom:628.185980pt;}
.y270_c00001{bottom:628.745699pt;}
.y2e7_c00001{bottom:629.224947pt;}
.y216_c00001{bottom:630.026389pt;}
.y297_c00001{bottom:630.587459pt;}
.y2cc_c00001{bottom:631.146615pt;}
.y365_c00001{bottom:631.308303pt;}
.y3e2_c00001{bottom:633.383501pt;}
.y167_c00001{bottom:633.467167pt;}
.y18b_c00001{bottom:633.627167pt;}
.y1e9_c00001{bottom:635.067167pt;}
.y240_c00001{bottom:638.026111pt;}
.y4e_c00001{bottom:638.104947pt;}
.ya4_c00001{bottom:638.105039pt;}
.y144_c00001{bottom:638.105047pt;}
.y114_c00001{bottom:638.105935pt;}
.y129_c00001{bottom:638.106179pt;}
.yc6_c00001{bottom:638.106279pt;}
.y80_c00001{bottom:638.106623pt;}
.y516_c00001{bottom:639.864274pt;}
.y3f8_c00001{bottom:639.864546pt;}
.y3cb_c00001{bottom:639.942851pt;}
.y2b0_c00001{bottom:641.466631pt;}
.y3b1_c00001{bottom:642.347067pt;}
.y2f_c00001{bottom:645.146523pt;}
.y6b_c00001{bottom:645.546971pt;}
.y31c_c00001{bottom:646.346623pt;}
.y287_c00001{bottom:646.824863pt;}
.y1cf_c00001{bottom:646.825692pt;}
.y2e6_c00001{bottom:647.064487pt;}
.yf_c00001{bottom:647.466611pt;}
.y4b1_c00001{bottom:648.903473pt;}
.y410_c00001{bottom:648.903744pt;}
.y506_c00001{bottom:648.906592pt;}
.y493_c00001{bottom:648.983201pt;}
.y431_c00001{bottom:648.983473pt;}
.y399_c00001{bottom:648.984896pt;}
.y4f3_c00001{bottom:648.986320pt;}
.y2cb_c00001{bottom:649.067067pt;}
.y364_c00001{bottom:649.147843pt;}
.y215_c00001{bottom:649.466617pt;}
.y2a4_c00001{bottom:651.466991pt;}
.y382_c00001{bottom:652.826302pt;}
.ye1_c00001{bottom:652.987167pt;}
.y4a4_c00001{bottom:655.383094pt;}
.y4e2_c00001{bottom:655.385670pt;}
.y25b_c00001{bottom:655.466887pt;}
.y26f_c00001{bottom:655.546243pt;}
.y296_c00001{bottom:657.467359pt;}
.y2af_c00001{bottom:659.387083pt;}
.y166_c00001{bottom:660.347067pt;}
.y18a_c00001{bottom:660.507067pt;}
.y1e8_c00001{bottom:661.947067pt;}
.y363_c00001{bottom:663.547067pt;}
.y31b_c00001{bottom:664.186163pt;}
.y4ba_c00001{bottom:664.423444pt;}
.y45c_c00001{bottom:664.425140pt;}
.y46e_c00001{bottom:664.426292pt;}
.y515_c00001{bottom:664.504596pt;}
.y3f7_c00001{bottom:664.504868pt;}
.y23f_c00001{bottom:664.906011pt;}
.y4d_c00001{bottom:664.984847pt;}
.ya3_c00001{bottom:664.984939pt;}
.y143_c00001{bottom:664.984947pt;}
.y113_c00001{bottom:664.985835pt;}
.y128_c00001{bottom:664.986079pt;}
.yc5_c00001{bottom:664.986179pt;}
.y7f_c00001{bottom:664.986523pt;}
.y3b0_c00001{bottom:666.984717pt;}
.y2ca_c00001{bottom:667.626772pt;}
.y214_c00001{bottom:668.986385pt;}
.y2e_c00001{bottom:671.947067pt;}
.y6a_c00001{bottom:672.347515pt;}
.y3e1_c00001{bottom:673.543795pt;}
.y44f_c00001{bottom:673.544066pt;}
.y286_c00001{bottom:673.704763pt;}
.y1ce_c00001{bottom:673.705592pt;}
.ye_c00001{bottom:674.346511pt;}
.y2ae_c00001{bottom:677.307535pt;}
.y165_c00001{bottom:677.387181pt;}
.y2a3_c00001{bottom:678.267535pt;}
.ye0_c00001{bottom:679.867067pt;}
.y3ca_c00001{bottom:680.023416pt;}
.y4a3_c00001{bottom:680.103144pt;}
.y4e1_c00001{bottom:680.105720pt;}
.y31a_c00001{bottom:682.106615pt;}
.y25a_c00001{bottom:682.426143pt;}
.y189_c00001{bottom:682.506177pt;}
.y2e5_c00001{bottom:682.905391pt;}
.y1e7_c00001{bottom:683.947067pt;}
.y2c9_c00001{bottom:685.547224pt;}
.y213_c00001{bottom:688.426612pt;}
.y4f2_c00001{bottom:688.985733pt;}
.y505_c00001{bottom:688.987157pt;}
.y2d_c00001{bottom:688.987200pt;}
.y4b9_c00001{bottom:689.063766pt;}
.y40f_c00001{bottom:689.064038pt;}
.y398_c00001{bottom:689.065462pt;}
.y46d_c00001{bottom:689.066614pt;}
.y23e_c00001{bottom:691.706555pt;}
.y4c_c00001{bottom:691.785391pt;}
.ya2_c00001{bottom:691.785483pt;}
.y142_c00001{bottom:691.785491pt;}
.y104_c00001{bottom:691.785835pt;}
.y94_c00001{bottom:691.785935pt;}
.y112_c00001{bottom:691.786379pt;}
.y127_c00001{bottom:691.786623pt;}
.yc4_c00001{bottom:691.786723pt;}
.y381_c00001{bottom:692.906868pt;}
.y2ad_c00001{bottom:695.147075pt;}
.y164_c00001{bottom:696.827067pt;}
.y69_c00001{bottom:699.227415pt;}
.y319_c00001{bottom:700.026939pt;}
.y285_c00001{bottom:700.505307pt;}
.y1cd_c00001{bottom:700.506136pt;}
.y2e4_c00001{bottom:700.744931pt;}
.yd_c00001{bottom:701.147055pt;}
.ydf_c00001{bottom:701.867067pt;}
.y2c8_c00001{bottom:703.386764pt;}
.y45b_c00001{bottom:704.505705pt;}
.y514_c00001{bottom:704.585162pt;}
.y3f6_c00001{bottom:704.585433pt;}
.y3c9_c00001{bottom:704.663738pt;}
.y2a2_c00001{bottom:705.147435pt;}
.y3af_c00001{bottom:707.065282pt;}
.y212_c00001{bottom:707.866840pt;}
.y259_c00001{bottom:709.226687pt;}
.y295_c00001{bottom:709.467067pt;}
.y2ac_c00001{bottom:713.067527pt;}
.y4d5_c00001{bottom:713.624360pt;}
.y3e0_c00001{bottom:713.704088pt;}
.y40e_c00001{bottom:713.704360pt;}
.y4f1_c00001{bottom:713.705784pt;}
.y68_c00001{bottom:717.066955pt;}
.y380_c00001{bottom:717.547190pt;}
.y318_c00001{bottom:717.866479pt;}
.y23d_c00001{bottom:718.586455pt;}
.y4b_c00001{bottom:718.665291pt;}
.ya1_c00001{bottom:718.665383pt;}
.y141_c00001{bottom:718.665391pt;}
.y103_c00001{bottom:718.665735pt;}
.y93_c00001{bottom:718.665835pt;}
.y111_c00001{bottom:718.666279pt;}
.y126_c00001{bottom:718.666523pt;}
.yc3_c00001{bottom:718.666623pt;}
.y4e0_c00001{bottom:720.105134pt;}
.y2c_c00001{bottom:720.185827pt;}
.y2c7_c00001{bottom:721.307216pt;}
.y163_c00001{bottom:726.026819pt;}
.y211_c00001{bottom:727.307067pt;}
.y284_c00001{bottom:727.385207pt;}
.y1cc_c00001{bottom:727.386036pt;}
.y1e6_c00001{bottom:727.627183pt;}
.y441_c00001{bottom:729.144603pt;}
.y397_c00001{bottom:729.146027pt;}
.y46c_c00001{bottom:729.147179pt;}
.y504_c00001{bottom:729.147451pt;}
.y513_c00001{bottom:729.225484pt;}
.y3f5_c00001{bottom:729.225756pt;}
.yc_c00001{bottom:729.947059pt;}
.y317_c00001{bottom:735.786931pt;}
.y258_c00001{bottom:736.106587pt;}
.y291_c00001{bottom:736.585835pt;}
.y2ab_c00001{bottom:738.027067pt;}
.y4d4_c00001{bottom:738.264682pt;}
.y44e_c00001{bottom:738.264954pt;}
.y2a1_c00001{bottom:739.067067pt;}
.y2c6_c00001{bottom:739.146756pt;}
.y3c8_c00001{bottom:744.744304pt;}
.y4a2_c00001{bottom:744.824032pt;}
.y4df_c00001{bottom:744.825184pt;}
.y23c_c00001{bottom:745.386999pt;}
.y4a_c00001{bottom:745.465835pt;}
.ya0_c00001{bottom:745.465927pt;}
.y140_c00001{bottom:745.465935pt;}
.y102_c00001{bottom:745.466279pt;}
.y67_c00001{bottom:745.466379pt;}
.yde_c00001{bottom:745.466823pt;}
.yc2_c00001{bottom:745.467167pt;}
.y3ae_c00001{bottom:747.305304pt;}
.y210_c00001{bottom:747.307067pt;}
.y2b_c00001{bottom:748.985831pt;}
.y316_c00001{bottom:750.267067pt;}
.y162_c00001{bottom:752.906719pt;}
.y492_c00001{bottom:753.784654pt;}
.y40d_c00001{bottom:753.784926pt;}
.y3df_c00001{bottom:753.864382pt;}
.y440_c00001{bottom:753.864654pt;}
.y396_c00001{bottom:753.866078pt;}
.y46b_c00001{bottom:753.867230pt;}
.y503_c00001{bottom:753.867501pt;}
.y26e_c00001{bottom:754.106395pt;}
.y283_c00001{bottom:754.185751pt;}
.y1cb_c00001{bottom:754.186580pt;}
.y2e3_c00001{bottom:754.425375pt;}
.y1e5_c00001{bottom:754.427727pt;}
.y2c5_c00001{bottom:756.986296pt;}
.y37f_c00001{bottom:757.707483pt;}
.yb_c00001{bottom:758.747063pt;}
.y290_c00001{bottom:763.386379pt;}
.y3f4_c00001{bottom:769.306321pt;}
.y3c7_c00001{bottom:769.384626pt;}
.y4de_c00001{bottom:769.385778pt;}
.y49_c00001{bottom:772.345735pt;}
.y9f_c00001{bottom:772.345827pt;}
.y13f_c00001{bottom:772.345835pt;}
.y101_c00001{bottom:772.346179pt;}
.y66_c00001{bottom:772.346279pt;}
.ydd_c00001{bottom:772.346723pt;}
.y2c4_c00001{bottom:774.906748pt;}
.y2a_c00001{bottom:775.865731pt;}
.y4d3_c00001{bottom:778.424976pt;}
.y491_c00001{bottom:778.504704pt;}
.y40c_c00001{bottom:778.504976pt;}
.y161_c00001{bottom:779.707263pt;}
.y257_c00001{bottom:780.986295pt;}
.y26d_c00001{bottom:781.065651pt;}
.y1e4_c00001{bottom:781.307627pt;}
.y23b_c00001{bottom:781.467527pt;}
.y37e_c00001{bottom:782.347805pt;}
.y3ad_c00001{bottom:787.465598pt;}
.ya_c00001{bottom:787.546391pt;}
.y28f_c00001{bottom:790.266279pt;}
.y2c3_c00001{bottom:792.827200pt;}
.y3de_c00001{bottom:793.944948pt;}
.y3f3_c00001{bottom:793.946643pt;}
.y46a_c00001{bottom:793.947795pt;}
.y502_c00001{bottom:793.948067pt;}
.y3c6_c00001{bottom:794.024948pt;}
.y512_c00001{bottom:794.026100pt;}
.y395_c00001{bottom:794.026371pt;}
.y48_c00001{bottom:799.146279pt;}
.y9e_c00001{bottom:799.146371pt;}
.y13e_c00001{bottom:799.146379pt;}
.y100_c00001{bottom:799.146723pt;}
.y65_c00001{bottom:799.146823pt;}
.y1e3_c00001{bottom:799.147167pt;}
.ydc_c00001{bottom:799.147267pt;}
.y23a_c00001{bottom:799.307067pt;}
.y29_c00001{bottom:802.666275pt;}
.y490_c00001{bottom:803.065298pt;}
.y160_c00001{bottom:806.587163pt;}
.y256_c00001{bottom:807.866195pt;}
.y28e_c00001{bottom:808.105819pt;}
.y4dd_c00001{bottom:809.625800pt;}
.y239_c00001{bottom:816.266302pt;}
.y9_c00001{bottom:816.267039pt;}
.y4b0_c00001{bottom:818.585270pt;}
.y40b_c00001{bottom:818.585541pt;}
.y394_c00001{bottom:818.586965pt;}
.y3dd_c00001{bottom:818.664998pt;}
.y430_c00001{bottom:818.665270pt;}
.y422_c00001{bottom:818.666693pt;}
.y469_c00001{bottom:818.667845pt;}
.y501_c00001{bottom:818.668117pt;}
.y2c2_c00001{bottom:819.627067pt;}
.y37d_c00001{bottom:822.428371pt;}
.y47_c00001{bottom:826.026179pt;}
.y9d_c00001{bottom:826.026271pt;}
.y13d_c00001{bottom:826.026279pt;}
.yff_c00001{bottom:826.026623pt;}
.y64_c00001{bottom:826.026723pt;}
.ydb_c00001{bottom:826.027167pt;}
.y3ac_c00001{bottom:827.546163pt;}
.y238_c00001{bottom:828.905708pt;}
.y28_c00001{bottom:829.546175pt;}
.y15f_c00001{bottom:833.387707pt;}
.y3c5_c00001{bottom:834.105513pt;}
.y511_c00001{bottom:834.106665pt;}
.y47f_c00001{bottom:834.106937pt;}
.y4dc_c00001{bottom:834.186393pt;}
.y255_c00001{bottom:834.746095pt;}
.y4af_c00001{bottom:843.145863pt;}
.y3dc_c00001{bottom:843.225592pt;}
.y40a_c00001{bottom:843.225863pt;}
.y2e2_c00001{bottom:843.946723pt;}
.y8_c00001{bottom:845.067043pt;}
.y37c_c00001{bottom:847.148421pt;}
.y237_c00001{bottom:848.345935pt;}
.y282_c00001{bottom:852.826815pt;}
.y46_c00001{bottom:852.906079pt;}
.y9c_c00001{bottom:852.906171pt;}
.y13c_c00001{bottom:852.906179pt;}
.yfe_c00001{bottom:852.906523pt;}
.y63_c00001{bottom:852.906623pt;}
.y524_c00001{bottom:854.747067pt;}
.y27_c00001{bottom:856.346719pt;}
.y421_c00001{bottom:858.666107pt;}
.y468_c00001{bottom:858.667259pt;}
.y3f2_c00001{bottom:858.667530pt;}
.y3c4_c00001{bottom:858.745835pt;}
.y4db_c00001{bottom:858.746987pt;}
.y393_c00001{bottom:858.747259pt;}
.y15e_c00001{bottom:860.267607pt;}
.y254_c00001{bottom:861.546639pt;}
.y2e1_c00001{bottom:861.786263pt;}
.y3ab_c00001{bottom:867.706457pt;}
.y236_c00001{bottom:867.786162pt;}
.y48f_c00001{bottom:867.786185pt;}
.y523_c00001{bottom:870.986891pt;}
.y7_c00001{bottom:873.867047pt;}
.y45_c00001{bottom:879.706623pt;}
.y9b_c00001{bottom:879.706715pt;}
.y13b_c00001{bottom:879.706723pt;}
.y62_c00001{bottom:879.707167pt;}
.y37b_c00001{bottom:879.948083pt;}
.y26_c00001{bottom:883.226619pt;}
.y3db_c00001{bottom:883.306157pt;}
.y409_c00001{bottom:883.386157pt;}
.y467_c00001{bottom:883.387309pt;}
.y3f1_c00001{bottom:883.387581pt;}
.y15d_c00001{bottom:887.068151pt;}
.y235_c00001{bottom:887.226389pt;}
.y253_c00001{bottom:888.426539pt;}
.y522_c00001{bottom:888.907343pt;}
.y2e0_c00001{bottom:897.627167pt;}
.y3c3_c00001{bottom:898.826401pt;}
.y4da_c00001{bottom:898.827553pt;}
.y392_c00001{bottom:898.907553pt;}
.y6_c00001{bottom:902.667051pt;}
.y44_c00001{bottom:906.586523pt;}
.y61_c00001{bottom:906.586615pt;}
.yda_c00001{bottom:906.586623pt;}
.y234_c00001{bottom:906.666617pt;}
.y521_c00001{bottom:906.746883pt;}
.y3aa_c00001{bottom:907.946479pt;}
.y3da_c00001{bottom:908.026207pt;}
.y408_c00001{bottom:908.026479pt;}
.y25_c00001{bottom:912.026623pt;}
.y37a_c00001{bottom:912.747744pt;}
.y15c_c00001{bottom:913.948051pt;}
.y252_c00001{bottom:915.227083pt;}
.y2df_c00001{bottom:915.466707pt;}
.y4b8_c00001{bottom:923.546179pt;}
.y420_c00001{bottom:923.546451pt;}
.y3c2_c00001{bottom:923.626179pt;}
.y466_c00001{bottom:923.627331pt;}
.y391_c00001{bottom:923.627603pt;}
.y233_c00001{bottom:926.186385pt;}
.y5_c00001{bottom:931.467055pt;}
.y43_c00001{bottom:933.387159pt;}
.yd9_c00001{bottom:933.387167pt;}
.y24_c00001{bottom:938.827167pt;}
.y4a1_c00001{bottom:939.066423pt;}
.y15b_c00001{bottom:940.748595pt;}
.y232_c00001{bottom:945.626612pt;}
.y379_c00001{bottom:945.627134pt;}
.y3a9_c00001{bottom:948.106773pt;}
.y407_c00001{bottom:948.107045pt;}
.y465_c00001{bottom:948.186501pt;}
.y42f_c00001{bottom:948.186773pt;}
.y2de_c00001{bottom:951.307611pt;}
.y251_c00001{bottom:960.187703pt;}
.y4_c00001{bottom:960.267059pt;}
.y390_c00001{bottom:963.627016pt;}
.y3c1_c00001{bottom:963.706745pt;}
.y231_c00001{bottom:965.066840pt;}
.y23_c00001{bottom:965.707067pt;}
.y15a_c00001{bottom:967.628495pt;}
.y2dd_c00001{bottom:969.147151pt;}
.y378_c00001{bottom:978.347067pt;}
.y230_c00001{bottom:984.507067pt;}
.y22_c00001{bottom:984.667067pt;}
.y159_c00001{bottom:985.468035pt;}
.y3_c00001{bottom:987.067603pt;}
.y3a8_c00001{bottom:988.267067pt;}
.y38f_c00001{bottom:988.347067pt;}
.y377_c00001{bottom:994.987067pt;}
.y376_c00001{bottom:1028.987677pt;}
.y375_c00001{bottom:1061.867067pt;}
.h48_c00001{height:37.003366pt;}
.h49_c00001{height:37.104412pt;}
.h47_c00001{height:39.615525pt;}
.h5_c00001{height:41.847891pt;}
.h53_c00001{height:48.087599pt;}
.h46_c00001{height:48.822778pt;}
.h51_c00001{height:50.914674pt;}
.h4e_c00001{height:51.053709pt;}
.h50_c00001{height:51.069805pt;}
.h4f_c00001{height:51.075588pt;}
.h2_c00001{height:55.645234pt;}
.h1_c00001{height:55.797187pt;}
.h52_c00001{height:55.797892pt;}
.h36_c00001{height:55.805668pt;}
.hc_c00001{height:56.192266pt;}
.h20_c00001{height:60.968367pt;}
.h39_c00001{height:65.481494pt;}
.h2d_c00001{height:65.483398pt;}
.h24_c00001{height:65.484774pt;}
.h1f_c00001{height:65.485142pt;}
.h15_c00001{height:65.485174pt;}
.h41_c00001{height:65.486150pt;}
.h3_c00001{height:65.486603pt;}
.h27_c00001{height:65.486822pt;}
.h1c_c00001{height:65.486918pt;}
.h43_c00001{height:65.487083pt;}
.h26_c00001{height:65.487318pt;}
.h11_c00001{height:65.487739pt;}
.h4a_c00001{height:65.488096pt;}
.h1a_c00001{height:65.488326pt;}
.h31_c00001{height:65.489094pt;}
.h2f_c00001{height:65.489227pt;}
.h2c_c00001{height:65.490774pt;}
.h37_c00001{height:65.491846pt;}
.h1b_c00001{height:65.492150pt;}
.h18_c00001{height:65.492246pt;}
.h2e_c00001{height:65.493526pt;}
.h17_c00001{height:65.493558pt;}
.h4_c00001{height:65.495718pt;}
.h2a_c00001{height:65.495835pt;}
.h23_c00001{height:65.502438pt;}
.h1d_c00001{height:65.584445pt;}
.h4c_c00001{height:65.585458pt;}
.h1e_c00001{height:65.586188pt;}
.hf_c00001{height:65.586221pt;}
.h38_c00001{height:65.587965pt;}
.h29_c00001{height:65.587997pt;}
.h9_c00001{height:65.589207pt;}
.h8_c00001{height:65.590141pt;}
.h40_c00001{height:65.592044pt;}
.hd_c00001{height:65.801494pt;}
.ha_c00001{height:65.802998pt;}
.h33_c00001{height:65.804358pt;}
.h14_c00001{height:65.805142pt;}
.h10_c00001{height:65.806118pt;}
.h45_c00001{height:65.806422pt;}
.h3e_c00001{height:65.806918pt;}
.he_c00001{height:65.807451pt;}
.h30_c00001{height:65.807926pt;}
.h32_c00001{height:65.808198pt;}
.h28_c00001{height:65.808294pt;}
.h6_c00001{height:65.808326pt;}
.h25_c00001{height:65.808827pt;}
.h12_c00001{height:65.810603pt;}
.h22_c00001{height:65.810870pt;}
.h3a_c00001{height:65.811478pt;}
.h44_c00001{height:65.811750pt;}
.h13_c00001{height:65.812150pt;}
.h7_c00001{height:65.813046pt;}
.h3f_c00001{height:65.813926pt;}
.h35_c00001{height:65.815030pt;}
.hb_c00001{height:65.815398pt;}
.h19_c00001{height:65.815467pt;}
.h42_c00001{height:65.815968pt;}
.h34_c00001{height:65.819350pt;}
.h4d_c00001{height:65.903725pt;}
.h3c_c00001{height:65.904044pt;}
.h2b_c00001{height:65.908972pt;}
.h16_c00001{height:65.909474pt;}
.h21_c00001{height:65.911117pt;}
.h3d_c00001{height:65.911650pt;}
.h3b_c00001{height:65.914973pt;}
.h4b_c00001{height:65.915645pt;}
.h0_c00001{height:1122.666667pt;}
.w0_c00001{width:793.333333pt;}
.x0_c00001{left:0.000000pt;}
.x1b_c00001{left:58.960000pt;}
.x2_c00001{left:73.520052pt;}
.x4_c00001{left:83.120520pt;}
.x3_c00001{left:101.360416pt;}
.x5_c00001{left:120.240508pt;}
.xf_c00001{left:317.520000pt;}
.x13_c00001{left:335.440000pt;}
.x10_c00001{left:353.760268pt;}
.xe_c00001{left:355.840640pt;}
.x1_c00001{left:383.760000pt;}
.x15_c00001{left:396.800088pt;}
.x7_c00001{left:473.200000pt;}
.x17_c00001{left:484.320000pt;}
.x9_c00001{left:486.720000pt;}
.x16_c00001{left:492.160000pt;}
.x6_c00001{left:515.040000pt;}
.x18_c00001{left:518.640000pt;}
.x1a_c00001{left:528.000000pt;}
.x19_c00001{left:541.840000pt;}
.x8_c00001{left:545.440000pt;}
.xc_c00001{left:551.040000pt;}
.xa_c00001{left:559.600000pt;}
.x14_c00001{left:572.320000pt;}
.xb_c00001{left:585.680000pt;}
.x11_c00001{left:598.880000pt;}
.x12_c00001{left:614.080000pt;}
.xd_c00001{left:622.400000pt;}
}




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